@seamapi/types 1.276.0 → 1.278.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 (43) hide show
  1. package/dist/connect.cjs +81 -19
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +352 -56
  4. package/lib/seam/connect/models/acs/acs-entrance.d.ts +13 -0
  5. package/lib/seam/connect/models/acs/acs-entrance.js +2 -1
  6. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
  8. package/lib/seam/connect/models/acs/acs-system.js +1 -0
  9. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-user.d.ts +7 -7
  11. package/lib/seam/connect/models/acs/acs-user.js +1 -0
  12. package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
  13. package/lib/seam/connect/models/acs/metadata/dormakaba_community.d.ts +9 -0
  14. package/lib/seam/connect/models/acs/metadata/dormakaba_community.js +5 -0
  15. package/lib/seam/connect/models/acs/metadata/dormakaba_community.js.map +1 -0
  16. package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
  17. package/lib/seam/connect/models/acs/metadata/index.js +1 -0
  18. package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
  19. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +48 -7
  20. package/lib/seam/connect/models/action-attempts/encode-card.d.ts +22 -7
  21. package/lib/seam/connect/models/action-attempts/encode-card.js +10 -2
  22. package/lib/seam/connect/models/action-attempts/encode-card.js.map +1 -1
  23. package/lib/seam/connect/models/action-attempts/scan-card.d.ts +26 -0
  24. package/lib/seam/connect/models/action-attempts/scan-card.js +5 -0
  25. package/lib/seam/connect/models/action-attempts/scan-card.js.map +1 -1
  26. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  27. package/lib/seam/connect/models/devices/device-provider.js +2 -0
  28. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  29. package/lib/seam/connect/openapi.d.ts +86 -0
  30. package/lib/seam/connect/openapi.js +48 -6
  31. package/lib/seam/connect/openapi.js.map +1 -1
  32. package/lib/seam/connect/route-types.d.ts +192 -37
  33. package/package.json +1 -1
  34. package/src/lib/seam/connect/models/acs/acs-entrance.ts +3 -0
  35. package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
  36. package/src/lib/seam/connect/models/acs/acs-user.ts +1 -0
  37. package/src/lib/seam/connect/models/acs/metadata/dormakaba_community.ts +9 -0
  38. package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
  39. package/src/lib/seam/connect/models/action-attempts/encode-card.ts +12 -2
  40. package/src/lib/seam/connect/models/action-attempts/scan-card.ts +6 -0
  41. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
  42. package/src/lib/seam/connect/openapi.ts +48 -6
  43. package/src/lib/seam/connect/route-types.ts +302 -80
@@ -195,6 +195,10 @@ export interface Routes {
195
195
  } | undefined;
196
196
  is_managed: false;
197
197
  }) | null;
198
+ warnings: Array<{
199
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
200
+ warning_message: string;
201
+ }>;
198
202
  };
199
203
  } | {
200
204
  /** The ID of the action attempt. */
@@ -307,7 +311,10 @@ export interface Routes {
307
311
  result: null;
308
312
  action_type: 'ENCODE_CARD';
309
313
  error: {
310
- type: string;
314
+ type: 'no_card_on_encoder';
315
+ message: string;
316
+ } | {
317
+ type: 'incompatible_card_format';
311
318
  message: string;
312
319
  };
313
320
  } | {
@@ -988,6 +995,10 @@ export interface Routes {
988
995
  } | undefined;
989
996
  is_managed: false;
990
997
  }) | null;
998
+ warnings: Array<{
999
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
1000
+ warning_message: string;
1001
+ }>;
991
1002
  };
992
1003
  } | {
993
1004
  /** The ID of the action attempt. */
@@ -1100,7 +1111,10 @@ export interface Routes {
1100
1111
  result: null;
1101
1112
  action_type: 'ENCODE_CARD';
1102
1113
  error: {
1103
- type: string;
1114
+ type: 'no_card_on_encoder';
1115
+ message: string;
1116
+ } | {
1117
+ type: 'incompatible_card_format';
1104
1118
  message: string;
1105
1119
  };
1106
1120
  } | {
@@ -1938,6 +1952,10 @@ export interface Routes {
1938
1952
  } | undefined;
1939
1953
  is_managed: false;
1940
1954
  }) | null;
1955
+ warnings: Array<{
1956
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
1957
+ warning_message: string;
1958
+ }>;
1941
1959
  };
1942
1960
  } | {
1943
1961
  /** The ID of the action attempt. */
@@ -2050,7 +2068,10 @@ export interface Routes {
2050
2068
  result: null;
2051
2069
  action_type: 'ENCODE_CARD';
2052
2070
  error: {
2053
- type: string;
2071
+ type: 'no_card_on_encoder';
2072
+ message: string;
2073
+ } | {
2074
+ type: 'incompatible_card_format';
2054
2075
  message: string;
2055
2076
  };
2056
2077
  } | {
@@ -2718,6 +2739,10 @@ export interface Routes {
2718
2739
  } | undefined;
2719
2740
  is_managed: false;
2720
2741
  }) | null;
2742
+ warnings: Array<{
2743
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
2744
+ warning_message: string;
2745
+ }>;
2721
2746
  };
2722
2747
  } | {
2723
2748
  /** The ID of the action attempt. */
@@ -2830,7 +2855,10 @@ export interface Routes {
2830
2855
  result: null;
2831
2856
  action_type: 'ENCODE_CARD';
2832
2857
  error: {
2833
- type: string;
2858
+ type: 'no_card_on_encoder';
2859
+ message: string;
2860
+ } | {
2861
+ type: 'incompatible_card_format';
2834
2862
  message: string;
2835
2863
  };
2836
2864
  } | {
@@ -3341,6 +3369,9 @@ export interface Routes {
3341
3369
  intrusion_alarm: boolean;
3342
3370
  privacy_mode: boolean;
3343
3371
  } | undefined;
3372
+ dormakaba_community_metadata?: {
3373
+ access_point_name: string;
3374
+ } | undefined;
3344
3375
  }>;
3345
3376
  };
3346
3377
  };
@@ -3368,7 +3399,7 @@ export interface Routes {
3368
3399
  /** Display name for the `acs_user`. */
3369
3400
  display_name: string;
3370
3401
  /** Brand-specific terminology for the `acs_user` type. */
3371
- external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
3402
+ external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
3372
3403
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
3373
3404
  external_type_display_name?: string | undefined;
3374
3405
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
@@ -3879,6 +3910,9 @@ export interface Routes {
3879
3910
  intrusion_alarm: boolean;
3880
3911
  privacy_mode: boolean;
3881
3912
  } | undefined;
3913
+ dormakaba_community_metadata?: {
3914
+ access_point_name: string;
3915
+ } | undefined;
3882
3916
  }>;
3883
3917
  };
3884
3918
  };
@@ -4285,6 +4319,10 @@ export interface Routes {
4285
4319
  } | undefined;
4286
4320
  is_managed: false;
4287
4321
  }) | null;
4322
+ warnings: Array<{
4323
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
4324
+ warning_message: string;
4325
+ }>;
4288
4326
  };
4289
4327
  } | {
4290
4328
  /** The ID of the action attempt. */
@@ -4397,7 +4435,10 @@ export interface Routes {
4397
4435
  result: null;
4398
4436
  action_type: 'ENCODE_CARD';
4399
4437
  error: {
4400
- type: string;
4438
+ type: 'no_card_on_encoder';
4439
+ message: string;
4440
+ } | {
4441
+ type: 'incompatible_card_format';
4401
4442
  message: string;
4402
4443
  };
4403
4444
  } | {
@@ -5407,6 +5448,10 @@ export interface Routes {
5407
5448
  } | undefined;
5408
5449
  is_managed: false;
5409
5450
  }) | null;
5451
+ warnings: Array<{
5452
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
5453
+ warning_message: string;
5454
+ }>;
5410
5455
  };
5411
5456
  } | {
5412
5457
  /** The ID of the action attempt. */
@@ -5519,7 +5564,10 @@ export interface Routes {
5519
5564
  result: null;
5520
5565
  action_type: 'ENCODE_CARD';
5521
5566
  error: {
5522
- type: string;
5567
+ type: 'no_card_on_encoder';
5568
+ message: string;
5569
+ } | {
5570
+ type: 'incompatible_card_format';
5523
5571
  message: string;
5524
5572
  };
5525
5573
  } | {
@@ -5916,6 +5964,9 @@ export interface Routes {
5916
5964
  intrusion_alarm: boolean;
5917
5965
  privacy_mode: boolean;
5918
5966
  } | undefined;
5967
+ dormakaba_community_metadata?: {
5968
+ access_point_name: string;
5969
+ } | undefined;
5919
5970
  };
5920
5971
  };
5921
5972
  };
@@ -5979,6 +6030,9 @@ export interface Routes {
5979
6030
  intrusion_alarm: boolean;
5980
6031
  privacy_mode: boolean;
5981
6032
  } | undefined;
6033
+ dormakaba_community_metadata?: {
6034
+ access_point_name: string;
6035
+ } | undefined;
5982
6036
  }>;
5983
6037
  };
5984
6038
  };
@@ -6054,7 +6108,7 @@ export interface Routes {
6054
6108
  /** ID of the `acs_system`. */
6055
6109
  acs_system_id: string;
6056
6110
  /** Brand-specific terminology for the `acs_system` type. */
6057
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
6111
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
6058
6112
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
6059
6113
  external_type_display_name?: string | undefined;
6060
6114
  /** Indicates if the `acs_system` is a credential manager. */
@@ -6069,7 +6123,7 @@ export interface Routes {
6069
6123
  } | undefined;
6070
6124
  /**
6071
6125
  * @deprecated Use `external_type`. */
6072
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
6126
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
6073
6127
  /**
6074
6128
  * @deprecated Use `external_type_display_name`. */
6075
6129
  system_type_display_name?: string | undefined;
@@ -6159,7 +6213,7 @@ export interface Routes {
6159
6213
  /** ID of the `acs_system`. */
6160
6214
  acs_system_id: string;
6161
6215
  /** Brand-specific terminology for the `acs_system` type. */
6162
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
6216
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
6163
6217
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
6164
6218
  external_type_display_name?: string | undefined;
6165
6219
  /** Indicates if the `acs_system` is a credential manager. */
@@ -6174,7 +6228,7 @@ export interface Routes {
6174
6228
  } | undefined;
6175
6229
  /**
6176
6230
  * @deprecated Use `external_type`. */
6177
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
6231
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
6178
6232
  /**
6179
6233
  * @deprecated Use `external_type_display_name`. */
6180
6234
  system_type_display_name?: string | undefined;
@@ -6264,7 +6318,7 @@ export interface Routes {
6264
6318
  /** ID of the `acs_system`. */
6265
6319
  acs_system_id: string;
6266
6320
  /** Brand-specific terminology for the `acs_system` type. */
6267
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
6321
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
6268
6322
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
6269
6323
  external_type_display_name?: string | undefined;
6270
6324
  /** Indicates if the `acs_system` is a credential manager. */
@@ -6279,7 +6333,7 @@ export interface Routes {
6279
6333
  } | undefined;
6280
6334
  /**
6281
6335
  * @deprecated Use `external_type`. */
6282
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
6336
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
6283
6337
  /**
6284
6338
  * @deprecated Use `external_type_display_name`. */
6285
6339
  system_type_display_name?: string | undefined;
@@ -6408,7 +6462,7 @@ export interface Routes {
6408
6462
  /** Display name for the `acs_user`. */
6409
6463
  display_name: string;
6410
6464
  /** Brand-specific terminology for the `acs_user` type. */
6411
- external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
6465
+ external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
6412
6466
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
6413
6467
  external_type_display_name?: string | undefined;
6414
6468
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
@@ -6521,7 +6575,7 @@ export interface Routes {
6521
6575
  /** Display name for the `acs_user`. */
6522
6576
  display_name: string;
6523
6577
  /** Brand-specific terminology for the `acs_user` type. */
6524
- external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
6578
+ external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
6525
6579
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
6526
6580
  external_type_display_name?: string | undefined;
6527
6581
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
@@ -6630,7 +6684,7 @@ export interface Routes {
6630
6684
  /** Display name for the `acs_user`. */
6631
6685
  display_name: string;
6632
6686
  /** Brand-specific terminology for the `acs_user` type. */
6633
- external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
6687
+ external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
6634
6688
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
6635
6689
  external_type_display_name?: string | undefined;
6636
6690
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
@@ -6755,6 +6809,9 @@ export interface Routes {
6755
6809
  intrusion_alarm: boolean;
6756
6810
  privacy_mode: boolean;
6757
6811
  } | undefined;
6812
+ dormakaba_community_metadata?: {
6813
+ access_point_name: string;
6814
+ } | undefined;
6758
6815
  }>;
6759
6816
  };
6760
6817
  };
@@ -6819,7 +6876,7 @@ export interface Routes {
6819
6876
  /** Display name for the `acs_user`. */
6820
6877
  display_name: string;
6821
6878
  /** Brand-specific terminology for the `acs_user` type. */
6822
- external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
6879
+ external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
6823
6880
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
6824
6881
  external_type_display_name?: string | undefined;
6825
6882
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
@@ -6923,7 +6980,7 @@ export interface Routes {
6923
6980
  /** Display name for the `acs_user`. */
6924
6981
  display_name: string;
6925
6982
  /** Brand-specific terminology for the `acs_user` type. */
6926
- external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
6983
+ external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
6927
6984
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
6928
6985
  external_type_display_name?: string | undefined;
6929
6986
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
@@ -7219,6 +7276,10 @@ export interface Routes {
7219
7276
  } | undefined;
7220
7277
  is_managed: false;
7221
7278
  }) | null;
7279
+ warnings: Array<{
7280
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
7281
+ warning_message: string;
7282
+ }>;
7222
7283
  };
7223
7284
  } | {
7224
7285
  /** The ID of the action attempt. */
@@ -7331,7 +7392,10 @@ export interface Routes {
7331
7392
  result: null;
7332
7393
  action_type: 'ENCODE_CARD';
7333
7394
  error: {
7334
- type: string;
7395
+ type: 'no_card_on_encoder';
7396
+ message: string;
7397
+ } | {
7398
+ type: 'incompatible_card_format';
7335
7399
  message: string;
7336
7400
  };
7337
7401
  } | {
@@ -7861,6 +7925,10 @@ export interface Routes {
7861
7925
  } | undefined;
7862
7926
  is_managed: false;
7863
7927
  }) | null;
7928
+ warnings: Array<{
7929
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
7930
+ warning_message: string;
7931
+ }>;
7864
7932
  };
7865
7933
  } | {
7866
7934
  /** The ID of the action attempt. */
@@ -7973,7 +8041,10 @@ export interface Routes {
7973
8041
  result: null;
7974
8042
  action_type: 'ENCODE_CARD';
7975
8043
  error: {
7976
- type: string;
8044
+ type: 'no_card_on_encoder';
8045
+ message: string;
8046
+ } | {
8047
+ type: 'incompatible_card_format';
7977
8048
  message: string;
7978
8049
  };
7979
8050
  } | {
@@ -8485,7 +8556,7 @@ export interface Routes {
8485
8556
  device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
8486
8557
  custom_redirect_url?: string | undefined;
8487
8558
  custom_redirect_failure_url?: string | undefined;
8488
- accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'vostio' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
8559
+ accepted_providers?: Array<'dormakaba_community' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'vostio' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
8489
8560
  provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
8490
8561
  custom_metadata?: Record<string, string | boolean | null> | undefined;
8491
8562
  automatically_manage_new_devices?: boolean;
@@ -9715,7 +9786,7 @@ export interface Routes {
9715
9786
  formData: {};
9716
9787
  jsonResponse: {
9717
9788
  device_providers: Array<{
9718
- device_provider_name: 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'vostio';
9789
+ device_provider_name: 'dormakaba_community' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'vostio';
9719
9790
  display_name: string;
9720
9791
  image_url: string;
9721
9792
  provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
@@ -12172,6 +12243,10 @@ export interface Routes {
12172
12243
  } | undefined;
12173
12244
  is_managed: false;
12174
12245
  }) | null;
12246
+ warnings: Array<{
12247
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
12248
+ warning_message: string;
12249
+ }>;
12175
12250
  };
12176
12251
  } | {
12177
12252
  /** The ID of the action attempt. */
@@ -12284,7 +12359,10 @@ export interface Routes {
12284
12359
  result: null;
12285
12360
  action_type: 'ENCODE_CARD';
12286
12361
  error: {
12287
- type: string;
12362
+ type: 'no_card_on_encoder';
12363
+ message: string;
12364
+ } | {
12365
+ type: 'incompatible_card_format';
12288
12366
  message: string;
12289
12367
  };
12290
12368
  } | {
@@ -12815,6 +12893,10 @@ export interface Routes {
12815
12893
  } | undefined;
12816
12894
  is_managed: false;
12817
12895
  }) | null;
12896
+ warnings: Array<{
12897
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
12898
+ warning_message: string;
12899
+ }>;
12818
12900
  };
12819
12901
  } | {
12820
12902
  /** The ID of the action attempt. */
@@ -12927,7 +13009,10 @@ export interface Routes {
12927
13009
  result: null;
12928
13010
  action_type: 'ENCODE_CARD';
12929
13011
  error: {
12930
- type: string;
13012
+ type: 'no_card_on_encoder';
13013
+ message: string;
13014
+ } | {
13015
+ type: 'incompatible_card_format';
12931
13016
  message: string;
12932
13017
  };
12933
13018
  } | {
@@ -14440,6 +14525,10 @@ export interface Routes {
14440
14525
  } | undefined;
14441
14526
  is_managed: false;
14442
14527
  }) | null;
14528
+ warnings: Array<{
14529
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
14530
+ warning_message: string;
14531
+ }>;
14443
14532
  };
14444
14533
  } | {
14445
14534
  /** The ID of the action attempt. */
@@ -14552,7 +14641,10 @@ export interface Routes {
14552
14641
  result: null;
14553
14642
  action_type: 'ENCODE_CARD';
14554
14643
  error: {
14555
- type: string;
14644
+ type: 'no_card_on_encoder';
14645
+ message: string;
14646
+ } | {
14647
+ type: 'incompatible_card_format';
14556
14648
  message: string;
14557
14649
  };
14558
14650
  } | {
@@ -15093,6 +15185,10 @@ export interface Routes {
15093
15185
  } | undefined;
15094
15186
  is_managed: false;
15095
15187
  }) | null;
15188
+ warnings: Array<{
15189
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
15190
+ warning_message: string;
15191
+ }>;
15096
15192
  };
15097
15193
  } | {
15098
15194
  /** The ID of the action attempt. */
@@ -15205,7 +15301,10 @@ export interface Routes {
15205
15301
  result: null;
15206
15302
  action_type: 'ENCODE_CARD';
15207
15303
  error: {
15208
- type: string;
15304
+ type: 'no_card_on_encoder';
15305
+ message: string;
15306
+ } | {
15307
+ type: 'incompatible_card_format';
15209
15308
  message: string;
15210
15309
  };
15211
15310
  } | {
@@ -15785,6 +15884,10 @@ export interface Routes {
15785
15884
  } | undefined;
15786
15885
  is_managed: false;
15787
15886
  }) | null;
15887
+ warnings: Array<{
15888
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
15889
+ warning_message: string;
15890
+ }>;
15788
15891
  };
15789
15892
  } | {
15790
15893
  /** The ID of the action attempt. */
@@ -15897,7 +16000,10 @@ export interface Routes {
15897
16000
  result: null;
15898
16001
  action_type: 'ENCODE_CARD';
15899
16002
  error: {
15900
- type: string;
16003
+ type: 'no_card_on_encoder';
16004
+ message: string;
16005
+ } | {
16006
+ type: 'incompatible_card_format';
15901
16007
  message: string;
15902
16008
  };
15903
16009
  } | {
@@ -16610,6 +16716,10 @@ export interface Routes {
16610
16716
  } | undefined;
16611
16717
  is_managed: false;
16612
16718
  }) | null;
16719
+ warnings: Array<{
16720
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
16721
+ warning_message: string;
16722
+ }>;
16613
16723
  };
16614
16724
  } | {
16615
16725
  /** The ID of the action attempt. */
@@ -16722,7 +16832,10 @@ export interface Routes {
16722
16832
  result: null;
16723
16833
  action_type: 'ENCODE_CARD';
16724
16834
  error: {
16725
- type: string;
16835
+ type: 'no_card_on_encoder';
16836
+ message: string;
16837
+ } | {
16838
+ type: 'incompatible_card_format';
16726
16839
  message: string;
16727
16840
  };
16728
16841
  } | {
@@ -17255,6 +17368,10 @@ export interface Routes {
17255
17368
  } | undefined;
17256
17369
  is_managed: false;
17257
17370
  }) | null;
17371
+ warnings: Array<{
17372
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
17373
+ warning_message: string;
17374
+ }>;
17258
17375
  };
17259
17376
  } | {
17260
17377
  /** The ID of the action attempt. */
@@ -17367,7 +17484,10 @@ export interface Routes {
17367
17484
  result: null;
17368
17485
  action_type: 'ENCODE_CARD';
17369
17486
  error: {
17370
- type: string;
17487
+ type: 'no_card_on_encoder';
17488
+ message: string;
17489
+ } | {
17490
+ type: 'incompatible_card_format';
17371
17491
  message: string;
17372
17492
  };
17373
17493
  } | {
@@ -18404,6 +18524,10 @@ export interface Routes {
18404
18524
  } | undefined;
18405
18525
  is_managed: false;
18406
18526
  }) | null;
18527
+ warnings: Array<{
18528
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
18529
+ warning_message: string;
18530
+ }>;
18407
18531
  };
18408
18532
  } | {
18409
18533
  /** The ID of the action attempt. */
@@ -18516,7 +18640,10 @@ export interface Routes {
18516
18640
  result: null;
18517
18641
  action_type: 'ENCODE_CARD';
18518
18642
  error: {
18519
- type: string;
18643
+ type: 'no_card_on_encoder';
18644
+ message: string;
18645
+ } | {
18646
+ type: 'incompatible_card_format';
18520
18647
  message: string;
18521
18648
  };
18522
18649
  } | {
@@ -19051,6 +19178,10 @@ export interface Routes {
19051
19178
  } | undefined;
19052
19179
  is_managed: false;
19053
19180
  }) | null;
19181
+ warnings: Array<{
19182
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
19183
+ warning_message: string;
19184
+ }>;
19054
19185
  };
19055
19186
  } | {
19056
19187
  /** The ID of the action attempt. */
@@ -19163,7 +19294,10 @@ export interface Routes {
19163
19294
  result: null;
19164
19295
  action_type: 'ENCODE_CARD';
19165
19296
  error: {
19166
- type: string;
19297
+ type: 'no_card_on_encoder';
19298
+ message: string;
19299
+ } | {
19300
+ type: 'incompatible_card_format';
19167
19301
  message: string;
19168
19302
  };
19169
19303
  } | {
@@ -20637,6 +20771,10 @@ export interface Routes {
20637
20771
  } | undefined;
20638
20772
  is_managed: false;
20639
20773
  }) | null;
20774
+ warnings: Array<{
20775
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
20776
+ warning_message: string;
20777
+ }>;
20640
20778
  };
20641
20779
  } | {
20642
20780
  /** The ID of the action attempt. */
@@ -20749,7 +20887,10 @@ export interface Routes {
20749
20887
  result: null;
20750
20888
  action_type: 'ENCODE_CARD';
20751
20889
  error: {
20752
- type: string;
20890
+ type: 'no_card_on_encoder';
20891
+ message: string;
20892
+ } | {
20893
+ type: 'incompatible_card_format';
20753
20894
  message: string;
20754
20895
  };
20755
20896
  } | {
@@ -21401,6 +21542,10 @@ export interface Routes {
21401
21542
  } | undefined;
21402
21543
  is_managed: false;
21403
21544
  }) | null;
21545
+ warnings: Array<{
21546
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
21547
+ warning_message: string;
21548
+ }>;
21404
21549
  };
21405
21550
  } | {
21406
21551
  /** The ID of the action attempt. */
@@ -21513,7 +21658,10 @@ export interface Routes {
21513
21658
  result: null;
21514
21659
  action_type: 'ENCODE_CARD';
21515
21660
  error: {
21516
- type: string;
21661
+ type: 'no_card_on_encoder';
21662
+ message: string;
21663
+ } | {
21664
+ type: 'incompatible_card_format';
21517
21665
  message: string;
21518
21666
  };
21519
21667
  } | {
@@ -23025,7 +23173,7 @@ export interface Routes {
23025
23173
  /** ID of the `acs_system`. */
23026
23174
  acs_system_id: string;
23027
23175
  /** Brand-specific terminology for the `acs_system` type. */
23028
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
23176
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
23029
23177
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
23030
23178
  external_type_display_name?: string | undefined;
23031
23179
  /** Indicates if the `acs_system` is a credential manager. */
@@ -23040,7 +23188,7 @@ export interface Routes {
23040
23188
  } | undefined;
23041
23189
  /**
23042
23190
  * @deprecated Use `external_type`. */
23043
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
23191
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
23044
23192
  /**
23045
23193
  * @deprecated Use `external_type_display_name`. */
23046
23194
  system_type_display_name?: string | undefined;
@@ -23136,7 +23284,7 @@ export interface Routes {
23136
23284
  /** Display name for the `acs_user`. */
23137
23285
  display_name: string;
23138
23286
  /** Brand-specific terminology for the `acs_user` type. */
23139
- external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
23287
+ external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
23140
23288
  /** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
23141
23289
  external_type_display_name?: string | undefined;
23142
23290
  /** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
@@ -23572,6 +23720,10 @@ export interface Routes {
23572
23720
  } | undefined;
23573
23721
  is_managed: false;
23574
23722
  }) | null;
23723
+ warnings: Array<{
23724
+ warning_code: 'acs_credential_on_encoder_out_of_sync';
23725
+ warning_message: string;
23726
+ }>;
23575
23727
  };
23576
23728
  } | {
23577
23729
  /** The ID of the action attempt. */
@@ -23684,7 +23836,10 @@ export interface Routes {
23684
23836
  result: null;
23685
23837
  action_type: 'ENCODE_CARD';
23686
23838
  error: {
23687
- type: string;
23839
+ type: 'no_card_on_encoder';
23840
+ message: string;
23841
+ } | {
23842
+ type: 'incompatible_card_format';
23688
23843
  message: string;
23689
23844
  };
23690
23845
  } | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.276.0",
3
+ "version": "1.278.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",