@seamapi/types 1.917.0 → 1.919.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.
Files changed (37) hide show
  1. package/dist/connect.cjs +492 -186
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +115 -8
  4. package/dist/index.cjs +492 -186
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/access-codes/managed-access-code.js +78 -44
  7. package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
  8. package/lib/seam/connect/models/acs/acs-access-group.js +7 -4
  9. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-encoder.js +7 -3
  11. package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
  12. package/lib/seam/connect/models/acs/acs-system.js +58 -31
  13. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  14. package/lib/seam/connect/models/acs/acs-users/acs-user.js +42 -24
  15. package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
  16. package/lib/seam/connect/models/connected-accounts/connected-account.js +29 -19
  17. package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
  18. package/lib/seam/connect/models/devices/device.js +51 -27
  19. package/lib/seam/connect/models/devices/device.js.map +1 -1
  20. package/lib/seam/connect/models/events/devices.d.ts +30 -8
  21. package/lib/seam/connect/models/events/devices.js +25 -0
  22. package/lib/seam/connect/models/events/devices.js.map +1 -1
  23. package/lib/seam/connect/models/events/seam-event.d.ts +15 -4
  24. package/lib/seam/connect/openapi.js +138 -4
  25. package/lib/seam/connect/openapi.js.map +1 -1
  26. package/lib/seam/connect/route-types.d.ts +100 -4
  27. package/package.json +1 -1
  28. package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +136 -114
  29. package/src/lib/seam/connect/models/acs/acs-access-group.ts +10 -9
  30. package/src/lib/seam/connect/models/acs/acs-encoder.ts +7 -5
  31. package/src/lib/seam/connect/models/acs/acs-system.ts +73 -56
  32. package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +48 -40
  33. package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +78 -73
  34. package/src/lib/seam/connect/models/devices/device.ts +70 -46
  35. package/src/lib/seam/connect/models/events/devices.ts +25 -0
  36. package/src/lib/seam/connect/openapi.ts +142 -4
  37. package/src/lib/seam/connect/route-types.ts +100 -4
@@ -57255,7 +57255,7 @@ export type Routes = {
57255
57255
  /** Date and time at which the event occurred. */
57256
57256
  occurred_at: string
57257
57257
  /** ID of the affected device. */
57258
- device_id: string
57258
+ device_id?: string | undefined
57259
57259
  /** ID of the connected account associated with the event. */
57260
57260
  connected_account_id: string
57261
57261
  /** The customer key associated with the device, if any. */
@@ -57275,6 +57275,30 @@ export type Routes = {
57275
57275
  event_type: 'lock.access_denied'
57276
57276
  /** ID of the access code that was used in the unlock attempts. */
57277
57277
  access_code_id?: string | undefined
57278
+ /**
57279
+ undocumented: Unreleased.
57280
+ ---
57281
+ ID of the user identity associated with the access-denied event.
57282
+ */
57283
+ user_identity_id?: string | undefined
57284
+ /**
57285
+ undocumented: Unreleased.
57286
+ ---
57287
+ ID of the ACS system associated with the access-denied event.
57288
+ */
57289
+ acs_system_id?: string | undefined
57290
+ /**
57291
+ undocumented: Unreleased.
57292
+ ---
57293
+ ID of the ACS user associated with the access-denied event.
57294
+ */
57295
+ acs_user_id?: string | undefined
57296
+ /**
57297
+ undocumented: Unreleased.
57298
+ ---
57299
+ ID of the ACS entrance associated with the access-denied event.
57300
+ */
57301
+ acs_entrance_id?: string | undefined
57278
57302
  }
57279
57303
  | {
57280
57304
  /** ID of the event. */
@@ -60818,7 +60842,7 @@ export type Routes = {
60818
60842
  /** Date and time at which the event occurred. */
60819
60843
  occurred_at: string
60820
60844
  /** ID of the affected device. */
60821
- device_id: string
60845
+ device_id?: string | undefined
60822
60846
  /** ID of the connected account associated with the event. */
60823
60847
  connected_account_id: string
60824
60848
  /** The customer key associated with the device, if any. */
@@ -60838,6 +60862,30 @@ export type Routes = {
60838
60862
  event_type: 'lock.access_denied'
60839
60863
  /** ID of the access code that was used in the unlock attempts. */
60840
60864
  access_code_id?: string | undefined
60865
+ /**
60866
+ undocumented: Unreleased.
60867
+ ---
60868
+ ID of the user identity associated with the access-denied event.
60869
+ */
60870
+ user_identity_id?: string | undefined
60871
+ /**
60872
+ undocumented: Unreleased.
60873
+ ---
60874
+ ID of the ACS system associated with the access-denied event.
60875
+ */
60876
+ acs_system_id?: string | undefined
60877
+ /**
60878
+ undocumented: Unreleased.
60879
+ ---
60880
+ ID of the ACS user associated with the access-denied event.
60881
+ */
60882
+ acs_user_id?: string | undefined
60883
+ /**
60884
+ undocumented: Unreleased.
60885
+ ---
60886
+ ID of the ACS entrance associated with the access-denied event.
60887
+ */
60888
+ acs_entrance_id?: string | undefined
60841
60889
  }
60842
60890
  | {
60843
60891
  /** ID of the event. */
@@ -95051,7 +95099,7 @@ export type Routes = {
95051
95099
  /** Date and time at which the event occurred. */
95052
95100
  occurred_at: string
95053
95101
  /** ID of the affected device. */
95054
- device_id: string
95102
+ device_id?: string | undefined
95055
95103
  /** ID of the connected account associated with the event. */
95056
95104
  connected_account_id: string
95057
95105
  /** The customer key associated with the device, if any. */
@@ -95071,6 +95119,30 @@ export type Routes = {
95071
95119
  event_type: 'lock.access_denied'
95072
95120
  /** ID of the access code that was used in the unlock attempts. */
95073
95121
  access_code_id?: string | undefined
95122
+ /**
95123
+ undocumented: Unreleased.
95124
+ ---
95125
+ ID of the user identity associated with the access-denied event.
95126
+ */
95127
+ user_identity_id?: string | undefined
95128
+ /**
95129
+ undocumented: Unreleased.
95130
+ ---
95131
+ ID of the ACS system associated with the access-denied event.
95132
+ */
95133
+ acs_system_id?: string | undefined
95134
+ /**
95135
+ undocumented: Unreleased.
95136
+ ---
95137
+ ID of the ACS user associated with the access-denied event.
95138
+ */
95139
+ acs_user_id?: string | undefined
95140
+ /**
95141
+ undocumented: Unreleased.
95142
+ ---
95143
+ ID of the ACS entrance associated with the access-denied event.
95144
+ */
95145
+ acs_entrance_id?: string | undefined
95074
95146
  }
95075
95147
  | {
95076
95148
  /** ID of the event. */
@@ -138814,7 +138886,7 @@ export type Routes = {
138814
138886
  /** Date and time at which the event occurred. */
138815
138887
  occurred_at: string
138816
138888
  /** ID of the affected device. */
138817
- device_id: string
138889
+ device_id?: string | undefined
138818
138890
  /** ID of the connected account associated with the event. */
138819
138891
  connected_account_id: string
138820
138892
  /** The customer key associated with the device, if any. */
@@ -138834,6 +138906,30 @@ export type Routes = {
138834
138906
  event_type: 'lock.access_denied'
138835
138907
  /** ID of the access code that was used in the unlock attempts. */
138836
138908
  access_code_id?: string | undefined
138909
+ /**
138910
+ undocumented: Unreleased.
138911
+ ---
138912
+ ID of the user identity associated with the access-denied event.
138913
+ */
138914
+ user_identity_id?: string | undefined
138915
+ /**
138916
+ undocumented: Unreleased.
138917
+ ---
138918
+ ID of the ACS system associated with the access-denied event.
138919
+ */
138920
+ acs_system_id?: string | undefined
138921
+ /**
138922
+ undocumented: Unreleased.
138923
+ ---
138924
+ ID of the ACS user associated with the access-denied event.
138925
+ */
138926
+ acs_user_id?: string | undefined
138927
+ /**
138928
+ undocumented: Unreleased.
138929
+ ---
138930
+ ID of the ACS entrance associated with the access-denied event.
138931
+ */
138932
+ acs_entrance_id?: string | undefined
138837
138933
  }
138838
138934
  | {
138839
138935
  /** ID of the event. */