@seamapi/types 1.138.0 → 1.139.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.
@@ -841,6 +841,17 @@ declare const _default: {
841
841
  allOf: ({
842
842
  allOf: ({
843
843
  properties: {
844
+ accessory_keypad: {
845
+ description: string;
846
+ properties: {
847
+ is_connected: {
848
+ description: string;
849
+ type: string;
850
+ };
851
+ };
852
+ required: string[];
853
+ type: string;
854
+ };
844
855
  appearance: {
845
856
  properties: {
846
857
  name: {
@@ -896,10 +907,18 @@ declare const _default: {
896
907
  description: string;
897
908
  type: string;
898
909
  };
910
+ can_connect_accessory_keypad: {
911
+ description: string;
912
+ type: string;
913
+ };
899
914
  display_name: {
900
915
  description: string;
901
916
  type: string;
902
917
  };
918
+ has_built_in_keypad: {
919
+ description: string;
920
+ type: string;
921
+ };
903
922
  manufacturer_display_name: {
904
923
  description: string;
905
924
  type: string;
@@ -974,6 +993,7 @@ declare const _default: {
974
993
  required: string[];
975
994
  type: string;
976
995
  };
996
+ accessory_keypad?: never;
977
997
  appearance?: never;
978
998
  battery?: never;
979
999
  battery_level?: never;
@@ -2694,10 +2714,18 @@ declare const _default: {
2694
2714
  description: string;
2695
2715
  type: string;
2696
2716
  };
2717
+ can_connect_accessory_keypad: {
2718
+ description: string;
2719
+ type: string;
2720
+ };
2697
2721
  display_name: {
2698
2722
  description: string;
2699
2723
  type: string;
2700
2724
  };
2725
+ has_built_in_keypad: {
2726
+ description: string;
2727
+ type: string;
2728
+ };
2701
2729
  manufacturer_display_name: {
2702
2730
  description: string;
2703
2731
  type: string;
@@ -5712,10 +5740,6 @@ declare const _default: {
5712
5740
  format: string;
5713
5741
  type: string;
5714
5742
  };
5715
- external_type: {
5716
- enum: string[];
5717
- type: string;
5718
- };
5719
5743
  is_multi_phone_sync_credential: {
5720
5744
  default: boolean;
5721
5745
  type: string;
@@ -17921,7 +17945,6 @@ interface Routes {
17921
17945
  access_method: 'code' | 'card' | 'mobile_key';
17922
17946
  code?: string | undefined;
17923
17947
  is_multi_phone_sync_credential?: boolean;
17924
- external_type?: 'visionline_card' | undefined;
17925
17948
  visionline_metadata?: {
17926
17949
  assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
17927
17950
  card_format?: ('TLCode' | 'rfid48') | undefined;
@@ -19041,15 +19064,24 @@ interface Routes {
19041
19064
  online: boolean;
19042
19065
  /** Name of the device. Deprecated - use device.display_name instead */
19043
19066
  name: string;
19067
+ /** Represents the accessory keypad state. */
19068
+ accessory_keypad?: {
19069
+ /** Indicates if the accessory_keypad is connected to the device. */
19070
+ is_connected: boolean;
19071
+ } | undefined;
19044
19072
  appearance: {
19045
19073
  /** Name of the device as seen from the provider API and application, not settable through Seam. */
19046
19074
  name: string;
19047
19075
  };
19048
19076
  model: {
19077
+ /** Indicates whether the device can connect a accessory keypad. */
19078
+ can_connect_accessory_keypad?: boolean | undefined;
19049
19079
  /** Display name of the device model. */
19050
19080
  display_name: string;
19051
19081
  /** Display name that corresponds to the manufacturer-specific terminology for the device. */
19052
19082
  manufacturer_display_name: string;
19083
+ /** Indicates whether the device has a built in accessory keypad. */
19084
+ has_built_in_keypad?: boolean | undefined;
19053
19085
  /** Indicates whether the device supports offline access codes. */
19054
19086
  offline_access_codes_supported?: boolean | undefined;
19055
19087
  /** Indicates whether the device supports online access codes. */
@@ -19540,15 +19572,24 @@ interface Routes {
19540
19572
  online: boolean;
19541
19573
  /** Name of the device. Deprecated - use device.display_name instead */
19542
19574
  name: string;
19575
+ /** Represents the accessory keypad state. */
19576
+ accessory_keypad?: {
19577
+ /** Indicates if the accessory_keypad is connected to the device. */
19578
+ is_connected: boolean;
19579
+ } | undefined;
19543
19580
  appearance: {
19544
19581
  /** Name of the device as seen from the provider API and application, not settable through Seam. */
19545
19582
  name: string;
19546
19583
  };
19547
19584
  model: {
19585
+ /** Indicates whether the device can connect a accessory keypad. */
19586
+ can_connect_accessory_keypad?: boolean | undefined;
19548
19587
  /** Display name of the device model. */
19549
19588
  display_name: string;
19550
19589
  /** Display name that corresponds to the manufacturer-specific terminology for the device. */
19551
19590
  manufacturer_display_name: string;
19591
+ /** Indicates whether the device has a built in accessory keypad. */
19592
+ has_built_in_keypad?: boolean | undefined;
19552
19593
  /** Indicates whether the device supports offline access codes. */
19553
19594
  offline_access_codes_supported?: boolean | undefined;
19554
19595
  /** Indicates whether the device supports online access codes. */
@@ -20088,10 +20129,14 @@ interface Routes {
20088
20129
  /** Indicates whether it is currently possible to use offline access codes for the device. */
20089
20130
  offline_access_codes_enabled?: boolean | undefined;
20090
20131
  model: {
20132
+ /** Indicates whether the device can connect a accessory keypad. */
20133
+ can_connect_accessory_keypad?: boolean | undefined;
20091
20134
  /** Display name of the device model. */
20092
20135
  display_name: string;
20093
20136
  /** Display name that corresponds to the manufacturer-specific terminology for the device. */
20094
20137
  manufacturer_display_name: string;
20138
+ /** Indicates whether the device has a built in accessory keypad. */
20139
+ has_built_in_keypad?: boolean | undefined;
20095
20140
  /** Indicates whether the device supports offline access codes. */
20096
20141
  offline_access_codes_supported?: boolean | undefined;
20097
20142
  /** Indicates whether the device supports online access codes. */
@@ -20174,10 +20219,14 @@ interface Routes {
20174
20219
  /** Indicates whether it is currently possible to use offline access codes for the device. */
20175
20220
  offline_access_codes_enabled?: boolean | undefined;
20176
20221
  model: {
20222
+ /** Indicates whether the device can connect a accessory keypad. */
20223
+ can_connect_accessory_keypad?: boolean | undefined;
20177
20224
  /** Display name of the device model. */
20178
20225
  display_name: string;
20179
20226
  /** Display name that corresponds to the manufacturer-specific terminology for the device. */
20180
20227
  manufacturer_display_name: string;
20228
+ /** Indicates whether the device has a built in accessory keypad. */
20229
+ has_built_in_keypad?: boolean | undefined;
20181
20230
  /** Indicates whether the device supports offline access codes. */
20182
20231
  offline_access_codes_supported?: boolean | undefined;
20183
20232
  /** Indicates whether the device supports online access codes. */
@@ -20375,15 +20424,24 @@ interface Routes {
20375
20424
  online: boolean;
20376
20425
  /** Name of the device. Deprecated - use device.display_name instead */
20377
20426
  name: string;
20427
+ /** Represents the accessory keypad state. */
20428
+ accessory_keypad?: {
20429
+ /** Indicates if the accessory_keypad is connected to the device. */
20430
+ is_connected: boolean;
20431
+ } | undefined;
20378
20432
  appearance: {
20379
20433
  /** Name of the device as seen from the provider API and application, not settable through Seam. */
20380
20434
  name: string;
20381
20435
  };
20382
20436
  model: {
20437
+ /** Indicates whether the device can connect a accessory keypad. */
20438
+ can_connect_accessory_keypad?: boolean | undefined;
20383
20439
  /** Display name of the device model. */
20384
20440
  display_name: string;
20385
20441
  /** Display name that corresponds to the manufacturer-specific terminology for the device. */
20386
20442
  manufacturer_display_name: string;
20443
+ /** Indicates whether the device has a built in accessory keypad. */
20444
+ has_built_in_keypad?: boolean | undefined;
20387
20445
  /** Indicates whether the device supports offline access codes. */
20388
20446
  offline_access_codes_supported?: boolean | undefined;
20389
20447
  /** Indicates whether the device supports online access codes. */
@@ -20851,15 +20909,24 @@ interface Routes {
20851
20909
  online: boolean;
20852
20910
  /** Name of the device. Deprecated - use device.display_name instead */
20853
20911
  name: string;
20912
+ /** Represents the accessory keypad state. */
20913
+ accessory_keypad?: {
20914
+ /** Indicates if the accessory_keypad is connected to the device. */
20915
+ is_connected: boolean;
20916
+ } | undefined;
20854
20917
  appearance: {
20855
20918
  /** Name of the device as seen from the provider API and application, not settable through Seam. */
20856
20919
  name: string;
20857
20920
  };
20858
20921
  model: {
20922
+ /** Indicates whether the device can connect a accessory keypad. */
20923
+ can_connect_accessory_keypad?: boolean | undefined;
20859
20924
  /** Display name of the device model. */
20860
20925
  display_name: string;
20861
20926
  /** Display name that corresponds to the manufacturer-specific terminology for the device. */
20862
20927
  manufacturer_display_name: string;
20928
+ /** Indicates whether the device has a built in accessory keypad. */
20929
+ has_built_in_keypad?: boolean | undefined;
20863
20930
  /** Indicates whether the device supports offline access codes. */
20864
20931
  offline_access_codes_supported?: boolean | undefined;
20865
20932
  /** Indicates whether the device supports online access codes. */
@@ -21350,15 +21417,24 @@ interface Routes {
21350
21417
  online: boolean;
21351
21418
  /** Name of the device. Deprecated - use device.display_name instead */
21352
21419
  name: string;
21420
+ /** Represents the accessory keypad state. */
21421
+ accessory_keypad?: {
21422
+ /** Indicates if the accessory_keypad is connected to the device. */
21423
+ is_connected: boolean;
21424
+ } | undefined;
21353
21425
  appearance: {
21354
21426
  /** Name of the device as seen from the provider API and application, not settable through Seam. */
21355
21427
  name: string;
21356
21428
  };
21357
21429
  model: {
21430
+ /** Indicates whether the device can connect a accessory keypad. */
21431
+ can_connect_accessory_keypad?: boolean | undefined;
21358
21432
  /** Display name of the device model. */
21359
21433
  display_name: string;
21360
21434
  /** Display name that corresponds to the manufacturer-specific terminology for the device. */
21361
21435
  manufacturer_display_name: string;
21436
+ /** Indicates whether the device has a built in accessory keypad. */
21437
+ has_built_in_keypad?: boolean | undefined;
21362
21438
  /** Indicates whether the device supports offline access codes. */
21363
21439
  offline_access_codes_supported?: boolean | undefined;
21364
21440
  /** Indicates whether the device supports online access codes. */
@@ -21826,15 +21902,24 @@ interface Routes {
21826
21902
  online: boolean;
21827
21903
  /** Name of the device. Deprecated - use device.display_name instead */
21828
21904
  name: string;
21905
+ /** Represents the accessory keypad state. */
21906
+ accessory_keypad?: {
21907
+ /** Indicates if the accessory_keypad is connected to the device. */
21908
+ is_connected: boolean;
21909
+ } | undefined;
21829
21910
  appearance: {
21830
21911
  /** Name of the device as seen from the provider API and application, not settable through Seam. */
21831
21912
  name: string;
21832
21913
  };
21833
21914
  model: {
21915
+ /** Indicates whether the device can connect a accessory keypad. */
21916
+ can_connect_accessory_keypad?: boolean | undefined;
21834
21917
  /** Display name of the device model. */
21835
21918
  display_name: string;
21836
21919
  /** Display name that corresponds to the manufacturer-specific terminology for the device. */
21837
21920
  manufacturer_display_name: string;
21921
+ /** Indicates whether the device has a built in accessory keypad. */
21922
+ has_built_in_keypad?: boolean | undefined;
21838
21923
  /** Indicates whether the device supports offline access codes. */
21839
21924
  offline_access_codes_supported?: boolean | undefined;
21840
21925
  /** Indicates whether the device supports online access codes. */
@@ -22941,15 +23026,24 @@ interface Routes {
22941
23026
  online: boolean;
22942
23027
  /** Name of the device. Deprecated - use device.display_name instead */
22943
23028
  name: string;
23029
+ /** Represents the accessory keypad state. */
23030
+ accessory_keypad?: {
23031
+ /** Indicates if the accessory_keypad is connected to the device. */
23032
+ is_connected: boolean;
23033
+ } | undefined;
22944
23034
  appearance: {
22945
23035
  /** Name of the device as seen from the provider API and application, not settable through Seam. */
22946
23036
  name: string;
22947
23037
  };
22948
23038
  model: {
23039
+ /** Indicates whether the device can connect a accessory keypad. */
23040
+ can_connect_accessory_keypad?: boolean | undefined;
22949
23041
  /** Display name of the device model. */
22950
23042
  display_name: string;
22951
23043
  /** Display name that corresponds to the manufacturer-specific terminology for the device. */
22952
23044
  manufacturer_display_name: string;
23045
+ /** Indicates whether the device has a built in accessory keypad. */
23046
+ has_built_in_keypad?: boolean | undefined;
22953
23047
  /** Indicates whether the device supports offline access codes. */
22954
23048
  offline_access_codes_supported?: boolean | undefined;
22955
23049
  /** Indicates whether the device supports online access codes. */
@@ -23516,15 +23610,24 @@ interface Routes {
23516
23610
  online: boolean;
23517
23611
  /** Name of the device. Deprecated - use device.display_name instead */
23518
23612
  name: string;
23613
+ /** Represents the accessory keypad state. */
23614
+ accessory_keypad?: {
23615
+ /** Indicates if the accessory_keypad is connected to the device. */
23616
+ is_connected: boolean;
23617
+ } | undefined;
23519
23618
  appearance: {
23520
23619
  /** Name of the device as seen from the provider API and application, not settable through Seam. */
23521
23620
  name: string;
23522
23621
  };
23523
23622
  model: {
23623
+ /** Indicates whether the device can connect a accessory keypad. */
23624
+ can_connect_accessory_keypad?: boolean | undefined;
23524
23625
  /** Display name of the device model. */
23525
23626
  display_name: string;
23526
23627
  /** Display name that corresponds to the manufacturer-specific terminology for the device. */
23527
23628
  manufacturer_display_name: string;
23629
+ /** Indicates whether the device has a built in accessory keypad. */
23630
+ has_built_in_keypad?: boolean | undefined;
23528
23631
  /** Indicates whether the device supports offline access codes. */
23529
23632
  offline_access_codes_supported?: boolean | undefined;
23530
23633
  /** Indicates whether the device supports online access codes. */
@@ -24276,15 +24379,24 @@ interface Routes {
24276
24379
  online: boolean;
24277
24380
  /** Name of the device. Deprecated - use device.display_name instead */
24278
24381
  name: string;
24382
+ /** Represents the accessory keypad state. */
24383
+ accessory_keypad?: {
24384
+ /** Indicates if the accessory_keypad is connected to the device. */
24385
+ is_connected: boolean;
24386
+ } | undefined;
24279
24387
  appearance: {
24280
24388
  /** Name of the device as seen from the provider API and application, not settable through Seam. */
24281
24389
  name: string;
24282
24390
  };
24283
24391
  model: {
24392
+ /** Indicates whether the device can connect a accessory keypad. */
24393
+ can_connect_accessory_keypad?: boolean | undefined;
24284
24394
  /** Display name of the device model. */
24285
24395
  display_name: string;
24286
24396
  /** Display name that corresponds to the manufacturer-specific terminology for the device. */
24287
24397
  manufacturer_display_name: string;
24398
+ /** Indicates whether the device has a built in accessory keypad. */
24399
+ has_built_in_keypad?: boolean | undefined;
24288
24400
  /** Indicates whether the device supports offline access codes. */
24289
24401
  offline_access_codes_supported?: boolean | undefined;
24290
24402
  /** Indicates whether the device supports online access codes. */
@@ -767,6 +767,17 @@ declare const _default: {
767
767
  allOf: ({
768
768
  allOf: ({
769
769
  properties: {
770
+ accessory_keypad: {
771
+ description: string;
772
+ properties: {
773
+ is_connected: {
774
+ description: string;
775
+ type: string;
776
+ };
777
+ };
778
+ required: string[];
779
+ type: string;
780
+ };
770
781
  appearance: {
771
782
  properties: {
772
783
  name: {
@@ -822,10 +833,18 @@ declare const _default: {
822
833
  description: string;
823
834
  type: string;
824
835
  };
836
+ can_connect_accessory_keypad: {
837
+ description: string;
838
+ type: string;
839
+ };
825
840
  display_name: {
826
841
  description: string;
827
842
  type: string;
828
843
  };
844
+ has_built_in_keypad: {
845
+ description: string;
846
+ type: string;
847
+ };
829
848
  manufacturer_display_name: {
830
849
  description: string;
831
850
  type: string;
@@ -900,6 +919,7 @@ declare const _default: {
900
919
  required: string[];
901
920
  type: string;
902
921
  };
922
+ accessory_keypad?: never;
903
923
  appearance?: never;
904
924
  battery?: never;
905
925
  battery_level?: never;
@@ -2620,10 +2640,18 @@ declare const _default: {
2620
2640
  description: string;
2621
2641
  type: string;
2622
2642
  };
2643
+ can_connect_accessory_keypad: {
2644
+ description: string;
2645
+ type: string;
2646
+ };
2623
2647
  display_name: {
2624
2648
  description: string;
2625
2649
  type: string;
2626
2650
  };
2651
+ has_built_in_keypad: {
2652
+ description: string;
2653
+ type: string;
2654
+ };
2627
2655
  manufacturer_display_name: {
2628
2656
  description: string;
2629
2657
  type: string;
@@ -5638,10 +5666,6 @@ declare const _default: {
5638
5666
  format: string;
5639
5667
  type: string;
5640
5668
  };
5641
- external_type: {
5642
- enum: string[];
5643
- type: string;
5644
- };
5645
5669
  is_multi_phone_sync_credential: {
5646
5670
  default: boolean;
5647
5671
  type: string;
@@ -645,6 +645,17 @@ export default {
645
645
  allOf: [
646
646
  {
647
647
  properties: {
648
+ accessory_keypad: {
649
+ description: 'Represents the accessory keypad state.',
650
+ properties: {
651
+ is_connected: {
652
+ description: 'Indicates if the accessory_keypad is connected to the device.',
653
+ type: 'boolean',
654
+ },
655
+ },
656
+ required: ['is_connected'],
657
+ type: 'object',
658
+ },
648
659
  appearance: {
649
660
  properties: {
650
661
  name: {
@@ -696,10 +707,18 @@ export default {
696
707
  description: 'Indicates whether the device supports an accessory keypad.',
697
708
  type: 'boolean',
698
709
  },
710
+ can_connect_accessory_keypad: {
711
+ description: 'Indicates whether the device can connect a accessory keypad.',
712
+ type: 'boolean',
713
+ },
699
714
  display_name: {
700
715
  description: 'Display name of the device model.',
701
716
  type: 'string',
702
717
  },
718
+ has_built_in_keypad: {
719
+ description: 'Indicates whether the device has a built in accessory keypad.',
720
+ type: 'boolean',
721
+ },
703
722
  manufacturer_display_name: {
704
723
  description: 'Display name that corresponds to the manufacturer-specific terminology for the device.',
705
724
  type: 'string',
@@ -2178,10 +2197,18 @@ export default {
2178
2197
  description: 'Indicates whether the device supports an accessory keypad.',
2179
2198
  type: 'boolean',
2180
2199
  },
2200
+ can_connect_accessory_keypad: {
2201
+ description: 'Indicates whether the device can connect a accessory keypad.',
2202
+ type: 'boolean',
2203
+ },
2181
2204
  display_name: {
2182
2205
  description: 'Display name of the device model.',
2183
2206
  type: 'string',
2184
2207
  },
2208
+ has_built_in_keypad: {
2209
+ description: 'Indicates whether the device has a built in accessory keypad.',
2210
+ type: 'boolean',
2211
+ },
2185
2212
  manufacturer_display_name: {
2186
2213
  description: 'Display name that corresponds to the manufacturer-specific terminology for the device.',
2187
2214
  type: 'string',
@@ -4166,7 +4193,6 @@ export default {
4166
4193
  acs_user_id: { format: 'uuid', type: 'string' },
4167
4194
  code: { pattern: '^\\d+$', type: 'string' },
4168
4195
  ends_at: { format: 'date-time', type: 'string' },
4169
- external_type: { enum: ['visionline_card'], type: 'string' },
4170
4196
  is_multi_phone_sync_credential: {
4171
4197
  default: false,
4172
4198
  type: 'boolean',