@seamapi/types 1.984.0 → 1.986.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.
Files changed (34) hide show
  1. package/lib/seam/connect/models/acs/acs-credential.d.ts +33 -7
  2. package/lib/seam/connect/models/acs/acs-credential.js +5 -1
  3. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  4. package/lib/seam/connect/models/acs/acs-entrance.js +7 -4
  5. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  6. package/lib/seam/connect/models/acs/metadata/akiles.d.ts +8 -0
  7. package/lib/seam/connect/models/acs/metadata/akiles.js +9 -0
  8. package/lib/seam/connect/models/acs/metadata/akiles.js.map +1 -1
  9. package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
  10. package/lib/seam/connect/models/acs/metadata/index.js +1 -0
  11. package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
  12. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +136 -29
  13. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +48 -10
  14. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +64 -14
  15. package/lib/seam/connect/models/action-attempts/scan-to-assign-credential.d.ts +24 -5
  16. package/lib/seam/connect/models/devices/device-metadata.js +1 -1
  17. package/lib/seam/connect/models/events/connected-accounts.js +5 -4
  18. package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
  19. package/lib/seam/connect/models/events/devices.js +12 -0
  20. package/lib/seam/connect/models/events/devices.js.map +1 -1
  21. package/lib/seam/connect/models/phones/phone-session.d.ts +56 -12
  22. package/lib/seam/connect/openapi.js +120 -16
  23. package/lib/seam/connect/openapi.js.map +1 -1
  24. package/lib/seam/connect/route-types.d.ts +1149 -441
  25. package/package.json +2 -2
  26. package/src/lib/seam/connect/models/acs/acs-credential.ts +7 -0
  27. package/src/lib/seam/connect/models/acs/acs-entrance.ts +10 -9
  28. package/src/lib/seam/connect/models/acs/metadata/akiles.ts +14 -0
  29. package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
  30. package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -1
  31. package/src/lib/seam/connect/models/events/connected-accounts.ts +5 -4
  32. package/src/lib/seam/connect/models/events/devices.ts +12 -0
  33. package/src/lib/seam/connect/openapi.ts +129 -16
  34. package/src/lib/seam/connect/route-types.ts +1513 -261
@@ -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
  }
@@ -13731,7 +13891,7 @@ export type Routes = {
13731
13891
  }
13732
13892
  | undefined
13733
13893
  /** Metada for a Salto device.
13734
- * @deprecated Use `salto_ks_metadata ` instead.*/
13894
+ * @deprecated Use `salto_ks_metadata` instead.*/
13735
13895
  salto_metadata?:
13736
13896
  | {
13737
13897
  /** Lock ID for a Salto device. */
@@ -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
  }
@@ -22043,7 +22283,7 @@ export type Routes = {
22043
22283
  }
22044
22284
  | undefined
22045
22285
  /** Metada for a Salto device.
22046
- * @deprecated Use `salto_ks_metadata ` instead.*/
22286
+ * @deprecated Use `salto_ks_metadata` instead.*/
22047
22287
  salto_metadata?:
22048
22288
  | {
22049
22289
  /** Lock ID for a Salto device. */
@@ -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
  }
@@ -49661,7 +50269,7 @@ export type Routes = {
49661
50269
  }
49662
50270
  | undefined
49663
50271
  /** Metada for a Salto device.
49664
- * @deprecated Use `salto_ks_metadata ` instead.*/
50272
+ * @deprecated Use `salto_ks_metadata` instead.*/
49665
50273
  salto_metadata?:
49666
50274
  | {
49667
50275
  /** Lock ID for a Salto device. */
@@ -51774,7 +52382,7 @@ export type Routes = {
51774
52382
  }
51775
52383
  | undefined
51776
52384
  /** Metada for a Salto device.
51777
- * @deprecated Use `salto_ks_metadata ` instead.*/
52385
+ * @deprecated Use `salto_ks_metadata` instead.*/
51778
52386
  salto_metadata?:
51779
52387
  | {
51780
52388
  /** Lock ID for a Salto device. */
@@ -58154,7 +58762,7 @@ export type Routes = {
58154
58762
  }
58155
58763
  | undefined
58156
58764
  event_type: 'connected_account.deleted'
58157
- /** undocumented: Unreleased. */
58765
+ /** */
58158
58766
  connected_account_type?: string | undefined
58159
58767
  /** The customer key associated with this connected account, if any. */
58160
58768
  customer_key?: string | undefined
@@ -59422,29 +60030,13 @@ export type Routes = {
59422
60030
  | 'unknown'
59423
60031
  | 'remote'
59424
60032
  | 'card'
59425
- /**
59426
- undocumented: Unreleased.
59427
- ---
59428
- ID of the user identity associated with the lock event.
59429
- */
60033
+ /** ID of the user identity associated with the lock event. */
59430
60034
  user_identity_id?: string | undefined
59431
- /**
59432
- undocumented: Unreleased.
59433
- ---
59434
- ID of the ACS system associated with the lock event.
59435
- */
60035
+ /** ID of the ACS system associated with the lock event. */
59436
60036
  acs_system_id?: string | undefined
59437
- /**
59438
- undocumented: Unreleased.
59439
- ---
59440
- ID of the ACS user associated with the lock event.
59441
- */
60037
+ /** ID of the ACS user associated with the lock event. */
59442
60038
  acs_user_id?: string | undefined
59443
- /**
59444
- undocumented: Unreleased.
59445
- ---
59446
- ID of the ACS entrance associated with the lock event.
59447
- */
60039
+ /** ID of the ACS entrance associated with the lock event. */
59448
60040
  acs_entrance_id?: string | undefined
59449
60041
  /**
59450
60042
  Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
@@ -59503,29 +60095,13 @@ export type Routes = {
59503
60095
  | 'unknown'
59504
60096
  | 'remote'
59505
60097
  | 'card'
59506
- /**
59507
- undocumented: Unreleased.
59508
- ---
59509
- ID of the user identity associated with the unlock event.
59510
- */
60098
+ /** ID of the user identity associated with the unlock event. */
59511
60099
  user_identity_id?: string | undefined
59512
- /**
59513
- undocumented: Unreleased.
59514
- ---
59515
- ID of the ACS system associated with the unlock event.
59516
- */
60100
+ /** ID of the ACS system associated with the unlock event. */
59517
60101
  acs_system_id?: string | undefined
59518
- /**
59519
- undocumented: Unreleased.
59520
- ---
59521
- ID of the ACS user associated with the unlock event.
59522
- */
60102
+ /** ID of the ACS user associated with the unlock event. */
59523
60103
  acs_user_id?: string | undefined
59524
- /**
59525
- undocumented: Unreleased.
59526
- ---
59527
- ID of the ACS entrance associated with the unlock event.
59528
- */
60104
+ /** ID of the ACS entrance associated with the unlock event. */
59529
60105
  acs_entrance_id?: string | undefined
59530
60106
  /**
59531
60107
  Whether the unlock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
@@ -59568,29 +60144,13 @@ export type Routes = {
59568
60144
  event_type: 'lock.access_denied'
59569
60145
  /** ID of the access code that was used in the unlock attempts. */
59570
60146
  access_code_id?: string | undefined
59571
- /**
59572
- undocumented: Unreleased.
59573
- ---
59574
- ID of the user identity associated with the access-denied event.
59575
- */
60147
+ /** ID of the user identity associated with the access-denied event. */
59576
60148
  user_identity_id?: string | undefined
59577
- /**
59578
- undocumented: Unreleased.
59579
- ---
59580
- ID of the ACS system associated with the access-denied event.
59581
- */
60149
+ /** ID of the ACS system associated with the access-denied event. */
59582
60150
  acs_system_id?: string | undefined
59583
- /**
59584
- undocumented: Unreleased.
59585
- ---
59586
- ID of the ACS user associated with the access-denied event.
59587
- */
60151
+ /** ID of the ACS user associated with the access-denied event. */
59588
60152
  acs_user_id?: string | undefined
59589
- /**
59590
- undocumented: Unreleased.
59591
- ---
59592
- ID of the ACS entrance associated with the access-denied event.
59593
- */
60153
+ /** ID of the ACS entrance associated with the access-denied event. */
59594
60154
  acs_entrance_id?: string | undefined
59595
60155
  /** Why access was denied, when the provider reports a determinable cause. Omitted when unknown. */
59596
60156
  reason?:
@@ -62110,7 +62670,7 @@ export type Routes = {
62110
62670
  }
62111
62671
  | undefined
62112
62672
  event_type: 'connected_account.deleted'
62113
- /** undocumented: Unreleased. */
62673
+ /** */
62114
62674
  connected_account_type?: string | undefined
62115
62675
  /** The customer key associated with this connected account, if any. */
62116
62676
  customer_key?: string | undefined
@@ -63378,29 +63938,13 @@ export type Routes = {
63378
63938
  | 'unknown'
63379
63939
  | 'remote'
63380
63940
  | 'card'
63381
- /**
63382
- undocumented: Unreleased.
63383
- ---
63384
- ID of the user identity associated with the lock event.
63385
- */
63941
+ /** ID of the user identity associated with the lock event. */
63386
63942
  user_identity_id?: string | undefined
63387
- /**
63388
- undocumented: Unreleased.
63389
- ---
63390
- ID of the ACS system associated with the lock event.
63391
- */
63943
+ /** ID of the ACS system associated with the lock event. */
63392
63944
  acs_system_id?: string | undefined
63393
- /**
63394
- undocumented: Unreleased.
63395
- ---
63396
- ID of the ACS user associated with the lock event.
63397
- */
63945
+ /** ID of the ACS user associated with the lock event. */
63398
63946
  acs_user_id?: string | undefined
63399
- /**
63400
- undocumented: Unreleased.
63401
- ---
63402
- ID of the ACS entrance associated with the lock event.
63403
- */
63947
+ /** ID of the ACS entrance associated with the lock event. */
63404
63948
  acs_entrance_id?: string | undefined
63405
63949
  /**
63406
63950
  Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
@@ -63459,29 +64003,13 @@ export type Routes = {
63459
64003
  | 'unknown'
63460
64004
  | 'remote'
63461
64005
  | 'card'
63462
- /**
63463
- undocumented: Unreleased.
63464
- ---
63465
- ID of the user identity associated with the unlock event.
63466
- */
64006
+ /** ID of the user identity associated with the unlock event. */
63467
64007
  user_identity_id?: string | undefined
63468
- /**
63469
- undocumented: Unreleased.
63470
- ---
63471
- ID of the ACS system associated with the unlock event.
63472
- */
64008
+ /** ID of the ACS system associated with the unlock event. */
63473
64009
  acs_system_id?: string | undefined
63474
- /**
63475
- undocumented: Unreleased.
63476
- ---
63477
- ID of the ACS user associated with the unlock event.
63478
- */
64010
+ /** ID of the ACS user associated with the unlock event. */
63479
64011
  acs_user_id?: string | undefined
63480
- /**
63481
- undocumented: Unreleased.
63482
- ---
63483
- ID of the ACS entrance associated with the unlock event.
63484
- */
64012
+ /** ID of the ACS entrance associated with the unlock event. */
63485
64013
  acs_entrance_id?: string | undefined
63486
64014
  /**
63487
64015
  Whether the unlock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
@@ -63524,29 +64052,13 @@ export type Routes = {
63524
64052
  event_type: 'lock.access_denied'
63525
64053
  /** ID of the access code that was used in the unlock attempts. */
63526
64054
  access_code_id?: string | undefined
63527
- /**
63528
- undocumented: Unreleased.
63529
- ---
63530
- ID of the user identity associated with the access-denied event.
63531
- */
64055
+ /** ID of the user identity associated with the access-denied event. */
63532
64056
  user_identity_id?: string | undefined
63533
- /**
63534
- undocumented: Unreleased.
63535
- ---
63536
- ID of the ACS system associated with the access-denied event.
63537
- */
64057
+ /** ID of the ACS system associated with the access-denied event. */
63538
64058
  acs_system_id?: string | undefined
63539
- /**
63540
- undocumented: Unreleased.
63541
- ---
63542
- ID of the ACS user associated with the access-denied event.
63543
- */
64059
+ /** ID of the ACS user associated with the access-denied event. */
63544
64060
  acs_user_id?: string | undefined
63545
- /**
63546
- undocumented: Unreleased.
63547
- ---
63548
- ID of the ACS entrance associated with the access-denied event.
63549
- */
64061
+ /** ID of the ACS entrance associated with the access-denied event. */
63550
64062
  acs_entrance_id?: string | undefined
63551
64063
  /** Why access was denied, when the provider reports a determinable cause. Omitted when unknown. */
63552
64064
  reason?:
@@ -64353,6 +64865,7 @@ export type Routes = {
64353
64865
  | 'salto_ks_tag'
64354
64866
  | 'avigilon_alta_credential'
64355
64867
  | 'kisi_credential'
64868
+ | 'akiles_credential'
64356
64869
  )
64357
64870
  | undefined
64358
64871
  /** 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 +64996,13 @@ export type Routes = {
64483
64996
  endpoint_id?: (string | undefined) | undefined
64484
64997
  }
64485
64998
  | undefined
64999
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
65000
+ akiles_metadata?:
65001
+ | {
65002
+ /** ID of the Akiles member PIN. */
65003
+ member_pin_id?: (string | undefined) | undefined
65004
+ }
65005
+ | undefined
64486
65006
  /** Indicates whether Seam manages the credential. */
64487
65007
  is_managed: true
64488
65008
  }
@@ -64535,6 +65055,7 @@ export type Routes = {
64535
65055
  | 'salto_ks_tag'
64536
65056
  | 'avigilon_alta_credential'
64537
65057
  | 'kisi_credential'
65058
+ | 'akiles_credential'
64538
65059
  )
64539
65060
  | undefined
64540
65061
  /** 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 +65186,13 @@ export type Routes = {
64665
65186
  endpoint_id?: (string | undefined) | undefined
64666
65187
  }
64667
65188
  | undefined
65189
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
65190
+ akiles_metadata?:
65191
+ | {
65192
+ /** ID of the Akiles member PIN. */
65193
+ member_pin_id?: (string | undefined) | undefined
65194
+ }
65195
+ | undefined
64668
65196
  is_managed: false
64669
65197
  }
64670
65198
  )
@@ -64792,6 +65320,7 @@ export type Routes = {
64792
65320
  | 'salto_ks_tag'
64793
65321
  | 'avigilon_alta_credential'
64794
65322
  | 'kisi_credential'
65323
+ | 'akiles_credential'
64795
65324
  )
64796
65325
  | undefined
64797
65326
  /** 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 +65451,13 @@ export type Routes = {
64922
65451
  endpoint_id?: (string | undefined) | undefined
64923
65452
  }
64924
65453
  | undefined
65454
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
65455
+ akiles_metadata?:
65456
+ | {
65457
+ /** ID of the Akiles member PIN. */
65458
+ member_pin_id?: (string | undefined) | undefined
65459
+ }
65460
+ | undefined
64925
65461
  /** Indicates whether Seam manages the credential. */
64926
65462
  is_managed: true
64927
65463
  }
@@ -64970,6 +65506,7 @@ export type Routes = {
64970
65506
  | 'salto_ks_tag'
64971
65507
  | 'avigilon_alta_credential'
64972
65508
  | 'kisi_credential'
65509
+ | 'akiles_credential'
64973
65510
  )
64974
65511
  | undefined
64975
65512
  /** 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 +65637,13 @@ export type Routes = {
65100
65637
  endpoint_id?: (string | undefined) | undefined
65101
65638
  }
65102
65639
  | undefined
65640
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
65641
+ akiles_metadata?:
65642
+ | {
65643
+ /** ID of the Akiles member PIN. */
65644
+ member_pin_id?: (string | undefined) | undefined
65645
+ }
65646
+ | undefined
65103
65647
  is_managed: false
65104
65648
  }
65105
65649
  }
@@ -65238,6 +65782,7 @@ export type Routes = {
65238
65782
  | 'salto_ks_tag'
65239
65783
  | 'avigilon_alta_credential'
65240
65784
  | 'kisi_credential'
65785
+ | 'akiles_credential'
65241
65786
  )
65242
65787
  | undefined
65243
65788
  /** 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 +65907,13 @@ export type Routes = {
65362
65907
  endpoint_id?: (string | undefined) | undefined
65363
65908
  }
65364
65909
  | undefined
65910
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
65911
+ akiles_metadata?:
65912
+ | {
65913
+ /** ID of the Akiles member PIN. */
65914
+ member_pin_id?: (string | undefined) | undefined
65915
+ }
65916
+ | undefined
65365
65917
  /** Indicates whether Seam manages the credential. */
65366
65918
  is_managed: true
65367
65919
  }
@@ -66485,7 +67037,7 @@ export type Routes = {
66485
67037
  }
66486
67038
  | undefined
66487
67039
  /** Metada for a Salto device.
66488
- * @deprecated Use `salto_ks_metadata ` instead.*/
67040
+ * @deprecated Use `salto_ks_metadata` instead.*/
66489
67041
  salto_metadata?:
66490
67042
  | {
66491
67043
  /** Lock ID for a Salto device. */
@@ -68352,7 +68904,7 @@ export type Routes = {
68352
68904
  }
68353
68905
  | undefined
68354
68906
  /** Metada for a Salto device.
68355
- * @deprecated Use `salto_ks_metadata ` instead.*/
68907
+ * @deprecated Use `salto_ks_metadata` instead.*/
68356
68908
  salto_metadata?:
68357
68909
  | {
68358
68910
  /** Lock ID for a Salto device. */
@@ -70418,7 +70970,7 @@ export type Routes = {
70418
70970
  }
70419
70971
  | undefined
70420
70972
  /** Metada for a Salto device.
70421
- * @deprecated Use `salto_ks_metadata ` instead.*/
70973
+ * @deprecated Use `salto_ks_metadata` instead.*/
70422
70974
  salto_metadata?:
70423
70975
  | {
70424
70976
  /** Lock ID for a Salto device. */
@@ -72284,7 +72836,7 @@ export type Routes = {
72284
72836
  }
72285
72837
  | undefined
72286
72838
  /** Metada for a Salto device.
72287
- * @deprecated Use `salto_ks_metadata ` instead.*/
72839
+ * @deprecated Use `salto_ks_metadata` instead.*/
72288
72840
  salto_metadata?:
72289
72841
  | {
72290
72842
  /** Lock ID for a Salto device. */
@@ -74081,6 +74633,7 @@ export type Routes = {
74081
74633
  | 'salto_ks_tag'
74082
74634
  | 'avigilon_alta_credential'
74083
74635
  | 'kisi_credential'
74636
+ | 'akiles_credential'
74084
74637
  )
74085
74638
  | undefined
74086
74639
  /** 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 +74764,13 @@ export type Routes = {
74211
74764
  endpoint_id?: (string | undefined) | undefined
74212
74765
  }
74213
74766
  | undefined
74767
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
74768
+ akiles_metadata?:
74769
+ | {
74770
+ /** ID of the Akiles member PIN. */
74771
+ member_pin_id?: (string | undefined) | undefined
74772
+ }
74773
+ | undefined
74214
74774
  /** Indicates whether Seam manages the credential. */
74215
74775
  is_managed: true
74216
74776
  }
@@ -74263,6 +74823,7 @@ export type Routes = {
74263
74823
  | 'salto_ks_tag'
74264
74824
  | 'avigilon_alta_credential'
74265
74825
  | 'kisi_credential'
74826
+ | 'akiles_credential'
74266
74827
  )
74267
74828
  | undefined
74268
74829
  /** 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 +74954,13 @@ export type Routes = {
74393
74954
  endpoint_id?: (string | undefined) | undefined
74394
74955
  }
74395
74956
  | undefined
74957
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
74958
+ akiles_metadata?:
74959
+ | {
74960
+ /** ID of the Akiles member PIN. */
74961
+ member_pin_id?: (string | undefined) | undefined
74962
+ }
74963
+ | undefined
74396
74964
  is_managed: false
74397
74965
  }
74398
74966
  )
@@ -74520,6 +75088,7 @@ export type Routes = {
74520
75088
  | 'salto_ks_tag'
74521
75089
  | 'avigilon_alta_credential'
74522
75090
  | 'kisi_credential'
75091
+ | 'akiles_credential'
74523
75092
  )
74524
75093
  | undefined
74525
75094
  /** 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 +75219,13 @@ export type Routes = {
74650
75219
  endpoint_id?: (string | undefined) | undefined
74651
75220
  }
74652
75221
  | undefined
75222
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
75223
+ akiles_metadata?:
75224
+ | {
75225
+ /** ID of the Akiles member PIN. */
75226
+ member_pin_id?: (string | undefined) | undefined
75227
+ }
75228
+ | undefined
74653
75229
  /** Indicates whether Seam manages the credential. */
74654
75230
  is_managed: true
74655
75231
  }
@@ -74698,6 +75274,7 @@ export type Routes = {
74698
75274
  | 'salto_ks_tag'
74699
75275
  | 'avigilon_alta_credential'
74700
75276
  | 'kisi_credential'
75277
+ | 'akiles_credential'
74701
75278
  )
74702
75279
  | undefined
74703
75280
  /** 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 +75405,13 @@ export type Routes = {
74828
75405
  endpoint_id?: (string | undefined) | undefined
74829
75406
  }
74830
75407
  | undefined
75408
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
75409
+ akiles_metadata?:
75410
+ | {
75411
+ /** ID of the Akiles member PIN. */
75412
+ member_pin_id?: (string | undefined) | undefined
75413
+ }
75414
+ | undefined
74831
75415
  is_managed: false
74832
75416
  }
74833
75417
  }
@@ -74966,6 +75550,7 @@ export type Routes = {
74966
75550
  | 'salto_ks_tag'
74967
75551
  | 'avigilon_alta_credential'
74968
75552
  | 'kisi_credential'
75553
+ | 'akiles_credential'
74969
75554
  )
74970
75555
  | undefined
74971
75556
  /** 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 +75675,13 @@ export type Routes = {
75090
75675
  endpoint_id?: (string | undefined) | undefined
75091
75676
  }
75092
75677
  | undefined
75678
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
75679
+ akiles_metadata?:
75680
+ | {
75681
+ /** ID of the Akiles member PIN. */
75682
+ member_pin_id?: (string | undefined) | undefined
75683
+ }
75684
+ | undefined
75093
75685
  /** Indicates whether Seam manages the credential. */
75094
75686
  is_managed: true
75095
75687
  }
@@ -76127,6 +76719,7 @@ export type Routes = {
76127
76719
  | 'salto_ks_tag'
76128
76720
  | 'avigilon_alta_credential'
76129
76721
  | 'kisi_credential'
76722
+ | 'akiles_credential'
76130
76723
  )
76131
76724
  | undefined
76132
76725
  /** 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 +76850,13 @@ export type Routes = {
76257
76850
  endpoint_id?: (string | undefined) | undefined
76258
76851
  }
76259
76852
  | undefined
76853
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
76854
+ akiles_metadata?:
76855
+ | {
76856
+ /** ID of the Akiles member PIN. */
76857
+ member_pin_id?: (string | undefined) | undefined
76858
+ }
76859
+ | undefined
76260
76860
  /** Indicates whether Seam manages the credential. */
76261
76861
  is_managed: true
76262
76862
  }
@@ -76309,6 +76909,7 @@ export type Routes = {
76309
76909
  | 'salto_ks_tag'
76310
76910
  | 'avigilon_alta_credential'
76311
76911
  | 'kisi_credential'
76912
+ | 'akiles_credential'
76312
76913
  )
76313
76914
  | undefined
76314
76915
  /** 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 +77040,13 @@ export type Routes = {
76439
77040
  endpoint_id?: (string | undefined) | undefined
76440
77041
  }
76441
77042
  | undefined
77043
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
77044
+ akiles_metadata?:
77045
+ | {
77046
+ /** ID of the Akiles member PIN. */
77047
+ member_pin_id?: (string | undefined) | undefined
77048
+ }
77049
+ | undefined
76442
77050
  is_managed: false
76443
77051
  }
76444
77052
  )
@@ -76566,6 +77174,7 @@ export type Routes = {
76566
77174
  | 'salto_ks_tag'
76567
77175
  | 'avigilon_alta_credential'
76568
77176
  | 'kisi_credential'
77177
+ | 'akiles_credential'
76569
77178
  )
76570
77179
  | undefined
76571
77180
  /** 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 +77305,13 @@ export type Routes = {
76696
77305
  endpoint_id?: (string | undefined) | undefined
76697
77306
  }
76698
77307
  | undefined
77308
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
77309
+ akiles_metadata?:
77310
+ | {
77311
+ /** ID of the Akiles member PIN. */
77312
+ member_pin_id?: (string | undefined) | undefined
77313
+ }
77314
+ | undefined
76699
77315
  /** Indicates whether Seam manages the credential. */
76700
77316
  is_managed: true
76701
77317
  }
@@ -76744,6 +77360,7 @@ export type Routes = {
76744
77360
  | 'salto_ks_tag'
76745
77361
  | 'avigilon_alta_credential'
76746
77362
  | 'kisi_credential'
77363
+ | 'akiles_credential'
76747
77364
  )
76748
77365
  | undefined
76749
77366
  /** 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 +77491,13 @@ export type Routes = {
76874
77491
  endpoint_id?: (string | undefined) | undefined
76875
77492
  }
76876
77493
  | undefined
77494
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
77495
+ akiles_metadata?:
77496
+ | {
77497
+ /** ID of the Akiles member PIN. */
77498
+ member_pin_id?: (string | undefined) | undefined
77499
+ }
77500
+ | undefined
76877
77501
  is_managed: false
76878
77502
  }
76879
77503
  }
@@ -77012,6 +77636,7 @@ export type Routes = {
77012
77636
  | 'salto_ks_tag'
77013
77637
  | 'avigilon_alta_credential'
77014
77638
  | 'kisi_credential'
77639
+ | 'akiles_credential'
77015
77640
  )
77016
77641
  | undefined
77017
77642
  /** 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 +77761,13 @@ export type Routes = {
77136
77761
  endpoint_id?: (string | undefined) | undefined
77137
77762
  }
77138
77763
  | undefined
77764
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
77765
+ akiles_metadata?:
77766
+ | {
77767
+ /** ID of the Akiles member PIN. */
77768
+ member_pin_id?: (string | undefined) | undefined
77769
+ }
77770
+ | undefined
77139
77771
  /** Indicates whether Seam manages the credential. */
77140
77772
  is_managed: true
77141
77773
  }
@@ -78171,6 +78803,7 @@ export type Routes = {
78171
78803
  | 'salto_ks_tag'
78172
78804
  | 'avigilon_alta_credential'
78173
78805
  | 'kisi_credential'
78806
+ | 'akiles_credential'
78174
78807
  )
78175
78808
  | undefined
78176
78809
  /** 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 +78934,13 @@ export type Routes = {
78301
78934
  endpoint_id?: (string | undefined) | undefined
78302
78935
  }
78303
78936
  | undefined
78937
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
78938
+ akiles_metadata?:
78939
+ | {
78940
+ /** ID of the Akiles member PIN. */
78941
+ member_pin_id?: (string | undefined) | undefined
78942
+ }
78943
+ | undefined
78304
78944
  /** Indicates whether Seam manages the credential. */
78305
78945
  is_managed: true
78306
78946
  }
@@ -78353,6 +78993,7 @@ export type Routes = {
78353
78993
  | 'salto_ks_tag'
78354
78994
  | 'avigilon_alta_credential'
78355
78995
  | 'kisi_credential'
78996
+ | 'akiles_credential'
78356
78997
  )
78357
78998
  | undefined
78358
78999
  /** 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 +79124,13 @@ export type Routes = {
78483
79124
  endpoint_id?: (string | undefined) | undefined
78484
79125
  }
78485
79126
  | undefined
79127
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
79128
+ akiles_metadata?:
79129
+ | {
79130
+ /** ID of the Akiles member PIN. */
79131
+ member_pin_id?: (string | undefined) | undefined
79132
+ }
79133
+ | undefined
78486
79134
  is_managed: false
78487
79135
  }
78488
79136
  )
@@ -78610,6 +79258,7 @@ export type Routes = {
78610
79258
  | 'salto_ks_tag'
78611
79259
  | 'avigilon_alta_credential'
78612
79260
  | 'kisi_credential'
79261
+ | 'akiles_credential'
78613
79262
  )
78614
79263
  | undefined
78615
79264
  /** 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 +79389,13 @@ export type Routes = {
78740
79389
  endpoint_id?: (string | undefined) | undefined
78741
79390
  }
78742
79391
  | undefined
79392
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
79393
+ akiles_metadata?:
79394
+ | {
79395
+ /** ID of the Akiles member PIN. */
79396
+ member_pin_id?: (string | undefined) | undefined
79397
+ }
79398
+ | undefined
78743
79399
  /** Indicates whether Seam manages the credential. */
78744
79400
  is_managed: true
78745
79401
  }
@@ -78788,6 +79444,7 @@ export type Routes = {
78788
79444
  | 'salto_ks_tag'
78789
79445
  | 'avigilon_alta_credential'
78790
79446
  | 'kisi_credential'
79447
+ | 'akiles_credential'
78791
79448
  )
78792
79449
  | undefined
78793
79450
  /** 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 +79575,13 @@ export type Routes = {
78918
79575
  endpoint_id?: (string | undefined) | undefined
78919
79576
  }
78920
79577
  | undefined
79578
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
79579
+ akiles_metadata?:
79580
+ | {
79581
+ /** ID of the Akiles member PIN. */
79582
+ member_pin_id?: (string | undefined) | undefined
79583
+ }
79584
+ | undefined
78921
79585
  is_managed: false
78922
79586
  }
78923
79587
  }
@@ -79056,6 +79720,7 @@ export type Routes = {
79056
79720
  | 'salto_ks_tag'
79057
79721
  | 'avigilon_alta_credential'
79058
79722
  | 'kisi_credential'
79723
+ | 'akiles_credential'
79059
79724
  )
79060
79725
  | undefined
79061
79726
  /** 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 +79845,13 @@ export type Routes = {
79180
79845
  endpoint_id?: (string | undefined) | undefined
79181
79846
  }
79182
79847
  | undefined
79848
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
79849
+ akiles_metadata?:
79850
+ | {
79851
+ /** ID of the Akiles member PIN. */
79852
+ member_pin_id?: (string | undefined) | undefined
79853
+ }
79854
+ | undefined
79183
79855
  /** Indicates whether Seam manages the credential. */
79184
79856
  is_managed: true
79185
79857
  }
@@ -80217,6 +80889,7 @@ export type Routes = {
80217
80889
  | 'salto_ks_tag'
80218
80890
  | 'avigilon_alta_credential'
80219
80891
  | 'kisi_credential'
80892
+ | 'akiles_credential'
80220
80893
  )
80221
80894
  | undefined
80222
80895
  /** 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 +81020,13 @@ export type Routes = {
80347
81020
  endpoint_id?: (string | undefined) | undefined
80348
81021
  }
80349
81022
  | undefined
81023
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
81024
+ akiles_metadata?:
81025
+ | {
81026
+ /** ID of the Akiles member PIN. */
81027
+ member_pin_id?: (string | undefined) | undefined
81028
+ }
81029
+ | undefined
80350
81030
  /** Indicates whether Seam manages the credential. */
80351
81031
  is_managed: true
80352
81032
  }
@@ -80399,6 +81079,7 @@ export type Routes = {
80399
81079
  | 'salto_ks_tag'
80400
81080
  | 'avigilon_alta_credential'
80401
81081
  | 'kisi_credential'
81082
+ | 'akiles_credential'
80402
81083
  )
80403
81084
  | undefined
80404
81085
  /** 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 +81210,13 @@ export type Routes = {
80529
81210
  endpoint_id?: (string | undefined) | undefined
80530
81211
  }
80531
81212
  | undefined
81213
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
81214
+ akiles_metadata?:
81215
+ | {
81216
+ /** ID of the Akiles member PIN. */
81217
+ member_pin_id?: (string | undefined) | undefined
81218
+ }
81219
+ | undefined
80532
81220
  is_managed: false
80533
81221
  }
80534
81222
  )
@@ -80656,6 +81344,7 @@ export type Routes = {
80656
81344
  | 'salto_ks_tag'
80657
81345
  | 'avigilon_alta_credential'
80658
81346
  | 'kisi_credential'
81347
+ | 'akiles_credential'
80659
81348
  )
80660
81349
  | undefined
80661
81350
  /** 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 +81475,13 @@ export type Routes = {
80786
81475
  endpoint_id?: (string | undefined) | undefined
80787
81476
  }
80788
81477
  | undefined
81478
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
81479
+ akiles_metadata?:
81480
+ | {
81481
+ /** ID of the Akiles member PIN. */
81482
+ member_pin_id?: (string | undefined) | undefined
81483
+ }
81484
+ | undefined
80789
81485
  /** Indicates whether Seam manages the credential. */
80790
81486
  is_managed: true
80791
81487
  }
@@ -80834,6 +81530,7 @@ export type Routes = {
80834
81530
  | 'salto_ks_tag'
80835
81531
  | 'avigilon_alta_credential'
80836
81532
  | 'kisi_credential'
81533
+ | 'akiles_credential'
80837
81534
  )
80838
81535
  | undefined
80839
81536
  /** 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 +81661,13 @@ export type Routes = {
80964
81661
  endpoint_id?: (string | undefined) | undefined
80965
81662
  }
80966
81663
  | undefined
81664
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
81665
+ akiles_metadata?:
81666
+ | {
81667
+ /** ID of the Akiles member PIN. */
81668
+ member_pin_id?: (string | undefined) | undefined
81669
+ }
81670
+ | undefined
80967
81671
  is_managed: false
80968
81672
  }
80969
81673
  }
@@ -81102,6 +81806,7 @@ export type Routes = {
81102
81806
  | 'salto_ks_tag'
81103
81807
  | 'avigilon_alta_credential'
81104
81808
  | 'kisi_credential'
81809
+ | 'akiles_credential'
81105
81810
  )
81106
81811
  | undefined
81107
81812
  /** 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 +81931,13 @@ export type Routes = {
81226
81931
  endpoint_id?: (string | undefined) | undefined
81227
81932
  }
81228
81933
  | undefined
81934
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
81935
+ akiles_metadata?:
81936
+ | {
81937
+ /** ID of the Akiles member PIN. */
81938
+ member_pin_id?: (string | undefined) | undefined
81939
+ }
81940
+ | undefined
81229
81941
  /** Indicates whether Seam manages the credential. */
81230
81942
  is_managed: true
81231
81943
  }
@@ -82431,7 +83143,7 @@ export type Routes = {
82431
83143
  }
82432
83144
  | undefined
82433
83145
  /** Metada for a Salto device.
82434
- * @deprecated Use `salto_ks_metadata ` instead.*/
83146
+ * @deprecated Use `salto_ks_metadata` instead.*/
82435
83147
  salto_metadata?:
82436
83148
  | {
82437
83149
  /** Lock ID for a Salto device. */
@@ -84297,7 +85009,7 @@ export type Routes = {
84297
85009
  }
84298
85010
  | undefined
84299
85011
  /** Metada for a Salto device.
84300
- * @deprecated Use `salto_ks_metadata ` instead.*/
85012
+ * @deprecated Use `salto_ks_metadata` instead.*/
84301
85013
  salto_metadata?:
84302
85014
  | {
84303
85015
  /** Lock ID for a Salto device. */
@@ -86104,6 +86816,7 @@ export type Routes = {
86104
86816
  | 'salto_ks_tag'
86105
86817
  | 'avigilon_alta_credential'
86106
86818
  | 'kisi_credential'
86819
+ | 'akiles_credential'
86107
86820
  )
86108
86821
  | undefined
86109
86822
  /** 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 +86947,13 @@ export type Routes = {
86234
86947
  endpoint_id?: (string | undefined) | undefined
86235
86948
  }
86236
86949
  | undefined
86950
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
86951
+ akiles_metadata?:
86952
+ | {
86953
+ /** ID of the Akiles member PIN. */
86954
+ member_pin_id?: (string | undefined) | undefined
86955
+ }
86956
+ | undefined
86237
86957
  /** Indicates whether Seam manages the credential. */
86238
86958
  is_managed: true
86239
86959
  }
@@ -86286,6 +87006,7 @@ export type Routes = {
86286
87006
  | 'salto_ks_tag'
86287
87007
  | 'avigilon_alta_credential'
86288
87008
  | 'kisi_credential'
87009
+ | 'akiles_credential'
86289
87010
  )
86290
87011
  | undefined
86291
87012
  /** 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 +87137,13 @@ export type Routes = {
86416
87137
  endpoint_id?: (string | undefined) | undefined
86417
87138
  }
86418
87139
  | undefined
87140
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
87141
+ akiles_metadata?:
87142
+ | {
87143
+ /** ID of the Akiles member PIN. */
87144
+ member_pin_id?: (string | undefined) | undefined
87145
+ }
87146
+ | undefined
86419
87147
  is_managed: false
86420
87148
  }
86421
87149
  )
@@ -86543,6 +87271,7 @@ export type Routes = {
86543
87271
  | 'salto_ks_tag'
86544
87272
  | 'avigilon_alta_credential'
86545
87273
  | 'kisi_credential'
87274
+ | 'akiles_credential'
86546
87275
  )
86547
87276
  | undefined
86548
87277
  /** 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 +87402,13 @@ export type Routes = {
86673
87402
  endpoint_id?: (string | undefined) | undefined
86674
87403
  }
86675
87404
  | undefined
87405
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
87406
+ akiles_metadata?:
87407
+ | {
87408
+ /** ID of the Akiles member PIN. */
87409
+ member_pin_id?: (string | undefined) | undefined
87410
+ }
87411
+ | undefined
86676
87412
  /** Indicates whether Seam manages the credential. */
86677
87413
  is_managed: true
86678
87414
  }
@@ -86721,6 +87457,7 @@ export type Routes = {
86721
87457
  | 'salto_ks_tag'
86722
87458
  | 'avigilon_alta_credential'
86723
87459
  | 'kisi_credential'
87460
+ | 'akiles_credential'
86724
87461
  )
86725
87462
  | undefined
86726
87463
  /** 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 +87588,13 @@ export type Routes = {
86851
87588
  endpoint_id?: (string | undefined) | undefined
86852
87589
  }
86853
87590
  | undefined
87591
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
87592
+ akiles_metadata?:
87593
+ | {
87594
+ /** ID of the Akiles member PIN. */
87595
+ member_pin_id?: (string | undefined) | undefined
87596
+ }
87597
+ | undefined
86854
87598
  is_managed: false
86855
87599
  }
86856
87600
  }
@@ -86989,6 +87733,7 @@ export type Routes = {
86989
87733
  | 'salto_ks_tag'
86990
87734
  | 'avigilon_alta_credential'
86991
87735
  | 'kisi_credential'
87736
+ | 'akiles_credential'
86992
87737
  )
86993
87738
  | undefined
86994
87739
  /** 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 +87858,13 @@ export type Routes = {
87113
87858
  endpoint_id?: (string | undefined) | undefined
87114
87859
  }
87115
87860
  | undefined
87861
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
87862
+ akiles_metadata?:
87863
+ | {
87864
+ /** ID of the Akiles member PIN. */
87865
+ member_pin_id?: (string | undefined) | undefined
87866
+ }
87867
+ | undefined
87116
87868
  /** Indicates whether Seam manages the credential. */
87117
87869
  is_managed: true
87118
87870
  }
@@ -88169,6 +88921,7 @@ export type Routes = {
88169
88921
  | 'salto_ks_tag'
88170
88922
  | 'avigilon_alta_credential'
88171
88923
  | 'kisi_credential'
88924
+ | 'akiles_credential'
88172
88925
  )
88173
88926
  | undefined
88174
88927
  /** 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 +89052,13 @@ export type Routes = {
88299
89052
  endpoint_id?: (string | undefined) | undefined
88300
89053
  }
88301
89054
  | undefined
89055
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
89056
+ akiles_metadata?:
89057
+ | {
89058
+ /** ID of the Akiles member PIN. */
89059
+ member_pin_id?: (string | undefined) | undefined
89060
+ }
89061
+ | undefined
88302
89062
  /** Indicates whether Seam manages the credential. */
88303
89063
  is_managed: true
88304
89064
  }
@@ -88351,6 +89111,7 @@ export type Routes = {
88351
89111
  | 'salto_ks_tag'
88352
89112
  | 'avigilon_alta_credential'
88353
89113
  | 'kisi_credential'
89114
+ | 'akiles_credential'
88354
89115
  )
88355
89116
  | undefined
88356
89117
  /** 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 +89242,13 @@ export type Routes = {
88481
89242
  endpoint_id?: (string | undefined) | undefined
88482
89243
  }
88483
89244
  | undefined
89245
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
89246
+ akiles_metadata?:
89247
+ | {
89248
+ /** ID of the Akiles member PIN. */
89249
+ member_pin_id?: (string | undefined) | undefined
89250
+ }
89251
+ | undefined
88484
89252
  is_managed: false
88485
89253
  }
88486
89254
  )
@@ -88608,6 +89376,7 @@ export type Routes = {
88608
89376
  | 'salto_ks_tag'
88609
89377
  | 'avigilon_alta_credential'
88610
89378
  | 'kisi_credential'
89379
+ | 'akiles_credential'
88611
89380
  )
88612
89381
  | undefined
88613
89382
  /** 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 +89507,13 @@ export type Routes = {
88738
89507
  endpoint_id?: (string | undefined) | undefined
88739
89508
  }
88740
89509
  | undefined
89510
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
89511
+ akiles_metadata?:
89512
+ | {
89513
+ /** ID of the Akiles member PIN. */
89514
+ member_pin_id?: (string | undefined) | undefined
89515
+ }
89516
+ | undefined
88741
89517
  /** Indicates whether Seam manages the credential. */
88742
89518
  is_managed: true
88743
89519
  }
@@ -88786,6 +89562,7 @@ export type Routes = {
88786
89562
  | 'salto_ks_tag'
88787
89563
  | 'avigilon_alta_credential'
88788
89564
  | 'kisi_credential'
89565
+ | 'akiles_credential'
88789
89566
  )
88790
89567
  | undefined
88791
89568
  /** 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 +89693,13 @@ export type Routes = {
88916
89693
  endpoint_id?: (string | undefined) | undefined
88917
89694
  }
88918
89695
  | undefined
89696
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
89697
+ akiles_metadata?:
89698
+ | {
89699
+ /** ID of the Akiles member PIN. */
89700
+ member_pin_id?: (string | undefined) | undefined
89701
+ }
89702
+ | undefined
88919
89703
  is_managed: false
88920
89704
  }
88921
89705
  }
@@ -89054,6 +89838,7 @@ export type Routes = {
89054
89838
  | 'salto_ks_tag'
89055
89839
  | 'avigilon_alta_credential'
89056
89840
  | 'kisi_credential'
89841
+ | 'akiles_credential'
89057
89842
  )
89058
89843
  | undefined
89059
89844
  /** 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 +89963,13 @@ export type Routes = {
89178
89963
  endpoint_id?: (string | undefined) | undefined
89179
89964
  }
89180
89965
  | undefined
89966
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
89967
+ akiles_metadata?:
89968
+ | {
89969
+ /** ID of the Akiles member PIN. */
89970
+ member_pin_id?: (string | undefined) | undefined
89971
+ }
89972
+ | undefined
89181
89973
  /** Indicates whether Seam manages the credential. */
89182
89974
  is_managed: true
89183
89975
  }
@@ -90290,6 +91082,7 @@ export type Routes = {
90290
91082
  | 'salto_ks_tag'
90291
91083
  | 'avigilon_alta_credential'
90292
91084
  | 'kisi_credential'
91085
+ | 'akiles_credential'
90293
91086
  )
90294
91087
  | undefined
90295
91088
  /** 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 +91213,13 @@ export type Routes = {
90420
91213
  endpoint_id?: (string | undefined) | undefined
90421
91214
  }
90422
91215
  | undefined
91216
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
91217
+ akiles_metadata?:
91218
+ | {
91219
+ /** ID of the Akiles member PIN. */
91220
+ member_pin_id?: (string | undefined) | undefined
91221
+ }
91222
+ | undefined
90423
91223
  /** Indicates whether Seam manages the credential. */
90424
91224
  is_managed: true
90425
91225
  }
@@ -90472,6 +91272,7 @@ export type Routes = {
90472
91272
  | 'salto_ks_tag'
90473
91273
  | 'avigilon_alta_credential'
90474
91274
  | 'kisi_credential'
91275
+ | 'akiles_credential'
90475
91276
  )
90476
91277
  | undefined
90477
91278
  /** 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 +91403,13 @@ export type Routes = {
90602
91403
  endpoint_id?: (string | undefined) | undefined
90603
91404
  }
90604
91405
  | undefined
91406
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
91407
+ akiles_metadata?:
91408
+ | {
91409
+ /** ID of the Akiles member PIN. */
91410
+ member_pin_id?: (string | undefined) | undefined
91411
+ }
91412
+ | undefined
90605
91413
  is_managed: false
90606
91414
  }
90607
91415
  )
@@ -90729,6 +91537,7 @@ export type Routes = {
90729
91537
  | 'salto_ks_tag'
90730
91538
  | 'avigilon_alta_credential'
90731
91539
  | 'kisi_credential'
91540
+ | 'akiles_credential'
90732
91541
  )
90733
91542
  | undefined
90734
91543
  /** 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 +91668,13 @@ export type Routes = {
90859
91668
  endpoint_id?: (string | undefined) | undefined
90860
91669
  }
90861
91670
  | undefined
91671
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
91672
+ akiles_metadata?:
91673
+ | {
91674
+ /** ID of the Akiles member PIN. */
91675
+ member_pin_id?: (string | undefined) | undefined
91676
+ }
91677
+ | undefined
90862
91678
  /** Indicates whether Seam manages the credential. */
90863
91679
  is_managed: true
90864
91680
  }
@@ -90907,6 +91723,7 @@ export type Routes = {
90907
91723
  | 'salto_ks_tag'
90908
91724
  | 'avigilon_alta_credential'
90909
91725
  | 'kisi_credential'
91726
+ | 'akiles_credential'
90910
91727
  )
90911
91728
  | undefined
90912
91729
  /** 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 +91854,13 @@ export type Routes = {
91037
91854
  endpoint_id?: (string | undefined) | undefined
91038
91855
  }
91039
91856
  | undefined
91857
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
91858
+ akiles_metadata?:
91859
+ | {
91860
+ /** ID of the Akiles member PIN. */
91861
+ member_pin_id?: (string | undefined) | undefined
91862
+ }
91863
+ | undefined
91040
91864
  is_managed: false
91041
91865
  }
91042
91866
  }
@@ -91175,6 +91999,7 @@ export type Routes = {
91175
91999
  | 'salto_ks_tag'
91176
92000
  | 'avigilon_alta_credential'
91177
92001
  | 'kisi_credential'
92002
+ | 'akiles_credential'
91178
92003
  )
91179
92004
  | undefined
91180
92005
  /** 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 +92124,13 @@ export type Routes = {
91299
92124
  endpoint_id?: (string | undefined) | undefined
91300
92125
  }
91301
92126
  | undefined
92127
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
92128
+ akiles_metadata?:
92129
+ | {
92130
+ /** ID of the Akiles member PIN. */
92131
+ member_pin_id?: (string | undefined) | undefined
92132
+ }
92133
+ | undefined
91302
92134
  /** Indicates whether Seam manages the credential. */
91303
92135
  is_managed: true
91304
92136
  }
@@ -94325,6 +95157,7 @@ export type Routes = {
94325
95157
  | 'salto_ks_tag'
94326
95158
  | 'avigilon_alta_credential'
94327
95159
  | 'kisi_credential'
95160
+ | 'akiles_credential'
94328
95161
  )
94329
95162
  | undefined
94330
95163
  /** 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 +95288,13 @@ export type Routes = {
94455
95288
  endpoint_id?: (string | undefined) | undefined
94456
95289
  }
94457
95290
  | undefined
95291
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
95292
+ akiles_metadata?:
95293
+ | {
95294
+ /** ID of the Akiles member PIN. */
95295
+ member_pin_id?: (string | undefined) | undefined
95296
+ }
95297
+ | undefined
94458
95298
  /** Indicates whether Seam manages the credential. */
94459
95299
  is_managed: true
94460
95300
  }
@@ -94507,6 +95347,7 @@ export type Routes = {
94507
95347
  | 'salto_ks_tag'
94508
95348
  | 'avigilon_alta_credential'
94509
95349
  | 'kisi_credential'
95350
+ | 'akiles_credential'
94510
95351
  )
94511
95352
  | undefined
94512
95353
  /** 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 +95478,13 @@ export type Routes = {
94637
95478
  endpoint_id?: (string | undefined) | undefined
94638
95479
  }
94639
95480
  | undefined
95481
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
95482
+ akiles_metadata?:
95483
+ | {
95484
+ /** ID of the Akiles member PIN. */
95485
+ member_pin_id?: (string | undefined) | undefined
95486
+ }
95487
+ | undefined
94640
95488
  is_managed: false
94641
95489
  }
94642
95490
  )
@@ -94764,6 +95612,7 @@ export type Routes = {
94764
95612
  | 'salto_ks_tag'
94765
95613
  | 'avigilon_alta_credential'
94766
95614
  | 'kisi_credential'
95615
+ | 'akiles_credential'
94767
95616
  )
94768
95617
  | undefined
94769
95618
  /** 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 +95743,13 @@ export type Routes = {
94894
95743
  endpoint_id?: (string | undefined) | undefined
94895
95744
  }
94896
95745
  | undefined
95746
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
95747
+ akiles_metadata?:
95748
+ | {
95749
+ /** ID of the Akiles member PIN. */
95750
+ member_pin_id?: (string | undefined) | undefined
95751
+ }
95752
+ | undefined
94897
95753
  /** Indicates whether Seam manages the credential. */
94898
95754
  is_managed: true
94899
95755
  }
@@ -94942,6 +95798,7 @@ export type Routes = {
94942
95798
  | 'salto_ks_tag'
94943
95799
  | 'avigilon_alta_credential'
94944
95800
  | 'kisi_credential'
95801
+ | 'akiles_credential'
94945
95802
  )
94946
95803
  | undefined
94947
95804
  /** 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 +95929,13 @@ export type Routes = {
95072
95929
  endpoint_id?: (string | undefined) | undefined
95073
95930
  }
95074
95931
  | undefined
95932
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
95933
+ akiles_metadata?:
95934
+ | {
95935
+ /** ID of the Akiles member PIN. */
95936
+ member_pin_id?: (string | undefined) | undefined
95937
+ }
95938
+ | undefined
95075
95939
  is_managed: false
95076
95940
  }
95077
95941
  }
@@ -95210,6 +96074,7 @@ export type Routes = {
95210
96074
  | 'salto_ks_tag'
95211
96075
  | 'avigilon_alta_credential'
95212
96076
  | 'kisi_credential'
96077
+ | 'akiles_credential'
95213
96078
  )
95214
96079
  | undefined
95215
96080
  /** 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 +96199,13 @@ export type Routes = {
95334
96199
  endpoint_id?: (string | undefined) | undefined
95335
96200
  }
95336
96201
  | undefined
96202
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
96203
+ akiles_metadata?:
96204
+ | {
96205
+ /** ID of the Akiles member PIN. */
96206
+ member_pin_id?: (string | undefined) | undefined
96207
+ }
96208
+ | undefined
95337
96209
  /** Indicates whether Seam manages the credential. */
95338
96210
  is_managed: true
95339
96211
  }
@@ -99147,7 +100019,7 @@ export type Routes = {
99147
100019
  }
99148
100020
  | undefined
99149
100021
  event_type: 'connected_account.deleted'
99150
- /** undocumented: Unreleased. */
100022
+ /** */
99151
100023
  connected_account_type?: string | undefined
99152
100024
  /** The customer key associated with this connected account, if any. */
99153
100025
  customer_key?: string | undefined
@@ -100415,29 +101287,13 @@ export type Routes = {
100415
101287
  | 'unknown'
100416
101288
  | 'remote'
100417
101289
  | 'card'
100418
- /**
100419
- undocumented: Unreleased.
100420
- ---
100421
- ID of the user identity associated with the lock event.
100422
- */
101290
+ /** ID of the user identity associated with the lock event. */
100423
101291
  user_identity_id?: string | undefined
100424
- /**
100425
- undocumented: Unreleased.
100426
- ---
100427
- ID of the ACS system associated with the lock event.
100428
- */
101292
+ /** ID of the ACS system associated with the lock event. */
100429
101293
  acs_system_id?: string | undefined
100430
- /**
100431
- undocumented: Unreleased.
100432
- ---
100433
- ID of the ACS user associated with the lock event.
100434
- */
101294
+ /** ID of the ACS user associated with the lock event. */
100435
101295
  acs_user_id?: string | undefined
100436
- /**
100437
- undocumented: Unreleased.
100438
- ---
100439
- ID of the ACS entrance associated with the lock event.
100440
- */
101296
+ /** ID of the ACS entrance associated with the lock event. */
100441
101297
  acs_entrance_id?: string | undefined
100442
101298
  /**
100443
101299
  Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
@@ -100496,29 +101352,13 @@ export type Routes = {
100496
101352
  | 'unknown'
100497
101353
  | 'remote'
100498
101354
  | 'card'
100499
- /**
100500
- undocumented: Unreleased.
100501
- ---
100502
- ID of the user identity associated with the unlock event.
100503
- */
101355
+ /** ID of the user identity associated with the unlock event. */
100504
101356
  user_identity_id?: string | undefined
100505
- /**
100506
- undocumented: Unreleased.
100507
- ---
100508
- ID of the ACS system associated with the unlock event.
100509
- */
101357
+ /** ID of the ACS system associated with the unlock event. */
100510
101358
  acs_system_id?: string | undefined
100511
- /**
100512
- undocumented: Unreleased.
100513
- ---
100514
- ID of the ACS user associated with the unlock event.
100515
- */
101359
+ /** ID of the ACS user associated with the unlock event. */
100516
101360
  acs_user_id?: string | undefined
100517
- /**
100518
- undocumented: Unreleased.
100519
- ---
100520
- ID of the ACS entrance associated with the unlock event.
100521
- */
101361
+ /** ID of the ACS entrance associated with the unlock event. */
100522
101362
  acs_entrance_id?: string | undefined
100523
101363
  /**
100524
101364
  Whether the unlock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
@@ -100561,29 +101401,13 @@ export type Routes = {
100561
101401
  event_type: 'lock.access_denied'
100562
101402
  /** ID of the access code that was used in the unlock attempts. */
100563
101403
  access_code_id?: string | undefined
100564
- /**
100565
- undocumented: Unreleased.
100566
- ---
100567
- ID of the user identity associated with the access-denied event.
100568
- */
101404
+ /** ID of the user identity associated with the access-denied event. */
100569
101405
  user_identity_id?: string | undefined
100570
- /**
100571
- undocumented: Unreleased.
100572
- ---
100573
- ID of the ACS system associated with the access-denied event.
100574
- */
101406
+ /** ID of the ACS system associated with the access-denied event. */
100575
101407
  acs_system_id?: string | undefined
100576
- /**
100577
- undocumented: Unreleased.
100578
- ---
100579
- ID of the ACS user associated with the access-denied event.
100580
- */
101408
+ /** ID of the ACS user associated with the access-denied event. */
100581
101409
  acs_user_id?: string | undefined
100582
- /**
100583
- undocumented: Unreleased.
100584
- ---
100585
- ID of the ACS entrance associated with the access-denied event.
100586
- */
101410
+ /** ID of the ACS entrance associated with the access-denied event. */
100587
101411
  acs_entrance_id?: string | undefined
100588
101412
  /** Why access was denied, when the provider reports a determinable cause. Omitted when unknown. */
100589
101413
  reason?:
@@ -102659,6 +103483,7 @@ export type Routes = {
102659
103483
  | 'salto_ks_tag'
102660
103484
  | 'avigilon_alta_credential'
102661
103485
  | 'kisi_credential'
103486
+ | 'akiles_credential'
102662
103487
  )
102663
103488
  | undefined
102664
103489
  /** 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 +103604,13 @@ export type Routes = {
102779
103604
  endpoint_id?: (string | undefined) | undefined
102780
103605
  }
102781
103606
  | undefined
103607
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
103608
+ akiles_metadata?:
103609
+ | {
103610
+ /** ID of the Akiles member PIN. */
103611
+ member_pin_id?: (string | undefined) | undefined
103612
+ }
103613
+ | undefined
102782
103614
  /** Indicates whether Seam manages the credential. */
102783
103615
  is_managed: true
102784
103616
  }[]
@@ -102867,6 +103699,7 @@ export type Routes = {
102867
103699
  | 'salto_ks_tag'
102868
103700
  | 'avigilon_alta_credential'
102869
103701
  | 'kisi_credential'
103702
+ | 'akiles_credential'
102870
103703
  )
102871
103704
  | undefined
102872
103705
  /** 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 +103822,13 @@ export type Routes = {
102989
103822
  endpoint_id?: (string | undefined) | undefined
102990
103823
  }
102991
103824
  | undefined
103825
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
103826
+ akiles_metadata?:
103827
+ | {
103828
+ /** ID of the Akiles member PIN. */
103829
+ member_pin_id?: (string | undefined) | undefined
103830
+ }
103831
+ | undefined
102992
103832
  /** Indicates whether Seam manages the credential. */
102993
103833
  is_managed: true
102994
103834
  acs_credential_id: string | null
@@ -103982,7 +104822,7 @@ export type Routes = {
103982
104822
  }
103983
104823
  | undefined
103984
104824
  /** Metada for a Salto device.
103985
- * @deprecated Use `salto_ks_metadata ` instead.*/
104825
+ * @deprecated Use `salto_ks_metadata` instead.*/
103986
104826
  salto_metadata?:
103987
104827
  | {
103988
104828
  /** Lock ID for a Salto device. */
@@ -106894,6 +107734,7 @@ export type Routes = {
106894
107734
  | 'salto_ks_tag'
106895
107735
  | 'avigilon_alta_credential'
106896
107736
  | 'kisi_credential'
107737
+ | 'akiles_credential'
106897
107738
  )
106898
107739
  | undefined
106899
107740
  /** 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 +107865,13 @@ export type Routes = {
107024
107865
  endpoint_id?: (string | undefined) | undefined
107025
107866
  }
107026
107867
  | undefined
107868
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
107869
+ akiles_metadata?:
107870
+ | {
107871
+ /** ID of the Akiles member PIN. */
107872
+ member_pin_id?: (string | undefined) | undefined
107873
+ }
107874
+ | undefined
107027
107875
  /** Indicates whether Seam manages the credential. */
107028
107876
  is_managed: true
107029
107877
  }
@@ -107076,6 +107924,7 @@ export type Routes = {
107076
107924
  | 'salto_ks_tag'
107077
107925
  | 'avigilon_alta_credential'
107078
107926
  | 'kisi_credential'
107927
+ | 'akiles_credential'
107079
107928
  )
107080
107929
  | undefined
107081
107930
  /** 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 +108055,13 @@ export type Routes = {
107206
108055
  endpoint_id?: (string | undefined) | undefined
107207
108056
  }
107208
108057
  | undefined
108058
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
108059
+ akiles_metadata?:
108060
+ | {
108061
+ /** ID of the Akiles member PIN. */
108062
+ member_pin_id?: (string | undefined) | undefined
108063
+ }
108064
+ | undefined
107209
108065
  is_managed: false
107210
108066
  }
107211
108067
  )
@@ -107333,6 +108189,7 @@ export type Routes = {
107333
108189
  | 'salto_ks_tag'
107334
108190
  | 'avigilon_alta_credential'
107335
108191
  | 'kisi_credential'
108192
+ | 'akiles_credential'
107336
108193
  )
107337
108194
  | undefined
107338
108195
  /** 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 +108320,13 @@ export type Routes = {
107463
108320
  endpoint_id?: (string | undefined) | undefined
107464
108321
  }
107465
108322
  | undefined
108323
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
108324
+ akiles_metadata?:
108325
+ | {
108326
+ /** ID of the Akiles member PIN. */
108327
+ member_pin_id?: (string | undefined) | undefined
108328
+ }
108329
+ | undefined
107466
108330
  /** Indicates whether Seam manages the credential. */
107467
108331
  is_managed: true
107468
108332
  }
@@ -107511,6 +108375,7 @@ export type Routes = {
107511
108375
  | 'salto_ks_tag'
107512
108376
  | 'avigilon_alta_credential'
107513
108377
  | 'kisi_credential'
108378
+ | 'akiles_credential'
107514
108379
  )
107515
108380
  | undefined
107516
108381
  /** 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 +108506,13 @@ export type Routes = {
107641
108506
  endpoint_id?: (string | undefined) | undefined
107642
108507
  }
107643
108508
  | undefined
108509
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
108510
+ akiles_metadata?:
108511
+ | {
108512
+ /** ID of the Akiles member PIN. */
108513
+ member_pin_id?: (string | undefined) | undefined
108514
+ }
108515
+ | undefined
107644
108516
  is_managed: false
107645
108517
  }
107646
108518
  }
@@ -107779,6 +108651,7 @@ export type Routes = {
107779
108651
  | 'salto_ks_tag'
107780
108652
  | 'avigilon_alta_credential'
107781
108653
  | 'kisi_credential'
108654
+ | 'akiles_credential'
107782
108655
  )
107783
108656
  | undefined
107784
108657
  /** 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 +108776,13 @@ export type Routes = {
107903
108776
  endpoint_id?: (string | undefined) | undefined
107904
108777
  }
107905
108778
  | undefined
108779
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
108780
+ akiles_metadata?:
108781
+ | {
108782
+ /** ID of the Akiles member PIN. */
108783
+ member_pin_id?: (string | undefined) | undefined
108784
+ }
108785
+ | undefined
107906
108786
  /** Indicates whether Seam manages the credential. */
107907
108787
  is_managed: true
107908
108788
  }
@@ -108944,6 +109824,7 @@ export type Routes = {
108944
109824
  | 'salto_ks_tag'
108945
109825
  | 'avigilon_alta_credential'
108946
109826
  | 'kisi_credential'
109827
+ | 'akiles_credential'
108947
109828
  )
108948
109829
  | undefined
108949
109830
  /** 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 +109955,13 @@ export type Routes = {
109074
109955
  endpoint_id?: (string | undefined) | undefined
109075
109956
  }
109076
109957
  | undefined
109958
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
109959
+ akiles_metadata?:
109960
+ | {
109961
+ /** ID of the Akiles member PIN. */
109962
+ member_pin_id?: (string | undefined) | undefined
109963
+ }
109964
+ | undefined
109077
109965
  /** Indicates whether Seam manages the credential. */
109078
109966
  is_managed: true
109079
109967
  }
@@ -109126,6 +110014,7 @@ export type Routes = {
109126
110014
  | 'salto_ks_tag'
109127
110015
  | 'avigilon_alta_credential'
109128
110016
  | 'kisi_credential'
110017
+ | 'akiles_credential'
109129
110018
  )
109130
110019
  | undefined
109131
110020
  /** 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 +110145,13 @@ export type Routes = {
109256
110145
  endpoint_id?: (string | undefined) | undefined
109257
110146
  }
109258
110147
  | undefined
110148
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
110149
+ akiles_metadata?:
110150
+ | {
110151
+ /** ID of the Akiles member PIN. */
110152
+ member_pin_id?: (string | undefined) | undefined
110153
+ }
110154
+ | undefined
109259
110155
  is_managed: false
109260
110156
  }
109261
110157
  )
@@ -109383,6 +110279,7 @@ export type Routes = {
109383
110279
  | 'salto_ks_tag'
109384
110280
  | 'avigilon_alta_credential'
109385
110281
  | 'kisi_credential'
110282
+ | 'akiles_credential'
109386
110283
  )
109387
110284
  | undefined
109388
110285
  /** 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 +110410,13 @@ export type Routes = {
109513
110410
  endpoint_id?: (string | undefined) | undefined
109514
110411
  }
109515
110412
  | undefined
110413
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
110414
+ akiles_metadata?:
110415
+ | {
110416
+ /** ID of the Akiles member PIN. */
110417
+ member_pin_id?: (string | undefined) | undefined
110418
+ }
110419
+ | undefined
109516
110420
  /** Indicates whether Seam manages the credential. */
109517
110421
  is_managed: true
109518
110422
  }
@@ -109561,6 +110465,7 @@ export type Routes = {
109561
110465
  | 'salto_ks_tag'
109562
110466
  | 'avigilon_alta_credential'
109563
110467
  | 'kisi_credential'
110468
+ | 'akiles_credential'
109564
110469
  )
109565
110470
  | undefined
109566
110471
  /** 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 +110596,13 @@ export type Routes = {
109691
110596
  endpoint_id?: (string | undefined) | undefined
109692
110597
  }
109693
110598
  | undefined
110599
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
110600
+ akiles_metadata?:
110601
+ | {
110602
+ /** ID of the Akiles member PIN. */
110603
+ member_pin_id?: (string | undefined) | undefined
110604
+ }
110605
+ | undefined
109694
110606
  is_managed: false
109695
110607
  }
109696
110608
  }
@@ -109829,6 +110741,7 @@ export type Routes = {
109829
110741
  | 'salto_ks_tag'
109830
110742
  | 'avigilon_alta_credential'
109831
110743
  | 'kisi_credential'
110744
+ | 'akiles_credential'
109832
110745
  )
109833
110746
  | undefined
109834
110747
  /** 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 +110866,13 @@ export type Routes = {
109953
110866
  endpoint_id?: (string | undefined) | undefined
109954
110867
  }
109955
110868
  | undefined
110869
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
110870
+ akiles_metadata?:
110871
+ | {
110872
+ /** ID of the Akiles member PIN. */
110873
+ member_pin_id?: (string | undefined) | undefined
110874
+ }
110875
+ | undefined
109956
110876
  /** Indicates whether Seam manages the credential. */
109957
110877
  is_managed: true
109958
110878
  }
@@ -111106,6 +112026,7 @@ export type Routes = {
111106
112026
  | 'salto_ks_tag'
111107
112027
  | 'avigilon_alta_credential'
111108
112028
  | 'kisi_credential'
112029
+ | 'akiles_credential'
111109
112030
  )
111110
112031
  | undefined
111111
112032
  /** 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 +112157,13 @@ export type Routes = {
111236
112157
  endpoint_id?: (string | undefined) | undefined
111237
112158
  }
111238
112159
  | undefined
112160
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
112161
+ akiles_metadata?:
112162
+ | {
112163
+ /** ID of the Akiles member PIN. */
112164
+ member_pin_id?: (string | undefined) | undefined
112165
+ }
112166
+ | undefined
111239
112167
  /** Indicates whether Seam manages the credential. */
111240
112168
  is_managed: true
111241
112169
  }
@@ -111288,6 +112216,7 @@ export type Routes = {
111288
112216
  | 'salto_ks_tag'
111289
112217
  | 'avigilon_alta_credential'
111290
112218
  | 'kisi_credential'
112219
+ | 'akiles_credential'
111291
112220
  )
111292
112221
  | undefined
111293
112222
  /** 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 +112347,13 @@ export type Routes = {
111418
112347
  endpoint_id?: (string | undefined) | undefined
111419
112348
  }
111420
112349
  | undefined
112350
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
112351
+ akiles_metadata?:
112352
+ | {
112353
+ /** ID of the Akiles member PIN. */
112354
+ member_pin_id?: (string | undefined) | undefined
112355
+ }
112356
+ | undefined
111421
112357
  is_managed: false
111422
112358
  }
111423
112359
  )
@@ -111545,6 +112481,7 @@ export type Routes = {
111545
112481
  | 'salto_ks_tag'
111546
112482
  | 'avigilon_alta_credential'
111547
112483
  | 'kisi_credential'
112484
+ | 'akiles_credential'
111548
112485
  )
111549
112486
  | undefined
111550
112487
  /** 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 +112612,13 @@ export type Routes = {
111675
112612
  endpoint_id?: (string | undefined) | undefined
111676
112613
  }
111677
112614
  | undefined
112615
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
112616
+ akiles_metadata?:
112617
+ | {
112618
+ /** ID of the Akiles member PIN. */
112619
+ member_pin_id?: (string | undefined) | undefined
112620
+ }
112621
+ | undefined
111678
112622
  /** Indicates whether Seam manages the credential. */
111679
112623
  is_managed: true
111680
112624
  }
@@ -111723,6 +112667,7 @@ export type Routes = {
111723
112667
  | 'salto_ks_tag'
111724
112668
  | 'avigilon_alta_credential'
111725
112669
  | 'kisi_credential'
112670
+ | 'akiles_credential'
111726
112671
  )
111727
112672
  | undefined
111728
112673
  /** 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 +112798,13 @@ export type Routes = {
111853
112798
  endpoint_id?: (string | undefined) | undefined
111854
112799
  }
111855
112800
  | undefined
112801
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
112802
+ akiles_metadata?:
112803
+ | {
112804
+ /** ID of the Akiles member PIN. */
112805
+ member_pin_id?: (string | undefined) | undefined
112806
+ }
112807
+ | undefined
111856
112808
  is_managed: false
111857
112809
  }
111858
112810
  }
@@ -111991,6 +112943,7 @@ export type Routes = {
111991
112943
  | 'salto_ks_tag'
111992
112944
  | 'avigilon_alta_credential'
111993
112945
  | 'kisi_credential'
112946
+ | 'akiles_credential'
111994
112947
  )
111995
112948
  | undefined
111996
112949
  /** 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 +113068,13 @@ export type Routes = {
112115
113068
  endpoint_id?: (string | undefined) | undefined
112116
113069
  }
112117
113070
  | undefined
113071
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
113072
+ akiles_metadata?:
113073
+ | {
113074
+ /** ID of the Akiles member PIN. */
113075
+ member_pin_id?: (string | undefined) | undefined
113076
+ }
113077
+ | undefined
112118
113078
  /** Indicates whether Seam manages the credential. */
112119
113079
  is_managed: true
112120
113080
  }
@@ -113253,7 +114213,7 @@ export type Routes = {
113253
114213
  }
113254
114214
  | undefined
113255
114215
  /** Metada for a Salto device.
113256
- * @deprecated Use `salto_ks_metadata ` instead.*/
114216
+ * @deprecated Use `salto_ks_metadata` instead.*/
113257
114217
  salto_metadata?:
113258
114218
  | {
113259
114219
  /** Lock ID for a Salto device. */
@@ -115054,6 +116014,7 @@ export type Routes = {
115054
116014
  | 'salto_ks_tag'
115055
116015
  | 'avigilon_alta_credential'
115056
116016
  | 'kisi_credential'
116017
+ | 'akiles_credential'
115057
116018
  )
115058
116019
  | undefined
115059
116020
  /** 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 +116145,13 @@ export type Routes = {
115184
116145
  endpoint_id?: (string | undefined) | undefined
115185
116146
  }
115186
116147
  | undefined
116148
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
116149
+ akiles_metadata?:
116150
+ | {
116151
+ /** ID of the Akiles member PIN. */
116152
+ member_pin_id?: (string | undefined) | undefined
116153
+ }
116154
+ | undefined
115187
116155
  /** Indicates whether Seam manages the credential. */
115188
116156
  is_managed: true
115189
116157
  }
@@ -115236,6 +116204,7 @@ export type Routes = {
115236
116204
  | 'salto_ks_tag'
115237
116205
  | 'avigilon_alta_credential'
115238
116206
  | 'kisi_credential'
116207
+ | 'akiles_credential'
115239
116208
  )
115240
116209
  | undefined
115241
116210
  /** 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 +116335,13 @@ export type Routes = {
115366
116335
  endpoint_id?: (string | undefined) | undefined
115367
116336
  }
115368
116337
  | undefined
116338
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
116339
+ akiles_metadata?:
116340
+ | {
116341
+ /** ID of the Akiles member PIN. */
116342
+ member_pin_id?: (string | undefined) | undefined
116343
+ }
116344
+ | undefined
115369
116345
  is_managed: false
115370
116346
  }
115371
116347
  )
@@ -115493,6 +116469,7 @@ export type Routes = {
115493
116469
  | 'salto_ks_tag'
115494
116470
  | 'avigilon_alta_credential'
115495
116471
  | 'kisi_credential'
116472
+ | 'akiles_credential'
115496
116473
  )
115497
116474
  | undefined
115498
116475
  /** 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 +116600,13 @@ export type Routes = {
115623
116600
  endpoint_id?: (string | undefined) | undefined
115624
116601
  }
115625
116602
  | undefined
116603
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
116604
+ akiles_metadata?:
116605
+ | {
116606
+ /** ID of the Akiles member PIN. */
116607
+ member_pin_id?: (string | undefined) | undefined
116608
+ }
116609
+ | undefined
115626
116610
  /** Indicates whether Seam manages the credential. */
115627
116611
  is_managed: true
115628
116612
  }
@@ -115671,6 +116655,7 @@ export type Routes = {
115671
116655
  | 'salto_ks_tag'
115672
116656
  | 'avigilon_alta_credential'
115673
116657
  | 'kisi_credential'
116658
+ | 'akiles_credential'
115674
116659
  )
115675
116660
  | undefined
115676
116661
  /** 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 +116786,13 @@ export type Routes = {
115801
116786
  endpoint_id?: (string | undefined) | undefined
115802
116787
  }
115803
116788
  | undefined
116789
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
116790
+ akiles_metadata?:
116791
+ | {
116792
+ /** ID of the Akiles member PIN. */
116793
+ member_pin_id?: (string | undefined) | undefined
116794
+ }
116795
+ | undefined
115804
116796
  is_managed: false
115805
116797
  }
115806
116798
  }
@@ -115939,6 +116931,7 @@ export type Routes = {
115939
116931
  | 'salto_ks_tag'
115940
116932
  | 'avigilon_alta_credential'
115941
116933
  | 'kisi_credential'
116934
+ | 'akiles_credential'
115942
116935
  )
115943
116936
  | undefined
115944
116937
  /** 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 +117056,13 @@ export type Routes = {
116063
117056
  endpoint_id?: (string | undefined) | undefined
116064
117057
  }
116065
117058
  | undefined
117059
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
117060
+ akiles_metadata?:
117061
+ | {
117062
+ /** ID of the Akiles member PIN. */
117063
+ member_pin_id?: (string | undefined) | undefined
117064
+ }
117065
+ | undefined
116066
117066
  /** Indicates whether Seam manages the credential. */
116067
117067
  is_managed: true
116068
117068
  }
@@ -117108,6 +118108,7 @@ export type Routes = {
117108
118108
  | 'salto_ks_tag'
117109
118109
  | 'avigilon_alta_credential'
117110
118110
  | 'kisi_credential'
118111
+ | 'akiles_credential'
117111
118112
  )
117112
118113
  | undefined
117113
118114
  /** 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 +118239,13 @@ export type Routes = {
117238
118239
  endpoint_id?: (string | undefined) | undefined
117239
118240
  }
117240
118241
  | undefined
118242
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
118243
+ akiles_metadata?:
118244
+ | {
118245
+ /** ID of the Akiles member PIN. */
118246
+ member_pin_id?: (string | undefined) | undefined
118247
+ }
118248
+ | undefined
117241
118249
  /** Indicates whether Seam manages the credential. */
117242
118250
  is_managed: true
117243
118251
  }
@@ -117290,6 +118298,7 @@ export type Routes = {
117290
118298
  | 'salto_ks_tag'
117291
118299
  | 'avigilon_alta_credential'
117292
118300
  | 'kisi_credential'
118301
+ | 'akiles_credential'
117293
118302
  )
117294
118303
  | undefined
117295
118304
  /** 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 +118429,13 @@ export type Routes = {
117420
118429
  endpoint_id?: (string | undefined) | undefined
117421
118430
  }
117422
118431
  | undefined
118432
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
118433
+ akiles_metadata?:
118434
+ | {
118435
+ /** ID of the Akiles member PIN. */
118436
+ member_pin_id?: (string | undefined) | undefined
118437
+ }
118438
+ | undefined
117423
118439
  is_managed: false
117424
118440
  }
117425
118441
  )
@@ -117547,6 +118563,7 @@ export type Routes = {
117547
118563
  | 'salto_ks_tag'
117548
118564
  | 'avigilon_alta_credential'
117549
118565
  | 'kisi_credential'
118566
+ | 'akiles_credential'
117550
118567
  )
117551
118568
  | undefined
117552
118569
  /** 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 +118694,13 @@ export type Routes = {
117677
118694
  endpoint_id?: (string | undefined) | undefined
117678
118695
  }
117679
118696
  | undefined
118697
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
118698
+ akiles_metadata?:
118699
+ | {
118700
+ /** ID of the Akiles member PIN. */
118701
+ member_pin_id?: (string | undefined) | undefined
118702
+ }
118703
+ | undefined
117680
118704
  /** Indicates whether Seam manages the credential. */
117681
118705
  is_managed: true
117682
118706
  }
@@ -117725,6 +118749,7 @@ export type Routes = {
117725
118749
  | 'salto_ks_tag'
117726
118750
  | 'avigilon_alta_credential'
117727
118751
  | 'kisi_credential'
118752
+ | 'akiles_credential'
117728
118753
  )
117729
118754
  | undefined
117730
118755
  /** 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 +118880,13 @@ export type Routes = {
117855
118880
  endpoint_id?: (string | undefined) | undefined
117856
118881
  }
117857
118882
  | undefined
118883
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
118884
+ akiles_metadata?:
118885
+ | {
118886
+ /** ID of the Akiles member PIN. */
118887
+ member_pin_id?: (string | undefined) | undefined
118888
+ }
118889
+ | undefined
117858
118890
  is_managed: false
117859
118891
  }
117860
118892
  }
@@ -117993,6 +119025,7 @@ export type Routes = {
117993
119025
  | 'salto_ks_tag'
117994
119026
  | 'avigilon_alta_credential'
117995
119027
  | 'kisi_credential'
119028
+ | 'akiles_credential'
117996
119029
  )
117997
119030
  | undefined
117998
119031
  /** 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 +119150,13 @@ export type Routes = {
118117
119150
  endpoint_id?: (string | undefined) | undefined
118118
119151
  }
118119
119152
  | undefined
119153
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
119154
+ akiles_metadata?:
119155
+ | {
119156
+ /** ID of the Akiles member PIN. */
119157
+ member_pin_id?: (string | undefined) | undefined
119158
+ }
119159
+ | undefined
118120
119160
  /** Indicates whether Seam manages the credential. */
118121
119161
  is_managed: true
118122
119162
  }
@@ -119349,7 +120389,7 @@ export type Routes = {
119349
120389
  }
119350
120390
  | undefined
119351
120391
  /** Metada for a Salto device.
119352
- * @deprecated Use `salto_ks_metadata ` instead.*/
120392
+ * @deprecated Use `salto_ks_metadata` instead.*/
119353
120393
  salto_metadata?:
119354
120394
  | {
119355
120395
  /** Lock ID for a Salto device. */
@@ -121215,7 +122255,7 @@ export type Routes = {
121215
122255
  }
121216
122256
  | undefined
121217
122257
  /** Metada for a Salto device.
121218
- * @deprecated Use `salto_ks_metadata ` instead.*/
122258
+ * @deprecated Use `salto_ks_metadata` instead.*/
121219
122259
  salto_metadata?:
121220
122260
  | {
121221
122261
  /** Lock ID for a Salto device. */
@@ -123012,6 +124052,7 @@ export type Routes = {
123012
124052
  | 'salto_ks_tag'
123013
124053
  | 'avigilon_alta_credential'
123014
124054
  | 'kisi_credential'
124055
+ | 'akiles_credential'
123015
124056
  )
123016
124057
  | undefined
123017
124058
  /** 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 +124183,13 @@ export type Routes = {
123142
124183
  endpoint_id?: (string | undefined) | undefined
123143
124184
  }
123144
124185
  | undefined
124186
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
124187
+ akiles_metadata?:
124188
+ | {
124189
+ /** ID of the Akiles member PIN. */
124190
+ member_pin_id?: (string | undefined) | undefined
124191
+ }
124192
+ | undefined
123145
124193
  /** Indicates whether Seam manages the credential. */
123146
124194
  is_managed: true
123147
124195
  }
@@ -123194,6 +124242,7 @@ export type Routes = {
123194
124242
  | 'salto_ks_tag'
123195
124243
  | 'avigilon_alta_credential'
123196
124244
  | 'kisi_credential'
124245
+ | 'akiles_credential'
123197
124246
  )
123198
124247
  | undefined
123199
124248
  /** 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 +124373,13 @@ export type Routes = {
123324
124373
  endpoint_id?: (string | undefined) | undefined
123325
124374
  }
123326
124375
  | undefined
124376
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
124377
+ akiles_metadata?:
124378
+ | {
124379
+ /** ID of the Akiles member PIN. */
124380
+ member_pin_id?: (string | undefined) | undefined
124381
+ }
124382
+ | undefined
123327
124383
  is_managed: false
123328
124384
  }
123329
124385
  )
@@ -123451,6 +124507,7 @@ export type Routes = {
123451
124507
  | 'salto_ks_tag'
123452
124508
  | 'avigilon_alta_credential'
123453
124509
  | 'kisi_credential'
124510
+ | 'akiles_credential'
123454
124511
  )
123455
124512
  | undefined
123456
124513
  /** 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 +124638,13 @@ export type Routes = {
123581
124638
  endpoint_id?: (string | undefined) | undefined
123582
124639
  }
123583
124640
  | undefined
124641
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
124642
+ akiles_metadata?:
124643
+ | {
124644
+ /** ID of the Akiles member PIN. */
124645
+ member_pin_id?: (string | undefined) | undefined
124646
+ }
124647
+ | undefined
123584
124648
  /** Indicates whether Seam manages the credential. */
123585
124649
  is_managed: true
123586
124650
  }
@@ -123629,6 +124693,7 @@ export type Routes = {
123629
124693
  | 'salto_ks_tag'
123630
124694
  | 'avigilon_alta_credential'
123631
124695
  | 'kisi_credential'
124696
+ | 'akiles_credential'
123632
124697
  )
123633
124698
  | undefined
123634
124699
  /** 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 +124824,13 @@ export type Routes = {
123759
124824
  endpoint_id?: (string | undefined) | undefined
123760
124825
  }
123761
124826
  | undefined
124827
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
124828
+ akiles_metadata?:
124829
+ | {
124830
+ /** ID of the Akiles member PIN. */
124831
+ member_pin_id?: (string | undefined) | undefined
124832
+ }
124833
+ | undefined
123762
124834
  is_managed: false
123763
124835
  }
123764
124836
  }
@@ -123897,6 +124969,7 @@ export type Routes = {
123897
124969
  | 'salto_ks_tag'
123898
124970
  | 'avigilon_alta_credential'
123899
124971
  | 'kisi_credential'
124972
+ | 'akiles_credential'
123900
124973
  )
123901
124974
  | undefined
123902
124975
  /** 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 +125094,13 @@ export type Routes = {
124021
125094
  endpoint_id?: (string | undefined) | undefined
124022
125095
  }
124023
125096
  | undefined
125097
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
125098
+ akiles_metadata?:
125099
+ | {
125100
+ /** ID of the Akiles member PIN. */
125101
+ member_pin_id?: (string | undefined) | undefined
125102
+ }
125103
+ | undefined
124024
125104
  /** Indicates whether Seam manages the credential. */
124025
125105
  is_managed: true
124026
125106
  }
@@ -125267,6 +126347,7 @@ export type Routes = {
125267
126347
  | 'salto_ks_tag'
125268
126348
  | 'avigilon_alta_credential'
125269
126349
  | 'kisi_credential'
126350
+ | 'akiles_credential'
125270
126351
  )
125271
126352
  | undefined
125272
126353
  /** 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 +126478,13 @@ export type Routes = {
125397
126478
  endpoint_id?: (string | undefined) | undefined
125398
126479
  }
125399
126480
  | undefined
126481
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
126482
+ akiles_metadata?:
126483
+ | {
126484
+ /** ID of the Akiles member PIN. */
126485
+ member_pin_id?: (string | undefined) | undefined
126486
+ }
126487
+ | undefined
125400
126488
  /** Indicates whether Seam manages the credential. */
125401
126489
  is_managed: true
125402
126490
  }
@@ -125449,6 +126537,7 @@ export type Routes = {
125449
126537
  | 'salto_ks_tag'
125450
126538
  | 'avigilon_alta_credential'
125451
126539
  | 'kisi_credential'
126540
+ | 'akiles_credential'
125452
126541
  )
125453
126542
  | undefined
125454
126543
  /** 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 +126668,13 @@ export type Routes = {
125579
126668
  endpoint_id?: (string | undefined) | undefined
125580
126669
  }
125581
126670
  | undefined
126671
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
126672
+ akiles_metadata?:
126673
+ | {
126674
+ /** ID of the Akiles member PIN. */
126675
+ member_pin_id?: (string | undefined) | undefined
126676
+ }
126677
+ | undefined
125582
126678
  is_managed: false
125583
126679
  }
125584
126680
  )
@@ -125706,6 +126802,7 @@ export type Routes = {
125706
126802
  | 'salto_ks_tag'
125707
126803
  | 'avigilon_alta_credential'
125708
126804
  | 'kisi_credential'
126805
+ | 'akiles_credential'
125709
126806
  )
125710
126807
  | undefined
125711
126808
  /** 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 +126933,13 @@ export type Routes = {
125836
126933
  endpoint_id?: (string | undefined) | undefined
125837
126934
  }
125838
126935
  | undefined
126936
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
126937
+ akiles_metadata?:
126938
+ | {
126939
+ /** ID of the Akiles member PIN. */
126940
+ member_pin_id?: (string | undefined) | undefined
126941
+ }
126942
+ | undefined
125839
126943
  /** Indicates whether Seam manages the credential. */
125840
126944
  is_managed: true
125841
126945
  }
@@ -125884,6 +126988,7 @@ export type Routes = {
125884
126988
  | 'salto_ks_tag'
125885
126989
  | 'avigilon_alta_credential'
125886
126990
  | 'kisi_credential'
126991
+ | 'akiles_credential'
125887
126992
  )
125888
126993
  | undefined
125889
126994
  /** 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 +127119,13 @@ export type Routes = {
126014
127119
  endpoint_id?: (string | undefined) | undefined
126015
127120
  }
126016
127121
  | undefined
127122
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
127123
+ akiles_metadata?:
127124
+ | {
127125
+ /** ID of the Akiles member PIN. */
127126
+ member_pin_id?: (string | undefined) | undefined
127127
+ }
127128
+ | undefined
126017
127129
  is_managed: false
126018
127130
  }
126019
127131
  }
@@ -126152,6 +127264,7 @@ export type Routes = {
126152
127264
  | 'salto_ks_tag'
126153
127265
  | 'avigilon_alta_credential'
126154
127266
  | 'kisi_credential'
127267
+ | 'akiles_credential'
126155
127268
  )
126156
127269
  | undefined
126157
127270
  /** 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 +127389,13 @@ export type Routes = {
126276
127389
  endpoint_id?: (string | undefined) | undefined
126277
127390
  }
126278
127391
  | undefined
127392
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
127393
+ akiles_metadata?:
127394
+ | {
127395
+ /** ID of the Akiles member PIN. */
127396
+ member_pin_id?: (string | undefined) | undefined
127397
+ }
127398
+ | undefined
126279
127399
  /** Indicates whether Seam manages the credential. */
126280
127400
  is_managed: true
126281
127401
  }
@@ -127349,6 +128469,7 @@ export type Routes = {
127349
128469
  | 'salto_ks_tag'
127350
128470
  | 'avigilon_alta_credential'
127351
128471
  | 'kisi_credential'
128472
+ | 'akiles_credential'
127352
128473
  )
127353
128474
  | undefined
127354
128475
  /** 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 +128600,13 @@ export type Routes = {
127479
128600
  endpoint_id?: (string | undefined) | undefined
127480
128601
  }
127481
128602
  | undefined
128603
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
128604
+ akiles_metadata?:
128605
+ | {
128606
+ /** ID of the Akiles member PIN. */
128607
+ member_pin_id?: (string | undefined) | undefined
128608
+ }
128609
+ | undefined
127482
128610
  /** Indicates whether Seam manages the credential. */
127483
128611
  is_managed: true
127484
128612
  }
@@ -127531,6 +128659,7 @@ export type Routes = {
127531
128659
  | 'salto_ks_tag'
127532
128660
  | 'avigilon_alta_credential'
127533
128661
  | 'kisi_credential'
128662
+ | 'akiles_credential'
127534
128663
  )
127535
128664
  | undefined
127536
128665
  /** 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 +128790,13 @@ export type Routes = {
127661
128790
  endpoint_id?: (string | undefined) | undefined
127662
128791
  }
127663
128792
  | undefined
128793
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
128794
+ akiles_metadata?:
128795
+ | {
128796
+ /** ID of the Akiles member PIN. */
128797
+ member_pin_id?: (string | undefined) | undefined
128798
+ }
128799
+ | undefined
127664
128800
  is_managed: false
127665
128801
  }
127666
128802
  )
@@ -127788,6 +128924,7 @@ export type Routes = {
127788
128924
  | 'salto_ks_tag'
127789
128925
  | 'avigilon_alta_credential'
127790
128926
  | 'kisi_credential'
128927
+ | 'akiles_credential'
127791
128928
  )
127792
128929
  | undefined
127793
128930
  /** 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 +129055,13 @@ export type Routes = {
127918
129055
  endpoint_id?: (string | undefined) | undefined
127919
129056
  }
127920
129057
  | undefined
129058
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
129059
+ akiles_metadata?:
129060
+ | {
129061
+ /** ID of the Akiles member PIN. */
129062
+ member_pin_id?: (string | undefined) | undefined
129063
+ }
129064
+ | undefined
127921
129065
  /** Indicates whether Seam manages the credential. */
127922
129066
  is_managed: true
127923
129067
  }
@@ -127966,6 +129110,7 @@ export type Routes = {
127966
129110
  | 'salto_ks_tag'
127967
129111
  | 'avigilon_alta_credential'
127968
129112
  | 'kisi_credential'
129113
+ | 'akiles_credential'
127969
129114
  )
127970
129115
  | undefined
127971
129116
  /** 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 +129241,13 @@ export type Routes = {
128096
129241
  endpoint_id?: (string | undefined) | undefined
128097
129242
  }
128098
129243
  | undefined
129244
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
129245
+ akiles_metadata?:
129246
+ | {
129247
+ /** ID of the Akiles member PIN. */
129248
+ member_pin_id?: (string | undefined) | undefined
129249
+ }
129250
+ | undefined
128099
129251
  is_managed: false
128100
129252
  }
128101
129253
  }
@@ -128234,6 +129386,7 @@ export type Routes = {
128234
129386
  | 'salto_ks_tag'
128235
129387
  | 'avigilon_alta_credential'
128236
129388
  | 'kisi_credential'
129389
+ | 'akiles_credential'
128237
129390
  )
128238
129391
  | undefined
128239
129392
  /** 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 +129511,13 @@ export type Routes = {
128358
129511
  endpoint_id?: (string | undefined) | undefined
128359
129512
  }
128360
129513
  | undefined
129514
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
129515
+ akiles_metadata?:
129516
+ | {
129517
+ /** ID of the Akiles member PIN. */
129518
+ member_pin_id?: (string | undefined) | undefined
129519
+ }
129520
+ | undefined
128361
129521
  /** Indicates whether Seam manages the credential. */
128362
129522
  is_managed: true
128363
129523
  }
@@ -129548,6 +130708,7 @@ export type Routes = {
129548
130708
  | 'salto_ks_tag'
129549
130709
  | 'avigilon_alta_credential'
129550
130710
  | 'kisi_credential'
130711
+ | 'akiles_credential'
129551
130712
  )
129552
130713
  | undefined
129553
130714
  /** 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 +130839,13 @@ export type Routes = {
129678
130839
  endpoint_id?: (string | undefined) | undefined
129679
130840
  }
129680
130841
  | undefined
130842
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
130843
+ akiles_metadata?:
130844
+ | {
130845
+ /** ID of the Akiles member PIN. */
130846
+ member_pin_id?: (string | undefined) | undefined
130847
+ }
130848
+ | undefined
129681
130849
  /** Indicates whether Seam manages the credential. */
129682
130850
  is_managed: true
129683
130851
  }
@@ -129730,6 +130898,7 @@ export type Routes = {
129730
130898
  | 'salto_ks_tag'
129731
130899
  | 'avigilon_alta_credential'
129732
130900
  | 'kisi_credential'
130901
+ | 'akiles_credential'
129733
130902
  )
129734
130903
  | undefined
129735
130904
  /** 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 +131029,13 @@ export type Routes = {
129860
131029
  endpoint_id?: (string | undefined) | undefined
129861
131030
  }
129862
131031
  | undefined
131032
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
131033
+ akiles_metadata?:
131034
+ | {
131035
+ /** ID of the Akiles member PIN. */
131036
+ member_pin_id?: (string | undefined) | undefined
131037
+ }
131038
+ | undefined
129863
131039
  is_managed: false
129864
131040
  }
129865
131041
  )
@@ -129987,6 +131163,7 @@ export type Routes = {
129987
131163
  | 'salto_ks_tag'
129988
131164
  | 'avigilon_alta_credential'
129989
131165
  | 'kisi_credential'
131166
+ | 'akiles_credential'
129990
131167
  )
129991
131168
  | undefined
129992
131169
  /** 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 +131294,13 @@ export type Routes = {
130117
131294
  endpoint_id?: (string | undefined) | undefined
130118
131295
  }
130119
131296
  | undefined
131297
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
131298
+ akiles_metadata?:
131299
+ | {
131300
+ /** ID of the Akiles member PIN. */
131301
+ member_pin_id?: (string | undefined) | undefined
131302
+ }
131303
+ | undefined
130120
131304
  /** Indicates whether Seam manages the credential. */
130121
131305
  is_managed: true
130122
131306
  }
@@ -130165,6 +131349,7 @@ export type Routes = {
130165
131349
  | 'salto_ks_tag'
130166
131350
  | 'avigilon_alta_credential'
130167
131351
  | 'kisi_credential'
131352
+ | 'akiles_credential'
130168
131353
  )
130169
131354
  | undefined
130170
131355
  /** 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 +131480,13 @@ export type Routes = {
130295
131480
  endpoint_id?: (string | undefined) | undefined
130296
131481
  }
130297
131482
  | undefined
131483
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
131484
+ akiles_metadata?:
131485
+ | {
131486
+ /** ID of the Akiles member PIN. */
131487
+ member_pin_id?: (string | undefined) | undefined
131488
+ }
131489
+ | undefined
130298
131490
  is_managed: false
130299
131491
  }
130300
131492
  }
@@ -130433,6 +131625,7 @@ export type Routes = {
130433
131625
  | 'salto_ks_tag'
130434
131626
  | 'avigilon_alta_credential'
130435
131627
  | 'kisi_credential'
131628
+ | 'akiles_credential'
130436
131629
  )
130437
131630
  | undefined
130438
131631
  /** 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 +131750,13 @@ export type Routes = {
130557
131750
  endpoint_id?: (string | undefined) | undefined
130558
131751
  }
130559
131752
  | undefined
131753
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
131754
+ akiles_metadata?:
131755
+ | {
131756
+ /** ID of the Akiles member PIN. */
131757
+ member_pin_id?: (string | undefined) | undefined
131758
+ }
131759
+ | undefined
130560
131760
  /** Indicates whether Seam manages the credential. */
130561
131761
  is_managed: true
130562
131762
  }
@@ -132303,7 +133503,7 @@ export type Routes = {
132303
133503
  }
132304
133504
  | undefined
132305
133505
  /** Metada for a Salto device.
132306
- * @deprecated Use `salto_ks_metadata ` instead.*/
133506
+ * @deprecated Use `salto_ks_metadata` instead.*/
132307
133507
  salto_metadata?:
132308
133508
  | {
132309
133509
  /** Lock ID for a Salto device. */
@@ -134171,7 +135371,7 @@ export type Routes = {
134171
135371
  }
134172
135372
  | undefined
134173
135373
  /** Metada for a Salto device.
134174
- * @deprecated Use `salto_ks_metadata ` instead.*/
135374
+ * @deprecated Use `salto_ks_metadata` instead.*/
134175
135375
  salto_metadata?:
134176
135376
  | {
134177
135377
  /** Lock ID for a Salto device. */
@@ -137538,7 +138738,7 @@ export type Routes = {
137538
138738
  }
137539
138739
  | undefined
137540
138740
  /** Metada for a Salto device.
137541
- * @deprecated Use `salto_ks_metadata ` instead.*/
138741
+ * @deprecated Use `salto_ks_metadata` instead.*/
137542
138742
  salto_metadata?:
137543
138743
  | {
137544
138744
  /** Lock ID for a Salto device. */
@@ -140397,6 +141597,7 @@ export type Routes = {
140397
141597
  | 'salto_ks_tag'
140398
141598
  | 'avigilon_alta_credential'
140399
141599
  | 'kisi_credential'
141600
+ | 'akiles_credential'
140400
141601
  )
140401
141602
  | undefined
140402
141603
  /** 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 +141740,15 @@ export type Routes = {
140539
141740
  | undefined
140540
141741
  }
140541
141742
  | undefined
141743
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
141744
+ akiles_metadata?:
141745
+ | {
141746
+ /** ID of the Akiles member PIN. */
141747
+ member_pin_id?:
141748
+ | (string | undefined)
141749
+ | undefined
141750
+ }
141751
+ | undefined
140542
141752
  /** Indicates whether Seam manages the credential. */
140543
141753
  is_managed: true
140544
141754
  }
@@ -140591,6 +141801,7 @@ export type Routes = {
140591
141801
  | 'salto_ks_tag'
140592
141802
  | 'avigilon_alta_credential'
140593
141803
  | 'kisi_credential'
141804
+ | 'akiles_credential'
140594
141805
  )
140595
141806
  | undefined
140596
141807
  /** 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 +141944,15 @@ export type Routes = {
140733
141944
  | undefined
140734
141945
  }
140735
141946
  | undefined
141947
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
141948
+ akiles_metadata?:
141949
+ | {
141950
+ /** ID of the Akiles member PIN. */
141951
+ member_pin_id?:
141952
+ | (string | undefined)
141953
+ | undefined
141954
+ }
141955
+ | undefined
140736
141956
  is_managed: false
140737
141957
  }
140738
141958
  )
@@ -140864,6 +142084,7 @@ export type Routes = {
140864
142084
  | 'salto_ks_tag'
140865
142085
  | 'avigilon_alta_credential'
140866
142086
  | 'kisi_credential'
142087
+ | 'akiles_credential'
140867
142088
  )
140868
142089
  | undefined
140869
142090
  /** 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 +142215,13 @@ export type Routes = {
140994
142215
  endpoint_id?: (string | undefined) | undefined
140995
142216
  }
140996
142217
  | undefined
142218
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
142219
+ akiles_metadata?:
142220
+ | {
142221
+ /** ID of the Akiles member PIN. */
142222
+ member_pin_id?: (string | undefined) | undefined
142223
+ }
142224
+ | undefined
140997
142225
  /** Indicates whether Seam manages the credential. */
140998
142226
  is_managed: true
140999
142227
  }
@@ -141046,6 +142274,7 @@ export type Routes = {
141046
142274
  | 'salto_ks_tag'
141047
142275
  | 'avigilon_alta_credential'
141048
142276
  | 'kisi_credential'
142277
+ | 'akiles_credential'
141049
142278
  )
141050
142279
  | undefined
141051
142280
  /** 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 +142405,13 @@ export type Routes = {
141176
142405
  endpoint_id?: (string | undefined) | undefined
141177
142406
  }
141178
142407
  | undefined
142408
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
142409
+ akiles_metadata?:
142410
+ | {
142411
+ /** ID of the Akiles member PIN. */
142412
+ member_pin_id?: (string | undefined) | undefined
142413
+ }
142414
+ | undefined
141179
142415
  is_managed: false
141180
142416
  }
141181
142417
  }
@@ -141314,6 +142550,7 @@ export type Routes = {
141314
142550
  | 'salto_ks_tag'
141315
142551
  | 'avigilon_alta_credential'
141316
142552
  | 'kisi_credential'
142553
+ | 'akiles_credential'
141317
142554
  )
141318
142555
  | undefined
141319
142556
  /** 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 +142681,13 @@ export type Routes = {
141444
142681
  endpoint_id?: (string | undefined) | undefined
141445
142682
  }
141446
142683
  | undefined
142684
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
142685
+ akiles_metadata?:
142686
+ | {
142687
+ /** ID of the Akiles member PIN. */
142688
+ member_pin_id?: (string | undefined) | undefined
142689
+ }
142690
+ | undefined
141447
142691
  /** Indicates whether Seam manages the credential. */
141448
142692
  is_managed: true
141449
142693
  }
@@ -145796,7 +147040,7 @@ export type Routes = {
145796
147040
  }
145797
147041
  | undefined
145798
147042
  event_type: 'connected_account.deleted'
145799
- /** undocumented: Unreleased. */
147043
+ /** */
145800
147044
  connected_account_type?: string | undefined
145801
147045
  /** The customer key associated with this connected account, if any. */
145802
147046
  customer_key?: string | undefined
@@ -147064,29 +148308,13 @@ export type Routes = {
147064
148308
  | 'unknown'
147065
148309
  | 'remote'
147066
148310
  | 'card'
147067
- /**
147068
- undocumented: Unreleased.
147069
- ---
147070
- ID of the user identity associated with the lock event.
147071
- */
148311
+ /** ID of the user identity associated with the lock event. */
147072
148312
  user_identity_id?: string | undefined
147073
- /**
147074
- undocumented: Unreleased.
147075
- ---
147076
- ID of the ACS system associated with the lock event.
147077
- */
148313
+ /** ID of the ACS system associated with the lock event. */
147078
148314
  acs_system_id?: string | undefined
147079
- /**
147080
- undocumented: Unreleased.
147081
- ---
147082
- ID of the ACS user associated with the lock event.
147083
- */
148315
+ /** ID of the ACS user associated with the lock event. */
147084
148316
  acs_user_id?: string | undefined
147085
- /**
147086
- undocumented: Unreleased.
147087
- ---
147088
- ID of the ACS entrance associated with the lock event.
147089
- */
148317
+ /** ID of the ACS entrance associated with the lock event. */
147090
148318
  acs_entrance_id?: string | undefined
147091
148319
  /**
147092
148320
  Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
@@ -147145,29 +148373,13 @@ export type Routes = {
147145
148373
  | 'unknown'
147146
148374
  | 'remote'
147147
148375
  | 'card'
147148
- /**
147149
- undocumented: Unreleased.
147150
- ---
147151
- ID of the user identity associated with the unlock event.
147152
- */
148376
+ /** ID of the user identity associated with the unlock event. */
147153
148377
  user_identity_id?: string | undefined
147154
- /**
147155
- undocumented: Unreleased.
147156
- ---
147157
- ID of the ACS system associated with the unlock event.
147158
- */
148378
+ /** ID of the ACS system associated with the unlock event. */
147159
148379
  acs_system_id?: string | undefined
147160
- /**
147161
- undocumented: Unreleased.
147162
- ---
147163
- ID of the ACS user associated with the unlock event.
147164
- */
148380
+ /** ID of the ACS user associated with the unlock event. */
147165
148381
  acs_user_id?: string | undefined
147166
- /**
147167
- undocumented: Unreleased.
147168
- ---
147169
- ID of the ACS entrance associated with the unlock event.
147170
- */
148382
+ /** ID of the ACS entrance associated with the unlock event. */
147171
148383
  acs_entrance_id?: string | undefined
147172
148384
  /**
147173
148385
  Whether the unlock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
@@ -147210,29 +148422,13 @@ export type Routes = {
147210
148422
  event_type: 'lock.access_denied'
147211
148423
  /** ID of the access code that was used in the unlock attempts. */
147212
148424
  access_code_id?: string | undefined
147213
- /**
147214
- undocumented: Unreleased.
147215
- ---
147216
- ID of the user identity associated with the access-denied event.
147217
- */
148425
+ /** ID of the user identity associated with the access-denied event. */
147218
148426
  user_identity_id?: string | undefined
147219
- /**
147220
- undocumented: Unreleased.
147221
- ---
147222
- ID of the ACS system associated with the access-denied event.
147223
- */
148427
+ /** ID of the ACS system associated with the access-denied event. */
147224
148428
  acs_system_id?: string | undefined
147225
- /**
147226
- undocumented: Unreleased.
147227
- ---
147228
- ID of the ACS user associated with the access-denied event.
147229
- */
148429
+ /** ID of the ACS user associated with the access-denied event. */
147230
148430
  acs_user_id?: string | undefined
147231
- /**
147232
- undocumented: Unreleased.
147233
- ---
147234
- ID of the ACS entrance associated with the access-denied event.
147235
- */
148431
+ /** ID of the ACS entrance associated with the access-denied event. */
147236
148432
  acs_entrance_id?: string | undefined
147237
148433
  /** Why access was denied, when the provider reports a determinable cause. Omitted when unknown. */
147238
148434
  reason?:
@@ -147793,6 +148989,7 @@ export type Routes = {
147793
148989
  | 'salto_ks_tag'
147794
148990
  | 'avigilon_alta_credential'
147795
148991
  | 'kisi_credential'
148992
+ | 'akiles_credential'
147796
148993
  )
147797
148994
  | undefined
147798
148995
  /** 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 +149114,13 @@ export type Routes = {
147917
149114
  endpoint_id?: (string | undefined) | undefined
147918
149115
  }
147919
149116
  | undefined
149117
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
149118
+ akiles_metadata?:
149119
+ | {
149120
+ /** ID of the Akiles member PIN. */
149121
+ member_pin_id?: (string | undefined) | undefined
149122
+ }
149123
+ | undefined
147920
149124
  /** Indicates whether Seam manages the credential. */
147921
149125
  is_managed: true
147922
149126
  }[]
@@ -147967,6 +149171,7 @@ export type Routes = {
147967
149171
  | 'salto_ks_tag'
147968
149172
  | 'avigilon_alta_credential'
147969
149173
  | 'kisi_credential'
149174
+ | 'akiles_credential'
147970
149175
  )
147971
149176
  | undefined
147972
149177
  /** 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 +149296,13 @@ export type Routes = {
148091
149296
  endpoint_id?: (string | undefined) | undefined
148092
149297
  }
148093
149298
  | undefined
149299
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
149300
+ akiles_metadata?:
149301
+ | {
149302
+ /** ID of the Akiles member PIN. */
149303
+ member_pin_id?: (string | undefined) | undefined
149304
+ }
149305
+ | undefined
148094
149306
  is_managed: false
148095
149307
  }[]
148096
149308
  | undefined
@@ -149391,6 +150603,7 @@ export type Routes = {
149391
150603
  | 'salto_ks_tag'
149392
150604
  | 'avigilon_alta_credential'
149393
150605
  | 'kisi_credential'
150606
+ | 'akiles_credential'
149394
150607
  )
149395
150608
  | undefined
149396
150609
  /** 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 +150734,13 @@ export type Routes = {
149521
150734
  endpoint_id?: (string | undefined) | undefined
149522
150735
  }
149523
150736
  | undefined
150737
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
150738
+ akiles_metadata?:
150739
+ | {
150740
+ /** ID of the Akiles member PIN. */
150741
+ member_pin_id?: (string | undefined) | undefined
150742
+ }
150743
+ | undefined
149524
150744
  /** Indicates whether Seam manages the credential. */
149525
150745
  is_managed: true
149526
150746
  }
@@ -149573,6 +150793,7 @@ export type Routes = {
149573
150793
  | 'salto_ks_tag'
149574
150794
  | 'avigilon_alta_credential'
149575
150795
  | 'kisi_credential'
150796
+ | 'akiles_credential'
149576
150797
  )
149577
150798
  | undefined
149578
150799
  /** 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 +150924,13 @@ export type Routes = {
149703
150924
  endpoint_id?: (string | undefined) | undefined
149704
150925
  }
149705
150926
  | undefined
150927
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
150928
+ akiles_metadata?:
150929
+ | {
150930
+ /** ID of the Akiles member PIN. */
150931
+ member_pin_id?: (string | undefined) | undefined
150932
+ }
150933
+ | undefined
149706
150934
  is_managed: false
149707
150935
  }
149708
150936
  )
@@ -149830,6 +151058,7 @@ export type Routes = {
149830
151058
  | 'salto_ks_tag'
149831
151059
  | 'avigilon_alta_credential'
149832
151060
  | 'kisi_credential'
151061
+ | 'akiles_credential'
149833
151062
  )
149834
151063
  | undefined
149835
151064
  /** 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 +151189,13 @@ export type Routes = {
149960
151189
  endpoint_id?: (string | undefined) | undefined
149961
151190
  }
149962
151191
  | undefined
151192
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
151193
+ akiles_metadata?:
151194
+ | {
151195
+ /** ID of the Akiles member PIN. */
151196
+ member_pin_id?: (string | undefined) | undefined
151197
+ }
151198
+ | undefined
149963
151199
  /** Indicates whether Seam manages the credential. */
149964
151200
  is_managed: true
149965
151201
  }
@@ -150008,6 +151244,7 @@ export type Routes = {
150008
151244
  | 'salto_ks_tag'
150009
151245
  | 'avigilon_alta_credential'
150010
151246
  | 'kisi_credential'
151247
+ | 'akiles_credential'
150011
151248
  )
150012
151249
  | undefined
150013
151250
  /** 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 +151375,13 @@ export type Routes = {
150138
151375
  endpoint_id?: (string | undefined) | undefined
150139
151376
  }
150140
151377
  | undefined
151378
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
151379
+ akiles_metadata?:
151380
+ | {
151381
+ /** ID of the Akiles member PIN. */
151382
+ member_pin_id?: (string | undefined) | undefined
151383
+ }
151384
+ | undefined
150141
151385
  is_managed: false
150142
151386
  }
150143
151387
  }
@@ -150276,6 +151520,7 @@ export type Routes = {
150276
151520
  | 'salto_ks_tag'
150277
151521
  | 'avigilon_alta_credential'
150278
151522
  | 'kisi_credential'
151523
+ | 'akiles_credential'
150279
151524
  )
150280
151525
  | undefined
150281
151526
  /** 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 +151645,13 @@ export type Routes = {
150400
151645
  endpoint_id?: (string | undefined) | undefined
150401
151646
  }
150402
151647
  | undefined
151648
+ /** Akiles-specific metadata for the [credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials). */
151649
+ akiles_metadata?:
151650
+ | {
151651
+ /** ID of the Akiles member PIN. */
151652
+ member_pin_id?: (string | undefined) | undefined
151653
+ }
151654
+ | undefined
150403
151655
  /** Indicates whether Seam manages the credential. */
150404
151656
  is_managed: true
150405
151657
  }