@seamapi/types 1.666.0 → 1.667.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 +42 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +325 -14
- package/dist/index.cjs +42 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +25 -6
- package/lib/seam/connect/models/events/devices.d.ts +30 -8
- package/lib/seam/connect/models/events/devices.js +25 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +15 -4
- package/lib/seam/connect/openapi.d.ts +185 -0
- package/lib/seam/connect/openapi.js +20 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -4
- package/package.json +2 -2
- package/src/lib/seam/connect/models/events/devices.ts +25 -0
- package/src/lib/seam/connect/openapi.ts +24 -1
- package/src/lib/seam/connect/route-types.ts +100 -4
|
@@ -32392,7 +32392,7 @@ export type Routes = {
|
|
|
32392
32392
|
/** Date and time at which the event occurred. */
|
|
32393
32393
|
occurred_at: string;
|
|
32394
32394
|
/** ID of the affected device. */
|
|
32395
|
-
device_id
|
|
32395
|
+
device_id?: string | undefined;
|
|
32396
32396
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
|
|
32397
32397
|
connected_account_id: string;
|
|
32398
32398
|
/** Custom metadata of the device, present when device_id is provided. */
|
|
@@ -32410,6 +32410,30 @@ export type Routes = {
|
|
|
32410
32410
|
action_attempt_id?: string | undefined;
|
|
32411
32411
|
/** Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
32412
32412
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
|
|
32413
|
+
/**
|
|
32414
|
+
undocumented: Unreleased.
|
|
32415
|
+
---
|
|
32416
|
+
ID of the user identity associated with the unlock event.
|
|
32417
|
+
*/
|
|
32418
|
+
user_identity_id?: string | undefined;
|
|
32419
|
+
/**
|
|
32420
|
+
undocumented: Unreleased.
|
|
32421
|
+
---
|
|
32422
|
+
ID of the ACS system associated with the unlock event.
|
|
32423
|
+
*/
|
|
32424
|
+
acs_system_id?: string | undefined;
|
|
32425
|
+
/**
|
|
32426
|
+
undocumented: Unreleased.
|
|
32427
|
+
---
|
|
32428
|
+
ID of the ACS user associated with the unlock event.
|
|
32429
|
+
*/
|
|
32430
|
+
acs_user_id?: string | undefined;
|
|
32431
|
+
/**
|
|
32432
|
+
undocumented: Unreleased.
|
|
32433
|
+
---
|
|
32434
|
+
ID of the ACS entrance associated with the unlock event.
|
|
32435
|
+
*/
|
|
32436
|
+
acs_entrance_id?: string | undefined;
|
|
32413
32437
|
} | {
|
|
32414
32438
|
/** ID of the event. */
|
|
32415
32439
|
event_id: string;
|
|
@@ -34352,7 +34376,7 @@ export type Routes = {
|
|
|
34352
34376
|
/** Date and time at which the event occurred. */
|
|
34353
34377
|
occurred_at: string;
|
|
34354
34378
|
/** ID of the affected device. */
|
|
34355
|
-
device_id
|
|
34379
|
+
device_id?: string | undefined;
|
|
34356
34380
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
|
|
34357
34381
|
connected_account_id: string;
|
|
34358
34382
|
/** Custom metadata of the device, present when device_id is provided. */
|
|
@@ -34370,6 +34394,30 @@ export type Routes = {
|
|
|
34370
34394
|
action_attempt_id?: string | undefined;
|
|
34371
34395
|
/** Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
34372
34396
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
|
|
34397
|
+
/**
|
|
34398
|
+
undocumented: Unreleased.
|
|
34399
|
+
---
|
|
34400
|
+
ID of the user identity associated with the unlock event.
|
|
34401
|
+
*/
|
|
34402
|
+
user_identity_id?: string | undefined;
|
|
34403
|
+
/**
|
|
34404
|
+
undocumented: Unreleased.
|
|
34405
|
+
---
|
|
34406
|
+
ID of the ACS system associated with the unlock event.
|
|
34407
|
+
*/
|
|
34408
|
+
acs_system_id?: string | undefined;
|
|
34409
|
+
/**
|
|
34410
|
+
undocumented: Unreleased.
|
|
34411
|
+
---
|
|
34412
|
+
ID of the ACS user associated with the unlock event.
|
|
34413
|
+
*/
|
|
34414
|
+
acs_user_id?: string | undefined;
|
|
34415
|
+
/**
|
|
34416
|
+
undocumented: Unreleased.
|
|
34417
|
+
---
|
|
34418
|
+
ID of the ACS entrance associated with the unlock event.
|
|
34419
|
+
*/
|
|
34420
|
+
acs_entrance_id?: string | undefined;
|
|
34373
34421
|
} | {
|
|
34374
34422
|
/** ID of the event. */
|
|
34375
34423
|
event_id: string;
|
|
@@ -53996,7 +54044,7 @@ export type Routes = {
|
|
|
53996
54044
|
/** Date and time at which the event occurred. */
|
|
53997
54045
|
occurred_at: string;
|
|
53998
54046
|
/** ID of the affected device. */
|
|
53999
|
-
device_id
|
|
54047
|
+
device_id?: string | undefined;
|
|
54000
54048
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
|
|
54001
54049
|
connected_account_id: string;
|
|
54002
54050
|
/** Custom metadata of the device, present when device_id is provided. */
|
|
@@ -54014,6 +54062,30 @@ export type Routes = {
|
|
|
54014
54062
|
action_attempt_id?: string | undefined;
|
|
54015
54063
|
/** Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
54016
54064
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
|
|
54065
|
+
/**
|
|
54066
|
+
undocumented: Unreleased.
|
|
54067
|
+
---
|
|
54068
|
+
ID of the user identity associated with the unlock event.
|
|
54069
|
+
*/
|
|
54070
|
+
user_identity_id?: string | undefined;
|
|
54071
|
+
/**
|
|
54072
|
+
undocumented: Unreleased.
|
|
54073
|
+
---
|
|
54074
|
+
ID of the ACS system associated with the unlock event.
|
|
54075
|
+
*/
|
|
54076
|
+
acs_system_id?: string | undefined;
|
|
54077
|
+
/**
|
|
54078
|
+
undocumented: Unreleased.
|
|
54079
|
+
---
|
|
54080
|
+
ID of the ACS user associated with the unlock event.
|
|
54081
|
+
*/
|
|
54082
|
+
acs_user_id?: string | undefined;
|
|
54083
|
+
/**
|
|
54084
|
+
undocumented: Unreleased.
|
|
54085
|
+
---
|
|
54086
|
+
ID of the ACS entrance associated with the unlock event.
|
|
54087
|
+
*/
|
|
54088
|
+
acs_entrance_id?: string | undefined;
|
|
54017
54089
|
} | {
|
|
54018
54090
|
/** ID of the event. */
|
|
54019
54091
|
event_id: string;
|
|
@@ -82511,7 +82583,7 @@ export type Routes = {
|
|
|
82511
82583
|
/** Date and time at which the event occurred. */
|
|
82512
82584
|
occurred_at: string;
|
|
82513
82585
|
/** ID of the affected device. */
|
|
82514
|
-
device_id
|
|
82586
|
+
device_id?: string | undefined;
|
|
82515
82587
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
|
|
82516
82588
|
connected_account_id: string;
|
|
82517
82589
|
/** Custom metadata of the device, present when device_id is provided. */
|
|
@@ -82529,6 +82601,30 @@ export type Routes = {
|
|
|
82529
82601
|
action_attempt_id?: string | undefined;
|
|
82530
82602
|
/** Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
82531
82603
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
|
|
82604
|
+
/**
|
|
82605
|
+
undocumented: Unreleased.
|
|
82606
|
+
---
|
|
82607
|
+
ID of the user identity associated with the unlock event.
|
|
82608
|
+
*/
|
|
82609
|
+
user_identity_id?: string | undefined;
|
|
82610
|
+
/**
|
|
82611
|
+
undocumented: Unreleased.
|
|
82612
|
+
---
|
|
82613
|
+
ID of the ACS system associated with the unlock event.
|
|
82614
|
+
*/
|
|
82615
|
+
acs_system_id?: string | undefined;
|
|
82616
|
+
/**
|
|
82617
|
+
undocumented: Unreleased.
|
|
82618
|
+
---
|
|
82619
|
+
ID of the ACS user associated with the unlock event.
|
|
82620
|
+
*/
|
|
82621
|
+
acs_user_id?: string | undefined;
|
|
82622
|
+
/**
|
|
82623
|
+
undocumented: Unreleased.
|
|
82624
|
+
---
|
|
82625
|
+
ID of the ACS entrance associated with the unlock event.
|
|
82626
|
+
*/
|
|
82627
|
+
acs_entrance_id?: string | undefined;
|
|
82532
82628
|
} | {
|
|
82533
82629
|
/** ID of the event. */
|
|
82534
82630
|
event_id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.667.0",
|
|
4
4
|
"description": "TypeScript types for the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"zod": "^3.24.0"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"@seamapi/blueprint": "^0.
|
|
94
|
+
"@seamapi/blueprint": "^0.53.0",
|
|
95
95
|
"@swc/core": "^1.11.29",
|
|
96
96
|
"@types/node": "^22.15.21",
|
|
97
97
|
"concurrently": "^9.2.0",
|
|
@@ -411,6 +411,31 @@ export const lock_unlocked_event = device_event.extend({
|
|
|
411
411
|
method: lock_method.describe(
|
|
412
412
|
'Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.',
|
|
413
413
|
),
|
|
414
|
+
user_identity_id: z.string().uuid().optional().describe(`
|
|
415
|
+
undocumented: Unreleased.
|
|
416
|
+
---
|
|
417
|
+
ID of the user identity associated with the unlock event.
|
|
418
|
+
`),
|
|
419
|
+
acs_system_id: z.string().uuid().optional().describe(`
|
|
420
|
+
undocumented: Unreleased.
|
|
421
|
+
---
|
|
422
|
+
ID of the ACS system associated with the unlock event.
|
|
423
|
+
`),
|
|
424
|
+
acs_user_id: z.string().uuid().optional().describe(`
|
|
425
|
+
undocumented: Unreleased.
|
|
426
|
+
---
|
|
427
|
+
ID of the ACS user associated with the unlock event.
|
|
428
|
+
`),
|
|
429
|
+
acs_entrance_id: z.string().uuid().optional().describe(`
|
|
430
|
+
undocumented: Unreleased.
|
|
431
|
+
---
|
|
432
|
+
ID of the ACS entrance associated with the unlock event.
|
|
433
|
+
`),
|
|
434
|
+
device_id: z
|
|
435
|
+
.string()
|
|
436
|
+
.uuid()
|
|
437
|
+
.optional()
|
|
438
|
+
.describe('ID of the affected device.'),
|
|
414
439
|
}).describe(`
|
|
415
440
|
---
|
|
416
441
|
route_path: /locks
|
|
@@ -18723,6 +18723,24 @@ export default {
|
|
|
18723
18723
|
format: 'uuid',
|
|
18724
18724
|
type: 'string',
|
|
18725
18725
|
},
|
|
18726
|
+
acs_entrance_id: {
|
|
18727
|
+
description:
|
|
18728
|
+
'\n undocumented: Unreleased.\n ---\n ID of the ACS entrance associated with the unlock event.\n ',
|
|
18729
|
+
format: 'uuid',
|
|
18730
|
+
type: 'string',
|
|
18731
|
+
},
|
|
18732
|
+
acs_system_id: {
|
|
18733
|
+
description:
|
|
18734
|
+
'\n undocumented: Unreleased.\n ---\n ID of the ACS system associated with the unlock event.\n ',
|
|
18735
|
+
format: 'uuid',
|
|
18736
|
+
type: 'string',
|
|
18737
|
+
},
|
|
18738
|
+
acs_user_id: {
|
|
18739
|
+
description:
|
|
18740
|
+
'\n undocumented: Unreleased.\n ---\n ID of the ACS user associated with the unlock event.\n ',
|
|
18741
|
+
format: 'uuid',
|
|
18742
|
+
type: 'string',
|
|
18743
|
+
},
|
|
18726
18744
|
action_attempt_id: {
|
|
18727
18745
|
description:
|
|
18728
18746
|
'ID of the action attempt associated with the unlock action.',
|
|
@@ -18778,6 +18796,12 @@ export default {
|
|
|
18778
18796
|
format: 'date-time',
|
|
18779
18797
|
type: 'string',
|
|
18780
18798
|
},
|
|
18799
|
+
user_identity_id: {
|
|
18800
|
+
description:
|
|
18801
|
+
'\n undocumented: Unreleased.\n ---\n ID of the user identity associated with the unlock event.\n ',
|
|
18802
|
+
format: 'uuid',
|
|
18803
|
+
type: 'string',
|
|
18804
|
+
},
|
|
18781
18805
|
workspace_id: {
|
|
18782
18806
|
description:
|
|
18783
18807
|
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event.',
|
|
@@ -18790,7 +18814,6 @@ export default {
|
|
|
18790
18814
|
'workspace_id',
|
|
18791
18815
|
'created_at',
|
|
18792
18816
|
'occurred_at',
|
|
18793
|
-
'device_id',
|
|
18794
18817
|
'connected_account_id',
|
|
18795
18818
|
'event_type',
|
|
18796
18819
|
'method',
|
|
@@ -38159,7 +38159,7 @@ export type Routes = {
|
|
|
38159
38159
|
/** Date and time at which the event occurred. */
|
|
38160
38160
|
occurred_at: string
|
|
38161
38161
|
/** ID of the affected device. */
|
|
38162
|
-
device_id
|
|
38162
|
+
device_id?: string | undefined
|
|
38163
38163
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
|
|
38164
38164
|
connected_account_id: string
|
|
38165
38165
|
/** Custom metadata of the device, present when device_id is provided. */
|
|
@@ -38186,6 +38186,30 @@ export type Routes = {
|
|
|
38186
38186
|
| 'automatic'
|
|
38187
38187
|
| 'unknown'
|
|
38188
38188
|
| 'seamapi'
|
|
38189
|
+
/**
|
|
38190
|
+
undocumented: Unreleased.
|
|
38191
|
+
---
|
|
38192
|
+
ID of the user identity associated with the unlock event.
|
|
38193
|
+
*/
|
|
38194
|
+
user_identity_id?: string | undefined
|
|
38195
|
+
/**
|
|
38196
|
+
undocumented: Unreleased.
|
|
38197
|
+
---
|
|
38198
|
+
ID of the ACS system associated with the unlock event.
|
|
38199
|
+
*/
|
|
38200
|
+
acs_system_id?: string | undefined
|
|
38201
|
+
/**
|
|
38202
|
+
undocumented: Unreleased.
|
|
38203
|
+
---
|
|
38204
|
+
ID of the ACS user associated with the unlock event.
|
|
38205
|
+
*/
|
|
38206
|
+
acs_user_id?: string | undefined
|
|
38207
|
+
/**
|
|
38208
|
+
undocumented: Unreleased.
|
|
38209
|
+
---
|
|
38210
|
+
ID of the ACS entrance associated with the unlock event.
|
|
38211
|
+
*/
|
|
38212
|
+
acs_entrance_id?: string | undefined
|
|
38189
38213
|
}
|
|
38190
38214
|
| {
|
|
38191
38215
|
/** ID of the event. */
|
|
@@ -40648,7 +40672,7 @@ export type Routes = {
|
|
|
40648
40672
|
/** Date and time at which the event occurred. */
|
|
40649
40673
|
occurred_at: string
|
|
40650
40674
|
/** ID of the affected device. */
|
|
40651
|
-
device_id
|
|
40675
|
+
device_id?: string | undefined
|
|
40652
40676
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
|
|
40653
40677
|
connected_account_id: string
|
|
40654
40678
|
/** Custom metadata of the device, present when device_id is provided. */
|
|
@@ -40670,6 +40694,30 @@ export type Routes = {
|
|
|
40670
40694
|
action_attempt_id?: string | undefined
|
|
40671
40695
|
/** Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
40672
40696
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi'
|
|
40697
|
+
/**
|
|
40698
|
+
undocumented: Unreleased.
|
|
40699
|
+
---
|
|
40700
|
+
ID of the user identity associated with the unlock event.
|
|
40701
|
+
*/
|
|
40702
|
+
user_identity_id?: string | undefined
|
|
40703
|
+
/**
|
|
40704
|
+
undocumented: Unreleased.
|
|
40705
|
+
---
|
|
40706
|
+
ID of the ACS system associated with the unlock event.
|
|
40707
|
+
*/
|
|
40708
|
+
acs_system_id?: string | undefined
|
|
40709
|
+
/**
|
|
40710
|
+
undocumented: Unreleased.
|
|
40711
|
+
---
|
|
40712
|
+
ID of the ACS user associated with the unlock event.
|
|
40713
|
+
*/
|
|
40714
|
+
acs_user_id?: string | undefined
|
|
40715
|
+
/**
|
|
40716
|
+
undocumented: Unreleased.
|
|
40717
|
+
---
|
|
40718
|
+
ID of the ACS entrance associated with the unlock event.
|
|
40719
|
+
*/
|
|
40720
|
+
acs_entrance_id?: string | undefined
|
|
40673
40721
|
}
|
|
40674
40722
|
| {
|
|
40675
40723
|
/** ID of the event. */
|
|
@@ -64316,7 +64364,7 @@ export type Routes = {
|
|
|
64316
64364
|
/** Date and time at which the event occurred. */
|
|
64317
64365
|
occurred_at: string
|
|
64318
64366
|
/** ID of the affected device. */
|
|
64319
|
-
device_id
|
|
64367
|
+
device_id?: string | undefined
|
|
64320
64368
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
|
|
64321
64369
|
connected_account_id: string
|
|
64322
64370
|
/** Custom metadata of the device, present when device_id is provided. */
|
|
@@ -64338,6 +64386,30 @@ export type Routes = {
|
|
|
64338
64386
|
action_attempt_id?: string | undefined
|
|
64339
64387
|
/** Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
64340
64388
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi'
|
|
64389
|
+
/**
|
|
64390
|
+
undocumented: Unreleased.
|
|
64391
|
+
---
|
|
64392
|
+
ID of the user identity associated with the unlock event.
|
|
64393
|
+
*/
|
|
64394
|
+
user_identity_id?: string | undefined
|
|
64395
|
+
/**
|
|
64396
|
+
undocumented: Unreleased.
|
|
64397
|
+
---
|
|
64398
|
+
ID of the ACS system associated with the unlock event.
|
|
64399
|
+
*/
|
|
64400
|
+
acs_system_id?: string | undefined
|
|
64401
|
+
/**
|
|
64402
|
+
undocumented: Unreleased.
|
|
64403
|
+
---
|
|
64404
|
+
ID of the ACS user associated with the unlock event.
|
|
64405
|
+
*/
|
|
64406
|
+
acs_user_id?: string | undefined
|
|
64407
|
+
/**
|
|
64408
|
+
undocumented: Unreleased.
|
|
64409
|
+
---
|
|
64410
|
+
ID of the ACS entrance associated with the unlock event.
|
|
64411
|
+
*/
|
|
64412
|
+
acs_entrance_id?: string | undefined
|
|
64341
64413
|
}
|
|
64342
64414
|
| {
|
|
64343
64415
|
/** ID of the event. */
|
|
@@ -98148,7 +98220,7 @@ export type Routes = {
|
|
|
98148
98220
|
/** Date and time at which the event occurred. */
|
|
98149
98221
|
occurred_at: string
|
|
98150
98222
|
/** ID of the affected device. */
|
|
98151
|
-
device_id
|
|
98223
|
+
device_id?: string | undefined
|
|
98152
98224
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
|
|
98153
98225
|
connected_account_id: string
|
|
98154
98226
|
/** Custom metadata of the device, present when device_id is provided. */
|
|
@@ -98175,6 +98247,30 @@ export type Routes = {
|
|
|
98175
98247
|
| 'automatic'
|
|
98176
98248
|
| 'unknown'
|
|
98177
98249
|
| 'seamapi'
|
|
98250
|
+
/**
|
|
98251
|
+
undocumented: Unreleased.
|
|
98252
|
+
---
|
|
98253
|
+
ID of the user identity associated with the unlock event.
|
|
98254
|
+
*/
|
|
98255
|
+
user_identity_id?: string | undefined
|
|
98256
|
+
/**
|
|
98257
|
+
undocumented: Unreleased.
|
|
98258
|
+
---
|
|
98259
|
+
ID of the ACS system associated with the unlock event.
|
|
98260
|
+
*/
|
|
98261
|
+
acs_system_id?: string | undefined
|
|
98262
|
+
/**
|
|
98263
|
+
undocumented: Unreleased.
|
|
98264
|
+
---
|
|
98265
|
+
ID of the ACS user associated with the unlock event.
|
|
98266
|
+
*/
|
|
98267
|
+
acs_user_id?: string | undefined
|
|
98268
|
+
/**
|
|
98269
|
+
undocumented: Unreleased.
|
|
98270
|
+
---
|
|
98271
|
+
ID of the ACS entrance associated with the unlock event.
|
|
98272
|
+
*/
|
|
98273
|
+
acs_entrance_id?: string | undefined
|
|
98178
98274
|
}
|
|
98179
98275
|
| {
|
|
98180
98276
|
/** ID of the event. */
|