@seamapi/types 1.550.0 → 1.552.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/dist/connect.cjs +182 -1
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1429 -125
  4. package/dist/index.cjs +182 -1
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-credential.d.ts +8 -8
  7. package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +2 -2
  8. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +28 -28
  9. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +12 -12
  10. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +16 -16
  11. package/lib/seam/connect/models/batch.d.ts +1196 -131
  12. package/lib/seam/connect/models/devices/device-metadata.d.ts +95 -0
  13. package/lib/seam/connect/models/devices/device-metadata.js +62 -0
  14. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  15. package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
  16. package/lib/seam/connect/models/devices/device-type.js +8 -0
  17. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  18. package/lib/seam/connect/models/devices/device.d.ts +136 -3
  19. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +98 -3
  20. package/lib/seam/connect/models/events/access-methods.d.ts +12 -0
  21. package/lib/seam/connect/models/events/access-methods.js +8 -0
  22. package/lib/seam/connect/models/events/access-methods.js.map +1 -1
  23. package/lib/seam/connect/models/events/seam-event.d.ts +6 -0
  24. package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
  25. package/lib/seam/connect/openapi.d.ts +128 -0
  26. package/lib/seam/connect/openapi.js +148 -0
  27. package/lib/seam/connect/openapi.js.map +1 -1
  28. package/lib/seam/connect/route-types.d.ts +691 -25
  29. package/package.json +1 -1
  30. package/src/lib/seam/connect/models/devices/device-metadata.ts +62 -0
  31. package/src/lib/seam/connect/models/devices/device-type.ts +18 -0
  32. package/src/lib/seam/connect/models/events/access-methods.ts +12 -0
  33. package/src/lib/seam/connect/openapi.ts +162 -0
  34. package/src/lib/seam/connect/route-types.ts +691 -0
@@ -4013,17 +4013,17 @@ declare const acs_credential: z.ZodObject<{
4013
4013
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4014
4014
  endpoint_id: z.ZodOptional<z.ZodString>;
4015
4015
  }, "strip", z.ZodTypeAny, {
4016
+ key_id?: string | undefined;
4016
4017
  endpoint_id?: string | undefined;
4017
4018
  auto_join?: boolean | undefined;
4018
4019
  override_guest_acs_entrance_ids?: string[] | undefined;
4019
- key_id?: string | undefined;
4020
4020
  key_issuing_request_id?: string | undefined;
4021
4021
  door_names?: string[] | undefined;
4022
4022
  }, {
4023
+ key_id?: string | undefined;
4023
4024
  endpoint_id?: string | undefined;
4024
4025
  auto_join?: boolean | undefined;
4025
4026
  override_guest_acs_entrance_ids?: string[] | undefined;
4026
- key_id?: string | undefined;
4027
4027
  key_issuing_request_id?: string | undefined;
4028
4028
  door_names?: string[] | undefined;
4029
4029
  }>>;
@@ -4081,10 +4081,10 @@ declare const acs_credential: z.ZodObject<{
4081
4081
  credential_id?: string | undefined;
4082
4082
  } | undefined;
4083
4083
  assa_abloy_vostio_metadata?: {
4084
+ key_id?: string | undefined;
4084
4085
  endpoint_id?: string | undefined;
4085
4086
  auto_join?: boolean | undefined;
4086
4087
  override_guest_acs_entrance_ids?: string[] | undefined;
4087
- key_id?: string | undefined;
4088
4088
  key_issuing_request_id?: string | undefined;
4089
4089
  door_names?: string[] | undefined;
4090
4090
  } | undefined;
@@ -4153,10 +4153,10 @@ declare const acs_credential: z.ZodObject<{
4153
4153
  credential_id?: string | undefined;
4154
4154
  } | undefined;
4155
4155
  assa_abloy_vostio_metadata?: {
4156
+ key_id?: string | undefined;
4156
4157
  endpoint_id?: string | undefined;
4157
4158
  auto_join?: boolean | undefined;
4158
4159
  override_guest_acs_entrance_ids?: string[] | undefined;
4159
- key_id?: string | undefined;
4160
4160
  key_issuing_request_id?: string | undefined;
4161
4161
  door_names?: string[] | undefined;
4162
4162
  } | undefined;
@@ -4323,17 +4323,17 @@ declare const unmanaged_acs_credential: z.ZodObject<{
4323
4323
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4324
4324
  endpoint_id: z.ZodOptional<z.ZodString>;
4325
4325
  }, "strip", z.ZodTypeAny, {
4326
+ key_id?: string | undefined;
4326
4327
  endpoint_id?: string | undefined;
4327
4328
  auto_join?: boolean | undefined;
4328
4329
  override_guest_acs_entrance_ids?: string[] | undefined;
4329
- key_id?: string | undefined;
4330
4330
  key_issuing_request_id?: string | undefined;
4331
4331
  door_names?: string[] | undefined;
4332
4332
  }, {
4333
+ key_id?: string | undefined;
4333
4334
  endpoint_id?: string | undefined;
4334
4335
  auto_join?: boolean | undefined;
4335
4336
  override_guest_acs_entrance_ids?: string[] | undefined;
4336
- key_id?: string | undefined;
4337
4337
  key_issuing_request_id?: string | undefined;
4338
4338
  door_names?: string[] | undefined;
4339
4339
  }>>;
@@ -4391,10 +4391,10 @@ declare const unmanaged_acs_credential: z.ZodObject<{
4391
4391
  credential_id?: string | undefined;
4392
4392
  } | undefined;
4393
4393
  assa_abloy_vostio_metadata?: {
4394
+ key_id?: string | undefined;
4394
4395
  endpoint_id?: string | undefined;
4395
4396
  auto_join?: boolean | undefined;
4396
4397
  override_guest_acs_entrance_ids?: string[] | undefined;
4397
- key_id?: string | undefined;
4398
4398
  key_issuing_request_id?: string | undefined;
4399
4399
  door_names?: string[] | undefined;
4400
4400
  } | undefined;
@@ -4463,10 +4463,10 @@ declare const unmanaged_acs_credential: z.ZodObject<{
4463
4463
  credential_id?: string | undefined;
4464
4464
  } | undefined;
4465
4465
  assa_abloy_vostio_metadata?: {
4466
+ key_id?: string | undefined;
4466
4467
  endpoint_id?: string | undefined;
4467
4468
  auto_join?: boolean | undefined;
4468
4469
  override_guest_acs_entrance_ids?: string[] | undefined;
4469
- key_id?: string | undefined;
4470
4470
  key_issuing_request_id?: string | undefined;
4471
4471
  door_names?: string[] | undefined;
4472
4472
  } | undefined;
@@ -6785,17 +6785,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
6785
6785
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6786
6786
  endpoint_id: z.ZodOptional<z.ZodString>;
6787
6787
  }, "strip", z.ZodTypeAny, {
6788
+ key_id?: string | undefined;
6788
6789
  endpoint_id?: string | undefined;
6789
6790
  auto_join?: boolean | undefined;
6790
6791
  override_guest_acs_entrance_ids?: string[] | undefined;
6791
- key_id?: string | undefined;
6792
6792
  key_issuing_request_id?: string | undefined;
6793
6793
  door_names?: string[] | undefined;
6794
6794
  }, {
6795
+ key_id?: string | undefined;
6795
6796
  endpoint_id?: string | undefined;
6796
6797
  auto_join?: boolean | undefined;
6797
6798
  override_guest_acs_entrance_ids?: string[] | undefined;
6798
- key_id?: string | undefined;
6799
6799
  key_issuing_request_id?: string | undefined;
6800
6800
  door_names?: string[] | undefined;
6801
6801
  }>>;
@@ -6853,10 +6853,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
6853
6853
  credential_id?: string | undefined;
6854
6854
  } | undefined;
6855
6855
  assa_abloy_vostio_metadata?: {
6856
+ key_id?: string | undefined;
6856
6857
  endpoint_id?: string | undefined;
6857
6858
  auto_join?: boolean | undefined;
6858
6859
  override_guest_acs_entrance_ids?: string[] | undefined;
6859
- key_id?: string | undefined;
6860
6860
  key_issuing_request_id?: string | undefined;
6861
6861
  door_names?: string[] | undefined;
6862
6862
  } | undefined;
@@ -6925,10 +6925,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
6925
6925
  credential_id?: string | undefined;
6926
6926
  } | undefined;
6927
6927
  assa_abloy_vostio_metadata?: {
6928
+ key_id?: string | undefined;
6928
6929
  endpoint_id?: string | undefined;
6929
6930
  auto_join?: boolean | undefined;
6930
6931
  override_guest_acs_entrance_ids?: string[] | undefined;
6931
- key_id?: string | undefined;
6932
6932
  key_issuing_request_id?: string | undefined;
6933
6933
  door_names?: string[] | undefined;
6934
6934
  } | undefined;
@@ -7094,17 +7094,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
7094
7094
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7095
7095
  endpoint_id: z.ZodOptional<z.ZodString>;
7096
7096
  }, "strip", z.ZodTypeAny, {
7097
+ key_id?: string | undefined;
7097
7098
  endpoint_id?: string | undefined;
7098
7099
  auto_join?: boolean | undefined;
7099
7100
  override_guest_acs_entrance_ids?: string[] | undefined;
7100
- key_id?: string | undefined;
7101
7101
  key_issuing_request_id?: string | undefined;
7102
7102
  door_names?: string[] | undefined;
7103
7103
  }, {
7104
+ key_id?: string | undefined;
7104
7105
  endpoint_id?: string | undefined;
7105
7106
  auto_join?: boolean | undefined;
7106
7107
  override_guest_acs_entrance_ids?: string[] | undefined;
7107
- key_id?: string | undefined;
7108
7108
  key_issuing_request_id?: string | undefined;
7109
7109
  door_names?: string[] | undefined;
7110
7110
  }>>;
@@ -7162,10 +7162,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
7162
7162
  credential_id?: string | undefined;
7163
7163
  } | undefined;
7164
7164
  assa_abloy_vostio_metadata?: {
7165
+ key_id?: string | undefined;
7165
7166
  endpoint_id?: string | undefined;
7166
7167
  auto_join?: boolean | undefined;
7167
7168
  override_guest_acs_entrance_ids?: string[] | undefined;
7168
- key_id?: string | undefined;
7169
7169
  key_issuing_request_id?: string | undefined;
7170
7170
  door_names?: string[] | undefined;
7171
7171
  } | undefined;
@@ -7234,10 +7234,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
7234
7234
  credential_id?: string | undefined;
7235
7235
  } | undefined;
7236
7236
  assa_abloy_vostio_metadata?: {
7237
+ key_id?: string | undefined;
7237
7238
  endpoint_id?: string | undefined;
7238
7239
  auto_join?: boolean | undefined;
7239
7240
  override_guest_acs_entrance_ids?: string[] | undefined;
7240
- key_id?: string | undefined;
7241
7241
  key_issuing_request_id?: string | undefined;
7242
7242
  door_names?: string[] | undefined;
7243
7243
  } | undefined;
@@ -7343,10 +7343,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
7343
7343
  credential_id?: string | undefined;
7344
7344
  } | undefined;
7345
7345
  assa_abloy_vostio_metadata?: {
7346
+ key_id?: string | undefined;
7346
7347
  endpoint_id?: string | undefined;
7347
7348
  auto_join?: boolean | undefined;
7348
7349
  override_guest_acs_entrance_ids?: string[] | undefined;
7349
- key_id?: string | undefined;
7350
7350
  key_issuing_request_id?: string | undefined;
7351
7351
  door_names?: string[] | undefined;
7352
7352
  } | undefined;
@@ -7415,10 +7415,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
7415
7415
  credential_id?: string | undefined;
7416
7416
  } | undefined;
7417
7417
  assa_abloy_vostio_metadata?: {
7418
+ key_id?: string | undefined;
7418
7419
  endpoint_id?: string | undefined;
7419
7420
  auto_join?: boolean | undefined;
7420
7421
  override_guest_acs_entrance_ids?: string[] | undefined;
7421
- key_id?: string | undefined;
7422
7422
  key_issuing_request_id?: string | undefined;
7423
7423
  door_names?: string[] | undefined;
7424
7424
  } | undefined;
@@ -7514,10 +7514,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
7514
7514
  credential_id?: string | undefined;
7515
7515
  } | undefined;
7516
7516
  assa_abloy_vostio_metadata?: {
7517
+ key_id?: string | undefined;
7517
7518
  endpoint_id?: string | undefined;
7518
7519
  auto_join?: boolean | undefined;
7519
7520
  override_guest_acs_entrance_ids?: string[] | undefined;
7520
- key_id?: string | undefined;
7521
7521
  key_issuing_request_id?: string | undefined;
7522
7522
  door_names?: string[] | undefined;
7523
7523
  } | undefined;
@@ -7586,10 +7586,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
7586
7586
  credential_id?: string | undefined;
7587
7587
  } | undefined;
7588
7588
  assa_abloy_vostio_metadata?: {
7589
+ key_id?: string | undefined;
7589
7590
  endpoint_id?: string | undefined;
7590
7591
  auto_join?: boolean | undefined;
7591
7592
  override_guest_acs_entrance_ids?: string[] | undefined;
7592
- key_id?: string | undefined;
7593
7593
  key_issuing_request_id?: string | undefined;
7594
7594
  door_names?: string[] | undefined;
7595
7595
  } | undefined;
@@ -7690,10 +7690,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
7690
7690
  credential_id?: string | undefined;
7691
7691
  } | undefined;
7692
7692
  assa_abloy_vostio_metadata?: {
7693
+ key_id?: string | undefined;
7693
7694
  endpoint_id?: string | undefined;
7694
7695
  auto_join?: boolean | undefined;
7695
7696
  override_guest_acs_entrance_ids?: string[] | undefined;
7696
- key_id?: string | undefined;
7697
7697
  key_issuing_request_id?: string | undefined;
7698
7698
  door_names?: string[] | undefined;
7699
7699
  } | undefined;
@@ -7762,10 +7762,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
7762
7762
  credential_id?: string | undefined;
7763
7763
  } | undefined;
7764
7764
  assa_abloy_vostio_metadata?: {
7765
+ key_id?: string | undefined;
7765
7766
  endpoint_id?: string | undefined;
7766
7767
  auto_join?: boolean | undefined;
7767
7768
  override_guest_acs_entrance_ids?: string[] | undefined;
7768
- key_id?: string | undefined;
7769
7769
  key_issuing_request_id?: string | undefined;
7770
7770
  door_names?: string[] | undefined;
7771
7771
  } | undefined;
@@ -7867,10 +7867,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
7867
7867
  credential_id?: string | undefined;
7868
7868
  } | undefined;
7869
7869
  assa_abloy_vostio_metadata?: {
7870
+ key_id?: string | undefined;
7870
7871
  endpoint_id?: string | undefined;
7871
7872
  auto_join?: boolean | undefined;
7872
7873
  override_guest_acs_entrance_ids?: string[] | undefined;
7873
- key_id?: string | undefined;
7874
7874
  key_issuing_request_id?: string | undefined;
7875
7875
  door_names?: string[] | undefined;
7876
7876
  } | undefined;
@@ -7939,10 +7939,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
7939
7939
  credential_id?: string | undefined;
7940
7940
  } | undefined;
7941
7941
  assa_abloy_vostio_metadata?: {
7942
+ key_id?: string | undefined;
7942
7943
  endpoint_id?: string | undefined;
7943
7944
  auto_join?: boolean | undefined;
7944
7945
  override_guest_acs_entrance_ids?: string[] | undefined;
7945
- key_id?: string | undefined;
7946
7946
  key_issuing_request_id?: string | undefined;
7947
7947
  door_names?: string[] | undefined;
7948
7948
  } | undefined;
@@ -8203,17 +8203,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8203
8203
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8204
8204
  endpoint_id: z.ZodOptional<z.ZodString>;
8205
8205
  }, "strip", z.ZodTypeAny, {
8206
+ key_id?: string | undefined;
8206
8207
  endpoint_id?: string | undefined;
8207
8208
  auto_join?: boolean | undefined;
8208
8209
  override_guest_acs_entrance_ids?: string[] | undefined;
8209
- key_id?: string | undefined;
8210
8210
  key_issuing_request_id?: string | undefined;
8211
8211
  door_names?: string[] | undefined;
8212
8212
  }, {
8213
+ key_id?: string | undefined;
8213
8214
  endpoint_id?: string | undefined;
8214
8215
  auto_join?: boolean | undefined;
8215
8216
  override_guest_acs_entrance_ids?: string[] | undefined;
8216
- key_id?: string | undefined;
8217
8217
  key_issuing_request_id?: string | undefined;
8218
8218
  door_names?: string[] | undefined;
8219
8219
  }>>;
@@ -8271,10 +8271,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8271
8271
  credential_id?: string | undefined;
8272
8272
  } | undefined;
8273
8273
  assa_abloy_vostio_metadata?: {
8274
+ key_id?: string | undefined;
8274
8275
  endpoint_id?: string | undefined;
8275
8276
  auto_join?: boolean | undefined;
8276
8277
  override_guest_acs_entrance_ids?: string[] | undefined;
8277
- key_id?: string | undefined;
8278
8278
  key_issuing_request_id?: string | undefined;
8279
8279
  door_names?: string[] | undefined;
8280
8280
  } | undefined;
@@ -8343,10 +8343,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8343
8343
  credential_id?: string | undefined;
8344
8344
  } | undefined;
8345
8345
  assa_abloy_vostio_metadata?: {
8346
+ key_id?: string | undefined;
8346
8347
  endpoint_id?: string | undefined;
8347
8348
  auto_join?: boolean | undefined;
8348
8349
  override_guest_acs_entrance_ids?: string[] | undefined;
8349
- key_id?: string | undefined;
8350
8350
  key_issuing_request_id?: string | undefined;
8351
8351
  door_names?: string[] | undefined;
8352
8352
  } | undefined;
@@ -8512,17 +8512,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8512
8512
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8513
8513
  endpoint_id: z.ZodOptional<z.ZodString>;
8514
8514
  }, "strip", z.ZodTypeAny, {
8515
+ key_id?: string | undefined;
8515
8516
  endpoint_id?: string | undefined;
8516
8517
  auto_join?: boolean | undefined;
8517
8518
  override_guest_acs_entrance_ids?: string[] | undefined;
8518
- key_id?: string | undefined;
8519
8519
  key_issuing_request_id?: string | undefined;
8520
8520
  door_names?: string[] | undefined;
8521
8521
  }, {
8522
+ key_id?: string | undefined;
8522
8523
  endpoint_id?: string | undefined;
8523
8524
  auto_join?: boolean | undefined;
8524
8525
  override_guest_acs_entrance_ids?: string[] | undefined;
8525
- key_id?: string | undefined;
8526
8526
  key_issuing_request_id?: string | undefined;
8527
8527
  door_names?: string[] | undefined;
8528
8528
  }>>;
@@ -8580,10 +8580,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8580
8580
  credential_id?: string | undefined;
8581
8581
  } | undefined;
8582
8582
  assa_abloy_vostio_metadata?: {
8583
+ key_id?: string | undefined;
8583
8584
  endpoint_id?: string | undefined;
8584
8585
  auto_join?: boolean | undefined;
8585
8586
  override_guest_acs_entrance_ids?: string[] | undefined;
8586
- key_id?: string | undefined;
8587
8587
  key_issuing_request_id?: string | undefined;
8588
8588
  door_names?: string[] | undefined;
8589
8589
  } | undefined;
@@ -8652,10 +8652,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8652
8652
  credential_id?: string | undefined;
8653
8653
  } | undefined;
8654
8654
  assa_abloy_vostio_metadata?: {
8655
+ key_id?: string | undefined;
8655
8656
  endpoint_id?: string | undefined;
8656
8657
  auto_join?: boolean | undefined;
8657
8658
  override_guest_acs_entrance_ids?: string[] | undefined;
8658
- key_id?: string | undefined;
8659
8659
  key_issuing_request_id?: string | undefined;
8660
8660
  door_names?: string[] | undefined;
8661
8661
  } | undefined;
@@ -8729,10 +8729,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8729
8729
  credential_id?: string | undefined;
8730
8730
  } | undefined;
8731
8731
  assa_abloy_vostio_metadata?: {
8732
+ key_id?: string | undefined;
8732
8733
  endpoint_id?: string | undefined;
8733
8734
  auto_join?: boolean | undefined;
8734
8735
  override_guest_acs_entrance_ids?: string[] | undefined;
8735
- key_id?: string | undefined;
8736
8736
  key_issuing_request_id?: string | undefined;
8737
8737
  door_names?: string[] | undefined;
8738
8738
  } | undefined;
@@ -8801,10 +8801,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8801
8801
  credential_id?: string | undefined;
8802
8802
  } | undefined;
8803
8803
  assa_abloy_vostio_metadata?: {
8804
+ key_id?: string | undefined;
8804
8805
  endpoint_id?: string | undefined;
8805
8806
  auto_join?: boolean | undefined;
8806
8807
  override_guest_acs_entrance_ids?: string[] | undefined;
8807
- key_id?: string | undefined;
8808
8808
  key_issuing_request_id?: string | undefined;
8809
8809
  door_names?: string[] | undefined;
8810
8810
  } | undefined;
@@ -8879,10 +8879,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8879
8879
  credential_id?: string | undefined;
8880
8880
  } | undefined;
8881
8881
  assa_abloy_vostio_metadata?: {
8882
+ key_id?: string | undefined;
8882
8883
  endpoint_id?: string | undefined;
8883
8884
  auto_join?: boolean | undefined;
8884
8885
  override_guest_acs_entrance_ids?: string[] | undefined;
8885
- key_id?: string | undefined;
8886
8886
  key_issuing_request_id?: string | undefined;
8887
8887
  door_names?: string[] | undefined;
8888
8888
  } | undefined;
@@ -8951,10 +8951,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
8951
8951
  credential_id?: string | undefined;
8952
8952
  } | undefined;
8953
8953
  assa_abloy_vostio_metadata?: {
8954
+ key_id?: string | undefined;
8954
8955
  endpoint_id?: string | undefined;
8955
8956
  auto_join?: boolean | undefined;
8956
8957
  override_guest_acs_entrance_ids?: string[] | undefined;
8957
- key_id?: string | undefined;
8958
8958
  key_issuing_request_id?: string | undefined;
8959
8959
  door_names?: string[] | undefined;
8960
8960
  } | undefined;
@@ -10404,7 +10404,7 @@ declare const batch: z.ZodObject<{
10404
10404
  }>, "many">>;
10405
10405
  devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
10406
10406
  device_id: z.ZodString;
10407
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
10407
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
10408
10408
  nickname: z.ZodOptional<z.ZodString>;
10409
10409
  display_name: z.ZodString;
10410
10410
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -11365,11 +11365,68 @@ declare const batch: z.ZodObject<{
11365
11365
  product_type: string;
11366
11366
  }>>;
11367
11367
  keynest_metadata: z.ZodOptional<z.ZodObject<{
11368
+ key_id: z.ZodOptional<z.ZodString>;
11368
11369
  device_name: z.ZodOptional<z.ZodString>;
11370
+ property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11371
+ property_postcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11372
+ key_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11373
+ subscription_plan: z.ZodOptional<z.ZodString>;
11374
+ status_type: z.ZodOptional<z.ZodString>;
11375
+ current_or_last_store_id: z.ZodOptional<z.ZodNumber>;
11376
+ last_movement: z.ZodOptional<z.ZodString>;
11377
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11378
+ current_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11379
+ current_user_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11380
+ current_user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11381
+ current_user_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11382
+ current_user_company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11383
+ handover_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11384
+ keynest_app_user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11385
+ default_office_id: z.ZodOptional<z.ZodNumber>;
11386
+ fob_id: z.ZodOptional<z.ZodNumber>;
11387
+ has_photo: z.ZodOptional<z.ZodBoolean>;
11369
11388
  }, "strip", z.ZodTypeAny, {
11370
11389
  device_name?: string | undefined;
11390
+ key_id?: string | undefined;
11391
+ property_id?: string | null | undefined;
11392
+ property_postcode?: string | null | undefined;
11393
+ key_notes?: string | null | undefined;
11394
+ subscription_plan?: string | undefined;
11395
+ status_type?: string | undefined;
11396
+ current_or_last_store_id?: number | undefined;
11397
+ last_movement?: string | undefined;
11398
+ address?: string | null | undefined;
11399
+ current_status?: string | null | undefined;
11400
+ current_user_name?: string | null | undefined;
11401
+ current_user_email?: string | null | undefined;
11402
+ current_user_phone_number?: string | null | undefined;
11403
+ current_user_company?: string | null | undefined;
11404
+ handover_method?: string | null | undefined;
11405
+ keynest_app_user?: string | null | undefined;
11406
+ default_office_id?: number | undefined;
11407
+ fob_id?: number | undefined;
11408
+ has_photo?: boolean | undefined;
11371
11409
  }, {
11372
11410
  device_name?: string | undefined;
11411
+ key_id?: string | undefined;
11412
+ property_id?: string | null | undefined;
11413
+ property_postcode?: string | null | undefined;
11414
+ key_notes?: string | null | undefined;
11415
+ subscription_plan?: string | undefined;
11416
+ status_type?: string | undefined;
11417
+ current_or_last_store_id?: number | undefined;
11418
+ last_movement?: string | undefined;
11419
+ address?: string | null | undefined;
11420
+ current_status?: string | null | undefined;
11421
+ current_user_name?: string | null | undefined;
11422
+ current_user_email?: string | null | undefined;
11423
+ current_user_phone_number?: string | null | undefined;
11424
+ current_user_company?: string | null | undefined;
11425
+ handover_method?: string | null | undefined;
11426
+ keynest_app_user?: string | null | undefined;
11427
+ default_office_id?: number | undefined;
11428
+ fob_id?: number | undefined;
11429
+ has_photo?: boolean | undefined;
11373
11430
  }>>;
11374
11431
  }, "strip", z.ZodTypeAny, {
11375
11432
  ecobee_metadata?: {
@@ -11607,6 +11664,25 @@ declare const batch: z.ZodObject<{
11607
11664
  } | undefined;
11608
11665
  keynest_metadata?: {
11609
11666
  device_name?: string | undefined;
11667
+ key_id?: string | undefined;
11668
+ property_id?: string | null | undefined;
11669
+ property_postcode?: string | null | undefined;
11670
+ key_notes?: string | null | undefined;
11671
+ subscription_plan?: string | undefined;
11672
+ status_type?: string | undefined;
11673
+ current_or_last_store_id?: number | undefined;
11674
+ last_movement?: string | undefined;
11675
+ address?: string | null | undefined;
11676
+ current_status?: string | null | undefined;
11677
+ current_user_name?: string | null | undefined;
11678
+ current_user_email?: string | null | undefined;
11679
+ current_user_phone_number?: string | null | undefined;
11680
+ current_user_company?: string | null | undefined;
11681
+ handover_method?: string | null | undefined;
11682
+ keynest_app_user?: string | null | undefined;
11683
+ default_office_id?: number | undefined;
11684
+ fob_id?: number | undefined;
11685
+ has_photo?: boolean | undefined;
11610
11686
  } | undefined;
11611
11687
  }, {
11612
11688
  ecobee_metadata?: {
@@ -11844,6 +11920,25 @@ declare const batch: z.ZodObject<{
11844
11920
  } | undefined;
11845
11921
  keynest_metadata?: {
11846
11922
  device_name?: string | undefined;
11923
+ key_id?: string | undefined;
11924
+ property_id?: string | null | undefined;
11925
+ property_postcode?: string | null | undefined;
11926
+ key_notes?: string | null | undefined;
11927
+ subscription_plan?: string | undefined;
11928
+ status_type?: string | undefined;
11929
+ current_or_last_store_id?: number | undefined;
11930
+ last_movement?: string | undefined;
11931
+ address?: string | null | undefined;
11932
+ current_status?: string | null | undefined;
11933
+ current_user_name?: string | null | undefined;
11934
+ current_user_email?: string | null | undefined;
11935
+ current_user_phone_number?: string | null | undefined;
11936
+ current_user_company?: string | null | undefined;
11937
+ handover_method?: string | null | undefined;
11938
+ keynest_app_user?: string | null | undefined;
11939
+ default_office_id?: number | undefined;
11940
+ fob_id?: number | undefined;
11941
+ has_photo?: boolean | undefined;
11847
11942
  } | undefined;
11848
11943
  }>>, z.ZodIntersection<z.ZodObject<{
11849
11944
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -13337,7 +13432,7 @@ declare const batch: z.ZodObject<{
13337
13432
  warning_code: "unknown_issue_with_phone";
13338
13433
  })[];
13339
13434
  custom_metadata: Record<string, string | boolean>;
13340
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
13435
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
13341
13436
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
13342
13437
  properties: {
13343
13438
  name: string;
@@ -13623,6 +13718,25 @@ declare const batch: z.ZodObject<{
13623
13718
  } | undefined;
13624
13719
  keynest_metadata?: {
13625
13720
  device_name?: string | undefined;
13721
+ key_id?: string | undefined;
13722
+ property_id?: string | null | undefined;
13723
+ property_postcode?: string | null | undefined;
13724
+ key_notes?: string | null | undefined;
13725
+ subscription_plan?: string | undefined;
13726
+ status_type?: string | undefined;
13727
+ current_or_last_store_id?: number | undefined;
13728
+ last_movement?: string | undefined;
13729
+ address?: string | null | undefined;
13730
+ current_status?: string | null | undefined;
13731
+ current_user_name?: string | null | undefined;
13732
+ current_user_email?: string | null | undefined;
13733
+ current_user_phone_number?: string | null | undefined;
13734
+ current_user_company?: string | null | undefined;
13735
+ handover_method?: string | null | undefined;
13736
+ keynest_app_user?: string | null | undefined;
13737
+ default_office_id?: number | undefined;
13738
+ fob_id?: number | undefined;
13739
+ has_photo?: boolean | undefined;
13626
13740
  } | undefined;
13627
13741
  } & {
13628
13742
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -13978,7 +14092,7 @@ declare const batch: z.ZodObject<{
13978
14092
  warning_code: "unknown_issue_with_phone";
13979
14093
  })[];
13980
14094
  custom_metadata: Record<string, string | boolean>;
13981
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
14095
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
13982
14096
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
13983
14097
  properties: {
13984
14098
  name: string;
@@ -14264,6 +14378,25 @@ declare const batch: z.ZodObject<{
14264
14378
  } | undefined;
14265
14379
  keynest_metadata?: {
14266
14380
  device_name?: string | undefined;
14381
+ key_id?: string | undefined;
14382
+ property_id?: string | null | undefined;
14383
+ property_postcode?: string | null | undefined;
14384
+ key_notes?: string | null | undefined;
14385
+ subscription_plan?: string | undefined;
14386
+ status_type?: string | undefined;
14387
+ current_or_last_store_id?: number | undefined;
14388
+ last_movement?: string | undefined;
14389
+ address?: string | null | undefined;
14390
+ current_status?: string | null | undefined;
14391
+ current_user_name?: string | null | undefined;
14392
+ current_user_email?: string | null | undefined;
14393
+ current_user_phone_number?: string | null | undefined;
14394
+ current_user_company?: string | null | undefined;
14395
+ handover_method?: string | null | undefined;
14396
+ keynest_app_user?: string | null | undefined;
14397
+ default_office_id?: number | undefined;
14398
+ fob_id?: number | undefined;
14399
+ has_photo?: boolean | undefined;
14267
14400
  } | undefined;
14268
14401
  } & {
14269
14402
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -15907,17 +16040,17 @@ declare const batch: z.ZodObject<{
15907
16040
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
15908
16041
  endpoint_id: z.ZodOptional<z.ZodString>;
15909
16042
  }, "strip", z.ZodTypeAny, {
16043
+ key_id?: string | undefined;
15910
16044
  endpoint_id?: string | undefined;
15911
16045
  auto_join?: boolean | undefined;
15912
16046
  override_guest_acs_entrance_ids?: string[] | undefined;
15913
- key_id?: string | undefined;
15914
16047
  key_issuing_request_id?: string | undefined;
15915
16048
  door_names?: string[] | undefined;
15916
16049
  }, {
16050
+ key_id?: string | undefined;
15917
16051
  endpoint_id?: string | undefined;
15918
16052
  auto_join?: boolean | undefined;
15919
16053
  override_guest_acs_entrance_ids?: string[] | undefined;
15920
- key_id?: string | undefined;
15921
16054
  key_issuing_request_id?: string | undefined;
15922
16055
  door_names?: string[] | undefined;
15923
16056
  }>>;
@@ -15975,10 +16108,10 @@ declare const batch: z.ZodObject<{
15975
16108
  credential_id?: string | undefined;
15976
16109
  } | undefined;
15977
16110
  assa_abloy_vostio_metadata?: {
16111
+ key_id?: string | undefined;
15978
16112
  endpoint_id?: string | undefined;
15979
16113
  auto_join?: boolean | undefined;
15980
16114
  override_guest_acs_entrance_ids?: string[] | undefined;
15981
- key_id?: string | undefined;
15982
16115
  key_issuing_request_id?: string | undefined;
15983
16116
  door_names?: string[] | undefined;
15984
16117
  } | undefined;
@@ -16047,10 +16180,10 @@ declare const batch: z.ZodObject<{
16047
16180
  credential_id?: string | undefined;
16048
16181
  } | undefined;
16049
16182
  assa_abloy_vostio_metadata?: {
16183
+ key_id?: string | undefined;
16050
16184
  endpoint_id?: string | undefined;
16051
16185
  auto_join?: boolean | undefined;
16052
16186
  override_guest_acs_entrance_ids?: string[] | undefined;
16053
- key_id?: string | undefined;
16054
16187
  key_issuing_request_id?: string | undefined;
16055
16188
  door_names?: string[] | undefined;
16056
16189
  } | undefined;
@@ -16217,17 +16350,17 @@ declare const batch: z.ZodObject<{
16217
16350
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16218
16351
  endpoint_id: z.ZodOptional<z.ZodString>;
16219
16352
  }, "strip", z.ZodTypeAny, {
16353
+ key_id?: string | undefined;
16220
16354
  endpoint_id?: string | undefined;
16221
16355
  auto_join?: boolean | undefined;
16222
16356
  override_guest_acs_entrance_ids?: string[] | undefined;
16223
- key_id?: string | undefined;
16224
16357
  key_issuing_request_id?: string | undefined;
16225
16358
  door_names?: string[] | undefined;
16226
16359
  }, {
16360
+ key_id?: string | undefined;
16227
16361
  endpoint_id?: string | undefined;
16228
16362
  auto_join?: boolean | undefined;
16229
16363
  override_guest_acs_entrance_ids?: string[] | undefined;
16230
- key_id?: string | undefined;
16231
16364
  key_issuing_request_id?: string | undefined;
16232
16365
  door_names?: string[] | undefined;
16233
16366
  }>>;
@@ -16285,10 +16418,10 @@ declare const batch: z.ZodObject<{
16285
16418
  credential_id?: string | undefined;
16286
16419
  } | undefined;
16287
16420
  assa_abloy_vostio_metadata?: {
16421
+ key_id?: string | undefined;
16288
16422
  endpoint_id?: string | undefined;
16289
16423
  auto_join?: boolean | undefined;
16290
16424
  override_guest_acs_entrance_ids?: string[] | undefined;
16291
- key_id?: string | undefined;
16292
16425
  key_issuing_request_id?: string | undefined;
16293
16426
  door_names?: string[] | undefined;
16294
16427
  } | undefined;
@@ -16357,10 +16490,10 @@ declare const batch: z.ZodObject<{
16357
16490
  credential_id?: string | undefined;
16358
16491
  } | undefined;
16359
16492
  assa_abloy_vostio_metadata?: {
16493
+ key_id?: string | undefined;
16360
16494
  endpoint_id?: string | undefined;
16361
16495
  auto_join?: boolean | undefined;
16362
16496
  override_guest_acs_entrance_ids?: string[] | undefined;
16363
- key_id?: string | undefined;
16364
16497
  key_issuing_request_id?: string | undefined;
16365
16498
  door_names?: string[] | undefined;
16366
16499
  } | undefined;
@@ -16792,17 +16925,17 @@ declare const batch: z.ZodObject<{
16792
16925
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16793
16926
  endpoint_id: z.ZodOptional<z.ZodString>;
16794
16927
  }, "strip", z.ZodTypeAny, {
16928
+ key_id?: string | undefined;
16795
16929
  endpoint_id?: string | undefined;
16796
16930
  auto_join?: boolean | undefined;
16797
16931
  override_guest_acs_entrance_ids?: string[] | undefined;
16798
- key_id?: string | undefined;
16799
16932
  key_issuing_request_id?: string | undefined;
16800
16933
  door_names?: string[] | undefined;
16801
16934
  }, {
16935
+ key_id?: string | undefined;
16802
16936
  endpoint_id?: string | undefined;
16803
16937
  auto_join?: boolean | undefined;
16804
16938
  override_guest_acs_entrance_ids?: string[] | undefined;
16805
- key_id?: string | undefined;
16806
16939
  key_issuing_request_id?: string | undefined;
16807
16940
  door_names?: string[] | undefined;
16808
16941
  }>>;
@@ -16860,10 +16993,10 @@ declare const batch: z.ZodObject<{
16860
16993
  credential_id?: string | undefined;
16861
16994
  } | undefined;
16862
16995
  assa_abloy_vostio_metadata?: {
16996
+ key_id?: string | undefined;
16863
16997
  endpoint_id?: string | undefined;
16864
16998
  auto_join?: boolean | undefined;
16865
16999
  override_guest_acs_entrance_ids?: string[] | undefined;
16866
- key_id?: string | undefined;
16867
17000
  key_issuing_request_id?: string | undefined;
16868
17001
  door_names?: string[] | undefined;
16869
17002
  } | undefined;
@@ -16932,10 +17065,10 @@ declare const batch: z.ZodObject<{
16932
17065
  credential_id?: string | undefined;
16933
17066
  } | undefined;
16934
17067
  assa_abloy_vostio_metadata?: {
17068
+ key_id?: string | undefined;
16935
17069
  endpoint_id?: string | undefined;
16936
17070
  auto_join?: boolean | undefined;
16937
17071
  override_guest_acs_entrance_ids?: string[] | undefined;
16938
- key_id?: string | undefined;
16939
17072
  key_issuing_request_id?: string | undefined;
16940
17073
  door_names?: string[] | undefined;
16941
17074
  } | undefined;
@@ -17101,17 +17234,17 @@ declare const batch: z.ZodObject<{
17101
17234
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17102
17235
  endpoint_id: z.ZodOptional<z.ZodString>;
17103
17236
  }, "strip", z.ZodTypeAny, {
17237
+ key_id?: string | undefined;
17104
17238
  endpoint_id?: string | undefined;
17105
17239
  auto_join?: boolean | undefined;
17106
17240
  override_guest_acs_entrance_ids?: string[] | undefined;
17107
- key_id?: string | undefined;
17108
17241
  key_issuing_request_id?: string | undefined;
17109
17242
  door_names?: string[] | undefined;
17110
17243
  }, {
17244
+ key_id?: string | undefined;
17111
17245
  endpoint_id?: string | undefined;
17112
17246
  auto_join?: boolean | undefined;
17113
17247
  override_guest_acs_entrance_ids?: string[] | undefined;
17114
- key_id?: string | undefined;
17115
17248
  key_issuing_request_id?: string | undefined;
17116
17249
  door_names?: string[] | undefined;
17117
17250
  }>>;
@@ -17169,10 +17302,10 @@ declare const batch: z.ZodObject<{
17169
17302
  credential_id?: string | undefined;
17170
17303
  } | undefined;
17171
17304
  assa_abloy_vostio_metadata?: {
17305
+ key_id?: string | undefined;
17172
17306
  endpoint_id?: string | undefined;
17173
17307
  auto_join?: boolean | undefined;
17174
17308
  override_guest_acs_entrance_ids?: string[] | undefined;
17175
- key_id?: string | undefined;
17176
17309
  key_issuing_request_id?: string | undefined;
17177
17310
  door_names?: string[] | undefined;
17178
17311
  } | undefined;
@@ -17241,10 +17374,10 @@ declare const batch: z.ZodObject<{
17241
17374
  credential_id?: string | undefined;
17242
17375
  } | undefined;
17243
17376
  assa_abloy_vostio_metadata?: {
17377
+ key_id?: string | undefined;
17244
17378
  endpoint_id?: string | undefined;
17245
17379
  auto_join?: boolean | undefined;
17246
17380
  override_guest_acs_entrance_ids?: string[] | undefined;
17247
- key_id?: string | undefined;
17248
17381
  key_issuing_request_id?: string | undefined;
17249
17382
  door_names?: string[] | undefined;
17250
17383
  } | undefined;
@@ -17350,10 +17483,10 @@ declare const batch: z.ZodObject<{
17350
17483
  credential_id?: string | undefined;
17351
17484
  } | undefined;
17352
17485
  assa_abloy_vostio_metadata?: {
17486
+ key_id?: string | undefined;
17353
17487
  endpoint_id?: string | undefined;
17354
17488
  auto_join?: boolean | undefined;
17355
17489
  override_guest_acs_entrance_ids?: string[] | undefined;
17356
- key_id?: string | undefined;
17357
17490
  key_issuing_request_id?: string | undefined;
17358
17491
  door_names?: string[] | undefined;
17359
17492
  } | undefined;
@@ -17422,10 +17555,10 @@ declare const batch: z.ZodObject<{
17422
17555
  credential_id?: string | undefined;
17423
17556
  } | undefined;
17424
17557
  assa_abloy_vostio_metadata?: {
17558
+ key_id?: string | undefined;
17425
17559
  endpoint_id?: string | undefined;
17426
17560
  auto_join?: boolean | undefined;
17427
17561
  override_guest_acs_entrance_ids?: string[] | undefined;
17428
- key_id?: string | undefined;
17429
17562
  key_issuing_request_id?: string | undefined;
17430
17563
  door_names?: string[] | undefined;
17431
17564
  } | undefined;
@@ -17521,10 +17654,10 @@ declare const batch: z.ZodObject<{
17521
17654
  credential_id?: string | undefined;
17522
17655
  } | undefined;
17523
17656
  assa_abloy_vostio_metadata?: {
17657
+ key_id?: string | undefined;
17524
17658
  endpoint_id?: string | undefined;
17525
17659
  auto_join?: boolean | undefined;
17526
17660
  override_guest_acs_entrance_ids?: string[] | undefined;
17527
- key_id?: string | undefined;
17528
17661
  key_issuing_request_id?: string | undefined;
17529
17662
  door_names?: string[] | undefined;
17530
17663
  } | undefined;
@@ -17593,10 +17726,10 @@ declare const batch: z.ZodObject<{
17593
17726
  credential_id?: string | undefined;
17594
17727
  } | undefined;
17595
17728
  assa_abloy_vostio_metadata?: {
17729
+ key_id?: string | undefined;
17596
17730
  endpoint_id?: string | undefined;
17597
17731
  auto_join?: boolean | undefined;
17598
17732
  override_guest_acs_entrance_ids?: string[] | undefined;
17599
- key_id?: string | undefined;
17600
17733
  key_issuing_request_id?: string | undefined;
17601
17734
  door_names?: string[] | undefined;
17602
17735
  } | undefined;
@@ -17697,10 +17830,10 @@ declare const batch: z.ZodObject<{
17697
17830
  credential_id?: string | undefined;
17698
17831
  } | undefined;
17699
17832
  assa_abloy_vostio_metadata?: {
17833
+ key_id?: string | undefined;
17700
17834
  endpoint_id?: string | undefined;
17701
17835
  auto_join?: boolean | undefined;
17702
17836
  override_guest_acs_entrance_ids?: string[] | undefined;
17703
- key_id?: string | undefined;
17704
17837
  key_issuing_request_id?: string | undefined;
17705
17838
  door_names?: string[] | undefined;
17706
17839
  } | undefined;
@@ -17769,10 +17902,10 @@ declare const batch: z.ZodObject<{
17769
17902
  credential_id?: string | undefined;
17770
17903
  } | undefined;
17771
17904
  assa_abloy_vostio_metadata?: {
17905
+ key_id?: string | undefined;
17772
17906
  endpoint_id?: string | undefined;
17773
17907
  auto_join?: boolean | undefined;
17774
17908
  override_guest_acs_entrance_ids?: string[] | undefined;
17775
- key_id?: string | undefined;
17776
17909
  key_issuing_request_id?: string | undefined;
17777
17910
  door_names?: string[] | undefined;
17778
17911
  } | undefined;
@@ -17874,10 +18007,10 @@ declare const batch: z.ZodObject<{
17874
18007
  credential_id?: string | undefined;
17875
18008
  } | undefined;
17876
18009
  assa_abloy_vostio_metadata?: {
18010
+ key_id?: string | undefined;
17877
18011
  endpoint_id?: string | undefined;
17878
18012
  auto_join?: boolean | undefined;
17879
18013
  override_guest_acs_entrance_ids?: string[] | undefined;
17880
- key_id?: string | undefined;
17881
18014
  key_issuing_request_id?: string | undefined;
17882
18015
  door_names?: string[] | undefined;
17883
18016
  } | undefined;
@@ -17946,10 +18079,10 @@ declare const batch: z.ZodObject<{
17946
18079
  credential_id?: string | undefined;
17947
18080
  } | undefined;
17948
18081
  assa_abloy_vostio_metadata?: {
18082
+ key_id?: string | undefined;
17949
18083
  endpoint_id?: string | undefined;
17950
18084
  auto_join?: boolean | undefined;
17951
18085
  override_guest_acs_entrance_ids?: string[] | undefined;
17952
- key_id?: string | undefined;
17953
18086
  key_issuing_request_id?: string | undefined;
17954
18087
  door_names?: string[] | undefined;
17955
18088
  } | undefined;
@@ -18210,17 +18343,17 @@ declare const batch: z.ZodObject<{
18210
18343
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18211
18344
  endpoint_id: z.ZodOptional<z.ZodString>;
18212
18345
  }, "strip", z.ZodTypeAny, {
18346
+ key_id?: string | undefined;
18213
18347
  endpoint_id?: string | undefined;
18214
18348
  auto_join?: boolean | undefined;
18215
18349
  override_guest_acs_entrance_ids?: string[] | undefined;
18216
- key_id?: string | undefined;
18217
18350
  key_issuing_request_id?: string | undefined;
18218
18351
  door_names?: string[] | undefined;
18219
18352
  }, {
18353
+ key_id?: string | undefined;
18220
18354
  endpoint_id?: string | undefined;
18221
18355
  auto_join?: boolean | undefined;
18222
18356
  override_guest_acs_entrance_ids?: string[] | undefined;
18223
- key_id?: string | undefined;
18224
18357
  key_issuing_request_id?: string | undefined;
18225
18358
  door_names?: string[] | undefined;
18226
18359
  }>>;
@@ -18278,10 +18411,10 @@ declare const batch: z.ZodObject<{
18278
18411
  credential_id?: string | undefined;
18279
18412
  } | undefined;
18280
18413
  assa_abloy_vostio_metadata?: {
18414
+ key_id?: string | undefined;
18281
18415
  endpoint_id?: string | undefined;
18282
18416
  auto_join?: boolean | undefined;
18283
18417
  override_guest_acs_entrance_ids?: string[] | undefined;
18284
- key_id?: string | undefined;
18285
18418
  key_issuing_request_id?: string | undefined;
18286
18419
  door_names?: string[] | undefined;
18287
18420
  } | undefined;
@@ -18350,10 +18483,10 @@ declare const batch: z.ZodObject<{
18350
18483
  credential_id?: string | undefined;
18351
18484
  } | undefined;
18352
18485
  assa_abloy_vostio_metadata?: {
18486
+ key_id?: string | undefined;
18353
18487
  endpoint_id?: string | undefined;
18354
18488
  auto_join?: boolean | undefined;
18355
18489
  override_guest_acs_entrance_ids?: string[] | undefined;
18356
- key_id?: string | undefined;
18357
18490
  key_issuing_request_id?: string | undefined;
18358
18491
  door_names?: string[] | undefined;
18359
18492
  } | undefined;
@@ -18519,17 +18652,17 @@ declare const batch: z.ZodObject<{
18519
18652
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18520
18653
  endpoint_id: z.ZodOptional<z.ZodString>;
18521
18654
  }, "strip", z.ZodTypeAny, {
18655
+ key_id?: string | undefined;
18522
18656
  endpoint_id?: string | undefined;
18523
18657
  auto_join?: boolean | undefined;
18524
18658
  override_guest_acs_entrance_ids?: string[] | undefined;
18525
- key_id?: string | undefined;
18526
18659
  key_issuing_request_id?: string | undefined;
18527
18660
  door_names?: string[] | undefined;
18528
18661
  }, {
18662
+ key_id?: string | undefined;
18529
18663
  endpoint_id?: string | undefined;
18530
18664
  auto_join?: boolean | undefined;
18531
18665
  override_guest_acs_entrance_ids?: string[] | undefined;
18532
- key_id?: string | undefined;
18533
18666
  key_issuing_request_id?: string | undefined;
18534
18667
  door_names?: string[] | undefined;
18535
18668
  }>>;
@@ -18587,10 +18720,10 @@ declare const batch: z.ZodObject<{
18587
18720
  credential_id?: string | undefined;
18588
18721
  } | undefined;
18589
18722
  assa_abloy_vostio_metadata?: {
18723
+ key_id?: string | undefined;
18590
18724
  endpoint_id?: string | undefined;
18591
18725
  auto_join?: boolean | undefined;
18592
18726
  override_guest_acs_entrance_ids?: string[] | undefined;
18593
- key_id?: string | undefined;
18594
18727
  key_issuing_request_id?: string | undefined;
18595
18728
  door_names?: string[] | undefined;
18596
18729
  } | undefined;
@@ -18659,10 +18792,10 @@ declare const batch: z.ZodObject<{
18659
18792
  credential_id?: string | undefined;
18660
18793
  } | undefined;
18661
18794
  assa_abloy_vostio_metadata?: {
18795
+ key_id?: string | undefined;
18662
18796
  endpoint_id?: string | undefined;
18663
18797
  auto_join?: boolean | undefined;
18664
18798
  override_guest_acs_entrance_ids?: string[] | undefined;
18665
- key_id?: string | undefined;
18666
18799
  key_issuing_request_id?: string | undefined;
18667
18800
  door_names?: string[] | undefined;
18668
18801
  } | undefined;
@@ -18736,10 +18869,10 @@ declare const batch: z.ZodObject<{
18736
18869
  credential_id?: string | undefined;
18737
18870
  } | undefined;
18738
18871
  assa_abloy_vostio_metadata?: {
18872
+ key_id?: string | undefined;
18739
18873
  endpoint_id?: string | undefined;
18740
18874
  auto_join?: boolean | undefined;
18741
18875
  override_guest_acs_entrance_ids?: string[] | undefined;
18742
- key_id?: string | undefined;
18743
18876
  key_issuing_request_id?: string | undefined;
18744
18877
  door_names?: string[] | undefined;
18745
18878
  } | undefined;
@@ -18808,10 +18941,10 @@ declare const batch: z.ZodObject<{
18808
18941
  credential_id?: string | undefined;
18809
18942
  } | undefined;
18810
18943
  assa_abloy_vostio_metadata?: {
18944
+ key_id?: string | undefined;
18811
18945
  endpoint_id?: string | undefined;
18812
18946
  auto_join?: boolean | undefined;
18813
18947
  override_guest_acs_entrance_ids?: string[] | undefined;
18814
- key_id?: string | undefined;
18815
18948
  key_issuing_request_id?: string | undefined;
18816
18949
  door_names?: string[] | undefined;
18817
18950
  } | undefined;
@@ -18886,10 +19019,10 @@ declare const batch: z.ZodObject<{
18886
19019
  credential_id?: string | undefined;
18887
19020
  } | undefined;
18888
19021
  assa_abloy_vostio_metadata?: {
19022
+ key_id?: string | undefined;
18889
19023
  endpoint_id?: string | undefined;
18890
19024
  auto_join?: boolean | undefined;
18891
19025
  override_guest_acs_entrance_ids?: string[] | undefined;
18892
- key_id?: string | undefined;
18893
19026
  key_issuing_request_id?: string | undefined;
18894
19027
  door_names?: string[] | undefined;
18895
19028
  } | undefined;
@@ -18958,10 +19091,10 @@ declare const batch: z.ZodObject<{
18958
19091
  credential_id?: string | undefined;
18959
19092
  } | undefined;
18960
19093
  assa_abloy_vostio_metadata?: {
19094
+ key_id?: string | undefined;
18961
19095
  endpoint_id?: string | undefined;
18962
19096
  auto_join?: boolean | undefined;
18963
19097
  override_guest_acs_entrance_ids?: string[] | undefined;
18964
- key_id?: string | undefined;
18965
19098
  key_issuing_request_id?: string | undefined;
18966
19099
  door_names?: string[] | undefined;
18967
19100
  } | undefined;
@@ -20896,7 +21029,7 @@ declare const batch: z.ZodObject<{
20896
21029
  }>, "many">>;
20897
21030
  unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
20898
21031
  device_id: z.ZodString;
20899
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
21032
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
20900
21033
  nickname: z.ZodOptional<z.ZodString>;
20901
21034
  display_name: z.ZodString;
20902
21035
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -21857,11 +21990,68 @@ declare const batch: z.ZodObject<{
21857
21990
  product_type: string;
21858
21991
  }>>;
21859
21992
  keynest_metadata: z.ZodOptional<z.ZodObject<{
21993
+ key_id: z.ZodOptional<z.ZodString>;
21860
21994
  device_name: z.ZodOptional<z.ZodString>;
21995
+ property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21996
+ property_postcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21997
+ key_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21998
+ subscription_plan: z.ZodOptional<z.ZodString>;
21999
+ status_type: z.ZodOptional<z.ZodString>;
22000
+ current_or_last_store_id: z.ZodOptional<z.ZodNumber>;
22001
+ last_movement: z.ZodOptional<z.ZodString>;
22002
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22003
+ current_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22004
+ current_user_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22005
+ current_user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22006
+ current_user_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22007
+ current_user_company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22008
+ handover_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22009
+ keynest_app_user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22010
+ default_office_id: z.ZodOptional<z.ZodNumber>;
22011
+ fob_id: z.ZodOptional<z.ZodNumber>;
22012
+ has_photo: z.ZodOptional<z.ZodBoolean>;
21861
22013
  }, "strip", z.ZodTypeAny, {
21862
22014
  device_name?: string | undefined;
22015
+ key_id?: string | undefined;
22016
+ property_id?: string | null | undefined;
22017
+ property_postcode?: string | null | undefined;
22018
+ key_notes?: string | null | undefined;
22019
+ subscription_plan?: string | undefined;
22020
+ status_type?: string | undefined;
22021
+ current_or_last_store_id?: number | undefined;
22022
+ last_movement?: string | undefined;
22023
+ address?: string | null | undefined;
22024
+ current_status?: string | null | undefined;
22025
+ current_user_name?: string | null | undefined;
22026
+ current_user_email?: string | null | undefined;
22027
+ current_user_phone_number?: string | null | undefined;
22028
+ current_user_company?: string | null | undefined;
22029
+ handover_method?: string | null | undefined;
22030
+ keynest_app_user?: string | null | undefined;
22031
+ default_office_id?: number | undefined;
22032
+ fob_id?: number | undefined;
22033
+ has_photo?: boolean | undefined;
21863
22034
  }, {
21864
22035
  device_name?: string | undefined;
22036
+ key_id?: string | undefined;
22037
+ property_id?: string | null | undefined;
22038
+ property_postcode?: string | null | undefined;
22039
+ key_notes?: string | null | undefined;
22040
+ subscription_plan?: string | undefined;
22041
+ status_type?: string | undefined;
22042
+ current_or_last_store_id?: number | undefined;
22043
+ last_movement?: string | undefined;
22044
+ address?: string | null | undefined;
22045
+ current_status?: string | null | undefined;
22046
+ current_user_name?: string | null | undefined;
22047
+ current_user_email?: string | null | undefined;
22048
+ current_user_phone_number?: string | null | undefined;
22049
+ current_user_company?: string | null | undefined;
22050
+ handover_method?: string | null | undefined;
22051
+ keynest_app_user?: string | null | undefined;
22052
+ default_office_id?: number | undefined;
22053
+ fob_id?: number | undefined;
22054
+ has_photo?: boolean | undefined;
21865
22055
  }>>;
21866
22056
  }, "strip", z.ZodTypeAny, {
21867
22057
  ecobee_metadata?: {
@@ -22099,6 +22289,25 @@ declare const batch: z.ZodObject<{
22099
22289
  } | undefined;
22100
22290
  keynest_metadata?: {
22101
22291
  device_name?: string | undefined;
22292
+ key_id?: string | undefined;
22293
+ property_id?: string | null | undefined;
22294
+ property_postcode?: string | null | undefined;
22295
+ key_notes?: string | null | undefined;
22296
+ subscription_plan?: string | undefined;
22297
+ status_type?: string | undefined;
22298
+ current_or_last_store_id?: number | undefined;
22299
+ last_movement?: string | undefined;
22300
+ address?: string | null | undefined;
22301
+ current_status?: string | null | undefined;
22302
+ current_user_name?: string | null | undefined;
22303
+ current_user_email?: string | null | undefined;
22304
+ current_user_phone_number?: string | null | undefined;
22305
+ current_user_company?: string | null | undefined;
22306
+ handover_method?: string | null | undefined;
22307
+ keynest_app_user?: string | null | undefined;
22308
+ default_office_id?: number | undefined;
22309
+ fob_id?: number | undefined;
22310
+ has_photo?: boolean | undefined;
22102
22311
  } | undefined;
22103
22312
  }, {
22104
22313
  ecobee_metadata?: {
@@ -22336,6 +22545,25 @@ declare const batch: z.ZodObject<{
22336
22545
  } | undefined;
22337
22546
  keynest_metadata?: {
22338
22547
  device_name?: string | undefined;
22548
+ key_id?: string | undefined;
22549
+ property_id?: string | null | undefined;
22550
+ property_postcode?: string | null | undefined;
22551
+ key_notes?: string | null | undefined;
22552
+ subscription_plan?: string | undefined;
22553
+ status_type?: string | undefined;
22554
+ current_or_last_store_id?: number | undefined;
22555
+ last_movement?: string | undefined;
22556
+ address?: string | null | undefined;
22557
+ current_status?: string | null | undefined;
22558
+ current_user_name?: string | null | undefined;
22559
+ current_user_email?: string | null | undefined;
22560
+ current_user_phone_number?: string | null | undefined;
22561
+ current_user_company?: string | null | undefined;
22562
+ handover_method?: string | null | undefined;
22563
+ keynest_app_user?: string | null | undefined;
22564
+ default_office_id?: number | undefined;
22565
+ fob_id?: number | undefined;
22566
+ has_photo?: boolean | undefined;
22339
22567
  } | undefined;
22340
22568
  }>>, z.ZodIntersection<z.ZodObject<{
22341
22569
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -23981,7 +24209,7 @@ declare const batch: z.ZodObject<{
23981
24209
  warning_code: "unknown_issue_with_phone";
23982
24210
  })[];
23983
24211
  custom_metadata: Record<string, string | boolean>;
23984
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
24212
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
23985
24213
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
23986
24214
  properties: {
23987
24215
  name: string;
@@ -24213,7 +24441,7 @@ declare const batch: z.ZodObject<{
24213
24441
  warning_code: "unknown_issue_with_phone";
24214
24442
  })[];
24215
24443
  custom_metadata: Record<string, string | boolean>;
24216
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
24444
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
24217
24445
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
24218
24446
  properties: {
24219
24447
  name: string;
@@ -25195,6 +25423,7 @@ declare const batch: z.ZodObject<{
25195
25423
  } & {
25196
25424
  event_type: z.ZodLiteral<"access_method.issued">;
25197
25425
  code: z.ZodOptional<z.ZodString>;
25426
+ is_backup_code: z.ZodOptional<z.ZodBoolean>;
25198
25427
  }, "strip", z.ZodTypeAny, {
25199
25428
  workspace_id: string;
25200
25429
  created_at: string;
@@ -25205,6 +25434,7 @@ declare const batch: z.ZodObject<{
25205
25434
  access_grant_ids: string[];
25206
25435
  code?: string | undefined;
25207
25436
  access_grant_keys?: string[] | undefined;
25437
+ is_backup_code?: boolean | undefined;
25208
25438
  }, {
25209
25439
  workspace_id: string;
25210
25440
  created_at: string;
@@ -25215,6 +25445,7 @@ declare const batch: z.ZodObject<{
25215
25445
  access_grant_ids: string[];
25216
25446
  code?: string | undefined;
25217
25447
  access_grant_keys?: string[] | undefined;
25448
+ is_backup_code?: boolean | undefined;
25218
25449
  }>, z.ZodObject<{
25219
25450
  event_id: z.ZodString;
25220
25451
  workspace_id: z.ZodString;
@@ -25314,6 +25545,7 @@ declare const batch: z.ZodObject<{
25314
25545
  } & {
25315
25546
  event_type: z.ZodLiteral<"access_method.reissued">;
25316
25547
  code: z.ZodOptional<z.ZodString>;
25548
+ is_backup_code: z.ZodOptional<z.ZodBoolean>;
25317
25549
  }, "strip", z.ZodTypeAny, {
25318
25550
  workspace_id: string;
25319
25551
  created_at: string;
@@ -25324,6 +25556,7 @@ declare const batch: z.ZodObject<{
25324
25556
  access_grant_ids: string[];
25325
25557
  code?: string | undefined;
25326
25558
  access_grant_keys?: string[] | undefined;
25559
+ is_backup_code?: boolean | undefined;
25327
25560
  }, {
25328
25561
  workspace_id: string;
25329
25562
  created_at: string;
@@ -25334,6 +25567,7 @@ declare const batch: z.ZodObject<{
25334
25567
  access_grant_ids: string[];
25335
25568
  code?: string | undefined;
25336
25569
  access_grant_keys?: string[] | undefined;
25570
+ is_backup_code?: boolean | undefined;
25337
25571
  }>, z.ZodObject<{
25338
25572
  event_id: z.ZodString;
25339
25573
  workspace_id: z.ZodString;
@@ -30835,7 +31069,7 @@ declare const batch: z.ZodObject<{
30835
31069
  warning_code: "unknown_issue_with_phone";
30836
31070
  })[];
30837
31071
  custom_metadata: Record<string, string | boolean>;
30838
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
31072
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
30839
31073
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
30840
31074
  properties: {
30841
31075
  name: string;
@@ -31121,6 +31355,25 @@ declare const batch: z.ZodObject<{
31121
31355
  } | undefined;
31122
31356
  keynest_metadata?: {
31123
31357
  device_name?: string | undefined;
31358
+ key_id?: string | undefined;
31359
+ property_id?: string | null | undefined;
31360
+ property_postcode?: string | null | undefined;
31361
+ key_notes?: string | null | undefined;
31362
+ subscription_plan?: string | undefined;
31363
+ status_type?: string | undefined;
31364
+ current_or_last_store_id?: number | undefined;
31365
+ last_movement?: string | undefined;
31366
+ address?: string | null | undefined;
31367
+ current_status?: string | null | undefined;
31368
+ current_user_name?: string | null | undefined;
31369
+ current_user_email?: string | null | undefined;
31370
+ current_user_phone_number?: string | null | undefined;
31371
+ current_user_company?: string | null | undefined;
31372
+ handover_method?: string | null | undefined;
31373
+ keynest_app_user?: string | null | undefined;
31374
+ default_office_id?: number | undefined;
31375
+ fob_id?: number | undefined;
31376
+ has_photo?: boolean | undefined;
31124
31377
  } | undefined;
31125
31378
  } & {
31126
31379
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -31714,10 +31967,10 @@ declare const batch: z.ZodObject<{
31714
31967
  credential_id?: string | undefined;
31715
31968
  } | undefined;
31716
31969
  assa_abloy_vostio_metadata?: {
31970
+ key_id?: string | undefined;
31717
31971
  endpoint_id?: string | undefined;
31718
31972
  auto_join?: boolean | undefined;
31719
31973
  override_guest_acs_entrance_ids?: string[] | undefined;
31720
- key_id?: string | undefined;
31721
31974
  key_issuing_request_id?: string | undefined;
31722
31975
  door_names?: string[] | undefined;
31723
31976
  } | undefined;
@@ -31787,10 +32040,10 @@ declare const batch: z.ZodObject<{
31787
32040
  credential_id?: string | undefined;
31788
32041
  } | undefined;
31789
32042
  assa_abloy_vostio_metadata?: {
32043
+ key_id?: string | undefined;
31790
32044
  endpoint_id?: string | undefined;
31791
32045
  auto_join?: boolean | undefined;
31792
32046
  override_guest_acs_entrance_ids?: string[] | undefined;
31793
- key_id?: string | undefined;
31794
32047
  key_issuing_request_id?: string | undefined;
31795
32048
  door_names?: string[] | undefined;
31796
32049
  } | undefined;
@@ -32046,10 +32299,10 @@ declare const batch: z.ZodObject<{
32046
32299
  credential_id?: string | undefined;
32047
32300
  } | undefined;
32048
32301
  assa_abloy_vostio_metadata?: {
32302
+ key_id?: string | undefined;
32049
32303
  endpoint_id?: string | undefined;
32050
32304
  auto_join?: boolean | undefined;
32051
32305
  override_guest_acs_entrance_ids?: string[] | undefined;
32052
- key_id?: string | undefined;
32053
32306
  key_issuing_request_id?: string | undefined;
32054
32307
  door_names?: string[] | undefined;
32055
32308
  } | undefined;
@@ -32118,10 +32371,10 @@ declare const batch: z.ZodObject<{
32118
32371
  credential_id?: string | undefined;
32119
32372
  } | undefined;
32120
32373
  assa_abloy_vostio_metadata?: {
32374
+ key_id?: string | undefined;
32121
32375
  endpoint_id?: string | undefined;
32122
32376
  auto_join?: boolean | undefined;
32123
32377
  override_guest_acs_entrance_ids?: string[] | undefined;
32124
- key_id?: string | undefined;
32125
32378
  key_issuing_request_id?: string | undefined;
32126
32379
  door_names?: string[] | undefined;
32127
32380
  } | undefined;
@@ -32312,10 +32565,10 @@ declare const batch: z.ZodObject<{
32312
32565
  credential_id?: string | undefined;
32313
32566
  } | undefined;
32314
32567
  assa_abloy_vostio_metadata?: {
32568
+ key_id?: string | undefined;
32315
32569
  endpoint_id?: string | undefined;
32316
32570
  auto_join?: boolean | undefined;
32317
32571
  override_guest_acs_entrance_ids?: string[] | undefined;
32318
- key_id?: string | undefined;
32319
32572
  key_issuing_request_id?: string | undefined;
32320
32573
  door_names?: string[] | undefined;
32321
32574
  } | undefined;
@@ -32384,10 +32637,10 @@ declare const batch: z.ZodObject<{
32384
32637
  credential_id?: string | undefined;
32385
32638
  } | undefined;
32386
32639
  assa_abloy_vostio_metadata?: {
32640
+ key_id?: string | undefined;
32387
32641
  endpoint_id?: string | undefined;
32388
32642
  auto_join?: boolean | undefined;
32389
32643
  override_guest_acs_entrance_ids?: string[] | undefined;
32390
- key_id?: string | undefined;
32391
32644
  key_issuing_request_id?: string | undefined;
32392
32645
  door_names?: string[] | undefined;
32393
32646
  } | undefined;
@@ -32864,7 +33117,7 @@ declare const batch: z.ZodObject<{
32864
33117
  warning_code: "unknown_issue_with_phone";
32865
33118
  })[];
32866
33119
  custom_metadata: Record<string, string | boolean>;
32867
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
33120
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
32868
33121
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
32869
33122
  properties: {
32870
33123
  name: string;
@@ -33178,6 +33431,7 @@ declare const batch: z.ZodObject<{
33178
33431
  access_grant_ids: string[];
33179
33432
  code?: string | undefined;
33180
33433
  access_grant_keys?: string[] | undefined;
33434
+ is_backup_code?: boolean | undefined;
33181
33435
  } | {
33182
33436
  workspace_id: string;
33183
33437
  created_at: string;
@@ -33215,6 +33469,7 @@ declare const batch: z.ZodObject<{
33215
33469
  access_grant_ids: string[];
33216
33470
  code?: string | undefined;
33217
33471
  access_grant_keys?: string[] | undefined;
33472
+ is_backup_code?: boolean | undefined;
33218
33473
  } | {
33219
33474
  workspace_id: string;
33220
33475
  created_at: string;
@@ -34697,7 +34952,7 @@ declare const batch: z.ZodObject<{
34697
34952
  warning_code: "unknown_issue_with_phone";
34698
34953
  })[];
34699
34954
  custom_metadata: Record<string, string | boolean>;
34700
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
34955
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
34701
34956
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
34702
34957
  properties: {
34703
34958
  name: string;
@@ -34983,6 +35238,25 @@ declare const batch: z.ZodObject<{
34983
35238
  } | undefined;
34984
35239
  keynest_metadata?: {
34985
35240
  device_name?: string | undefined;
35241
+ key_id?: string | undefined;
35242
+ property_id?: string | null | undefined;
35243
+ property_postcode?: string | null | undefined;
35244
+ key_notes?: string | null | undefined;
35245
+ subscription_plan?: string | undefined;
35246
+ status_type?: string | undefined;
35247
+ current_or_last_store_id?: number | undefined;
35248
+ last_movement?: string | undefined;
35249
+ address?: string | null | undefined;
35250
+ current_status?: string | null | undefined;
35251
+ current_user_name?: string | null | undefined;
35252
+ current_user_email?: string | null | undefined;
35253
+ current_user_phone_number?: string | null | undefined;
35254
+ current_user_company?: string | null | undefined;
35255
+ handover_method?: string | null | undefined;
35256
+ keynest_app_user?: string | null | undefined;
35257
+ default_office_id?: number | undefined;
35258
+ fob_id?: number | undefined;
35259
+ has_photo?: boolean | undefined;
34986
35260
  } | undefined;
34987
35261
  } & {
34988
35262
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -35576,10 +35850,10 @@ declare const batch: z.ZodObject<{
35576
35850
  credential_id?: string | undefined;
35577
35851
  } | undefined;
35578
35852
  assa_abloy_vostio_metadata?: {
35853
+ key_id?: string | undefined;
35579
35854
  endpoint_id?: string | undefined;
35580
35855
  auto_join?: boolean | undefined;
35581
35856
  override_guest_acs_entrance_ids?: string[] | undefined;
35582
- key_id?: string | undefined;
35583
35857
  key_issuing_request_id?: string | undefined;
35584
35858
  door_names?: string[] | undefined;
35585
35859
  } | undefined;
@@ -35649,10 +35923,10 @@ declare const batch: z.ZodObject<{
35649
35923
  credential_id?: string | undefined;
35650
35924
  } | undefined;
35651
35925
  assa_abloy_vostio_metadata?: {
35926
+ key_id?: string | undefined;
35652
35927
  endpoint_id?: string | undefined;
35653
35928
  auto_join?: boolean | undefined;
35654
35929
  override_guest_acs_entrance_ids?: string[] | undefined;
35655
- key_id?: string | undefined;
35656
35930
  key_issuing_request_id?: string | undefined;
35657
35931
  door_names?: string[] | undefined;
35658
35932
  } | undefined;
@@ -35908,10 +36182,10 @@ declare const batch: z.ZodObject<{
35908
36182
  credential_id?: string | undefined;
35909
36183
  } | undefined;
35910
36184
  assa_abloy_vostio_metadata?: {
36185
+ key_id?: string | undefined;
35911
36186
  endpoint_id?: string | undefined;
35912
36187
  auto_join?: boolean | undefined;
35913
36188
  override_guest_acs_entrance_ids?: string[] | undefined;
35914
- key_id?: string | undefined;
35915
36189
  key_issuing_request_id?: string | undefined;
35916
36190
  door_names?: string[] | undefined;
35917
36191
  } | undefined;
@@ -35980,10 +36254,10 @@ declare const batch: z.ZodObject<{
35980
36254
  credential_id?: string | undefined;
35981
36255
  } | undefined;
35982
36256
  assa_abloy_vostio_metadata?: {
36257
+ key_id?: string | undefined;
35983
36258
  endpoint_id?: string | undefined;
35984
36259
  auto_join?: boolean | undefined;
35985
36260
  override_guest_acs_entrance_ids?: string[] | undefined;
35986
- key_id?: string | undefined;
35987
36261
  key_issuing_request_id?: string | undefined;
35988
36262
  door_names?: string[] | undefined;
35989
36263
  } | undefined;
@@ -36174,10 +36448,10 @@ declare const batch: z.ZodObject<{
36174
36448
  credential_id?: string | undefined;
36175
36449
  } | undefined;
36176
36450
  assa_abloy_vostio_metadata?: {
36451
+ key_id?: string | undefined;
36177
36452
  endpoint_id?: string | undefined;
36178
36453
  auto_join?: boolean | undefined;
36179
36454
  override_guest_acs_entrance_ids?: string[] | undefined;
36180
- key_id?: string | undefined;
36181
36455
  key_issuing_request_id?: string | undefined;
36182
36456
  door_names?: string[] | undefined;
36183
36457
  } | undefined;
@@ -36246,10 +36520,10 @@ declare const batch: z.ZodObject<{
36246
36520
  credential_id?: string | undefined;
36247
36521
  } | undefined;
36248
36522
  assa_abloy_vostio_metadata?: {
36523
+ key_id?: string | undefined;
36249
36524
  endpoint_id?: string | undefined;
36250
36525
  auto_join?: boolean | undefined;
36251
36526
  override_guest_acs_entrance_ids?: string[] | undefined;
36252
- key_id?: string | undefined;
36253
36527
  key_issuing_request_id?: string | undefined;
36254
36528
  door_names?: string[] | undefined;
36255
36529
  } | undefined;
@@ -36726,7 +37000,7 @@ declare const batch: z.ZodObject<{
36726
37000
  warning_code: "unknown_issue_with_phone";
36727
37001
  })[];
36728
37002
  custom_metadata: Record<string, string | boolean>;
36729
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
37003
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
36730
37004
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
36731
37005
  properties: {
36732
37006
  name: string;
@@ -37040,6 +37314,7 @@ declare const batch: z.ZodObject<{
37040
37314
  access_grant_ids: string[];
37041
37315
  code?: string | undefined;
37042
37316
  access_grant_keys?: string[] | undefined;
37317
+ is_backup_code?: boolean | undefined;
37043
37318
  } | {
37044
37319
  workspace_id: string;
37045
37320
  created_at: string;
@@ -37077,6 +37352,7 @@ declare const batch: z.ZodObject<{
37077
37352
  access_grant_ids: string[];
37078
37353
  code?: string | undefined;
37079
37354
  access_grant_keys?: string[] | undefined;
37355
+ is_backup_code?: boolean | undefined;
37080
37356
  } | {
37081
37357
  workspace_id: string;
37082
37358
  created_at: string;
@@ -39684,7 +39960,7 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
39684
39960
  type DeviceWarning = z.infer<typeof device_warning>;
39685
39961
  declare const device: z.ZodObject<{
39686
39962
  device_id: z.ZodString;
39687
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
39963
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
39688
39964
  nickname: z.ZodOptional<z.ZodString>;
39689
39965
  display_name: z.ZodString;
39690
39966
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -40645,11 +40921,68 @@ declare const device: z.ZodObject<{
40645
40921
  product_type: string;
40646
40922
  }>>;
40647
40923
  keynest_metadata: z.ZodOptional<z.ZodObject<{
40924
+ key_id: z.ZodOptional<z.ZodString>;
40648
40925
  device_name: z.ZodOptional<z.ZodString>;
40926
+ property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40927
+ property_postcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40928
+ key_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40929
+ subscription_plan: z.ZodOptional<z.ZodString>;
40930
+ status_type: z.ZodOptional<z.ZodString>;
40931
+ current_or_last_store_id: z.ZodOptional<z.ZodNumber>;
40932
+ last_movement: z.ZodOptional<z.ZodString>;
40933
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40934
+ current_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40935
+ current_user_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40936
+ current_user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40937
+ current_user_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40938
+ current_user_company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40939
+ handover_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40940
+ keynest_app_user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40941
+ default_office_id: z.ZodOptional<z.ZodNumber>;
40942
+ fob_id: z.ZodOptional<z.ZodNumber>;
40943
+ has_photo: z.ZodOptional<z.ZodBoolean>;
40649
40944
  }, "strip", z.ZodTypeAny, {
40650
40945
  device_name?: string | undefined;
40946
+ key_id?: string | undefined;
40947
+ property_id?: string | null | undefined;
40948
+ property_postcode?: string | null | undefined;
40949
+ key_notes?: string | null | undefined;
40950
+ subscription_plan?: string | undefined;
40951
+ status_type?: string | undefined;
40952
+ current_or_last_store_id?: number | undefined;
40953
+ last_movement?: string | undefined;
40954
+ address?: string | null | undefined;
40955
+ current_status?: string | null | undefined;
40956
+ current_user_name?: string | null | undefined;
40957
+ current_user_email?: string | null | undefined;
40958
+ current_user_phone_number?: string | null | undefined;
40959
+ current_user_company?: string | null | undefined;
40960
+ handover_method?: string | null | undefined;
40961
+ keynest_app_user?: string | null | undefined;
40962
+ default_office_id?: number | undefined;
40963
+ fob_id?: number | undefined;
40964
+ has_photo?: boolean | undefined;
40651
40965
  }, {
40652
40966
  device_name?: string | undefined;
40967
+ key_id?: string | undefined;
40968
+ property_id?: string | null | undefined;
40969
+ property_postcode?: string | null | undefined;
40970
+ key_notes?: string | null | undefined;
40971
+ subscription_plan?: string | undefined;
40972
+ status_type?: string | undefined;
40973
+ current_or_last_store_id?: number | undefined;
40974
+ last_movement?: string | undefined;
40975
+ address?: string | null | undefined;
40976
+ current_status?: string | null | undefined;
40977
+ current_user_name?: string | null | undefined;
40978
+ current_user_email?: string | null | undefined;
40979
+ current_user_phone_number?: string | null | undefined;
40980
+ current_user_company?: string | null | undefined;
40981
+ handover_method?: string | null | undefined;
40982
+ keynest_app_user?: string | null | undefined;
40983
+ default_office_id?: number | undefined;
40984
+ fob_id?: number | undefined;
40985
+ has_photo?: boolean | undefined;
40653
40986
  }>>;
40654
40987
  }, "strip", z.ZodTypeAny, {
40655
40988
  ecobee_metadata?: {
@@ -40887,6 +41220,25 @@ declare const device: z.ZodObject<{
40887
41220
  } | undefined;
40888
41221
  keynest_metadata?: {
40889
41222
  device_name?: string | undefined;
41223
+ key_id?: string | undefined;
41224
+ property_id?: string | null | undefined;
41225
+ property_postcode?: string | null | undefined;
41226
+ key_notes?: string | null | undefined;
41227
+ subscription_plan?: string | undefined;
41228
+ status_type?: string | undefined;
41229
+ current_or_last_store_id?: number | undefined;
41230
+ last_movement?: string | undefined;
41231
+ address?: string | null | undefined;
41232
+ current_status?: string | null | undefined;
41233
+ current_user_name?: string | null | undefined;
41234
+ current_user_email?: string | null | undefined;
41235
+ current_user_phone_number?: string | null | undefined;
41236
+ current_user_company?: string | null | undefined;
41237
+ handover_method?: string | null | undefined;
41238
+ keynest_app_user?: string | null | undefined;
41239
+ default_office_id?: number | undefined;
41240
+ fob_id?: number | undefined;
41241
+ has_photo?: boolean | undefined;
40890
41242
  } | undefined;
40891
41243
  }, {
40892
41244
  ecobee_metadata?: {
@@ -41124,6 +41476,25 @@ declare const device: z.ZodObject<{
41124
41476
  } | undefined;
41125
41477
  keynest_metadata?: {
41126
41478
  device_name?: string | undefined;
41479
+ key_id?: string | undefined;
41480
+ property_id?: string | null | undefined;
41481
+ property_postcode?: string | null | undefined;
41482
+ key_notes?: string | null | undefined;
41483
+ subscription_plan?: string | undefined;
41484
+ status_type?: string | undefined;
41485
+ current_or_last_store_id?: number | undefined;
41486
+ last_movement?: string | undefined;
41487
+ address?: string | null | undefined;
41488
+ current_status?: string | null | undefined;
41489
+ current_user_name?: string | null | undefined;
41490
+ current_user_email?: string | null | undefined;
41491
+ current_user_phone_number?: string | null | undefined;
41492
+ current_user_company?: string | null | undefined;
41493
+ handover_method?: string | null | undefined;
41494
+ keynest_app_user?: string | null | undefined;
41495
+ default_office_id?: number | undefined;
41496
+ fob_id?: number | undefined;
41497
+ has_photo?: boolean | undefined;
41127
41498
  } | undefined;
41128
41499
  }>>, z.ZodIntersection<z.ZodObject<{
41129
41500
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -42617,7 +42988,7 @@ declare const device: z.ZodObject<{
42617
42988
  warning_code: "unknown_issue_with_phone";
42618
42989
  })[];
42619
42990
  custom_metadata: Record<string, string | boolean>;
42620
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
42991
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
42621
42992
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
42622
42993
  properties: {
42623
42994
  name: string;
@@ -42903,6 +43274,25 @@ declare const device: z.ZodObject<{
42903
43274
  } | undefined;
42904
43275
  keynest_metadata?: {
42905
43276
  device_name?: string | undefined;
43277
+ key_id?: string | undefined;
43278
+ property_id?: string | null | undefined;
43279
+ property_postcode?: string | null | undefined;
43280
+ key_notes?: string | null | undefined;
43281
+ subscription_plan?: string | undefined;
43282
+ status_type?: string | undefined;
43283
+ current_or_last_store_id?: number | undefined;
43284
+ last_movement?: string | undefined;
43285
+ address?: string | null | undefined;
43286
+ current_status?: string | null | undefined;
43287
+ current_user_name?: string | null | undefined;
43288
+ current_user_email?: string | null | undefined;
43289
+ current_user_phone_number?: string | null | undefined;
43290
+ current_user_company?: string | null | undefined;
43291
+ handover_method?: string | null | undefined;
43292
+ keynest_app_user?: string | null | undefined;
43293
+ default_office_id?: number | undefined;
43294
+ fob_id?: number | undefined;
43295
+ has_photo?: boolean | undefined;
42906
43296
  } | undefined;
42907
43297
  } & {
42908
43298
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -43258,7 +43648,7 @@ declare const device: z.ZodObject<{
43258
43648
  warning_code: "unknown_issue_with_phone";
43259
43649
  })[];
43260
43650
  custom_metadata: Record<string, string | boolean>;
43261
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
43651
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
43262
43652
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
43263
43653
  properties: {
43264
43654
  name: string;
@@ -43544,6 +43934,25 @@ declare const device: z.ZodObject<{
43544
43934
  } | undefined;
43545
43935
  keynest_metadata?: {
43546
43936
  device_name?: string | undefined;
43937
+ key_id?: string | undefined;
43938
+ property_id?: string | null | undefined;
43939
+ property_postcode?: string | null | undefined;
43940
+ key_notes?: string | null | undefined;
43941
+ subscription_plan?: string | undefined;
43942
+ status_type?: string | undefined;
43943
+ current_or_last_store_id?: number | undefined;
43944
+ last_movement?: string | undefined;
43945
+ address?: string | null | undefined;
43946
+ current_status?: string | null | undefined;
43947
+ current_user_name?: string | null | undefined;
43948
+ current_user_email?: string | null | undefined;
43949
+ current_user_phone_number?: string | null | undefined;
43950
+ current_user_company?: string | null | undefined;
43951
+ handover_method?: string | null | undefined;
43952
+ keynest_app_user?: string | null | undefined;
43953
+ default_office_id?: number | undefined;
43954
+ fob_id?: number | undefined;
43955
+ has_photo?: boolean | undefined;
43547
43956
  } | undefined;
43548
43957
  } & {
43549
43958
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -43842,7 +44251,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
43842
44251
 
43843
44252
  declare const unmanaged_device: z.ZodObject<Pick<{
43844
44253
  device_id: z.ZodString;
43845
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
44254
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
43846
44255
  nickname: z.ZodOptional<z.ZodString>;
43847
44256
  display_name: z.ZodString;
43848
44257
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -44803,11 +45212,68 @@ declare const unmanaged_device: z.ZodObject<Pick<{
44803
45212
  product_type: string;
44804
45213
  }>>;
44805
45214
  keynest_metadata: z.ZodOptional<z.ZodObject<{
45215
+ key_id: z.ZodOptional<z.ZodString>;
44806
45216
  device_name: z.ZodOptional<z.ZodString>;
45217
+ property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45218
+ property_postcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45219
+ key_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45220
+ subscription_plan: z.ZodOptional<z.ZodString>;
45221
+ status_type: z.ZodOptional<z.ZodString>;
45222
+ current_or_last_store_id: z.ZodOptional<z.ZodNumber>;
45223
+ last_movement: z.ZodOptional<z.ZodString>;
45224
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45225
+ current_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45226
+ current_user_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45227
+ current_user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45228
+ current_user_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45229
+ current_user_company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45230
+ handover_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45231
+ keynest_app_user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45232
+ default_office_id: z.ZodOptional<z.ZodNumber>;
45233
+ fob_id: z.ZodOptional<z.ZodNumber>;
45234
+ has_photo: z.ZodOptional<z.ZodBoolean>;
44807
45235
  }, "strip", z.ZodTypeAny, {
44808
45236
  device_name?: string | undefined;
45237
+ key_id?: string | undefined;
45238
+ property_id?: string | null | undefined;
45239
+ property_postcode?: string | null | undefined;
45240
+ key_notes?: string | null | undefined;
45241
+ subscription_plan?: string | undefined;
45242
+ status_type?: string | undefined;
45243
+ current_or_last_store_id?: number | undefined;
45244
+ last_movement?: string | undefined;
45245
+ address?: string | null | undefined;
45246
+ current_status?: string | null | undefined;
45247
+ current_user_name?: string | null | undefined;
45248
+ current_user_email?: string | null | undefined;
45249
+ current_user_phone_number?: string | null | undefined;
45250
+ current_user_company?: string | null | undefined;
45251
+ handover_method?: string | null | undefined;
45252
+ keynest_app_user?: string | null | undefined;
45253
+ default_office_id?: number | undefined;
45254
+ fob_id?: number | undefined;
45255
+ has_photo?: boolean | undefined;
44809
45256
  }, {
44810
45257
  device_name?: string | undefined;
45258
+ key_id?: string | undefined;
45259
+ property_id?: string | null | undefined;
45260
+ property_postcode?: string | null | undefined;
45261
+ key_notes?: string | null | undefined;
45262
+ subscription_plan?: string | undefined;
45263
+ status_type?: string | undefined;
45264
+ current_or_last_store_id?: number | undefined;
45265
+ last_movement?: string | undefined;
45266
+ address?: string | null | undefined;
45267
+ current_status?: string | null | undefined;
45268
+ current_user_name?: string | null | undefined;
45269
+ current_user_email?: string | null | undefined;
45270
+ current_user_phone_number?: string | null | undefined;
45271
+ current_user_company?: string | null | undefined;
45272
+ handover_method?: string | null | undefined;
45273
+ keynest_app_user?: string | null | undefined;
45274
+ default_office_id?: number | undefined;
45275
+ fob_id?: number | undefined;
45276
+ has_photo?: boolean | undefined;
44811
45277
  }>>;
44812
45278
  }, "strip", z.ZodTypeAny, {
44813
45279
  ecobee_metadata?: {
@@ -45045,6 +45511,25 @@ declare const unmanaged_device: z.ZodObject<Pick<{
45045
45511
  } | undefined;
45046
45512
  keynest_metadata?: {
45047
45513
  device_name?: string | undefined;
45514
+ key_id?: string | undefined;
45515
+ property_id?: string | null | undefined;
45516
+ property_postcode?: string | null | undefined;
45517
+ key_notes?: string | null | undefined;
45518
+ subscription_plan?: string | undefined;
45519
+ status_type?: string | undefined;
45520
+ current_or_last_store_id?: number | undefined;
45521
+ last_movement?: string | undefined;
45522
+ address?: string | null | undefined;
45523
+ current_status?: string | null | undefined;
45524
+ current_user_name?: string | null | undefined;
45525
+ current_user_email?: string | null | undefined;
45526
+ current_user_phone_number?: string | null | undefined;
45527
+ current_user_company?: string | null | undefined;
45528
+ handover_method?: string | null | undefined;
45529
+ keynest_app_user?: string | null | undefined;
45530
+ default_office_id?: number | undefined;
45531
+ fob_id?: number | undefined;
45532
+ has_photo?: boolean | undefined;
45048
45533
  } | undefined;
45049
45534
  }, {
45050
45535
  ecobee_metadata?: {
@@ -45282,6 +45767,25 @@ declare const unmanaged_device: z.ZodObject<Pick<{
45282
45767
  } | undefined;
45283
45768
  keynest_metadata?: {
45284
45769
  device_name?: string | undefined;
45770
+ key_id?: string | undefined;
45771
+ property_id?: string | null | undefined;
45772
+ property_postcode?: string | null | undefined;
45773
+ key_notes?: string | null | undefined;
45774
+ subscription_plan?: string | undefined;
45775
+ status_type?: string | undefined;
45776
+ current_or_last_store_id?: number | undefined;
45777
+ last_movement?: string | undefined;
45778
+ address?: string | null | undefined;
45779
+ current_status?: string | null | undefined;
45780
+ current_user_name?: string | null | undefined;
45781
+ current_user_email?: string | null | undefined;
45782
+ current_user_phone_number?: string | null | undefined;
45783
+ current_user_company?: string | null | undefined;
45784
+ handover_method?: string | null | undefined;
45785
+ keynest_app_user?: string | null | undefined;
45786
+ default_office_id?: number | undefined;
45787
+ fob_id?: number | undefined;
45788
+ has_photo?: boolean | undefined;
45285
45789
  } | undefined;
45286
45790
  }>>, z.ZodIntersection<z.ZodObject<{
45287
45791
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -46927,7 +47431,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
46927
47431
  warning_code: "unknown_issue_with_phone";
46928
47432
  })[];
46929
47433
  custom_metadata: Record<string, string | boolean>;
46930
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
47434
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
46931
47435
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
46932
47436
  properties: {
46933
47437
  name: string;
@@ -47159,7 +47663,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
47159
47663
  warning_code: "unknown_issue_with_phone";
47160
47664
  })[];
47161
47665
  custom_metadata: Record<string, string | boolean>;
47162
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
47666
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
47163
47667
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
47164
47668
  properties: {
47165
47669
  name: string;
@@ -47954,6 +48458,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
47954
48458
  } & {
47955
48459
  event_type: z.ZodLiteral<"access_method.issued">;
47956
48460
  code: z.ZodOptional<z.ZodString>;
48461
+ is_backup_code: z.ZodOptional<z.ZodBoolean>;
47957
48462
  }, "strip", z.ZodTypeAny, {
47958
48463
  workspace_id: string;
47959
48464
  created_at: string;
@@ -47964,6 +48469,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
47964
48469
  access_grant_ids: string[];
47965
48470
  code?: string | undefined;
47966
48471
  access_grant_keys?: string[] | undefined;
48472
+ is_backup_code?: boolean | undefined;
47967
48473
  }, {
47968
48474
  workspace_id: string;
47969
48475
  created_at: string;
@@ -47974,6 +48480,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
47974
48480
  access_grant_ids: string[];
47975
48481
  code?: string | undefined;
47976
48482
  access_grant_keys?: string[] | undefined;
48483
+ is_backup_code?: boolean | undefined;
47977
48484
  }>, z.ZodObject<{
47978
48485
  event_id: z.ZodString;
47979
48486
  workspace_id: z.ZodString;
@@ -48073,6 +48580,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
48073
48580
  } & {
48074
48581
  event_type: z.ZodLiteral<"access_method.reissued">;
48075
48582
  code: z.ZodOptional<z.ZodString>;
48583
+ is_backup_code: z.ZodOptional<z.ZodBoolean>;
48076
48584
  }, "strip", z.ZodTypeAny, {
48077
48585
  workspace_id: string;
48078
48586
  created_at: string;
@@ -48083,6 +48591,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
48083
48591
  access_grant_ids: string[];
48084
48592
  code?: string | undefined;
48085
48593
  access_grant_keys?: string[] | undefined;
48594
+ is_backup_code?: boolean | undefined;
48086
48595
  }, {
48087
48596
  workspace_id: string;
48088
48597
  created_at: string;
@@ -48093,6 +48602,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
48093
48602
  access_grant_ids: string[];
48094
48603
  code?: string | undefined;
48095
48604
  access_grant_keys?: string[] | undefined;
48605
+ is_backup_code?: boolean | undefined;
48096
48606
  }>, z.ZodObject<{
48097
48607
  event_id: z.ZodString;
48098
48608
  workspace_id: z.ZodString;
@@ -56021,10 +56531,100 @@ declare const _default: {
56021
56531
  keynest_metadata: {
56022
56532
  description: string;
56023
56533
  properties: {
56534
+ address: {
56535
+ description: string;
56536
+ nullable: boolean;
56537
+ type: string;
56538
+ };
56539
+ current_or_last_store_id: {
56540
+ description: string;
56541
+ format: string;
56542
+ type: string;
56543
+ };
56544
+ current_status: {
56545
+ description: string;
56546
+ nullable: boolean;
56547
+ type: string;
56548
+ };
56549
+ current_user_company: {
56550
+ description: string;
56551
+ nullable: boolean;
56552
+ type: string;
56553
+ };
56554
+ current_user_email: {
56555
+ description: string;
56556
+ nullable: boolean;
56557
+ type: string;
56558
+ };
56559
+ current_user_name: {
56560
+ description: string;
56561
+ nullable: boolean;
56562
+ type: string;
56563
+ };
56564
+ current_user_phone_number: {
56565
+ description: string;
56566
+ nullable: boolean;
56567
+ type: string;
56568
+ };
56569
+ default_office_id: {
56570
+ description: string;
56571
+ format: string;
56572
+ type: string;
56573
+ };
56024
56574
  device_name: {
56025
56575
  description: string;
56026
56576
  type: string;
56027
56577
  };
56578
+ fob_id: {
56579
+ description: string;
56580
+ format: string;
56581
+ type: string;
56582
+ };
56583
+ handover_method: {
56584
+ description: string;
56585
+ nullable: boolean;
56586
+ type: string;
56587
+ };
56588
+ has_photo: {
56589
+ description: string;
56590
+ type: string;
56591
+ };
56592
+ key_id: {
56593
+ description: string;
56594
+ type: string;
56595
+ };
56596
+ key_notes: {
56597
+ description: string;
56598
+ nullable: boolean;
56599
+ type: string;
56600
+ };
56601
+ keynest_app_user: {
56602
+ description: string;
56603
+ nullable: boolean;
56604
+ type: string;
56605
+ };
56606
+ last_movement: {
56607
+ description: string;
56608
+ type: string;
56609
+ };
56610
+ property_id: {
56611
+ description: string;
56612
+ nullable: boolean;
56613
+ type: string;
56614
+ };
56615
+ property_postcode: {
56616
+ description: string;
56617
+ nullable: boolean;
56618
+ type: string;
56619
+ };
56620
+ status_type: {
56621
+ description: string;
56622
+ type: string;
56623
+ };
56624
+ subscription_plan: {
56625
+ description: string;
56626
+ type: string;
56627
+ };
56028
56628
  };
56029
56629
  type: string;
56030
56630
  };
@@ -57729,6 +58329,7 @@ declare const _default: {
57729
58329
  access_grant_ids?: never;
57730
58330
  access_grant_keys?: never;
57731
58331
  access_method_id?: never;
58332
+ is_backup_code?: never;
57732
58333
  acs_system_id?: never;
57733
58334
  acs_credential_id?: never;
57734
58335
  acs_user_id?: never;
@@ -57846,6 +58447,7 @@ declare const _default: {
57846
58447
  access_grant_ids?: never;
57847
58448
  access_grant_keys?: never;
57848
58449
  access_method_id?: never;
58450
+ is_backup_code?: never;
57849
58451
  acs_system_id?: never;
57850
58452
  acs_credential_id?: never;
57851
58453
  acs_user_id?: never;
@@ -57963,6 +58565,7 @@ declare const _default: {
57963
58565
  access_grant_ids?: never;
57964
58566
  access_grant_keys?: never;
57965
58567
  access_method_id?: never;
58568
+ is_backup_code?: never;
57966
58569
  acs_system_id?: never;
57967
58570
  acs_credential_id?: never;
57968
58571
  acs_user_id?: never;
@@ -58078,6 +58681,7 @@ declare const _default: {
58078
58681
  access_grant_ids?: never;
58079
58682
  access_grant_keys?: never;
58080
58683
  access_method_id?: never;
58684
+ is_backup_code?: never;
58081
58685
  acs_system_id?: never;
58082
58686
  acs_credential_id?: never;
58083
58687
  acs_user_id?: never;
@@ -58167,6 +58771,7 @@ declare const _default: {
58167
58771
  access_grant_ids?: never;
58168
58772
  access_grant_keys?: never;
58169
58773
  access_method_id?: never;
58774
+ is_backup_code?: never;
58170
58775
  acs_system_id?: never;
58171
58776
  acs_credential_id?: never;
58172
58777
  acs_user_id?: never;
@@ -58260,6 +58865,7 @@ declare const _default: {
58260
58865
  access_grant_ids?: never;
58261
58866
  access_grant_keys?: never;
58262
58867
  access_method_id?: never;
58868
+ is_backup_code?: never;
58263
58869
  acs_system_id?: never;
58264
58870
  acs_credential_id?: never;
58265
58871
  acs_user_id?: never;
@@ -58348,6 +58954,10 @@ declare const _default: {
58348
58954
  enum: string[];
58349
58955
  type: string;
58350
58956
  };
58957
+ is_backup_code: {
58958
+ description: string;
58959
+ type: string;
58960
+ };
58351
58961
  occurred_at: {
58352
58962
  description: string;
58353
58963
  format: string;
@@ -58468,6 +59078,7 @@ declare const _default: {
58468
59078
  backup_access_code_id?: never;
58469
59079
  access_grant_id?: never;
58470
59080
  acs_entrance_id?: never;
59081
+ is_backup_code?: never;
58471
59082
  acs_system_id?: never;
58472
59083
  acs_credential_id?: never;
58473
59084
  acs_user_id?: never;
@@ -58562,6 +59173,7 @@ declare const _default: {
58562
59173
  access_grant_ids?: never;
58563
59174
  access_grant_keys?: never;
58564
59175
  access_method_id?: never;
59176
+ is_backup_code?: never;
58565
59177
  acs_credential_id?: never;
58566
59178
  acs_user_id?: never;
58567
59179
  acs_encoder_id?: never;
@@ -58660,6 +59272,7 @@ declare const _default: {
58660
59272
  access_grant_ids?: never;
58661
59273
  access_grant_keys?: never;
58662
59274
  access_method_id?: never;
59275
+ is_backup_code?: never;
58663
59276
  acs_user_id?: never;
58664
59277
  acs_encoder_id?: never;
58665
59278
  acs_access_group_id?: never;
@@ -58756,6 +59369,7 @@ declare const _default: {
58756
59369
  access_grant_ids?: never;
58757
59370
  access_grant_keys?: never;
58758
59371
  access_method_id?: never;
59372
+ is_backup_code?: never;
58759
59373
  acs_credential_id?: never;
58760
59374
  acs_encoder_id?: never;
58761
59375
  acs_access_group_id?: never;
@@ -58853,6 +59467,7 @@ declare const _default: {
58853
59467
  access_grant_ids?: never;
58854
59468
  access_grant_keys?: never;
58855
59469
  access_method_id?: never;
59470
+ is_backup_code?: never;
58856
59471
  acs_credential_id?: never;
58857
59472
  acs_user_id?: never;
58858
59473
  acs_access_group_id?: never;
@@ -58950,6 +59565,7 @@ declare const _default: {
58950
59565
  access_grant_ids?: never;
58951
59566
  access_grant_keys?: never;
58952
59567
  access_method_id?: never;
59568
+ is_backup_code?: never;
58953
59569
  acs_credential_id?: never;
58954
59570
  acs_user_id?: never;
58955
59571
  acs_encoder_id?: never;
@@ -59046,6 +59662,7 @@ declare const _default: {
59046
59662
  access_grant_ids?: never;
59047
59663
  access_grant_keys?: never;
59048
59664
  access_method_id?: never;
59665
+ is_backup_code?: never;
59049
59666
  acs_credential_id?: never;
59050
59667
  acs_user_id?: never;
59051
59668
  acs_encoder_id?: never;
@@ -59135,6 +59752,7 @@ declare const _default: {
59135
59752
  access_grant_ids?: never;
59136
59753
  access_grant_keys?: never;
59137
59754
  access_method_id?: never;
59755
+ is_backup_code?: never;
59138
59756
  acs_system_id?: never;
59139
59757
  acs_credential_id?: never;
59140
59758
  acs_user_id?: never;
@@ -59240,6 +59858,7 @@ declare const _default: {
59240
59858
  access_grant_ids?: never;
59241
59859
  access_grant_keys?: never;
59242
59860
  access_method_id?: never;
59861
+ is_backup_code?: never;
59243
59862
  acs_system_id?: never;
59244
59863
  acs_credential_id?: never;
59245
59864
  acs_user_id?: never;
@@ -59340,6 +59959,7 @@ declare const _default: {
59340
59959
  access_grant_ids?: never;
59341
59960
  access_grant_keys?: never;
59342
59961
  access_method_id?: never;
59962
+ is_backup_code?: never;
59343
59963
  acs_system_id?: never;
59344
59964
  acs_credential_id?: never;
59345
59965
  acs_user_id?: never;
@@ -59442,6 +60062,7 @@ declare const _default: {
59442
60062
  access_grant_ids?: never;
59443
60063
  access_grant_keys?: never;
59444
60064
  access_method_id?: never;
60065
+ is_backup_code?: never;
59445
60066
  acs_system_id?: never;
59446
60067
  acs_credential_id?: never;
59447
60068
  acs_user_id?: never;
@@ -59537,6 +60158,7 @@ declare const _default: {
59537
60158
  access_grant_ids?: never;
59538
60159
  access_grant_keys?: never;
59539
60160
  access_method_id?: never;
60161
+ is_backup_code?: never;
59540
60162
  acs_system_id?: never;
59541
60163
  acs_credential_id?: never;
59542
60164
  acs_user_id?: never;
@@ -59635,6 +60257,7 @@ declare const _default: {
59635
60257
  access_grant_ids?: never;
59636
60258
  access_grant_keys?: never;
59637
60259
  access_method_id?: never;
60260
+ is_backup_code?: never;
59638
60261
  acs_system_id?: never;
59639
60262
  acs_credential_id?: never;
59640
60263
  acs_user_id?: never;
@@ -59722,6 +60345,7 @@ declare const _default: {
59722
60345
  access_grant_ids?: never;
59723
60346
  access_grant_keys?: never;
59724
60347
  access_method_id?: never;
60348
+ is_backup_code?: never;
59725
60349
  acs_system_id?: never;
59726
60350
  acs_credential_id?: never;
59727
60351
  acs_user_id?: never;
@@ -59830,6 +60454,7 @@ declare const _default: {
59830
60454
  access_grant_ids?: never;
59831
60455
  access_grant_keys?: never;
59832
60456
  access_method_id?: never;
60457
+ is_backup_code?: never;
59833
60458
  acs_system_id?: never;
59834
60459
  acs_credential_id?: never;
59835
60460
  acs_user_id?: never;
@@ -59944,6 +60569,7 @@ declare const _default: {
59944
60569
  access_grant_ids?: never;
59945
60570
  access_grant_keys?: never;
59946
60571
  access_method_id?: never;
60572
+ is_backup_code?: never;
59947
60573
  acs_system_id?: never;
59948
60574
  acs_credential_id?: never;
59949
60575
  acs_user_id?: never;
@@ -60059,6 +60685,7 @@ declare const _default: {
60059
60685
  access_grant_ids?: never;
60060
60686
  access_grant_keys?: never;
60061
60687
  access_method_id?: never;
60688
+ is_backup_code?: never;
60062
60689
  acs_system_id?: never;
60063
60690
  acs_credential_id?: never;
60064
60691
  acs_user_id?: never;
@@ -60179,6 +60806,7 @@ declare const _default: {
60179
60806
  access_grant_ids?: never;
60180
60807
  access_grant_keys?: never;
60181
60808
  access_method_id?: never;
60809
+ is_backup_code?: never;
60182
60810
  acs_system_id?: never;
60183
60811
  acs_credential_id?: never;
60184
60812
  acs_user_id?: never;
@@ -60315,6 +60943,7 @@ declare const _default: {
60315
60943
  access_grant_ids?: never;
60316
60944
  access_grant_keys?: never;
60317
60945
  access_method_id?: never;
60946
+ is_backup_code?: never;
60318
60947
  acs_system_id?: never;
60319
60948
  acs_credential_id?: never;
60320
60949
  acs_user_id?: never;
@@ -60432,6 +61061,7 @@ declare const _default: {
60432
61061
  access_grant_ids?: never;
60433
61062
  access_grant_keys?: never;
60434
61063
  access_method_id?: never;
61064
+ is_backup_code?: never;
60435
61065
  acs_system_id?: never;
60436
61066
  acs_credential_id?: never;
60437
61067
  acs_user_id?: never;
@@ -60553,6 +61183,7 @@ declare const _default: {
60553
61183
  access_grant_ids?: never;
60554
61184
  access_grant_keys?: never;
60555
61185
  access_method_id?: never;
61186
+ is_backup_code?: never;
60556
61187
  acs_system_id?: never;
60557
61188
  acs_credential_id?: never;
60558
61189
  acs_user_id?: never;
@@ -60694,6 +61325,7 @@ declare const _default: {
60694
61325
  access_grant_ids?: never;
60695
61326
  access_grant_keys?: never;
60696
61327
  access_method_id?: never;
61328
+ is_backup_code?: never;
60697
61329
  acs_system_id?: never;
60698
61330
  acs_credential_id?: never;
60699
61331
  acs_user_id?: never;
@@ -60830,6 +61462,7 @@ declare const _default: {
60830
61462
  access_grant_ids?: never;
60831
61463
  access_grant_keys?: never;
60832
61464
  access_method_id?: never;
61465
+ is_backup_code?: never;
60833
61466
  acs_system_id?: never;
60834
61467
  acs_credential_id?: never;
60835
61468
  acs_user_id?: never;
@@ -60953,6 +61586,7 @@ declare const _default: {
60953
61586
  access_grant_ids?: never;
60954
61587
  access_grant_keys?: never;
60955
61588
  access_method_id?: never;
61589
+ is_backup_code?: never;
60956
61590
  acs_system_id?: never;
60957
61591
  acs_credential_id?: never;
60958
61592
  acs_user_id?: never;
@@ -61068,6 +61702,7 @@ declare const _default: {
61068
61702
  access_grant_ids?: never;
61069
61703
  access_grant_keys?: never;
61070
61704
  access_method_id?: never;
61705
+ is_backup_code?: never;
61071
61706
  acs_system_id?: never;
61072
61707
  acs_credential_id?: never;
61073
61708
  acs_user_id?: never;
@@ -61179,6 +61814,7 @@ declare const _default: {
61179
61814
  access_grant_ids?: never;
61180
61815
  access_grant_keys?: never;
61181
61816
  access_method_id?: never;
61817
+ is_backup_code?: never;
61182
61818
  acs_system_id?: never;
61183
61819
  acs_credential_id?: never;
61184
61820
  acs_user_id?: never;
@@ -61268,6 +61904,7 @@ declare const _default: {
61268
61904
  access_grant_ids?: never;
61269
61905
  access_grant_keys?: never;
61270
61906
  access_method_id?: never;
61907
+ is_backup_code?: never;
61271
61908
  acs_system_id?: never;
61272
61909
  acs_credential_id?: never;
61273
61910
  acs_user_id?: never;
@@ -61364,6 +62001,7 @@ declare const _default: {
61364
62001
  access_grant_ids?: never;
61365
62002
  access_grant_keys?: never;
61366
62003
  access_method_id?: never;
62004
+ is_backup_code?: never;
61367
62005
  acs_system_id?: never;
61368
62006
  acs_credential_id?: never;
61369
62007
  acs_user_id?: never;
@@ -112640,7 +113278,7 @@ type Routes = {
112640
113278
  /** ID of the device. */
112641
113279
  device_id: string;
112642
113280
  /** Type of the device. */
112643
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
113281
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
112644
113282
  /** Optional nickname to describe the device, settable through Seam. */
112645
113283
  nickname?: string | undefined;
112646
113284
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -113185,8 +113823,46 @@ type Routes = {
113185
113823
  } | undefined;
113186
113824
  /** Metadata for a KeyNest device. */
113187
113825
  keynest_metadata?: {
113826
+ /** Key ID for a KeyNest device. */
113827
+ key_id?: string | undefined;
113188
113828
  /** Device name for a KeyNest device. */
113189
113829
  device_name?: string | undefined;
113830
+ /** Property ID for a KeyNest device. */
113831
+ property_id?: (string | null) | undefined;
113832
+ /** Property postcode for a KeyNest device. */
113833
+ property_postcode?: (string | null) | undefined;
113834
+ /** Key notes for a KeyNest device. */
113835
+ key_notes?: (string | null) | undefined;
113836
+ /** Subscription plan for a KeyNest device. */
113837
+ subscription_plan?: string | undefined;
113838
+ /** Status type for a KeyNest device. */
113839
+ status_type?: string | undefined;
113840
+ /** Current or last store ID for a KeyNest device. */
113841
+ current_or_last_store_id?: number | undefined;
113842
+ /** Last movement timestamp for a KeyNest device. */
113843
+ last_movement?: string | undefined;
113844
+ /** Address for a KeyNest device. */
113845
+ address?: (string | null) | undefined;
113846
+ /** Current status for a KeyNest device. */
113847
+ current_status?: (string | null) | undefined;
113848
+ /** Current user name for a KeyNest device. */
113849
+ current_user_name?: (string | null) | undefined;
113850
+ /** Current user email for a KeyNest device. */
113851
+ current_user_email?: (string | null) | undefined;
113852
+ /** Current user phone number for a KeyNest device. */
113853
+ current_user_phone_number?: (string | null) | undefined;
113854
+ /** Current user company for a KeyNest device. */
113855
+ current_user_company?: (string | null) | undefined;
113856
+ /** Handover method for a KeyNest device. */
113857
+ handover_method?: (string | null) | undefined;
113858
+ /** KeyNest app user for a KeyNest device. */
113859
+ keynest_app_user?: (string | null) | undefined;
113860
+ /** Default office ID for a KeyNest device. */
113861
+ default_office_id?: number | undefined;
113862
+ /** Fob ID for a KeyNest device. */
113863
+ fob_id?: number | undefined;
113864
+ /** Whether the KeyNest device has a photo. */
113865
+ has_photo?: boolean | undefined;
113190
113866
  } | undefined;
113191
113867
  }) & ({
113192
113868
  /** */
@@ -115774,7 +116450,7 @@ type Routes = {
115774
116450
  /** ID of the device. */
115775
116451
  device_id: string;
115776
116452
  /** Type of the device. */
115777
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
116453
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
115778
116454
  /** Optional nickname to describe the device, settable through Seam. */
115779
116455
  nickname?: string | undefined;
115780
116456
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -116319,8 +116995,46 @@ type Routes = {
116319
116995
  } | undefined;
116320
116996
  /** Metadata for a KeyNest device. */
116321
116997
  keynest_metadata?: {
116998
+ /** Key ID for a KeyNest device. */
116999
+ key_id?: string | undefined;
116322
117000
  /** Device name for a KeyNest device. */
116323
117001
  device_name?: string | undefined;
117002
+ /** Property ID for a KeyNest device. */
117003
+ property_id?: (string | null) | undefined;
117004
+ /** Property postcode for a KeyNest device. */
117005
+ property_postcode?: (string | null) | undefined;
117006
+ /** Key notes for a KeyNest device. */
117007
+ key_notes?: (string | null) | undefined;
117008
+ /** Subscription plan for a KeyNest device. */
117009
+ subscription_plan?: string | undefined;
117010
+ /** Status type for a KeyNest device. */
117011
+ status_type?: string | undefined;
117012
+ /** Current or last store ID for a KeyNest device. */
117013
+ current_or_last_store_id?: number | undefined;
117014
+ /** Last movement timestamp for a KeyNest device. */
117015
+ last_movement?: string | undefined;
117016
+ /** Address for a KeyNest device. */
117017
+ address?: (string | null) | undefined;
117018
+ /** Current status for a KeyNest device. */
117019
+ current_status?: (string | null) | undefined;
117020
+ /** Current user name for a KeyNest device. */
117021
+ current_user_name?: (string | null) | undefined;
117022
+ /** Current user email for a KeyNest device. */
117023
+ current_user_email?: (string | null) | undefined;
117024
+ /** Current user phone number for a KeyNest device. */
117025
+ current_user_phone_number?: (string | null) | undefined;
117026
+ /** Current user company for a KeyNest device. */
117027
+ current_user_company?: (string | null) | undefined;
117028
+ /** Handover method for a KeyNest device. */
117029
+ handover_method?: (string | null) | undefined;
117030
+ /** KeyNest app user for a KeyNest device. */
117031
+ keynest_app_user?: (string | null) | undefined;
117032
+ /** Default office ID for a KeyNest device. */
117033
+ default_office_id?: number | undefined;
117034
+ /** Fob ID for a KeyNest device. */
117035
+ fob_id?: number | undefined;
117036
+ /** Whether the KeyNest device has a photo. */
117037
+ has_photo?: boolean | undefined;
116324
117038
  } | undefined;
116325
117039
  }) & ({
116326
117040
  /** */
@@ -119221,7 +119935,7 @@ type Routes = {
119221
119935
  /** ID of the device. */
119222
119936
  device_id: string;
119223
119937
  /** Type of the device. */
119224
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
119938
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
119225
119939
  /** Unique identifier for the account associated with the device. */
119226
119940
  connected_account_id: string;
119227
119941
  /** Location information for the device. */
@@ -120224,6 +120938,8 @@ type Routes = {
120224
120938
  event_type: 'access_method.issued';
120225
120939
  /** The actual PIN code for code access methods (only present when mode is 'code'). */
120226
120940
  code?: string | undefined;
120941
+ /** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
120942
+ is_backup_code?: boolean | undefined;
120227
120943
  } | {
120228
120944
  /** ID of the event. */
120229
120945
  event_id: string;
@@ -120290,6 +121006,8 @@ type Routes = {
120290
121006
  event_type: 'access_method.reissued';
120291
121007
  /** The actual PIN code for code access methods (only present when mode is 'code'). */
120292
121008
  code?: string | undefined;
121009
+ /** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
121010
+ is_backup_code?: boolean | undefined;
120293
121011
  } | {
120294
121012
  /** ID of the event. */
120295
121013
  event_id: string;
@@ -134191,7 +134909,7 @@ type Routes = {
134191
134909
  /** ID of the device. */
134192
134910
  device_id: string;
134193
134911
  /** Type of the device. */
134194
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
134912
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
134195
134913
  /** Optional nickname to describe the device, settable through Seam. */
134196
134914
  nickname?: string | undefined;
134197
134915
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -134736,8 +135454,46 @@ type Routes = {
134736
135454
  } | undefined;
134737
135455
  /** Metadata for a KeyNest device. */
134738
135456
  keynest_metadata?: {
135457
+ /** Key ID for a KeyNest device. */
135458
+ key_id?: string | undefined;
134739
135459
  /** Device name for a KeyNest device. */
134740
135460
  device_name?: string | undefined;
135461
+ /** Property ID for a KeyNest device. */
135462
+ property_id?: (string | null) | undefined;
135463
+ /** Property postcode for a KeyNest device. */
135464
+ property_postcode?: (string | null) | undefined;
135465
+ /** Key notes for a KeyNest device. */
135466
+ key_notes?: (string | null) | undefined;
135467
+ /** Subscription plan for a KeyNest device. */
135468
+ subscription_plan?: string | undefined;
135469
+ /** Status type for a KeyNest device. */
135470
+ status_type?: string | undefined;
135471
+ /** Current or last store ID for a KeyNest device. */
135472
+ current_or_last_store_id?: number | undefined;
135473
+ /** Last movement timestamp for a KeyNest device. */
135474
+ last_movement?: string | undefined;
135475
+ /** Address for a KeyNest device. */
135476
+ address?: (string | null) | undefined;
135477
+ /** Current status for a KeyNest device. */
135478
+ current_status?: (string | null) | undefined;
135479
+ /** Current user name for a KeyNest device. */
135480
+ current_user_name?: (string | null) | undefined;
135481
+ /** Current user email for a KeyNest device. */
135482
+ current_user_email?: (string | null) | undefined;
135483
+ /** Current user phone number for a KeyNest device. */
135484
+ current_user_phone_number?: (string | null) | undefined;
135485
+ /** Current user company for a KeyNest device. */
135486
+ current_user_company?: (string | null) | undefined;
135487
+ /** Handover method for a KeyNest device. */
135488
+ handover_method?: (string | null) | undefined;
135489
+ /** KeyNest app user for a KeyNest device. */
135490
+ keynest_app_user?: (string | null) | undefined;
135491
+ /** Default office ID for a KeyNest device. */
135492
+ default_office_id?: number | undefined;
135493
+ /** Fob ID for a KeyNest device. */
135494
+ fob_id?: number | undefined;
135495
+ /** Whether the KeyNest device has a photo. */
135496
+ has_photo?: boolean | undefined;
134741
135497
  } | undefined;
134742
135498
  }) & ({
134743
135499
  /** */
@@ -135376,9 +136132,9 @@ type Routes = {
135376
136132
  /** ID of the Connect Webview for which you want to list devices. */
135377
136133
  connect_webview_id?: string | undefined;
135378
136134
  /** Device type for which you want to list devices. */
135379
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
136135
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
135380
136136
  /** Array of device types for which you want to list devices. */
135381
- device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
136137
+ device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
135382
136138
  /** Manufacturer for which you want to list devices. */
135383
136139
  manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest') | undefined;
135384
136140
  /** Array of device IDs for which you want to list devices. */
@@ -135413,7 +136169,7 @@ type Routes = {
135413
136169
  /** ID of the device. */
135414
136170
  device_id: string;
135415
136171
  /** Type of the device. */
135416
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
136172
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
135417
136173
  /** Optional nickname to describe the device, settable through Seam. */
135418
136174
  nickname?: string | undefined;
135419
136175
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -135958,8 +136714,46 @@ type Routes = {
135958
136714
  } | undefined;
135959
136715
  /** Metadata for a KeyNest device. */
135960
136716
  keynest_metadata?: {
136717
+ /** Key ID for a KeyNest device. */
136718
+ key_id?: string | undefined;
135961
136719
  /** Device name for a KeyNest device. */
135962
136720
  device_name?: string | undefined;
136721
+ /** Property ID for a KeyNest device. */
136722
+ property_id?: (string | null) | undefined;
136723
+ /** Property postcode for a KeyNest device. */
136724
+ property_postcode?: (string | null) | undefined;
136725
+ /** Key notes for a KeyNest device. */
136726
+ key_notes?: (string | null) | undefined;
136727
+ /** Subscription plan for a KeyNest device. */
136728
+ subscription_plan?: string | undefined;
136729
+ /** Status type for a KeyNest device. */
136730
+ status_type?: string | undefined;
136731
+ /** Current or last store ID for a KeyNest device. */
136732
+ current_or_last_store_id?: number | undefined;
136733
+ /** Last movement timestamp for a KeyNest device. */
136734
+ last_movement?: string | undefined;
136735
+ /** Address for a KeyNest device. */
136736
+ address?: (string | null) | undefined;
136737
+ /** Current status for a KeyNest device. */
136738
+ current_status?: (string | null) | undefined;
136739
+ /** Current user name for a KeyNest device. */
136740
+ current_user_name?: (string | null) | undefined;
136741
+ /** Current user email for a KeyNest device. */
136742
+ current_user_email?: (string | null) | undefined;
136743
+ /** Current user phone number for a KeyNest device. */
136744
+ current_user_phone_number?: (string | null) | undefined;
136745
+ /** Current user company for a KeyNest device. */
136746
+ current_user_company?: (string | null) | undefined;
136747
+ /** Handover method for a KeyNest device. */
136748
+ handover_method?: (string | null) | undefined;
136749
+ /** KeyNest app user for a KeyNest device. */
136750
+ keynest_app_user?: (string | null) | undefined;
136751
+ /** Default office ID for a KeyNest device. */
136752
+ default_office_id?: number | undefined;
136753
+ /** Fob ID for a KeyNest device. */
136754
+ fob_id?: number | undefined;
136755
+ /** Whether the KeyNest device has a photo. */
136756
+ has_photo?: boolean | undefined;
135963
136757
  } | undefined;
135964
136758
  }) & ({
135965
136759
  /** */
@@ -136717,7 +137511,7 @@ type Routes = {
136717
137511
  /** ID of the device. */
136718
137512
  device_id: string;
136719
137513
  /** Type of the device. */
136720
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
137514
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
136721
137515
  /** Unique identifier for the account associated with the device. */
136722
137516
  connected_account_id: string;
136723
137517
  /** Location information for the device. */
@@ -137121,9 +137915,9 @@ type Routes = {
137121
137915
  /** ID of the Connect Webview for which you want to list devices. */
137122
137916
  connect_webview_id?: string | undefined;
137123
137917
  /** Device type for which you want to list devices. */
137124
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
137918
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
137125
137919
  /** Array of device types for which you want to list devices. */
137126
- device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
137920
+ device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
137127
137921
  /** Manufacturer for which you want to list devices. */
137128
137922
  manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest') | undefined;
137129
137923
  /** Array of device IDs for which you want to list devices. */
@@ -137158,7 +137952,7 @@ type Routes = {
137158
137952
  /** ID of the device. */
137159
137953
  device_id: string;
137160
137954
  /** Type of the device. */
137161
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
137955
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
137162
137956
  /** Unique identifier for the account associated with the device. */
137163
137957
  connected_account_id: string;
137164
137958
  /** Location information for the device. */
@@ -138104,6 +138898,8 @@ type Routes = {
138104
138898
  event_type: 'access_method.issued';
138105
138899
  /** The actual PIN code for code access methods (only present when mode is 'code'). */
138106
138900
  code?: string | undefined;
138901
+ /** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
138902
+ is_backup_code?: boolean | undefined;
138107
138903
  } | {
138108
138904
  /** ID of the event. */
138109
138905
  event_id: string;
@@ -138170,6 +138966,8 @@ type Routes = {
138170
138966
  event_type: 'access_method.reissued';
138171
138967
  /** The actual PIN code for code access methods (only present when mode is 'code'). */
138172
138968
  code?: string | undefined;
138969
+ /** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
138970
+ is_backup_code?: boolean | undefined;
138173
138971
  } | {
138174
138972
  /** ID of the event. */
138175
138973
  event_id: string;
@@ -140006,6 +140804,8 @@ type Routes = {
140006
140804
  event_type: 'access_method.issued';
140007
140805
  /** The actual PIN code for code access methods (only present when mode is 'code'). */
140008
140806
  code?: string | undefined;
140807
+ /** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
140808
+ is_backup_code?: boolean | undefined;
140009
140809
  } | {
140010
140810
  /** ID of the event. */
140011
140811
  event_id: string;
@@ -140072,6 +140872,8 @@ type Routes = {
140072
140872
  event_type: 'access_method.reissued';
140073
140873
  /** The actual PIN code for code access methods (only present when mode is 'code'). */
140074
140874
  code?: string | undefined;
140875
+ /** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
140876
+ is_backup_code?: boolean | undefined;
140075
140877
  } | {
140076
140878
  /** ID of the event. */
140077
140879
  event_id: string;
@@ -141484,7 +142286,7 @@ type Routes = {
141484
142286
  /** ID of the device. */
141485
142287
  device_id: string;
141486
142288
  /** Type of the device. */
141487
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
142289
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
141488
142290
  /** Optional nickname to describe the device, settable through Seam. */
141489
142291
  nickname?: string | undefined;
141490
142292
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -142029,8 +142831,46 @@ type Routes = {
142029
142831
  } | undefined;
142030
142832
  /** Metadata for a KeyNest device. */
142031
142833
  keynest_metadata?: {
142834
+ /** Key ID for a KeyNest device. */
142835
+ key_id?: string | undefined;
142032
142836
  /** Device name for a KeyNest device. */
142033
142837
  device_name?: string | undefined;
142838
+ /** Property ID for a KeyNest device. */
142839
+ property_id?: (string | null) | undefined;
142840
+ /** Property postcode for a KeyNest device. */
142841
+ property_postcode?: (string | null) | undefined;
142842
+ /** Key notes for a KeyNest device. */
142843
+ key_notes?: (string | null) | undefined;
142844
+ /** Subscription plan for a KeyNest device. */
142845
+ subscription_plan?: string | undefined;
142846
+ /** Status type for a KeyNest device. */
142847
+ status_type?: string | undefined;
142848
+ /** Current or last store ID for a KeyNest device. */
142849
+ current_or_last_store_id?: number | undefined;
142850
+ /** Last movement timestamp for a KeyNest device. */
142851
+ last_movement?: string | undefined;
142852
+ /** Address for a KeyNest device. */
142853
+ address?: (string | null) | undefined;
142854
+ /** Current status for a KeyNest device. */
142855
+ current_status?: (string | null) | undefined;
142856
+ /** Current user name for a KeyNest device. */
142857
+ current_user_name?: (string | null) | undefined;
142858
+ /** Current user email for a KeyNest device. */
142859
+ current_user_email?: (string | null) | undefined;
142860
+ /** Current user phone number for a KeyNest device. */
142861
+ current_user_phone_number?: (string | null) | undefined;
142862
+ /** Current user company for a KeyNest device. */
142863
+ current_user_company?: (string | null) | undefined;
142864
+ /** Handover method for a KeyNest device. */
142865
+ handover_method?: (string | null) | undefined;
142866
+ /** KeyNest app user for a KeyNest device. */
142867
+ keynest_app_user?: (string | null) | undefined;
142868
+ /** Default office ID for a KeyNest device. */
142869
+ default_office_id?: number | undefined;
142870
+ /** Fob ID for a KeyNest device. */
142871
+ fob_id?: number | undefined;
142872
+ /** Whether the KeyNest device has a photo. */
142873
+ has_photo?: boolean | undefined;
142034
142874
  } | undefined;
142035
142875
  }) & ({
142036
142876
  /** */
@@ -142657,7 +143497,7 @@ type Routes = {
142657
143497
  /** ID of the device. */
142658
143498
  device_id: string;
142659
143499
  /** Type of the device. */
142660
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
143500
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
142661
143501
  /** Optional nickname to describe the device, settable through Seam. */
142662
143502
  nickname?: string | undefined;
142663
143503
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -143202,8 +144042,46 @@ type Routes = {
143202
144042
  } | undefined;
143203
144043
  /** Metadata for a KeyNest device. */
143204
144044
  keynest_metadata?: {
144045
+ /** Key ID for a KeyNest device. */
144046
+ key_id?: string | undefined;
143205
144047
  /** Device name for a KeyNest device. */
143206
144048
  device_name?: string | undefined;
144049
+ /** Property ID for a KeyNest device. */
144050
+ property_id?: (string | null) | undefined;
144051
+ /** Property postcode for a KeyNest device. */
144052
+ property_postcode?: (string | null) | undefined;
144053
+ /** Key notes for a KeyNest device. */
144054
+ key_notes?: (string | null) | undefined;
144055
+ /** Subscription plan for a KeyNest device. */
144056
+ subscription_plan?: string | undefined;
144057
+ /** Status type for a KeyNest device. */
144058
+ status_type?: string | undefined;
144059
+ /** Current or last store ID for a KeyNest device. */
144060
+ current_or_last_store_id?: number | undefined;
144061
+ /** Last movement timestamp for a KeyNest device. */
144062
+ last_movement?: string | undefined;
144063
+ /** Address for a KeyNest device. */
144064
+ address?: (string | null) | undefined;
144065
+ /** Current status for a KeyNest device. */
144066
+ current_status?: (string | null) | undefined;
144067
+ /** Current user name for a KeyNest device. */
144068
+ current_user_name?: (string | null) | undefined;
144069
+ /** Current user email for a KeyNest device. */
144070
+ current_user_email?: (string | null) | undefined;
144071
+ /** Current user phone number for a KeyNest device. */
144072
+ current_user_phone_number?: (string | null) | undefined;
144073
+ /** Current user company for a KeyNest device. */
144074
+ current_user_company?: (string | null) | undefined;
144075
+ /** Handover method for a KeyNest device. */
144076
+ handover_method?: (string | null) | undefined;
144077
+ /** KeyNest app user for a KeyNest device. */
144078
+ keynest_app_user?: (string | null) | undefined;
144079
+ /** Default office ID for a KeyNest device. */
144080
+ default_office_id?: number | undefined;
144081
+ /** Fob ID for a KeyNest device. */
144082
+ fob_id?: number | undefined;
144083
+ /** Whether the KeyNest device has a photo. */
144084
+ has_photo?: boolean | undefined;
143207
144085
  } | undefined;
143208
144086
  }) & ({
143209
144087
  /** */
@@ -143879,7 +144757,7 @@ type Routes = {
143879
144757
  /** ID of the device. */
143880
144758
  device_id: string;
143881
144759
  /** Type of the device. */
143882
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
144760
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
143883
144761
  /** Optional nickname to describe the device, settable through Seam. */
143884
144762
  nickname?: string | undefined;
143885
144763
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -144424,8 +145302,46 @@ type Routes = {
144424
145302
  } | undefined;
144425
145303
  /** Metadata for a KeyNest device. */
144426
145304
  keynest_metadata?: {
145305
+ /** Key ID for a KeyNest device. */
145306
+ key_id?: string | undefined;
144427
145307
  /** Device name for a KeyNest device. */
144428
145308
  device_name?: string | undefined;
145309
+ /** Property ID for a KeyNest device. */
145310
+ property_id?: (string | null) | undefined;
145311
+ /** Property postcode for a KeyNest device. */
145312
+ property_postcode?: (string | null) | undefined;
145313
+ /** Key notes for a KeyNest device. */
145314
+ key_notes?: (string | null) | undefined;
145315
+ /** Subscription plan for a KeyNest device. */
145316
+ subscription_plan?: string | undefined;
145317
+ /** Status type for a KeyNest device. */
145318
+ status_type?: string | undefined;
145319
+ /** Current or last store ID for a KeyNest device. */
145320
+ current_or_last_store_id?: number | undefined;
145321
+ /** Last movement timestamp for a KeyNest device. */
145322
+ last_movement?: string | undefined;
145323
+ /** Address for a KeyNest device. */
145324
+ address?: (string | null) | undefined;
145325
+ /** Current status for a KeyNest device. */
145326
+ current_status?: (string | null) | undefined;
145327
+ /** Current user name for a KeyNest device. */
145328
+ current_user_name?: (string | null) | undefined;
145329
+ /** Current user email for a KeyNest device. */
145330
+ current_user_email?: (string | null) | undefined;
145331
+ /** Current user phone number for a KeyNest device. */
145332
+ current_user_phone_number?: (string | null) | undefined;
145333
+ /** Current user company for a KeyNest device. */
145334
+ current_user_company?: (string | null) | undefined;
145335
+ /** Handover method for a KeyNest device. */
145336
+ handover_method?: (string | null) | undefined;
145337
+ /** KeyNest app user for a KeyNest device. */
145338
+ keynest_app_user?: (string | null) | undefined;
145339
+ /** Default office ID for a KeyNest device. */
145340
+ default_office_id?: number | undefined;
145341
+ /** Fob ID for a KeyNest device. */
145342
+ fob_id?: number | undefined;
145343
+ /** Whether the KeyNest device has a photo. */
145344
+ has_photo?: boolean | undefined;
144429
145345
  } | undefined;
144430
145346
  }) & ({
144431
145347
  /** */
@@ -145051,7 +145967,7 @@ type Routes = {
145051
145967
  /** ID of the device. */
145052
145968
  device_id: string;
145053
145969
  /** Type of the device. */
145054
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
145970
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
145055
145971
  /** Optional nickname to describe the device, settable through Seam. */
145056
145972
  nickname?: string | undefined;
145057
145973
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -145596,8 +146512,46 @@ type Routes = {
145596
146512
  } | undefined;
145597
146513
  /** Metadata for a KeyNest device. */
145598
146514
  keynest_metadata?: {
146515
+ /** Key ID for a KeyNest device. */
146516
+ key_id?: string | undefined;
145599
146517
  /** Device name for a KeyNest device. */
145600
146518
  device_name?: string | undefined;
146519
+ /** Property ID for a KeyNest device. */
146520
+ property_id?: (string | null) | undefined;
146521
+ /** Property postcode for a KeyNest device. */
146522
+ property_postcode?: (string | null) | undefined;
146523
+ /** Key notes for a KeyNest device. */
146524
+ key_notes?: (string | null) | undefined;
146525
+ /** Subscription plan for a KeyNest device. */
146526
+ subscription_plan?: string | undefined;
146527
+ /** Status type for a KeyNest device. */
146528
+ status_type?: string | undefined;
146529
+ /** Current or last store ID for a KeyNest device. */
146530
+ current_or_last_store_id?: number | undefined;
146531
+ /** Last movement timestamp for a KeyNest device. */
146532
+ last_movement?: string | undefined;
146533
+ /** Address for a KeyNest device. */
146534
+ address?: (string | null) | undefined;
146535
+ /** Current status for a KeyNest device. */
146536
+ current_status?: (string | null) | undefined;
146537
+ /** Current user name for a KeyNest device. */
146538
+ current_user_name?: (string | null) | undefined;
146539
+ /** Current user email for a KeyNest device. */
146540
+ current_user_email?: (string | null) | undefined;
146541
+ /** Current user phone number for a KeyNest device. */
146542
+ current_user_phone_number?: (string | null) | undefined;
146543
+ /** Current user company for a KeyNest device. */
146544
+ current_user_company?: (string | null) | undefined;
146545
+ /** Handover method for a KeyNest device. */
146546
+ handover_method?: (string | null) | undefined;
146547
+ /** KeyNest app user for a KeyNest device. */
146548
+ keynest_app_user?: (string | null) | undefined;
146549
+ /** Default office ID for a KeyNest device. */
146550
+ default_office_id?: number | undefined;
146551
+ /** Fob ID for a KeyNest device. */
146552
+ fob_id?: number | undefined;
146553
+ /** Whether the KeyNest device has a photo. */
146554
+ has_photo?: boolean | undefined;
145601
146555
  } | undefined;
145602
146556
  }) & ({
145603
146557
  /** */
@@ -151311,7 +152265,7 @@ type Routes = {
151311
152265
  /** ID of the device. */
151312
152266
  device_id: string;
151313
152267
  /** Type of the device. */
151314
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
152268
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
151315
152269
  /** Optional nickname to describe the device, settable through Seam. */
151316
152270
  nickname?: string | undefined;
151317
152271
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -151856,8 +152810,46 @@ type Routes = {
151856
152810
  } | undefined;
151857
152811
  /** Metadata for a KeyNest device. */
151858
152812
  keynest_metadata?: {
152813
+ /** Key ID for a KeyNest device. */
152814
+ key_id?: string | undefined;
151859
152815
  /** Device name for a KeyNest device. */
151860
152816
  device_name?: string | undefined;
152817
+ /** Property ID for a KeyNest device. */
152818
+ property_id?: (string | null) | undefined;
152819
+ /** Property postcode for a KeyNest device. */
152820
+ property_postcode?: (string | null) | undefined;
152821
+ /** Key notes for a KeyNest device. */
152822
+ key_notes?: (string | null) | undefined;
152823
+ /** Subscription plan for a KeyNest device. */
152824
+ subscription_plan?: string | undefined;
152825
+ /** Status type for a KeyNest device. */
152826
+ status_type?: string | undefined;
152827
+ /** Current or last store ID for a KeyNest device. */
152828
+ current_or_last_store_id?: number | undefined;
152829
+ /** Last movement timestamp for a KeyNest device. */
152830
+ last_movement?: string | undefined;
152831
+ /** Address for a KeyNest device. */
152832
+ address?: (string | null) | undefined;
152833
+ /** Current status for a KeyNest device. */
152834
+ current_status?: (string | null) | undefined;
152835
+ /** Current user name for a KeyNest device. */
152836
+ current_user_name?: (string | null) | undefined;
152837
+ /** Current user email for a KeyNest device. */
152838
+ current_user_email?: (string | null) | undefined;
152839
+ /** Current user phone number for a KeyNest device. */
152840
+ current_user_phone_number?: (string | null) | undefined;
152841
+ /** Current user company for a KeyNest device. */
152842
+ current_user_company?: (string | null) | undefined;
152843
+ /** Handover method for a KeyNest device. */
152844
+ handover_method?: (string | null) | undefined;
152845
+ /** KeyNest app user for a KeyNest device. */
152846
+ keynest_app_user?: (string | null) | undefined;
152847
+ /** Default office ID for a KeyNest device. */
152848
+ default_office_id?: number | undefined;
152849
+ /** Fob ID for a KeyNest device. */
152850
+ fob_id?: number | undefined;
152851
+ /** Whether the KeyNest device has a photo. */
152852
+ has_photo?: boolean | undefined;
151861
152853
  } | undefined;
151862
152854
  }) & ({
151863
152855
  /** */
@@ -152483,7 +153475,7 @@ type Routes = {
152483
153475
  /** ID of the device. */
152484
153476
  device_id: string;
152485
153477
  /** Type of the device. */
152486
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
153478
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
152487
153479
  /** Optional nickname to describe the device, settable through Seam. */
152488
153480
  nickname?: string | undefined;
152489
153481
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -153028,8 +154020,46 @@ type Routes = {
153028
154020
  } | undefined;
153029
154021
  /** Metadata for a KeyNest device. */
153030
154022
  keynest_metadata?: {
154023
+ /** Key ID for a KeyNest device. */
154024
+ key_id?: string | undefined;
153031
154025
  /** Device name for a KeyNest device. */
153032
154026
  device_name?: string | undefined;
154027
+ /** Property ID for a KeyNest device. */
154028
+ property_id?: (string | null) | undefined;
154029
+ /** Property postcode for a KeyNest device. */
154030
+ property_postcode?: (string | null) | undefined;
154031
+ /** Key notes for a KeyNest device. */
154032
+ key_notes?: (string | null) | undefined;
154033
+ /** Subscription plan for a KeyNest device. */
154034
+ subscription_plan?: string | undefined;
154035
+ /** Status type for a KeyNest device. */
154036
+ status_type?: string | undefined;
154037
+ /** Current or last store ID for a KeyNest device. */
154038
+ current_or_last_store_id?: number | undefined;
154039
+ /** Last movement timestamp for a KeyNest device. */
154040
+ last_movement?: string | undefined;
154041
+ /** Address for a KeyNest device. */
154042
+ address?: (string | null) | undefined;
154043
+ /** Current status for a KeyNest device. */
154044
+ current_status?: (string | null) | undefined;
154045
+ /** Current user name for a KeyNest device. */
154046
+ current_user_name?: (string | null) | undefined;
154047
+ /** Current user email for a KeyNest device. */
154048
+ current_user_email?: (string | null) | undefined;
154049
+ /** Current user phone number for a KeyNest device. */
154050
+ current_user_phone_number?: (string | null) | undefined;
154051
+ /** Current user company for a KeyNest device. */
154052
+ current_user_company?: (string | null) | undefined;
154053
+ /** Handover method for a KeyNest device. */
154054
+ handover_method?: (string | null) | undefined;
154055
+ /** KeyNest app user for a KeyNest device. */
154056
+ keynest_app_user?: (string | null) | undefined;
154057
+ /** Default office ID for a KeyNest device. */
154058
+ default_office_id?: number | undefined;
154059
+ /** Fob ID for a KeyNest device. */
154060
+ fob_id?: number | undefined;
154061
+ /** Whether the KeyNest device has a photo. */
154062
+ has_photo?: boolean | undefined;
153033
154063
  } | undefined;
153034
154064
  }) & ({
153035
154065
  /** */
@@ -158843,6 +159873,8 @@ type Routes = {
158843
159873
  event_type: 'access_method.issued';
158844
159874
  /** The actual PIN code for code access methods (only present when mode is 'code'). */
158845
159875
  code?: string | undefined;
159876
+ /** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
159877
+ is_backup_code?: boolean | undefined;
158846
159878
  } | {
158847
159879
  /** ID of the event. */
158848
159880
  event_id: string;
@@ -158909,6 +159941,8 @@ type Routes = {
158909
159941
  event_type: 'access_method.reissued';
158910
159942
  /** The actual PIN code for code access methods (only present when mode is 'code'). */
158911
159943
  code?: string | undefined;
159944
+ /** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
159945
+ is_backup_code?: boolean | undefined;
158912
159946
  } | {
158913
159947
  /** ID of the event. */
158914
159948
  event_id: string;
@@ -161045,7 +162079,7 @@ type Routes = {
161045
162079
  /** ID of the device. */
161046
162080
  device_id: string;
161047
162081
  /** Type of the device. */
161048
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
162082
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
161049
162083
  /** Optional nickname to describe the device, settable through Seam. */
161050
162084
  nickname?: string | undefined;
161051
162085
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -161590,8 +162624,46 @@ type Routes = {
161590
162624
  } | undefined;
161591
162625
  /** Metadata for a KeyNest device. */
161592
162626
  keynest_metadata?: {
162627
+ /** Key ID for a KeyNest device. */
162628
+ key_id?: string | undefined;
161593
162629
  /** Device name for a KeyNest device. */
161594
162630
  device_name?: string | undefined;
162631
+ /** Property ID for a KeyNest device. */
162632
+ property_id?: (string | null) | undefined;
162633
+ /** Property postcode for a KeyNest device. */
162634
+ property_postcode?: (string | null) | undefined;
162635
+ /** Key notes for a KeyNest device. */
162636
+ key_notes?: (string | null) | undefined;
162637
+ /** Subscription plan for a KeyNest device. */
162638
+ subscription_plan?: string | undefined;
162639
+ /** Status type for a KeyNest device. */
162640
+ status_type?: string | undefined;
162641
+ /** Current or last store ID for a KeyNest device. */
162642
+ current_or_last_store_id?: number | undefined;
162643
+ /** Last movement timestamp for a KeyNest device. */
162644
+ last_movement?: string | undefined;
162645
+ /** Address for a KeyNest device. */
162646
+ address?: (string | null) | undefined;
162647
+ /** Current status for a KeyNest device. */
162648
+ current_status?: (string | null) | undefined;
162649
+ /** Current user name for a KeyNest device. */
162650
+ current_user_name?: (string | null) | undefined;
162651
+ /** Current user email for a KeyNest device. */
162652
+ current_user_email?: (string | null) | undefined;
162653
+ /** Current user phone number for a KeyNest device. */
162654
+ current_user_phone_number?: (string | null) | undefined;
162655
+ /** Current user company for a KeyNest device. */
162656
+ current_user_company?: (string | null) | undefined;
162657
+ /** Handover method for a KeyNest device. */
162658
+ handover_method?: (string | null) | undefined;
162659
+ /** KeyNest app user for a KeyNest device. */
162660
+ keynest_app_user?: (string | null) | undefined;
162661
+ /** Default office ID for a KeyNest device. */
162662
+ default_office_id?: number | undefined;
162663
+ /** Fob ID for a KeyNest device. */
162664
+ fob_id?: number | undefined;
162665
+ /** Whether the KeyNest device has a photo. */
162666
+ has_photo?: boolean | undefined;
161595
162667
  } | undefined;
161596
162668
  }) & ({
161597
162669
  /** */
@@ -166611,7 +167683,7 @@ type Routes = {
166611
167683
  /** ID of the device. */
166612
167684
  device_id: string;
166613
167685
  /** Type of the device. */
166614
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
167686
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
166615
167687
  /** Optional nickname to describe the device, settable through Seam. */
166616
167688
  nickname?: string | undefined;
166617
167689
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -167156,8 +168228,46 @@ type Routes = {
167156
168228
  } | undefined;
167157
168229
  /** Metadata for a KeyNest device. */
167158
168230
  keynest_metadata?: {
168231
+ /** Key ID for a KeyNest device. */
168232
+ key_id?: string | undefined;
167159
168233
  /** Device name for a KeyNest device. */
167160
168234
  device_name?: string | undefined;
168235
+ /** Property ID for a KeyNest device. */
168236
+ property_id?: (string | null) | undefined;
168237
+ /** Property postcode for a KeyNest device. */
168238
+ property_postcode?: (string | null) | undefined;
168239
+ /** Key notes for a KeyNest device. */
168240
+ key_notes?: (string | null) | undefined;
168241
+ /** Subscription plan for a KeyNest device. */
168242
+ subscription_plan?: string | undefined;
168243
+ /** Status type for a KeyNest device. */
168244
+ status_type?: string | undefined;
168245
+ /** Current or last store ID for a KeyNest device. */
168246
+ current_or_last_store_id?: number | undefined;
168247
+ /** Last movement timestamp for a KeyNest device. */
168248
+ last_movement?: string | undefined;
168249
+ /** Address for a KeyNest device. */
168250
+ address?: (string | null) | undefined;
168251
+ /** Current status for a KeyNest device. */
168252
+ current_status?: (string | null) | undefined;
168253
+ /** Current user name for a KeyNest device. */
168254
+ current_user_name?: (string | null) | undefined;
168255
+ /** Current user email for a KeyNest device. */
168256
+ current_user_email?: (string | null) | undefined;
168257
+ /** Current user phone number for a KeyNest device. */
168258
+ current_user_phone_number?: (string | null) | undefined;
168259
+ /** Current user company for a KeyNest device. */
168260
+ current_user_company?: (string | null) | undefined;
168261
+ /** Handover method for a KeyNest device. */
168262
+ handover_method?: (string | null) | undefined;
168263
+ /** KeyNest app user for a KeyNest device. */
168264
+ keynest_app_user?: (string | null) | undefined;
168265
+ /** Default office ID for a KeyNest device. */
168266
+ default_office_id?: number | undefined;
168267
+ /** Fob ID for a KeyNest device. */
168268
+ fob_id?: number | undefined;
168269
+ /** Whether the KeyNest device has a photo. */
168270
+ has_photo?: boolean | undefined;
167161
168271
  } | undefined;
167162
168272
  }) & ({
167163
168273
  /** */
@@ -170365,7 +171475,7 @@ type Routes = {
170365
171475
  /** ID of the device. */
170366
171476
  device_id: string;
170367
171477
  /** Type of the device. */
170368
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
171478
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
170369
171479
  /** Optional nickname to describe the device, settable through Seam. */
170370
171480
  nickname?: string | undefined;
170371
171481
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -170910,8 +172020,46 @@ type Routes = {
170910
172020
  } | undefined;
170911
172021
  /** Metadata for a KeyNest device. */
170912
172022
  keynest_metadata?: {
172023
+ /** Key ID for a KeyNest device. */
172024
+ key_id?: string | undefined;
170913
172025
  /** Device name for a KeyNest device. */
170914
172026
  device_name?: string | undefined;
172027
+ /** Property ID for a KeyNest device. */
172028
+ property_id?: (string | null) | undefined;
172029
+ /** Property postcode for a KeyNest device. */
172030
+ property_postcode?: (string | null) | undefined;
172031
+ /** Key notes for a KeyNest device. */
172032
+ key_notes?: (string | null) | undefined;
172033
+ /** Subscription plan for a KeyNest device. */
172034
+ subscription_plan?: string | undefined;
172035
+ /** Status type for a KeyNest device. */
172036
+ status_type?: string | undefined;
172037
+ /** Current or last store ID for a KeyNest device. */
172038
+ current_or_last_store_id?: number | undefined;
172039
+ /** Last movement timestamp for a KeyNest device. */
172040
+ last_movement?: string | undefined;
172041
+ /** Address for a KeyNest device. */
172042
+ address?: (string | null) | undefined;
172043
+ /** Current status for a KeyNest device. */
172044
+ current_status?: (string | null) | undefined;
172045
+ /** Current user name for a KeyNest device. */
172046
+ current_user_name?: (string | null) | undefined;
172047
+ /** Current user email for a KeyNest device. */
172048
+ current_user_email?: (string | null) | undefined;
172049
+ /** Current user phone number for a KeyNest device. */
172050
+ current_user_phone_number?: (string | null) | undefined;
172051
+ /** Current user company for a KeyNest device. */
172052
+ current_user_company?: (string | null) | undefined;
172053
+ /** Handover method for a KeyNest device. */
172054
+ handover_method?: (string | null) | undefined;
172055
+ /** KeyNest app user for a KeyNest device. */
172056
+ keynest_app_user?: (string | null) | undefined;
172057
+ /** Default office ID for a KeyNest device. */
172058
+ default_office_id?: number | undefined;
172059
+ /** Fob ID for a KeyNest device. */
172060
+ fob_id?: number | undefined;
172061
+ /** Whether the KeyNest device has a photo. */
172062
+ has_photo?: boolean | undefined;
170915
172063
  } | undefined;
170916
172064
  }) & ({
170917
172065
  /** */
@@ -171537,7 +172685,7 @@ type Routes = {
171537
172685
  /** ID of the device. */
171538
172686
  device_id: string;
171539
172687
  /** Type of the device. */
171540
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
172688
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
171541
172689
  /** Optional nickname to describe the device, settable through Seam. */
171542
172690
  nickname?: string | undefined;
171543
172691
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -172082,8 +173230,46 @@ type Routes = {
172082
173230
  } | undefined;
172083
173231
  /** Metadata for a KeyNest device. */
172084
173232
  keynest_metadata?: {
173233
+ /** Key ID for a KeyNest device. */
173234
+ key_id?: string | undefined;
172085
173235
  /** Device name for a KeyNest device. */
172086
173236
  device_name?: string | undefined;
173237
+ /** Property ID for a KeyNest device. */
173238
+ property_id?: (string | null) | undefined;
173239
+ /** Property postcode for a KeyNest device. */
173240
+ property_postcode?: (string | null) | undefined;
173241
+ /** Key notes for a KeyNest device. */
173242
+ key_notes?: (string | null) | undefined;
173243
+ /** Subscription plan for a KeyNest device. */
173244
+ subscription_plan?: string | undefined;
173245
+ /** Status type for a KeyNest device. */
173246
+ status_type?: string | undefined;
173247
+ /** Current or last store ID for a KeyNest device. */
173248
+ current_or_last_store_id?: number | undefined;
173249
+ /** Last movement timestamp for a KeyNest device. */
173250
+ last_movement?: string | undefined;
173251
+ /** Address for a KeyNest device. */
173252
+ address?: (string | null) | undefined;
173253
+ /** Current status for a KeyNest device. */
173254
+ current_status?: (string | null) | undefined;
173255
+ /** Current user name for a KeyNest device. */
173256
+ current_user_name?: (string | null) | undefined;
173257
+ /** Current user email for a KeyNest device. */
173258
+ current_user_email?: (string | null) | undefined;
173259
+ /** Current user phone number for a KeyNest device. */
173260
+ current_user_phone_number?: (string | null) | undefined;
173261
+ /** Current user company for a KeyNest device. */
173262
+ current_user_company?: (string | null) | undefined;
173263
+ /** Handover method for a KeyNest device. */
173264
+ handover_method?: (string | null) | undefined;
173265
+ /** KeyNest app user for a KeyNest device. */
173266
+ keynest_app_user?: (string | null) | undefined;
173267
+ /** Default office ID for a KeyNest device. */
173268
+ default_office_id?: number | undefined;
173269
+ /** Fob ID for a KeyNest device. */
173270
+ fob_id?: number | undefined;
173271
+ /** Whether the KeyNest device has a photo. */
173272
+ has_photo?: boolean | undefined;
172087
173273
  } | undefined;
172088
173274
  }) & ({
172089
173275
  /** */
@@ -178650,7 +179836,7 @@ type Routes = {
178650
179836
  /** ID of the device. */
178651
179837
  device_id: string;
178652
179838
  /** Type of the device. */
178653
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
179839
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
178654
179840
  /** Optional nickname to describe the device, settable through Seam. */
178655
179841
  nickname?: string | undefined;
178656
179842
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -179195,8 +180381,46 @@ type Routes = {
179195
180381
  } | undefined;
179196
180382
  /** Metadata for a KeyNest device. */
179197
180383
  keynest_metadata?: {
180384
+ /** Key ID for a KeyNest device. */
180385
+ key_id?: string | undefined;
179198
180386
  /** Device name for a KeyNest device. */
179199
180387
  device_name?: string | undefined;
180388
+ /** Property ID for a KeyNest device. */
180389
+ property_id?: (string | null) | undefined;
180390
+ /** Property postcode for a KeyNest device. */
180391
+ property_postcode?: (string | null) | undefined;
180392
+ /** Key notes for a KeyNest device. */
180393
+ key_notes?: (string | null) | undefined;
180394
+ /** Subscription plan for a KeyNest device. */
180395
+ subscription_plan?: string | undefined;
180396
+ /** Status type for a KeyNest device. */
180397
+ status_type?: string | undefined;
180398
+ /** Current or last store ID for a KeyNest device. */
180399
+ current_or_last_store_id?: number | undefined;
180400
+ /** Last movement timestamp for a KeyNest device. */
180401
+ last_movement?: string | undefined;
180402
+ /** Address for a KeyNest device. */
180403
+ address?: (string | null) | undefined;
180404
+ /** Current status for a KeyNest device. */
180405
+ current_status?: (string | null) | undefined;
180406
+ /** Current user name for a KeyNest device. */
180407
+ current_user_name?: (string | null) | undefined;
180408
+ /** Current user email for a KeyNest device. */
180409
+ current_user_email?: (string | null) | undefined;
180410
+ /** Current user phone number for a KeyNest device. */
180411
+ current_user_phone_number?: (string | null) | undefined;
180412
+ /** Current user company for a KeyNest device. */
180413
+ current_user_company?: (string | null) | undefined;
180414
+ /** Handover method for a KeyNest device. */
180415
+ handover_method?: (string | null) | undefined;
180416
+ /** KeyNest app user for a KeyNest device. */
180417
+ keynest_app_user?: (string | null) | undefined;
180418
+ /** Default office ID for a KeyNest device. */
180419
+ default_office_id?: number | undefined;
180420
+ /** Fob ID for a KeyNest device. */
180421
+ fob_id?: number | undefined;
180422
+ /** Whether the KeyNest device has a photo. */
180423
+ has_photo?: boolean | undefined;
179200
180424
  } | undefined;
179201
180425
  }) & ({
179202
180426
  /** */
@@ -179824,7 +181048,7 @@ type Routes = {
179824
181048
  /** ID of the device. */
179825
181049
  device_id: string;
179826
181050
  /** Type of the device. */
179827
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
181051
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
179828
181052
  /** Optional nickname to describe the device, settable through Seam. */
179829
181053
  nickname?: string | undefined;
179830
181054
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -180369,8 +181593,46 @@ type Routes = {
180369
181593
  } | undefined;
180370
181594
  /** Metadata for a KeyNest device. */
180371
181595
  keynest_metadata?: {
181596
+ /** Key ID for a KeyNest device. */
181597
+ key_id?: string | undefined;
180372
181598
  /** Device name for a KeyNest device. */
180373
181599
  device_name?: string | undefined;
181600
+ /** Property ID for a KeyNest device. */
181601
+ property_id?: (string | null) | undefined;
181602
+ /** Property postcode for a KeyNest device. */
181603
+ property_postcode?: (string | null) | undefined;
181604
+ /** Key notes for a KeyNest device. */
181605
+ key_notes?: (string | null) | undefined;
181606
+ /** Subscription plan for a KeyNest device. */
181607
+ subscription_plan?: string | undefined;
181608
+ /** Status type for a KeyNest device. */
181609
+ status_type?: string | undefined;
181610
+ /** Current or last store ID for a KeyNest device. */
181611
+ current_or_last_store_id?: number | undefined;
181612
+ /** Last movement timestamp for a KeyNest device. */
181613
+ last_movement?: string | undefined;
181614
+ /** Address for a KeyNest device. */
181615
+ address?: (string | null) | undefined;
181616
+ /** Current status for a KeyNest device. */
181617
+ current_status?: (string | null) | undefined;
181618
+ /** Current user name for a KeyNest device. */
181619
+ current_user_name?: (string | null) | undefined;
181620
+ /** Current user email for a KeyNest device. */
181621
+ current_user_email?: (string | null) | undefined;
181622
+ /** Current user phone number for a KeyNest device. */
181623
+ current_user_phone_number?: (string | null) | undefined;
181624
+ /** Current user company for a KeyNest device. */
181625
+ current_user_company?: (string | null) | undefined;
181626
+ /** Handover method for a KeyNest device. */
181627
+ handover_method?: (string | null) | undefined;
181628
+ /** KeyNest app user for a KeyNest device. */
181629
+ keynest_app_user?: (string | null) | undefined;
181630
+ /** Default office ID for a KeyNest device. */
181631
+ default_office_id?: number | undefined;
181632
+ /** Fob ID for a KeyNest device. */
181633
+ fob_id?: number | undefined;
181634
+ /** Whether the KeyNest device has a photo. */
181635
+ has_photo?: boolean | undefined;
180374
181636
  } | undefined;
180375
181637
  }) & ({
180376
181638
  /** */
@@ -181760,7 +183022,7 @@ type Routes = {
181760
183022
  /** ID of the device. */
181761
183023
  device_id: string;
181762
183024
  /** Type of the device. */
181763
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
183025
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
181764
183026
  /** Optional nickname to describe the device, settable through Seam. */
181765
183027
  nickname?: string | undefined;
181766
183028
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -182305,8 +183567,46 @@ type Routes = {
182305
183567
  } | undefined;
182306
183568
  /** Metadata for a KeyNest device. */
182307
183569
  keynest_metadata?: {
183570
+ /** Key ID for a KeyNest device. */
183571
+ key_id?: string | undefined;
182308
183572
  /** Device name for a KeyNest device. */
182309
183573
  device_name?: string | undefined;
183574
+ /** Property ID for a KeyNest device. */
183575
+ property_id?: (string | null) | undefined;
183576
+ /** Property postcode for a KeyNest device. */
183577
+ property_postcode?: (string | null) | undefined;
183578
+ /** Key notes for a KeyNest device. */
183579
+ key_notes?: (string | null) | undefined;
183580
+ /** Subscription plan for a KeyNest device. */
183581
+ subscription_plan?: string | undefined;
183582
+ /** Status type for a KeyNest device. */
183583
+ status_type?: string | undefined;
183584
+ /** Current or last store ID for a KeyNest device. */
183585
+ current_or_last_store_id?: number | undefined;
183586
+ /** Last movement timestamp for a KeyNest device. */
183587
+ last_movement?: string | undefined;
183588
+ /** Address for a KeyNest device. */
183589
+ address?: (string | null) | undefined;
183590
+ /** Current status for a KeyNest device. */
183591
+ current_status?: (string | null) | undefined;
183592
+ /** Current user name for a KeyNest device. */
183593
+ current_user_name?: (string | null) | undefined;
183594
+ /** Current user email for a KeyNest device. */
183595
+ current_user_email?: (string | null) | undefined;
183596
+ /** Current user phone number for a KeyNest device. */
183597
+ current_user_phone_number?: (string | null) | undefined;
183598
+ /** Current user company for a KeyNest device. */
183599
+ current_user_company?: (string | null) | undefined;
183600
+ /** Handover method for a KeyNest device. */
183601
+ handover_method?: (string | null) | undefined;
183602
+ /** KeyNest app user for a KeyNest device. */
183603
+ keynest_app_user?: (string | null) | undefined;
183604
+ /** Default office ID for a KeyNest device. */
183605
+ default_office_id?: number | undefined;
183606
+ /** Fob ID for a KeyNest device. */
183607
+ fob_id?: number | undefined;
183608
+ /** Whether the KeyNest device has a photo. */
183609
+ has_photo?: boolean | undefined;
182310
183610
  } | undefined;
182311
183611
  }) & ({
182312
183612
  /** */
@@ -185207,7 +186507,7 @@ type Routes = {
185207
186507
  /** ID of the device. */
185208
186508
  device_id: string;
185209
186509
  /** Type of the device. */
185210
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
186510
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
185211
186511
  /** Unique identifier for the account associated with the device. */
185212
186512
  connected_account_id: string;
185213
186513
  /** Location information for the device. */
@@ -186210,6 +187510,8 @@ type Routes = {
186210
187510
  event_type: 'access_method.issued';
186211
187511
  /** The actual PIN code for code access methods (only present when mode is 'code'). */
186212
187512
  code?: string | undefined;
187513
+ /** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
187514
+ is_backup_code?: boolean | undefined;
186213
187515
  } | {
186214
187516
  /** ID of the event. */
186215
187517
  event_id: string;
@@ -186276,6 +187578,8 @@ type Routes = {
186276
187578
  event_type: 'access_method.reissued';
186277
187579
  /** The actual PIN code for code access methods (only present when mode is 'code'). */
186278
187580
  code?: string | undefined;
187581
+ /** Indicates whether the code is a backup code (only present when mode is 'code' and a backup code was used). */
187582
+ is_backup_code?: boolean | undefined;
186279
187583
  } | {
186280
187584
  /** ID of the event. */
186281
187585
  event_id: string;