@seamapi/types 1.192.0 → 1.193.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 CHANGED
@@ -1961,6 +1961,12 @@ var lock_unlocked_event = device_event.extend({
1961
1961
  action_attempt_id: zod.z.string().uuid().optional(),
1962
1962
  method: lock_method
1963
1963
  }).describe("A lock was unlocked.");
1964
+ var lock_access_denied_event = device_event.extend({
1965
+ event_type: zod.z.literal("lock.access_denied"),
1966
+ access_code_id: zod.z.string().uuid().optional()
1967
+ }).describe(
1968
+ "The lock denied access to a user after one or more consecutive invalid attempts to unlock the device."
1969
+ );
1964
1970
  var device_events = [
1965
1971
  device_connected_event,
1966
1972
  device_converted_to_unmanaged_event,
@@ -1985,7 +1991,8 @@ var device_events = [
1985
1991
  device_accessory_keypad_disconnected_event,
1986
1992
  noise_sensor_noise_threshold_triggered_event,
1987
1993
  lock_locked_event,
1988
- lock_unlocked_event
1994
+ lock_unlocked_event,
1995
+ lock_access_denied_event
1989
1996
  ];
1990
1997
  var enrollment_automation_event = common_event.extend({
1991
1998
  enrollment_automation_id: zod.z.string().uuid().describe(`
@@ -11144,6 +11151,7 @@ var openapi_default = {
11144
11151
  "access_code.unmanaged.removed",
11145
11152
  "lock.locked",
11146
11153
  "lock.unlocked",
11154
+ "lock.access_denied",
11147
11155
  "phone.deactivated",
11148
11156
  "connected_account.connected",
11149
11157
  "connected_account.successful_login",
@@ -11208,6 +11216,7 @@ var openapi_default = {
11208
11216
  "access_code.unmanaged.removed",
11209
11217
  "lock.locked",
11210
11218
  "lock.unlocked",
11219
+ "lock.access_denied",
11211
11220
  "phone.deactivated",
11212
11221
  "connected_account.connected",
11213
11222
  "connected_account.successful_login",