@seamapi/types 1.984.0 → 1.985.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/lib/seam/connect/models/acs/acs-credential.d.ts +33 -7
- package/lib/seam/connect/models/acs/acs-credential.js +5 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/akiles.d.ts +8 -0
- package/lib/seam/connect/models/acs/metadata/akiles.js +9 -0
- package/lib/seam/connect/models/acs/metadata/akiles.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +136 -29
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +48 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +64 -14
- package/lib/seam/connect/models/action-attempts/scan-to-assign-credential.d.ts +24 -5
- package/lib/seam/connect/models/phones/phone-session.d.ts +56 -12
- package/lib/seam/connect/openapi.js +88 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1080 -180
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +7 -0
- package/src/lib/seam/connect/models/acs/metadata/akiles.ts +14 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +96 -0
- package/src/lib/seam/connect/route-types.ts +1444 -0
|
@@ -257,6 +257,7 @@ export type Routes = {
|
|
|
257
257
|
| 'salto_ks_tag'
|
|
258
258
|
| 'avigilon_alta_credential'
|
|
259
259
|
| 'kisi_credential'
|
|
260
|
+
| 'akiles_credential'
|
|
260
261
|
)
|
|
261
262
|
| undefined
|
|
262
263
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -387,6 +388,13 @@ export type Routes = {
|
|
|
387
388
|
endpoint_id?: (string | undefined) | undefined
|
|
388
389
|
}
|
|
389
390
|
| undefined
|
|
391
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
392
|
+
akiles_metadata?:
|
|
393
|
+
| {
|
|
394
|
+
/** ID of the Akiles member PIN. */
|
|
395
|
+
member_pin_id?: (string | undefined) | undefined
|
|
396
|
+
}
|
|
397
|
+
| undefined
|
|
390
398
|
/** Indicates whether Seam manages the credential. */
|
|
391
399
|
is_managed: true
|
|
392
400
|
}
|
|
@@ -439,6 +447,7 @@ export type Routes = {
|
|
|
439
447
|
| 'salto_ks_tag'
|
|
440
448
|
| 'avigilon_alta_credential'
|
|
441
449
|
| 'kisi_credential'
|
|
450
|
+
| 'akiles_credential'
|
|
442
451
|
)
|
|
443
452
|
| undefined
|
|
444
453
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -569,6 +578,13 @@ export type Routes = {
|
|
|
569
578
|
endpoint_id?: (string | undefined) | undefined
|
|
570
579
|
}
|
|
571
580
|
| undefined
|
|
581
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
582
|
+
akiles_metadata?:
|
|
583
|
+
| {
|
|
584
|
+
/** ID of the Akiles member PIN. */
|
|
585
|
+
member_pin_id?: (string | undefined) | undefined
|
|
586
|
+
}
|
|
587
|
+
| undefined
|
|
572
588
|
is_managed: false
|
|
573
589
|
}
|
|
574
590
|
)
|
|
@@ -696,6 +712,7 @@ export type Routes = {
|
|
|
696
712
|
| 'salto_ks_tag'
|
|
697
713
|
| 'avigilon_alta_credential'
|
|
698
714
|
| 'kisi_credential'
|
|
715
|
+
| 'akiles_credential'
|
|
699
716
|
)
|
|
700
717
|
| undefined
|
|
701
718
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -826,6 +843,13 @@ export type Routes = {
|
|
|
826
843
|
endpoint_id?: (string | undefined) | undefined
|
|
827
844
|
}
|
|
828
845
|
| undefined
|
|
846
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
847
|
+
akiles_metadata?:
|
|
848
|
+
| {
|
|
849
|
+
/** ID of the Akiles member PIN. */
|
|
850
|
+
member_pin_id?: (string | undefined) | undefined
|
|
851
|
+
}
|
|
852
|
+
| undefined
|
|
829
853
|
/** Indicates whether Seam manages the credential. */
|
|
830
854
|
is_managed: true
|
|
831
855
|
}
|
|
@@ -874,6 +898,7 @@ export type Routes = {
|
|
|
874
898
|
| 'salto_ks_tag'
|
|
875
899
|
| 'avigilon_alta_credential'
|
|
876
900
|
| 'kisi_credential'
|
|
901
|
+
| 'akiles_credential'
|
|
877
902
|
)
|
|
878
903
|
| undefined
|
|
879
904
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -1004,6 +1029,13 @@ export type Routes = {
|
|
|
1004
1029
|
endpoint_id?: (string | undefined) | undefined
|
|
1005
1030
|
}
|
|
1006
1031
|
| undefined
|
|
1032
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
1033
|
+
akiles_metadata?:
|
|
1034
|
+
| {
|
|
1035
|
+
/** ID of the Akiles member PIN. */
|
|
1036
|
+
member_pin_id?: (string | undefined) | undefined
|
|
1037
|
+
}
|
|
1038
|
+
| undefined
|
|
1007
1039
|
is_managed: false
|
|
1008
1040
|
}
|
|
1009
1041
|
}
|
|
@@ -1142,6 +1174,7 @@ export type Routes = {
|
|
|
1142
1174
|
| 'salto_ks_tag'
|
|
1143
1175
|
| 'avigilon_alta_credential'
|
|
1144
1176
|
| 'kisi_credential'
|
|
1177
|
+
| 'akiles_credential'
|
|
1145
1178
|
)
|
|
1146
1179
|
| undefined
|
|
1147
1180
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -1266,6 +1299,13 @@ export type Routes = {
|
|
|
1266
1299
|
endpoint_id?: (string | undefined) | undefined
|
|
1267
1300
|
}
|
|
1268
1301
|
| undefined
|
|
1302
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
1303
|
+
akiles_metadata?:
|
|
1304
|
+
| {
|
|
1305
|
+
/** ID of the Akiles member PIN. */
|
|
1306
|
+
member_pin_id?: (string | undefined) | undefined
|
|
1307
|
+
}
|
|
1308
|
+
| undefined
|
|
1269
1309
|
/** Indicates whether Seam manages the credential. */
|
|
1270
1310
|
is_managed: true
|
|
1271
1311
|
}
|
|
@@ -3339,6 +3379,7 @@ export type Routes = {
|
|
|
3339
3379
|
| 'salto_ks_tag'
|
|
3340
3380
|
| 'avigilon_alta_credential'
|
|
3341
3381
|
| 'kisi_credential'
|
|
3382
|
+
| 'akiles_credential'
|
|
3342
3383
|
)
|
|
3343
3384
|
| undefined
|
|
3344
3385
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -3469,6 +3510,13 @@ export type Routes = {
|
|
|
3469
3510
|
endpoint_id?: (string | undefined) | undefined
|
|
3470
3511
|
}
|
|
3471
3512
|
| undefined
|
|
3513
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
3514
|
+
akiles_metadata?:
|
|
3515
|
+
| {
|
|
3516
|
+
/** ID of the Akiles member PIN. */
|
|
3517
|
+
member_pin_id?: (string | undefined) | undefined
|
|
3518
|
+
}
|
|
3519
|
+
| undefined
|
|
3472
3520
|
/** Indicates whether Seam manages the credential. */
|
|
3473
3521
|
is_managed: true
|
|
3474
3522
|
}
|
|
@@ -3521,6 +3569,7 @@ export type Routes = {
|
|
|
3521
3569
|
| 'salto_ks_tag'
|
|
3522
3570
|
| 'avigilon_alta_credential'
|
|
3523
3571
|
| 'kisi_credential'
|
|
3572
|
+
| 'akiles_credential'
|
|
3524
3573
|
)
|
|
3525
3574
|
| undefined
|
|
3526
3575
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -3651,6 +3700,13 @@ export type Routes = {
|
|
|
3651
3700
|
endpoint_id?: (string | undefined) | undefined
|
|
3652
3701
|
}
|
|
3653
3702
|
| undefined
|
|
3703
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
3704
|
+
akiles_metadata?:
|
|
3705
|
+
| {
|
|
3706
|
+
/** ID of the Akiles member PIN. */
|
|
3707
|
+
member_pin_id?: (string | undefined) | undefined
|
|
3708
|
+
}
|
|
3709
|
+
| undefined
|
|
3654
3710
|
is_managed: false
|
|
3655
3711
|
}
|
|
3656
3712
|
)
|
|
@@ -3778,6 +3834,7 @@ export type Routes = {
|
|
|
3778
3834
|
| 'salto_ks_tag'
|
|
3779
3835
|
| 'avigilon_alta_credential'
|
|
3780
3836
|
| 'kisi_credential'
|
|
3837
|
+
| 'akiles_credential'
|
|
3781
3838
|
)
|
|
3782
3839
|
| undefined
|
|
3783
3840
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -3908,6 +3965,13 @@ export type Routes = {
|
|
|
3908
3965
|
endpoint_id?: (string | undefined) | undefined
|
|
3909
3966
|
}
|
|
3910
3967
|
| undefined
|
|
3968
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
3969
|
+
akiles_metadata?:
|
|
3970
|
+
| {
|
|
3971
|
+
/** ID of the Akiles member PIN. */
|
|
3972
|
+
member_pin_id?: (string | undefined) | undefined
|
|
3973
|
+
}
|
|
3974
|
+
| undefined
|
|
3911
3975
|
/** Indicates whether Seam manages the credential. */
|
|
3912
3976
|
is_managed: true
|
|
3913
3977
|
}
|
|
@@ -3956,6 +4020,7 @@ export type Routes = {
|
|
|
3956
4020
|
| 'salto_ks_tag'
|
|
3957
4021
|
| 'avigilon_alta_credential'
|
|
3958
4022
|
| 'kisi_credential'
|
|
4023
|
+
| 'akiles_credential'
|
|
3959
4024
|
)
|
|
3960
4025
|
| undefined
|
|
3961
4026
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -4086,6 +4151,13 @@ export type Routes = {
|
|
|
4086
4151
|
endpoint_id?: (string | undefined) | undefined
|
|
4087
4152
|
}
|
|
4088
4153
|
| undefined
|
|
4154
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
4155
|
+
akiles_metadata?:
|
|
4156
|
+
| {
|
|
4157
|
+
/** ID of the Akiles member PIN. */
|
|
4158
|
+
member_pin_id?: (string | undefined) | undefined
|
|
4159
|
+
}
|
|
4160
|
+
| undefined
|
|
4089
4161
|
is_managed: false
|
|
4090
4162
|
}
|
|
4091
4163
|
}
|
|
@@ -4224,6 +4296,7 @@ export type Routes = {
|
|
|
4224
4296
|
| 'salto_ks_tag'
|
|
4225
4297
|
| 'avigilon_alta_credential'
|
|
4226
4298
|
| 'kisi_credential'
|
|
4299
|
+
| 'akiles_credential'
|
|
4227
4300
|
)
|
|
4228
4301
|
| undefined
|
|
4229
4302
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -4348,6 +4421,13 @@ export type Routes = {
|
|
|
4348
4421
|
endpoint_id?: (string | undefined) | undefined
|
|
4349
4422
|
}
|
|
4350
4423
|
| undefined
|
|
4424
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
4425
|
+
akiles_metadata?:
|
|
4426
|
+
| {
|
|
4427
|
+
/** ID of the Akiles member PIN. */
|
|
4428
|
+
member_pin_id?: (string | undefined) | undefined
|
|
4429
|
+
}
|
|
4430
|
+
| undefined
|
|
4351
4431
|
/** Indicates whether Seam manages the credential. */
|
|
4352
4432
|
is_managed: true
|
|
4353
4433
|
}
|
|
@@ -8041,6 +8121,7 @@ export type Routes = {
|
|
|
8041
8121
|
| 'salto_ks_tag'
|
|
8042
8122
|
| 'avigilon_alta_credential'
|
|
8043
8123
|
| 'kisi_credential'
|
|
8124
|
+
| 'akiles_credential'
|
|
8044
8125
|
)
|
|
8045
8126
|
| undefined
|
|
8046
8127
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -8171,6 +8252,13 @@ export type Routes = {
|
|
|
8171
8252
|
endpoint_id?: (string | undefined) | undefined
|
|
8172
8253
|
}
|
|
8173
8254
|
| undefined
|
|
8255
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8256
|
+
akiles_metadata?:
|
|
8257
|
+
| {
|
|
8258
|
+
/** ID of the Akiles member PIN. */
|
|
8259
|
+
member_pin_id?: (string | undefined) | undefined
|
|
8260
|
+
}
|
|
8261
|
+
| undefined
|
|
8174
8262
|
/** Indicates whether Seam manages the credential. */
|
|
8175
8263
|
is_managed: true
|
|
8176
8264
|
}
|
|
@@ -8223,6 +8311,7 @@ export type Routes = {
|
|
|
8223
8311
|
| 'salto_ks_tag'
|
|
8224
8312
|
| 'avigilon_alta_credential'
|
|
8225
8313
|
| 'kisi_credential'
|
|
8314
|
+
| 'akiles_credential'
|
|
8226
8315
|
)
|
|
8227
8316
|
| undefined
|
|
8228
8317
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -8353,6 +8442,13 @@ export type Routes = {
|
|
|
8353
8442
|
endpoint_id?: (string | undefined) | undefined
|
|
8354
8443
|
}
|
|
8355
8444
|
| undefined
|
|
8445
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8446
|
+
akiles_metadata?:
|
|
8447
|
+
| {
|
|
8448
|
+
/** ID of the Akiles member PIN. */
|
|
8449
|
+
member_pin_id?: (string | undefined) | undefined
|
|
8450
|
+
}
|
|
8451
|
+
| undefined
|
|
8356
8452
|
is_managed: false
|
|
8357
8453
|
}
|
|
8358
8454
|
)
|
|
@@ -8480,6 +8576,7 @@ export type Routes = {
|
|
|
8480
8576
|
| 'salto_ks_tag'
|
|
8481
8577
|
| 'avigilon_alta_credential'
|
|
8482
8578
|
| 'kisi_credential'
|
|
8579
|
+
| 'akiles_credential'
|
|
8483
8580
|
)
|
|
8484
8581
|
| undefined
|
|
8485
8582
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -8610,6 +8707,13 @@ export type Routes = {
|
|
|
8610
8707
|
endpoint_id?: (string | undefined) | undefined
|
|
8611
8708
|
}
|
|
8612
8709
|
| undefined
|
|
8710
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8711
|
+
akiles_metadata?:
|
|
8712
|
+
| {
|
|
8713
|
+
/** ID of the Akiles member PIN. */
|
|
8714
|
+
member_pin_id?: (string | undefined) | undefined
|
|
8715
|
+
}
|
|
8716
|
+
| undefined
|
|
8613
8717
|
/** Indicates whether Seam manages the credential. */
|
|
8614
8718
|
is_managed: true
|
|
8615
8719
|
}
|
|
@@ -8658,6 +8762,7 @@ export type Routes = {
|
|
|
8658
8762
|
| 'salto_ks_tag'
|
|
8659
8763
|
| 'avigilon_alta_credential'
|
|
8660
8764
|
| 'kisi_credential'
|
|
8765
|
+
| 'akiles_credential'
|
|
8661
8766
|
)
|
|
8662
8767
|
| undefined
|
|
8663
8768
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -8788,6 +8893,13 @@ export type Routes = {
|
|
|
8788
8893
|
endpoint_id?: (string | undefined) | undefined
|
|
8789
8894
|
}
|
|
8790
8895
|
| undefined
|
|
8896
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
8897
|
+
akiles_metadata?:
|
|
8898
|
+
| {
|
|
8899
|
+
/** ID of the Akiles member PIN. */
|
|
8900
|
+
member_pin_id?: (string | undefined) | undefined
|
|
8901
|
+
}
|
|
8902
|
+
| undefined
|
|
8791
8903
|
is_managed: false
|
|
8792
8904
|
}
|
|
8793
8905
|
}
|
|
@@ -8926,6 +9038,7 @@ export type Routes = {
|
|
|
8926
9038
|
| 'salto_ks_tag'
|
|
8927
9039
|
| 'avigilon_alta_credential'
|
|
8928
9040
|
| 'kisi_credential'
|
|
9041
|
+
| 'akiles_credential'
|
|
8929
9042
|
)
|
|
8930
9043
|
| undefined
|
|
8931
9044
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -9050,6 +9163,13 @@ export type Routes = {
|
|
|
9050
9163
|
endpoint_id?: (string | undefined) | undefined
|
|
9051
9164
|
}
|
|
9052
9165
|
| undefined
|
|
9166
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
9167
|
+
akiles_metadata?:
|
|
9168
|
+
| {
|
|
9169
|
+
/** ID of the Akiles member PIN. */
|
|
9170
|
+
member_pin_id?: (string | undefined) | undefined
|
|
9171
|
+
}
|
|
9172
|
+
| undefined
|
|
9053
9173
|
/** Indicates whether Seam manages the credential. */
|
|
9054
9174
|
is_managed: true
|
|
9055
9175
|
}
|
|
@@ -10991,6 +11111,7 @@ export type Routes = {
|
|
|
10991
11111
|
| 'salto_ks_tag'
|
|
10992
11112
|
| 'avigilon_alta_credential'
|
|
10993
11113
|
| 'kisi_credential'
|
|
11114
|
+
| 'akiles_credential'
|
|
10994
11115
|
)
|
|
10995
11116
|
| undefined
|
|
10996
11117
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -11121,6 +11242,13 @@ export type Routes = {
|
|
|
11121
11242
|
endpoint_id?: (string | undefined) | undefined
|
|
11122
11243
|
}
|
|
11123
11244
|
| undefined
|
|
11245
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
11246
|
+
akiles_metadata?:
|
|
11247
|
+
| {
|
|
11248
|
+
/** ID of the Akiles member PIN. */
|
|
11249
|
+
member_pin_id?: (string | undefined) | undefined
|
|
11250
|
+
}
|
|
11251
|
+
| undefined
|
|
11124
11252
|
/** Indicates whether Seam manages the credential. */
|
|
11125
11253
|
is_managed: true
|
|
11126
11254
|
}
|
|
@@ -11173,6 +11301,7 @@ export type Routes = {
|
|
|
11173
11301
|
| 'salto_ks_tag'
|
|
11174
11302
|
| 'avigilon_alta_credential'
|
|
11175
11303
|
| 'kisi_credential'
|
|
11304
|
+
| 'akiles_credential'
|
|
11176
11305
|
)
|
|
11177
11306
|
| undefined
|
|
11178
11307
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -11303,6 +11432,13 @@ export type Routes = {
|
|
|
11303
11432
|
endpoint_id?: (string | undefined) | undefined
|
|
11304
11433
|
}
|
|
11305
11434
|
| undefined
|
|
11435
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
11436
|
+
akiles_metadata?:
|
|
11437
|
+
| {
|
|
11438
|
+
/** ID of the Akiles member PIN. */
|
|
11439
|
+
member_pin_id?: (string | undefined) | undefined
|
|
11440
|
+
}
|
|
11441
|
+
| undefined
|
|
11306
11442
|
is_managed: false
|
|
11307
11443
|
}
|
|
11308
11444
|
)
|
|
@@ -11430,6 +11566,7 @@ export type Routes = {
|
|
|
11430
11566
|
| 'salto_ks_tag'
|
|
11431
11567
|
| 'avigilon_alta_credential'
|
|
11432
11568
|
| 'kisi_credential'
|
|
11569
|
+
| 'akiles_credential'
|
|
11433
11570
|
)
|
|
11434
11571
|
| undefined
|
|
11435
11572
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -11560,6 +11697,13 @@ export type Routes = {
|
|
|
11560
11697
|
endpoint_id?: (string | undefined) | undefined
|
|
11561
11698
|
}
|
|
11562
11699
|
| undefined
|
|
11700
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
11701
|
+
akiles_metadata?:
|
|
11702
|
+
| {
|
|
11703
|
+
/** ID of the Akiles member PIN. */
|
|
11704
|
+
member_pin_id?: (string | undefined) | undefined
|
|
11705
|
+
}
|
|
11706
|
+
| undefined
|
|
11563
11707
|
/** Indicates whether Seam manages the credential. */
|
|
11564
11708
|
is_managed: true
|
|
11565
11709
|
}
|
|
@@ -11608,6 +11752,7 @@ export type Routes = {
|
|
|
11608
11752
|
| 'salto_ks_tag'
|
|
11609
11753
|
| 'avigilon_alta_credential'
|
|
11610
11754
|
| 'kisi_credential'
|
|
11755
|
+
| 'akiles_credential'
|
|
11611
11756
|
)
|
|
11612
11757
|
| undefined
|
|
11613
11758
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -11738,6 +11883,13 @@ export type Routes = {
|
|
|
11738
11883
|
endpoint_id?: (string | undefined) | undefined
|
|
11739
11884
|
}
|
|
11740
11885
|
| undefined
|
|
11886
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
11887
|
+
akiles_metadata?:
|
|
11888
|
+
| {
|
|
11889
|
+
/** ID of the Akiles member PIN. */
|
|
11890
|
+
member_pin_id?: (string | undefined) | undefined
|
|
11891
|
+
}
|
|
11892
|
+
| undefined
|
|
11741
11893
|
is_managed: false
|
|
11742
11894
|
}
|
|
11743
11895
|
}
|
|
@@ -11876,6 +12028,7 @@ export type Routes = {
|
|
|
11876
12028
|
| 'salto_ks_tag'
|
|
11877
12029
|
| 'avigilon_alta_credential'
|
|
11878
12030
|
| 'kisi_credential'
|
|
12031
|
+
| 'akiles_credential'
|
|
11879
12032
|
)
|
|
11880
12033
|
| undefined
|
|
11881
12034
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -12000,6 +12153,13 @@ export type Routes = {
|
|
|
12000
12153
|
endpoint_id?: (string | undefined) | undefined
|
|
12001
12154
|
}
|
|
12002
12155
|
| undefined
|
|
12156
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
12157
|
+
akiles_metadata?:
|
|
12158
|
+
| {
|
|
12159
|
+
/** ID of the Akiles member PIN. */
|
|
12160
|
+
member_pin_id?: (string | undefined) | undefined
|
|
12161
|
+
}
|
|
12162
|
+
| undefined
|
|
12003
12163
|
/** Indicates whether Seam manages the credential. */
|
|
12004
12164
|
is_managed: true
|
|
12005
12165
|
}
|
|
@@ -17607,6 +17767,7 @@ export type Routes = {
|
|
|
17607
17767
|
| 'salto_ks_tag'
|
|
17608
17768
|
| 'avigilon_alta_credential'
|
|
17609
17769
|
| 'kisi_credential'
|
|
17770
|
+
| 'akiles_credential'
|
|
17610
17771
|
)
|
|
17611
17772
|
| undefined
|
|
17612
17773
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -17737,6 +17898,13 @@ export type Routes = {
|
|
|
17737
17898
|
endpoint_id?: (string | undefined) | undefined
|
|
17738
17899
|
}
|
|
17739
17900
|
| undefined
|
|
17901
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
17902
|
+
akiles_metadata?:
|
|
17903
|
+
| {
|
|
17904
|
+
/** ID of the Akiles member PIN. */
|
|
17905
|
+
member_pin_id?: (string | undefined) | undefined
|
|
17906
|
+
}
|
|
17907
|
+
| undefined
|
|
17740
17908
|
/** Indicates whether Seam manages the credential. */
|
|
17741
17909
|
is_managed: true
|
|
17742
17910
|
}
|
|
@@ -17789,6 +17957,7 @@ export type Routes = {
|
|
|
17789
17957
|
| 'salto_ks_tag'
|
|
17790
17958
|
| 'avigilon_alta_credential'
|
|
17791
17959
|
| 'kisi_credential'
|
|
17960
|
+
| 'akiles_credential'
|
|
17792
17961
|
)
|
|
17793
17962
|
| undefined
|
|
17794
17963
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -17919,6 +18088,13 @@ export type Routes = {
|
|
|
17919
18088
|
endpoint_id?: (string | undefined) | undefined
|
|
17920
18089
|
}
|
|
17921
18090
|
| undefined
|
|
18091
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
18092
|
+
akiles_metadata?:
|
|
18093
|
+
| {
|
|
18094
|
+
/** ID of the Akiles member PIN. */
|
|
18095
|
+
member_pin_id?: (string | undefined) | undefined
|
|
18096
|
+
}
|
|
18097
|
+
| undefined
|
|
17922
18098
|
is_managed: false
|
|
17923
18099
|
}
|
|
17924
18100
|
)
|
|
@@ -18046,6 +18222,7 @@ export type Routes = {
|
|
|
18046
18222
|
| 'salto_ks_tag'
|
|
18047
18223
|
| 'avigilon_alta_credential'
|
|
18048
18224
|
| 'kisi_credential'
|
|
18225
|
+
| 'akiles_credential'
|
|
18049
18226
|
)
|
|
18050
18227
|
| undefined
|
|
18051
18228
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -18176,6 +18353,13 @@ export type Routes = {
|
|
|
18176
18353
|
endpoint_id?: (string | undefined) | undefined
|
|
18177
18354
|
}
|
|
18178
18355
|
| undefined
|
|
18356
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
18357
|
+
akiles_metadata?:
|
|
18358
|
+
| {
|
|
18359
|
+
/** ID of the Akiles member PIN. */
|
|
18360
|
+
member_pin_id?: (string | undefined) | undefined
|
|
18361
|
+
}
|
|
18362
|
+
| undefined
|
|
18179
18363
|
/** Indicates whether Seam manages the credential. */
|
|
18180
18364
|
is_managed: true
|
|
18181
18365
|
}
|
|
@@ -18224,6 +18408,7 @@ export type Routes = {
|
|
|
18224
18408
|
| 'salto_ks_tag'
|
|
18225
18409
|
| 'avigilon_alta_credential'
|
|
18226
18410
|
| 'kisi_credential'
|
|
18411
|
+
| 'akiles_credential'
|
|
18227
18412
|
)
|
|
18228
18413
|
| undefined
|
|
18229
18414
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -18354,6 +18539,13 @@ export type Routes = {
|
|
|
18354
18539
|
endpoint_id?: (string | undefined) | undefined
|
|
18355
18540
|
}
|
|
18356
18541
|
| undefined
|
|
18542
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
18543
|
+
akiles_metadata?:
|
|
18544
|
+
| {
|
|
18545
|
+
/** ID of the Akiles member PIN. */
|
|
18546
|
+
member_pin_id?: (string | undefined) | undefined
|
|
18547
|
+
}
|
|
18548
|
+
| undefined
|
|
18357
18549
|
is_managed: false
|
|
18358
18550
|
}
|
|
18359
18551
|
}
|
|
@@ -18492,6 +18684,7 @@ export type Routes = {
|
|
|
18492
18684
|
| 'salto_ks_tag'
|
|
18493
18685
|
| 'avigilon_alta_credential'
|
|
18494
18686
|
| 'kisi_credential'
|
|
18687
|
+
| 'akiles_credential'
|
|
18495
18688
|
)
|
|
18496
18689
|
| undefined
|
|
18497
18690
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -18616,6 +18809,13 @@ export type Routes = {
|
|
|
18616
18809
|
endpoint_id?: (string | undefined) | undefined
|
|
18617
18810
|
}
|
|
18618
18811
|
| undefined
|
|
18812
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
18813
|
+
akiles_metadata?:
|
|
18814
|
+
| {
|
|
18815
|
+
/** ID of the Akiles member PIN. */
|
|
18816
|
+
member_pin_id?: (string | undefined) | undefined
|
|
18817
|
+
}
|
|
18818
|
+
| undefined
|
|
18619
18819
|
/** Indicates whether Seam manages the credential. */
|
|
18620
18820
|
is_managed: true
|
|
18621
18821
|
}
|
|
@@ -19675,6 +19875,7 @@ export type Routes = {
|
|
|
19675
19875
|
| 'salto_ks_tag'
|
|
19676
19876
|
| 'avigilon_alta_credential'
|
|
19677
19877
|
| 'kisi_credential'
|
|
19878
|
+
| 'akiles_credential'
|
|
19678
19879
|
)
|
|
19679
19880
|
| undefined
|
|
19680
19881
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -19805,6 +20006,13 @@ export type Routes = {
|
|
|
19805
20006
|
endpoint_id?: (string | undefined) | undefined
|
|
19806
20007
|
}
|
|
19807
20008
|
| undefined
|
|
20009
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
20010
|
+
akiles_metadata?:
|
|
20011
|
+
| {
|
|
20012
|
+
/** ID of the Akiles member PIN. */
|
|
20013
|
+
member_pin_id?: (string | undefined) | undefined
|
|
20014
|
+
}
|
|
20015
|
+
| undefined
|
|
19808
20016
|
/** Indicates whether Seam manages the credential. */
|
|
19809
20017
|
is_managed: true
|
|
19810
20018
|
}
|
|
@@ -19857,6 +20065,7 @@ export type Routes = {
|
|
|
19857
20065
|
| 'salto_ks_tag'
|
|
19858
20066
|
| 'avigilon_alta_credential'
|
|
19859
20067
|
| 'kisi_credential'
|
|
20068
|
+
| 'akiles_credential'
|
|
19860
20069
|
)
|
|
19861
20070
|
| undefined
|
|
19862
20071
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -19987,6 +20196,13 @@ export type Routes = {
|
|
|
19987
20196
|
endpoint_id?: (string | undefined) | undefined
|
|
19988
20197
|
}
|
|
19989
20198
|
| undefined
|
|
20199
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
20200
|
+
akiles_metadata?:
|
|
20201
|
+
| {
|
|
20202
|
+
/** ID of the Akiles member PIN. */
|
|
20203
|
+
member_pin_id?: (string | undefined) | undefined
|
|
20204
|
+
}
|
|
20205
|
+
| undefined
|
|
19990
20206
|
is_managed: false
|
|
19991
20207
|
}
|
|
19992
20208
|
)
|
|
@@ -20114,6 +20330,7 @@ export type Routes = {
|
|
|
20114
20330
|
| 'salto_ks_tag'
|
|
20115
20331
|
| 'avigilon_alta_credential'
|
|
20116
20332
|
| 'kisi_credential'
|
|
20333
|
+
| 'akiles_credential'
|
|
20117
20334
|
)
|
|
20118
20335
|
| undefined
|
|
20119
20336
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -20244,6 +20461,13 @@ export type Routes = {
|
|
|
20244
20461
|
endpoint_id?: (string | undefined) | undefined
|
|
20245
20462
|
}
|
|
20246
20463
|
| undefined
|
|
20464
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
20465
|
+
akiles_metadata?:
|
|
20466
|
+
| {
|
|
20467
|
+
/** ID of the Akiles member PIN. */
|
|
20468
|
+
member_pin_id?: (string | undefined) | undefined
|
|
20469
|
+
}
|
|
20470
|
+
| undefined
|
|
20247
20471
|
/** Indicates whether Seam manages the credential. */
|
|
20248
20472
|
is_managed: true
|
|
20249
20473
|
}
|
|
@@ -20292,6 +20516,7 @@ export type Routes = {
|
|
|
20292
20516
|
| 'salto_ks_tag'
|
|
20293
20517
|
| 'avigilon_alta_credential'
|
|
20294
20518
|
| 'kisi_credential'
|
|
20519
|
+
| 'akiles_credential'
|
|
20295
20520
|
)
|
|
20296
20521
|
| undefined
|
|
20297
20522
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -20422,6 +20647,13 @@ export type Routes = {
|
|
|
20422
20647
|
endpoint_id?: (string | undefined) | undefined
|
|
20423
20648
|
}
|
|
20424
20649
|
| undefined
|
|
20650
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
20651
|
+
akiles_metadata?:
|
|
20652
|
+
| {
|
|
20653
|
+
/** ID of the Akiles member PIN. */
|
|
20654
|
+
member_pin_id?: (string | undefined) | undefined
|
|
20655
|
+
}
|
|
20656
|
+
| undefined
|
|
20425
20657
|
is_managed: false
|
|
20426
20658
|
}
|
|
20427
20659
|
}
|
|
@@ -20560,6 +20792,7 @@ export type Routes = {
|
|
|
20560
20792
|
| 'salto_ks_tag'
|
|
20561
20793
|
| 'avigilon_alta_credential'
|
|
20562
20794
|
| 'kisi_credential'
|
|
20795
|
+
| 'akiles_credential'
|
|
20563
20796
|
)
|
|
20564
20797
|
| undefined
|
|
20565
20798
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -20684,6 +20917,13 @@ export type Routes = {
|
|
|
20684
20917
|
endpoint_id?: (string | undefined) | undefined
|
|
20685
20918
|
}
|
|
20686
20919
|
| undefined
|
|
20920
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
20921
|
+
akiles_metadata?:
|
|
20922
|
+
| {
|
|
20923
|
+
/** ID of the Akiles member PIN. */
|
|
20924
|
+
member_pin_id?: (string | undefined) | undefined
|
|
20925
|
+
}
|
|
20926
|
+
| undefined
|
|
20687
20927
|
/** Indicates whether Seam manages the credential. */
|
|
20688
20928
|
is_managed: true
|
|
20689
20929
|
}
|
|
@@ -24400,6 +24640,7 @@ export type Routes = {
|
|
|
24400
24640
|
| 'salto_ks_tag'
|
|
24401
24641
|
| 'avigilon_alta_credential'
|
|
24402
24642
|
| 'kisi_credential'
|
|
24643
|
+
| 'akiles_credential'
|
|
24403
24644
|
)
|
|
24404
24645
|
| undefined
|
|
24405
24646
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -24524,6 +24765,13 @@ export type Routes = {
|
|
|
24524
24765
|
endpoint_id?: (string | undefined) | undefined
|
|
24525
24766
|
}
|
|
24526
24767
|
| undefined
|
|
24768
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
24769
|
+
akiles_metadata?:
|
|
24770
|
+
| {
|
|
24771
|
+
/** ID of the Akiles member PIN. */
|
|
24772
|
+
member_pin_id?: (string | undefined) | undefined
|
|
24773
|
+
}
|
|
24774
|
+
| undefined
|
|
24527
24775
|
/** Indicates whether Seam manages the credential. */
|
|
24528
24776
|
is_managed: true
|
|
24529
24777
|
}[]
|
|
@@ -24930,6 +25178,7 @@ export type Routes = {
|
|
|
24930
25178
|
| 'salto_ks_tag'
|
|
24931
25179
|
| 'avigilon_alta_credential'
|
|
24932
25180
|
| 'kisi_credential'
|
|
25181
|
+
| 'akiles_credential'
|
|
24933
25182
|
)
|
|
24934
25183
|
| undefined
|
|
24935
25184
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -25060,6 +25309,13 @@ export type Routes = {
|
|
|
25060
25309
|
endpoint_id?: (string | undefined) | undefined
|
|
25061
25310
|
}
|
|
25062
25311
|
| undefined
|
|
25312
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25313
|
+
akiles_metadata?:
|
|
25314
|
+
| {
|
|
25315
|
+
/** ID of the Akiles member PIN. */
|
|
25316
|
+
member_pin_id?: (string | undefined) | undefined
|
|
25317
|
+
}
|
|
25318
|
+
| undefined
|
|
25063
25319
|
/** Indicates whether Seam manages the credential. */
|
|
25064
25320
|
is_managed: true
|
|
25065
25321
|
}
|
|
@@ -25112,6 +25368,7 @@ export type Routes = {
|
|
|
25112
25368
|
| 'salto_ks_tag'
|
|
25113
25369
|
| 'avigilon_alta_credential'
|
|
25114
25370
|
| 'kisi_credential'
|
|
25371
|
+
| 'akiles_credential'
|
|
25115
25372
|
)
|
|
25116
25373
|
| undefined
|
|
25117
25374
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -25242,6 +25499,13 @@ export type Routes = {
|
|
|
25242
25499
|
endpoint_id?: (string | undefined) | undefined
|
|
25243
25500
|
}
|
|
25244
25501
|
| undefined
|
|
25502
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25503
|
+
akiles_metadata?:
|
|
25504
|
+
| {
|
|
25505
|
+
/** ID of the Akiles member PIN. */
|
|
25506
|
+
member_pin_id?: (string | undefined) | undefined
|
|
25507
|
+
}
|
|
25508
|
+
| undefined
|
|
25245
25509
|
is_managed: false
|
|
25246
25510
|
}
|
|
25247
25511
|
)
|
|
@@ -25369,6 +25633,7 @@ export type Routes = {
|
|
|
25369
25633
|
| 'salto_ks_tag'
|
|
25370
25634
|
| 'avigilon_alta_credential'
|
|
25371
25635
|
| 'kisi_credential'
|
|
25636
|
+
| 'akiles_credential'
|
|
25372
25637
|
)
|
|
25373
25638
|
| undefined
|
|
25374
25639
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -25499,6 +25764,13 @@ export type Routes = {
|
|
|
25499
25764
|
endpoint_id?: (string | undefined) | undefined
|
|
25500
25765
|
}
|
|
25501
25766
|
| undefined
|
|
25767
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25768
|
+
akiles_metadata?:
|
|
25769
|
+
| {
|
|
25770
|
+
/** ID of the Akiles member PIN. */
|
|
25771
|
+
member_pin_id?: (string | undefined) | undefined
|
|
25772
|
+
}
|
|
25773
|
+
| undefined
|
|
25502
25774
|
/** Indicates whether Seam manages the credential. */
|
|
25503
25775
|
is_managed: true
|
|
25504
25776
|
}
|
|
@@ -25547,6 +25819,7 @@ export type Routes = {
|
|
|
25547
25819
|
| 'salto_ks_tag'
|
|
25548
25820
|
| 'avigilon_alta_credential'
|
|
25549
25821
|
| 'kisi_credential'
|
|
25822
|
+
| 'akiles_credential'
|
|
25550
25823
|
)
|
|
25551
25824
|
| undefined
|
|
25552
25825
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -25677,6 +25950,13 @@ export type Routes = {
|
|
|
25677
25950
|
endpoint_id?: (string | undefined) | undefined
|
|
25678
25951
|
}
|
|
25679
25952
|
| undefined
|
|
25953
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
25954
|
+
akiles_metadata?:
|
|
25955
|
+
| {
|
|
25956
|
+
/** ID of the Akiles member PIN. */
|
|
25957
|
+
member_pin_id?: (string | undefined) | undefined
|
|
25958
|
+
}
|
|
25959
|
+
| undefined
|
|
25680
25960
|
is_managed: false
|
|
25681
25961
|
}
|
|
25682
25962
|
}
|
|
@@ -25815,6 +26095,7 @@ export type Routes = {
|
|
|
25815
26095
|
| 'salto_ks_tag'
|
|
25816
26096
|
| 'avigilon_alta_credential'
|
|
25817
26097
|
| 'kisi_credential'
|
|
26098
|
+
| 'akiles_credential'
|
|
25818
26099
|
)
|
|
25819
26100
|
| undefined
|
|
25820
26101
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -25939,6 +26220,13 @@ export type Routes = {
|
|
|
25939
26220
|
endpoint_id?: (string | undefined) | undefined
|
|
25940
26221
|
}
|
|
25941
26222
|
| undefined
|
|
26223
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
26224
|
+
akiles_metadata?:
|
|
26225
|
+
| {
|
|
26226
|
+
/** ID of the Akiles member PIN. */
|
|
26227
|
+
member_pin_id?: (string | undefined) | undefined
|
|
26228
|
+
}
|
|
26229
|
+
| undefined
|
|
25942
26230
|
/** Indicates whether Seam manages the credential. */
|
|
25943
26231
|
is_managed: true
|
|
25944
26232
|
}
|
|
@@ -28692,6 +28980,7 @@ export type Routes = {
|
|
|
28692
28980
|
| 'salto_ks_tag'
|
|
28693
28981
|
| 'avigilon_alta_credential'
|
|
28694
28982
|
| 'kisi_credential'
|
|
28983
|
+
| 'akiles_credential'
|
|
28695
28984
|
)
|
|
28696
28985
|
| undefined
|
|
28697
28986
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -28812,6 +29101,13 @@ export type Routes = {
|
|
|
28812
29101
|
endpoint_id?: (string | undefined) | undefined
|
|
28813
29102
|
}
|
|
28814
29103
|
| undefined
|
|
29104
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29105
|
+
akiles_metadata?:
|
|
29106
|
+
| {
|
|
29107
|
+
/** ID of the Akiles member PIN. */
|
|
29108
|
+
member_pin_id?: (string | undefined) | undefined
|
|
29109
|
+
}
|
|
29110
|
+
| undefined
|
|
28815
29111
|
/** Indicates whether Seam manages the credential. */
|
|
28816
29112
|
is_managed: true
|
|
28817
29113
|
}
|
|
@@ -28942,6 +29238,7 @@ export type Routes = {
|
|
|
28942
29238
|
| 'salto_ks_tag'
|
|
28943
29239
|
| 'avigilon_alta_credential'
|
|
28944
29240
|
| 'kisi_credential'
|
|
29241
|
+
| 'akiles_credential'
|
|
28945
29242
|
)
|
|
28946
29243
|
| undefined
|
|
28947
29244
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -29062,6 +29359,13 @@ export type Routes = {
|
|
|
29062
29359
|
endpoint_id?: (string | undefined) | undefined
|
|
29063
29360
|
}
|
|
29064
29361
|
| undefined
|
|
29362
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29363
|
+
akiles_metadata?:
|
|
29364
|
+
| {
|
|
29365
|
+
/** ID of the Akiles member PIN. */
|
|
29366
|
+
member_pin_id?: (string | undefined) | undefined
|
|
29367
|
+
}
|
|
29368
|
+
| undefined
|
|
29065
29369
|
/** Indicates whether Seam manages the credential. */
|
|
29066
29370
|
is_managed: true
|
|
29067
29371
|
}
|
|
@@ -29139,6 +29443,7 @@ export type Routes = {
|
|
|
29139
29443
|
| 'salto_ks_tag'
|
|
29140
29444
|
| 'avigilon_alta_credential'
|
|
29141
29445
|
| 'kisi_credential'
|
|
29446
|
+
| 'akiles_credential'
|
|
29142
29447
|
)
|
|
29143
29448
|
| undefined
|
|
29144
29449
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -29259,6 +29564,13 @@ export type Routes = {
|
|
|
29259
29564
|
endpoint_id?: (string | undefined) | undefined
|
|
29260
29565
|
}
|
|
29261
29566
|
| undefined
|
|
29567
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29568
|
+
akiles_metadata?:
|
|
29569
|
+
| {
|
|
29570
|
+
/** ID of the Akiles member PIN. */
|
|
29571
|
+
member_pin_id?: (string | undefined) | undefined
|
|
29572
|
+
}
|
|
29573
|
+
| undefined
|
|
29262
29574
|
/** Indicates whether Seam manages the credential. */
|
|
29263
29575
|
is_managed: true
|
|
29264
29576
|
}
|
|
@@ -29341,6 +29653,7 @@ export type Routes = {
|
|
|
29341
29653
|
| 'salto_ks_tag'
|
|
29342
29654
|
| 'avigilon_alta_credential'
|
|
29343
29655
|
| 'kisi_credential'
|
|
29656
|
+
| 'akiles_credential'
|
|
29344
29657
|
)
|
|
29345
29658
|
| undefined
|
|
29346
29659
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -29461,6 +29774,13 @@ export type Routes = {
|
|
|
29461
29774
|
endpoint_id?: (string | undefined) | undefined
|
|
29462
29775
|
}
|
|
29463
29776
|
| undefined
|
|
29777
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29778
|
+
akiles_metadata?:
|
|
29779
|
+
| {
|
|
29780
|
+
/** ID of the Akiles member PIN. */
|
|
29781
|
+
member_pin_id?: (string | undefined) | undefined
|
|
29782
|
+
}
|
|
29783
|
+
| undefined
|
|
29464
29784
|
/** Indicates whether Seam manages the credential. */
|
|
29465
29785
|
is_managed: true
|
|
29466
29786
|
}
|
|
@@ -29551,6 +29871,7 @@ export type Routes = {
|
|
|
29551
29871
|
| 'salto_ks_tag'
|
|
29552
29872
|
| 'avigilon_alta_credential'
|
|
29553
29873
|
| 'kisi_credential'
|
|
29874
|
+
| 'akiles_credential'
|
|
29554
29875
|
)
|
|
29555
29876
|
| undefined
|
|
29556
29877
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -29671,6 +29992,13 @@ export type Routes = {
|
|
|
29671
29992
|
endpoint_id?: (string | undefined) | undefined
|
|
29672
29993
|
}
|
|
29673
29994
|
| undefined
|
|
29995
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
29996
|
+
akiles_metadata?:
|
|
29997
|
+
| {
|
|
29998
|
+
/** ID of the Akiles member PIN. */
|
|
29999
|
+
member_pin_id?: (string | undefined) | undefined
|
|
30000
|
+
}
|
|
30001
|
+
| undefined
|
|
29674
30002
|
/** Indicates whether Seam manages the credential. */
|
|
29675
30003
|
is_managed: true
|
|
29676
30004
|
}[]
|
|
@@ -30030,6 +30358,7 @@ export type Routes = {
|
|
|
30030
30358
|
| 'salto_ks_tag'
|
|
30031
30359
|
| 'avigilon_alta_credential'
|
|
30032
30360
|
| 'kisi_credential'
|
|
30361
|
+
| 'akiles_credential'
|
|
30033
30362
|
)
|
|
30034
30363
|
| undefined
|
|
30035
30364
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -30150,6 +30479,13 @@ export type Routes = {
|
|
|
30150
30479
|
endpoint_id?: (string | undefined) | undefined
|
|
30151
30480
|
}
|
|
30152
30481
|
| undefined
|
|
30482
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30483
|
+
akiles_metadata?:
|
|
30484
|
+
| {
|
|
30485
|
+
/** ID of the Akiles member PIN. */
|
|
30486
|
+
member_pin_id?: (string | undefined) | undefined
|
|
30487
|
+
}
|
|
30488
|
+
| undefined
|
|
30153
30489
|
/** Indicates whether Seam manages the credential. */
|
|
30154
30490
|
is_managed: true
|
|
30155
30491
|
}
|
|
@@ -30213,6 +30549,7 @@ export type Routes = {
|
|
|
30213
30549
|
| 'salto_ks_tag'
|
|
30214
30550
|
| 'avigilon_alta_credential'
|
|
30215
30551
|
| 'kisi_credential'
|
|
30552
|
+
| 'akiles_credential'
|
|
30216
30553
|
)
|
|
30217
30554
|
| undefined
|
|
30218
30555
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -30333,6 +30670,13 @@ export type Routes = {
|
|
|
30333
30670
|
endpoint_id?: (string | undefined) | undefined
|
|
30334
30671
|
}
|
|
30335
30672
|
| undefined
|
|
30673
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30674
|
+
akiles_metadata?:
|
|
30675
|
+
| {
|
|
30676
|
+
/** ID of the Akiles member PIN. */
|
|
30677
|
+
member_pin_id?: (string | undefined) | undefined
|
|
30678
|
+
}
|
|
30679
|
+
| undefined
|
|
30336
30680
|
is_managed: false
|
|
30337
30681
|
}
|
|
30338
30682
|
}
|
|
@@ -30413,6 +30757,7 @@ export type Routes = {
|
|
|
30413
30757
|
| 'salto_ks_tag'
|
|
30414
30758
|
| 'avigilon_alta_credential'
|
|
30415
30759
|
| 'kisi_credential'
|
|
30760
|
+
| 'akiles_credential'
|
|
30416
30761
|
)
|
|
30417
30762
|
| undefined
|
|
30418
30763
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -30533,6 +30878,13 @@ export type Routes = {
|
|
|
30533
30878
|
endpoint_id?: (string | undefined) | undefined
|
|
30534
30879
|
}
|
|
30535
30880
|
| undefined
|
|
30881
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
30882
|
+
akiles_metadata?:
|
|
30883
|
+
| {
|
|
30884
|
+
/** ID of the Akiles member PIN. */
|
|
30885
|
+
member_pin_id?: (string | undefined) | undefined
|
|
30886
|
+
}
|
|
30887
|
+
| undefined
|
|
30536
30888
|
is_managed: false
|
|
30537
30889
|
}[]
|
|
30538
30890
|
}
|
|
@@ -30605,6 +30957,7 @@ export type Routes = {
|
|
|
30605
30957
|
| 'salto_ks_tag'
|
|
30606
30958
|
| 'avigilon_alta_credential'
|
|
30607
30959
|
| 'kisi_credential'
|
|
30960
|
+
| 'akiles_credential'
|
|
30608
30961
|
)
|
|
30609
30962
|
| undefined
|
|
30610
30963
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -30725,6 +31078,13 @@ export type Routes = {
|
|
|
30725
31078
|
endpoint_id?: (string | undefined) | undefined
|
|
30726
31079
|
}
|
|
30727
31080
|
| undefined
|
|
31081
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
31082
|
+
akiles_metadata?:
|
|
31083
|
+
| {
|
|
31084
|
+
/** ID of the Akiles member PIN. */
|
|
31085
|
+
member_pin_id?: (string | undefined) | undefined
|
|
31086
|
+
}
|
|
31087
|
+
| undefined
|
|
30728
31088
|
/** Indicates whether Seam manages the credential. */
|
|
30729
31089
|
is_managed: true
|
|
30730
31090
|
}
|
|
@@ -30955,6 +31315,7 @@ export type Routes = {
|
|
|
30955
31315
|
| 'salto_ks_tag'
|
|
30956
31316
|
| 'avigilon_alta_credential'
|
|
30957
31317
|
| 'kisi_credential'
|
|
31318
|
+
| 'akiles_credential'
|
|
30958
31319
|
)
|
|
30959
31320
|
| undefined
|
|
30960
31321
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -31085,6 +31446,13 @@ export type Routes = {
|
|
|
31085
31446
|
endpoint_id?: (string | undefined) | undefined
|
|
31086
31447
|
}
|
|
31087
31448
|
| undefined
|
|
31449
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
31450
|
+
akiles_metadata?:
|
|
31451
|
+
| {
|
|
31452
|
+
/** ID of the Akiles member PIN. */
|
|
31453
|
+
member_pin_id?: (string | undefined) | undefined
|
|
31454
|
+
}
|
|
31455
|
+
| undefined
|
|
31088
31456
|
/** Indicates whether Seam manages the credential. */
|
|
31089
31457
|
is_managed: true
|
|
31090
31458
|
}
|
|
@@ -31137,6 +31505,7 @@ export type Routes = {
|
|
|
31137
31505
|
| 'salto_ks_tag'
|
|
31138
31506
|
| 'avigilon_alta_credential'
|
|
31139
31507
|
| 'kisi_credential'
|
|
31508
|
+
| 'akiles_credential'
|
|
31140
31509
|
)
|
|
31141
31510
|
| undefined
|
|
31142
31511
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -31267,6 +31636,13 @@ export type Routes = {
|
|
|
31267
31636
|
endpoint_id?: (string | undefined) | undefined
|
|
31268
31637
|
}
|
|
31269
31638
|
| undefined
|
|
31639
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
31640
|
+
akiles_metadata?:
|
|
31641
|
+
| {
|
|
31642
|
+
/** ID of the Akiles member PIN. */
|
|
31643
|
+
member_pin_id?: (string | undefined) | undefined
|
|
31644
|
+
}
|
|
31645
|
+
| undefined
|
|
31270
31646
|
is_managed: false
|
|
31271
31647
|
}
|
|
31272
31648
|
)
|
|
@@ -31394,6 +31770,7 @@ export type Routes = {
|
|
|
31394
31770
|
| 'salto_ks_tag'
|
|
31395
31771
|
| 'avigilon_alta_credential'
|
|
31396
31772
|
| 'kisi_credential'
|
|
31773
|
+
| 'akiles_credential'
|
|
31397
31774
|
)
|
|
31398
31775
|
| undefined
|
|
31399
31776
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -31524,6 +31901,13 @@ export type Routes = {
|
|
|
31524
31901
|
endpoint_id?: (string | undefined) | undefined
|
|
31525
31902
|
}
|
|
31526
31903
|
| undefined
|
|
31904
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
31905
|
+
akiles_metadata?:
|
|
31906
|
+
| {
|
|
31907
|
+
/** ID of the Akiles member PIN. */
|
|
31908
|
+
member_pin_id?: (string | undefined) | undefined
|
|
31909
|
+
}
|
|
31910
|
+
| undefined
|
|
31527
31911
|
/** Indicates whether Seam manages the credential. */
|
|
31528
31912
|
is_managed: true
|
|
31529
31913
|
}
|
|
@@ -31572,6 +31956,7 @@ export type Routes = {
|
|
|
31572
31956
|
| 'salto_ks_tag'
|
|
31573
31957
|
| 'avigilon_alta_credential'
|
|
31574
31958
|
| 'kisi_credential'
|
|
31959
|
+
| 'akiles_credential'
|
|
31575
31960
|
)
|
|
31576
31961
|
| undefined
|
|
31577
31962
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -31702,6 +32087,13 @@ export type Routes = {
|
|
|
31702
32087
|
endpoint_id?: (string | undefined) | undefined
|
|
31703
32088
|
}
|
|
31704
32089
|
| undefined
|
|
32090
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
32091
|
+
akiles_metadata?:
|
|
32092
|
+
| {
|
|
32093
|
+
/** ID of the Akiles member PIN. */
|
|
32094
|
+
member_pin_id?: (string | undefined) | undefined
|
|
32095
|
+
}
|
|
32096
|
+
| undefined
|
|
31705
32097
|
is_managed: false
|
|
31706
32098
|
}
|
|
31707
32099
|
}
|
|
@@ -31840,6 +32232,7 @@ export type Routes = {
|
|
|
31840
32232
|
| 'salto_ks_tag'
|
|
31841
32233
|
| 'avigilon_alta_credential'
|
|
31842
32234
|
| 'kisi_credential'
|
|
32235
|
+
| 'akiles_credential'
|
|
31843
32236
|
)
|
|
31844
32237
|
| undefined
|
|
31845
32238
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -31964,6 +32357,13 @@ export type Routes = {
|
|
|
31964
32357
|
endpoint_id?: (string | undefined) | undefined
|
|
31965
32358
|
}
|
|
31966
32359
|
| undefined
|
|
32360
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
32361
|
+
akiles_metadata?:
|
|
32362
|
+
| {
|
|
32363
|
+
/** ID of the Akiles member PIN. */
|
|
32364
|
+
member_pin_id?: (string | undefined) | undefined
|
|
32365
|
+
}
|
|
32366
|
+
| undefined
|
|
31967
32367
|
/** Indicates whether Seam manages the credential. */
|
|
31968
32368
|
is_managed: true
|
|
31969
32369
|
}
|
|
@@ -33118,6 +33518,7 @@ export type Routes = {
|
|
|
33118
33518
|
| 'salto_ks_tag'
|
|
33119
33519
|
| 'avigilon_alta_credential'
|
|
33120
33520
|
| 'kisi_credential'
|
|
33521
|
+
| 'akiles_credential'
|
|
33121
33522
|
)
|
|
33122
33523
|
| undefined
|
|
33123
33524
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -33248,6 +33649,13 @@ export type Routes = {
|
|
|
33248
33649
|
endpoint_id?: (string | undefined) | undefined
|
|
33249
33650
|
}
|
|
33250
33651
|
| undefined
|
|
33652
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
33653
|
+
akiles_metadata?:
|
|
33654
|
+
| {
|
|
33655
|
+
/** ID of the Akiles member PIN. */
|
|
33656
|
+
member_pin_id?: (string | undefined) | undefined
|
|
33657
|
+
}
|
|
33658
|
+
| undefined
|
|
33251
33659
|
/** Indicates whether Seam manages the credential. */
|
|
33252
33660
|
is_managed: true
|
|
33253
33661
|
}
|
|
@@ -33300,6 +33708,7 @@ export type Routes = {
|
|
|
33300
33708
|
| 'salto_ks_tag'
|
|
33301
33709
|
| 'avigilon_alta_credential'
|
|
33302
33710
|
| 'kisi_credential'
|
|
33711
|
+
| 'akiles_credential'
|
|
33303
33712
|
)
|
|
33304
33713
|
| undefined
|
|
33305
33714
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -33430,6 +33839,13 @@ export type Routes = {
|
|
|
33430
33839
|
endpoint_id?: (string | undefined) | undefined
|
|
33431
33840
|
}
|
|
33432
33841
|
| undefined
|
|
33842
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
33843
|
+
akiles_metadata?:
|
|
33844
|
+
| {
|
|
33845
|
+
/** ID of the Akiles member PIN. */
|
|
33846
|
+
member_pin_id?: (string | undefined) | undefined
|
|
33847
|
+
}
|
|
33848
|
+
| undefined
|
|
33433
33849
|
is_managed: false
|
|
33434
33850
|
}
|
|
33435
33851
|
)
|
|
@@ -33557,6 +33973,7 @@ export type Routes = {
|
|
|
33557
33973
|
| 'salto_ks_tag'
|
|
33558
33974
|
| 'avigilon_alta_credential'
|
|
33559
33975
|
| 'kisi_credential'
|
|
33976
|
+
| 'akiles_credential'
|
|
33560
33977
|
)
|
|
33561
33978
|
| undefined
|
|
33562
33979
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -33687,6 +34104,13 @@ export type Routes = {
|
|
|
33687
34104
|
endpoint_id?: (string | undefined) | undefined
|
|
33688
34105
|
}
|
|
33689
34106
|
| undefined
|
|
34107
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
34108
|
+
akiles_metadata?:
|
|
34109
|
+
| {
|
|
34110
|
+
/** ID of the Akiles member PIN. */
|
|
34111
|
+
member_pin_id?: (string | undefined) | undefined
|
|
34112
|
+
}
|
|
34113
|
+
| undefined
|
|
33690
34114
|
/** Indicates whether Seam manages the credential. */
|
|
33691
34115
|
is_managed: true
|
|
33692
34116
|
}
|
|
@@ -33735,6 +34159,7 @@ export type Routes = {
|
|
|
33735
34159
|
| 'salto_ks_tag'
|
|
33736
34160
|
| 'avigilon_alta_credential'
|
|
33737
34161
|
| 'kisi_credential'
|
|
34162
|
+
| 'akiles_credential'
|
|
33738
34163
|
)
|
|
33739
34164
|
| undefined
|
|
33740
34165
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -33865,6 +34290,13 @@ export type Routes = {
|
|
|
33865
34290
|
endpoint_id?: (string | undefined) | undefined
|
|
33866
34291
|
}
|
|
33867
34292
|
| undefined
|
|
34293
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
34294
|
+
akiles_metadata?:
|
|
34295
|
+
| {
|
|
34296
|
+
/** ID of the Akiles member PIN. */
|
|
34297
|
+
member_pin_id?: (string | undefined) | undefined
|
|
34298
|
+
}
|
|
34299
|
+
| undefined
|
|
33868
34300
|
is_managed: false
|
|
33869
34301
|
}
|
|
33870
34302
|
}
|
|
@@ -34003,6 +34435,7 @@ export type Routes = {
|
|
|
34003
34435
|
| 'salto_ks_tag'
|
|
34004
34436
|
| 'avigilon_alta_credential'
|
|
34005
34437
|
| 'kisi_credential'
|
|
34438
|
+
| 'akiles_credential'
|
|
34006
34439
|
)
|
|
34007
34440
|
| undefined
|
|
34008
34441
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -34127,6 +34560,13 @@ export type Routes = {
|
|
|
34127
34560
|
endpoint_id?: (string | undefined) | undefined
|
|
34128
34561
|
}
|
|
34129
34562
|
| undefined
|
|
34563
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
34564
|
+
akiles_metadata?:
|
|
34565
|
+
| {
|
|
34566
|
+
/** ID of the Akiles member PIN. */
|
|
34567
|
+
member_pin_id?: (string | undefined) | undefined
|
|
34568
|
+
}
|
|
34569
|
+
| undefined
|
|
34130
34570
|
/** Indicates whether Seam manages the credential. */
|
|
34131
34571
|
is_managed: true
|
|
34132
34572
|
}
|
|
@@ -35173,6 +35613,7 @@ export type Routes = {
|
|
|
35173
35613
|
| 'salto_ks_tag'
|
|
35174
35614
|
| 'avigilon_alta_credential'
|
|
35175
35615
|
| 'kisi_credential'
|
|
35616
|
+
| 'akiles_credential'
|
|
35176
35617
|
)
|
|
35177
35618
|
| undefined
|
|
35178
35619
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -35303,6 +35744,13 @@ export type Routes = {
|
|
|
35303
35744
|
endpoint_id?: (string | undefined) | undefined
|
|
35304
35745
|
}
|
|
35305
35746
|
| undefined
|
|
35747
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
35748
|
+
akiles_metadata?:
|
|
35749
|
+
| {
|
|
35750
|
+
/** ID of the Akiles member PIN. */
|
|
35751
|
+
member_pin_id?: (string | undefined) | undefined
|
|
35752
|
+
}
|
|
35753
|
+
| undefined
|
|
35306
35754
|
/** Indicates whether Seam manages the credential. */
|
|
35307
35755
|
is_managed: true
|
|
35308
35756
|
}
|
|
@@ -35355,6 +35803,7 @@ export type Routes = {
|
|
|
35355
35803
|
| 'salto_ks_tag'
|
|
35356
35804
|
| 'avigilon_alta_credential'
|
|
35357
35805
|
| 'kisi_credential'
|
|
35806
|
+
| 'akiles_credential'
|
|
35358
35807
|
)
|
|
35359
35808
|
| undefined
|
|
35360
35809
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -35485,6 +35934,13 @@ export type Routes = {
|
|
|
35485
35934
|
endpoint_id?: (string | undefined) | undefined
|
|
35486
35935
|
}
|
|
35487
35936
|
| undefined
|
|
35937
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
35938
|
+
akiles_metadata?:
|
|
35939
|
+
| {
|
|
35940
|
+
/** ID of the Akiles member PIN. */
|
|
35941
|
+
member_pin_id?: (string | undefined) | undefined
|
|
35942
|
+
}
|
|
35943
|
+
| undefined
|
|
35488
35944
|
is_managed: false
|
|
35489
35945
|
}
|
|
35490
35946
|
)
|
|
@@ -35612,6 +36068,7 @@ export type Routes = {
|
|
|
35612
36068
|
| 'salto_ks_tag'
|
|
35613
36069
|
| 'avigilon_alta_credential'
|
|
35614
36070
|
| 'kisi_credential'
|
|
36071
|
+
| 'akiles_credential'
|
|
35615
36072
|
)
|
|
35616
36073
|
| undefined
|
|
35617
36074
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -35742,6 +36199,13 @@ export type Routes = {
|
|
|
35742
36199
|
endpoint_id?: (string | undefined) | undefined
|
|
35743
36200
|
}
|
|
35744
36201
|
| undefined
|
|
36202
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
36203
|
+
akiles_metadata?:
|
|
36204
|
+
| {
|
|
36205
|
+
/** ID of the Akiles member PIN. */
|
|
36206
|
+
member_pin_id?: (string | undefined) | undefined
|
|
36207
|
+
}
|
|
36208
|
+
| undefined
|
|
35745
36209
|
/** Indicates whether Seam manages the credential. */
|
|
35746
36210
|
is_managed: true
|
|
35747
36211
|
}
|
|
@@ -35790,6 +36254,7 @@ export type Routes = {
|
|
|
35790
36254
|
| 'salto_ks_tag'
|
|
35791
36255
|
| 'avigilon_alta_credential'
|
|
35792
36256
|
| 'kisi_credential'
|
|
36257
|
+
| 'akiles_credential'
|
|
35793
36258
|
)
|
|
35794
36259
|
| undefined
|
|
35795
36260
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -35920,6 +36385,13 @@ export type Routes = {
|
|
|
35920
36385
|
endpoint_id?: (string | undefined) | undefined
|
|
35921
36386
|
}
|
|
35922
36387
|
| undefined
|
|
36388
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
36389
|
+
akiles_metadata?:
|
|
36390
|
+
| {
|
|
36391
|
+
/** ID of the Akiles member PIN. */
|
|
36392
|
+
member_pin_id?: (string | undefined) | undefined
|
|
36393
|
+
}
|
|
36394
|
+
| undefined
|
|
35923
36395
|
is_managed: false
|
|
35924
36396
|
}
|
|
35925
36397
|
}
|
|
@@ -36058,6 +36530,7 @@ export type Routes = {
|
|
|
36058
36530
|
| 'salto_ks_tag'
|
|
36059
36531
|
| 'avigilon_alta_credential'
|
|
36060
36532
|
| 'kisi_credential'
|
|
36533
|
+
| 'akiles_credential'
|
|
36061
36534
|
)
|
|
36062
36535
|
| undefined
|
|
36063
36536
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -36182,6 +36655,13 @@ export type Routes = {
|
|
|
36182
36655
|
endpoint_id?: (string | undefined) | undefined
|
|
36183
36656
|
}
|
|
36184
36657
|
| undefined
|
|
36658
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
36659
|
+
akiles_metadata?:
|
|
36660
|
+
| {
|
|
36661
|
+
/** ID of the Akiles member PIN. */
|
|
36662
|
+
member_pin_id?: (string | undefined) | undefined
|
|
36663
|
+
}
|
|
36664
|
+
| undefined
|
|
36185
36665
|
/** Indicates whether Seam manages the credential. */
|
|
36186
36666
|
is_managed: true
|
|
36187
36667
|
}
|
|
@@ -37751,6 +38231,7 @@ export type Routes = {
|
|
|
37751
38231
|
| 'salto_ks_tag'
|
|
37752
38232
|
| 'avigilon_alta_credential'
|
|
37753
38233
|
| 'kisi_credential'
|
|
38234
|
+
| 'akiles_credential'
|
|
37754
38235
|
)
|
|
37755
38236
|
| undefined
|
|
37756
38237
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -37871,6 +38352,13 @@ export type Routes = {
|
|
|
37871
38352
|
endpoint_id?: (string | undefined) | undefined
|
|
37872
38353
|
}
|
|
37873
38354
|
| undefined
|
|
38355
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
38356
|
+
akiles_metadata?:
|
|
38357
|
+
| {
|
|
38358
|
+
/** ID of the Akiles member PIN. */
|
|
38359
|
+
member_pin_id?: (string | undefined) | undefined
|
|
38360
|
+
}
|
|
38361
|
+
| undefined
|
|
37874
38362
|
/** Indicates whether Seam manages the credential. */
|
|
37875
38363
|
is_managed: true
|
|
37876
38364
|
}[]
|
|
@@ -38099,6 +38587,7 @@ export type Routes = {
|
|
|
38099
38587
|
| 'salto_ks_tag'
|
|
38100
38588
|
| 'avigilon_alta_credential'
|
|
38101
38589
|
| 'kisi_credential'
|
|
38590
|
+
| 'akiles_credential'
|
|
38102
38591
|
)
|
|
38103
38592
|
| undefined
|
|
38104
38593
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -38229,6 +38718,13 @@ export type Routes = {
|
|
|
38229
38718
|
endpoint_id?: (string | undefined) | undefined
|
|
38230
38719
|
}
|
|
38231
38720
|
| undefined
|
|
38721
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
38722
|
+
akiles_metadata?:
|
|
38723
|
+
| {
|
|
38724
|
+
/** ID of the Akiles member PIN. */
|
|
38725
|
+
member_pin_id?: (string | undefined) | undefined
|
|
38726
|
+
}
|
|
38727
|
+
| undefined
|
|
38232
38728
|
/** Indicates whether Seam manages the credential. */
|
|
38233
38729
|
is_managed: true
|
|
38234
38730
|
}
|
|
@@ -38281,6 +38777,7 @@ export type Routes = {
|
|
|
38281
38777
|
| 'salto_ks_tag'
|
|
38282
38778
|
| 'avigilon_alta_credential'
|
|
38283
38779
|
| 'kisi_credential'
|
|
38780
|
+
| 'akiles_credential'
|
|
38284
38781
|
)
|
|
38285
38782
|
| undefined
|
|
38286
38783
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -38411,6 +38908,13 @@ export type Routes = {
|
|
|
38411
38908
|
endpoint_id?: (string | undefined) | undefined
|
|
38412
38909
|
}
|
|
38413
38910
|
| undefined
|
|
38911
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
38912
|
+
akiles_metadata?:
|
|
38913
|
+
| {
|
|
38914
|
+
/** ID of the Akiles member PIN. */
|
|
38915
|
+
member_pin_id?: (string | undefined) | undefined
|
|
38916
|
+
}
|
|
38917
|
+
| undefined
|
|
38414
38918
|
is_managed: false
|
|
38415
38919
|
}
|
|
38416
38920
|
)
|
|
@@ -38538,6 +39042,7 @@ export type Routes = {
|
|
|
38538
39042
|
| 'salto_ks_tag'
|
|
38539
39043
|
| 'avigilon_alta_credential'
|
|
38540
39044
|
| 'kisi_credential'
|
|
39045
|
+
| 'akiles_credential'
|
|
38541
39046
|
)
|
|
38542
39047
|
| undefined
|
|
38543
39048
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -38668,6 +39173,13 @@ export type Routes = {
|
|
|
38668
39173
|
endpoint_id?: (string | undefined) | undefined
|
|
38669
39174
|
}
|
|
38670
39175
|
| undefined
|
|
39176
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
39177
|
+
akiles_metadata?:
|
|
39178
|
+
| {
|
|
39179
|
+
/** ID of the Akiles member PIN. */
|
|
39180
|
+
member_pin_id?: (string | undefined) | undefined
|
|
39181
|
+
}
|
|
39182
|
+
| undefined
|
|
38671
39183
|
/** Indicates whether Seam manages the credential. */
|
|
38672
39184
|
is_managed: true
|
|
38673
39185
|
}
|
|
@@ -38716,6 +39228,7 @@ export type Routes = {
|
|
|
38716
39228
|
| 'salto_ks_tag'
|
|
38717
39229
|
| 'avigilon_alta_credential'
|
|
38718
39230
|
| 'kisi_credential'
|
|
39231
|
+
| 'akiles_credential'
|
|
38719
39232
|
)
|
|
38720
39233
|
| undefined
|
|
38721
39234
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -38846,6 +39359,13 @@ export type Routes = {
|
|
|
38846
39359
|
endpoint_id?: (string | undefined) | undefined
|
|
38847
39360
|
}
|
|
38848
39361
|
| undefined
|
|
39362
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
39363
|
+
akiles_metadata?:
|
|
39364
|
+
| {
|
|
39365
|
+
/** ID of the Akiles member PIN. */
|
|
39366
|
+
member_pin_id?: (string | undefined) | undefined
|
|
39367
|
+
}
|
|
39368
|
+
| undefined
|
|
38849
39369
|
is_managed: false
|
|
38850
39370
|
}
|
|
38851
39371
|
}
|
|
@@ -38984,6 +39504,7 @@ export type Routes = {
|
|
|
38984
39504
|
| 'salto_ks_tag'
|
|
38985
39505
|
| 'avigilon_alta_credential'
|
|
38986
39506
|
| 'kisi_credential'
|
|
39507
|
+
| 'akiles_credential'
|
|
38987
39508
|
)
|
|
38988
39509
|
| undefined
|
|
38989
39510
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -39108,6 +39629,13 @@ export type Routes = {
|
|
|
39108
39629
|
endpoint_id?: (string | undefined) | undefined
|
|
39109
39630
|
}
|
|
39110
39631
|
| undefined
|
|
39632
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
39633
|
+
akiles_metadata?:
|
|
39634
|
+
| {
|
|
39635
|
+
/** ID of the Akiles member PIN. */
|
|
39636
|
+
member_pin_id?: (string | undefined) | undefined
|
|
39637
|
+
}
|
|
39638
|
+
| undefined
|
|
39111
39639
|
/** Indicates whether Seam manages the credential. */
|
|
39112
39640
|
is_managed: true
|
|
39113
39641
|
}
|
|
@@ -42906,6 +43434,7 @@ export type Routes = {
|
|
|
42906
43434
|
| 'salto_ks_tag'
|
|
42907
43435
|
| 'avigilon_alta_credential'
|
|
42908
43436
|
| 'kisi_credential'
|
|
43437
|
+
| 'akiles_credential'
|
|
42909
43438
|
)
|
|
42910
43439
|
| undefined
|
|
42911
43440
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -43036,6 +43565,13 @@ export type Routes = {
|
|
|
43036
43565
|
endpoint_id?: (string | undefined) | undefined
|
|
43037
43566
|
}
|
|
43038
43567
|
| undefined
|
|
43568
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
43569
|
+
akiles_metadata?:
|
|
43570
|
+
| {
|
|
43571
|
+
/** ID of the Akiles member PIN. */
|
|
43572
|
+
member_pin_id?: (string | undefined) | undefined
|
|
43573
|
+
}
|
|
43574
|
+
| undefined
|
|
43039
43575
|
/** Indicates whether Seam manages the credential. */
|
|
43040
43576
|
is_managed: true
|
|
43041
43577
|
}
|
|
@@ -43088,6 +43624,7 @@ export type Routes = {
|
|
|
43088
43624
|
| 'salto_ks_tag'
|
|
43089
43625
|
| 'avigilon_alta_credential'
|
|
43090
43626
|
| 'kisi_credential'
|
|
43627
|
+
| 'akiles_credential'
|
|
43091
43628
|
)
|
|
43092
43629
|
| undefined
|
|
43093
43630
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -43218,6 +43755,13 @@ export type Routes = {
|
|
|
43218
43755
|
endpoint_id?: (string | undefined) | undefined
|
|
43219
43756
|
}
|
|
43220
43757
|
| undefined
|
|
43758
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
43759
|
+
akiles_metadata?:
|
|
43760
|
+
| {
|
|
43761
|
+
/** ID of the Akiles member PIN. */
|
|
43762
|
+
member_pin_id?: (string | undefined) | undefined
|
|
43763
|
+
}
|
|
43764
|
+
| undefined
|
|
43221
43765
|
is_managed: false
|
|
43222
43766
|
}
|
|
43223
43767
|
)
|
|
@@ -43345,6 +43889,7 @@ export type Routes = {
|
|
|
43345
43889
|
| 'salto_ks_tag'
|
|
43346
43890
|
| 'avigilon_alta_credential'
|
|
43347
43891
|
| 'kisi_credential'
|
|
43892
|
+
| 'akiles_credential'
|
|
43348
43893
|
)
|
|
43349
43894
|
| undefined
|
|
43350
43895
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -43475,6 +44020,13 @@ export type Routes = {
|
|
|
43475
44020
|
endpoint_id?: (string | undefined) | undefined
|
|
43476
44021
|
}
|
|
43477
44022
|
| undefined
|
|
44023
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
44024
|
+
akiles_metadata?:
|
|
44025
|
+
| {
|
|
44026
|
+
/** ID of the Akiles member PIN. */
|
|
44027
|
+
member_pin_id?: (string | undefined) | undefined
|
|
44028
|
+
}
|
|
44029
|
+
| undefined
|
|
43478
44030
|
/** Indicates whether Seam manages the credential. */
|
|
43479
44031
|
is_managed: true
|
|
43480
44032
|
}
|
|
@@ -43523,6 +44075,7 @@ export type Routes = {
|
|
|
43523
44075
|
| 'salto_ks_tag'
|
|
43524
44076
|
| 'avigilon_alta_credential'
|
|
43525
44077
|
| 'kisi_credential'
|
|
44078
|
+
| 'akiles_credential'
|
|
43526
44079
|
)
|
|
43527
44080
|
| undefined
|
|
43528
44081
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -43653,6 +44206,13 @@ export type Routes = {
|
|
|
43653
44206
|
endpoint_id?: (string | undefined) | undefined
|
|
43654
44207
|
}
|
|
43655
44208
|
| undefined
|
|
44209
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
44210
|
+
akiles_metadata?:
|
|
44211
|
+
| {
|
|
44212
|
+
/** ID of the Akiles member PIN. */
|
|
44213
|
+
member_pin_id?: (string | undefined) | undefined
|
|
44214
|
+
}
|
|
44215
|
+
| undefined
|
|
43656
44216
|
is_managed: false
|
|
43657
44217
|
}
|
|
43658
44218
|
}
|
|
@@ -43791,6 +44351,7 @@ export type Routes = {
|
|
|
43791
44351
|
| 'salto_ks_tag'
|
|
43792
44352
|
| 'avigilon_alta_credential'
|
|
43793
44353
|
| 'kisi_credential'
|
|
44354
|
+
| 'akiles_credential'
|
|
43794
44355
|
)
|
|
43795
44356
|
| undefined
|
|
43796
44357
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -43915,6 +44476,13 @@ export type Routes = {
|
|
|
43915
44476
|
endpoint_id?: (string | undefined) | undefined
|
|
43916
44477
|
}
|
|
43917
44478
|
| undefined
|
|
44479
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
44480
|
+
akiles_metadata?:
|
|
44481
|
+
| {
|
|
44482
|
+
/** ID of the Akiles member PIN. */
|
|
44483
|
+
member_pin_id?: (string | undefined) | undefined
|
|
44484
|
+
}
|
|
44485
|
+
| undefined
|
|
43918
44486
|
/** Indicates whether Seam manages the credential. */
|
|
43919
44487
|
is_managed: true
|
|
43920
44488
|
}
|
|
@@ -44951,6 +45519,7 @@ export type Routes = {
|
|
|
44951
45519
|
| 'salto_ks_tag'
|
|
44952
45520
|
| 'avigilon_alta_credential'
|
|
44953
45521
|
| 'kisi_credential'
|
|
45522
|
+
| 'akiles_credential'
|
|
44954
45523
|
)
|
|
44955
45524
|
| undefined
|
|
44956
45525
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -45081,6 +45650,13 @@ export type Routes = {
|
|
|
45081
45650
|
endpoint_id?: (string | undefined) | undefined
|
|
45082
45651
|
}
|
|
45083
45652
|
| undefined
|
|
45653
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
45654
|
+
akiles_metadata?:
|
|
45655
|
+
| {
|
|
45656
|
+
/** ID of the Akiles member PIN. */
|
|
45657
|
+
member_pin_id?: (string | undefined) | undefined
|
|
45658
|
+
}
|
|
45659
|
+
| undefined
|
|
45084
45660
|
/** Indicates whether Seam manages the credential. */
|
|
45085
45661
|
is_managed: true
|
|
45086
45662
|
}
|
|
@@ -45133,6 +45709,7 @@ export type Routes = {
|
|
|
45133
45709
|
| 'salto_ks_tag'
|
|
45134
45710
|
| 'avigilon_alta_credential'
|
|
45135
45711
|
| 'kisi_credential'
|
|
45712
|
+
| 'akiles_credential'
|
|
45136
45713
|
)
|
|
45137
45714
|
| undefined
|
|
45138
45715
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -45263,6 +45840,13 @@ export type Routes = {
|
|
|
45263
45840
|
endpoint_id?: (string | undefined) | undefined
|
|
45264
45841
|
}
|
|
45265
45842
|
| undefined
|
|
45843
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
45844
|
+
akiles_metadata?:
|
|
45845
|
+
| {
|
|
45846
|
+
/** ID of the Akiles member PIN. */
|
|
45847
|
+
member_pin_id?: (string | undefined) | undefined
|
|
45848
|
+
}
|
|
45849
|
+
| undefined
|
|
45266
45850
|
is_managed: false
|
|
45267
45851
|
}
|
|
45268
45852
|
)
|
|
@@ -45390,6 +45974,7 @@ export type Routes = {
|
|
|
45390
45974
|
| 'salto_ks_tag'
|
|
45391
45975
|
| 'avigilon_alta_credential'
|
|
45392
45976
|
| 'kisi_credential'
|
|
45977
|
+
| 'akiles_credential'
|
|
45393
45978
|
)
|
|
45394
45979
|
| undefined
|
|
45395
45980
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -45520,6 +46105,13 @@ export type Routes = {
|
|
|
45520
46105
|
endpoint_id?: (string | undefined) | undefined
|
|
45521
46106
|
}
|
|
45522
46107
|
| undefined
|
|
46108
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
46109
|
+
akiles_metadata?:
|
|
46110
|
+
| {
|
|
46111
|
+
/** ID of the Akiles member PIN. */
|
|
46112
|
+
member_pin_id?: (string | undefined) | undefined
|
|
46113
|
+
}
|
|
46114
|
+
| undefined
|
|
45523
46115
|
/** Indicates whether Seam manages the credential. */
|
|
45524
46116
|
is_managed: true
|
|
45525
46117
|
}
|
|
@@ -45568,6 +46160,7 @@ export type Routes = {
|
|
|
45568
46160
|
| 'salto_ks_tag'
|
|
45569
46161
|
| 'avigilon_alta_credential'
|
|
45570
46162
|
| 'kisi_credential'
|
|
46163
|
+
| 'akiles_credential'
|
|
45571
46164
|
)
|
|
45572
46165
|
| undefined
|
|
45573
46166
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -45698,6 +46291,13 @@ export type Routes = {
|
|
|
45698
46291
|
endpoint_id?: (string | undefined) | undefined
|
|
45699
46292
|
}
|
|
45700
46293
|
| undefined
|
|
46294
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
46295
|
+
akiles_metadata?:
|
|
46296
|
+
| {
|
|
46297
|
+
/** ID of the Akiles member PIN. */
|
|
46298
|
+
member_pin_id?: (string | undefined) | undefined
|
|
46299
|
+
}
|
|
46300
|
+
| undefined
|
|
45701
46301
|
is_managed: false
|
|
45702
46302
|
}
|
|
45703
46303
|
}
|
|
@@ -45836,6 +46436,7 @@ export type Routes = {
|
|
|
45836
46436
|
| 'salto_ks_tag'
|
|
45837
46437
|
| 'avigilon_alta_credential'
|
|
45838
46438
|
| 'kisi_credential'
|
|
46439
|
+
| 'akiles_credential'
|
|
45839
46440
|
)
|
|
45840
46441
|
| undefined
|
|
45841
46442
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -45960,6 +46561,13 @@ export type Routes = {
|
|
|
45960
46561
|
endpoint_id?: (string | undefined) | undefined
|
|
45961
46562
|
}
|
|
45962
46563
|
| undefined
|
|
46564
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
46565
|
+
akiles_metadata?:
|
|
46566
|
+
| {
|
|
46567
|
+
/** ID of the Akiles member PIN. */
|
|
46568
|
+
member_pin_id?: (string | undefined) | undefined
|
|
46569
|
+
}
|
|
46570
|
+
| undefined
|
|
45963
46571
|
/** Indicates whether Seam manages the credential. */
|
|
45964
46572
|
is_managed: true
|
|
45965
46573
|
}
|
|
@@ -64353,6 +64961,7 @@ export type Routes = {
|
|
|
64353
64961
|
| 'salto_ks_tag'
|
|
64354
64962
|
| 'avigilon_alta_credential'
|
|
64355
64963
|
| 'kisi_credential'
|
|
64964
|
+
| 'akiles_credential'
|
|
64356
64965
|
)
|
|
64357
64966
|
| undefined
|
|
64358
64967
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -64483,6 +65092,13 @@ export type Routes = {
|
|
|
64483
65092
|
endpoint_id?: (string | undefined) | undefined
|
|
64484
65093
|
}
|
|
64485
65094
|
| undefined
|
|
65095
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
65096
|
+
akiles_metadata?:
|
|
65097
|
+
| {
|
|
65098
|
+
/** ID of the Akiles member PIN. */
|
|
65099
|
+
member_pin_id?: (string | undefined) | undefined
|
|
65100
|
+
}
|
|
65101
|
+
| undefined
|
|
64486
65102
|
/** Indicates whether Seam manages the credential. */
|
|
64487
65103
|
is_managed: true
|
|
64488
65104
|
}
|
|
@@ -64535,6 +65151,7 @@ export type Routes = {
|
|
|
64535
65151
|
| 'salto_ks_tag'
|
|
64536
65152
|
| 'avigilon_alta_credential'
|
|
64537
65153
|
| 'kisi_credential'
|
|
65154
|
+
| 'akiles_credential'
|
|
64538
65155
|
)
|
|
64539
65156
|
| undefined
|
|
64540
65157
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -64665,6 +65282,13 @@ export type Routes = {
|
|
|
64665
65282
|
endpoint_id?: (string | undefined) | undefined
|
|
64666
65283
|
}
|
|
64667
65284
|
| undefined
|
|
65285
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
65286
|
+
akiles_metadata?:
|
|
65287
|
+
| {
|
|
65288
|
+
/** ID of the Akiles member PIN. */
|
|
65289
|
+
member_pin_id?: (string | undefined) | undefined
|
|
65290
|
+
}
|
|
65291
|
+
| undefined
|
|
64668
65292
|
is_managed: false
|
|
64669
65293
|
}
|
|
64670
65294
|
)
|
|
@@ -64792,6 +65416,7 @@ export type Routes = {
|
|
|
64792
65416
|
| 'salto_ks_tag'
|
|
64793
65417
|
| 'avigilon_alta_credential'
|
|
64794
65418
|
| 'kisi_credential'
|
|
65419
|
+
| 'akiles_credential'
|
|
64795
65420
|
)
|
|
64796
65421
|
| undefined
|
|
64797
65422
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -64922,6 +65547,13 @@ export type Routes = {
|
|
|
64922
65547
|
endpoint_id?: (string | undefined) | undefined
|
|
64923
65548
|
}
|
|
64924
65549
|
| undefined
|
|
65550
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
65551
|
+
akiles_metadata?:
|
|
65552
|
+
| {
|
|
65553
|
+
/** ID of the Akiles member PIN. */
|
|
65554
|
+
member_pin_id?: (string | undefined) | undefined
|
|
65555
|
+
}
|
|
65556
|
+
| undefined
|
|
64925
65557
|
/** Indicates whether Seam manages the credential. */
|
|
64926
65558
|
is_managed: true
|
|
64927
65559
|
}
|
|
@@ -64970,6 +65602,7 @@ export type Routes = {
|
|
|
64970
65602
|
| 'salto_ks_tag'
|
|
64971
65603
|
| 'avigilon_alta_credential'
|
|
64972
65604
|
| 'kisi_credential'
|
|
65605
|
+
| 'akiles_credential'
|
|
64973
65606
|
)
|
|
64974
65607
|
| undefined
|
|
64975
65608
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -65100,6 +65733,13 @@ export type Routes = {
|
|
|
65100
65733
|
endpoint_id?: (string | undefined) | undefined
|
|
65101
65734
|
}
|
|
65102
65735
|
| undefined
|
|
65736
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
65737
|
+
akiles_metadata?:
|
|
65738
|
+
| {
|
|
65739
|
+
/** ID of the Akiles member PIN. */
|
|
65740
|
+
member_pin_id?: (string | undefined) | undefined
|
|
65741
|
+
}
|
|
65742
|
+
| undefined
|
|
65103
65743
|
is_managed: false
|
|
65104
65744
|
}
|
|
65105
65745
|
}
|
|
@@ -65238,6 +65878,7 @@ export type Routes = {
|
|
|
65238
65878
|
| 'salto_ks_tag'
|
|
65239
65879
|
| 'avigilon_alta_credential'
|
|
65240
65880
|
| 'kisi_credential'
|
|
65881
|
+
| 'akiles_credential'
|
|
65241
65882
|
)
|
|
65242
65883
|
| undefined
|
|
65243
65884
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -65362,6 +66003,13 @@ export type Routes = {
|
|
|
65362
66003
|
endpoint_id?: (string | undefined) | undefined
|
|
65363
66004
|
}
|
|
65364
66005
|
| undefined
|
|
66006
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
66007
|
+
akiles_metadata?:
|
|
66008
|
+
| {
|
|
66009
|
+
/** ID of the Akiles member PIN. */
|
|
66010
|
+
member_pin_id?: (string | undefined) | undefined
|
|
66011
|
+
}
|
|
66012
|
+
| undefined
|
|
65365
66013
|
/** Indicates whether Seam manages the credential. */
|
|
65366
66014
|
is_managed: true
|
|
65367
66015
|
}
|
|
@@ -74081,6 +74729,7 @@ export type Routes = {
|
|
|
74081
74729
|
| 'salto_ks_tag'
|
|
74082
74730
|
| 'avigilon_alta_credential'
|
|
74083
74731
|
| 'kisi_credential'
|
|
74732
|
+
| 'akiles_credential'
|
|
74084
74733
|
)
|
|
74085
74734
|
| undefined
|
|
74086
74735
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -74211,6 +74860,13 @@ export type Routes = {
|
|
|
74211
74860
|
endpoint_id?: (string | undefined) | undefined
|
|
74212
74861
|
}
|
|
74213
74862
|
| undefined
|
|
74863
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
74864
|
+
akiles_metadata?:
|
|
74865
|
+
| {
|
|
74866
|
+
/** ID of the Akiles member PIN. */
|
|
74867
|
+
member_pin_id?: (string | undefined) | undefined
|
|
74868
|
+
}
|
|
74869
|
+
| undefined
|
|
74214
74870
|
/** Indicates whether Seam manages the credential. */
|
|
74215
74871
|
is_managed: true
|
|
74216
74872
|
}
|
|
@@ -74263,6 +74919,7 @@ export type Routes = {
|
|
|
74263
74919
|
| 'salto_ks_tag'
|
|
74264
74920
|
| 'avigilon_alta_credential'
|
|
74265
74921
|
| 'kisi_credential'
|
|
74922
|
+
| 'akiles_credential'
|
|
74266
74923
|
)
|
|
74267
74924
|
| undefined
|
|
74268
74925
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -74393,6 +75050,13 @@ export type Routes = {
|
|
|
74393
75050
|
endpoint_id?: (string | undefined) | undefined
|
|
74394
75051
|
}
|
|
74395
75052
|
| undefined
|
|
75053
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
75054
|
+
akiles_metadata?:
|
|
75055
|
+
| {
|
|
75056
|
+
/** ID of the Akiles member PIN. */
|
|
75057
|
+
member_pin_id?: (string | undefined) | undefined
|
|
75058
|
+
}
|
|
75059
|
+
| undefined
|
|
74396
75060
|
is_managed: false
|
|
74397
75061
|
}
|
|
74398
75062
|
)
|
|
@@ -74520,6 +75184,7 @@ export type Routes = {
|
|
|
74520
75184
|
| 'salto_ks_tag'
|
|
74521
75185
|
| 'avigilon_alta_credential'
|
|
74522
75186
|
| 'kisi_credential'
|
|
75187
|
+
| 'akiles_credential'
|
|
74523
75188
|
)
|
|
74524
75189
|
| undefined
|
|
74525
75190
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -74650,6 +75315,13 @@ export type Routes = {
|
|
|
74650
75315
|
endpoint_id?: (string | undefined) | undefined
|
|
74651
75316
|
}
|
|
74652
75317
|
| undefined
|
|
75318
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
75319
|
+
akiles_metadata?:
|
|
75320
|
+
| {
|
|
75321
|
+
/** ID of the Akiles member PIN. */
|
|
75322
|
+
member_pin_id?: (string | undefined) | undefined
|
|
75323
|
+
}
|
|
75324
|
+
| undefined
|
|
74653
75325
|
/** Indicates whether Seam manages the credential. */
|
|
74654
75326
|
is_managed: true
|
|
74655
75327
|
}
|
|
@@ -74698,6 +75370,7 @@ export type Routes = {
|
|
|
74698
75370
|
| 'salto_ks_tag'
|
|
74699
75371
|
| 'avigilon_alta_credential'
|
|
74700
75372
|
| 'kisi_credential'
|
|
75373
|
+
| 'akiles_credential'
|
|
74701
75374
|
)
|
|
74702
75375
|
| undefined
|
|
74703
75376
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -74828,6 +75501,13 @@ export type Routes = {
|
|
|
74828
75501
|
endpoint_id?: (string | undefined) | undefined
|
|
74829
75502
|
}
|
|
74830
75503
|
| undefined
|
|
75504
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
75505
|
+
akiles_metadata?:
|
|
75506
|
+
| {
|
|
75507
|
+
/** ID of the Akiles member PIN. */
|
|
75508
|
+
member_pin_id?: (string | undefined) | undefined
|
|
75509
|
+
}
|
|
75510
|
+
| undefined
|
|
74831
75511
|
is_managed: false
|
|
74832
75512
|
}
|
|
74833
75513
|
}
|
|
@@ -74966,6 +75646,7 @@ export type Routes = {
|
|
|
74966
75646
|
| 'salto_ks_tag'
|
|
74967
75647
|
| 'avigilon_alta_credential'
|
|
74968
75648
|
| 'kisi_credential'
|
|
75649
|
+
| 'akiles_credential'
|
|
74969
75650
|
)
|
|
74970
75651
|
| undefined
|
|
74971
75652
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -75090,6 +75771,13 @@ export type Routes = {
|
|
|
75090
75771
|
endpoint_id?: (string | undefined) | undefined
|
|
75091
75772
|
}
|
|
75092
75773
|
| undefined
|
|
75774
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
75775
|
+
akiles_metadata?:
|
|
75776
|
+
| {
|
|
75777
|
+
/** ID of the Akiles member PIN. */
|
|
75778
|
+
member_pin_id?: (string | undefined) | undefined
|
|
75779
|
+
}
|
|
75780
|
+
| undefined
|
|
75093
75781
|
/** Indicates whether Seam manages the credential. */
|
|
75094
75782
|
is_managed: true
|
|
75095
75783
|
}
|
|
@@ -76127,6 +76815,7 @@ export type Routes = {
|
|
|
76127
76815
|
| 'salto_ks_tag'
|
|
76128
76816
|
| 'avigilon_alta_credential'
|
|
76129
76817
|
| 'kisi_credential'
|
|
76818
|
+
| 'akiles_credential'
|
|
76130
76819
|
)
|
|
76131
76820
|
| undefined
|
|
76132
76821
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -76257,6 +76946,13 @@ export type Routes = {
|
|
|
76257
76946
|
endpoint_id?: (string | undefined) | undefined
|
|
76258
76947
|
}
|
|
76259
76948
|
| undefined
|
|
76949
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
76950
|
+
akiles_metadata?:
|
|
76951
|
+
| {
|
|
76952
|
+
/** ID of the Akiles member PIN. */
|
|
76953
|
+
member_pin_id?: (string | undefined) | undefined
|
|
76954
|
+
}
|
|
76955
|
+
| undefined
|
|
76260
76956
|
/** Indicates whether Seam manages the credential. */
|
|
76261
76957
|
is_managed: true
|
|
76262
76958
|
}
|
|
@@ -76309,6 +77005,7 @@ export type Routes = {
|
|
|
76309
77005
|
| 'salto_ks_tag'
|
|
76310
77006
|
| 'avigilon_alta_credential'
|
|
76311
77007
|
| 'kisi_credential'
|
|
77008
|
+
| 'akiles_credential'
|
|
76312
77009
|
)
|
|
76313
77010
|
| undefined
|
|
76314
77011
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -76439,6 +77136,13 @@ export type Routes = {
|
|
|
76439
77136
|
endpoint_id?: (string | undefined) | undefined
|
|
76440
77137
|
}
|
|
76441
77138
|
| undefined
|
|
77139
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
77140
|
+
akiles_metadata?:
|
|
77141
|
+
| {
|
|
77142
|
+
/** ID of the Akiles member PIN. */
|
|
77143
|
+
member_pin_id?: (string | undefined) | undefined
|
|
77144
|
+
}
|
|
77145
|
+
| undefined
|
|
76442
77146
|
is_managed: false
|
|
76443
77147
|
}
|
|
76444
77148
|
)
|
|
@@ -76566,6 +77270,7 @@ export type Routes = {
|
|
|
76566
77270
|
| 'salto_ks_tag'
|
|
76567
77271
|
| 'avigilon_alta_credential'
|
|
76568
77272
|
| 'kisi_credential'
|
|
77273
|
+
| 'akiles_credential'
|
|
76569
77274
|
)
|
|
76570
77275
|
| undefined
|
|
76571
77276
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -76696,6 +77401,13 @@ export type Routes = {
|
|
|
76696
77401
|
endpoint_id?: (string | undefined) | undefined
|
|
76697
77402
|
}
|
|
76698
77403
|
| undefined
|
|
77404
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
77405
|
+
akiles_metadata?:
|
|
77406
|
+
| {
|
|
77407
|
+
/** ID of the Akiles member PIN. */
|
|
77408
|
+
member_pin_id?: (string | undefined) | undefined
|
|
77409
|
+
}
|
|
77410
|
+
| undefined
|
|
76699
77411
|
/** Indicates whether Seam manages the credential. */
|
|
76700
77412
|
is_managed: true
|
|
76701
77413
|
}
|
|
@@ -76744,6 +77456,7 @@ export type Routes = {
|
|
|
76744
77456
|
| 'salto_ks_tag'
|
|
76745
77457
|
| 'avigilon_alta_credential'
|
|
76746
77458
|
| 'kisi_credential'
|
|
77459
|
+
| 'akiles_credential'
|
|
76747
77460
|
)
|
|
76748
77461
|
| undefined
|
|
76749
77462
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -76874,6 +77587,13 @@ export type Routes = {
|
|
|
76874
77587
|
endpoint_id?: (string | undefined) | undefined
|
|
76875
77588
|
}
|
|
76876
77589
|
| undefined
|
|
77590
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
77591
|
+
akiles_metadata?:
|
|
77592
|
+
| {
|
|
77593
|
+
/** ID of the Akiles member PIN. */
|
|
77594
|
+
member_pin_id?: (string | undefined) | undefined
|
|
77595
|
+
}
|
|
77596
|
+
| undefined
|
|
76877
77597
|
is_managed: false
|
|
76878
77598
|
}
|
|
76879
77599
|
}
|
|
@@ -77012,6 +77732,7 @@ export type Routes = {
|
|
|
77012
77732
|
| 'salto_ks_tag'
|
|
77013
77733
|
| 'avigilon_alta_credential'
|
|
77014
77734
|
| 'kisi_credential'
|
|
77735
|
+
| 'akiles_credential'
|
|
77015
77736
|
)
|
|
77016
77737
|
| undefined
|
|
77017
77738
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -77136,6 +77857,13 @@ export type Routes = {
|
|
|
77136
77857
|
endpoint_id?: (string | undefined) | undefined
|
|
77137
77858
|
}
|
|
77138
77859
|
| undefined
|
|
77860
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
77861
|
+
akiles_metadata?:
|
|
77862
|
+
| {
|
|
77863
|
+
/** ID of the Akiles member PIN. */
|
|
77864
|
+
member_pin_id?: (string | undefined) | undefined
|
|
77865
|
+
}
|
|
77866
|
+
| undefined
|
|
77139
77867
|
/** Indicates whether Seam manages the credential. */
|
|
77140
77868
|
is_managed: true
|
|
77141
77869
|
}
|
|
@@ -78171,6 +78899,7 @@ export type Routes = {
|
|
|
78171
78899
|
| 'salto_ks_tag'
|
|
78172
78900
|
| 'avigilon_alta_credential'
|
|
78173
78901
|
| 'kisi_credential'
|
|
78902
|
+
| 'akiles_credential'
|
|
78174
78903
|
)
|
|
78175
78904
|
| undefined
|
|
78176
78905
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -78301,6 +79030,13 @@ export type Routes = {
|
|
|
78301
79030
|
endpoint_id?: (string | undefined) | undefined
|
|
78302
79031
|
}
|
|
78303
79032
|
| undefined
|
|
79033
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
79034
|
+
akiles_metadata?:
|
|
79035
|
+
| {
|
|
79036
|
+
/** ID of the Akiles member PIN. */
|
|
79037
|
+
member_pin_id?: (string | undefined) | undefined
|
|
79038
|
+
}
|
|
79039
|
+
| undefined
|
|
78304
79040
|
/** Indicates whether Seam manages the credential. */
|
|
78305
79041
|
is_managed: true
|
|
78306
79042
|
}
|
|
@@ -78353,6 +79089,7 @@ export type Routes = {
|
|
|
78353
79089
|
| 'salto_ks_tag'
|
|
78354
79090
|
| 'avigilon_alta_credential'
|
|
78355
79091
|
| 'kisi_credential'
|
|
79092
|
+
| 'akiles_credential'
|
|
78356
79093
|
)
|
|
78357
79094
|
| undefined
|
|
78358
79095
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -78483,6 +79220,13 @@ export type Routes = {
|
|
|
78483
79220
|
endpoint_id?: (string | undefined) | undefined
|
|
78484
79221
|
}
|
|
78485
79222
|
| undefined
|
|
79223
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
79224
|
+
akiles_metadata?:
|
|
79225
|
+
| {
|
|
79226
|
+
/** ID of the Akiles member PIN. */
|
|
79227
|
+
member_pin_id?: (string | undefined) | undefined
|
|
79228
|
+
}
|
|
79229
|
+
| undefined
|
|
78486
79230
|
is_managed: false
|
|
78487
79231
|
}
|
|
78488
79232
|
)
|
|
@@ -78610,6 +79354,7 @@ export type Routes = {
|
|
|
78610
79354
|
| 'salto_ks_tag'
|
|
78611
79355
|
| 'avigilon_alta_credential'
|
|
78612
79356
|
| 'kisi_credential'
|
|
79357
|
+
| 'akiles_credential'
|
|
78613
79358
|
)
|
|
78614
79359
|
| undefined
|
|
78615
79360
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -78740,6 +79485,13 @@ export type Routes = {
|
|
|
78740
79485
|
endpoint_id?: (string | undefined) | undefined
|
|
78741
79486
|
}
|
|
78742
79487
|
| undefined
|
|
79488
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
79489
|
+
akiles_metadata?:
|
|
79490
|
+
| {
|
|
79491
|
+
/** ID of the Akiles member PIN. */
|
|
79492
|
+
member_pin_id?: (string | undefined) | undefined
|
|
79493
|
+
}
|
|
79494
|
+
| undefined
|
|
78743
79495
|
/** Indicates whether Seam manages the credential. */
|
|
78744
79496
|
is_managed: true
|
|
78745
79497
|
}
|
|
@@ -78788,6 +79540,7 @@ export type Routes = {
|
|
|
78788
79540
|
| 'salto_ks_tag'
|
|
78789
79541
|
| 'avigilon_alta_credential'
|
|
78790
79542
|
| 'kisi_credential'
|
|
79543
|
+
| 'akiles_credential'
|
|
78791
79544
|
)
|
|
78792
79545
|
| undefined
|
|
78793
79546
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -78918,6 +79671,13 @@ export type Routes = {
|
|
|
78918
79671
|
endpoint_id?: (string | undefined) | undefined
|
|
78919
79672
|
}
|
|
78920
79673
|
| undefined
|
|
79674
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
79675
|
+
akiles_metadata?:
|
|
79676
|
+
| {
|
|
79677
|
+
/** ID of the Akiles member PIN. */
|
|
79678
|
+
member_pin_id?: (string | undefined) | undefined
|
|
79679
|
+
}
|
|
79680
|
+
| undefined
|
|
78921
79681
|
is_managed: false
|
|
78922
79682
|
}
|
|
78923
79683
|
}
|
|
@@ -79056,6 +79816,7 @@ export type Routes = {
|
|
|
79056
79816
|
| 'salto_ks_tag'
|
|
79057
79817
|
| 'avigilon_alta_credential'
|
|
79058
79818
|
| 'kisi_credential'
|
|
79819
|
+
| 'akiles_credential'
|
|
79059
79820
|
)
|
|
79060
79821
|
| undefined
|
|
79061
79822
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -79180,6 +79941,13 @@ export type Routes = {
|
|
|
79180
79941
|
endpoint_id?: (string | undefined) | undefined
|
|
79181
79942
|
}
|
|
79182
79943
|
| undefined
|
|
79944
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
79945
|
+
akiles_metadata?:
|
|
79946
|
+
| {
|
|
79947
|
+
/** ID of the Akiles member PIN. */
|
|
79948
|
+
member_pin_id?: (string | undefined) | undefined
|
|
79949
|
+
}
|
|
79950
|
+
| undefined
|
|
79183
79951
|
/** Indicates whether Seam manages the credential. */
|
|
79184
79952
|
is_managed: true
|
|
79185
79953
|
}
|
|
@@ -80217,6 +80985,7 @@ export type Routes = {
|
|
|
80217
80985
|
| 'salto_ks_tag'
|
|
80218
80986
|
| 'avigilon_alta_credential'
|
|
80219
80987
|
| 'kisi_credential'
|
|
80988
|
+
| 'akiles_credential'
|
|
80220
80989
|
)
|
|
80221
80990
|
| undefined
|
|
80222
80991
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -80347,6 +81116,13 @@ export type Routes = {
|
|
|
80347
81116
|
endpoint_id?: (string | undefined) | undefined
|
|
80348
81117
|
}
|
|
80349
81118
|
| undefined
|
|
81119
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
81120
|
+
akiles_metadata?:
|
|
81121
|
+
| {
|
|
81122
|
+
/** ID of the Akiles member PIN. */
|
|
81123
|
+
member_pin_id?: (string | undefined) | undefined
|
|
81124
|
+
}
|
|
81125
|
+
| undefined
|
|
80350
81126
|
/** Indicates whether Seam manages the credential. */
|
|
80351
81127
|
is_managed: true
|
|
80352
81128
|
}
|
|
@@ -80399,6 +81175,7 @@ export type Routes = {
|
|
|
80399
81175
|
| 'salto_ks_tag'
|
|
80400
81176
|
| 'avigilon_alta_credential'
|
|
80401
81177
|
| 'kisi_credential'
|
|
81178
|
+
| 'akiles_credential'
|
|
80402
81179
|
)
|
|
80403
81180
|
| undefined
|
|
80404
81181
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -80529,6 +81306,13 @@ export type Routes = {
|
|
|
80529
81306
|
endpoint_id?: (string | undefined) | undefined
|
|
80530
81307
|
}
|
|
80531
81308
|
| undefined
|
|
81309
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
81310
|
+
akiles_metadata?:
|
|
81311
|
+
| {
|
|
81312
|
+
/** ID of the Akiles member PIN. */
|
|
81313
|
+
member_pin_id?: (string | undefined) | undefined
|
|
81314
|
+
}
|
|
81315
|
+
| undefined
|
|
80532
81316
|
is_managed: false
|
|
80533
81317
|
}
|
|
80534
81318
|
)
|
|
@@ -80656,6 +81440,7 @@ export type Routes = {
|
|
|
80656
81440
|
| 'salto_ks_tag'
|
|
80657
81441
|
| 'avigilon_alta_credential'
|
|
80658
81442
|
| 'kisi_credential'
|
|
81443
|
+
| 'akiles_credential'
|
|
80659
81444
|
)
|
|
80660
81445
|
| undefined
|
|
80661
81446
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -80786,6 +81571,13 @@ export type Routes = {
|
|
|
80786
81571
|
endpoint_id?: (string | undefined) | undefined
|
|
80787
81572
|
}
|
|
80788
81573
|
| undefined
|
|
81574
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
81575
|
+
akiles_metadata?:
|
|
81576
|
+
| {
|
|
81577
|
+
/** ID of the Akiles member PIN. */
|
|
81578
|
+
member_pin_id?: (string | undefined) | undefined
|
|
81579
|
+
}
|
|
81580
|
+
| undefined
|
|
80789
81581
|
/** Indicates whether Seam manages the credential. */
|
|
80790
81582
|
is_managed: true
|
|
80791
81583
|
}
|
|
@@ -80834,6 +81626,7 @@ export type Routes = {
|
|
|
80834
81626
|
| 'salto_ks_tag'
|
|
80835
81627
|
| 'avigilon_alta_credential'
|
|
80836
81628
|
| 'kisi_credential'
|
|
81629
|
+
| 'akiles_credential'
|
|
80837
81630
|
)
|
|
80838
81631
|
| undefined
|
|
80839
81632
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -80964,6 +81757,13 @@ export type Routes = {
|
|
|
80964
81757
|
endpoint_id?: (string | undefined) | undefined
|
|
80965
81758
|
}
|
|
80966
81759
|
| undefined
|
|
81760
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
81761
|
+
akiles_metadata?:
|
|
81762
|
+
| {
|
|
81763
|
+
/** ID of the Akiles member PIN. */
|
|
81764
|
+
member_pin_id?: (string | undefined) | undefined
|
|
81765
|
+
}
|
|
81766
|
+
| undefined
|
|
80967
81767
|
is_managed: false
|
|
80968
81768
|
}
|
|
80969
81769
|
}
|
|
@@ -81102,6 +81902,7 @@ export type Routes = {
|
|
|
81102
81902
|
| 'salto_ks_tag'
|
|
81103
81903
|
| 'avigilon_alta_credential'
|
|
81104
81904
|
| 'kisi_credential'
|
|
81905
|
+
| 'akiles_credential'
|
|
81105
81906
|
)
|
|
81106
81907
|
| undefined
|
|
81107
81908
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -81226,6 +82027,13 @@ export type Routes = {
|
|
|
81226
82027
|
endpoint_id?: (string | undefined) | undefined
|
|
81227
82028
|
}
|
|
81228
82029
|
| undefined
|
|
82030
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
82031
|
+
akiles_metadata?:
|
|
82032
|
+
| {
|
|
82033
|
+
/** ID of the Akiles member PIN. */
|
|
82034
|
+
member_pin_id?: (string | undefined) | undefined
|
|
82035
|
+
}
|
|
82036
|
+
| undefined
|
|
81229
82037
|
/** Indicates whether Seam manages the credential. */
|
|
81230
82038
|
is_managed: true
|
|
81231
82039
|
}
|
|
@@ -86104,6 +86912,7 @@ export type Routes = {
|
|
|
86104
86912
|
| 'salto_ks_tag'
|
|
86105
86913
|
| 'avigilon_alta_credential'
|
|
86106
86914
|
| 'kisi_credential'
|
|
86915
|
+
| 'akiles_credential'
|
|
86107
86916
|
)
|
|
86108
86917
|
| undefined
|
|
86109
86918
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -86234,6 +87043,13 @@ export type Routes = {
|
|
|
86234
87043
|
endpoint_id?: (string | undefined) | undefined
|
|
86235
87044
|
}
|
|
86236
87045
|
| undefined
|
|
87046
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87047
|
+
akiles_metadata?:
|
|
87048
|
+
| {
|
|
87049
|
+
/** ID of the Akiles member PIN. */
|
|
87050
|
+
member_pin_id?: (string | undefined) | undefined
|
|
87051
|
+
}
|
|
87052
|
+
| undefined
|
|
86237
87053
|
/** Indicates whether Seam manages the credential. */
|
|
86238
87054
|
is_managed: true
|
|
86239
87055
|
}
|
|
@@ -86286,6 +87102,7 @@ export type Routes = {
|
|
|
86286
87102
|
| 'salto_ks_tag'
|
|
86287
87103
|
| 'avigilon_alta_credential'
|
|
86288
87104
|
| 'kisi_credential'
|
|
87105
|
+
| 'akiles_credential'
|
|
86289
87106
|
)
|
|
86290
87107
|
| undefined
|
|
86291
87108
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -86416,6 +87233,13 @@ export type Routes = {
|
|
|
86416
87233
|
endpoint_id?: (string | undefined) | undefined
|
|
86417
87234
|
}
|
|
86418
87235
|
| undefined
|
|
87236
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87237
|
+
akiles_metadata?:
|
|
87238
|
+
| {
|
|
87239
|
+
/** ID of the Akiles member PIN. */
|
|
87240
|
+
member_pin_id?: (string | undefined) | undefined
|
|
87241
|
+
}
|
|
87242
|
+
| undefined
|
|
86419
87243
|
is_managed: false
|
|
86420
87244
|
}
|
|
86421
87245
|
)
|
|
@@ -86543,6 +87367,7 @@ export type Routes = {
|
|
|
86543
87367
|
| 'salto_ks_tag'
|
|
86544
87368
|
| 'avigilon_alta_credential'
|
|
86545
87369
|
| 'kisi_credential'
|
|
87370
|
+
| 'akiles_credential'
|
|
86546
87371
|
)
|
|
86547
87372
|
| undefined
|
|
86548
87373
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -86673,6 +87498,13 @@ export type Routes = {
|
|
|
86673
87498
|
endpoint_id?: (string | undefined) | undefined
|
|
86674
87499
|
}
|
|
86675
87500
|
| undefined
|
|
87501
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87502
|
+
akiles_metadata?:
|
|
87503
|
+
| {
|
|
87504
|
+
/** ID of the Akiles member PIN. */
|
|
87505
|
+
member_pin_id?: (string | undefined) | undefined
|
|
87506
|
+
}
|
|
87507
|
+
| undefined
|
|
86676
87508
|
/** Indicates whether Seam manages the credential. */
|
|
86677
87509
|
is_managed: true
|
|
86678
87510
|
}
|
|
@@ -86721,6 +87553,7 @@ export type Routes = {
|
|
|
86721
87553
|
| 'salto_ks_tag'
|
|
86722
87554
|
| 'avigilon_alta_credential'
|
|
86723
87555
|
| 'kisi_credential'
|
|
87556
|
+
| 'akiles_credential'
|
|
86724
87557
|
)
|
|
86725
87558
|
| undefined
|
|
86726
87559
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -86851,6 +87684,13 @@ export type Routes = {
|
|
|
86851
87684
|
endpoint_id?: (string | undefined) | undefined
|
|
86852
87685
|
}
|
|
86853
87686
|
| undefined
|
|
87687
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87688
|
+
akiles_metadata?:
|
|
87689
|
+
| {
|
|
87690
|
+
/** ID of the Akiles member PIN. */
|
|
87691
|
+
member_pin_id?: (string | undefined) | undefined
|
|
87692
|
+
}
|
|
87693
|
+
| undefined
|
|
86854
87694
|
is_managed: false
|
|
86855
87695
|
}
|
|
86856
87696
|
}
|
|
@@ -86989,6 +87829,7 @@ export type Routes = {
|
|
|
86989
87829
|
| 'salto_ks_tag'
|
|
86990
87830
|
| 'avigilon_alta_credential'
|
|
86991
87831
|
| 'kisi_credential'
|
|
87832
|
+
| 'akiles_credential'
|
|
86992
87833
|
)
|
|
86993
87834
|
| undefined
|
|
86994
87835
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -87113,6 +87954,13 @@ export type Routes = {
|
|
|
87113
87954
|
endpoint_id?: (string | undefined) | undefined
|
|
87114
87955
|
}
|
|
87115
87956
|
| undefined
|
|
87957
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
87958
|
+
akiles_metadata?:
|
|
87959
|
+
| {
|
|
87960
|
+
/** ID of the Akiles member PIN. */
|
|
87961
|
+
member_pin_id?: (string | undefined) | undefined
|
|
87962
|
+
}
|
|
87963
|
+
| undefined
|
|
87116
87964
|
/** Indicates whether Seam manages the credential. */
|
|
87117
87965
|
is_managed: true
|
|
87118
87966
|
}
|
|
@@ -88169,6 +89017,7 @@ export type Routes = {
|
|
|
88169
89017
|
| 'salto_ks_tag'
|
|
88170
89018
|
| 'avigilon_alta_credential'
|
|
88171
89019
|
| 'kisi_credential'
|
|
89020
|
+
| 'akiles_credential'
|
|
88172
89021
|
)
|
|
88173
89022
|
| undefined
|
|
88174
89023
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -88299,6 +89148,13 @@ export type Routes = {
|
|
|
88299
89148
|
endpoint_id?: (string | undefined) | undefined
|
|
88300
89149
|
}
|
|
88301
89150
|
| undefined
|
|
89151
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89152
|
+
akiles_metadata?:
|
|
89153
|
+
| {
|
|
89154
|
+
/** ID of the Akiles member PIN. */
|
|
89155
|
+
member_pin_id?: (string | undefined) | undefined
|
|
89156
|
+
}
|
|
89157
|
+
| undefined
|
|
88302
89158
|
/** Indicates whether Seam manages the credential. */
|
|
88303
89159
|
is_managed: true
|
|
88304
89160
|
}
|
|
@@ -88351,6 +89207,7 @@ export type Routes = {
|
|
|
88351
89207
|
| 'salto_ks_tag'
|
|
88352
89208
|
| 'avigilon_alta_credential'
|
|
88353
89209
|
| 'kisi_credential'
|
|
89210
|
+
| 'akiles_credential'
|
|
88354
89211
|
)
|
|
88355
89212
|
| undefined
|
|
88356
89213
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -88481,6 +89338,13 @@ export type Routes = {
|
|
|
88481
89338
|
endpoint_id?: (string | undefined) | undefined
|
|
88482
89339
|
}
|
|
88483
89340
|
| undefined
|
|
89341
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89342
|
+
akiles_metadata?:
|
|
89343
|
+
| {
|
|
89344
|
+
/** ID of the Akiles member PIN. */
|
|
89345
|
+
member_pin_id?: (string | undefined) | undefined
|
|
89346
|
+
}
|
|
89347
|
+
| undefined
|
|
88484
89348
|
is_managed: false
|
|
88485
89349
|
}
|
|
88486
89350
|
)
|
|
@@ -88608,6 +89472,7 @@ export type Routes = {
|
|
|
88608
89472
|
| 'salto_ks_tag'
|
|
88609
89473
|
| 'avigilon_alta_credential'
|
|
88610
89474
|
| 'kisi_credential'
|
|
89475
|
+
| 'akiles_credential'
|
|
88611
89476
|
)
|
|
88612
89477
|
| undefined
|
|
88613
89478
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -88738,6 +89603,13 @@ export type Routes = {
|
|
|
88738
89603
|
endpoint_id?: (string | undefined) | undefined
|
|
88739
89604
|
}
|
|
88740
89605
|
| undefined
|
|
89606
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89607
|
+
akiles_metadata?:
|
|
89608
|
+
| {
|
|
89609
|
+
/** ID of the Akiles member PIN. */
|
|
89610
|
+
member_pin_id?: (string | undefined) | undefined
|
|
89611
|
+
}
|
|
89612
|
+
| undefined
|
|
88741
89613
|
/** Indicates whether Seam manages the credential. */
|
|
88742
89614
|
is_managed: true
|
|
88743
89615
|
}
|
|
@@ -88786,6 +89658,7 @@ export type Routes = {
|
|
|
88786
89658
|
| 'salto_ks_tag'
|
|
88787
89659
|
| 'avigilon_alta_credential'
|
|
88788
89660
|
| 'kisi_credential'
|
|
89661
|
+
| 'akiles_credential'
|
|
88789
89662
|
)
|
|
88790
89663
|
| undefined
|
|
88791
89664
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -88916,6 +89789,13 @@ export type Routes = {
|
|
|
88916
89789
|
endpoint_id?: (string | undefined) | undefined
|
|
88917
89790
|
}
|
|
88918
89791
|
| undefined
|
|
89792
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
89793
|
+
akiles_metadata?:
|
|
89794
|
+
| {
|
|
89795
|
+
/** ID of the Akiles member PIN. */
|
|
89796
|
+
member_pin_id?: (string | undefined) | undefined
|
|
89797
|
+
}
|
|
89798
|
+
| undefined
|
|
88919
89799
|
is_managed: false
|
|
88920
89800
|
}
|
|
88921
89801
|
}
|
|
@@ -89054,6 +89934,7 @@ export type Routes = {
|
|
|
89054
89934
|
| 'salto_ks_tag'
|
|
89055
89935
|
| 'avigilon_alta_credential'
|
|
89056
89936
|
| 'kisi_credential'
|
|
89937
|
+
| 'akiles_credential'
|
|
89057
89938
|
)
|
|
89058
89939
|
| undefined
|
|
89059
89940
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -89178,6 +90059,13 @@ export type Routes = {
|
|
|
89178
90059
|
endpoint_id?: (string | undefined) | undefined
|
|
89179
90060
|
}
|
|
89180
90061
|
| undefined
|
|
90062
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
90063
|
+
akiles_metadata?:
|
|
90064
|
+
| {
|
|
90065
|
+
/** ID of the Akiles member PIN. */
|
|
90066
|
+
member_pin_id?: (string | undefined) | undefined
|
|
90067
|
+
}
|
|
90068
|
+
| undefined
|
|
89181
90069
|
/** Indicates whether Seam manages the credential. */
|
|
89182
90070
|
is_managed: true
|
|
89183
90071
|
}
|
|
@@ -90290,6 +91178,7 @@ export type Routes = {
|
|
|
90290
91178
|
| 'salto_ks_tag'
|
|
90291
91179
|
| 'avigilon_alta_credential'
|
|
90292
91180
|
| 'kisi_credential'
|
|
91181
|
+
| 'akiles_credential'
|
|
90293
91182
|
)
|
|
90294
91183
|
| undefined
|
|
90295
91184
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -90420,6 +91309,13 @@ export type Routes = {
|
|
|
90420
91309
|
endpoint_id?: (string | undefined) | undefined
|
|
90421
91310
|
}
|
|
90422
91311
|
| undefined
|
|
91312
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
91313
|
+
akiles_metadata?:
|
|
91314
|
+
| {
|
|
91315
|
+
/** ID of the Akiles member PIN. */
|
|
91316
|
+
member_pin_id?: (string | undefined) | undefined
|
|
91317
|
+
}
|
|
91318
|
+
| undefined
|
|
90423
91319
|
/** Indicates whether Seam manages the credential. */
|
|
90424
91320
|
is_managed: true
|
|
90425
91321
|
}
|
|
@@ -90472,6 +91368,7 @@ export type Routes = {
|
|
|
90472
91368
|
| 'salto_ks_tag'
|
|
90473
91369
|
| 'avigilon_alta_credential'
|
|
90474
91370
|
| 'kisi_credential'
|
|
91371
|
+
| 'akiles_credential'
|
|
90475
91372
|
)
|
|
90476
91373
|
| undefined
|
|
90477
91374
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -90602,6 +91499,13 @@ export type Routes = {
|
|
|
90602
91499
|
endpoint_id?: (string | undefined) | undefined
|
|
90603
91500
|
}
|
|
90604
91501
|
| undefined
|
|
91502
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
91503
|
+
akiles_metadata?:
|
|
91504
|
+
| {
|
|
91505
|
+
/** ID of the Akiles member PIN. */
|
|
91506
|
+
member_pin_id?: (string | undefined) | undefined
|
|
91507
|
+
}
|
|
91508
|
+
| undefined
|
|
90605
91509
|
is_managed: false
|
|
90606
91510
|
}
|
|
90607
91511
|
)
|
|
@@ -90729,6 +91633,7 @@ export type Routes = {
|
|
|
90729
91633
|
| 'salto_ks_tag'
|
|
90730
91634
|
| 'avigilon_alta_credential'
|
|
90731
91635
|
| 'kisi_credential'
|
|
91636
|
+
| 'akiles_credential'
|
|
90732
91637
|
)
|
|
90733
91638
|
| undefined
|
|
90734
91639
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -90859,6 +91764,13 @@ export type Routes = {
|
|
|
90859
91764
|
endpoint_id?: (string | undefined) | undefined
|
|
90860
91765
|
}
|
|
90861
91766
|
| undefined
|
|
91767
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
91768
|
+
akiles_metadata?:
|
|
91769
|
+
| {
|
|
91770
|
+
/** ID of the Akiles member PIN. */
|
|
91771
|
+
member_pin_id?: (string | undefined) | undefined
|
|
91772
|
+
}
|
|
91773
|
+
| undefined
|
|
90862
91774
|
/** Indicates whether Seam manages the credential. */
|
|
90863
91775
|
is_managed: true
|
|
90864
91776
|
}
|
|
@@ -90907,6 +91819,7 @@ export type Routes = {
|
|
|
90907
91819
|
| 'salto_ks_tag'
|
|
90908
91820
|
| 'avigilon_alta_credential'
|
|
90909
91821
|
| 'kisi_credential'
|
|
91822
|
+
| 'akiles_credential'
|
|
90910
91823
|
)
|
|
90911
91824
|
| undefined
|
|
90912
91825
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -91037,6 +91950,13 @@ export type Routes = {
|
|
|
91037
91950
|
endpoint_id?: (string | undefined) | undefined
|
|
91038
91951
|
}
|
|
91039
91952
|
| undefined
|
|
91953
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
91954
|
+
akiles_metadata?:
|
|
91955
|
+
| {
|
|
91956
|
+
/** ID of the Akiles member PIN. */
|
|
91957
|
+
member_pin_id?: (string | undefined) | undefined
|
|
91958
|
+
}
|
|
91959
|
+
| undefined
|
|
91040
91960
|
is_managed: false
|
|
91041
91961
|
}
|
|
91042
91962
|
}
|
|
@@ -91175,6 +92095,7 @@ export type Routes = {
|
|
|
91175
92095
|
| 'salto_ks_tag'
|
|
91176
92096
|
| 'avigilon_alta_credential'
|
|
91177
92097
|
| 'kisi_credential'
|
|
92098
|
+
| 'akiles_credential'
|
|
91178
92099
|
)
|
|
91179
92100
|
| undefined
|
|
91180
92101
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -91299,6 +92220,13 @@ export type Routes = {
|
|
|
91299
92220
|
endpoint_id?: (string | undefined) | undefined
|
|
91300
92221
|
}
|
|
91301
92222
|
| undefined
|
|
92223
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
92224
|
+
akiles_metadata?:
|
|
92225
|
+
| {
|
|
92226
|
+
/** ID of the Akiles member PIN. */
|
|
92227
|
+
member_pin_id?: (string | undefined) | undefined
|
|
92228
|
+
}
|
|
92229
|
+
| undefined
|
|
91302
92230
|
/** Indicates whether Seam manages the credential. */
|
|
91303
92231
|
is_managed: true
|
|
91304
92232
|
}
|
|
@@ -94325,6 +95253,7 @@ export type Routes = {
|
|
|
94325
95253
|
| 'salto_ks_tag'
|
|
94326
95254
|
| 'avigilon_alta_credential'
|
|
94327
95255
|
| 'kisi_credential'
|
|
95256
|
+
| 'akiles_credential'
|
|
94328
95257
|
)
|
|
94329
95258
|
| undefined
|
|
94330
95259
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -94455,6 +95384,13 @@ export type Routes = {
|
|
|
94455
95384
|
endpoint_id?: (string | undefined) | undefined
|
|
94456
95385
|
}
|
|
94457
95386
|
| undefined
|
|
95387
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95388
|
+
akiles_metadata?:
|
|
95389
|
+
| {
|
|
95390
|
+
/** ID of the Akiles member PIN. */
|
|
95391
|
+
member_pin_id?: (string | undefined) | undefined
|
|
95392
|
+
}
|
|
95393
|
+
| undefined
|
|
94458
95394
|
/** Indicates whether Seam manages the credential. */
|
|
94459
95395
|
is_managed: true
|
|
94460
95396
|
}
|
|
@@ -94507,6 +95443,7 @@ export type Routes = {
|
|
|
94507
95443
|
| 'salto_ks_tag'
|
|
94508
95444
|
| 'avigilon_alta_credential'
|
|
94509
95445
|
| 'kisi_credential'
|
|
95446
|
+
| 'akiles_credential'
|
|
94510
95447
|
)
|
|
94511
95448
|
| undefined
|
|
94512
95449
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -94637,6 +95574,13 @@ export type Routes = {
|
|
|
94637
95574
|
endpoint_id?: (string | undefined) | undefined
|
|
94638
95575
|
}
|
|
94639
95576
|
| undefined
|
|
95577
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95578
|
+
akiles_metadata?:
|
|
95579
|
+
| {
|
|
95580
|
+
/** ID of the Akiles member PIN. */
|
|
95581
|
+
member_pin_id?: (string | undefined) | undefined
|
|
95582
|
+
}
|
|
95583
|
+
| undefined
|
|
94640
95584
|
is_managed: false
|
|
94641
95585
|
}
|
|
94642
95586
|
)
|
|
@@ -94764,6 +95708,7 @@ export type Routes = {
|
|
|
94764
95708
|
| 'salto_ks_tag'
|
|
94765
95709
|
| 'avigilon_alta_credential'
|
|
94766
95710
|
| 'kisi_credential'
|
|
95711
|
+
| 'akiles_credential'
|
|
94767
95712
|
)
|
|
94768
95713
|
| undefined
|
|
94769
95714
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -94894,6 +95839,13 @@ export type Routes = {
|
|
|
94894
95839
|
endpoint_id?: (string | undefined) | undefined
|
|
94895
95840
|
}
|
|
94896
95841
|
| undefined
|
|
95842
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
95843
|
+
akiles_metadata?:
|
|
95844
|
+
| {
|
|
95845
|
+
/** ID of the Akiles member PIN. */
|
|
95846
|
+
member_pin_id?: (string | undefined) | undefined
|
|
95847
|
+
}
|
|
95848
|
+
| undefined
|
|
94897
95849
|
/** Indicates whether Seam manages the credential. */
|
|
94898
95850
|
is_managed: true
|
|
94899
95851
|
}
|
|
@@ -94942,6 +95894,7 @@ export type Routes = {
|
|
|
94942
95894
|
| 'salto_ks_tag'
|
|
94943
95895
|
| 'avigilon_alta_credential'
|
|
94944
95896
|
| 'kisi_credential'
|
|
95897
|
+
| 'akiles_credential'
|
|
94945
95898
|
)
|
|
94946
95899
|
| undefined
|
|
94947
95900
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -95072,6 +96025,13 @@ export type Routes = {
|
|
|
95072
96025
|
endpoint_id?: (string | undefined) | undefined
|
|
95073
96026
|
}
|
|
95074
96027
|
| undefined
|
|
96028
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
96029
|
+
akiles_metadata?:
|
|
96030
|
+
| {
|
|
96031
|
+
/** ID of the Akiles member PIN. */
|
|
96032
|
+
member_pin_id?: (string | undefined) | undefined
|
|
96033
|
+
}
|
|
96034
|
+
| undefined
|
|
95075
96035
|
is_managed: false
|
|
95076
96036
|
}
|
|
95077
96037
|
}
|
|
@@ -95210,6 +96170,7 @@ export type Routes = {
|
|
|
95210
96170
|
| 'salto_ks_tag'
|
|
95211
96171
|
| 'avigilon_alta_credential'
|
|
95212
96172
|
| 'kisi_credential'
|
|
96173
|
+
| 'akiles_credential'
|
|
95213
96174
|
)
|
|
95214
96175
|
| undefined
|
|
95215
96176
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -95334,6 +96295,13 @@ export type Routes = {
|
|
|
95334
96295
|
endpoint_id?: (string | undefined) | undefined
|
|
95335
96296
|
}
|
|
95336
96297
|
| undefined
|
|
96298
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
96299
|
+
akiles_metadata?:
|
|
96300
|
+
| {
|
|
96301
|
+
/** ID of the Akiles member PIN. */
|
|
96302
|
+
member_pin_id?: (string | undefined) | undefined
|
|
96303
|
+
}
|
|
96304
|
+
| undefined
|
|
95337
96305
|
/** Indicates whether Seam manages the credential. */
|
|
95338
96306
|
is_managed: true
|
|
95339
96307
|
}
|
|
@@ -102659,6 +103627,7 @@ export type Routes = {
|
|
|
102659
103627
|
| 'salto_ks_tag'
|
|
102660
103628
|
| 'avigilon_alta_credential'
|
|
102661
103629
|
| 'kisi_credential'
|
|
103630
|
+
| 'akiles_credential'
|
|
102662
103631
|
)
|
|
102663
103632
|
| undefined
|
|
102664
103633
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -102779,6 +103748,13 @@ export type Routes = {
|
|
|
102779
103748
|
endpoint_id?: (string | undefined) | undefined
|
|
102780
103749
|
}
|
|
102781
103750
|
| undefined
|
|
103751
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103752
|
+
akiles_metadata?:
|
|
103753
|
+
| {
|
|
103754
|
+
/** ID of the Akiles member PIN. */
|
|
103755
|
+
member_pin_id?: (string | undefined) | undefined
|
|
103756
|
+
}
|
|
103757
|
+
| undefined
|
|
102782
103758
|
/** Indicates whether Seam manages the credential. */
|
|
102783
103759
|
is_managed: true
|
|
102784
103760
|
}[]
|
|
@@ -102867,6 +103843,7 @@ export type Routes = {
|
|
|
102867
103843
|
| 'salto_ks_tag'
|
|
102868
103844
|
| 'avigilon_alta_credential'
|
|
102869
103845
|
| 'kisi_credential'
|
|
103846
|
+
| 'akiles_credential'
|
|
102870
103847
|
)
|
|
102871
103848
|
| undefined
|
|
102872
103849
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -102989,6 +103966,13 @@ export type Routes = {
|
|
|
102989
103966
|
endpoint_id?: (string | undefined) | undefined
|
|
102990
103967
|
}
|
|
102991
103968
|
| undefined
|
|
103969
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
103970
|
+
akiles_metadata?:
|
|
103971
|
+
| {
|
|
103972
|
+
/** ID of the Akiles member PIN. */
|
|
103973
|
+
member_pin_id?: (string | undefined) | undefined
|
|
103974
|
+
}
|
|
103975
|
+
| undefined
|
|
102992
103976
|
/** Indicates whether Seam manages the credential. */
|
|
102993
103977
|
is_managed: true
|
|
102994
103978
|
acs_credential_id: string | null
|
|
@@ -106894,6 +107878,7 @@ export type Routes = {
|
|
|
106894
107878
|
| 'salto_ks_tag'
|
|
106895
107879
|
| 'avigilon_alta_credential'
|
|
106896
107880
|
| 'kisi_credential'
|
|
107881
|
+
| 'akiles_credential'
|
|
106897
107882
|
)
|
|
106898
107883
|
| undefined
|
|
106899
107884
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -107024,6 +108009,13 @@ export type Routes = {
|
|
|
107024
108009
|
endpoint_id?: (string | undefined) | undefined
|
|
107025
108010
|
}
|
|
107026
108011
|
| undefined
|
|
108012
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108013
|
+
akiles_metadata?:
|
|
108014
|
+
| {
|
|
108015
|
+
/** ID of the Akiles member PIN. */
|
|
108016
|
+
member_pin_id?: (string | undefined) | undefined
|
|
108017
|
+
}
|
|
108018
|
+
| undefined
|
|
107027
108019
|
/** Indicates whether Seam manages the credential. */
|
|
107028
108020
|
is_managed: true
|
|
107029
108021
|
}
|
|
@@ -107076,6 +108068,7 @@ export type Routes = {
|
|
|
107076
108068
|
| 'salto_ks_tag'
|
|
107077
108069
|
| 'avigilon_alta_credential'
|
|
107078
108070
|
| 'kisi_credential'
|
|
108071
|
+
| 'akiles_credential'
|
|
107079
108072
|
)
|
|
107080
108073
|
| undefined
|
|
107081
108074
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -107206,6 +108199,13 @@ export type Routes = {
|
|
|
107206
108199
|
endpoint_id?: (string | undefined) | undefined
|
|
107207
108200
|
}
|
|
107208
108201
|
| undefined
|
|
108202
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108203
|
+
akiles_metadata?:
|
|
108204
|
+
| {
|
|
108205
|
+
/** ID of the Akiles member PIN. */
|
|
108206
|
+
member_pin_id?: (string | undefined) | undefined
|
|
108207
|
+
}
|
|
108208
|
+
| undefined
|
|
107209
108209
|
is_managed: false
|
|
107210
108210
|
}
|
|
107211
108211
|
)
|
|
@@ -107333,6 +108333,7 @@ export type Routes = {
|
|
|
107333
108333
|
| 'salto_ks_tag'
|
|
107334
108334
|
| 'avigilon_alta_credential'
|
|
107335
108335
|
| 'kisi_credential'
|
|
108336
|
+
| 'akiles_credential'
|
|
107336
108337
|
)
|
|
107337
108338
|
| undefined
|
|
107338
108339
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -107463,6 +108464,13 @@ export type Routes = {
|
|
|
107463
108464
|
endpoint_id?: (string | undefined) | undefined
|
|
107464
108465
|
}
|
|
107465
108466
|
| undefined
|
|
108467
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108468
|
+
akiles_metadata?:
|
|
108469
|
+
| {
|
|
108470
|
+
/** ID of the Akiles member PIN. */
|
|
108471
|
+
member_pin_id?: (string | undefined) | undefined
|
|
108472
|
+
}
|
|
108473
|
+
| undefined
|
|
107466
108474
|
/** Indicates whether Seam manages the credential. */
|
|
107467
108475
|
is_managed: true
|
|
107468
108476
|
}
|
|
@@ -107511,6 +108519,7 @@ export type Routes = {
|
|
|
107511
108519
|
| 'salto_ks_tag'
|
|
107512
108520
|
| 'avigilon_alta_credential'
|
|
107513
108521
|
| 'kisi_credential'
|
|
108522
|
+
| 'akiles_credential'
|
|
107514
108523
|
)
|
|
107515
108524
|
| undefined
|
|
107516
108525
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -107641,6 +108650,13 @@ export type Routes = {
|
|
|
107641
108650
|
endpoint_id?: (string | undefined) | undefined
|
|
107642
108651
|
}
|
|
107643
108652
|
| undefined
|
|
108653
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108654
|
+
akiles_metadata?:
|
|
108655
|
+
| {
|
|
108656
|
+
/** ID of the Akiles member PIN. */
|
|
108657
|
+
member_pin_id?: (string | undefined) | undefined
|
|
108658
|
+
}
|
|
108659
|
+
| undefined
|
|
107644
108660
|
is_managed: false
|
|
107645
108661
|
}
|
|
107646
108662
|
}
|
|
@@ -107779,6 +108795,7 @@ export type Routes = {
|
|
|
107779
108795
|
| 'salto_ks_tag'
|
|
107780
108796
|
| 'avigilon_alta_credential'
|
|
107781
108797
|
| 'kisi_credential'
|
|
108798
|
+
| 'akiles_credential'
|
|
107782
108799
|
)
|
|
107783
108800
|
| undefined
|
|
107784
108801
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -107903,6 +108920,13 @@ export type Routes = {
|
|
|
107903
108920
|
endpoint_id?: (string | undefined) | undefined
|
|
107904
108921
|
}
|
|
107905
108922
|
| undefined
|
|
108923
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
108924
|
+
akiles_metadata?:
|
|
108925
|
+
| {
|
|
108926
|
+
/** ID of the Akiles member PIN. */
|
|
108927
|
+
member_pin_id?: (string | undefined) | undefined
|
|
108928
|
+
}
|
|
108929
|
+
| undefined
|
|
107906
108930
|
/** Indicates whether Seam manages the credential. */
|
|
107907
108931
|
is_managed: true
|
|
107908
108932
|
}
|
|
@@ -108944,6 +109968,7 @@ export type Routes = {
|
|
|
108944
109968
|
| 'salto_ks_tag'
|
|
108945
109969
|
| 'avigilon_alta_credential'
|
|
108946
109970
|
| 'kisi_credential'
|
|
109971
|
+
| 'akiles_credential'
|
|
108947
109972
|
)
|
|
108948
109973
|
| undefined
|
|
108949
109974
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -109074,6 +110099,13 @@ export type Routes = {
|
|
|
109074
110099
|
endpoint_id?: (string | undefined) | undefined
|
|
109075
110100
|
}
|
|
109076
110101
|
| undefined
|
|
110102
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110103
|
+
akiles_metadata?:
|
|
110104
|
+
| {
|
|
110105
|
+
/** ID of the Akiles member PIN. */
|
|
110106
|
+
member_pin_id?: (string | undefined) | undefined
|
|
110107
|
+
}
|
|
110108
|
+
| undefined
|
|
109077
110109
|
/** Indicates whether Seam manages the credential. */
|
|
109078
110110
|
is_managed: true
|
|
109079
110111
|
}
|
|
@@ -109126,6 +110158,7 @@ export type Routes = {
|
|
|
109126
110158
|
| 'salto_ks_tag'
|
|
109127
110159
|
| 'avigilon_alta_credential'
|
|
109128
110160
|
| 'kisi_credential'
|
|
110161
|
+
| 'akiles_credential'
|
|
109129
110162
|
)
|
|
109130
110163
|
| undefined
|
|
109131
110164
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -109256,6 +110289,13 @@ export type Routes = {
|
|
|
109256
110289
|
endpoint_id?: (string | undefined) | undefined
|
|
109257
110290
|
}
|
|
109258
110291
|
| undefined
|
|
110292
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110293
|
+
akiles_metadata?:
|
|
110294
|
+
| {
|
|
110295
|
+
/** ID of the Akiles member PIN. */
|
|
110296
|
+
member_pin_id?: (string | undefined) | undefined
|
|
110297
|
+
}
|
|
110298
|
+
| undefined
|
|
109259
110299
|
is_managed: false
|
|
109260
110300
|
}
|
|
109261
110301
|
)
|
|
@@ -109383,6 +110423,7 @@ export type Routes = {
|
|
|
109383
110423
|
| 'salto_ks_tag'
|
|
109384
110424
|
| 'avigilon_alta_credential'
|
|
109385
110425
|
| 'kisi_credential'
|
|
110426
|
+
| 'akiles_credential'
|
|
109386
110427
|
)
|
|
109387
110428
|
| undefined
|
|
109388
110429
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -109513,6 +110554,13 @@ export type Routes = {
|
|
|
109513
110554
|
endpoint_id?: (string | undefined) | undefined
|
|
109514
110555
|
}
|
|
109515
110556
|
| undefined
|
|
110557
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110558
|
+
akiles_metadata?:
|
|
110559
|
+
| {
|
|
110560
|
+
/** ID of the Akiles member PIN. */
|
|
110561
|
+
member_pin_id?: (string | undefined) | undefined
|
|
110562
|
+
}
|
|
110563
|
+
| undefined
|
|
109516
110564
|
/** Indicates whether Seam manages the credential. */
|
|
109517
110565
|
is_managed: true
|
|
109518
110566
|
}
|
|
@@ -109561,6 +110609,7 @@ export type Routes = {
|
|
|
109561
110609
|
| 'salto_ks_tag'
|
|
109562
110610
|
| 'avigilon_alta_credential'
|
|
109563
110611
|
| 'kisi_credential'
|
|
110612
|
+
| 'akiles_credential'
|
|
109564
110613
|
)
|
|
109565
110614
|
| undefined
|
|
109566
110615
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -109691,6 +110740,13 @@ export type Routes = {
|
|
|
109691
110740
|
endpoint_id?: (string | undefined) | undefined
|
|
109692
110741
|
}
|
|
109693
110742
|
| undefined
|
|
110743
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
110744
|
+
akiles_metadata?:
|
|
110745
|
+
| {
|
|
110746
|
+
/** ID of the Akiles member PIN. */
|
|
110747
|
+
member_pin_id?: (string | undefined) | undefined
|
|
110748
|
+
}
|
|
110749
|
+
| undefined
|
|
109694
110750
|
is_managed: false
|
|
109695
110751
|
}
|
|
109696
110752
|
}
|
|
@@ -109829,6 +110885,7 @@ export type Routes = {
|
|
|
109829
110885
|
| 'salto_ks_tag'
|
|
109830
110886
|
| 'avigilon_alta_credential'
|
|
109831
110887
|
| 'kisi_credential'
|
|
110888
|
+
| 'akiles_credential'
|
|
109832
110889
|
)
|
|
109833
110890
|
| undefined
|
|
109834
110891
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -109953,6 +111010,13 @@ export type Routes = {
|
|
|
109953
111010
|
endpoint_id?: (string | undefined) | undefined
|
|
109954
111011
|
}
|
|
109955
111012
|
| undefined
|
|
111013
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
111014
|
+
akiles_metadata?:
|
|
111015
|
+
| {
|
|
111016
|
+
/** ID of the Akiles member PIN. */
|
|
111017
|
+
member_pin_id?: (string | undefined) | undefined
|
|
111018
|
+
}
|
|
111019
|
+
| undefined
|
|
109956
111020
|
/** Indicates whether Seam manages the credential. */
|
|
109957
111021
|
is_managed: true
|
|
109958
111022
|
}
|
|
@@ -111106,6 +112170,7 @@ export type Routes = {
|
|
|
111106
112170
|
| 'salto_ks_tag'
|
|
111107
112171
|
| 'avigilon_alta_credential'
|
|
111108
112172
|
| 'kisi_credential'
|
|
112173
|
+
| 'akiles_credential'
|
|
111109
112174
|
)
|
|
111110
112175
|
| undefined
|
|
111111
112176
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -111236,6 +112301,13 @@ export type Routes = {
|
|
|
111236
112301
|
endpoint_id?: (string | undefined) | undefined
|
|
111237
112302
|
}
|
|
111238
112303
|
| undefined
|
|
112304
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
112305
|
+
akiles_metadata?:
|
|
112306
|
+
| {
|
|
112307
|
+
/** ID of the Akiles member PIN. */
|
|
112308
|
+
member_pin_id?: (string | undefined) | undefined
|
|
112309
|
+
}
|
|
112310
|
+
| undefined
|
|
111239
112311
|
/** Indicates whether Seam manages the credential. */
|
|
111240
112312
|
is_managed: true
|
|
111241
112313
|
}
|
|
@@ -111288,6 +112360,7 @@ export type Routes = {
|
|
|
111288
112360
|
| 'salto_ks_tag'
|
|
111289
112361
|
| 'avigilon_alta_credential'
|
|
111290
112362
|
| 'kisi_credential'
|
|
112363
|
+
| 'akiles_credential'
|
|
111291
112364
|
)
|
|
111292
112365
|
| undefined
|
|
111293
112366
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -111418,6 +112491,13 @@ export type Routes = {
|
|
|
111418
112491
|
endpoint_id?: (string | undefined) | undefined
|
|
111419
112492
|
}
|
|
111420
112493
|
| undefined
|
|
112494
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
112495
|
+
akiles_metadata?:
|
|
112496
|
+
| {
|
|
112497
|
+
/** ID of the Akiles member PIN. */
|
|
112498
|
+
member_pin_id?: (string | undefined) | undefined
|
|
112499
|
+
}
|
|
112500
|
+
| undefined
|
|
111421
112501
|
is_managed: false
|
|
111422
112502
|
}
|
|
111423
112503
|
)
|
|
@@ -111545,6 +112625,7 @@ export type Routes = {
|
|
|
111545
112625
|
| 'salto_ks_tag'
|
|
111546
112626
|
| 'avigilon_alta_credential'
|
|
111547
112627
|
| 'kisi_credential'
|
|
112628
|
+
| 'akiles_credential'
|
|
111548
112629
|
)
|
|
111549
112630
|
| undefined
|
|
111550
112631
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -111675,6 +112756,13 @@ export type Routes = {
|
|
|
111675
112756
|
endpoint_id?: (string | undefined) | undefined
|
|
111676
112757
|
}
|
|
111677
112758
|
| undefined
|
|
112759
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
112760
|
+
akiles_metadata?:
|
|
112761
|
+
| {
|
|
112762
|
+
/** ID of the Akiles member PIN. */
|
|
112763
|
+
member_pin_id?: (string | undefined) | undefined
|
|
112764
|
+
}
|
|
112765
|
+
| undefined
|
|
111678
112766
|
/** Indicates whether Seam manages the credential. */
|
|
111679
112767
|
is_managed: true
|
|
111680
112768
|
}
|
|
@@ -111723,6 +112811,7 @@ export type Routes = {
|
|
|
111723
112811
|
| 'salto_ks_tag'
|
|
111724
112812
|
| 'avigilon_alta_credential'
|
|
111725
112813
|
| 'kisi_credential'
|
|
112814
|
+
| 'akiles_credential'
|
|
111726
112815
|
)
|
|
111727
112816
|
| undefined
|
|
111728
112817
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -111853,6 +112942,13 @@ export type Routes = {
|
|
|
111853
112942
|
endpoint_id?: (string | undefined) | undefined
|
|
111854
112943
|
}
|
|
111855
112944
|
| undefined
|
|
112945
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
112946
|
+
akiles_metadata?:
|
|
112947
|
+
| {
|
|
112948
|
+
/** ID of the Akiles member PIN. */
|
|
112949
|
+
member_pin_id?: (string | undefined) | undefined
|
|
112950
|
+
}
|
|
112951
|
+
| undefined
|
|
111856
112952
|
is_managed: false
|
|
111857
112953
|
}
|
|
111858
112954
|
}
|
|
@@ -111991,6 +113087,7 @@ export type Routes = {
|
|
|
111991
113087
|
| 'salto_ks_tag'
|
|
111992
113088
|
| 'avigilon_alta_credential'
|
|
111993
113089
|
| 'kisi_credential'
|
|
113090
|
+
| 'akiles_credential'
|
|
111994
113091
|
)
|
|
111995
113092
|
| undefined
|
|
111996
113093
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -112115,6 +113212,13 @@ export type Routes = {
|
|
|
112115
113212
|
endpoint_id?: (string | undefined) | undefined
|
|
112116
113213
|
}
|
|
112117
113214
|
| undefined
|
|
113215
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
113216
|
+
akiles_metadata?:
|
|
113217
|
+
| {
|
|
113218
|
+
/** ID of the Akiles member PIN. */
|
|
113219
|
+
member_pin_id?: (string | undefined) | undefined
|
|
113220
|
+
}
|
|
113221
|
+
| undefined
|
|
112118
113222
|
/** Indicates whether Seam manages the credential. */
|
|
112119
113223
|
is_managed: true
|
|
112120
113224
|
}
|
|
@@ -115054,6 +116158,7 @@ export type Routes = {
|
|
|
115054
116158
|
| 'salto_ks_tag'
|
|
115055
116159
|
| 'avigilon_alta_credential'
|
|
115056
116160
|
| 'kisi_credential'
|
|
116161
|
+
| 'akiles_credential'
|
|
115057
116162
|
)
|
|
115058
116163
|
| undefined
|
|
115059
116164
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -115184,6 +116289,13 @@ export type Routes = {
|
|
|
115184
116289
|
endpoint_id?: (string | undefined) | undefined
|
|
115185
116290
|
}
|
|
115186
116291
|
| undefined
|
|
116292
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
116293
|
+
akiles_metadata?:
|
|
116294
|
+
| {
|
|
116295
|
+
/** ID of the Akiles member PIN. */
|
|
116296
|
+
member_pin_id?: (string | undefined) | undefined
|
|
116297
|
+
}
|
|
116298
|
+
| undefined
|
|
115187
116299
|
/** Indicates whether Seam manages the credential. */
|
|
115188
116300
|
is_managed: true
|
|
115189
116301
|
}
|
|
@@ -115236,6 +116348,7 @@ export type Routes = {
|
|
|
115236
116348
|
| 'salto_ks_tag'
|
|
115237
116349
|
| 'avigilon_alta_credential'
|
|
115238
116350
|
| 'kisi_credential'
|
|
116351
|
+
| 'akiles_credential'
|
|
115239
116352
|
)
|
|
115240
116353
|
| undefined
|
|
115241
116354
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -115366,6 +116479,13 @@ export type Routes = {
|
|
|
115366
116479
|
endpoint_id?: (string | undefined) | undefined
|
|
115367
116480
|
}
|
|
115368
116481
|
| undefined
|
|
116482
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
116483
|
+
akiles_metadata?:
|
|
116484
|
+
| {
|
|
116485
|
+
/** ID of the Akiles member PIN. */
|
|
116486
|
+
member_pin_id?: (string | undefined) | undefined
|
|
116487
|
+
}
|
|
116488
|
+
| undefined
|
|
115369
116489
|
is_managed: false
|
|
115370
116490
|
}
|
|
115371
116491
|
)
|
|
@@ -115493,6 +116613,7 @@ export type Routes = {
|
|
|
115493
116613
|
| 'salto_ks_tag'
|
|
115494
116614
|
| 'avigilon_alta_credential'
|
|
115495
116615
|
| 'kisi_credential'
|
|
116616
|
+
| 'akiles_credential'
|
|
115496
116617
|
)
|
|
115497
116618
|
| undefined
|
|
115498
116619
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -115623,6 +116744,13 @@ export type Routes = {
|
|
|
115623
116744
|
endpoint_id?: (string | undefined) | undefined
|
|
115624
116745
|
}
|
|
115625
116746
|
| undefined
|
|
116747
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
116748
|
+
akiles_metadata?:
|
|
116749
|
+
| {
|
|
116750
|
+
/** ID of the Akiles member PIN. */
|
|
116751
|
+
member_pin_id?: (string | undefined) | undefined
|
|
116752
|
+
}
|
|
116753
|
+
| undefined
|
|
115626
116754
|
/** Indicates whether Seam manages the credential. */
|
|
115627
116755
|
is_managed: true
|
|
115628
116756
|
}
|
|
@@ -115671,6 +116799,7 @@ export type Routes = {
|
|
|
115671
116799
|
| 'salto_ks_tag'
|
|
115672
116800
|
| 'avigilon_alta_credential'
|
|
115673
116801
|
| 'kisi_credential'
|
|
116802
|
+
| 'akiles_credential'
|
|
115674
116803
|
)
|
|
115675
116804
|
| undefined
|
|
115676
116805
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -115801,6 +116930,13 @@ export type Routes = {
|
|
|
115801
116930
|
endpoint_id?: (string | undefined) | undefined
|
|
115802
116931
|
}
|
|
115803
116932
|
| undefined
|
|
116933
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
116934
|
+
akiles_metadata?:
|
|
116935
|
+
| {
|
|
116936
|
+
/** ID of the Akiles member PIN. */
|
|
116937
|
+
member_pin_id?: (string | undefined) | undefined
|
|
116938
|
+
}
|
|
116939
|
+
| undefined
|
|
115804
116940
|
is_managed: false
|
|
115805
116941
|
}
|
|
115806
116942
|
}
|
|
@@ -115939,6 +117075,7 @@ export type Routes = {
|
|
|
115939
117075
|
| 'salto_ks_tag'
|
|
115940
117076
|
| 'avigilon_alta_credential'
|
|
115941
117077
|
| 'kisi_credential'
|
|
117078
|
+
| 'akiles_credential'
|
|
115942
117079
|
)
|
|
115943
117080
|
| undefined
|
|
115944
117081
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -116063,6 +117200,13 @@ export type Routes = {
|
|
|
116063
117200
|
endpoint_id?: (string | undefined) | undefined
|
|
116064
117201
|
}
|
|
116065
117202
|
| undefined
|
|
117203
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
117204
|
+
akiles_metadata?:
|
|
117205
|
+
| {
|
|
117206
|
+
/** ID of the Akiles member PIN. */
|
|
117207
|
+
member_pin_id?: (string | undefined) | undefined
|
|
117208
|
+
}
|
|
117209
|
+
| undefined
|
|
116066
117210
|
/** Indicates whether Seam manages the credential. */
|
|
116067
117211
|
is_managed: true
|
|
116068
117212
|
}
|
|
@@ -117108,6 +118252,7 @@ export type Routes = {
|
|
|
117108
118252
|
| 'salto_ks_tag'
|
|
117109
118253
|
| 'avigilon_alta_credential'
|
|
117110
118254
|
| 'kisi_credential'
|
|
118255
|
+
| 'akiles_credential'
|
|
117111
118256
|
)
|
|
117112
118257
|
| undefined
|
|
117113
118258
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -117238,6 +118383,13 @@ export type Routes = {
|
|
|
117238
118383
|
endpoint_id?: (string | undefined) | undefined
|
|
117239
118384
|
}
|
|
117240
118385
|
| undefined
|
|
118386
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
118387
|
+
akiles_metadata?:
|
|
118388
|
+
| {
|
|
118389
|
+
/** ID of the Akiles member PIN. */
|
|
118390
|
+
member_pin_id?: (string | undefined) | undefined
|
|
118391
|
+
}
|
|
118392
|
+
| undefined
|
|
117241
118393
|
/** Indicates whether Seam manages the credential. */
|
|
117242
118394
|
is_managed: true
|
|
117243
118395
|
}
|
|
@@ -117290,6 +118442,7 @@ export type Routes = {
|
|
|
117290
118442
|
| 'salto_ks_tag'
|
|
117291
118443
|
| 'avigilon_alta_credential'
|
|
117292
118444
|
| 'kisi_credential'
|
|
118445
|
+
| 'akiles_credential'
|
|
117293
118446
|
)
|
|
117294
118447
|
| undefined
|
|
117295
118448
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -117420,6 +118573,13 @@ export type Routes = {
|
|
|
117420
118573
|
endpoint_id?: (string | undefined) | undefined
|
|
117421
118574
|
}
|
|
117422
118575
|
| undefined
|
|
118576
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
118577
|
+
akiles_metadata?:
|
|
118578
|
+
| {
|
|
118579
|
+
/** ID of the Akiles member PIN. */
|
|
118580
|
+
member_pin_id?: (string | undefined) | undefined
|
|
118581
|
+
}
|
|
118582
|
+
| undefined
|
|
117423
118583
|
is_managed: false
|
|
117424
118584
|
}
|
|
117425
118585
|
)
|
|
@@ -117547,6 +118707,7 @@ export type Routes = {
|
|
|
117547
118707
|
| 'salto_ks_tag'
|
|
117548
118708
|
| 'avigilon_alta_credential'
|
|
117549
118709
|
| 'kisi_credential'
|
|
118710
|
+
| 'akiles_credential'
|
|
117550
118711
|
)
|
|
117551
118712
|
| undefined
|
|
117552
118713
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -117677,6 +118838,13 @@ export type Routes = {
|
|
|
117677
118838
|
endpoint_id?: (string | undefined) | undefined
|
|
117678
118839
|
}
|
|
117679
118840
|
| undefined
|
|
118841
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
118842
|
+
akiles_metadata?:
|
|
118843
|
+
| {
|
|
118844
|
+
/** ID of the Akiles member PIN. */
|
|
118845
|
+
member_pin_id?: (string | undefined) | undefined
|
|
118846
|
+
}
|
|
118847
|
+
| undefined
|
|
117680
118848
|
/** Indicates whether Seam manages the credential. */
|
|
117681
118849
|
is_managed: true
|
|
117682
118850
|
}
|
|
@@ -117725,6 +118893,7 @@ export type Routes = {
|
|
|
117725
118893
|
| 'salto_ks_tag'
|
|
117726
118894
|
| 'avigilon_alta_credential'
|
|
117727
118895
|
| 'kisi_credential'
|
|
118896
|
+
| 'akiles_credential'
|
|
117728
118897
|
)
|
|
117729
118898
|
| undefined
|
|
117730
118899
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -117855,6 +119024,13 @@ export type Routes = {
|
|
|
117855
119024
|
endpoint_id?: (string | undefined) | undefined
|
|
117856
119025
|
}
|
|
117857
119026
|
| undefined
|
|
119027
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
119028
|
+
akiles_metadata?:
|
|
119029
|
+
| {
|
|
119030
|
+
/** ID of the Akiles member PIN. */
|
|
119031
|
+
member_pin_id?: (string | undefined) | undefined
|
|
119032
|
+
}
|
|
119033
|
+
| undefined
|
|
117858
119034
|
is_managed: false
|
|
117859
119035
|
}
|
|
117860
119036
|
}
|
|
@@ -117993,6 +119169,7 @@ export type Routes = {
|
|
|
117993
119169
|
| 'salto_ks_tag'
|
|
117994
119170
|
| 'avigilon_alta_credential'
|
|
117995
119171
|
| 'kisi_credential'
|
|
119172
|
+
| 'akiles_credential'
|
|
117996
119173
|
)
|
|
117997
119174
|
| undefined
|
|
117998
119175
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -118117,6 +119294,13 @@ export type Routes = {
|
|
|
118117
119294
|
endpoint_id?: (string | undefined) | undefined
|
|
118118
119295
|
}
|
|
118119
119296
|
| undefined
|
|
119297
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
119298
|
+
akiles_metadata?:
|
|
119299
|
+
| {
|
|
119300
|
+
/** ID of the Akiles member PIN. */
|
|
119301
|
+
member_pin_id?: (string | undefined) | undefined
|
|
119302
|
+
}
|
|
119303
|
+
| undefined
|
|
118120
119304
|
/** Indicates whether Seam manages the credential. */
|
|
118121
119305
|
is_managed: true
|
|
118122
119306
|
}
|
|
@@ -123012,6 +124196,7 @@ export type Routes = {
|
|
|
123012
124196
|
| 'salto_ks_tag'
|
|
123013
124197
|
| 'avigilon_alta_credential'
|
|
123014
124198
|
| 'kisi_credential'
|
|
124199
|
+
| 'akiles_credential'
|
|
123015
124200
|
)
|
|
123016
124201
|
| undefined
|
|
123017
124202
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -123142,6 +124327,13 @@ export type Routes = {
|
|
|
123142
124327
|
endpoint_id?: (string | undefined) | undefined
|
|
123143
124328
|
}
|
|
123144
124329
|
| undefined
|
|
124330
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
124331
|
+
akiles_metadata?:
|
|
124332
|
+
| {
|
|
124333
|
+
/** ID of the Akiles member PIN. */
|
|
124334
|
+
member_pin_id?: (string | undefined) | undefined
|
|
124335
|
+
}
|
|
124336
|
+
| undefined
|
|
123145
124337
|
/** Indicates whether Seam manages the credential. */
|
|
123146
124338
|
is_managed: true
|
|
123147
124339
|
}
|
|
@@ -123194,6 +124386,7 @@ export type Routes = {
|
|
|
123194
124386
|
| 'salto_ks_tag'
|
|
123195
124387
|
| 'avigilon_alta_credential'
|
|
123196
124388
|
| 'kisi_credential'
|
|
124389
|
+
| 'akiles_credential'
|
|
123197
124390
|
)
|
|
123198
124391
|
| undefined
|
|
123199
124392
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -123324,6 +124517,13 @@ export type Routes = {
|
|
|
123324
124517
|
endpoint_id?: (string | undefined) | undefined
|
|
123325
124518
|
}
|
|
123326
124519
|
| undefined
|
|
124520
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
124521
|
+
akiles_metadata?:
|
|
124522
|
+
| {
|
|
124523
|
+
/** ID of the Akiles member PIN. */
|
|
124524
|
+
member_pin_id?: (string | undefined) | undefined
|
|
124525
|
+
}
|
|
124526
|
+
| undefined
|
|
123327
124527
|
is_managed: false
|
|
123328
124528
|
}
|
|
123329
124529
|
)
|
|
@@ -123451,6 +124651,7 @@ export type Routes = {
|
|
|
123451
124651
|
| 'salto_ks_tag'
|
|
123452
124652
|
| 'avigilon_alta_credential'
|
|
123453
124653
|
| 'kisi_credential'
|
|
124654
|
+
| 'akiles_credential'
|
|
123454
124655
|
)
|
|
123455
124656
|
| undefined
|
|
123456
124657
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -123581,6 +124782,13 @@ export type Routes = {
|
|
|
123581
124782
|
endpoint_id?: (string | undefined) | undefined
|
|
123582
124783
|
}
|
|
123583
124784
|
| undefined
|
|
124785
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
124786
|
+
akiles_metadata?:
|
|
124787
|
+
| {
|
|
124788
|
+
/** ID of the Akiles member PIN. */
|
|
124789
|
+
member_pin_id?: (string | undefined) | undefined
|
|
124790
|
+
}
|
|
124791
|
+
| undefined
|
|
123584
124792
|
/** Indicates whether Seam manages the credential. */
|
|
123585
124793
|
is_managed: true
|
|
123586
124794
|
}
|
|
@@ -123629,6 +124837,7 @@ export type Routes = {
|
|
|
123629
124837
|
| 'salto_ks_tag'
|
|
123630
124838
|
| 'avigilon_alta_credential'
|
|
123631
124839
|
| 'kisi_credential'
|
|
124840
|
+
| 'akiles_credential'
|
|
123632
124841
|
)
|
|
123633
124842
|
| undefined
|
|
123634
124843
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -123759,6 +124968,13 @@ export type Routes = {
|
|
|
123759
124968
|
endpoint_id?: (string | undefined) | undefined
|
|
123760
124969
|
}
|
|
123761
124970
|
| undefined
|
|
124971
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
124972
|
+
akiles_metadata?:
|
|
124973
|
+
| {
|
|
124974
|
+
/** ID of the Akiles member PIN. */
|
|
124975
|
+
member_pin_id?: (string | undefined) | undefined
|
|
124976
|
+
}
|
|
124977
|
+
| undefined
|
|
123762
124978
|
is_managed: false
|
|
123763
124979
|
}
|
|
123764
124980
|
}
|
|
@@ -123897,6 +125113,7 @@ export type Routes = {
|
|
|
123897
125113
|
| 'salto_ks_tag'
|
|
123898
125114
|
| 'avigilon_alta_credential'
|
|
123899
125115
|
| 'kisi_credential'
|
|
125116
|
+
| 'akiles_credential'
|
|
123900
125117
|
)
|
|
123901
125118
|
| undefined
|
|
123902
125119
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -124021,6 +125238,13 @@ export type Routes = {
|
|
|
124021
125238
|
endpoint_id?: (string | undefined) | undefined
|
|
124022
125239
|
}
|
|
124023
125240
|
| undefined
|
|
125241
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
125242
|
+
akiles_metadata?:
|
|
125243
|
+
| {
|
|
125244
|
+
/** ID of the Akiles member PIN. */
|
|
125245
|
+
member_pin_id?: (string | undefined) | undefined
|
|
125246
|
+
}
|
|
125247
|
+
| undefined
|
|
124024
125248
|
/** Indicates whether Seam manages the credential. */
|
|
124025
125249
|
is_managed: true
|
|
124026
125250
|
}
|
|
@@ -125267,6 +126491,7 @@ export type Routes = {
|
|
|
125267
126491
|
| 'salto_ks_tag'
|
|
125268
126492
|
| 'avigilon_alta_credential'
|
|
125269
126493
|
| 'kisi_credential'
|
|
126494
|
+
| 'akiles_credential'
|
|
125270
126495
|
)
|
|
125271
126496
|
| undefined
|
|
125272
126497
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -125397,6 +126622,13 @@ export type Routes = {
|
|
|
125397
126622
|
endpoint_id?: (string | undefined) | undefined
|
|
125398
126623
|
}
|
|
125399
126624
|
| undefined
|
|
126625
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
126626
|
+
akiles_metadata?:
|
|
126627
|
+
| {
|
|
126628
|
+
/** ID of the Akiles member PIN. */
|
|
126629
|
+
member_pin_id?: (string | undefined) | undefined
|
|
126630
|
+
}
|
|
126631
|
+
| undefined
|
|
125400
126632
|
/** Indicates whether Seam manages the credential. */
|
|
125401
126633
|
is_managed: true
|
|
125402
126634
|
}
|
|
@@ -125449,6 +126681,7 @@ export type Routes = {
|
|
|
125449
126681
|
| 'salto_ks_tag'
|
|
125450
126682
|
| 'avigilon_alta_credential'
|
|
125451
126683
|
| 'kisi_credential'
|
|
126684
|
+
| 'akiles_credential'
|
|
125452
126685
|
)
|
|
125453
126686
|
| undefined
|
|
125454
126687
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -125579,6 +126812,13 @@ export type Routes = {
|
|
|
125579
126812
|
endpoint_id?: (string | undefined) | undefined
|
|
125580
126813
|
}
|
|
125581
126814
|
| undefined
|
|
126815
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
126816
|
+
akiles_metadata?:
|
|
126817
|
+
| {
|
|
126818
|
+
/** ID of the Akiles member PIN. */
|
|
126819
|
+
member_pin_id?: (string | undefined) | undefined
|
|
126820
|
+
}
|
|
126821
|
+
| undefined
|
|
125582
126822
|
is_managed: false
|
|
125583
126823
|
}
|
|
125584
126824
|
)
|
|
@@ -125706,6 +126946,7 @@ export type Routes = {
|
|
|
125706
126946
|
| 'salto_ks_tag'
|
|
125707
126947
|
| 'avigilon_alta_credential'
|
|
125708
126948
|
| 'kisi_credential'
|
|
126949
|
+
| 'akiles_credential'
|
|
125709
126950
|
)
|
|
125710
126951
|
| undefined
|
|
125711
126952
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -125836,6 +127077,13 @@ export type Routes = {
|
|
|
125836
127077
|
endpoint_id?: (string | undefined) | undefined
|
|
125837
127078
|
}
|
|
125838
127079
|
| undefined
|
|
127080
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
127081
|
+
akiles_metadata?:
|
|
127082
|
+
| {
|
|
127083
|
+
/** ID of the Akiles member PIN. */
|
|
127084
|
+
member_pin_id?: (string | undefined) | undefined
|
|
127085
|
+
}
|
|
127086
|
+
| undefined
|
|
125839
127087
|
/** Indicates whether Seam manages the credential. */
|
|
125840
127088
|
is_managed: true
|
|
125841
127089
|
}
|
|
@@ -125884,6 +127132,7 @@ export type Routes = {
|
|
|
125884
127132
|
| 'salto_ks_tag'
|
|
125885
127133
|
| 'avigilon_alta_credential'
|
|
125886
127134
|
| 'kisi_credential'
|
|
127135
|
+
| 'akiles_credential'
|
|
125887
127136
|
)
|
|
125888
127137
|
| undefined
|
|
125889
127138
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -126014,6 +127263,13 @@ export type Routes = {
|
|
|
126014
127263
|
endpoint_id?: (string | undefined) | undefined
|
|
126015
127264
|
}
|
|
126016
127265
|
| undefined
|
|
127266
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
127267
|
+
akiles_metadata?:
|
|
127268
|
+
| {
|
|
127269
|
+
/** ID of the Akiles member PIN. */
|
|
127270
|
+
member_pin_id?: (string | undefined) | undefined
|
|
127271
|
+
}
|
|
127272
|
+
| undefined
|
|
126017
127273
|
is_managed: false
|
|
126018
127274
|
}
|
|
126019
127275
|
}
|
|
@@ -126152,6 +127408,7 @@ export type Routes = {
|
|
|
126152
127408
|
| 'salto_ks_tag'
|
|
126153
127409
|
| 'avigilon_alta_credential'
|
|
126154
127410
|
| 'kisi_credential'
|
|
127411
|
+
| 'akiles_credential'
|
|
126155
127412
|
)
|
|
126156
127413
|
| undefined
|
|
126157
127414
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -126276,6 +127533,13 @@ export type Routes = {
|
|
|
126276
127533
|
endpoint_id?: (string | undefined) | undefined
|
|
126277
127534
|
}
|
|
126278
127535
|
| undefined
|
|
127536
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
127537
|
+
akiles_metadata?:
|
|
127538
|
+
| {
|
|
127539
|
+
/** ID of the Akiles member PIN. */
|
|
127540
|
+
member_pin_id?: (string | undefined) | undefined
|
|
127541
|
+
}
|
|
127542
|
+
| undefined
|
|
126279
127543
|
/** Indicates whether Seam manages the credential. */
|
|
126280
127544
|
is_managed: true
|
|
126281
127545
|
}
|
|
@@ -127349,6 +128613,7 @@ export type Routes = {
|
|
|
127349
128613
|
| 'salto_ks_tag'
|
|
127350
128614
|
| 'avigilon_alta_credential'
|
|
127351
128615
|
| 'kisi_credential'
|
|
128616
|
+
| 'akiles_credential'
|
|
127352
128617
|
)
|
|
127353
128618
|
| undefined
|
|
127354
128619
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -127479,6 +128744,13 @@ export type Routes = {
|
|
|
127479
128744
|
endpoint_id?: (string | undefined) | undefined
|
|
127480
128745
|
}
|
|
127481
128746
|
| undefined
|
|
128747
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
128748
|
+
akiles_metadata?:
|
|
128749
|
+
| {
|
|
128750
|
+
/** ID of the Akiles member PIN. */
|
|
128751
|
+
member_pin_id?: (string | undefined) | undefined
|
|
128752
|
+
}
|
|
128753
|
+
| undefined
|
|
127482
128754
|
/** Indicates whether Seam manages the credential. */
|
|
127483
128755
|
is_managed: true
|
|
127484
128756
|
}
|
|
@@ -127531,6 +128803,7 @@ export type Routes = {
|
|
|
127531
128803
|
| 'salto_ks_tag'
|
|
127532
128804
|
| 'avigilon_alta_credential'
|
|
127533
128805
|
| 'kisi_credential'
|
|
128806
|
+
| 'akiles_credential'
|
|
127534
128807
|
)
|
|
127535
128808
|
| undefined
|
|
127536
128809
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -127661,6 +128934,13 @@ export type Routes = {
|
|
|
127661
128934
|
endpoint_id?: (string | undefined) | undefined
|
|
127662
128935
|
}
|
|
127663
128936
|
| undefined
|
|
128937
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
128938
|
+
akiles_metadata?:
|
|
128939
|
+
| {
|
|
128940
|
+
/** ID of the Akiles member PIN. */
|
|
128941
|
+
member_pin_id?: (string | undefined) | undefined
|
|
128942
|
+
}
|
|
128943
|
+
| undefined
|
|
127664
128944
|
is_managed: false
|
|
127665
128945
|
}
|
|
127666
128946
|
)
|
|
@@ -127788,6 +129068,7 @@ export type Routes = {
|
|
|
127788
129068
|
| 'salto_ks_tag'
|
|
127789
129069
|
| 'avigilon_alta_credential'
|
|
127790
129070
|
| 'kisi_credential'
|
|
129071
|
+
| 'akiles_credential'
|
|
127791
129072
|
)
|
|
127792
129073
|
| undefined
|
|
127793
129074
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -127918,6 +129199,13 @@ export type Routes = {
|
|
|
127918
129199
|
endpoint_id?: (string | undefined) | undefined
|
|
127919
129200
|
}
|
|
127920
129201
|
| undefined
|
|
129202
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
129203
|
+
akiles_metadata?:
|
|
129204
|
+
| {
|
|
129205
|
+
/** ID of the Akiles member PIN. */
|
|
129206
|
+
member_pin_id?: (string | undefined) | undefined
|
|
129207
|
+
}
|
|
129208
|
+
| undefined
|
|
127921
129209
|
/** Indicates whether Seam manages the credential. */
|
|
127922
129210
|
is_managed: true
|
|
127923
129211
|
}
|
|
@@ -127966,6 +129254,7 @@ export type Routes = {
|
|
|
127966
129254
|
| 'salto_ks_tag'
|
|
127967
129255
|
| 'avigilon_alta_credential'
|
|
127968
129256
|
| 'kisi_credential'
|
|
129257
|
+
| 'akiles_credential'
|
|
127969
129258
|
)
|
|
127970
129259
|
| undefined
|
|
127971
129260
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -128096,6 +129385,13 @@ export type Routes = {
|
|
|
128096
129385
|
endpoint_id?: (string | undefined) | undefined
|
|
128097
129386
|
}
|
|
128098
129387
|
| undefined
|
|
129388
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
129389
|
+
akiles_metadata?:
|
|
129390
|
+
| {
|
|
129391
|
+
/** ID of the Akiles member PIN. */
|
|
129392
|
+
member_pin_id?: (string | undefined) | undefined
|
|
129393
|
+
}
|
|
129394
|
+
| undefined
|
|
128099
129395
|
is_managed: false
|
|
128100
129396
|
}
|
|
128101
129397
|
}
|
|
@@ -128234,6 +129530,7 @@ export type Routes = {
|
|
|
128234
129530
|
| 'salto_ks_tag'
|
|
128235
129531
|
| 'avigilon_alta_credential'
|
|
128236
129532
|
| 'kisi_credential'
|
|
129533
|
+
| 'akiles_credential'
|
|
128237
129534
|
)
|
|
128238
129535
|
| undefined
|
|
128239
129536
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -128358,6 +129655,13 @@ export type Routes = {
|
|
|
128358
129655
|
endpoint_id?: (string | undefined) | undefined
|
|
128359
129656
|
}
|
|
128360
129657
|
| undefined
|
|
129658
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
129659
|
+
akiles_metadata?:
|
|
129660
|
+
| {
|
|
129661
|
+
/** ID of the Akiles member PIN. */
|
|
129662
|
+
member_pin_id?: (string | undefined) | undefined
|
|
129663
|
+
}
|
|
129664
|
+
| undefined
|
|
128361
129665
|
/** Indicates whether Seam manages the credential. */
|
|
128362
129666
|
is_managed: true
|
|
128363
129667
|
}
|
|
@@ -129548,6 +130852,7 @@ export type Routes = {
|
|
|
129548
130852
|
| 'salto_ks_tag'
|
|
129549
130853
|
| 'avigilon_alta_credential'
|
|
129550
130854
|
| 'kisi_credential'
|
|
130855
|
+
| 'akiles_credential'
|
|
129551
130856
|
)
|
|
129552
130857
|
| undefined
|
|
129553
130858
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -129678,6 +130983,13 @@ export type Routes = {
|
|
|
129678
130983
|
endpoint_id?: (string | undefined) | undefined
|
|
129679
130984
|
}
|
|
129680
130985
|
| undefined
|
|
130986
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
130987
|
+
akiles_metadata?:
|
|
130988
|
+
| {
|
|
130989
|
+
/** ID of the Akiles member PIN. */
|
|
130990
|
+
member_pin_id?: (string | undefined) | undefined
|
|
130991
|
+
}
|
|
130992
|
+
| undefined
|
|
129681
130993
|
/** Indicates whether Seam manages the credential. */
|
|
129682
130994
|
is_managed: true
|
|
129683
130995
|
}
|
|
@@ -129730,6 +131042,7 @@ export type Routes = {
|
|
|
129730
131042
|
| 'salto_ks_tag'
|
|
129731
131043
|
| 'avigilon_alta_credential'
|
|
129732
131044
|
| 'kisi_credential'
|
|
131045
|
+
| 'akiles_credential'
|
|
129733
131046
|
)
|
|
129734
131047
|
| undefined
|
|
129735
131048
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -129860,6 +131173,13 @@ export type Routes = {
|
|
|
129860
131173
|
endpoint_id?: (string | undefined) | undefined
|
|
129861
131174
|
}
|
|
129862
131175
|
| undefined
|
|
131176
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
131177
|
+
akiles_metadata?:
|
|
131178
|
+
| {
|
|
131179
|
+
/** ID of the Akiles member PIN. */
|
|
131180
|
+
member_pin_id?: (string | undefined) | undefined
|
|
131181
|
+
}
|
|
131182
|
+
| undefined
|
|
129863
131183
|
is_managed: false
|
|
129864
131184
|
}
|
|
129865
131185
|
)
|
|
@@ -129987,6 +131307,7 @@ export type Routes = {
|
|
|
129987
131307
|
| 'salto_ks_tag'
|
|
129988
131308
|
| 'avigilon_alta_credential'
|
|
129989
131309
|
| 'kisi_credential'
|
|
131310
|
+
| 'akiles_credential'
|
|
129990
131311
|
)
|
|
129991
131312
|
| undefined
|
|
129992
131313
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -130117,6 +131438,13 @@ export type Routes = {
|
|
|
130117
131438
|
endpoint_id?: (string | undefined) | undefined
|
|
130118
131439
|
}
|
|
130119
131440
|
| undefined
|
|
131441
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
131442
|
+
akiles_metadata?:
|
|
131443
|
+
| {
|
|
131444
|
+
/** ID of the Akiles member PIN. */
|
|
131445
|
+
member_pin_id?: (string | undefined) | undefined
|
|
131446
|
+
}
|
|
131447
|
+
| undefined
|
|
130120
131448
|
/** Indicates whether Seam manages the credential. */
|
|
130121
131449
|
is_managed: true
|
|
130122
131450
|
}
|
|
@@ -130165,6 +131493,7 @@ export type Routes = {
|
|
|
130165
131493
|
| 'salto_ks_tag'
|
|
130166
131494
|
| 'avigilon_alta_credential'
|
|
130167
131495
|
| 'kisi_credential'
|
|
131496
|
+
| 'akiles_credential'
|
|
130168
131497
|
)
|
|
130169
131498
|
| undefined
|
|
130170
131499
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -130295,6 +131624,13 @@ export type Routes = {
|
|
|
130295
131624
|
endpoint_id?: (string | undefined) | undefined
|
|
130296
131625
|
}
|
|
130297
131626
|
| undefined
|
|
131627
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
131628
|
+
akiles_metadata?:
|
|
131629
|
+
| {
|
|
131630
|
+
/** ID of the Akiles member PIN. */
|
|
131631
|
+
member_pin_id?: (string | undefined) | undefined
|
|
131632
|
+
}
|
|
131633
|
+
| undefined
|
|
130298
131634
|
is_managed: false
|
|
130299
131635
|
}
|
|
130300
131636
|
}
|
|
@@ -130433,6 +131769,7 @@ export type Routes = {
|
|
|
130433
131769
|
| 'salto_ks_tag'
|
|
130434
131770
|
| 'avigilon_alta_credential'
|
|
130435
131771
|
| 'kisi_credential'
|
|
131772
|
+
| 'akiles_credential'
|
|
130436
131773
|
)
|
|
130437
131774
|
| undefined
|
|
130438
131775
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -130557,6 +131894,13 @@ export type Routes = {
|
|
|
130557
131894
|
endpoint_id?: (string | undefined) | undefined
|
|
130558
131895
|
}
|
|
130559
131896
|
| undefined
|
|
131897
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
131898
|
+
akiles_metadata?:
|
|
131899
|
+
| {
|
|
131900
|
+
/** ID of the Akiles member PIN. */
|
|
131901
|
+
member_pin_id?: (string | undefined) | undefined
|
|
131902
|
+
}
|
|
131903
|
+
| undefined
|
|
130560
131904
|
/** Indicates whether Seam manages the credential. */
|
|
130561
131905
|
is_managed: true
|
|
130562
131906
|
}
|
|
@@ -140397,6 +141741,7 @@ export type Routes = {
|
|
|
140397
141741
|
| 'salto_ks_tag'
|
|
140398
141742
|
| 'avigilon_alta_credential'
|
|
140399
141743
|
| 'kisi_credential'
|
|
141744
|
+
| 'akiles_credential'
|
|
140400
141745
|
)
|
|
140401
141746
|
| undefined
|
|
140402
141747
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -140539,6 +141884,15 @@ export type Routes = {
|
|
|
140539
141884
|
| undefined
|
|
140540
141885
|
}
|
|
140541
141886
|
| undefined
|
|
141887
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
141888
|
+
akiles_metadata?:
|
|
141889
|
+
| {
|
|
141890
|
+
/** ID of the Akiles member PIN. */
|
|
141891
|
+
member_pin_id?:
|
|
141892
|
+
| (string | undefined)
|
|
141893
|
+
| undefined
|
|
141894
|
+
}
|
|
141895
|
+
| undefined
|
|
140542
141896
|
/** Indicates whether Seam manages the credential. */
|
|
140543
141897
|
is_managed: true
|
|
140544
141898
|
}
|
|
@@ -140591,6 +141945,7 @@ export type Routes = {
|
|
|
140591
141945
|
| 'salto_ks_tag'
|
|
140592
141946
|
| 'avigilon_alta_credential'
|
|
140593
141947
|
| 'kisi_credential'
|
|
141948
|
+
| 'akiles_credential'
|
|
140594
141949
|
)
|
|
140595
141950
|
| undefined
|
|
140596
141951
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -140733,6 +142088,15 @@ export type Routes = {
|
|
|
140733
142088
|
| undefined
|
|
140734
142089
|
}
|
|
140735
142090
|
| undefined
|
|
142091
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
142092
|
+
akiles_metadata?:
|
|
142093
|
+
| {
|
|
142094
|
+
/** ID of the Akiles member PIN. */
|
|
142095
|
+
member_pin_id?:
|
|
142096
|
+
| (string | undefined)
|
|
142097
|
+
| undefined
|
|
142098
|
+
}
|
|
142099
|
+
| undefined
|
|
140736
142100
|
is_managed: false
|
|
140737
142101
|
}
|
|
140738
142102
|
)
|
|
@@ -140864,6 +142228,7 @@ export type Routes = {
|
|
|
140864
142228
|
| 'salto_ks_tag'
|
|
140865
142229
|
| 'avigilon_alta_credential'
|
|
140866
142230
|
| 'kisi_credential'
|
|
142231
|
+
| 'akiles_credential'
|
|
140867
142232
|
)
|
|
140868
142233
|
| undefined
|
|
140869
142234
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -140994,6 +142359,13 @@ export type Routes = {
|
|
|
140994
142359
|
endpoint_id?: (string | undefined) | undefined
|
|
140995
142360
|
}
|
|
140996
142361
|
| undefined
|
|
142362
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
142363
|
+
akiles_metadata?:
|
|
142364
|
+
| {
|
|
142365
|
+
/** ID of the Akiles member PIN. */
|
|
142366
|
+
member_pin_id?: (string | undefined) | undefined
|
|
142367
|
+
}
|
|
142368
|
+
| undefined
|
|
140997
142369
|
/** Indicates whether Seam manages the credential. */
|
|
140998
142370
|
is_managed: true
|
|
140999
142371
|
}
|
|
@@ -141046,6 +142418,7 @@ export type Routes = {
|
|
|
141046
142418
|
| 'salto_ks_tag'
|
|
141047
142419
|
| 'avigilon_alta_credential'
|
|
141048
142420
|
| 'kisi_credential'
|
|
142421
|
+
| 'akiles_credential'
|
|
141049
142422
|
)
|
|
141050
142423
|
| undefined
|
|
141051
142424
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -141176,6 +142549,13 @@ export type Routes = {
|
|
|
141176
142549
|
endpoint_id?: (string | undefined) | undefined
|
|
141177
142550
|
}
|
|
141178
142551
|
| undefined
|
|
142552
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
142553
|
+
akiles_metadata?:
|
|
142554
|
+
| {
|
|
142555
|
+
/** ID of the Akiles member PIN. */
|
|
142556
|
+
member_pin_id?: (string | undefined) | undefined
|
|
142557
|
+
}
|
|
142558
|
+
| undefined
|
|
141179
142559
|
is_managed: false
|
|
141180
142560
|
}
|
|
141181
142561
|
}
|
|
@@ -141314,6 +142694,7 @@ export type Routes = {
|
|
|
141314
142694
|
| 'salto_ks_tag'
|
|
141315
142695
|
| 'avigilon_alta_credential'
|
|
141316
142696
|
| 'kisi_credential'
|
|
142697
|
+
| 'akiles_credential'
|
|
141317
142698
|
)
|
|
141318
142699
|
| undefined
|
|
141319
142700
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -141444,6 +142825,13 @@ export type Routes = {
|
|
|
141444
142825
|
endpoint_id?: (string | undefined) | undefined
|
|
141445
142826
|
}
|
|
141446
142827
|
| undefined
|
|
142828
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
142829
|
+
akiles_metadata?:
|
|
142830
|
+
| {
|
|
142831
|
+
/** ID of the Akiles member PIN. */
|
|
142832
|
+
member_pin_id?: (string | undefined) | undefined
|
|
142833
|
+
}
|
|
142834
|
+
| undefined
|
|
141447
142835
|
/** Indicates whether Seam manages the credential. */
|
|
141448
142836
|
is_managed: true
|
|
141449
142837
|
}
|
|
@@ -147793,6 +149181,7 @@ export type Routes = {
|
|
|
147793
149181
|
| 'salto_ks_tag'
|
|
147794
149182
|
| 'avigilon_alta_credential'
|
|
147795
149183
|
| 'kisi_credential'
|
|
149184
|
+
| 'akiles_credential'
|
|
147796
149185
|
)
|
|
147797
149186
|
| undefined
|
|
147798
149187
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -147917,6 +149306,13 @@ export type Routes = {
|
|
|
147917
149306
|
endpoint_id?: (string | undefined) | undefined
|
|
147918
149307
|
}
|
|
147919
149308
|
| undefined
|
|
149309
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
149310
|
+
akiles_metadata?:
|
|
149311
|
+
| {
|
|
149312
|
+
/** ID of the Akiles member PIN. */
|
|
149313
|
+
member_pin_id?: (string | undefined) | undefined
|
|
149314
|
+
}
|
|
149315
|
+
| undefined
|
|
147920
149316
|
/** Indicates whether Seam manages the credential. */
|
|
147921
149317
|
is_managed: true
|
|
147922
149318
|
}[]
|
|
@@ -147967,6 +149363,7 @@ export type Routes = {
|
|
|
147967
149363
|
| 'salto_ks_tag'
|
|
147968
149364
|
| 'avigilon_alta_credential'
|
|
147969
149365
|
| 'kisi_credential'
|
|
149366
|
+
| 'akiles_credential'
|
|
147970
149367
|
)
|
|
147971
149368
|
| undefined
|
|
147972
149369
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -148091,6 +149488,13 @@ export type Routes = {
|
|
|
148091
149488
|
endpoint_id?: (string | undefined) | undefined
|
|
148092
149489
|
}
|
|
148093
149490
|
| undefined
|
|
149491
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
149492
|
+
akiles_metadata?:
|
|
149493
|
+
| {
|
|
149494
|
+
/** ID of the Akiles member PIN. */
|
|
149495
|
+
member_pin_id?: (string | undefined) | undefined
|
|
149496
|
+
}
|
|
149497
|
+
| undefined
|
|
148094
149498
|
is_managed: false
|
|
148095
149499
|
}[]
|
|
148096
149500
|
| undefined
|
|
@@ -149391,6 +150795,7 @@ export type Routes = {
|
|
|
149391
150795
|
| 'salto_ks_tag'
|
|
149392
150796
|
| 'avigilon_alta_credential'
|
|
149393
150797
|
| 'kisi_credential'
|
|
150798
|
+
| 'akiles_credential'
|
|
149394
150799
|
)
|
|
149395
150800
|
| undefined
|
|
149396
150801
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -149521,6 +150926,13 @@ export type Routes = {
|
|
|
149521
150926
|
endpoint_id?: (string | undefined) | undefined
|
|
149522
150927
|
}
|
|
149523
150928
|
| undefined
|
|
150929
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
150930
|
+
akiles_metadata?:
|
|
150931
|
+
| {
|
|
150932
|
+
/** ID of the Akiles member PIN. */
|
|
150933
|
+
member_pin_id?: (string | undefined) | undefined
|
|
150934
|
+
}
|
|
150935
|
+
| undefined
|
|
149524
150936
|
/** Indicates whether Seam manages the credential. */
|
|
149525
150937
|
is_managed: true
|
|
149526
150938
|
}
|
|
@@ -149573,6 +150985,7 @@ export type Routes = {
|
|
|
149573
150985
|
| 'salto_ks_tag'
|
|
149574
150986
|
| 'avigilon_alta_credential'
|
|
149575
150987
|
| 'kisi_credential'
|
|
150988
|
+
| 'akiles_credential'
|
|
149576
150989
|
)
|
|
149577
150990
|
| undefined
|
|
149578
150991
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -149703,6 +151116,13 @@ export type Routes = {
|
|
|
149703
151116
|
endpoint_id?: (string | undefined) | undefined
|
|
149704
151117
|
}
|
|
149705
151118
|
| undefined
|
|
151119
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
151120
|
+
akiles_metadata?:
|
|
151121
|
+
| {
|
|
151122
|
+
/** ID of the Akiles member PIN. */
|
|
151123
|
+
member_pin_id?: (string | undefined) | undefined
|
|
151124
|
+
}
|
|
151125
|
+
| undefined
|
|
149706
151126
|
is_managed: false
|
|
149707
151127
|
}
|
|
149708
151128
|
)
|
|
@@ -149830,6 +151250,7 @@ export type Routes = {
|
|
|
149830
151250
|
| 'salto_ks_tag'
|
|
149831
151251
|
| 'avigilon_alta_credential'
|
|
149832
151252
|
| 'kisi_credential'
|
|
151253
|
+
| 'akiles_credential'
|
|
149833
151254
|
)
|
|
149834
151255
|
| undefined
|
|
149835
151256
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -149960,6 +151381,13 @@ export type Routes = {
|
|
|
149960
151381
|
endpoint_id?: (string | undefined) | undefined
|
|
149961
151382
|
}
|
|
149962
151383
|
| undefined
|
|
151384
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
151385
|
+
akiles_metadata?:
|
|
151386
|
+
| {
|
|
151387
|
+
/** ID of the Akiles member PIN. */
|
|
151388
|
+
member_pin_id?: (string | undefined) | undefined
|
|
151389
|
+
}
|
|
151390
|
+
| undefined
|
|
149963
151391
|
/** Indicates whether Seam manages the credential. */
|
|
149964
151392
|
is_managed: true
|
|
149965
151393
|
}
|
|
@@ -150008,6 +151436,7 @@ export type Routes = {
|
|
|
150008
151436
|
| 'salto_ks_tag'
|
|
150009
151437
|
| 'avigilon_alta_credential'
|
|
150010
151438
|
| 'kisi_credential'
|
|
151439
|
+
| 'akiles_credential'
|
|
150011
151440
|
)
|
|
150012
151441
|
| undefined
|
|
150013
151442
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -150138,6 +151567,13 @@ export type Routes = {
|
|
|
150138
151567
|
endpoint_id?: (string | undefined) | undefined
|
|
150139
151568
|
}
|
|
150140
151569
|
| undefined
|
|
151570
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
151571
|
+
akiles_metadata?:
|
|
151572
|
+
| {
|
|
151573
|
+
/** ID of the Akiles member PIN. */
|
|
151574
|
+
member_pin_id?: (string | undefined) | undefined
|
|
151575
|
+
}
|
|
151576
|
+
| undefined
|
|
150141
151577
|
is_managed: false
|
|
150142
151578
|
}
|
|
150143
151579
|
}
|
|
@@ -150276,6 +151712,7 @@ export type Routes = {
|
|
|
150276
151712
|
| 'salto_ks_tag'
|
|
150277
151713
|
| 'avigilon_alta_credential'
|
|
150278
151714
|
| 'kisi_credential'
|
|
151715
|
+
| 'akiles_credential'
|
|
150279
151716
|
)
|
|
150280
151717
|
| undefined
|
|
150281
151718
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) type. */
|
|
@@ -150400,6 +151837,13 @@ export type Routes = {
|
|
|
150400
151837
|
endpoint_id?: (string | undefined) | undefined
|
|
150401
151838
|
}
|
|
150402
151839
|
| undefined
|
|
151840
|
+
/** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
|
|
151841
|
+
akiles_metadata?:
|
|
151842
|
+
| {
|
|
151843
|
+
/** ID of the Akiles member PIN. */
|
|
151844
|
+
member_pin_id?: (string | undefined) | undefined
|
|
151845
|
+
}
|
|
151846
|
+
| undefined
|
|
150403
151847
|
/** Indicates whether Seam manages the credential. */
|
|
150404
151848
|
is_managed: true
|
|
150405
151849
|
}
|