@seamapi/types 1.287.1 → 1.287.2
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 +63 -36
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +58 -65
- package/lib/seam/connect/models/acs/acs-access-group.js +5 -7
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js +2 -4
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -2
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.js +8 -4
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/schedule.js +8 -2
- package/lib/seam/connect/models/schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +42 -20
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +51 -65
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +5 -7
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -4
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +29 -25
- package/src/lib/seam/connect/models/acs/acs-user.ts +14 -6
- package/src/lib/seam/connect/models/schedule.ts +12 -2
- package/src/lib/seam/connect/openapi.ts +49 -20
- package/src/lib/seam/connect/route-types.ts +51 -65
|
@@ -187,7 +187,7 @@ export default {
|
|
|
187
187
|
},
|
|
188
188
|
acs_access_group: {
|
|
189
189
|
description:
|
|
190
|
-
'
|
|
190
|
+
'Group that defines the entrances to which a set of users has access and, in some cases, the access schedule for these entrances and users.\nThe `acs_access_group` object represents an [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
191
191
|
properties: {
|
|
192
192
|
access_group_type: {
|
|
193
193
|
deprecated: true,
|
|
@@ -198,12 +198,12 @@ export default {
|
|
|
198
198
|
'brivo_group',
|
|
199
199
|
],
|
|
200
200
|
type: 'string',
|
|
201
|
-
'x-deprecated': '
|
|
201
|
+
'x-deprecated': 'Use `external_type`.',
|
|
202
202
|
},
|
|
203
203
|
access_group_type_display_name: {
|
|
204
204
|
deprecated: true,
|
|
205
205
|
type: 'string',
|
|
206
|
-
'x-deprecated': '
|
|
206
|
+
'x-deprecated': 'Use `external_type_display_name`.',
|
|
207
207
|
},
|
|
208
208
|
acs_access_group_id: {
|
|
209
209
|
description: 'ID of the access group.',
|
|
@@ -264,7 +264,7 @@ export default {
|
|
|
264
264
|
},
|
|
265
265
|
acs_credential: {
|
|
266
266
|
description:
|
|
267
|
-
'Means by which a user gains access at an entrance.\
|
|
267
|
+
'Means by which a user gains access at an entrance.\nThe `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code.',
|
|
268
268
|
properties: {
|
|
269
269
|
access_method: {
|
|
270
270
|
description:
|
|
@@ -465,6 +465,8 @@ export default {
|
|
|
465
465
|
type: 'object',
|
|
466
466
|
},
|
|
467
467
|
acs_entrance: {
|
|
468
|
+
description:
|
|
469
|
+
'Represents an [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).',
|
|
468
470
|
properties: {
|
|
469
471
|
acs_entrance_id: {
|
|
470
472
|
description: 'ID of the entrance.',
|
|
@@ -912,8 +914,18 @@ export default {
|
|
|
912
914
|
description:
|
|
913
915
|
"`starts_at` and `ends_at` timestamps for the `acs_user`'s access.",
|
|
914
916
|
properties: {
|
|
915
|
-
ends_at: {
|
|
916
|
-
|
|
917
|
+
ends_at: {
|
|
918
|
+
description:
|
|
919
|
+
"Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
920
|
+
format: 'date-time',
|
|
921
|
+
type: 'string',
|
|
922
|
+
},
|
|
923
|
+
starts_at: {
|
|
924
|
+
description:
|
|
925
|
+
"Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
926
|
+
format: 'date-time',
|
|
927
|
+
type: 'string',
|
|
928
|
+
},
|
|
917
929
|
},
|
|
918
930
|
required: ['starts_at', 'ends_at'],
|
|
919
931
|
type: 'object',
|
|
@@ -1473,7 +1485,7 @@ export default {
|
|
|
1473
1485
|
oneOf: [
|
|
1474
1486
|
{
|
|
1475
1487
|
description:
|
|
1476
|
-
'Means by which a user gains access at an entrance.\
|
|
1488
|
+
'Means by which a user gains access at an entrance.\nThe `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code.',
|
|
1477
1489
|
properties: {
|
|
1478
1490
|
access_method: {
|
|
1479
1491
|
description:
|
|
@@ -1648,7 +1660,7 @@ export default {
|
|
|
1648
1660
|
},
|
|
1649
1661
|
{
|
|
1650
1662
|
description:
|
|
1651
|
-
'Means by which a user gains access at an entrance.\
|
|
1663
|
+
'Means by which a user gains access at an entrance.\nThe `unmanaged_acs_credential` object, which is not managed by Seam, represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code.',
|
|
1652
1664
|
properties: {
|
|
1653
1665
|
access_method: {
|
|
1654
1666
|
description:
|
|
@@ -1947,11 +1959,11 @@ export default {
|
|
|
1947
1959
|
error: { nullable: true },
|
|
1948
1960
|
result: {
|
|
1949
1961
|
description:
|
|
1950
|
-
'Means by which a user gains access at an entrance.\
|
|
1962
|
+
'Means by which a user gains access at an entrance.\nThe `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code.',
|
|
1951
1963
|
oneOf: [
|
|
1952
1964
|
{
|
|
1953
1965
|
description:
|
|
1954
|
-
'Means by which a user gains access at an entrance.\
|
|
1966
|
+
'Means by which a user gains access at an entrance.\nThe `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code.',
|
|
1955
1967
|
properties: {
|
|
1956
1968
|
access_method: {
|
|
1957
1969
|
description:
|
|
@@ -2125,7 +2137,7 @@ export default {
|
|
|
2125
2137
|
},
|
|
2126
2138
|
{
|
|
2127
2139
|
description:
|
|
2128
|
-
'Means by which a user gains access at an entrance.\
|
|
2140
|
+
'Means by which a user gains access at an entrance.\nThe `unmanaged_acs_credential` object, which is not managed by Seam, represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code.',
|
|
2129
2141
|
properties: {
|
|
2130
2142
|
access_method: {
|
|
2131
2143
|
description:
|
|
@@ -7514,12 +7526,12 @@ export default {
|
|
|
7514
7526
|
'brivo_group',
|
|
7515
7527
|
],
|
|
7516
7528
|
type: 'string',
|
|
7517
|
-
'x-deprecated': '
|
|
7529
|
+
'x-deprecated': 'Use `external_type`.',
|
|
7518
7530
|
},
|
|
7519
7531
|
access_group_type_display_name: {
|
|
7520
7532
|
deprecated: true,
|
|
7521
7533
|
type: 'string',
|
|
7522
|
-
'x-deprecated': '
|
|
7534
|
+
'x-deprecated': 'Use `external_type_display_name`.',
|
|
7523
7535
|
},
|
|
7524
7536
|
acs_access_group_id: {
|
|
7525
7537
|
description: 'ID of the access group.',
|
|
@@ -7655,12 +7667,12 @@ export default {
|
|
|
7655
7667
|
'brivo_group',
|
|
7656
7668
|
],
|
|
7657
7669
|
type: 'string',
|
|
7658
|
-
'x-deprecated': '
|
|
7670
|
+
'x-deprecated': 'Use `external_type`.',
|
|
7659
7671
|
},
|
|
7660
7672
|
access_group_type_display_name: {
|
|
7661
7673
|
deprecated: true,
|
|
7662
7674
|
type: 'string',
|
|
7663
|
-
'x-deprecated': '
|
|
7675
|
+
'x-deprecated': 'Use `external_type_display_name`.',
|
|
7664
7676
|
},
|
|
7665
7677
|
acs_access_group_id: {
|
|
7666
7678
|
description: 'ID of the access group.',
|
|
@@ -8574,7 +8586,7 @@ export default {
|
|
|
8574
8586
|
properties: {
|
|
8575
8587
|
acs_credential: {
|
|
8576
8588
|
description:
|
|
8577
|
-
'Means by which a user gains access at an entrance.\
|
|
8589
|
+
'Means by which a user gains access at an entrance.\nThe `unmanaged_acs_credential` object, which is not managed by Seam, represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code.',
|
|
8578
8590
|
properties: {
|
|
8579
8591
|
access_method: {
|
|
8580
8592
|
description:
|
|
@@ -8851,7 +8863,7 @@ export default {
|
|
|
8851
8863
|
acs_credentials: {
|
|
8852
8864
|
items: {
|
|
8853
8865
|
description:
|
|
8854
|
-
'Means by which a user gains access at an entrance.\
|
|
8866
|
+
'Means by which a user gains access at an entrance.\nThe `unmanaged_acs_credential` object, which is not managed by Seam, represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code.',
|
|
8855
8867
|
properties: {
|
|
8856
8868
|
access_method: {
|
|
8857
8869
|
description:
|
|
@@ -10414,8 +10426,18 @@ export default {
|
|
|
10414
10426
|
description:
|
|
10415
10427
|
"`starts_at` and `ends_at` timestamps for the `acs_user`'s access.",
|
|
10416
10428
|
properties: {
|
|
10417
|
-
ends_at: {
|
|
10418
|
-
|
|
10429
|
+
ends_at: {
|
|
10430
|
+
description:
|
|
10431
|
+
"Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
10432
|
+
format: 'date-time',
|
|
10433
|
+
type: 'string',
|
|
10434
|
+
},
|
|
10435
|
+
starts_at: {
|
|
10436
|
+
description:
|
|
10437
|
+
"Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
10438
|
+
format: 'date-time',
|
|
10439
|
+
type: 'string',
|
|
10440
|
+
},
|
|
10419
10441
|
},
|
|
10420
10442
|
required: ['starts_at', 'ends_at'],
|
|
10421
10443
|
type: 'object',
|
|
@@ -10796,8 +10818,15 @@ export default {
|
|
|
10796
10818
|
description:
|
|
10797
10819
|
"`starts_at` and `ends_at` timestamps for the `acs_user`'s access.",
|
|
10798
10820
|
properties: {
|
|
10799
|
-
ends_at: {
|
|
10821
|
+
ends_at: {
|
|
10822
|
+
description:
|
|
10823
|
+
"Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
10824
|
+
format: 'date-time',
|
|
10825
|
+
type: 'string',
|
|
10826
|
+
},
|
|
10800
10827
|
starts_at: {
|
|
10828
|
+
description:
|
|
10829
|
+
"Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
10801
10830
|
format: 'date-time',
|
|
10802
10831
|
type: 'string',
|
|
10803
10832
|
},
|
|
@@ -314,8 +314,7 @@ export interface Routes {
|
|
|
314
314
|
error: null
|
|
315
315
|
action_type: 'ENCODE_CREDENTIAL'
|
|
316
316
|
/** Means by which a user gains access at an entrance.
|
|
317
|
-
|
|
318
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
317
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
319
318
|
result:
|
|
320
319
|
| {
|
|
321
320
|
/** ID of the credential. */
|
|
@@ -1332,8 +1331,7 @@ export interface Routes {
|
|
|
1332
1331
|
error: null
|
|
1333
1332
|
action_type: 'ENCODE_CREDENTIAL'
|
|
1334
1333
|
/** Means by which a user gains access at an entrance.
|
|
1335
|
-
|
|
1336
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
1334
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
1337
1335
|
result:
|
|
1338
1336
|
| {
|
|
1339
1337
|
/** ID of the credential. */
|
|
@@ -2515,8 +2513,7 @@ export interface Routes {
|
|
|
2515
2513
|
error: null
|
|
2516
2514
|
action_type: 'ENCODE_CREDENTIAL'
|
|
2517
2515
|
/** Means by which a user gains access at an entrance.
|
|
2518
|
-
|
|
2519
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
2516
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
2520
2517
|
result:
|
|
2521
2518
|
| {
|
|
2522
2519
|
/** ID of the credential. */
|
|
@@ -3520,8 +3517,7 @@ export interface Routes {
|
|
|
3520
3517
|
error: null
|
|
3521
3518
|
action_type: 'ENCODE_CREDENTIAL'
|
|
3522
3519
|
/** Means by which a user gains access at an entrance.
|
|
3523
|
-
|
|
3524
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
3520
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
3525
3521
|
result:
|
|
3526
3522
|
| {
|
|
3527
3523
|
/** ID of the credential. */
|
|
@@ -4119,11 +4115,8 @@ export interface Routes {
|
|
|
4119
4115
|
}
|
|
4120
4116
|
formData: {}
|
|
4121
4117
|
jsonResponse: {
|
|
4122
|
-
/**
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
The `acs_access_group` object represents an [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).
|
|
4126
|
-
*/
|
|
4118
|
+
/** Group that defines the entrances to which a set of users has access and, in some cases, the access schedule for these entrances and users.
|
|
4119
|
+
The `acs_access_group` object represents an [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
4127
4120
|
acs_access_group: {
|
|
4128
4121
|
/** ID of the access group. */
|
|
4129
4122
|
acs_access_group_id: string
|
|
@@ -4134,14 +4127,14 @@ export interface Routes {
|
|
|
4134
4127
|
/** Name of the access group. */
|
|
4135
4128
|
name: string
|
|
4136
4129
|
/**
|
|
4137
|
-
* @deprecated
|
|
4130
|
+
* @deprecated Use `external_type`. */
|
|
4138
4131
|
access_group_type:
|
|
4139
4132
|
| 'pti_unit'
|
|
4140
4133
|
| 'pti_access_level'
|
|
4141
4134
|
| 'salto_access_group'
|
|
4142
4135
|
| 'brivo_group'
|
|
4143
4136
|
/**
|
|
4144
|
-
* @deprecated
|
|
4137
|
+
* @deprecated Use `external_type_display_name`. */
|
|
4145
4138
|
access_group_type_display_name: string
|
|
4146
4139
|
display_name: string
|
|
4147
4140
|
/** Brand-specific terminology for the access group type. */
|
|
@@ -4181,14 +4174,14 @@ export interface Routes {
|
|
|
4181
4174
|
/** Name of the access group. */
|
|
4182
4175
|
name: string
|
|
4183
4176
|
/**
|
|
4184
|
-
* @deprecated
|
|
4177
|
+
* @deprecated Use `external_type`. */
|
|
4185
4178
|
access_group_type:
|
|
4186
4179
|
| 'pti_unit'
|
|
4187
4180
|
| 'pti_access_level'
|
|
4188
4181
|
| 'salto_access_group'
|
|
4189
4182
|
| 'brivo_group'
|
|
4190
4183
|
/**
|
|
4191
|
-
* @deprecated
|
|
4184
|
+
* @deprecated Use `external_type_display_name`. */
|
|
4192
4185
|
access_group_type_display_name: string
|
|
4193
4186
|
display_name: string
|
|
4194
4187
|
/** Brand-specific terminology for the access group type. */
|
|
@@ -4328,7 +4321,9 @@ export interface Routes {
|
|
|
4328
4321
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
4329
4322
|
access_schedule?:
|
|
4330
4323
|
| {
|
|
4324
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
4331
4325
|
starts_at: string
|
|
4326
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
4332
4327
|
ends_at: string
|
|
4333
4328
|
}
|
|
4334
4329
|
| undefined
|
|
@@ -4443,14 +4438,14 @@ export interface Routes {
|
|
|
4443
4438
|
/** Name of the access group. */
|
|
4444
4439
|
name: string
|
|
4445
4440
|
/**
|
|
4446
|
-
* @deprecated
|
|
4441
|
+
* @deprecated Use `external_type`. */
|
|
4447
4442
|
access_group_type:
|
|
4448
4443
|
| 'pti_unit'
|
|
4449
4444
|
| 'pti_access_level'
|
|
4450
4445
|
| 'salto_access_group'
|
|
4451
4446
|
| 'brivo_group'
|
|
4452
4447
|
/**
|
|
4453
|
-
* @deprecated
|
|
4448
|
+
* @deprecated Use `external_type_display_name`. */
|
|
4454
4449
|
access_group_type_display_name: string
|
|
4455
4450
|
display_name: string
|
|
4456
4451
|
/** Brand-specific terminology for the access group type. */
|
|
@@ -4490,14 +4485,14 @@ export interface Routes {
|
|
|
4490
4485
|
/** Name of the access group. */
|
|
4491
4486
|
name: string
|
|
4492
4487
|
/**
|
|
4493
|
-
* @deprecated
|
|
4488
|
+
* @deprecated Use `external_type`. */
|
|
4494
4489
|
access_group_type:
|
|
4495
4490
|
| 'pti_unit'
|
|
4496
4491
|
| 'pti_access_level'
|
|
4497
4492
|
| 'salto_access_group'
|
|
4498
4493
|
| 'brivo_group'
|
|
4499
4494
|
/**
|
|
4500
|
-
* @deprecated
|
|
4495
|
+
* @deprecated Use `external_type_display_name`. */
|
|
4501
4496
|
access_group_type_display_name: string
|
|
4502
4497
|
display_name: string
|
|
4503
4498
|
/** Brand-specific terminology for the access group type. */
|
|
@@ -4572,8 +4567,7 @@ export interface Routes {
|
|
|
4572
4567
|
formData: {}
|
|
4573
4568
|
jsonResponse: {
|
|
4574
4569
|
/** Means by which a user gains access at an entrance.
|
|
4575
|
-
|
|
4576
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
4570
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
4577
4571
|
acs_credential: {
|
|
4578
4572
|
/** ID of the credential. */
|
|
4579
4573
|
acs_credential_id: string
|
|
@@ -4687,8 +4681,7 @@ export interface Routes {
|
|
|
4687
4681
|
formData: {}
|
|
4688
4682
|
jsonResponse: {
|
|
4689
4683
|
/** Means by which a user gains access at an entrance.
|
|
4690
|
-
|
|
4691
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
4684
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
4692
4685
|
acs_credential: {
|
|
4693
4686
|
/** ID of the credential. */
|
|
4694
4687
|
acs_credential_id: string
|
|
@@ -4783,8 +4776,7 @@ export interface Routes {
|
|
|
4783
4776
|
formData: {}
|
|
4784
4777
|
jsonResponse: {
|
|
4785
4778
|
/** Means by which a user gains access at an entrance.
|
|
4786
|
-
|
|
4787
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
4779
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
4788
4780
|
acs_credential: {
|
|
4789
4781
|
/** ID of the credential. */
|
|
4790
4782
|
acs_credential_id: string
|
|
@@ -5055,8 +5047,7 @@ export interface Routes {
|
|
|
5055
5047
|
formData: {}
|
|
5056
5048
|
jsonResponse: {
|
|
5057
5049
|
/** Means by which a user gains access at an entrance.
|
|
5058
|
-
|
|
5059
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
5050
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
5060
5051
|
acs_credential: {
|
|
5061
5052
|
/** ID of the credential. */
|
|
5062
5053
|
acs_credential_id: string
|
|
@@ -5139,8 +5130,7 @@ export interface Routes {
|
|
|
5139
5130
|
formData: {}
|
|
5140
5131
|
jsonResponse: {
|
|
5141
5132
|
/** Means by which a user gains access at an entrance.
|
|
5142
|
-
|
|
5143
|
-
The `unmanaged_acs_credential` object, which is not managed by Seam, represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
5133
|
+
The `unmanaged_acs_credential` object, which is not managed by Seam, represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
5144
5134
|
acs_credential: {
|
|
5145
5135
|
/** ID of the credential. */
|
|
5146
5136
|
acs_credential_id: string
|
|
@@ -5323,8 +5313,7 @@ export interface Routes {
|
|
|
5323
5313
|
formData: {}
|
|
5324
5314
|
jsonResponse: {
|
|
5325
5315
|
/** Means by which a user gains access at an entrance.
|
|
5326
|
-
|
|
5327
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
5316
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
5328
5317
|
acs_credential: {
|
|
5329
5318
|
/** ID of the credential. */
|
|
5330
5319
|
acs_credential_id: string
|
|
@@ -5697,8 +5686,7 @@ export interface Routes {
|
|
|
5697
5686
|
error: null
|
|
5698
5687
|
action_type: 'ENCODE_CREDENTIAL'
|
|
5699
5688
|
/** Means by which a user gains access at an entrance.
|
|
5700
|
-
|
|
5701
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
5689
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
5702
5690
|
result:
|
|
5703
5691
|
| {
|
|
5704
5692
|
/** ID of the credential. */
|
|
@@ -7228,8 +7216,7 @@ export interface Routes {
|
|
|
7228
7216
|
error: null
|
|
7229
7217
|
action_type: 'ENCODE_CREDENTIAL'
|
|
7230
7218
|
/** Means by which a user gains access at an entrance.
|
|
7231
|
-
|
|
7232
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
7219
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
7233
7220
|
result:
|
|
7234
7221
|
| {
|
|
7235
7222
|
/** ID of the credential. */
|
|
@@ -7798,6 +7785,7 @@ export interface Routes {
|
|
|
7798
7785
|
}
|
|
7799
7786
|
formData: {}
|
|
7800
7787
|
jsonResponse: {
|
|
7788
|
+
/** Represents an [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
7801
7789
|
acs_entrance: {
|
|
7802
7790
|
/** ID of the access control system that contains the entrance. */
|
|
7803
7791
|
acs_system_id: string
|
|
@@ -8549,7 +8537,9 @@ export interface Routes {
|
|
|
8549
8537
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
8550
8538
|
access_schedule?:
|
|
8551
8539
|
| {
|
|
8540
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
8552
8541
|
starts_at: string
|
|
8542
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
8553
8543
|
ends_at: string
|
|
8554
8544
|
}
|
|
8555
8545
|
| undefined
|
|
@@ -8682,7 +8672,9 @@ export interface Routes {
|
|
|
8682
8672
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
8683
8673
|
access_schedule?:
|
|
8684
8674
|
| {
|
|
8675
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
8685
8676
|
starts_at: string
|
|
8677
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
8686
8678
|
ends_at: string
|
|
8687
8679
|
}
|
|
8688
8680
|
| undefined
|
|
@@ -8811,7 +8803,9 @@ export interface Routes {
|
|
|
8811
8803
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
8812
8804
|
access_schedule?:
|
|
8813
8805
|
| {
|
|
8806
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
8814
8807
|
starts_at: string
|
|
8808
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
8815
8809
|
ends_at: string
|
|
8816
8810
|
}
|
|
8817
8811
|
| undefined
|
|
@@ -9051,7 +9045,9 @@ export interface Routes {
|
|
|
9051
9045
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
9052
9046
|
access_schedule?:
|
|
9053
9047
|
| {
|
|
9048
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9054
9049
|
starts_at: string
|
|
9050
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9055
9051
|
ends_at: string
|
|
9056
9052
|
}
|
|
9057
9053
|
| undefined
|
|
@@ -9175,7 +9171,9 @@ export interface Routes {
|
|
|
9175
9171
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
9176
9172
|
access_schedule?:
|
|
9177
9173
|
| {
|
|
9174
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9178
9175
|
starts_at: string
|
|
9176
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
9179
9177
|
ends_at: string
|
|
9180
9178
|
}
|
|
9181
9179
|
| undefined
|
|
@@ -9595,8 +9593,7 @@ export interface Routes {
|
|
|
9595
9593
|
error: null
|
|
9596
9594
|
action_type: 'ENCODE_CREDENTIAL'
|
|
9597
9595
|
/** Means by which a user gains access at an entrance.
|
|
9598
|
-
|
|
9599
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
9596
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
9600
9597
|
result:
|
|
9601
9598
|
| {
|
|
9602
9599
|
/** ID of the credential. */
|
|
@@ -10454,8 +10451,7 @@ export interface Routes {
|
|
|
10454
10451
|
error: null
|
|
10455
10452
|
action_type: 'ENCODE_CREDENTIAL'
|
|
10456
10453
|
/** Means by which a user gains access at an entrance.
|
|
10457
|
-
|
|
10458
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
10454
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
10459
10455
|
result:
|
|
10460
10456
|
| {
|
|
10461
10457
|
/** ID of the credential. */
|
|
@@ -16918,8 +16914,7 @@ export interface Routes {
|
|
|
16918
16914
|
error: null
|
|
16919
16915
|
action_type: 'ENCODE_CREDENTIAL'
|
|
16920
16916
|
/** Means by which a user gains access at an entrance.
|
|
16921
|
-
|
|
16922
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
16917
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
16923
16918
|
result:
|
|
16924
16919
|
| {
|
|
16925
16920
|
/** ID of the credential. */
|
|
@@ -17778,8 +17773,7 @@ export interface Routes {
|
|
|
17778
17773
|
error: null
|
|
17779
17774
|
action_type: 'ENCODE_CREDENTIAL'
|
|
17780
17775
|
/** Means by which a user gains access at an entrance.
|
|
17781
|
-
|
|
17782
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
17776
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
17783
17777
|
result:
|
|
17784
17778
|
| {
|
|
17785
17779
|
/** ID of the credential. */
|
|
@@ -20140,8 +20134,7 @@ export interface Routes {
|
|
|
20140
20134
|
error: null
|
|
20141
20135
|
action_type: 'ENCODE_CREDENTIAL'
|
|
20142
20136
|
/** Means by which a user gains access at an entrance.
|
|
20143
|
-
|
|
20144
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
20137
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
20145
20138
|
result:
|
|
20146
20139
|
| {
|
|
20147
20140
|
/** ID of the credential. */
|
|
@@ -21010,8 +21003,7 @@ export interface Routes {
|
|
|
21010
21003
|
error: null
|
|
21011
21004
|
action_type: 'ENCODE_CREDENTIAL'
|
|
21012
21005
|
/** Means by which a user gains access at an entrance.
|
|
21013
|
-
|
|
21014
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
21006
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
21015
21007
|
result:
|
|
21016
21008
|
| {
|
|
21017
21009
|
/** ID of the credential. */
|
|
@@ -21919,8 +21911,7 @@ export interface Routes {
|
|
|
21919
21911
|
error: null
|
|
21920
21912
|
action_type: 'ENCODE_CREDENTIAL'
|
|
21921
21913
|
/** Means by which a user gains access at an entrance.
|
|
21922
|
-
|
|
21923
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
21914
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
21924
21915
|
result:
|
|
21925
21916
|
| {
|
|
21926
21917
|
/** ID of the credential. */
|
|
@@ -22985,8 +22976,7 @@ export interface Routes {
|
|
|
22985
22976
|
error: null
|
|
22986
22977
|
action_type: 'ENCODE_CREDENTIAL'
|
|
22987
22978
|
/** Means by which a user gains access at an entrance.
|
|
22988
|
-
|
|
22989
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
22979
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
22990
22980
|
result:
|
|
22991
22981
|
| {
|
|
22992
22982
|
/** ID of the credential. */
|
|
@@ -23847,8 +23837,7 @@ export interface Routes {
|
|
|
23847
23837
|
error: null
|
|
23848
23838
|
action_type: 'ENCODE_CREDENTIAL'
|
|
23849
23839
|
/** Means by which a user gains access at an entrance.
|
|
23850
|
-
|
|
23851
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
23840
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
23852
23841
|
result:
|
|
23853
23842
|
| {
|
|
23854
23843
|
/** ID of the credential. */
|
|
@@ -25400,8 +25389,7 @@ export interface Routes {
|
|
|
25400
25389
|
error: null
|
|
25401
25390
|
action_type: 'ENCODE_CREDENTIAL'
|
|
25402
25391
|
/** Means by which a user gains access at an entrance.
|
|
25403
|
-
|
|
25404
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
25392
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
25405
25393
|
result:
|
|
25406
25394
|
| {
|
|
25407
25395
|
/** ID of the credential. */
|
|
@@ -26264,8 +26252,7 @@ export interface Routes {
|
|
|
26264
26252
|
error: null
|
|
26265
26253
|
action_type: 'ENCODE_CREDENTIAL'
|
|
26266
26254
|
/** Means by which a user gains access at an entrance.
|
|
26267
|
-
|
|
26268
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
26255
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
26269
26256
|
result:
|
|
26270
26257
|
| {
|
|
26271
26258
|
/** ID of the credential. */
|
|
@@ -28587,8 +28574,7 @@ export interface Routes {
|
|
|
28587
28574
|
error: null
|
|
28588
28575
|
action_type: 'ENCODE_CREDENTIAL'
|
|
28589
28576
|
/** Means by which a user gains access at an entrance.
|
|
28590
|
-
|
|
28591
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
28577
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
28592
28578
|
result:
|
|
28593
28579
|
| {
|
|
28594
28580
|
/** ID of the credential. */
|
|
@@ -29568,8 +29554,7 @@ export interface Routes {
|
|
|
29568
29554
|
error: null
|
|
29569
29555
|
action_type: 'ENCODE_CREDENTIAL'
|
|
29570
29556
|
/** Means by which a user gains access at an entrance.
|
|
29571
|
-
|
|
29572
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
29557
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
29573
29558
|
result:
|
|
29574
29559
|
| {
|
|
29575
29560
|
/** ID of the credential. */
|
|
@@ -31832,7 +31817,9 @@ export interface Routes {
|
|
|
31832
31817
|
/** `starts_at` and `ends_at` timestamps for the `acs_user`'s access. */
|
|
31833
31818
|
access_schedule?:
|
|
31834
31819
|
| {
|
|
31820
|
+
/** Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
31835
31821
|
starts_at: string
|
|
31822
|
+
/** Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
31836
31823
|
ends_at: string
|
|
31837
31824
|
}
|
|
31838
31825
|
| undefined
|
|
@@ -32391,8 +32378,7 @@ export interface Routes {
|
|
|
32391
32378
|
error: null
|
|
32392
32379
|
action_type: 'ENCODE_CREDENTIAL'
|
|
32393
32380
|
/** Means by which a user gains access at an entrance.
|
|
32394
|
-
|
|
32395
|
-
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
32381
|
+
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
32396
32382
|
result:
|
|
32397
32383
|
| {
|
|
32398
32384
|
/** ID of the credential. */
|