@seamapi/types 1.344.3 → 1.345.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 +127 -30
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +164 -1
- package/lib/seam/connect/models/devices/phone-properties.js +18 -8
- package/lib/seam/connect/models/devices/phone-properties.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.js +4 -1
- package/lib/seam/connect/models/devices/phone.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +39 -0
- package/lib/seam/connect/openapi.js +113 -20
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +125 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/phone-properties.ts +24 -10
- package/src/lib/seam/connect/models/devices/phone.ts +4 -1
- package/src/lib/seam/connect/openapi.ts +144 -20
- package/src/lib/seam/connect/route-types.ts +125 -1
|
@@ -15782,21 +15782,28 @@ export interface Routes {
|
|
|
15782
15782
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
15783
15783
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
15784
15784
|
} & {
|
|
15785
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
15785
15786
|
assa_abloy_credential_service_metadata?:
|
|
15786
15787
|
| (
|
|
15787
15788
|
| {
|
|
15789
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
15788
15790
|
has_active_endpoint: boolean
|
|
15791
|
+
/** Endpoints associated with the phone. */
|
|
15789
15792
|
endpoints: Array<{
|
|
15793
|
+
/** ID of the associated endpoint. */
|
|
15790
15794
|
endpoint_id: string
|
|
15795
|
+
/** Indicated whether the endpoint is active. */
|
|
15791
15796
|
is_active: boolean
|
|
15792
15797
|
}>
|
|
15793
15798
|
}
|
|
15794
15799
|
| undefined
|
|
15795
15800
|
)
|
|
15796
15801
|
| undefined
|
|
15802
|
+
/** Salto Space credential service metadata for the phone. */
|
|
15797
15803
|
salto_space_credential_service_metadata?:
|
|
15798
15804
|
| (
|
|
15799
15805
|
| {
|
|
15806
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
15800
15807
|
has_active_phone: boolean
|
|
15801
15808
|
}
|
|
15802
15809
|
| undefined
|
|
@@ -16831,21 +16838,28 @@ export interface Routes {
|
|
|
16831
16838
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
16832
16839
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
16833
16840
|
} & {
|
|
16841
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
16834
16842
|
assa_abloy_credential_service_metadata?:
|
|
16835
16843
|
| (
|
|
16836
16844
|
| {
|
|
16845
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
16837
16846
|
has_active_endpoint: boolean
|
|
16847
|
+
/** Endpoints associated with the phone. */
|
|
16838
16848
|
endpoints: Array<{
|
|
16849
|
+
/** ID of the associated endpoint. */
|
|
16839
16850
|
endpoint_id: string
|
|
16851
|
+
/** Indicated whether the endpoint is active. */
|
|
16840
16852
|
is_active: boolean
|
|
16841
16853
|
}>
|
|
16842
16854
|
}
|
|
16843
16855
|
| undefined
|
|
16844
16856
|
)
|
|
16845
16857
|
| undefined
|
|
16858
|
+
/** Salto Space credential service metadata for the phone. */
|
|
16846
16859
|
salto_space_credential_service_metadata?:
|
|
16847
16860
|
| (
|
|
16848
16861
|
| {
|
|
16862
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
16849
16863
|
has_active_phone: boolean
|
|
16850
16864
|
}
|
|
16851
16865
|
| undefined
|
|
@@ -21417,21 +21431,28 @@ export interface Routes {
|
|
|
21417
21431
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
21418
21432
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
21419
21433
|
} & {
|
|
21434
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
21420
21435
|
assa_abloy_credential_service_metadata?:
|
|
21421
21436
|
| (
|
|
21422
21437
|
| {
|
|
21438
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
21423
21439
|
has_active_endpoint: boolean
|
|
21440
|
+
/** Endpoints associated with the phone. */
|
|
21424
21441
|
endpoints: Array<{
|
|
21442
|
+
/** ID of the associated endpoint. */
|
|
21425
21443
|
endpoint_id: string
|
|
21444
|
+
/** Indicated whether the endpoint is active. */
|
|
21426
21445
|
is_active: boolean
|
|
21427
21446
|
}>
|
|
21428
21447
|
}
|
|
21429
21448
|
| undefined
|
|
21430
21449
|
)
|
|
21431
21450
|
| undefined
|
|
21451
|
+
/** Salto Space credential service metadata for the phone. */
|
|
21432
21452
|
salto_space_credential_service_metadata?:
|
|
21433
21453
|
| (
|
|
21434
21454
|
| {
|
|
21455
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
21435
21456
|
has_active_phone: boolean
|
|
21436
21457
|
}
|
|
21437
21458
|
| undefined
|
|
@@ -22283,21 +22304,28 @@ export interface Routes {
|
|
|
22283
22304
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
22284
22305
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
22285
22306
|
} & {
|
|
22307
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
22286
22308
|
assa_abloy_credential_service_metadata?:
|
|
22287
22309
|
| (
|
|
22288
22310
|
| {
|
|
22311
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
22289
22312
|
has_active_endpoint: boolean
|
|
22313
|
+
/** Endpoints associated with the phone. */
|
|
22290
22314
|
endpoints: Array<{
|
|
22315
|
+
/** ID of the associated endpoint. */
|
|
22291
22316
|
endpoint_id: string
|
|
22317
|
+
/** Indicated whether the endpoint is active. */
|
|
22292
22318
|
is_active: boolean
|
|
22293
22319
|
}>
|
|
22294
22320
|
}
|
|
22295
22321
|
| undefined
|
|
22296
22322
|
)
|
|
22297
22323
|
| undefined
|
|
22324
|
+
/** Salto Space credential service metadata for the phone. */
|
|
22298
22325
|
salto_space_credential_service_metadata?:
|
|
22299
22326
|
| (
|
|
22300
22327
|
| {
|
|
22328
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
22301
22329
|
has_active_phone: boolean
|
|
22302
22330
|
}
|
|
22303
22331
|
| undefined
|
|
@@ -23332,21 +23360,28 @@ export interface Routes {
|
|
|
23332
23360
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
23333
23361
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
23334
23362
|
} & {
|
|
23363
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
23335
23364
|
assa_abloy_credential_service_metadata?:
|
|
23336
23365
|
| (
|
|
23337
23366
|
| {
|
|
23367
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
23338
23368
|
has_active_endpoint: boolean
|
|
23369
|
+
/** Endpoints associated with the phone. */
|
|
23339
23370
|
endpoints: Array<{
|
|
23371
|
+
/** ID of the associated endpoint. */
|
|
23340
23372
|
endpoint_id: string
|
|
23373
|
+
/** Indicated whether the endpoint is active. */
|
|
23341
23374
|
is_active: boolean
|
|
23342
23375
|
}>
|
|
23343
23376
|
}
|
|
23344
23377
|
| undefined
|
|
23345
23378
|
)
|
|
23346
23379
|
| undefined
|
|
23380
|
+
/** Salto Space credential service metadata for the phone. */
|
|
23347
23381
|
salto_space_credential_service_metadata?:
|
|
23348
23382
|
| (
|
|
23349
23383
|
| {
|
|
23384
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
23350
23385
|
has_active_phone: boolean
|
|
23351
23386
|
}
|
|
23352
23387
|
| undefined
|
|
@@ -24197,21 +24232,28 @@ export interface Routes {
|
|
|
24197
24232
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
24198
24233
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
24199
24234
|
} & {
|
|
24235
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
24200
24236
|
assa_abloy_credential_service_metadata?:
|
|
24201
24237
|
| (
|
|
24202
24238
|
| {
|
|
24239
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
24203
24240
|
has_active_endpoint: boolean
|
|
24241
|
+
/** Endpoints associated with the phone. */
|
|
24204
24242
|
endpoints: Array<{
|
|
24243
|
+
/** ID of the associated endpoint. */
|
|
24205
24244
|
endpoint_id: string
|
|
24245
|
+
/** Indicated whether the endpoint is active. */
|
|
24206
24246
|
is_active: boolean
|
|
24207
24247
|
}>
|
|
24208
24248
|
}
|
|
24209
24249
|
| undefined
|
|
24210
24250
|
)
|
|
24211
24251
|
| undefined
|
|
24252
|
+
/** Salto Space credential service metadata for the phone. */
|
|
24212
24253
|
salto_space_credential_service_metadata?:
|
|
24213
24254
|
| (
|
|
24214
24255
|
| {
|
|
24256
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
24215
24257
|
has_active_phone: boolean
|
|
24216
24258
|
}
|
|
24217
24259
|
| undefined
|
|
@@ -27353,21 +27395,28 @@ export interface Routes {
|
|
|
27353
27395
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
27354
27396
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
27355
27397
|
} & {
|
|
27398
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
27356
27399
|
assa_abloy_credential_service_metadata?:
|
|
27357
27400
|
| (
|
|
27358
27401
|
| {
|
|
27402
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
27359
27403
|
has_active_endpoint: boolean
|
|
27404
|
+
/** Endpoints associated with the phone. */
|
|
27360
27405
|
endpoints: Array<{
|
|
27406
|
+
/** ID of the associated endpoint. */
|
|
27361
27407
|
endpoint_id: string
|
|
27408
|
+
/** Indicated whether the endpoint is active. */
|
|
27362
27409
|
is_active: boolean
|
|
27363
27410
|
}>
|
|
27364
27411
|
}
|
|
27365
27412
|
| undefined
|
|
27366
27413
|
)
|
|
27367
27414
|
| undefined
|
|
27415
|
+
/** Salto Space credential service metadata for the phone. */
|
|
27368
27416
|
salto_space_credential_service_metadata?:
|
|
27369
27417
|
| (
|
|
27370
27418
|
| {
|
|
27419
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
27371
27420
|
has_active_phone: boolean
|
|
27372
27421
|
}
|
|
27373
27422
|
| undefined
|
|
@@ -28218,21 +28267,28 @@ export interface Routes {
|
|
|
28218
28267
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
28219
28268
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
28220
28269
|
} & {
|
|
28270
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
28221
28271
|
assa_abloy_credential_service_metadata?:
|
|
28222
28272
|
| (
|
|
28223
28273
|
| {
|
|
28274
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
28224
28275
|
has_active_endpoint: boolean
|
|
28276
|
+
/** Endpoints associated with the phone. */
|
|
28225
28277
|
endpoints: Array<{
|
|
28278
|
+
/** ID of the associated endpoint. */
|
|
28226
28279
|
endpoint_id: string
|
|
28280
|
+
/** Indicated whether the endpoint is active. */
|
|
28227
28281
|
is_active: boolean
|
|
28228
28282
|
}>
|
|
28229
28283
|
}
|
|
28230
28284
|
| undefined
|
|
28231
28285
|
)
|
|
28232
28286
|
| undefined
|
|
28287
|
+
/** Salto Space credential service metadata for the phone. */
|
|
28233
28288
|
salto_space_credential_service_metadata?:
|
|
28234
28289
|
| (
|
|
28235
28290
|
| {
|
|
28291
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
28236
28292
|
has_active_phone: boolean
|
|
28237
28293
|
}
|
|
28238
28294
|
| undefined
|
|
@@ -32145,6 +32201,7 @@ export interface Routes {
|
|
|
32145
32201
|
method: 'DELETE' | 'POST'
|
|
32146
32202
|
queryParams: {}
|
|
32147
32203
|
jsonBody: {
|
|
32204
|
+
/** Device ID of the desired phone. */
|
|
32148
32205
|
device_id: string
|
|
32149
32206
|
}
|
|
32150
32207
|
commonParams: {}
|
|
@@ -32157,7 +32214,9 @@ export interface Routes {
|
|
|
32157
32214
|
queryParams: {}
|
|
32158
32215
|
jsonBody: {}
|
|
32159
32216
|
commonParams: {
|
|
32217
|
+
/** ID of the user identity that represents the owner by which to filter the list of returned phones. */
|
|
32160
32218
|
owner_user_identity_id?: string | undefined
|
|
32219
|
+
/** ID of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) by which to filter the list of returned phones. */
|
|
32161
32220
|
acs_credential_id?: string | undefined
|
|
32162
32221
|
}
|
|
32163
32222
|
formData: {}
|
|
@@ -32165,6 +32224,7 @@ export interface Routes {
|
|
|
32165
32224
|
phones: Array<{
|
|
32166
32225
|
/** Unique identifier for the device. */
|
|
32167
32226
|
device_id: string
|
|
32227
|
+
/** Type of phone. */
|
|
32168
32228
|
device_type: 'android_phone' | 'ios_phone'
|
|
32169
32229
|
/** Optional nickname to describe the device, settable through Seam */
|
|
32170
32230
|
nickname?: string | undefined
|
|
@@ -32180,17 +32240,24 @@ export interface Routes {
|
|
|
32180
32240
|
| 'phone'
|
|
32181
32241
|
>
|
|
32182
32242
|
properties: {
|
|
32243
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
32183
32244
|
assa_abloy_credential_service_metadata?:
|
|
32184
32245
|
| {
|
|
32246
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
32185
32247
|
has_active_endpoint: boolean
|
|
32248
|
+
/** Endpoints associated with the phone. */
|
|
32186
32249
|
endpoints: Array<{
|
|
32250
|
+
/** ID of the associated endpoint. */
|
|
32187
32251
|
endpoint_id: string
|
|
32252
|
+
/** Indicated whether the endpoint is active. */
|
|
32188
32253
|
is_active: boolean
|
|
32189
32254
|
}>
|
|
32190
32255
|
}
|
|
32191
32256
|
| undefined
|
|
32257
|
+
/** Salto Space credential service metadata for the phone. */
|
|
32192
32258
|
salto_space_credential_service_metadata?:
|
|
32193
32259
|
| {
|
|
32260
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
32194
32261
|
has_active_phone: boolean
|
|
32195
32262
|
}
|
|
32196
32263
|
| undefined
|
|
@@ -32398,30 +32465,45 @@ export interface Routes {
|
|
|
32398
32465
|
method: 'GET' | 'POST'
|
|
32399
32466
|
queryParams: {}
|
|
32400
32467
|
jsonBody: {
|
|
32468
|
+
/** ID of the custom SDK installation to use for the simulated phone. */
|
|
32401
32469
|
custom_sdk_installation_id?: string | undefined
|
|
32470
|
+
/** ID of the user identity to associate with the simulated phone. */
|
|
32402
32471
|
user_identity_id: string
|
|
32472
|
+
/** Metadata to associate with the simulated phone. */
|
|
32403
32473
|
phone_metadata?: {
|
|
32474
|
+
/** Mobile operating system that you want to use for the simulated phone. */
|
|
32404
32475
|
operating_system?: 'android' | 'ios'
|
|
32476
|
+
/** Mobile operating system version that you want to use for the simulated phone. */
|
|
32405
32477
|
os_version?: string
|
|
32478
|
+
/** Manufacturer that you want to use for the simulated phone. */
|
|
32406
32479
|
device_manufacturer?: string
|
|
32480
|
+
/** Device model that you want to use for the simulated phone. */
|
|
32407
32481
|
device_model?: string
|
|
32408
32482
|
}
|
|
32483
|
+
/** ASSA ABLOY metadata to associate with the simulated phone. */
|
|
32409
32484
|
assa_abloy_metadata?: {
|
|
32485
|
+
/** Indicates whether the simulated phone should have Bluetooth low energy (BLE) capability. */
|
|
32410
32486
|
ble_capability?: boolean
|
|
32487
|
+
/** Indicates whether the simulated phone should have host card emulation (HCE) capability. */
|
|
32411
32488
|
hce_capability?: boolean
|
|
32489
|
+
/** Indicates whether the simulated phone should have near-field communication (NFC) capability. */
|
|
32412
32490
|
nfc_capability?: boolean
|
|
32491
|
+
/** Application version that you want to use for the simulated phone. */
|
|
32413
32492
|
application_version?: string
|
|
32493
|
+
/** SEOS applet version that you want to use for the simulated phone. */
|
|
32414
32494
|
seos_applet_version?: string
|
|
32495
|
+
/** ID of the SEOS trusted service manager (TSM) endpoint that you want to use for the simulated phone. */
|
|
32415
32496
|
seos_tsm_endpoint_id?: number
|
|
32416
32497
|
}
|
|
32417
32498
|
}
|
|
32418
32499
|
commonParams: {}
|
|
32419
32500
|
formData: {}
|
|
32420
32501
|
jsonResponse: {
|
|
32421
|
-
/**
|
|
32502
|
+
/** Properties of the phone. */
|
|
32422
32503
|
phone: {
|
|
32423
32504
|
/** Unique identifier for the device. */
|
|
32424
32505
|
device_id: string
|
|
32506
|
+
/** Type of phone. */
|
|
32425
32507
|
device_type: 'android_phone' | 'ios_phone'
|
|
32426
32508
|
/** Optional nickname to describe the device, settable through Seam */
|
|
32427
32509
|
nickname?: string | undefined
|
|
@@ -32437,17 +32519,24 @@ export interface Routes {
|
|
|
32437
32519
|
| 'phone'
|
|
32438
32520
|
>
|
|
32439
32521
|
properties: {
|
|
32522
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
32440
32523
|
assa_abloy_credential_service_metadata?:
|
|
32441
32524
|
| {
|
|
32525
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
32442
32526
|
has_active_endpoint: boolean
|
|
32527
|
+
/** Endpoints associated with the phone. */
|
|
32443
32528
|
endpoints: Array<{
|
|
32529
|
+
/** ID of the associated endpoint. */
|
|
32444
32530
|
endpoint_id: string
|
|
32531
|
+
/** Indicated whether the endpoint is active. */
|
|
32445
32532
|
is_active: boolean
|
|
32446
32533
|
}>
|
|
32447
32534
|
}
|
|
32448
32535
|
| undefined
|
|
32536
|
+
/** Salto Space credential service metadata for the phone. */
|
|
32449
32537
|
salto_space_credential_service_metadata?:
|
|
32450
32538
|
| {
|
|
32539
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
32451
32540
|
has_active_phone: boolean
|
|
32452
32541
|
}
|
|
32453
32542
|
| undefined
|
|
@@ -34919,21 +35008,28 @@ export interface Routes {
|
|
|
34919
35008
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
34920
35009
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
34921
35010
|
} & {
|
|
35011
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
34922
35012
|
assa_abloy_credential_service_metadata?:
|
|
34923
35013
|
| (
|
|
34924
35014
|
| {
|
|
35015
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
34925
35016
|
has_active_endpoint: boolean
|
|
35017
|
+
/** Endpoints associated with the phone. */
|
|
34926
35018
|
endpoints: Array<{
|
|
35019
|
+
/** ID of the associated endpoint. */
|
|
34927
35020
|
endpoint_id: string
|
|
35021
|
+
/** Indicated whether the endpoint is active. */
|
|
34928
35022
|
is_active: boolean
|
|
34929
35023
|
}>
|
|
34930
35024
|
}
|
|
34931
35025
|
| undefined
|
|
34932
35026
|
)
|
|
34933
35027
|
| undefined
|
|
35028
|
+
/** Salto Space credential service metadata for the phone. */
|
|
34934
35029
|
salto_space_credential_service_metadata?:
|
|
34935
35030
|
| (
|
|
34936
35031
|
| {
|
|
35032
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
34937
35033
|
has_active_phone: boolean
|
|
34938
35034
|
}
|
|
34939
35035
|
| undefined
|
|
@@ -38056,21 +38152,28 @@ export interface Routes {
|
|
|
38056
38152
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
38057
38153
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
38058
38154
|
} & {
|
|
38155
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
38059
38156
|
assa_abloy_credential_service_metadata?:
|
|
38060
38157
|
| (
|
|
38061
38158
|
| {
|
|
38159
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
38062
38160
|
has_active_endpoint: boolean
|
|
38161
|
+
/** Endpoints associated with the phone. */
|
|
38063
38162
|
endpoints: Array<{
|
|
38163
|
+
/** ID of the associated endpoint. */
|
|
38064
38164
|
endpoint_id: string
|
|
38165
|
+
/** Indicated whether the endpoint is active. */
|
|
38065
38166
|
is_active: boolean
|
|
38066
38167
|
}>
|
|
38067
38168
|
}
|
|
38068
38169
|
| undefined
|
|
38069
38170
|
)
|
|
38070
38171
|
| undefined
|
|
38172
|
+
/** Salto Space credential service metadata for the phone. */
|
|
38071
38173
|
salto_space_credential_service_metadata?:
|
|
38072
38174
|
| (
|
|
38073
38175
|
| {
|
|
38176
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
38074
38177
|
has_active_phone: boolean
|
|
38075
38178
|
}
|
|
38076
38179
|
| undefined
|
|
@@ -38921,21 +39024,28 @@ export interface Routes {
|
|
|
38921
39024
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
38922
39025
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
38923
39026
|
} & {
|
|
39027
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
38924
39028
|
assa_abloy_credential_service_metadata?:
|
|
38925
39029
|
| (
|
|
38926
39030
|
| {
|
|
39031
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
38927
39032
|
has_active_endpoint: boolean
|
|
39033
|
+
/** Endpoints associated with the phone. */
|
|
38928
39034
|
endpoints: Array<{
|
|
39035
|
+
/** ID of the associated endpoint. */
|
|
38929
39036
|
endpoint_id: string
|
|
39037
|
+
/** Indicated whether the endpoint is active. */
|
|
38930
39038
|
is_active: boolean
|
|
38931
39039
|
}>
|
|
38932
39040
|
}
|
|
38933
39041
|
| undefined
|
|
38934
39042
|
)
|
|
38935
39043
|
| undefined
|
|
39044
|
+
/** Salto Space credential service metadata for the phone. */
|
|
38936
39045
|
salto_space_credential_service_metadata?:
|
|
38937
39046
|
| (
|
|
38938
39047
|
| {
|
|
39048
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
38939
39049
|
has_active_phone: boolean
|
|
38940
39050
|
}
|
|
38941
39051
|
| undefined
|
|
@@ -43474,21 +43584,28 @@ export interface Routes {
|
|
|
43474
43584
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
43475
43585
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
43476
43586
|
} & {
|
|
43587
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
43477
43588
|
assa_abloy_credential_service_metadata?:
|
|
43478
43589
|
| (
|
|
43479
43590
|
| {
|
|
43591
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
43480
43592
|
has_active_endpoint: boolean
|
|
43593
|
+
/** Endpoints associated with the phone. */
|
|
43481
43594
|
endpoints: Array<{
|
|
43595
|
+
/** ID of the associated endpoint. */
|
|
43482
43596
|
endpoint_id: string
|
|
43597
|
+
/** Indicated whether the endpoint is active. */
|
|
43483
43598
|
is_active: boolean
|
|
43484
43599
|
}>
|
|
43485
43600
|
}
|
|
43486
43601
|
| undefined
|
|
43487
43602
|
)
|
|
43488
43603
|
| undefined
|
|
43604
|
+
/** Salto Space credential service metadata for the phone. */
|
|
43489
43605
|
salto_space_credential_service_metadata?:
|
|
43490
43606
|
| (
|
|
43491
43607
|
| {
|
|
43608
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
43492
43609
|
has_active_phone: boolean
|
|
43493
43610
|
}
|
|
43494
43611
|
| undefined
|
|
@@ -44341,21 +44458,28 @@ export interface Routes {
|
|
|
44341
44458
|
/** Array of noise threshold IDs that are currently triggering. */
|
|
44342
44459
|
currently_triggering_noise_threshold_ids?: string[] | undefined
|
|
44343
44460
|
} & {
|
|
44461
|
+
/** ASSA ABLOY Credential Service metadata for the phone. */
|
|
44344
44462
|
assa_abloy_credential_service_metadata?:
|
|
44345
44463
|
| (
|
|
44346
44464
|
| {
|
|
44465
|
+
/** Indicates whether the credential service has active endpoints associated with the phone. */
|
|
44347
44466
|
has_active_endpoint: boolean
|
|
44467
|
+
/** Endpoints associated with the phone. */
|
|
44348
44468
|
endpoints: Array<{
|
|
44469
|
+
/** ID of the associated endpoint. */
|
|
44349
44470
|
endpoint_id: string
|
|
44471
|
+
/** Indicated whether the endpoint is active. */
|
|
44350
44472
|
is_active: boolean
|
|
44351
44473
|
}>
|
|
44352
44474
|
}
|
|
44353
44475
|
| undefined
|
|
44354
44476
|
)
|
|
44355
44477
|
| undefined
|
|
44478
|
+
/** Salto Space credential service metadata for the phone. */
|
|
44356
44479
|
salto_space_credential_service_metadata?:
|
|
44357
44480
|
| (
|
|
44358
44481
|
| {
|
|
44482
|
+
/** Indicates whether the credential service has an active associated phone. */
|
|
44359
44483
|
has_active_phone: boolean
|
|
44360
44484
|
}
|
|
44361
44485
|
| undefined
|