@seamapi/types 1.457.0 → 1.458.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 +56 -231
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +475 -310
- package/dist/devicedb.d.cts +56 -56
- package/dist/index.cjs +56 -231
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -10
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +15 -6
- package/lib/seam/connect/models/acs/metadata/salto-space.js +13 -4
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batches/access_grants.d.ts +83 -63
- package/lib/seam/connect/models/batches/access_methods.d.ts +83 -63
- package/lib/seam/connect/models/batches/batch.d.ts +249 -189
- package/lib/seam/connect/models/batches/spaces.d.ts +83 -63
- package/lib/seam/connect/models/devices/device-metadata.d.ts +22 -22
- package/lib/seam/connect/models/devices/device-provider.d.ts +0 -1
- package/lib/seam/connect/models/devices/device.d.ts +49 -51
- package/lib/seam/connect/models/devices/device.js +16 -7
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +29 -31
- package/lib/seam/connect/models/phones/phone-session.d.ts +100 -40
- package/lib/seam/connect/openapi.d.ts +26 -2
- package/lib/seam/connect/openapi.js +29 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -30
- package/lib/seam/devicedb/models/device-model.d.ts +20 -20
- package/lib/seam/devicedb/route-specs.d.ts +41 -41
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +13 -4
- package/src/lib/seam/connect/models/devices/device.ts +15 -8
- package/src/lib/seam/connect/openapi.ts +32 -5
- package/src/lib/seam/connect/route-types.ts +100 -30
|
@@ -12967,12 +12967,19 @@ export interface Routes {
|
|
|
12967
12967
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
12968
12968
|
salto_space_metadata?:
|
|
12969
12969
|
| {
|
|
12970
|
+
/**
|
|
12971
|
+
* @deprecated use door_id. */
|
|
12972
|
+
ext_door_id?: string | undefined
|
|
12973
|
+
/** Door ID in the Salto Space access system. */
|
|
12974
|
+
door_id?: string | undefined
|
|
12970
12975
|
/** Name of the door in the Salto Space access system. */
|
|
12971
|
-
door_name
|
|
12972
|
-
/** External door ID in the Salto Space access system. */
|
|
12973
|
-
ext_door_id: string
|
|
12976
|
+
door_name?: string | undefined
|
|
12974
12977
|
/** Description of the door in the Salto Space access system. */
|
|
12975
12978
|
door_description?: string | undefined
|
|
12979
|
+
/** Name of the room in the Salto Space access system. */
|
|
12980
|
+
room_name?: string | undefined
|
|
12981
|
+
/** Description of the room in the Salto Space access system. */
|
|
12982
|
+
room_description?: string | undefined
|
|
12976
12983
|
}
|
|
12977
12984
|
| undefined
|
|
12978
12985
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -14613,12 +14620,19 @@ export interface Routes {
|
|
|
14613
14620
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
14614
14621
|
salto_space_metadata?:
|
|
14615
14622
|
| {
|
|
14623
|
+
/**
|
|
14624
|
+
* @deprecated use door_id. */
|
|
14625
|
+
ext_door_id?: string | undefined
|
|
14626
|
+
/** Door ID in the Salto Space access system. */
|
|
14627
|
+
door_id?: string | undefined
|
|
14616
14628
|
/** Name of the door in the Salto Space access system. */
|
|
14617
|
-
door_name
|
|
14618
|
-
/** External door ID in the Salto Space access system. */
|
|
14619
|
-
ext_door_id: string
|
|
14629
|
+
door_name?: string | undefined
|
|
14620
14630
|
/** Description of the door in the Salto Space access system. */
|
|
14621
14631
|
door_description?: string | undefined
|
|
14632
|
+
/** Name of the room in the Salto Space access system. */
|
|
14633
|
+
room_name?: string | undefined
|
|
14634
|
+
/** Description of the room in the Salto Space access system. */
|
|
14635
|
+
room_description?: string | undefined
|
|
14622
14636
|
}
|
|
14623
14637
|
| undefined
|
|
14624
14638
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -23111,12 +23125,19 @@ export interface Routes {
|
|
|
23111
23125
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
23112
23126
|
salto_space_metadata?:
|
|
23113
23127
|
| {
|
|
23128
|
+
/**
|
|
23129
|
+
* @deprecated use door_id. */
|
|
23130
|
+
ext_door_id?: string | undefined
|
|
23131
|
+
/** Door ID in the Salto Space access system. */
|
|
23132
|
+
door_id?: string | undefined
|
|
23114
23133
|
/** Name of the door in the Salto Space access system. */
|
|
23115
|
-
door_name
|
|
23116
|
-
/** External door ID in the Salto Space access system. */
|
|
23117
|
-
ext_door_id: string
|
|
23134
|
+
door_name?: string | undefined
|
|
23118
23135
|
/** Description of the door in the Salto Space access system. */
|
|
23119
23136
|
door_description?: string | undefined
|
|
23137
|
+
/** Name of the room in the Salto Space access system. */
|
|
23138
|
+
room_name?: string | undefined
|
|
23139
|
+
/** Description of the room in the Salto Space access system. */
|
|
23140
|
+
room_description?: string | undefined
|
|
23120
23141
|
}
|
|
23121
23142
|
| undefined
|
|
23122
23143
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -24660,12 +24681,19 @@ export interface Routes {
|
|
|
24660
24681
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
24661
24682
|
salto_space_metadata?:
|
|
24662
24683
|
| {
|
|
24684
|
+
/**
|
|
24685
|
+
* @deprecated use door_id. */
|
|
24686
|
+
ext_door_id?: string | undefined
|
|
24687
|
+
/** Door ID in the Salto Space access system. */
|
|
24688
|
+
door_id?: string | undefined
|
|
24663
24689
|
/** Name of the door in the Salto Space access system. */
|
|
24664
|
-
door_name
|
|
24665
|
-
/** External door ID in the Salto Space access system. */
|
|
24666
|
-
ext_door_id: string
|
|
24690
|
+
door_name?: string | undefined
|
|
24667
24691
|
/** Description of the door in the Salto Space access system. */
|
|
24668
24692
|
door_description?: string | undefined
|
|
24693
|
+
/** Name of the room in the Salto Space access system. */
|
|
24694
|
+
room_name?: string | undefined
|
|
24695
|
+
/** Description of the room in the Salto Space access system. */
|
|
24696
|
+
room_description?: string | undefined
|
|
24669
24697
|
}
|
|
24670
24698
|
| undefined
|
|
24671
24699
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -28580,12 +28608,19 @@ export interface Routes {
|
|
|
28580
28608
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
28581
28609
|
salto_space_metadata?:
|
|
28582
28610
|
| {
|
|
28611
|
+
/**
|
|
28612
|
+
* @deprecated use door_id. */
|
|
28613
|
+
ext_door_id?: string | undefined
|
|
28614
|
+
/** Door ID in the Salto Space access system. */
|
|
28615
|
+
door_id?: string | undefined
|
|
28583
28616
|
/** Name of the door in the Salto Space access system. */
|
|
28584
|
-
door_name
|
|
28585
|
-
/** External door ID in the Salto Space access system. */
|
|
28586
|
-
ext_door_id: string
|
|
28617
|
+
door_name?: string | undefined
|
|
28587
28618
|
/** Description of the door in the Salto Space access system. */
|
|
28588
28619
|
door_description?: string | undefined
|
|
28620
|
+
/** Name of the room in the Salto Space access system. */
|
|
28621
|
+
room_name?: string | undefined
|
|
28622
|
+
/** Description of the room in the Salto Space access system. */
|
|
28623
|
+
room_description?: string | undefined
|
|
28589
28624
|
}
|
|
28590
28625
|
| undefined
|
|
28591
28626
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -28745,12 +28780,19 @@ export interface Routes {
|
|
|
28745
28780
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
28746
28781
|
salto_space_metadata?:
|
|
28747
28782
|
| {
|
|
28783
|
+
/**
|
|
28784
|
+
* @deprecated use door_id. */
|
|
28785
|
+
ext_door_id?: string | undefined
|
|
28786
|
+
/** Door ID in the Salto Space access system. */
|
|
28787
|
+
door_id?: string | undefined
|
|
28748
28788
|
/** Name of the door in the Salto Space access system. */
|
|
28749
|
-
door_name
|
|
28750
|
-
/** External door ID in the Salto Space access system. */
|
|
28751
|
-
ext_door_id: string
|
|
28789
|
+
door_name?: string | undefined
|
|
28752
28790
|
/** Description of the door in the Salto Space access system. */
|
|
28753
28791
|
door_description?: string | undefined
|
|
28792
|
+
/** Name of the room in the Salto Space access system. */
|
|
28793
|
+
room_name?: string | undefined
|
|
28794
|
+
/** Description of the room in the Salto Space access system. */
|
|
28795
|
+
room_description?: string | undefined
|
|
28754
28796
|
}
|
|
28755
28797
|
| undefined
|
|
28756
28798
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -30437,12 +30479,19 @@ export interface Routes {
|
|
|
30437
30479
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
30438
30480
|
salto_space_metadata?:
|
|
30439
30481
|
| {
|
|
30482
|
+
/**
|
|
30483
|
+
* @deprecated use door_id. */
|
|
30484
|
+
ext_door_id?: string | undefined
|
|
30485
|
+
/** Door ID in the Salto Space access system. */
|
|
30486
|
+
door_id?: string | undefined
|
|
30440
30487
|
/** Name of the door in the Salto Space access system. */
|
|
30441
|
-
door_name
|
|
30442
|
-
/** External door ID in the Salto Space access system. */
|
|
30443
|
-
ext_door_id: string
|
|
30488
|
+
door_name?: string | undefined
|
|
30444
30489
|
/** Description of the door in the Salto Space access system. */
|
|
30445
30490
|
door_description?: string | undefined
|
|
30491
|
+
/** Name of the room in the Salto Space access system. */
|
|
30492
|
+
room_name?: string | undefined
|
|
30493
|
+
/** Description of the room in the Salto Space access system. */
|
|
30494
|
+
room_description?: string | undefined
|
|
30446
30495
|
}
|
|
30447
30496
|
| undefined
|
|
30448
30497
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -64867,12 +64916,19 @@ export interface Routes {
|
|
|
64867
64916
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
64868
64917
|
salto_space_metadata?:
|
|
64869
64918
|
| {
|
|
64919
|
+
/**
|
|
64920
|
+
* @deprecated use door_id. */
|
|
64921
|
+
ext_door_id?: string | undefined
|
|
64922
|
+
/** Door ID in the Salto Space access system. */
|
|
64923
|
+
door_id?: string | undefined
|
|
64870
64924
|
/** Name of the door in the Salto Space access system. */
|
|
64871
|
-
door_name
|
|
64872
|
-
/** External door ID in the Salto Space access system. */
|
|
64873
|
-
ext_door_id: string
|
|
64925
|
+
door_name?: string | undefined
|
|
64874
64926
|
/** Description of the door in the Salto Space access system. */
|
|
64875
64927
|
door_description?: string | undefined
|
|
64928
|
+
/** Name of the room in the Salto Space access system. */
|
|
64929
|
+
room_name?: string | undefined
|
|
64930
|
+
/** Description of the room in the Salto Space access system. */
|
|
64931
|
+
room_description?: string | undefined
|
|
64876
64932
|
}
|
|
64877
64933
|
| undefined
|
|
64878
64934
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -66674,12 +66730,19 @@ export interface Routes {
|
|
|
66674
66730
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
66675
66731
|
salto_space_metadata?:
|
|
66676
66732
|
| {
|
|
66733
|
+
/**
|
|
66734
|
+
* @deprecated use door_id. */
|
|
66735
|
+
ext_door_id?: string | undefined
|
|
66736
|
+
/** Door ID in the Salto Space access system. */
|
|
66737
|
+
door_id?: string | undefined
|
|
66677
66738
|
/** Name of the door in the Salto Space access system. */
|
|
66678
|
-
door_name
|
|
66679
|
-
/** External door ID in the Salto Space access system. */
|
|
66680
|
-
ext_door_id: string
|
|
66739
|
+
door_name?: string | undefined
|
|
66681
66740
|
/** Description of the door in the Salto Space access system. */
|
|
66682
66741
|
door_description?: string | undefined
|
|
66742
|
+
/** Name of the room in the Salto Space access system. */
|
|
66743
|
+
room_name?: string | undefined
|
|
66744
|
+
/** Description of the room in the Salto Space access system. */
|
|
66745
|
+
room_description?: string | undefined
|
|
66683
66746
|
}
|
|
66684
66747
|
| undefined
|
|
66685
66748
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -68320,12 +68383,19 @@ export interface Routes {
|
|
|
68320
68383
|
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
68321
68384
|
salto_space_metadata?:
|
|
68322
68385
|
| {
|
|
68386
|
+
/**
|
|
68387
|
+
* @deprecated use door_id. */
|
|
68388
|
+
ext_door_id?: string | undefined
|
|
68389
|
+
/** Door ID in the Salto Space access system. */
|
|
68390
|
+
door_id?: string | undefined
|
|
68323
68391
|
/** Name of the door in the Salto Space access system. */
|
|
68324
|
-
door_name
|
|
68325
|
-
/** External door ID in the Salto Space access system. */
|
|
68326
|
-
ext_door_id: string
|
|
68392
|
+
door_name?: string | undefined
|
|
68327
68393
|
/** Description of the door in the Salto Space access system. */
|
|
68328
68394
|
door_description?: string | undefined
|
|
68395
|
+
/** Name of the room in the Salto Space access system. */
|
|
68396
|
+
room_name?: string | undefined
|
|
68397
|
+
/** Description of the room in the Salto Space access system. */
|
|
68398
|
+
room_description?: string | undefined
|
|
68329
68399
|
}
|
|
68330
68400
|
| undefined
|
|
68331
68401
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|