@seamapi/types 1.768.1 → 1.770.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 (35) hide show
  1. package/dist/connect.cjs +159 -35
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +834 -90
  4. package/dist/index.cjs +159 -35
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/access-grants/access-grant.d.ts +10 -10
  7. package/lib/seam/connect/models/access-grants/access-method.d.ts +6 -6
  8. package/lib/seam/connect/models/access-grants/access-method.js +2 -2
  9. package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
  10. package/lib/seam/connect/models/access-grants/requested-access-method.d.ts +3 -3
  11. package/lib/seam/connect/models/access-grants/requested-access-method.js +2 -2
  12. package/lib/seam/connect/models/access-grants/requested-access-method.js.map +1 -1
  13. package/lib/seam/connect/models/acs/acs-entrance.d.ts +6 -6
  14. package/lib/seam/connect/models/acs/acs-entrance.js +4 -4
  15. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  16. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +60 -0
  17. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +30 -0
  18. package/lib/seam/connect/models/action-attempts/encode-credential.js +22 -0
  19. package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
  20. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +30 -0
  21. package/lib/seam/connect/models/action-attempts/scan-credential.js +22 -0
  22. package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
  23. package/lib/seam/connect/models/batch.d.ts +101 -17
  24. package/lib/seam/connect/models/phones/phone-session.d.ts +16 -16
  25. package/lib/seam/connect/openapi.js +110 -26
  26. package/lib/seam/connect/openapi.js.map +1 -1
  27. package/lib/seam/connect/route-types.d.ts +662 -62
  28. package/package.json +1 -1
  29. package/src/lib/seam/connect/models/access-grants/access-method.ts +2 -2
  30. package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +2 -2
  31. package/src/lib/seam/connect/models/acs/acs-entrance.ts +4 -4
  32. package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +34 -0
  33. package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +34 -0
  34. package/src/lib/seam/connect/openapi.ts +122 -26
  35. package/src/lib/seam/connect/route-types.ts +782 -62
@@ -3611,7 +3611,7 @@ declare const access_grant: z.ZodObject<{
3611
3611
  space_ids: z.ZodArray<z.ZodString, "many">;
3612
3612
  requested_access_methods: z.ZodArray<z.ZodObject<{
3613
3613
  display_name: z.ZodString;
3614
- mode: z.ZodEnum<["code", "card", "mobile_key"]>;
3614
+ mode: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
3615
3615
  code: z.ZodOptional<z.ZodString>;
3616
3616
  instant_key_max_use_count: z.ZodOptional<z.ZodNumber>;
3617
3617
  created_at: z.ZodString;
@@ -3619,14 +3619,14 @@ declare const access_grant: z.ZodObject<{
3619
3619
  }, "strip", z.ZodTypeAny, {
3620
3620
  display_name: string;
3621
3621
  created_at: string;
3622
- mode: "code" | "card" | "mobile_key";
3622
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
3623
3623
  created_access_method_ids: string[];
3624
3624
  code?: string | undefined;
3625
3625
  instant_key_max_use_count?: number | undefined;
3626
3626
  }, {
3627
3627
  display_name: string;
3628
3628
  created_at: string;
3629
- mode: "code" | "card" | "mobile_key";
3629
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
3630
3630
  created_access_method_ids: string[];
3631
3631
  code?: string | undefined;
3632
3632
  instant_key_max_use_count?: number | undefined;
@@ -3895,7 +3895,7 @@ declare const access_grant: z.ZodObject<{
3895
3895
  requested_access_methods: {
3896
3896
  display_name: string;
3897
3897
  created_at: string;
3898
- mode: "code" | "card" | "mobile_key";
3898
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
3899
3899
  created_access_method_ids: string[];
3900
3900
  code?: string | undefined;
3901
3901
  instant_key_max_use_count?: number | undefined;
@@ -3980,7 +3980,7 @@ declare const access_grant: z.ZodObject<{
3980
3980
  requested_access_methods: {
3981
3981
  display_name: string;
3982
3982
  created_at: string;
3983
- mode: "code" | "card" | "mobile_key";
3983
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
3984
3984
  created_access_method_ids: string[];
3985
3985
  code?: string | undefined;
3986
3986
  instant_key_max_use_count?: number | undefined;
@@ -4022,7 +4022,7 @@ declare const access_method: z.ZodObject<{
4022
4022
  workspace_id: z.ZodString;
4023
4023
  access_method_id: z.ZodString;
4024
4024
  display_name: z.ZodString;
4025
- mode: z.ZodEnum<["code", "card", "mobile_key"]>;
4025
+ mode: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
4026
4026
  created_at: z.ZodString;
4027
4027
  issued_at: z.ZodNullable<z.ZodString>;
4028
4028
  is_issued: z.ZodBoolean;
@@ -4221,7 +4221,7 @@ declare const access_method: z.ZodObject<{
4221
4221
  warning_code: "pulled_backup_access_code";
4222
4222
  original_access_method_id?: string | undefined;
4223
4223
  })[];
4224
- mode: "code" | "card" | "mobile_key";
4224
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
4225
4225
  pending_mutations: ({
4226
4226
  message: string;
4227
4227
  created_at: string;
@@ -4282,7 +4282,7 @@ declare const access_method: z.ZodObject<{
4282
4282
  warning_code: "pulled_backup_access_code";
4283
4283
  original_access_method_id?: string | undefined;
4284
4284
  })[];
4285
- mode: "code" | "card" | "mobile_key";
4285
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
4286
4286
  pending_mutations: ({
4287
4287
  message: string;
4288
4288
  created_at: string;
@@ -6076,8 +6076,8 @@ declare const acs_entrance: z.ZodObject<{
6076
6076
  can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
6077
6077
  can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
6078
6078
  can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
6079
- can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
6080
6079
  can_unlock_with_cloud_key: z.ZodOptional<z.ZodBoolean>;
6080
+ can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
6081
6081
  }, "strip", z.ZodTypeAny, {
6082
6082
  display_name: string;
6083
6083
  created_at: string;
@@ -6122,8 +6122,8 @@ declare const acs_entrance: z.ZodObject<{
6122
6122
  can_unlock_with_code?: boolean | undefined;
6123
6123
  can_unlock_with_mobile_key?: boolean | undefined;
6124
6124
  can_unlock_with_card?: boolean | undefined;
6125
- can_belong_to_reservation?: boolean | undefined;
6126
6125
  can_unlock_with_cloud_key?: boolean | undefined;
6126
+ can_belong_to_reservation?: boolean | undefined;
6127
6127
  latch_metadata?: {
6128
6128
  door_name: string;
6129
6129
  is_connected: boolean;
@@ -6193,8 +6193,8 @@ declare const acs_entrance: z.ZodObject<{
6193
6193
  can_unlock_with_code?: boolean | undefined;
6194
6194
  can_unlock_with_mobile_key?: boolean | undefined;
6195
6195
  can_unlock_with_card?: boolean | undefined;
6196
- can_belong_to_reservation?: boolean | undefined;
6197
6196
  can_unlock_with_cloud_key?: boolean | undefined;
6197
+ can_belong_to_reservation?: boolean | undefined;
6198
6198
  latch_metadata?: {
6199
6199
  door_name: string;
6200
6200
  is_connected: boolean;
@@ -9570,6 +9570,24 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
9570
9570
  }, {
9571
9571
  message: string;
9572
9572
  type: "encoder_not_online";
9573
+ }>, z.ZodObject<{
9574
+ type: z.ZodLiteral<"encoder_timeout_error">;
9575
+ message: z.ZodString;
9576
+ }, "strip", z.ZodTypeAny, {
9577
+ message: string;
9578
+ type: "encoder_timeout_error";
9579
+ }, {
9580
+ message: string;
9581
+ type: "encoder_timeout_error";
9582
+ }>, z.ZodObject<{
9583
+ type: z.ZodLiteral<"bridge_disconnected">;
9584
+ message: z.ZodString;
9585
+ }, "strip", z.ZodTypeAny, {
9586
+ message: string;
9587
+ type: "bridge_disconnected";
9588
+ }, {
9589
+ message: string;
9590
+ type: "bridge_disconnected";
9573
9591
  }>]>;
9574
9592
  }, "strip", z.ZodTypeAny, {
9575
9593
  status: "error";
@@ -9586,6 +9604,12 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
9586
9604
  } | {
9587
9605
  message: string;
9588
9606
  type: "encoder_not_online";
9607
+ } | {
9608
+ message: string;
9609
+ type: "encoder_timeout_error";
9610
+ } | {
9611
+ message: string;
9612
+ type: "bridge_disconnected";
9589
9613
  };
9590
9614
  result: null;
9591
9615
  action_type: "SCAN_CREDENTIAL";
@@ -9604,6 +9628,12 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
9604
9628
  } | {
9605
9629
  message: string;
9606
9630
  type: "encoder_not_online";
9631
+ } | {
9632
+ message: string;
9633
+ type: "encoder_timeout_error";
9634
+ } | {
9635
+ message: string;
9636
+ type: "bridge_disconnected";
9607
9637
  };
9608
9638
  result: null;
9609
9639
  action_type: "SCAN_CREDENTIAL";
@@ -10614,6 +10644,24 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10614
10644
  }, {
10615
10645
  message: string;
10616
10646
  type: "encoder_not_online";
10647
+ }>, z.ZodObject<{
10648
+ type: z.ZodLiteral<"encoder_timeout_error">;
10649
+ message: z.ZodString;
10650
+ }, "strip", z.ZodTypeAny, {
10651
+ message: string;
10652
+ type: "encoder_timeout_error";
10653
+ }, {
10654
+ message: string;
10655
+ type: "encoder_timeout_error";
10656
+ }>, z.ZodObject<{
10657
+ type: z.ZodLiteral<"bridge_disconnected">;
10658
+ message: z.ZodString;
10659
+ }, "strip", z.ZodTypeAny, {
10660
+ message: string;
10661
+ type: "bridge_disconnected";
10662
+ }, {
10663
+ message: string;
10664
+ type: "bridge_disconnected";
10617
10665
  }>]>;
10618
10666
  }, "strip", z.ZodTypeAny, {
10619
10667
  status: "error";
@@ -10636,6 +10684,12 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10636
10684
  } | {
10637
10685
  message: string;
10638
10686
  type: "encoder_not_online";
10687
+ } | {
10688
+ message: string;
10689
+ type: "encoder_timeout_error";
10690
+ } | {
10691
+ message: string;
10692
+ type: "bridge_disconnected";
10639
10693
  };
10640
10694
  result: null;
10641
10695
  action_type: "ENCODE_CREDENTIAL";
@@ -10660,6 +10714,12 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
10660
10714
  } | {
10661
10715
  message: string;
10662
10716
  type: "encoder_not_online";
10717
+ } | {
10718
+ message: string;
10719
+ type: "encoder_timeout_error";
10720
+ } | {
10721
+ message: string;
10722
+ type: "bridge_disconnected";
10663
10723
  };
10664
10724
  result: null;
10665
10725
  action_type: "ENCODE_CREDENTIAL";
@@ -17164,8 +17224,8 @@ declare const batch: z.ZodObject<{
17164
17224
  can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
17165
17225
  can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
17166
17226
  can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
17167
- can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
17168
17227
  can_unlock_with_cloud_key: z.ZodOptional<z.ZodBoolean>;
17228
+ can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
17169
17229
  }, "strip", z.ZodTypeAny, {
17170
17230
  display_name: string;
17171
17231
  created_at: string;
@@ -17210,8 +17270,8 @@ declare const batch: z.ZodObject<{
17210
17270
  can_unlock_with_code?: boolean | undefined;
17211
17271
  can_unlock_with_mobile_key?: boolean | undefined;
17212
17272
  can_unlock_with_card?: boolean | undefined;
17213
- can_belong_to_reservation?: boolean | undefined;
17214
17273
  can_unlock_with_cloud_key?: boolean | undefined;
17274
+ can_belong_to_reservation?: boolean | undefined;
17215
17275
  latch_metadata?: {
17216
17276
  door_name: string;
17217
17277
  is_connected: boolean;
@@ -17281,8 +17341,8 @@ declare const batch: z.ZodObject<{
17281
17341
  can_unlock_with_code?: boolean | undefined;
17282
17342
  can_unlock_with_mobile_key?: boolean | undefined;
17283
17343
  can_unlock_with_card?: boolean | undefined;
17284
- can_belong_to_reservation?: boolean | undefined;
17285
17344
  can_unlock_with_cloud_key?: boolean | undefined;
17345
+ can_belong_to_reservation?: boolean | undefined;
17286
17346
  latch_metadata?: {
17287
17347
  door_name: string;
17288
17348
  is_connected: boolean;
@@ -21071,6 +21131,24 @@ declare const batch: z.ZodObject<{
21071
21131
  }, {
21072
21132
  message: string;
21073
21133
  type: "encoder_not_online";
21134
+ }>, z.ZodObject<{
21135
+ type: z.ZodLiteral<"encoder_timeout_error">;
21136
+ message: z.ZodString;
21137
+ }, "strip", z.ZodTypeAny, {
21138
+ message: string;
21139
+ type: "encoder_timeout_error";
21140
+ }, {
21141
+ message: string;
21142
+ type: "encoder_timeout_error";
21143
+ }>, z.ZodObject<{
21144
+ type: z.ZodLiteral<"bridge_disconnected">;
21145
+ message: z.ZodString;
21146
+ }, "strip", z.ZodTypeAny, {
21147
+ message: string;
21148
+ type: "bridge_disconnected";
21149
+ }, {
21150
+ message: string;
21151
+ type: "bridge_disconnected";
21074
21152
  }>]>;
21075
21153
  }, "strip", z.ZodTypeAny, {
21076
21154
  status: "error";
@@ -21087,6 +21165,12 @@ declare const batch: z.ZodObject<{
21087
21165
  } | {
21088
21166
  message: string;
21089
21167
  type: "encoder_not_online";
21168
+ } | {
21169
+ message: string;
21170
+ type: "encoder_timeout_error";
21171
+ } | {
21172
+ message: string;
21173
+ type: "bridge_disconnected";
21090
21174
  };
21091
21175
  result: null;
21092
21176
  action_type: "SCAN_CREDENTIAL";
@@ -21105,6 +21189,12 @@ declare const batch: z.ZodObject<{
21105
21189
  } | {
21106
21190
  message: string;
21107
21191
  type: "encoder_not_online";
21192
+ } | {
21193
+ message: string;
21194
+ type: "encoder_timeout_error";
21195
+ } | {
21196
+ message: string;
21197
+ type: "bridge_disconnected";
21108
21198
  };
21109
21199
  result: null;
21110
21200
  action_type: "SCAN_CREDENTIAL";
@@ -22115,6 +22205,24 @@ declare const batch: z.ZodObject<{
22115
22205
  }, {
22116
22206
  message: string;
22117
22207
  type: "encoder_not_online";
22208
+ }>, z.ZodObject<{
22209
+ type: z.ZodLiteral<"encoder_timeout_error">;
22210
+ message: z.ZodString;
22211
+ }, "strip", z.ZodTypeAny, {
22212
+ message: string;
22213
+ type: "encoder_timeout_error";
22214
+ }, {
22215
+ message: string;
22216
+ type: "encoder_timeout_error";
22217
+ }>, z.ZodObject<{
22218
+ type: z.ZodLiteral<"bridge_disconnected">;
22219
+ message: z.ZodString;
22220
+ }, "strip", z.ZodTypeAny, {
22221
+ message: string;
22222
+ type: "bridge_disconnected";
22223
+ }, {
22224
+ message: string;
22225
+ type: "bridge_disconnected";
22118
22226
  }>]>;
22119
22227
  }, "strip", z.ZodTypeAny, {
22120
22228
  status: "error";
@@ -22137,6 +22245,12 @@ declare const batch: z.ZodObject<{
22137
22245
  } | {
22138
22246
  message: string;
22139
22247
  type: "encoder_not_online";
22248
+ } | {
22249
+ message: string;
22250
+ type: "encoder_timeout_error";
22251
+ } | {
22252
+ message: string;
22253
+ type: "bridge_disconnected";
22140
22254
  };
22141
22255
  result: null;
22142
22256
  action_type: "ENCODE_CREDENTIAL";
@@ -22161,6 +22275,12 @@ declare const batch: z.ZodObject<{
22161
22275
  } | {
22162
22276
  message: string;
22163
22277
  type: "encoder_not_online";
22278
+ } | {
22279
+ message: string;
22280
+ type: "encoder_timeout_error";
22281
+ } | {
22282
+ message: string;
22283
+ type: "bridge_disconnected";
22164
22284
  };
22165
22285
  result: null;
22166
22286
  action_type: "ENCODE_CREDENTIAL";
@@ -28325,7 +28445,7 @@ declare const batch: z.ZodObject<{
28325
28445
  workspace_id: z.ZodString;
28326
28446
  access_method_id: z.ZodString;
28327
28447
  display_name: z.ZodString;
28328
- mode: z.ZodEnum<["code", "card", "mobile_key"]>;
28448
+ mode: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
28329
28449
  created_at: z.ZodString;
28330
28450
  issued_at: z.ZodNullable<z.ZodString>;
28331
28451
  is_issued: z.ZodBoolean;
@@ -28524,7 +28644,7 @@ declare const batch: z.ZodObject<{
28524
28644
  warning_code: "pulled_backup_access_code";
28525
28645
  original_access_method_id?: string | undefined;
28526
28646
  })[];
28527
- mode: "code" | "card" | "mobile_key";
28647
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
28528
28648
  pending_mutations: ({
28529
28649
  message: string;
28530
28650
  created_at: string;
@@ -28585,7 +28705,7 @@ declare const batch: z.ZodObject<{
28585
28705
  warning_code: "pulled_backup_access_code";
28586
28706
  original_access_method_id?: string | undefined;
28587
28707
  })[];
28588
- mode: "code" | "card" | "mobile_key";
28708
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
28589
28709
  pending_mutations: ({
28590
28710
  message: string;
28591
28711
  created_at: string;
@@ -28639,7 +28759,7 @@ declare const batch: z.ZodObject<{
28639
28759
  space_ids: z.ZodArray<z.ZodString, "many">;
28640
28760
  requested_access_methods: z.ZodArray<z.ZodObject<{
28641
28761
  display_name: z.ZodString;
28642
- mode: z.ZodEnum<["code", "card", "mobile_key"]>;
28762
+ mode: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
28643
28763
  code: z.ZodOptional<z.ZodString>;
28644
28764
  instant_key_max_use_count: z.ZodOptional<z.ZodNumber>;
28645
28765
  created_at: z.ZodString;
@@ -28647,14 +28767,14 @@ declare const batch: z.ZodObject<{
28647
28767
  }, "strip", z.ZodTypeAny, {
28648
28768
  display_name: string;
28649
28769
  created_at: string;
28650
- mode: "code" | "card" | "mobile_key";
28770
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
28651
28771
  created_access_method_ids: string[];
28652
28772
  code?: string | undefined;
28653
28773
  instant_key_max_use_count?: number | undefined;
28654
28774
  }, {
28655
28775
  display_name: string;
28656
28776
  created_at: string;
28657
- mode: "code" | "card" | "mobile_key";
28777
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
28658
28778
  created_access_method_ids: string[];
28659
28779
  code?: string | undefined;
28660
28780
  instant_key_max_use_count?: number | undefined;
@@ -28923,7 +29043,7 @@ declare const batch: z.ZodObject<{
28923
29043
  requested_access_methods: {
28924
29044
  display_name: string;
28925
29045
  created_at: string;
28926
- mode: "code" | "card" | "mobile_key";
29046
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
28927
29047
  created_access_method_ids: string[];
28928
29048
  code?: string | undefined;
28929
29049
  instant_key_max_use_count?: number | undefined;
@@ -29008,7 +29128,7 @@ declare const batch: z.ZodObject<{
29008
29128
  requested_access_methods: {
29009
29129
  display_name: string;
29010
29130
  created_at: string;
29011
- mode: "code" | "card" | "mobile_key";
29131
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
29012
29132
  created_access_method_ids: string[];
29013
29133
  code?: string | undefined;
29014
29134
  instant_key_max_use_count?: number | undefined;
@@ -38096,8 +38216,8 @@ declare const batch: z.ZodObject<{
38096
38216
  can_unlock_with_code?: boolean | undefined;
38097
38217
  can_unlock_with_mobile_key?: boolean | undefined;
38098
38218
  can_unlock_with_card?: boolean | undefined;
38099
- can_belong_to_reservation?: boolean | undefined;
38100
38219
  can_unlock_with_cloud_key?: boolean | undefined;
38220
+ can_belong_to_reservation?: boolean | undefined;
38101
38221
  latch_metadata?: {
38102
38222
  door_name: string;
38103
38223
  is_connected: boolean;
@@ -38949,6 +39069,12 @@ declare const batch: z.ZodObject<{
38949
39069
  } | {
38950
39070
  message: string;
38951
39071
  type: "encoder_not_online";
39072
+ } | {
39073
+ message: string;
39074
+ type: "encoder_timeout_error";
39075
+ } | {
39076
+ message: string;
39077
+ type: "bridge_disconnected";
38952
39078
  };
38953
39079
  result: null;
38954
39080
  action_type: "ENCODE_CREDENTIAL";
@@ -39215,6 +39341,12 @@ declare const batch: z.ZodObject<{
39215
39341
  } | {
39216
39342
  message: string;
39217
39343
  type: "encoder_not_online";
39344
+ } | {
39345
+ message: string;
39346
+ type: "encoder_timeout_error";
39347
+ } | {
39348
+ message: string;
39349
+ type: "bridge_disconnected";
39218
39350
  };
39219
39351
  result: null;
39220
39352
  action_type: "SCAN_CREDENTIAL";
@@ -39864,7 +39996,7 @@ declare const batch: z.ZodObject<{
39864
39996
  warning_code: "pulled_backup_access_code";
39865
39997
  original_access_method_id?: string | undefined;
39866
39998
  })[];
39867
- mode: "code" | "card" | "mobile_key";
39999
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
39868
40000
  pending_mutations: ({
39869
40001
  message: string;
39870
40002
  created_at: string;
@@ -39958,7 +40090,7 @@ declare const batch: z.ZodObject<{
39958
40090
  requested_access_methods: {
39959
40091
  display_name: string;
39960
40092
  created_at: string;
39961
- mode: "code" | "card" | "mobile_key";
40093
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
39962
40094
  created_access_method_ids: string[];
39963
40095
  code?: string | undefined;
39964
40096
  instant_key_max_use_count?: number | undefined;
@@ -42942,8 +43074,8 @@ declare const batch: z.ZodObject<{
42942
43074
  can_unlock_with_code?: boolean | undefined;
42943
43075
  can_unlock_with_mobile_key?: boolean | undefined;
42944
43076
  can_unlock_with_card?: boolean | undefined;
42945
- can_belong_to_reservation?: boolean | undefined;
42946
43077
  can_unlock_with_cloud_key?: boolean | undefined;
43078
+ can_belong_to_reservation?: boolean | undefined;
42947
43079
  latch_metadata?: {
42948
43080
  door_name: string;
42949
43081
  is_connected: boolean;
@@ -43795,6 +43927,12 @@ declare const batch: z.ZodObject<{
43795
43927
  } | {
43796
43928
  message: string;
43797
43929
  type: "encoder_not_online";
43930
+ } | {
43931
+ message: string;
43932
+ type: "encoder_timeout_error";
43933
+ } | {
43934
+ message: string;
43935
+ type: "bridge_disconnected";
43798
43936
  };
43799
43937
  result: null;
43800
43938
  action_type: "ENCODE_CREDENTIAL";
@@ -44061,6 +44199,12 @@ declare const batch: z.ZodObject<{
44061
44199
  } | {
44062
44200
  message: string;
44063
44201
  type: "encoder_not_online";
44202
+ } | {
44203
+ message: string;
44204
+ type: "encoder_timeout_error";
44205
+ } | {
44206
+ message: string;
44207
+ type: "bridge_disconnected";
44064
44208
  };
44065
44209
  result: null;
44066
44210
  action_type: "SCAN_CREDENTIAL";
@@ -44710,7 +44854,7 @@ declare const batch: z.ZodObject<{
44710
44854
  warning_code: "pulled_backup_access_code";
44711
44855
  original_access_method_id?: string | undefined;
44712
44856
  })[];
44713
- mode: "code" | "card" | "mobile_key";
44857
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
44714
44858
  pending_mutations: ({
44715
44859
  message: string;
44716
44860
  created_at: string;
@@ -44804,7 +44948,7 @@ declare const batch: z.ZodObject<{
44804
44948
  requested_access_methods: {
44805
44949
  display_name: string;
44806
44950
  created_at: string;
44807
- mode: "code" | "card" | "mobile_key";
44951
+ mode: "code" | "card" | "mobile_key" | "cloud_key";
44808
44952
  created_access_method_ids: string[];
44809
44953
  code?: string | undefined;
44810
44954
  instant_key_max_use_count?: number | undefined;
@@ -134191,6 +134335,16 @@ type Routes = {
134191
134335
  type: 'encoder_not_online';
134192
134336
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
134193
134337
  message: string;
134338
+ } | {
134339
+ /** Error type to indicate that communication with the encoder timed out. */
134340
+ type: 'encoder_timeout_error';
134341
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
134342
+ message: string;
134343
+ } | {
134344
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
134345
+ type: 'bridge_disconnected';
134346
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
134347
+ message: string;
134194
134348
  };
134195
134349
  } | {
134196
134350
  /** ID of the action attempt. */
@@ -134510,6 +134664,16 @@ type Routes = {
134510
134664
  type: 'encoder_not_online';
134511
134665
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
134512
134666
  message: string;
134667
+ } | {
134668
+ /** Error type to indicate that communication with the encoder timed out. */
134669
+ type: 'encoder_timeout_error';
134670
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
134671
+ message: string;
134672
+ } | {
134673
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
134674
+ type: 'bridge_disconnected';
134675
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
134676
+ message: string;
134513
134677
  };
134514
134678
  } | {
134515
134679
  /** ID of the action attempt. */
@@ -136569,6 +136733,16 @@ type Routes = {
136569
136733
  type: 'encoder_not_online';
136570
136734
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
136571
136735
  message: string;
136736
+ } | {
136737
+ /** Error type to indicate that communication with the encoder timed out. */
136738
+ type: 'encoder_timeout_error';
136739
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
136740
+ message: string;
136741
+ } | {
136742
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
136743
+ type: 'bridge_disconnected';
136744
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
136745
+ message: string;
136572
136746
  };
136573
136747
  } | {
136574
136748
  /** ID of the action attempt. */
@@ -136888,6 +137062,16 @@ type Routes = {
136888
137062
  type: 'encoder_not_online';
136889
137063
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
136890
137064
  message: string;
137065
+ } | {
137066
+ /** Error type to indicate that communication with the encoder timed out. */
137067
+ type: 'encoder_timeout_error';
137068
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
137069
+ message: string;
137070
+ } | {
137071
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
137072
+ type: 'bridge_disconnected';
137073
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
137074
+ message: string;
136891
137075
  };
136892
137076
  } | {
136893
137077
  /** ID of the action attempt. */
@@ -140642,6 +140826,16 @@ type Routes = {
140642
140826
  type: 'encoder_not_online';
140643
140827
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
140644
140828
  message: string;
140829
+ } | {
140830
+ /** Error type to indicate that communication with the encoder timed out. */
140831
+ type: 'encoder_timeout_error';
140832
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
140833
+ message: string;
140834
+ } | {
140835
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
140836
+ type: 'bridge_disconnected';
140837
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
140838
+ message: string;
140645
140839
  };
140646
140840
  } | {
140647
140841
  /** ID of the action attempt. */
@@ -140961,6 +141155,16 @@ type Routes = {
140961
141155
  type: 'encoder_not_online';
140962
141156
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
140963
141157
  message: string;
141158
+ } | {
141159
+ /** Error type to indicate that communication with the encoder timed out. */
141160
+ type: 'encoder_timeout_error';
141161
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
141162
+ message: string;
141163
+ } | {
141164
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
141165
+ type: 'bridge_disconnected';
141166
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
141167
+ message: string;
140964
141168
  };
140965
141169
  } | {
140966
141170
  /** ID of the action attempt. */
@@ -143056,6 +143260,16 @@ type Routes = {
143056
143260
  type: 'encoder_not_online';
143057
143261
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
143058
143262
  message: string;
143263
+ } | {
143264
+ /** Error type to indicate that communication with the encoder timed out. */
143265
+ type: 'encoder_timeout_error';
143266
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
143267
+ message: string;
143268
+ } | {
143269
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
143270
+ type: 'bridge_disconnected';
143271
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
143272
+ message: string;
143059
143273
  };
143060
143274
  } | {
143061
143275
  /** ID of the action attempt. */
@@ -143375,6 +143589,16 @@ type Routes = {
143375
143589
  type: 'encoder_not_online';
143376
143590
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
143377
143591
  message: string;
143592
+ } | {
143593
+ /** Error type to indicate that communication with the encoder timed out. */
143594
+ type: 'encoder_timeout_error';
143595
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
143596
+ message: string;
143597
+ } | {
143598
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
143599
+ type: 'bridge_disconnected';
143600
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
143601
+ message: string;
143378
143602
  };
143379
143603
  } | {
143380
143604
  /** ID of the action attempt. */
@@ -143991,8 +144215,8 @@ type Routes = {
143991
144215
  /** Set of IDs of the [devices](https://docs.seam.co/latest/api/devices/list) to which access is being granted. */
143992
144216
  device_ids?: string[];
143993
144217
  requested_access_methods: {
143994
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
143995
- mode: 'code' | 'card' | 'mobile_key';
144218
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
144219
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
143996
144220
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
143997
144221
  code?: string | undefined;
143998
144222
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -144028,8 +144252,8 @@ type Routes = {
144028
144252
  requested_access_methods: {
144029
144253
  /** Display name of the access method. */
144030
144254
  display_name: string;
144031
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
144032
- mode: 'code' | 'card' | 'mobile_key';
144255
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
144256
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
144033
144257
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
144034
144258
  code?: string | undefined;
144035
144259
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -144216,8 +144440,8 @@ type Routes = {
144216
144440
  requested_access_methods: {
144217
144441
  /** Display name of the access method. */
144218
144442
  display_name: string;
144219
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
144220
- mode: 'code' | 'card' | 'mobile_key';
144443
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
144444
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
144221
144445
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
144222
144446
  code?: string | undefined;
144223
144447
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -145840,10 +146064,10 @@ type Routes = {
145840
146064
  can_unlock_with_card?: boolean | undefined;
145841
146065
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
145842
146066
  can_unlock_with_code?: boolean | undefined;
146067
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
146068
+ can_unlock_with_cloud_key?: boolean | undefined;
145843
146069
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
145844
146070
  can_belong_to_reservation?: boolean | undefined;
145845
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
145846
- can_unlock_with_cloud_key?: boolean | undefined;
145847
146071
  }[] | undefined;
145848
146072
  connected_accounts?: {
145849
146073
  /** ID of the connected account. */
@@ -146310,8 +146534,8 @@ type Routes = {
146310
146534
  access_method_id: string;
146311
146535
  /** Display name of the access method. */
146312
146536
  display_name: string;
146313
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
146314
- mode: 'code' | 'card' | 'mobile_key';
146537
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
146538
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
146315
146539
  /** Date and time at which the access method was created. */
146316
146540
  created_at: string;
146317
146541
  /** Date and time at which the access method was issued. */
@@ -146469,8 +146693,8 @@ type Routes = {
146469
146693
  requested_access_methods: {
146470
146694
  /** Display name of the access method. */
146471
146695
  display_name: string;
146472
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
146473
- mode: 'code' | 'card' | 'mobile_key';
146696
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
146697
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
146474
146698
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
146475
146699
  code?: string | undefined;
146476
146700
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -146628,8 +146852,8 @@ type Routes = {
146628
146852
  access_grant_id: string;
146629
146853
  /** Array of requested access methods to add to the access grant. */
146630
146854
  requested_access_methods: {
146631
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
146632
- mode: 'code' | 'card' | 'mobile_key';
146855
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
146856
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
146633
146857
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
146634
146858
  code?: string | undefined;
146635
146859
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -146659,8 +146883,8 @@ type Routes = {
146659
146883
  requested_access_methods: {
146660
146884
  /** Display name of the access method. */
146661
146885
  display_name: string;
146662
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
146663
- mode: 'code' | 'card' | 'mobile_key';
146886
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
146887
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
146664
146888
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
146665
146889
  code?: string | undefined;
146666
146890
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -146827,8 +147051,8 @@ type Routes = {
146827
147051
  requested_access_methods: {
146828
147052
  /** Display name of the access method. */
146829
147053
  display_name: string;
146830
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
146831
- mode: 'code' | 'card' | 'mobile_key';
147054
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
147055
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
146832
147056
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
146833
147057
  code?: string | undefined;
146834
147058
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -147000,8 +147224,8 @@ type Routes = {
147000
147224
  requested_access_methods: {
147001
147225
  /** Display name of the access method. */
147002
147226
  display_name: string;
147003
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
147004
- mode: 'code' | 'card' | 'mobile_key';
147227
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
147228
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
147005
147229
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
147006
147230
  code?: string | undefined;
147007
147231
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -147651,6 +147875,16 @@ type Routes = {
147651
147875
  type: 'encoder_not_online';
147652
147876
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
147653
147877
  message: string;
147878
+ } | {
147879
+ /** Error type to indicate that communication with the encoder timed out. */
147880
+ type: 'encoder_timeout_error';
147881
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
147882
+ message: string;
147883
+ } | {
147884
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
147885
+ type: 'bridge_disconnected';
147886
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
147887
+ message: string;
147654
147888
  };
147655
147889
  } | {
147656
147890
  /** ID of the action attempt. */
@@ -147970,6 +148204,16 @@ type Routes = {
147970
148204
  type: 'encoder_not_online';
147971
148205
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
147972
148206
  message: string;
148207
+ } | {
148208
+ /** Error type to indicate that communication with the encoder timed out. */
148209
+ type: 'encoder_timeout_error';
148210
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
148211
+ message: string;
148212
+ } | {
148213
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
148214
+ type: 'bridge_disconnected';
148215
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
148216
+ message: string;
147973
148217
  };
147974
148218
  } | {
147975
148219
  /** ID of the action attempt. */
@@ -148531,8 +148775,8 @@ type Routes = {
148531
148775
  access_method_id: string;
148532
148776
  /** Display name of the access method. */
148533
148777
  display_name: string;
148534
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
148535
- mode: 'code' | 'card' | 'mobile_key';
148778
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
148779
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
148536
148780
  /** Date and time at which the access method was created. */
148537
148781
  created_at: string;
148538
148782
  /** Date and time at which the access method was issued. */
@@ -150119,10 +150363,10 @@ type Routes = {
150119
150363
  can_unlock_with_card?: boolean | undefined;
150120
150364
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
150121
150365
  can_unlock_with_code?: boolean | undefined;
150366
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
150367
+ can_unlock_with_cloud_key?: boolean | undefined;
150122
150368
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
150123
150369
  can_belong_to_reservation?: boolean | undefined;
150124
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
150125
- can_unlock_with_cloud_key?: boolean | undefined;
150126
150370
  }[] | undefined;
150127
150371
  access_grants?: {
150128
150372
  /** ID of the Seam workspace associated with the Access Grant. */
@@ -150144,8 +150388,8 @@ type Routes = {
150144
150388
  requested_access_methods: {
150145
150389
  /** Display name of the access method. */
150146
150390
  display_name: string;
150147
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
150148
- mode: 'code' | 'card' | 'mobile_key';
150391
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
150392
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
150149
150393
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
150150
150394
  code?: string | undefined;
150151
150395
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -150288,8 +150532,8 @@ type Routes = {
150288
150532
  access_method_id: string;
150289
150533
  /** Display name of the access method. */
150290
150534
  display_name: string;
150291
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
150292
- mode: 'code' | 'card' | 'mobile_key';
150535
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
150536
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
150293
150537
  /** Date and time at which the access method was created. */
150294
150538
  created_at: string;
150295
150539
  /** Date and time at which the access method was issued. */
@@ -150606,8 +150850,8 @@ type Routes = {
150606
150850
  access_method_id: string;
150607
150851
  /** Display name of the access method. */
150608
150852
  display_name: string;
150609
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
150610
- mode: 'code' | 'card' | 'mobile_key';
150853
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
150854
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
150611
150855
  /** Date and time at which the access method was created. */
150612
150856
  created_at: string;
150613
150857
  /** Date and time at which the access method was issued. */
@@ -150731,8 +150975,8 @@ type Routes = {
150731
150975
  access_method_id: string;
150732
150976
  /** Display name of the access method. */
150733
150977
  display_name: string;
150734
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
150735
- mode: 'code' | 'card' | 'mobile_key';
150978
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
150979
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
150736
150980
  /** Date and time at which the access method was created. */
150737
150981
  created_at: string;
150738
150982
  /** Date and time at which the access method was issued. */
@@ -150855,8 +151099,8 @@ type Routes = {
150855
151099
  access_method_id: string;
150856
151100
  /** Display name of the access method. */
150857
151101
  display_name: string;
150858
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
150859
- mode: 'code' | 'card' | 'mobile_key';
151102
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
151103
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
150860
151104
  /** Date and time at which the access method was created. */
150861
151105
  created_at: string;
150862
151106
  /** Date and time at which the access method was issued. */
@@ -151471,10 +151715,10 @@ type Routes = {
151471
151715
  can_unlock_with_card?: boolean | undefined;
151472
151716
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
151473
151717
  can_unlock_with_code?: boolean | undefined;
151718
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
151719
+ can_unlock_with_cloud_key?: boolean | undefined;
151474
151720
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
151475
151721
  can_belong_to_reservation?: boolean | undefined;
151476
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
151477
- can_unlock_with_cloud_key?: boolean | undefined;
151478
151722
  }[];
151479
151723
  };
151480
151724
  maxDuration: undefined;
@@ -153131,10 +153375,10 @@ type Routes = {
153131
153375
  can_unlock_with_card?: boolean | undefined;
153132
153376
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
153133
153377
  can_unlock_with_code?: boolean | undefined;
153378
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
153379
+ can_unlock_with_cloud_key?: boolean | undefined;
153134
153380
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
153135
153381
  can_belong_to_reservation?: boolean | undefined;
153136
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
153137
- can_unlock_with_cloud_key?: boolean | undefined;
153138
153382
  }[];
153139
153383
  };
153140
153384
  maxDuration: undefined;
@@ -154205,6 +154449,16 @@ type Routes = {
154205
154449
  type: 'encoder_not_online';
154206
154450
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
154207
154451
  message: string;
154452
+ } | {
154453
+ /** Error type to indicate that communication with the encoder timed out. */
154454
+ type: 'encoder_timeout_error';
154455
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
154456
+ message: string;
154457
+ } | {
154458
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
154459
+ type: 'bridge_disconnected';
154460
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
154461
+ message: string;
154208
154462
  };
154209
154463
  } | {
154210
154464
  /** ID of the action attempt. */
@@ -154524,6 +154778,16 @@ type Routes = {
154524
154778
  type: 'encoder_not_online';
154525
154779
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
154526
154780
  message: string;
154781
+ } | {
154782
+ /** Error type to indicate that communication with the encoder timed out. */
154783
+ type: 'encoder_timeout_error';
154784
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
154785
+ message: string;
154786
+ } | {
154787
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
154788
+ type: 'bridge_disconnected';
154789
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
154790
+ message: string;
154527
154791
  };
154528
154792
  } | {
154529
154793
  /** ID of the action attempt. */
@@ -155623,6 +155887,16 @@ type Routes = {
155623
155887
  type: 'encoder_not_online';
155624
155888
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
155625
155889
  message: string;
155890
+ } | {
155891
+ /** Error type to indicate that communication with the encoder timed out. */
155892
+ type: 'encoder_timeout_error';
155893
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
155894
+ message: string;
155895
+ } | {
155896
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
155897
+ type: 'bridge_disconnected';
155898
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
155899
+ message: string;
155626
155900
  };
155627
155901
  } | {
155628
155902
  /** ID of the action attempt. */
@@ -155942,6 +156216,16 @@ type Routes = {
155942
156216
  type: 'encoder_not_online';
155943
156217
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
155944
156218
  message: string;
156219
+ } | {
156220
+ /** Error type to indicate that communication with the encoder timed out. */
156221
+ type: 'encoder_timeout_error';
156222
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
156223
+ message: string;
156224
+ } | {
156225
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
156226
+ type: 'bridge_disconnected';
156227
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
156228
+ message: string;
155945
156229
  };
155946
156230
  } | {
155947
156231
  /** ID of the action attempt. */
@@ -156707,10 +156991,10 @@ type Routes = {
156707
156991
  can_unlock_with_card?: boolean | undefined;
156708
156992
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
156709
156993
  can_unlock_with_code?: boolean | undefined;
156994
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
156995
+ can_unlock_with_cloud_key?: boolean | undefined;
156710
156996
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
156711
156997
  can_belong_to_reservation?: boolean | undefined;
156712
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
156713
- can_unlock_with_cloud_key?: boolean | undefined;
156714
156998
  };
156715
156999
  };
156716
157000
  maxDuration: undefined;
@@ -156888,10 +157172,10 @@ type Routes = {
156888
157172
  can_unlock_with_card?: boolean | undefined;
156889
157173
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
156890
157174
  can_unlock_with_code?: boolean | undefined;
157175
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
157176
+ can_unlock_with_cloud_key?: boolean | undefined;
156891
157177
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
156892
157178
  can_belong_to_reservation?: boolean | undefined;
156893
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
156894
- can_unlock_with_cloud_key?: boolean | undefined;
156895
157179
  }[];
156896
157180
  /** Information about the current page of results. */
156897
157181
  pagination: {
@@ -157503,6 +157787,16 @@ type Routes = {
157503
157787
  type: 'encoder_not_online';
157504
157788
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
157505
157789
  message: string;
157790
+ } | {
157791
+ /** Error type to indicate that communication with the encoder timed out. */
157792
+ type: 'encoder_timeout_error';
157793
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
157794
+ message: string;
157795
+ } | {
157796
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
157797
+ type: 'bridge_disconnected';
157798
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
157799
+ message: string;
157506
157800
  };
157507
157801
  } | {
157508
157802
  /** ID of the action attempt. */
@@ -157822,6 +158116,16 @@ type Routes = {
157822
158116
  type: 'encoder_not_online';
157823
158117
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
157824
158118
  message: string;
158119
+ } | {
158120
+ /** Error type to indicate that communication with the encoder timed out. */
158121
+ type: 'encoder_timeout_error';
158122
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
158123
+ message: string;
158124
+ } | {
158125
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
158126
+ type: 'bridge_disconnected';
158127
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
158128
+ message: string;
157825
158129
  };
157826
158130
  } | {
157827
158131
  /** ID of the action attempt. */
@@ -159782,10 +160086,10 @@ type Routes = {
159782
160086
  can_unlock_with_card?: boolean | undefined;
159783
160087
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
159784
160088
  can_unlock_with_code?: boolean | undefined;
160089
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
160090
+ can_unlock_with_cloud_key?: boolean | undefined;
159785
160091
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
159786
160092
  can_belong_to_reservation?: boolean | undefined;
159787
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
159788
- can_unlock_with_cloud_key?: boolean | undefined;
159789
160093
  }[];
159790
160094
  };
159791
160095
  maxDuration: undefined;
@@ -160850,6 +161154,16 @@ type Routes = {
160850
161154
  type: 'encoder_not_online';
160851
161155
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
160852
161156
  message: string;
161157
+ } | {
161158
+ /** Error type to indicate that communication with the encoder timed out. */
161159
+ type: 'encoder_timeout_error';
161160
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
161161
+ message: string;
161162
+ } | {
161163
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
161164
+ type: 'bridge_disconnected';
161165
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
161166
+ message: string;
160853
161167
  };
160854
161168
  } | {
160855
161169
  /** ID of the action attempt. */
@@ -161169,6 +161483,16 @@ type Routes = {
161169
161483
  type: 'encoder_not_online';
161170
161484
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
161171
161485
  message: string;
161486
+ } | {
161487
+ /** Error type to indicate that communication with the encoder timed out. */
161488
+ type: 'encoder_timeout_error';
161489
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
161490
+ message: string;
161491
+ } | {
161492
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
161493
+ type: 'bridge_disconnected';
161494
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
161495
+ message: string;
161172
161496
  };
161173
161497
  } | {
161174
161498
  /** ID of the action attempt. */
@@ -162161,6 +162485,16 @@ type Routes = {
162161
162485
  type: 'encoder_not_online';
162162
162486
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
162163
162487
  message: string;
162488
+ } | {
162489
+ /** Error type to indicate that communication with the encoder timed out. */
162490
+ type: 'encoder_timeout_error';
162491
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
162492
+ message: string;
162493
+ } | {
162494
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
162495
+ type: 'bridge_disconnected';
162496
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
162497
+ message: string;
162164
162498
  };
162165
162499
  } | {
162166
162500
  /** ID of the action attempt. */
@@ -162480,6 +162814,16 @@ type Routes = {
162480
162814
  type: 'encoder_not_online';
162481
162815
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
162482
162816
  message: string;
162817
+ } | {
162818
+ /** Error type to indicate that communication with the encoder timed out. */
162819
+ type: 'encoder_timeout_error';
162820
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
162821
+ message: string;
162822
+ } | {
162823
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
162824
+ type: 'bridge_disconnected';
162825
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
162826
+ message: string;
162483
162827
  };
162484
162828
  } | {
162485
162829
  /** ID of the action attempt. */
@@ -174993,6 +175337,16 @@ type Routes = {
174993
175337
  type: 'encoder_not_online';
174994
175338
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
174995
175339
  message: string;
175340
+ } | {
175341
+ /** Error type to indicate that communication with the encoder timed out. */
175342
+ type: 'encoder_timeout_error';
175343
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
175344
+ message: string;
175345
+ } | {
175346
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
175347
+ type: 'bridge_disconnected';
175348
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
175349
+ message: string;
174996
175350
  };
174997
175351
  } | {
174998
175352
  /** ID of the action attempt. */
@@ -175312,6 +175666,16 @@ type Routes = {
175312
175666
  type: 'encoder_not_online';
175313
175667
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
175314
175668
  message: string;
175669
+ } | {
175670
+ /** Error type to indicate that communication with the encoder timed out. */
175671
+ type: 'encoder_timeout_error';
175672
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
175673
+ message: string;
175674
+ } | {
175675
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
175676
+ type: 'bridge_disconnected';
175677
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
175678
+ message: string;
175315
175679
  };
175316
175680
  } | {
175317
175681
  /** ID of the action attempt. */
@@ -181650,6 +182014,16 @@ type Routes = {
181650
182014
  type: 'encoder_not_online';
181651
182015
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
181652
182016
  message: string;
182017
+ } | {
182018
+ /** Error type to indicate that communication with the encoder timed out. */
182019
+ type: 'encoder_timeout_error';
182020
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
182021
+ message: string;
182022
+ } | {
182023
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
182024
+ type: 'bridge_disconnected';
182025
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
182026
+ message: string;
181653
182027
  };
181654
182028
  } | {
181655
182029
  /** ID of the action attempt. */
@@ -181969,6 +182343,16 @@ type Routes = {
181969
182343
  type: 'encoder_not_online';
181970
182344
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
181971
182345
  message: string;
182346
+ } | {
182347
+ /** Error type to indicate that communication with the encoder timed out. */
182348
+ type: 'encoder_timeout_error';
182349
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
182350
+ message: string;
182351
+ } | {
182352
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
182353
+ type: 'bridge_disconnected';
182354
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
182355
+ message: string;
181972
182356
  };
181973
182357
  } | {
181974
182358
  /** ID of the action attempt. */
@@ -182962,6 +183346,16 @@ type Routes = {
182962
183346
  type: 'encoder_not_online';
182963
183347
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
182964
183348
  message: string;
183349
+ } | {
183350
+ /** Error type to indicate that communication with the encoder timed out. */
183351
+ type: 'encoder_timeout_error';
183352
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
183353
+ message: string;
183354
+ } | {
183355
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
183356
+ type: 'bridge_disconnected';
183357
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
183358
+ message: string;
182965
183359
  };
182966
183360
  } | {
182967
183361
  /** ID of the action attempt. */
@@ -183281,6 +183675,16 @@ type Routes = {
183281
183675
  type: 'encoder_not_online';
183282
183676
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
183283
183677
  message: string;
183678
+ } | {
183679
+ /** Error type to indicate that communication with the encoder timed out. */
183680
+ type: 'encoder_timeout_error';
183681
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
183682
+ message: string;
183683
+ } | {
183684
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
183685
+ type: 'bridge_disconnected';
183686
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
183687
+ message: string;
183284
183688
  };
183285
183689
  } | {
183286
183690
  /** ID of the action attempt. */
@@ -184272,6 +184676,16 @@ type Routes = {
184272
184676
  type: 'encoder_not_online';
184273
184677
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
184274
184678
  message: string;
184679
+ } | {
184680
+ /** Error type to indicate that communication with the encoder timed out. */
184681
+ type: 'encoder_timeout_error';
184682
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
184683
+ message: string;
184684
+ } | {
184685
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
184686
+ type: 'bridge_disconnected';
184687
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
184688
+ message: string;
184275
184689
  };
184276
184690
  } | {
184277
184691
  /** ID of the action attempt. */
@@ -184591,6 +185005,16 @@ type Routes = {
184591
185005
  type: 'encoder_not_online';
184592
185006
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
184593
185007
  message: string;
185008
+ } | {
185009
+ /** Error type to indicate that communication with the encoder timed out. */
185010
+ type: 'encoder_timeout_error';
185011
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
185012
+ message: string;
185013
+ } | {
185014
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
185015
+ type: 'bridge_disconnected';
185016
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
185017
+ message: string;
184594
185018
  };
184595
185019
  } | {
184596
185020
  /** ID of the action attempt. */
@@ -185584,6 +186008,16 @@ type Routes = {
185584
186008
  type: 'encoder_not_online';
185585
186009
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
185586
186010
  message: string;
186011
+ } | {
186012
+ /** Error type to indicate that communication with the encoder timed out. */
186013
+ type: 'encoder_timeout_error';
186014
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
186015
+ message: string;
186016
+ } | {
186017
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
186018
+ type: 'bridge_disconnected';
186019
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
186020
+ message: string;
185587
186021
  };
185588
186022
  } | {
185589
186023
  /** ID of the action attempt. */
@@ -185903,6 +186337,16 @@ type Routes = {
185903
186337
  type: 'encoder_not_online';
185904
186338
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
185905
186339
  message: string;
186340
+ } | {
186341
+ /** Error type to indicate that communication with the encoder timed out. */
186342
+ type: 'encoder_timeout_error';
186343
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
186344
+ message: string;
186345
+ } | {
186346
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
186347
+ type: 'bridge_disconnected';
186348
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
186349
+ message: string;
185906
186350
  };
185907
186351
  } | {
185908
186352
  /** ID of the action attempt. */
@@ -189595,6 +190039,16 @@ type Routes = {
189595
190039
  type: 'encoder_not_online';
189596
190040
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
189597
190041
  message: string;
190042
+ } | {
190043
+ /** Error type to indicate that communication with the encoder timed out. */
190044
+ type: 'encoder_timeout_error';
190045
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
190046
+ message: string;
190047
+ } | {
190048
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
190049
+ type: 'bridge_disconnected';
190050
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
190051
+ message: string;
189598
190052
  };
189599
190053
  } | {
189600
190054
  /** ID of the action attempt. */
@@ -189914,6 +190368,16 @@ type Routes = {
189914
190368
  type: 'encoder_not_online';
189915
190369
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
189916
190370
  message: string;
190371
+ } | {
190372
+ /** Error type to indicate that communication with the encoder timed out. */
190373
+ type: 'encoder_timeout_error';
190374
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
190375
+ message: string;
190376
+ } | {
190377
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
190378
+ type: 'bridge_disconnected';
190379
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
190380
+ message: string;
189917
190381
  };
189918
190382
  } | {
189919
190383
  /** ID of the action attempt. */
@@ -190926,6 +191390,16 @@ type Routes = {
190926
191390
  type: 'encoder_not_online';
190927
191391
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
190928
191392
  message: string;
191393
+ } | {
191394
+ /** Error type to indicate that communication with the encoder timed out. */
191395
+ type: 'encoder_timeout_error';
191396
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
191397
+ message: string;
191398
+ } | {
191399
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
191400
+ type: 'bridge_disconnected';
191401
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
191402
+ message: string;
190929
191403
  };
190930
191404
  } | {
190931
191405
  /** ID of the action attempt. */
@@ -191245,6 +191719,16 @@ type Routes = {
191245
191719
  type: 'encoder_not_online';
191246
191720
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
191247
191721
  message: string;
191722
+ } | {
191723
+ /** Error type to indicate that communication with the encoder timed out. */
191724
+ type: 'encoder_timeout_error';
191725
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
191726
+ message: string;
191727
+ } | {
191728
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
191729
+ type: 'bridge_disconnected';
191730
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
191731
+ message: string;
191248
191732
  };
191249
191733
  } | {
191250
191734
  /** ID of the action attempt. */
@@ -192313,6 +192797,16 @@ type Routes = {
192313
192797
  type: 'encoder_not_online';
192314
192798
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
192315
192799
  message: string;
192800
+ } | {
192801
+ /** Error type to indicate that communication with the encoder timed out. */
192802
+ type: 'encoder_timeout_error';
192803
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
192804
+ message: string;
192805
+ } | {
192806
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
192807
+ type: 'bridge_disconnected';
192808
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
192809
+ message: string;
192316
192810
  };
192317
192811
  } | {
192318
192812
  /** ID of the action attempt. */
@@ -192632,6 +193126,16 @@ type Routes = {
192632
193126
  type: 'encoder_not_online';
192633
193127
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
192634
193128
  message: string;
193129
+ } | {
193130
+ /** Error type to indicate that communication with the encoder timed out. */
193131
+ type: 'encoder_timeout_error';
193132
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
193133
+ message: string;
193134
+ } | {
193135
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
193136
+ type: 'bridge_disconnected';
193137
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
193138
+ message: string;
192635
193139
  };
192636
193140
  } | {
192637
193141
  /** ID of the action attempt. */
@@ -193988,8 +194492,8 @@ type Routes = {
193988
194492
  requested_access_methods: {
193989
194493
  /** Display name of the access method. */
193990
194494
  display_name: string;
193991
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
193992
- mode: 'code' | 'card' | 'mobile_key';
194495
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
194496
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
193993
194497
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
193994
194498
  code?: string | undefined;
193995
194499
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -194594,6 +195098,16 @@ type Routes = {
194594
195098
  type: 'encoder_not_online';
194595
195099
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
194596
195100
  message: string;
195101
+ } | {
195102
+ /** Error type to indicate that communication with the encoder timed out. */
195103
+ type: 'encoder_timeout_error';
195104
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
195105
+ message: string;
195106
+ } | {
195107
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
195108
+ type: 'bridge_disconnected';
195109
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
195110
+ message: string;
194597
195111
  };
194598
195112
  } | {
194599
195113
  /** ID of the action attempt. */
@@ -194913,6 +195427,16 @@ type Routes = {
194913
195427
  type: 'encoder_not_online';
194914
195428
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
194915
195429
  message: string;
195430
+ } | {
195431
+ /** Error type to indicate that communication with the encoder timed out. */
195432
+ type: 'encoder_timeout_error';
195433
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
195434
+ message: string;
195435
+ } | {
195436
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
195437
+ type: 'bridge_disconnected';
195438
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
195439
+ message: string;
194916
195440
  };
194917
195441
  } | {
194918
195442
  /** ID of the action attempt. */
@@ -199269,8 +199793,8 @@ type Routes = {
199269
199793
  requested_access_methods: {
199270
199794
  /** Display name of the access method. */
199271
199795
  display_name: string;
199272
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
199273
- mode: 'code' | 'card' | 'mobile_key';
199796
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
199797
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
199274
199798
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
199275
199799
  code?: string | undefined;
199276
199800
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -199691,8 +200215,8 @@ type Routes = {
199691
200215
  requested_access_methods: {
199692
200216
  /** Display name of the access method. */
199693
200217
  display_name: string;
199694
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
199695
- mode: 'code' | 'card' | 'mobile_key';
200218
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
200219
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
199696
200220
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
199697
200221
  code?: string | undefined;
199698
200222
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -200427,10 +200951,10 @@ type Routes = {
200427
200951
  can_unlock_with_card?: boolean | undefined;
200428
200952
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
200429
200953
  can_unlock_with_code?: boolean | undefined;
200954
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
200955
+ can_unlock_with_cloud_key?: boolean | undefined;
200430
200956
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
200431
200957
  can_belong_to_reservation?: boolean | undefined;
200432
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
200433
- can_unlock_with_cloud_key?: boolean | undefined;
200434
200958
  }[];
200435
200959
  }[];
200436
200960
  }[];
@@ -202152,10 +202676,10 @@ type Routes = {
202152
202676
  can_unlock_with_card?: boolean | undefined;
202153
202677
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
202154
202678
  can_unlock_with_code?: boolean | undefined;
202679
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
202680
+ can_unlock_with_cloud_key?: boolean | undefined;
202155
202681
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
202156
202682
  can_belong_to_reservation?: boolean | undefined;
202157
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
202158
- can_unlock_with_cloud_key?: boolean | undefined;
202159
202683
  }[] | undefined;
202160
202684
  connected_accounts?: {
202161
202685
  /** ID of the connected account. */
@@ -202420,8 +202944,8 @@ type Routes = {
202420
202944
  access_method_id: string;
202421
202945
  /** Display name of the access method. */
202422
202946
  display_name: string;
202423
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
202424
- mode: 'code' | 'card' | 'mobile_key';
202947
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
202948
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
202425
202949
  /** Date and time at which the access method was created. */
202426
202950
  created_at: string;
202427
202951
  /** Date and time at which the access method was issued. */
@@ -203097,6 +203621,16 @@ type Routes = {
203097
203621
  type: 'encoder_not_online';
203098
203622
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
203099
203623
  message: string;
203624
+ } | {
203625
+ /** Error type to indicate that communication with the encoder timed out. */
203626
+ type: 'encoder_timeout_error';
203627
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
203628
+ message: string;
203629
+ } | {
203630
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
203631
+ type: 'bridge_disconnected';
203632
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
203633
+ message: string;
203100
203634
  };
203101
203635
  } | {
203102
203636
  /** ID of the action attempt. */
@@ -203416,6 +203950,16 @@ type Routes = {
203416
203950
  type: 'encoder_not_online';
203417
203951
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
203418
203952
  message: string;
203953
+ } | {
203954
+ /** Error type to indicate that communication with the encoder timed out. */
203955
+ type: 'encoder_timeout_error';
203956
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
203957
+ message: string;
203958
+ } | {
203959
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
203960
+ type: 'bridge_disconnected';
203961
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
203962
+ message: string;
203419
203963
  };
203420
203964
  } | {
203421
203965
  /** ID of the action attempt. */
@@ -204413,6 +204957,16 @@ type Routes = {
204413
204957
  type: 'encoder_not_online';
204414
204958
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
204415
204959
  message: string;
204960
+ } | {
204961
+ /** Error type to indicate that communication with the encoder timed out. */
204962
+ type: 'encoder_timeout_error';
204963
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
204964
+ message: string;
204965
+ } | {
204966
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
204967
+ type: 'bridge_disconnected';
204968
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
204969
+ message: string;
204416
204970
  };
204417
204971
  } | {
204418
204972
  /** ID of the action attempt. */
@@ -204732,6 +205286,16 @@ type Routes = {
204732
205286
  type: 'encoder_not_online';
204733
205287
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
204734
205288
  message: string;
205289
+ } | {
205290
+ /** Error type to indicate that communication with the encoder timed out. */
205291
+ type: 'encoder_timeout_error';
205292
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
205293
+ message: string;
205294
+ } | {
205295
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
205296
+ type: 'bridge_disconnected';
205297
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
205298
+ message: string;
204735
205299
  };
204736
205300
  } | {
204737
205301
  /** ID of the action attempt. */
@@ -205835,6 +206399,16 @@ type Routes = {
205835
206399
  type: 'encoder_not_online';
205836
206400
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
205837
206401
  message: string;
206402
+ } | {
206403
+ /** Error type to indicate that communication with the encoder timed out. */
206404
+ type: 'encoder_timeout_error';
206405
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
206406
+ message: string;
206407
+ } | {
206408
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
206409
+ type: 'bridge_disconnected';
206410
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
206411
+ message: string;
205838
206412
  };
205839
206413
  } | {
205840
206414
  /** ID of the action attempt. */
@@ -206154,6 +206728,16 @@ type Routes = {
206154
206728
  type: 'encoder_not_online';
206155
206729
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
206156
206730
  message: string;
206731
+ } | {
206732
+ /** Error type to indicate that communication with the encoder timed out. */
206733
+ type: 'encoder_timeout_error';
206734
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
206735
+ message: string;
206736
+ } | {
206737
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
206738
+ type: 'bridge_disconnected';
206739
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
206740
+ message: string;
206157
206741
  };
206158
206742
  } | {
206159
206743
  /** ID of the action attempt. */
@@ -208502,6 +209086,16 @@ type Routes = {
208502
209086
  type: 'encoder_not_online';
208503
209087
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
208504
209088
  message: string;
209089
+ } | {
209090
+ /** Error type to indicate that communication with the encoder timed out. */
209091
+ type: 'encoder_timeout_error';
209092
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
209093
+ message: string;
209094
+ } | {
209095
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
209096
+ type: 'bridge_disconnected';
209097
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
209098
+ message: string;
208505
209099
  };
208506
209100
  } | {
208507
209101
  /** ID of the action attempt. */
@@ -208821,6 +209415,16 @@ type Routes = {
208821
209415
  type: 'encoder_not_online';
208822
209416
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
208823
209417
  message: string;
209418
+ } | {
209419
+ /** Error type to indicate that communication with the encoder timed out. */
209420
+ type: 'encoder_timeout_error';
209421
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
209422
+ message: string;
209423
+ } | {
209424
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
209425
+ type: 'bridge_disconnected';
209426
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
209427
+ message: string;
208824
209428
  };
208825
209429
  } | {
208826
209430
  /** ID of the action attempt. */
@@ -209822,6 +210426,16 @@ type Routes = {
209822
210426
  type: 'encoder_not_online';
209823
210427
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
209824
210428
  message: string;
210429
+ } | {
210430
+ /** Error type to indicate that communication with the encoder timed out. */
210431
+ type: 'encoder_timeout_error';
210432
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
210433
+ message: string;
210434
+ } | {
210435
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
210436
+ type: 'bridge_disconnected';
210437
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
210438
+ message: string;
209825
210439
  };
209826
210440
  } | {
209827
210441
  /** ID of the action attempt. */
@@ -210141,6 +210755,16 @@ type Routes = {
210141
210755
  type: 'encoder_not_online';
210142
210756
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
210143
210757
  message: string;
210758
+ } | {
210759
+ /** Error type to indicate that communication with the encoder timed out. */
210760
+ type: 'encoder_timeout_error';
210761
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
210762
+ message: string;
210763
+ } | {
210764
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
210765
+ type: 'bridge_disconnected';
210766
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
210767
+ message: string;
210144
210768
  };
210145
210769
  } | {
210146
210770
  /** ID of the action attempt. */
@@ -213823,6 +214447,16 @@ type Routes = {
213823
214447
  type: 'encoder_not_online';
213824
214448
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
213825
214449
  message: string;
214450
+ } | {
214451
+ /** Error type to indicate that communication with the encoder timed out. */
214452
+ type: 'encoder_timeout_error';
214453
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
214454
+ message: string;
214455
+ } | {
214456
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
214457
+ type: 'bridge_disconnected';
214458
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
214459
+ message: string;
213826
214460
  };
213827
214461
  } | {
213828
214462
  /** ID of the action attempt. */
@@ -214142,6 +214776,16 @@ type Routes = {
214142
214776
  type: 'encoder_not_online';
214143
214777
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
214144
214778
  message: string;
214779
+ } | {
214780
+ /** Error type to indicate that communication with the encoder timed out. */
214781
+ type: 'encoder_timeout_error';
214782
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
214783
+ message: string;
214784
+ } | {
214785
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
214786
+ type: 'bridge_disconnected';
214787
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
214788
+ message: string;
214145
214789
  };
214146
214790
  } | {
214147
214791
  /** ID of the action attempt. */
@@ -215338,6 +215982,16 @@ type Routes = {
215338
215982
  type: 'encoder_not_online';
215339
215983
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
215340
215984
  message: string;
215985
+ } | {
215986
+ /** Error type to indicate that communication with the encoder timed out. */
215987
+ type: 'encoder_timeout_error';
215988
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
215989
+ message: string;
215990
+ } | {
215991
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
215992
+ type: 'bridge_disconnected';
215993
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
215994
+ message: string;
215341
215995
  };
215342
215996
  } | {
215343
215997
  /** ID of the action attempt. */
@@ -215657,6 +216311,16 @@ type Routes = {
215657
216311
  type: 'encoder_not_online';
215658
216312
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
215659
216313
  message: string;
216314
+ } | {
216315
+ /** Error type to indicate that communication with the encoder timed out. */
216316
+ type: 'encoder_timeout_error';
216317
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
216318
+ message: string;
216319
+ } | {
216320
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
216321
+ type: 'bridge_disconnected';
216322
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
216323
+ message: string;
215660
216324
  };
215661
216325
  } | {
215662
216326
  /** ID of the action attempt. */
@@ -216681,6 +217345,16 @@ type Routes = {
216681
217345
  type: 'encoder_not_online';
216682
217346
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
216683
217347
  message: string;
217348
+ } | {
217349
+ /** Error type to indicate that communication with the encoder timed out. */
217350
+ type: 'encoder_timeout_error';
217351
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
217352
+ message: string;
217353
+ } | {
217354
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
217355
+ type: 'bridge_disconnected';
217356
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
217357
+ message: string;
216684
217358
  };
216685
217359
  } | {
216686
217360
  /** ID of the action attempt. */
@@ -217000,6 +217674,16 @@ type Routes = {
217000
217674
  type: 'encoder_not_online';
217001
217675
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
217002
217676
  message: string;
217677
+ } | {
217678
+ /** Error type to indicate that communication with the encoder timed out. */
217679
+ type: 'encoder_timeout_error';
217680
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
217681
+ message: string;
217682
+ } | {
217683
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
217684
+ type: 'bridge_disconnected';
217685
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
217686
+ message: string;
217003
217687
  };
217004
217688
  } | {
217005
217689
  /** ID of the action attempt. */
@@ -218136,6 +218820,16 @@ type Routes = {
218136
218820
  type: 'encoder_not_online';
218137
218821
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
218138
218822
  message: string;
218823
+ } | {
218824
+ /** Error type to indicate that communication with the encoder timed out. */
218825
+ type: 'encoder_timeout_error';
218826
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
218827
+ message: string;
218828
+ } | {
218829
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
218830
+ type: 'bridge_disconnected';
218831
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
218832
+ message: string;
218139
218833
  };
218140
218834
  } | {
218141
218835
  /** ID of the action attempt. */
@@ -218455,6 +219149,16 @@ type Routes = {
218455
219149
  type: 'encoder_not_online';
218456
219150
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
218457
219151
  message: string;
219152
+ } | {
219153
+ /** Error type to indicate that communication with the encoder timed out. */
219154
+ type: 'encoder_timeout_error';
219155
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
219156
+ message: string;
219157
+ } | {
219158
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
219159
+ type: 'bridge_disconnected';
219160
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
219161
+ message: string;
218458
219162
  };
218459
219163
  } | {
218460
219164
  /** ID of the action attempt. */
@@ -224620,10 +225324,10 @@ type Routes = {
224620
225324
  can_unlock_with_card?: boolean | undefined;
224621
225325
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
224622
225326
  can_unlock_with_code?: boolean | undefined;
225327
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
225328
+ can_unlock_with_cloud_key?: boolean | undefined;
224623
225329
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
224624
225330
  can_belong_to_reservation?: boolean | undefined;
224625
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
224626
- can_unlock_with_cloud_key?: boolean | undefined;
224627
225331
  }[] | undefined;
224628
225332
  acs_systems?: {
224629
225333
  /** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
@@ -225589,6 +226293,16 @@ type Routes = {
225589
226293
  type: 'encoder_not_online';
225590
226294
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
225591
226295
  message: string;
226296
+ } | {
226297
+ /** Error type to indicate that communication with the encoder timed out. */
226298
+ type: 'encoder_timeout_error';
226299
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
226300
+ message: string;
226301
+ } | {
226302
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
226303
+ type: 'bridge_disconnected';
226304
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
226305
+ message: string;
225592
226306
  };
225593
226307
  } | {
225594
226308
  /** ID of the action attempt. */
@@ -225908,6 +226622,16 @@ type Routes = {
225908
226622
  type: 'encoder_not_online';
225909
226623
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
225910
226624
  message: string;
226625
+ } | {
226626
+ /** Error type to indicate that communication with the encoder timed out. */
226627
+ type: 'encoder_timeout_error';
226628
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
226629
+ message: string;
226630
+ } | {
226631
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
226632
+ type: 'bridge_disconnected';
226633
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
226634
+ message: string;
225911
226635
  };
225912
226636
  } | {
225913
226637
  /** ID of the action attempt. */
@@ -227370,8 +228094,8 @@ type Routes = {
227370
228094
  access_method_id: string;
227371
228095
  /** Display name of the access method. */
227372
228096
  display_name: string;
227373
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
227374
- mode: 'code' | 'card' | 'mobile_key';
228097
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
228098
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
227375
228099
  /** Date and time at which the access method was created. */
227376
228100
  created_at: string;
227377
228101
  /** Date and time at which the access method was issued. */
@@ -227493,8 +228217,8 @@ type Routes = {
227493
228217
  requested_access_methods: {
227494
228218
  /** Display name of the access method. */
227495
228219
  display_name: string;
227496
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
227497
- mode: 'code' | 'card' | 'mobile_key';
228220
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
228221
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
227498
228222
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
227499
228223
  code?: string | undefined;
227500
228224
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -232430,6 +233154,16 @@ type Routes = {
232430
233154
  type: 'encoder_not_online';
232431
233155
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
232432
233156
  message: string;
233157
+ } | {
233158
+ /** Error type to indicate that communication with the encoder timed out. */
233159
+ type: 'encoder_timeout_error';
233160
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
233161
+ message: string;
233162
+ } | {
233163
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
233164
+ type: 'bridge_disconnected';
233165
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
233166
+ message: string;
232433
233167
  };
232434
233168
  } | {
232435
233169
  /** ID of the action attempt. */
@@ -232749,6 +233483,16 @@ type Routes = {
232749
233483
  type: 'encoder_not_online';
232750
233484
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
232751
233485
  message: string;
233486
+ } | {
233487
+ /** Error type to indicate that communication with the encoder timed out. */
233488
+ type: 'encoder_timeout_error';
233489
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
233490
+ message: string;
233491
+ } | {
233492
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
233493
+ type: 'bridge_disconnected';
233494
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
233495
+ message: string;
232752
233496
  };
232753
233497
  } | {
232754
233498
  /** ID of the action attempt. */