@seamapi/types 1.704.0 → 1.706.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.
- package/dist/connect.cjs +100 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +658 -56
- package/dist/index.cjs +100 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +2 -2
- package/lib/seam/connect/models/batch.d.ts +140 -33
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +5 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +94 -12
- package/lib/seam/connect/models/devices/device.js +45 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +42 -13
- package/lib/seam/connect/openapi.d.ts +59 -0
- package/lib/seam/connect/openapi.js +63 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +353 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +5 -0
- package/src/lib/seam/connect/models/devices/device.ts +63 -0
- package/src/lib/seam/connect/openapi.ts +69 -0
- package/src/lib/seam/connect/route-types.ts +421 -0
|
@@ -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;
|
|
@@ -55056,6 +55264,7 @@ export type Routes = {
|
|
|
55056
55264
|
is_issued: boolean;
|
|
55057
55265
|
is_card_encoding_required?: boolean | undefined;
|
|
55058
55266
|
code?: (string | null) | undefined;
|
|
55267
|
+
instant_key_url?: string | undefined;
|
|
55059
55268
|
}[];
|
|
55060
55269
|
};
|
|
55061
55270
|
};
|
|
@@ -57426,6 +57635,26 @@ export type Routes = {
|
|
|
57426
57635
|
custom_metadata: {
|
|
57427
57636
|
[x: string]: string | boolean;
|
|
57428
57637
|
};
|
|
57638
|
+
/** Provider of the device. Represents the third-party service through which the device is controlled. */
|
|
57639
|
+
device_provider?: {
|
|
57640
|
+
/** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
|
|
57641
|
+
provider_category: string;
|
|
57642
|
+
/** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
|
|
57643
|
+
device_provider_name: string;
|
|
57644
|
+
/** Display name for the device provider type. */
|
|
57645
|
+
display_name: string;
|
|
57646
|
+
/** Image URL for the device provider. */
|
|
57647
|
+
image_url?: string | undefined;
|
|
57648
|
+
} | undefined;
|
|
57649
|
+
/** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
|
|
57650
|
+
device_manufacturer?: {
|
|
57651
|
+
/** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
|
|
57652
|
+
manufacturer: string;
|
|
57653
|
+
/** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
|
|
57654
|
+
display_name: string;
|
|
57655
|
+
/** Image URL for the manufacturer logo. */
|
|
57656
|
+
image_url?: string | undefined;
|
|
57657
|
+
} | undefined;
|
|
57429
57658
|
can_remotely_unlock?: boolean | undefined;
|
|
57430
57659
|
can_remotely_lock?: boolean | undefined;
|
|
57431
57660
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -57592,6 +57821,8 @@ export type Routes = {
|
|
|
57592
57821
|
account_type?: string | undefined;
|
|
57593
57822
|
/** Display name for the connected account type. */
|
|
57594
57823
|
account_type_display_name: string;
|
|
57824
|
+
/** Logo URL for the connected account provider. */
|
|
57825
|
+
image_url?: string | undefined;
|
|
57595
57826
|
/** Display name for the connected account. */
|
|
57596
57827
|
display_name: string;
|
|
57597
57828
|
/** Errors associated with the connected account. */
|
|
@@ -63117,6 +63348,26 @@ export type Routes = {
|
|
|
63117
63348
|
custom_metadata: {
|
|
63118
63349
|
[x: string]: string | boolean;
|
|
63119
63350
|
};
|
|
63351
|
+
/** Provider of the device. Represents the third-party service through which the device is controlled. */
|
|
63352
|
+
device_provider?: {
|
|
63353
|
+
/** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
|
|
63354
|
+
provider_category: string;
|
|
63355
|
+
/** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
|
|
63356
|
+
device_provider_name: string;
|
|
63357
|
+
/** Display name for the device provider type. */
|
|
63358
|
+
display_name: string;
|
|
63359
|
+
/** Image URL for the device provider. */
|
|
63360
|
+
image_url?: string | undefined;
|
|
63361
|
+
} | undefined;
|
|
63362
|
+
/** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
|
|
63363
|
+
device_manufacturer?: {
|
|
63364
|
+
/** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
|
|
63365
|
+
manufacturer: string;
|
|
63366
|
+
/** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
|
|
63367
|
+
display_name: string;
|
|
63368
|
+
/** Image URL for the manufacturer logo. */
|
|
63369
|
+
image_url?: string | undefined;
|
|
63370
|
+
} | undefined;
|
|
63120
63371
|
can_remotely_unlock?: boolean | undefined;
|
|
63121
63372
|
can_remotely_lock?: boolean | undefined;
|
|
63122
63373
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -66964,6 +67215,26 @@ export type Routes = {
|
|
|
66964
67215
|
custom_metadata: {
|
|
66965
67216
|
[x: string]: string | boolean;
|
|
66966
67217
|
};
|
|
67218
|
+
/** Provider of the device. Represents the third-party service through which the device is controlled. */
|
|
67219
|
+
device_provider?: {
|
|
67220
|
+
/** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
|
|
67221
|
+
provider_category: string;
|
|
67222
|
+
/** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
|
|
67223
|
+
device_provider_name: string;
|
|
67224
|
+
/** Display name for the device provider type. */
|
|
67225
|
+
display_name: string;
|
|
67226
|
+
/** Image URL for the device provider. */
|
|
67227
|
+
image_url?: string | undefined;
|
|
67228
|
+
} | undefined;
|
|
67229
|
+
/** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
|
|
67230
|
+
device_manufacturer?: {
|
|
67231
|
+
/** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
|
|
67232
|
+
manufacturer: string;
|
|
67233
|
+
/** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
|
|
67234
|
+
display_name: string;
|
|
67235
|
+
/** Image URL for the manufacturer logo. */
|
|
67236
|
+
image_url?: string | undefined;
|
|
67237
|
+
} | undefined;
|
|
66967
67238
|
can_remotely_unlock?: boolean | undefined;
|
|
66968
67239
|
can_remotely_lock?: boolean | undefined;
|
|
66969
67240
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -68206,6 +68477,26 @@ export type Routes = {
|
|
|
68206
68477
|
custom_metadata: {
|
|
68207
68478
|
[x: string]: string | boolean;
|
|
68208
68479
|
};
|
|
68480
|
+
/** Provider of the device. Represents the third-party service through which the device is controlled. */
|
|
68481
|
+
device_provider?: {
|
|
68482
|
+
/** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
|
|
68483
|
+
provider_category: string;
|
|
68484
|
+
/** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
|
|
68485
|
+
device_provider_name: string;
|
|
68486
|
+
/** Display name for the device provider type. */
|
|
68487
|
+
display_name: string;
|
|
68488
|
+
/** Image URL for the device provider. */
|
|
68489
|
+
image_url?: string | undefined;
|
|
68490
|
+
} | undefined;
|
|
68491
|
+
/** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
|
|
68492
|
+
device_manufacturer?: {
|
|
68493
|
+
/** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
|
|
68494
|
+
manufacturer: string;
|
|
68495
|
+
/** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
|
|
68496
|
+
display_name: string;
|
|
68497
|
+
/** Image URL for the manufacturer logo. */
|
|
68498
|
+
image_url?: string | undefined;
|
|
68499
|
+
} | undefined;
|
|
68209
68500
|
can_remotely_unlock?: boolean | undefined;
|
|
68210
68501
|
can_remotely_lock?: boolean | undefined;
|
|
68211
68502
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -75468,6 +75759,26 @@ export type Routes = {
|
|
|
75468
75759
|
custom_metadata: {
|
|
75469
75760
|
[x: string]: string | boolean;
|
|
75470
75761
|
};
|
|
75762
|
+
/** Provider of the device. Represents the third-party service through which the device is controlled. */
|
|
75763
|
+
device_provider?: {
|
|
75764
|
+
/** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
|
|
75765
|
+
provider_category: string;
|
|
75766
|
+
/** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
|
|
75767
|
+
device_provider_name: string;
|
|
75768
|
+
/** Display name for the device provider type. */
|
|
75769
|
+
display_name: string;
|
|
75770
|
+
/** Image URL for the device provider. */
|
|
75771
|
+
image_url?: string | undefined;
|
|
75772
|
+
} | undefined;
|
|
75773
|
+
/** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
|
|
75774
|
+
device_manufacturer?: {
|
|
75775
|
+
/** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
|
|
75776
|
+
manufacturer: string;
|
|
75777
|
+
/** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
|
|
75778
|
+
display_name: string;
|
|
75779
|
+
/** Image URL for the manufacturer logo. */
|
|
75780
|
+
image_url?: string | undefined;
|
|
75781
|
+
} | undefined;
|
|
75471
75782
|
can_remotely_unlock?: boolean | undefined;
|
|
75472
75783
|
can_remotely_lock?: boolean | undefined;
|
|
75473
75784
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -76712,6 +77023,26 @@ export type Routes = {
|
|
|
76712
77023
|
custom_metadata: {
|
|
76713
77024
|
[x: string]: string | boolean;
|
|
76714
77025
|
};
|
|
77026
|
+
/** Provider of the device. Represents the third-party service through which the device is controlled. */
|
|
77027
|
+
device_provider?: {
|
|
77028
|
+
/** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
|
|
77029
|
+
provider_category: string;
|
|
77030
|
+
/** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
|
|
77031
|
+
device_provider_name: string;
|
|
77032
|
+
/** Display name for the device provider type. */
|
|
77033
|
+
display_name: string;
|
|
77034
|
+
/** Image URL for the device provider. */
|
|
77035
|
+
image_url?: string | undefined;
|
|
77036
|
+
} | undefined;
|
|
77037
|
+
/** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
|
|
77038
|
+
device_manufacturer?: {
|
|
77039
|
+
/** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
|
|
77040
|
+
manufacturer: string;
|
|
77041
|
+
/** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
|
|
77042
|
+
display_name: string;
|
|
77043
|
+
/** Image URL for the manufacturer logo. */
|
|
77044
|
+
image_url?: string | undefined;
|
|
77045
|
+
} | undefined;
|
|
76715
77046
|
can_remotely_unlock?: boolean | undefined;
|
|
76716
77047
|
can_remotely_lock?: boolean | undefined;
|
|
76717
77048
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -78921,6 +79252,26 @@ export type Routes = {
|
|
|
78921
79252
|
custom_metadata: {
|
|
78922
79253
|
[x: string]: string | boolean;
|
|
78923
79254
|
};
|
|
79255
|
+
/** Provider of the device. Represents the third-party service through which the device is controlled. */
|
|
79256
|
+
device_provider?: {
|
|
79257
|
+
/** Provider category. Indicates the third-party provider type, such as `stable`, for stable integrations, or `internal`, for internal integrations. */
|
|
79258
|
+
provider_category: string;
|
|
79259
|
+
/** Device provider name. Corresponds to the integration type, such as `august`, `schlage`, `yale_access`, and so on. */
|
|
79260
|
+
device_provider_name: string;
|
|
79261
|
+
/** Display name for the device provider type. */
|
|
79262
|
+
display_name: string;
|
|
79263
|
+
/** Image URL for the device provider. */
|
|
79264
|
+
image_url?: string | undefined;
|
|
79265
|
+
} | undefined;
|
|
79266
|
+
/** Manufacturer of the device. Represents the hardware brand, which may differ from the provider. */
|
|
79267
|
+
device_manufacturer?: {
|
|
79268
|
+
/** Manufacturer identifier, such as `august`, `yale`, `salto`, and so on. */
|
|
79269
|
+
manufacturer: string;
|
|
79270
|
+
/** Display name for the manufacturer, such as `August`, `Yale`, `Salto`, and so on. */
|
|
79271
|
+
display_name: string;
|
|
79272
|
+
/** Image URL for the manufacturer logo. */
|
|
79273
|
+
image_url?: string | undefined;
|
|
79274
|
+
} | undefined;
|
|
78924
79275
|
can_remotely_unlock?: boolean | undefined;
|
|
78925
79276
|
can_remotely_lock?: boolean | undefined;
|
|
78926
79277
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -81611,6 +81962,8 @@ export type Routes = {
|
|
|
81611
81962
|
account_type?: string | undefined;
|
|
81612
81963
|
/** Display name for the connected account type. */
|
|
81613
81964
|
account_type_display_name: string;
|
|
81965
|
+
/** Logo URL for the connected account provider. */
|
|
81966
|
+
image_url?: string | undefined;
|
|
81614
81967
|
/** Display name for the connected account. */
|
|
81615
81968
|
display_name: string;
|
|
81616
81969
|
/** Errors associated with the connected account. */
|
package/package.json
CHANGED
|
@@ -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
|
---
|