@seamapi/types 1.704.0 → 1.705.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.
@@ -11294,6 +11294,26 @@ export type Routes = {
11294
11294
  custom_metadata: {
11295
11295
  [x: string]: string | boolean;
11296
11296
  };
11297
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
11298
+ device_provider?: {
11299
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
11300
+ provider_category: string;
11301
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
11302
+ device_provider_name: string;
11303
+ /** Display name for the device provider type. */
11304
+ display_name: string;
11305
+ /** Image URL for the device provider. */
11306
+ image_url?: string | undefined;
11307
+ } | undefined;
11308
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
11309
+ device_manufacturer?: {
11310
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
11311
+ manufacturer: string;
11312
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
11313
+ display_name: string;
11314
+ /** Image URL for the manufacturer logo. */
11315
+ image_url?: string | undefined;
11316
+ } | undefined;
11297
11317
  can_remotely_unlock?: boolean | undefined;
11298
11318
  can_remotely_lock?: boolean | undefined;
11299
11319
  can_program_offline_access_codes?: boolean | undefined;
@@ -11460,6 +11480,8 @@ export type Routes = {
11460
11480
  account_type?: string | undefined;
11461
11481
  /** Display name for the connected account type. */
11462
11482
  account_type_display_name: string;
11483
+ /** Logo URL for the connected account provider. */
11484
+ image_url?: string | undefined;
11463
11485
  /** Display name for the connected account. */
11464
11486
  display_name: string;
11465
11487
  /** Errors associated with the connected account. */
@@ -14753,6 +14775,26 @@ export type Routes = {
14753
14775
  custom_metadata: {
14754
14776
  [x: string]: string | boolean;
14755
14777
  };
14778
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
14779
+ device_provider?: {
14780
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
14781
+ provider_category: string;
14782
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
14783
+ device_provider_name: string;
14784
+ /** Display name for the device provider type. */
14785
+ display_name: string;
14786
+ /** Image URL for the device provider. */
14787
+ image_url?: string | undefined;
14788
+ } | undefined;
14789
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
14790
+ device_manufacturer?: {
14791
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
14792
+ manufacturer: string;
14793
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
14794
+ display_name: string;
14795
+ /** Image URL for the manufacturer logo. */
14796
+ image_url?: string | undefined;
14797
+ } | undefined;
14756
14798
  can_remotely_unlock?: boolean | undefined;
14757
14799
  can_remotely_lock?: boolean | undefined;
14758
14800
  can_program_offline_access_codes?: boolean | undefined;
@@ -26033,6 +26075,8 @@ export type Routes = {
26033
26075
  account_type?: string | undefined;
26034
26076
  /** Display name for the connected account type. */
26035
26077
  account_type_display_name: string;
26078
+ /** Logo URL for the connected account provider. */
26079
+ image_url?: string | undefined;
26036
26080
  /** Display name for the connected account. */
26037
26081
  display_name: string;
26038
26082
  /** Errors associated with the connected account. */
@@ -26188,6 +26232,8 @@ export type Routes = {
26188
26232
  account_type?: string | undefined;
26189
26233
  /** Display name for the connected account type. */
26190
26234
  account_type_display_name: string;
26235
+ /** Logo URL for the connected account provider. */
26236
+ image_url?: string | undefined;
26191
26237
  /** Display name for the connected account. */
26192
26238
  display_name: string;
26193
26239
  /** Errors associated with the connected account. */
@@ -26377,6 +26423,8 @@ export type Routes = {
26377
26423
  account_type?: string | undefined;
26378
26424
  /** Display name for the connected account type. */
26379
26425
  account_type_display_name: string;
26426
+ /** Logo URL for the connected account provider. */
26427
+ image_url?: string | undefined;
26380
26428
  /** Display name for the connected account. */
26381
26429
  display_name: string;
26382
26430
  /** Errors associated with the connected account. */
@@ -28481,6 +28529,26 @@ export type Routes = {
28481
28529
  custom_metadata: {
28482
28530
  [x: string]: string | boolean;
28483
28531
  };
28532
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
28533
+ device_provider?: {
28534
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
28535
+ provider_category: string;
28536
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
28537
+ device_provider_name: string;
28538
+ /** Display name for the device provider type. */
28539
+ display_name: string;
28540
+ /** Image URL for the device provider. */
28541
+ image_url?: string | undefined;
28542
+ } | undefined;
28543
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
28544
+ device_manufacturer?: {
28545
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
28546
+ manufacturer: string;
28547
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
28548
+ display_name: string;
28549
+ /** Image URL for the manufacturer logo. */
28550
+ image_url?: string | undefined;
28551
+ } | undefined;
28484
28552
  can_remotely_unlock?: boolean | undefined;
28485
28553
  can_remotely_lock?: boolean | undefined;
28486
28554
  can_program_offline_access_codes?: boolean | undefined;
@@ -29774,6 +29842,26 @@ export type Routes = {
29774
29842
  custom_metadata: {
29775
29843
  [x: string]: string | boolean;
29776
29844
  };
29845
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
29846
+ device_provider?: {
29847
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
29848
+ provider_category: string;
29849
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
29850
+ device_provider_name: string;
29851
+ /** Display name for the device provider type. */
29852
+ display_name: string;
29853
+ /** Image URL for the device provider. */
29854
+ image_url?: string | undefined;
29855
+ } | undefined;
29856
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
29857
+ device_manufacturer?: {
29858
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
29859
+ manufacturer: string;
29860
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
29861
+ display_name: string;
29862
+ /** Image URL for the manufacturer logo. */
29863
+ image_url?: string | undefined;
29864
+ } | undefined;
29777
29865
  can_remotely_unlock?: boolean | undefined;
29778
29866
  can_remotely_lock?: boolean | undefined;
29779
29867
  can_program_offline_access_codes?: boolean | undefined;
@@ -36297,6 +36385,26 @@ export type Routes = {
36297
36385
  custom_metadata: {
36298
36386
  [x: string]: string | boolean;
36299
36387
  };
36388
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
36389
+ device_provider?: {
36390
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
36391
+ provider_category: string;
36392
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
36393
+ device_provider_name: string;
36394
+ /** Display name for the device provider type. */
36395
+ display_name: string;
36396
+ /** Image URL for the device provider. */
36397
+ image_url?: string | undefined;
36398
+ } | undefined;
36399
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
36400
+ device_manufacturer?: {
36401
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
36402
+ manufacturer: string;
36403
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
36404
+ display_name: string;
36405
+ /** Image URL for the manufacturer logo. */
36406
+ image_url?: string | undefined;
36407
+ } | undefined;
36300
36408
  can_remotely_unlock?: boolean | undefined;
36301
36409
  can_remotely_lock?: boolean | undefined;
36302
36410
  can_program_offline_access_codes?: boolean | undefined;
@@ -37540,6 +37648,26 @@ export type Routes = {
37540
37648
  custom_metadata: {
37541
37649
  [x: string]: string | boolean;
37542
37650
  };
37651
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
37652
+ device_provider?: {
37653
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
37654
+ provider_category: string;
37655
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
37656
+ device_provider_name: string;
37657
+ /** Display name for the device provider type. */
37658
+ display_name: string;
37659
+ /** Image URL for the device provider. */
37660
+ image_url?: string | undefined;
37661
+ } | undefined;
37662
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
37663
+ device_manufacturer?: {
37664
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
37665
+ manufacturer: string;
37666
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
37667
+ display_name: string;
37668
+ /** Image URL for the manufacturer logo. */
37669
+ image_url?: string | undefined;
37670
+ } | undefined;
37543
37671
  can_remotely_unlock?: boolean | undefined;
37544
37672
  can_remotely_lock?: boolean | undefined;
37545
37673
  can_program_offline_access_codes?: boolean | undefined;
@@ -38833,6 +38961,26 @@ export type Routes = {
38833
38961
  custom_metadata: {
38834
38962
  [x: string]: string | boolean;
38835
38963
  };
38964
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
38965
+ device_provider?: {
38966
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
38967
+ provider_category: string;
38968
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
38969
+ device_provider_name: string;
38970
+ /** Display name for the device provider type. */
38971
+ display_name: string;
38972
+ /** Image URL for the device provider. */
38973
+ image_url?: string | undefined;
38974
+ } | undefined;
38975
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
38976
+ device_manufacturer?: {
38977
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
38978
+ manufacturer: string;
38979
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
38980
+ display_name: string;
38981
+ /** Image URL for the manufacturer logo. */
38982
+ image_url?: string | undefined;
38983
+ } | undefined;
38836
38984
  can_remotely_unlock?: boolean | undefined;
38837
38985
  can_remotely_lock?: boolean | undefined;
38838
38986
  can_program_offline_access_codes?: boolean | undefined;
@@ -40075,6 +40223,26 @@ export type Routes = {
40075
40223
  custom_metadata: {
40076
40224
  [x: string]: string | boolean;
40077
40225
  };
40226
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
40227
+ device_provider?: {
40228
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
40229
+ provider_category: string;
40230
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
40231
+ device_provider_name: string;
40232
+ /** Display name for the device provider type. */
40233
+ display_name: string;
40234
+ /** Image URL for the device provider. */
40235
+ image_url?: string | undefined;
40236
+ } | undefined;
40237
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
40238
+ device_manufacturer?: {
40239
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
40240
+ manufacturer: string;
40241
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
40242
+ display_name: string;
40243
+ /** Image URL for the manufacturer logo. */
40244
+ image_url?: string | undefined;
40245
+ } | undefined;
40078
40246
  can_remotely_unlock?: boolean | undefined;
40079
40247
  can_remotely_lock?: boolean | undefined;
40080
40248
  can_program_offline_access_codes?: boolean | undefined;
@@ -46450,6 +46618,26 @@ export type Routes = {
46450
46618
  custom_metadata: {
46451
46619
  [x: string]: string | boolean;
46452
46620
  };
46621
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
46622
+ device_provider?: {
46623
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
46624
+ provider_category: string;
46625
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
46626
+ device_provider_name: string;
46627
+ /** Display name for the device provider type. */
46628
+ display_name: string;
46629
+ /** Image URL for the device provider. */
46630
+ image_url?: string | undefined;
46631
+ } | undefined;
46632
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
46633
+ device_manufacturer?: {
46634
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
46635
+ manufacturer: string;
46636
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
46637
+ display_name: string;
46638
+ /** Image URL for the manufacturer logo. */
46639
+ image_url?: string | undefined;
46640
+ } | undefined;
46453
46641
  can_remotely_unlock?: boolean | undefined;
46454
46642
  can_remotely_lock?: boolean | undefined;
46455
46643
  can_program_offline_access_codes?: boolean | undefined;
@@ -47692,6 +47880,26 @@ export type Routes = {
47692
47880
  custom_metadata: {
47693
47881
  [x: string]: string | boolean;
47694
47882
  };
47883
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
47884
+ device_provider?: {
47885
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
47886
+ provider_category: string;
47887
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
47888
+ device_provider_name: string;
47889
+ /** Display name for the device provider type. */
47890
+ display_name: string;
47891
+ /** Image URL for the device provider. */
47892
+ image_url?: string | undefined;
47893
+ } | undefined;
47894
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
47895
+ device_manufacturer?: {
47896
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
47897
+ manufacturer: string;
47898
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
47899
+ display_name: string;
47900
+ /** Image URL for the manufacturer logo. */
47901
+ image_url?: string | undefined;
47902
+ } | undefined;
47695
47903
  can_remotely_unlock?: boolean | undefined;
47696
47904
  can_remotely_lock?: boolean | undefined;
47697
47905
  can_program_offline_access_codes?: boolean | undefined;
@@ -57426,6 +57634,26 @@ export type Routes = {
57426
57634
  custom_metadata: {
57427
57635
  [x: string]: string | boolean;
57428
57636
  };
57637
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
57638
+ device_provider?: {
57639
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
57640
+ provider_category: string;
57641
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
57642
+ device_provider_name: string;
57643
+ /** Display name for the device provider type. */
57644
+ display_name: string;
57645
+ /** Image URL for the device provider. */
57646
+ image_url?: string | undefined;
57647
+ } | undefined;
57648
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
57649
+ device_manufacturer?: {
57650
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
57651
+ manufacturer: string;
57652
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
57653
+ display_name: string;
57654
+ /** Image URL for the manufacturer logo. */
57655
+ image_url?: string | undefined;
57656
+ } | undefined;
57429
57657
  can_remotely_unlock?: boolean | undefined;
57430
57658
  can_remotely_lock?: boolean | undefined;
57431
57659
  can_program_offline_access_codes?: boolean | undefined;
@@ -57592,6 +57820,8 @@ export type Routes = {
57592
57820
  account_type?: string | undefined;
57593
57821
  /** Display name for the connected account type. */
57594
57822
  account_type_display_name: string;
57823
+ /** Logo URL for the connected account provider. */
57824
+ image_url?: string | undefined;
57595
57825
  /** Display name for the connected account. */
57596
57826
  display_name: string;
57597
57827
  /** Errors associated with the connected account. */
@@ -63117,6 +63347,26 @@ export type Routes = {
63117
63347
  custom_metadata: {
63118
63348
  [x: string]: string | boolean;
63119
63349
  };
63350
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
63351
+ device_provider?: {
63352
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
63353
+ provider_category: string;
63354
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
63355
+ device_provider_name: string;
63356
+ /** Display name for the device provider type. */
63357
+ display_name: string;
63358
+ /** Image URL for the device provider. */
63359
+ image_url?: string | undefined;
63360
+ } | undefined;
63361
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
63362
+ device_manufacturer?: {
63363
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
63364
+ manufacturer: string;
63365
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
63366
+ display_name: string;
63367
+ /** Image URL for the manufacturer logo. */
63368
+ image_url?: string | undefined;
63369
+ } | undefined;
63120
63370
  can_remotely_unlock?: boolean | undefined;
63121
63371
  can_remotely_lock?: boolean | undefined;
63122
63372
  can_program_offline_access_codes?: boolean | undefined;
@@ -66964,6 +67214,26 @@ export type Routes = {
66964
67214
  custom_metadata: {
66965
67215
  [x: string]: string | boolean;
66966
67216
  };
67217
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
67218
+ device_provider?: {
67219
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
67220
+ provider_category: string;
67221
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
67222
+ device_provider_name: string;
67223
+ /** Display name for the device provider type. */
67224
+ display_name: string;
67225
+ /** Image URL for the device provider. */
67226
+ image_url?: string | undefined;
67227
+ } | undefined;
67228
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
67229
+ device_manufacturer?: {
67230
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
67231
+ manufacturer: string;
67232
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
67233
+ display_name: string;
67234
+ /** Image URL for the manufacturer logo. */
67235
+ image_url?: string | undefined;
67236
+ } | undefined;
66967
67237
  can_remotely_unlock?: boolean | undefined;
66968
67238
  can_remotely_lock?: boolean | undefined;
66969
67239
  can_program_offline_access_codes?: boolean | undefined;
@@ -68206,6 +68476,26 @@ export type Routes = {
68206
68476
  custom_metadata: {
68207
68477
  [x: string]: string | boolean;
68208
68478
  };
68479
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
68480
+ device_provider?: {
68481
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
68482
+ provider_category: string;
68483
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
68484
+ device_provider_name: string;
68485
+ /** Display name for the device provider type. */
68486
+ display_name: string;
68487
+ /** Image URL for the device provider. */
68488
+ image_url?: string | undefined;
68489
+ } | undefined;
68490
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
68491
+ device_manufacturer?: {
68492
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
68493
+ manufacturer: string;
68494
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
68495
+ display_name: string;
68496
+ /** Image URL for the manufacturer logo. */
68497
+ image_url?: string | undefined;
68498
+ } | undefined;
68209
68499
  can_remotely_unlock?: boolean | undefined;
68210
68500
  can_remotely_lock?: boolean | undefined;
68211
68501
  can_program_offline_access_codes?: boolean | undefined;
@@ -75468,6 +75758,26 @@ export type Routes = {
75468
75758
  custom_metadata: {
75469
75759
  [x: string]: string | boolean;
75470
75760
  };
75761
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
75762
+ device_provider?: {
75763
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
75764
+ provider_category: string;
75765
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
75766
+ device_provider_name: string;
75767
+ /** Display name for the device provider type. */
75768
+ display_name: string;
75769
+ /** Image URL for the device provider. */
75770
+ image_url?: string | undefined;
75771
+ } | undefined;
75772
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
75773
+ device_manufacturer?: {
75774
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
75775
+ manufacturer: string;
75776
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
75777
+ display_name: string;
75778
+ /** Image URL for the manufacturer logo. */
75779
+ image_url?: string | undefined;
75780
+ } | undefined;
75471
75781
  can_remotely_unlock?: boolean | undefined;
75472
75782
  can_remotely_lock?: boolean | undefined;
75473
75783
  can_program_offline_access_codes?: boolean | undefined;
@@ -76712,6 +77022,26 @@ export type Routes = {
76712
77022
  custom_metadata: {
76713
77023
  [x: string]: string | boolean;
76714
77024
  };
77025
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
77026
+ device_provider?: {
77027
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
77028
+ provider_category: string;
77029
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
77030
+ device_provider_name: string;
77031
+ /** Display name for the device provider type. */
77032
+ display_name: string;
77033
+ /** Image URL for the device provider. */
77034
+ image_url?: string | undefined;
77035
+ } | undefined;
77036
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
77037
+ device_manufacturer?: {
77038
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
77039
+ manufacturer: string;
77040
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
77041
+ display_name: string;
77042
+ /** Image URL for the manufacturer logo. */
77043
+ image_url?: string | undefined;
77044
+ } | undefined;
76715
77045
  can_remotely_unlock?: boolean | undefined;
76716
77046
  can_remotely_lock?: boolean | undefined;
76717
77047
  can_program_offline_access_codes?: boolean | undefined;
@@ -78921,6 +79251,26 @@ export type Routes = {
78921
79251
  custom_metadata: {
78922
79252
  [x: string]: string | boolean;
78923
79253
  };
79254
+ /** Provider of the device. Represents the third-party service through which the device is controlled. */
79255
+ device_provider?: {
79256
+ /** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
79257
+ provider_category: string;
79258
+ /** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
79259
+ device_provider_name: string;
79260
+ /** Display name for the device provider type. */
79261
+ display_name: string;
79262
+ /** Image URL for the device provider. */
79263
+ image_url?: string | undefined;
79264
+ } | undefined;
79265
+ /** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
79266
+ device_manufacturer?: {
79267
+ /** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
79268
+ manufacturer: string;
79269
+ /** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
79270
+ display_name: string;
79271
+ /** Image URL for the manufacturer logo. */
79272
+ image_url?: string | undefined;
79273
+ } | undefined;
78924
79274
  can_remotely_unlock?: boolean | undefined;
78925
79275
  can_remotely_lock?: boolean | undefined;
78926
79276
  can_program_offline_access_codes?: boolean | undefined;
@@ -81611,6 +81961,8 @@ export type Routes = {
81611
81961
  account_type?: string | undefined;
81612
81962
  /** Display name for the connected account type. */
81613
81963
  account_type_display_name: string;
81964
+ /** Logo URL for the connected account provider. */
81965
+ image_url?: string | undefined;
81614
81966
  /** Display name for the connected account. */
81615
81967
  display_name: string;
81616
81968
  /** Errors associated with the connected account. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.704.0",
3
+ "version": "1.705.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -302,6 +302,11 @@ export const connected_account = z.object({
302
302
  account_type_display_name: z
303
303
  .string()
304
304
  .describe('Display name for the connected account type.'),
305
+ image_url: z
306
+ .string()
307
+ .url()
308
+ .optional()
309
+ .describe('Logo URL for the connected account provider.'),
305
310
  display_name: z.string().describe('Display name for the connected account.'),
306
311
  errors: z
307
312
  .array(connected_account_error)
@@ -528,6 +528,57 @@ const _device_warning_map = z.object({
528
528
 
529
529
  export type DeviceWarningMap = z.infer<typeof _device_warning_map>
530
530
 
531
+ export const device_provider_info = z
532
+ .object({
533
+ provider_category: z
534
+ .string()
535
+ .describe(
536
+ 'Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations.',
537
+ ),
538
+ device_provider_name: z
539
+ .string()
540
+ .describe(
541
+ 'Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on.',
542
+ ),
543
+ display_name: z
544
+ .string()
545
+ .describe('Display name for the device provider type.'),
546
+ image_url: z
547
+ .string()
548
+ .url()
549
+ .optional()
550
+ .describe('Image URL for the device provider.'),
551
+ })
552
+ .describe(
553
+ 'Provider of the device. Represents the third-party service through which the device is controlled.',
554
+ )
555
+
556
+ export type DeviceProviderInfo = z.infer<typeof device_provider_info>
557
+
558
+ export const device_manufacturer_info = z
559
+ .object({
560
+ manufacturer: z
561
+ .string()
562
+ .describe(
563
+ 'Manufacturer identifier, such as `august`, `yale`, `salto`, and so on.',
564
+ ),
565
+ display_name: z
566
+ .string()
567
+ .describe(
568
+ 'Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on.',
569
+ ),
570
+ image_url: z
571
+ .string()
572
+ .url()
573
+ .optional()
574
+ .describe('Image URL for the manufacturer logo.'),
575
+ })
576
+ .describe(
577
+ 'Manufacturer of the device. Represents the hardware brand, which may differ from the provider.',
578
+ )
579
+
580
+ export type DeviceManufacturerInfo = z.infer<typeof device_manufacturer_info>
581
+
531
582
  export const common_device_properties = z.object({
532
583
  online: z.boolean().describe('Indicates whether the device is online.'),
533
584
  name: z.string().describe(`
@@ -866,6 +917,18 @@ export const device = z
866
917
  'Indicates whether Seam manages the device. See also [Managed and Unmanaged Devices](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices).',
867
918
  ),
868
919
  custom_metadata,
920
+ device_provider: device_provider_info.optional().describe(`
921
+ ---
922
+ property_group_key: hardware
923
+ ---
924
+ Provider of the device. Represents the third-party service through which the device is controlled.
925
+ `),
926
+ device_manufacturer: device_manufacturer_info.optional().describe(`
927
+ ---
928
+ property_group_key: hardware
929
+ ---
930
+ Manufacturer of the device. Represents the hardware brand, which may differ from the provider.
931
+ `),
869
932
  })
870
933
  .merge(device_capability_flags).describe(`
871
934
  ---