@seamapi/types 1.620.0 → 1.622.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 +204 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +611 -4
- package/dist/index.cjs +204 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +104 -0
- package/lib/seam/connect/models/customer/customer-delete-data.d.ts +3 -0
- package/lib/seam/connect/models/customer/customer-delete-data.js +4 -0
- package/lib/seam/connect/models/customer/customer-delete-data.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +33 -1
- package/lib/seam/connect/models/events/seam-event.js +2 -0
- package/lib/seam/connect/models/events/seam-event.js.map +1 -1
- package/lib/seam/connect/models/events/spaces.d.ts +68 -0
- package/lib/seam/connect/models/events/spaces.js +27 -0
- package/lib/seam/connect/models/events/spaces.js.map +1 -0
- package/lib/seam/connect/openapi.d.ts +410 -0
- package/lib/seam/connect/openapi.js +179 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +117 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-delete-data.ts +4 -0
- package/src/lib/seam/connect/models/events/seam-event.ts +2 -0
- package/src/lib/seam/connect/models/events/spaces.ts +34 -0
- package/src/lib/seam/connect/openapi.ts +182 -0
- package/src/lib/seam/connect/route-types.ts +130 -0
|
@@ -22819,6 +22819,26 @@ export type Routes = {
|
|
|
22819
22819
|
| undefined
|
|
22820
22820
|
event_type: 'phone.deactivated'
|
|
22821
22821
|
}
|
|
22822
|
+
| {
|
|
22823
|
+
/** ID of the event. */
|
|
22824
|
+
event_id: string
|
|
22825
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
|
|
22826
|
+
workspace_id: string
|
|
22827
|
+
/** Date and time at which the event was created. */
|
|
22828
|
+
created_at: string
|
|
22829
|
+
/** Date and time at which the event occurred. */
|
|
22830
|
+
occurred_at: string
|
|
22831
|
+
/** ID of the affected space. */
|
|
22832
|
+
space_id: string
|
|
22833
|
+
/** Type of the event. */
|
|
22834
|
+
event_type: 'space.device_membership_changed'
|
|
22835
|
+
/** Unique key for the space within the workspace. */
|
|
22836
|
+
space_key?: string | undefined
|
|
22837
|
+
/** IDs of all devices currently attached to the space. */
|
|
22838
|
+
device_ids: string[]
|
|
22839
|
+
/** IDs of all ACS entrances currently attached to the space. */
|
|
22840
|
+
acs_entrance_ids: string[]
|
|
22841
|
+
}
|
|
22822
22842
|
)[]
|
|
22823
22843
|
| undefined
|
|
22824
22844
|
instant_keys?:
|
|
@@ -37398,6 +37418,8 @@ export type Routes = {
|
|
|
37398
37418
|
booking_keys?: string[] | undefined
|
|
37399
37419
|
/** List of access grant keys to delete. */
|
|
37400
37420
|
access_grant_keys?: string[] | undefined
|
|
37421
|
+
/** List of staff member keys to delete. */
|
|
37422
|
+
staff_member_keys?: string[] | undefined
|
|
37401
37423
|
}
|
|
37402
37424
|
formData: {}
|
|
37403
37425
|
jsonResponse: {}
|
|
@@ -44719,6 +44741,26 @@ export type Routes = {
|
|
|
44719
44741
|
| undefined
|
|
44720
44742
|
event_type: 'phone.deactivated'
|
|
44721
44743
|
}
|
|
44744
|
+
| {
|
|
44745
|
+
/** ID of the event. */
|
|
44746
|
+
event_id: string
|
|
44747
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
|
|
44748
|
+
workspace_id: string
|
|
44749
|
+
/** Date and time at which the event was created. */
|
|
44750
|
+
created_at: string
|
|
44751
|
+
/** Date and time at which the event occurred. */
|
|
44752
|
+
occurred_at: string
|
|
44753
|
+
/** ID of the affected space. */
|
|
44754
|
+
space_id: string
|
|
44755
|
+
/** Type of the event. */
|
|
44756
|
+
event_type: 'space.device_membership_changed'
|
|
44757
|
+
/** Unique key for the space within the workspace. */
|
|
44758
|
+
space_key?: string | undefined
|
|
44759
|
+
/** IDs of all devices currently attached to the space. */
|
|
44760
|
+
device_ids: string[]
|
|
44761
|
+
/** IDs of all ACS entrances currently attached to the space. */
|
|
44762
|
+
acs_entrance_ids: string[]
|
|
44763
|
+
}
|
|
44722
44764
|
)
|
|
44723
44765
|
| undefined
|
|
44724
44766
|
message?: string | undefined
|
|
@@ -44845,6 +44887,7 @@ export type Routes = {
|
|
|
44845
44887
|
| 'device.name_changed'
|
|
44846
44888
|
| 'enrollment_automation.deleted'
|
|
44847
44889
|
| 'phone.deactivated'
|
|
44890
|
+
| 'space.device_membership_changed'
|
|
44848
44891
|
)
|
|
44849
44892
|
| undefined
|
|
44850
44893
|
/** Types of the events that you want to list. */
|
|
@@ -44942,6 +44985,7 @@ export type Routes = {
|
|
|
44942
44985
|
| 'device.name_changed'
|
|
44943
44986
|
| 'enrollment_automation.deleted'
|
|
44944
44987
|
| 'phone.deactivated'
|
|
44988
|
+
| 'space.device_membership_changed'
|
|
44945
44989
|
)[]
|
|
44946
44990
|
| undefined
|
|
44947
44991
|
/** ID of the connected account for which you want to list events. */
|
|
@@ -47177,6 +47221,26 @@ export type Routes = {
|
|
|
47177
47221
|
| undefined
|
|
47178
47222
|
event_type: 'phone.deactivated'
|
|
47179
47223
|
}
|
|
47224
|
+
| {
|
|
47225
|
+
/** ID of the event. */
|
|
47226
|
+
event_id: string
|
|
47227
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
|
|
47228
|
+
workspace_id: string
|
|
47229
|
+
/** Date and time at which the event was created. */
|
|
47230
|
+
created_at: string
|
|
47231
|
+
/** Date and time at which the event occurred. */
|
|
47232
|
+
occurred_at: string
|
|
47233
|
+
/** ID of the affected space. */
|
|
47234
|
+
space_id: string
|
|
47235
|
+
/** Type of the event. */
|
|
47236
|
+
event_type: 'space.device_membership_changed'
|
|
47237
|
+
/** Unique key for the space within the workspace. */
|
|
47238
|
+
space_key?: string | undefined
|
|
47239
|
+
/** IDs of all devices currently attached to the space. */
|
|
47240
|
+
device_ids: string[]
|
|
47241
|
+
/** IDs of all ACS entrances currently attached to the space. */
|
|
47242
|
+
acs_entrance_ids: string[]
|
|
47243
|
+
}
|
|
47180
47244
|
)[]
|
|
47181
47245
|
}
|
|
47182
47246
|
}
|
|
@@ -67877,6 +67941,18 @@ export type Routes = {
|
|
|
67877
67941
|
config?: {} | undefined
|
|
67878
67942
|
}
|
|
67879
67943
|
| undefined
|
|
67944
|
+
staff_member_name_updated?:
|
|
67945
|
+
| {
|
|
67946
|
+
rule: 'staff_member_name_updated'
|
|
67947
|
+
config?: {} | undefined
|
|
67948
|
+
}
|
|
67949
|
+
| undefined
|
|
67950
|
+
staff_member_created?:
|
|
67951
|
+
| {
|
|
67952
|
+
rule: 'staff_member_created'
|
|
67953
|
+
config: {}
|
|
67954
|
+
}
|
|
67955
|
+
| undefined
|
|
67880
67956
|
}
|
|
67881
67957
|
| undefined
|
|
67882
67958
|
climate_rules?:
|
|
@@ -67957,6 +68033,18 @@ export type Routes = {
|
|
|
67957
68033
|
config?: {} | undefined
|
|
67958
68034
|
}
|
|
67959
68035
|
| undefined
|
|
68036
|
+
staff_member_name_updated?:
|
|
68037
|
+
| {
|
|
68038
|
+
rule: 'staff_member_name_updated'
|
|
68039
|
+
config?: {} | undefined
|
|
68040
|
+
}
|
|
68041
|
+
| undefined
|
|
68042
|
+
staff_member_created?:
|
|
68043
|
+
| {
|
|
68044
|
+
rule: 'staff_member_created'
|
|
68045
|
+
config: {}
|
|
68046
|
+
}
|
|
68047
|
+
| undefined
|
|
67960
68048
|
}
|
|
67961
68049
|
| undefined
|
|
67962
68050
|
/** Climate automation rules configuration. */
|
|
@@ -68162,6 +68250,7 @@ export type Routes = {
|
|
|
68162
68250
|
| 'device.name_changed'
|
|
68163
68251
|
| 'enrollment_automation.deleted'
|
|
68164
68252
|
| 'phone.deactivated'
|
|
68253
|
+
| 'space.device_membership_changed'
|
|
68165
68254
|
)
|
|
68166
68255
|
| undefined
|
|
68167
68256
|
/** Types of the events that you want to list. */
|
|
@@ -68259,6 +68348,7 @@ export type Routes = {
|
|
|
68259
68348
|
| 'device.name_changed'
|
|
68260
68349
|
| 'enrollment_automation.deleted'
|
|
68261
68350
|
| 'phone.deactivated'
|
|
68351
|
+
| 'space.device_membership_changed'
|
|
68262
68352
|
)[]
|
|
68263
68353
|
| undefined
|
|
68264
68354
|
/** Numerical limit on the number of events to return. */
|
|
@@ -70488,6 +70578,26 @@ export type Routes = {
|
|
|
70488
70578
|
| undefined
|
|
70489
70579
|
event_type: 'phone.deactivated'
|
|
70490
70580
|
}
|
|
70581
|
+
| {
|
|
70582
|
+
/** ID of the event. */
|
|
70583
|
+
event_id: string
|
|
70584
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
|
|
70585
|
+
workspace_id: string
|
|
70586
|
+
/** Date and time at which the event was created. */
|
|
70587
|
+
created_at: string
|
|
70588
|
+
/** Date and time at which the event occurred. */
|
|
70589
|
+
occurred_at: string
|
|
70590
|
+
/** ID of the affected space. */
|
|
70591
|
+
space_id: string
|
|
70592
|
+
/** Type of the event. */
|
|
70593
|
+
event_type: 'space.device_membership_changed'
|
|
70594
|
+
/** Unique key for the space within the workspace. */
|
|
70595
|
+
space_key?: string | undefined
|
|
70596
|
+
/** IDs of all devices currently attached to the space. */
|
|
70597
|
+
device_ids: string[]
|
|
70598
|
+
/** IDs of all ACS entrances currently attached to the space. */
|
|
70599
|
+
acs_entrance_ids: string[]
|
|
70600
|
+
}
|
|
70491
70601
|
)[]
|
|
70492
70602
|
}
|
|
70493
70603
|
}
|
|
@@ -104146,6 +104256,26 @@ export type Routes = {
|
|
|
104146
104256
|
| undefined
|
|
104147
104257
|
event_type: 'phone.deactivated'
|
|
104148
104258
|
}
|
|
104259
|
+
| {
|
|
104260
|
+
/** ID of the event. */
|
|
104261
|
+
event_id: string
|
|
104262
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the event. */
|
|
104263
|
+
workspace_id: string
|
|
104264
|
+
/** Date and time at which the event was created. */
|
|
104265
|
+
created_at: string
|
|
104266
|
+
/** Date and time at which the event occurred. */
|
|
104267
|
+
occurred_at: string
|
|
104268
|
+
/** ID of the affected space. */
|
|
104269
|
+
space_id: string
|
|
104270
|
+
/** Type of the event. */
|
|
104271
|
+
event_type: 'space.device_membership_changed'
|
|
104272
|
+
/** Unique key for the space within the workspace. */
|
|
104273
|
+
space_key?: string | undefined
|
|
104274
|
+
/** IDs of all devices currently attached to the space. */
|
|
104275
|
+
device_ids: string[]
|
|
104276
|
+
/** IDs of all ACS entrances currently attached to the space. */
|
|
104277
|
+
acs_entrance_ids: string[]
|
|
104278
|
+
}
|
|
104149
104279
|
)[]
|
|
104150
104280
|
| undefined
|
|
104151
104281
|
instant_keys?:
|