@seamapi/types 1.312.2 → 1.313.1

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 (25) hide show
  1. package/dist/connect.cjs +1201 -1194
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1296 -934
  4. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +10 -10
  5. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +5 -5
  6. package/lib/seam/connect/models/action-attempts/encode-credential.js +3 -3
  7. package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
  8. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +5 -5
  9. package/lib/seam/connect/models/action-attempts/scan-credential.js +3 -3
  10. package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
  11. package/lib/seam/connect/models/events/common.js +10 -24
  12. package/lib/seam/connect/models/events/common.js.map +1 -1
  13. package/lib/seam/connect/models/events/devices.js +145 -98
  14. package/lib/seam/connect/models/events/devices.js.map +1 -1
  15. package/lib/seam/connect/openapi.d.ts +383 -134
  16. package/lib/seam/connect/openapi.js +717 -716
  17. package/lib/seam/connect/openapi.js.map +1 -1
  18. package/lib/seam/connect/route-types.d.ts +801 -688
  19. package/package.json +1 -1
  20. package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +3 -3
  21. package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +3 -3
  22. package/src/lib/seam/connect/models/events/common.ts +12 -24
  23. package/src/lib/seam/connect/models/events/devices.ts +212 -101
  24. package/src/lib/seam/connect/openapi.ts +842 -716
  25. package/src/lib/seam/connect/route-types.ts +810 -688
package/dist/connect.cjs CHANGED
@@ -1929,8 +1929,8 @@ var deprecated_action_attempts = [
1929
1929
  ...update_noise_threshold_action_attempt.options
1930
1930
  ];
1931
1931
  var action_type2 = zod.z.literal("ENCODE_CREDENTIAL");
1932
- var no_card_on_encoder_error = zod.z.object({
1933
- type: zod.z.literal("no_card_on_encoder"),
1932
+ var no_credential_on_encoder_error = zod.z.object({
1933
+ type: zod.z.literal("no_credential_on_encoder"),
1934
1934
  message: zod.z.string()
1935
1935
  });
1936
1936
  var incompatible_card_format_error = zod.z.object({
@@ -1939,7 +1939,7 @@ var incompatible_card_format_error = zod.z.object({
1939
1939
  });
1940
1940
  var error3 = zod.z.union([
1941
1941
  ...common_action_attempt_errors,
1942
- no_card_on_encoder_error,
1942
+ no_credential_on_encoder_error,
1943
1943
  incompatible_card_format_error
1944
1944
  ]);
1945
1945
  var result3 = acs_credential.or(unmanaged_acs_credential);
@@ -1992,13 +1992,13 @@ var reset_sandbox_workspace_action_attempt = zod.z.discriminatedUnion(
1992
1992
  ]
1993
1993
  );
1994
1994
  var action_type5 = zod.z.literal("SCAN_CREDENTIAL");
1995
- var no_card_on_encoder_error2 = zod.z.object({
1996
- type: zod.z.literal("no_card_on_encoder"),
1995
+ var no_credential_on_encoder_error2 = zod.z.object({
1996
+ type: zod.z.literal("no_credential_on_encoder"),
1997
1997
  message: zod.z.string()
1998
1998
  });
1999
1999
  var error6 = zod.z.union([
2000
2000
  ...common_action_attempt_errors,
2001
- no_card_on_encoder_error2
2001
+ no_credential_on_encoder_error2
2002
2002
  ]);
2003
2003
  var warning = zod.z.object({
2004
2004
  warning_code: zod.z.union([
@@ -2136,30 +2136,12 @@ var connect_webview = zod.z.object({
2136
2136
  selected_provider: zod.z.string().nullable()
2137
2137
  });
2138
2138
  var common_event = zod.z.object({
2139
- event_id: zod.z.string().uuid().describe(`
2140
- ---
2141
- title: Event ID
2142
- ---
2143
- The ID of the event.
2144
- `),
2145
- workspace_id: zod.z.string().uuid().describe(`
2146
- ---
2147
- title: Workspace ID
2148
- ---
2149
- The ID of the workspace.
2150
- `),
2151
- created_at: zod.z.string().datetime().describe(`
2152
- ---
2153
- title: Created At
2154
- ---
2155
- The time when the event was created.
2156
- `),
2157
- occurred_at: zod.z.string().datetime().describe(`
2158
- ---
2159
- title: Occurred At
2160
- ---
2161
- The time when the event occurred.
2162
- `)
2139
+ event_id: zod.z.string().uuid().describe("ID of the event."),
2140
+ workspace_id: zod.z.string().uuid().describe(
2141
+ "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces)."
2142
+ ),
2143
+ created_at: zod.z.string().datetime().describe("Time at which the event was created."),
2144
+ occurred_at: zod.z.string().datetime().describe("Time when the event occurred.")
2163
2145
  });
2164
2146
 
2165
2147
  // src/lib/seam/connect/models/events/access-codes.ts
@@ -2483,84 +2465,56 @@ var connected_account_events = [
2483
2465
  connected_account_completed_first_sync_after_reconnection_event
2484
2466
  ];
2485
2467
  var device_event = common_event.extend({
2486
- device_id: zod.z.string().uuid().describe(`
2487
- ---
2488
- title: Device ID
2489
- ---
2490
- ID of the device.
2491
- `),
2492
- connected_account_id: zod.z.string().uuid().describe(`
2493
- ---
2494
- title: Connected Account ID
2495
- ---
2496
- ID of the connected account.
2497
- `)
2468
+ device_id: zod.z.string().uuid().describe("ID of the device."),
2469
+ connected_account_id: zod.z.string().uuid().describe(
2470
+ "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts)."
2471
+ )
2498
2472
  });
2499
- var battery_level = zod.z.number().min(0).max(1).describe(`
2500
- ---
2501
- title: Battery Level
2502
- ---
2503
- Fractional number 0 to 1.0 indicating amount of battery in device, as reported by device.
2504
- `);
2505
- var device_battery_status = zod.z.enum(["critical", "low", "good", "full"]).describe(`
2506
- ---
2507
- title: Battery Status
2508
- ---
2509
- Enum representing the battery status calculated from numeric battery_level value, one of 'critical' | 'low' | 'good' | 'full'
2510
- `);
2511
- var disconnection_error_code = zod.z.enum([
2512
- "account_disconnected",
2513
- "hub_disconnected",
2514
- "device_disconnected"
2515
- ]).describe(`
2516
- ---
2517
- title: Event Error Code
2518
- ---
2519
- The error code associated with the event, if any.
2520
- `);
2521
- var lock_method = zod.z.enum([
2522
- "keycode",
2523
- "manual",
2524
- "automatic",
2525
- "unknown",
2526
- "seamapi"
2527
- ]).describe(`
2528
- ---
2529
- title: Lock Lock/Unlock Method
2530
- ---
2531
- Method by which a lock device was locked or unlocked. When the method is \`keycode\`, the \`access_code_id\` will reference the Seam access code which was used, if reported by the device.
2532
- `);
2473
+ var battery_level = zod.z.number().min(0).max(1).describe(
2474
+ "Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device."
2475
+ );
2476
+ var device_battery_status = zod.z.enum(["critical", "low", "good", "full"]).describe(
2477
+ "Battery status of the device, calculated from the numeric `battery_level` value."
2478
+ );
2479
+ var disconnection_error_code = zod.z.enum(["account_disconnected", "hub_disconnected", "device_disconnected"]).describe("Error code associated with the disconnection event, if any.");
2480
+ var lock_method = zod.z.enum(["keycode", "manual", "automatic", "unknown", "seamapi"]).describe(
2481
+ "Method by which a lock device was locked or unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device."
2482
+ );
2533
2483
  var device_connected_event = device_event.extend({
2534
2484
  event_type: zod.z.literal("device.connected")
2535
2485
  }).describe("A new device was connected to Seam.");
2536
2486
  var device_added_event = device_event.extend({
2537
2487
  event_type: zod.z.literal("device.added")
2538
- }).describe("A device has been added or reconnected to Seam.");
2488
+ }).describe("A device was added or reconnected to Seam.");
2539
2489
  var device_converted_to_unmanaged_event = device_event.extend({
2540
2490
  event_type: zod.z.literal("device.converted_to_unmanaged")
2541
2491
  }).describe(
2542
- "An unmanaged device was successfully converted to a managed device."
2492
+ "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was successfully converted to a managed device."
2543
2493
  );
2544
2494
  var unmanaged_device_converted_to_managed_event = device_event.extend({
2545
2495
  event_type: zod.z.literal("device.unmanaged.converted_to_managed")
2546
2496
  }).describe(
2547
- "A managed device was successfully converted to an unmanaged device."
2497
+ "A managed device was successfully converted to an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices)."
2548
2498
  );
2549
2499
  var unmanaged_device_connected_event = device_event.extend({
2550
2500
  event_type: zod.z.literal("device.unmanaged.connected")
2551
- }).describe("An unmanaged device was connected to Seam");
2501
+ }).describe(
2502
+ "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was connected to Seam."
2503
+ );
2552
2504
  var device_disconnected_event = device_event.extend({
2553
2505
  event_type: zod.z.literal("device.disconnected"),
2554
2506
  error_code: disconnection_error_code
2555
- }).describe("A device was disconnected");
2507
+ }).describe("A device was disconnected from Seam.");
2556
2508
  var unmanaged_device_disconnected_event = device_event.extend({
2557
2509
  event_type: zod.z.literal("device.unmanaged.disconnected"),
2558
2510
  error_code: disconnection_error_code
2559
- }).describe("An unmanaged device was disconnected");
2511
+ }).describe(
2512
+ "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was disconnected from Seam."
2513
+ );
2560
2514
  var device_tampered_event = device_event.extend({
2561
2515
  event_type: zod.z.literal("device.tampered")
2562
2516
  }).describe(
2563
- "A device detected that it was tampered with, e.g., opened or moved."
2517
+ "A device detected that it was tampered with, for example, opened or moved."
2564
2518
  );
2565
2519
  var device_low_battery_event = device_event.extend({
2566
2520
  event_type: zod.z.literal("device.low_battery"),
@@ -2571,25 +2525,29 @@ var device_battery_status_changed_event = device_event.extend({
2571
2525
  battery_status: device_battery_status,
2572
2526
  battery_level
2573
2527
  }).describe(
2574
- "A device battery status changed since the last battery status changed event."
2528
+ "A device battery status changed since the last `battery_status_changed` event."
2575
2529
  );
2576
2530
  var device_removed_event = device_event.extend({
2577
2531
  event_type: zod.z.literal("device.removed")
2578
- }).describe("A device was removed externally from the connected account.");
2532
+ }).describe(
2533
+ "A device was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts)."
2534
+ );
2579
2535
  var device_deleted_event = device_event.extend({
2580
2536
  event_type: zod.z.literal("device.deleted")
2581
- }).describe("A device was deleted.");
2537
+ }).describe(
2538
+ "A device was [deleted](https://docs.seam.co/latest/api/devices/delete)."
2539
+ );
2582
2540
  var device_third_party_integration_detected_event = device_event.extend({
2583
2541
  event_type: zod.z.literal("device.third_party_integration_detected")
2584
2542
  }).describe(
2585
- "Seam detected a device is using a third party integration that will interfere with Seam device management."
2543
+ "Seam detected that a device is using a third-party integration that will interfere with Seam device management."
2586
2544
  );
2587
2545
  var device_third_party_integration_no_longer_detected_event = device_event.extend({
2588
2546
  event_type: zod.z.literal(
2589
2547
  "device.third_party_integration_no_longer_detected"
2590
2548
  )
2591
2549
  }).describe(
2592
- "Seam detected a device is no longer using a third party integration that was interfering with Seam device management."
2550
+ "Seam detected that a device is no longer using a third-party integration that was interfering with Seam device management."
2593
2551
  );
2594
2552
  var device_salto_privacy_mode_activated_event = device_event.extend({
2595
2553
  event_type: zod.z.literal("device.salto.privacy_mode_activated")
@@ -2602,70 +2560,100 @@ var device_connection_became_flaky_event = device_event.extend({
2602
2560
  }).describe("Seam detected a flaky device connection.");
2603
2561
  var device_connection_stabilized_event = device_event.extend({
2604
2562
  event_type: zod.z.literal("device.connection_stabilized")
2605
- }).describe("Seam detected a previously flaky device connection stabilized.");
2563
+ }).describe(
2564
+ "Seam detected that a previously-flaky device connection stabilized."
2565
+ );
2606
2566
  var device_error_subscription_required_event = device_event.extend({
2607
2567
  event_type: zod.z.literal("device.error.subscription_required")
2608
2568
  }).describe(
2609
- "A third party subscription is required to use all device features."
2569
+ "A third-party subscription is required to use all device features."
2610
2570
  );
2611
2571
  var device_error_subscription_required_resolved_event = device_event.extend({
2612
2572
  event_type: zod.z.literal("device.error.subscription_required.resolved")
2613
2573
  }).describe(
2614
- "A third party subscription is active or no longer-required to use all device features."
2574
+ "A third-party subscription is active or no longer required to use all device features."
2615
2575
  );
2616
2576
  var device_accessory_keypad_connected_event = device_event.extend({
2617
2577
  event_type: zod.z.literal("device.accessory_keypad_connected")
2618
- }).describe("A accessory keypad was connected to a device.");
2578
+ }).describe("An accessory keypad was connected to a device.");
2619
2579
  var device_accessory_keypad_disconnected_event = device_event.extend({
2620
2580
  event_type: zod.z.literal("device.accessory_keypad_disconnected")
2621
- }).describe("A accessory keypad was disconnected to a device.");
2581
+ }).describe("An accessory keypad was disconnected from a device.");
2622
2582
  var noise_sensor_noise_threshold_triggered_event = device_event.extend({
2623
2583
  event_type: zod.z.literal("noise_sensor.noise_threshold_triggered"),
2624
- noise_level_decibels: zod.z.number().optional(),
2625
- noise_level_nrs: zod.z.number().optional(),
2626
- noise_threshold_id: zod.z.string().uuid().optional(),
2627
- noise_threshold_name: zod.z.string().optional(),
2584
+ noise_level_decibels: zod.z.number().optional().describe("Detected noise level in decibels."),
2585
+ noise_level_nrs: zod.z.number().optional().describe("Detected noise level in Noiseaware Noise Risk Score (NRS)."),
2586
+ noise_threshold_id: zod.z.string().uuid().optional().describe(
2587
+ "ID of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered."
2588
+ ),
2589
+ noise_threshold_name: zod.z.string().optional().describe(
2590
+ "Name of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered."
2591
+ ),
2628
2592
  // TODO: remove metadata from this event
2629
2593
  noiseaware_metadata: zod.z.record(zod.z.unknown()).optional().describe(`
2630
2594
  ---
2631
2595
  title: Noiseaware Metadata
2632
2596
  ---
2633
- Metadata from the Noiseaware API.
2597
+ Metadata from Noiseaware.
2634
2598
  `),
2635
2599
  minut_metadata: zod.z.record(zod.z.unknown()).optional().describe(`
2636
2600
  ---
2637
2601
  title: Minut Metadata
2638
2602
  ---
2639
- Metadata from the Minut API.
2603
+ Metadata from Minut.
2640
2604
  `)
2641
2605
  }).describe(
2642
- "Extended periods of noise or noise exceeding a threshold was detected."
2606
+ "Extended periods of noise or noise exceeding a [threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) were detected."
2643
2607
  );
2644
2608
  var lock_locked_event = device_event.extend({
2645
2609
  event_type: zod.z.literal("lock.locked"),
2646
- access_code_id: zod.z.string().uuid().optional(),
2647
- action_attempt_id: zod.z.string().uuid().optional(),
2648
- method: lock_method
2610
+ access_code_id: zod.z.string().uuid().optional().describe(
2611
+ "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to lock the device."
2612
+ ),
2613
+ action_attempt_id: zod.z.string().uuid().optional().describe(
2614
+ "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action."
2615
+ ),
2616
+ method: lock_method.describe(
2617
+ "Method by which a lock device was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device."
2618
+ )
2649
2619
  }).describe("A lock was locked.");
2650
2620
  var lock_unlocked_event = device_event.extend({
2651
2621
  event_type: zod.z.literal("lock.unlocked"),
2652
- access_code_id: zod.z.string().uuid().optional(),
2653
- action_attempt_id: zod.z.string().uuid().optional(),
2654
- method: lock_method
2622
+ access_code_id: zod.z.string().uuid().optional().describe(
2623
+ "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to unlock the device."
2624
+ ),
2625
+ action_attempt_id: zod.z.string().uuid().optional().describe(
2626
+ "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action."
2627
+ ),
2628
+ method: lock_method.describe(
2629
+ "Method by which a lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device."
2630
+ )
2655
2631
  }).describe("A lock was unlocked.");
2656
2632
  var lock_access_denied_event = device_event.extend({
2657
2633
  event_type: zod.z.literal("lock.access_denied"),
2658
- access_code_id: zod.z.string().uuid().optional()
2634
+ access_code_id: zod.z.string().uuid().optional().describe(
2635
+ "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used in the unlock attempts."
2636
+ )
2659
2637
  }).describe(
2660
2638
  "The lock denied access to a user after one or more consecutive invalid attempts to unlock the device."
2661
2639
  );
2662
2640
  var thermostat_climate_preset_activated_event = device_event.extend({
2663
2641
  event_type: zod.z.literal("thermostat.climate_preset_activated"),
2664
- thermostat_schedule_id: zod.z.string().uuid().nullable(),
2665
- climate_preset_key: zod.z.string(),
2666
- is_fallback_climate_preset: zod.z.boolean()
2667
- }).describe("A thermostat climate preset was activated.");
2668
- var thermostat_manually_adjusted_method = zod.z.enum(["seam", "external"]);
2642
+ thermostat_schedule_id: zod.z.string().uuid().nullable().describe(
2643
+ "ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) that prompted the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to be activated."
2644
+ ),
2645
+ climate_preset_key: zod.z.string().describe(
2646
+ "Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated."
2647
+ ),
2648
+ is_fallback_climate_preset: zod.z.boolean().describe(
2649
+ "Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat."
2650
+ )
2651
+ }).describe(
2652
+ "A thermostat [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) was activated."
2653
+ );
2654
+ var thermostat_manually_adjusted_method = zod.z.enum(["seam", "external"]).describe(
2655
+ "Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat."
2656
+ );
2669
2657
  var thermostat_manually_adjusted_event = device_event.extend({
2670
2658
  event_type: zod.z.literal("thermostat.manually_adjusted"),
2671
2659
  method: thermostat_manually_adjusted_method
@@ -2678,28 +2666,46 @@ var thermostat_manually_adjusted_event = device_event.extend({
2678
2666
  cooling_set_point_fahrenheit: true,
2679
2667
  heating_set_point_fahrenheit: true
2680
2668
  })
2681
- ).describe("A thermostat was manually adjusted.");
2669
+ ).describe("A thermostat was adjusted manually.");
2682
2670
  var temperature_threshold_exceeded_event = device_event.extend({
2683
2671
  event_type: zod.z.literal("thermostat.temperature_threshold_exceeded"),
2684
- temperature_celsius: zod.z.number(),
2685
- temperature_fahrenheit: zod.z.number(),
2686
- upper_limit_celsius: zod.z.number().nullable(),
2687
- upper_limit_fahrenheit: zod.z.number().nullable(),
2688
- lower_limit_celsius: zod.z.number().nullable(),
2689
- lower_limit_fahrenheit: zod.z.number().nullable()
2690
- }).describe("A thermostat's temperature reading exceeded the set threshold.");
2672
+ temperature_celsius: zod.z.number().describe("Temperature, in \xB0C, reported by the thermostat."),
2673
+ temperature_fahrenheit: zod.z.number().describe("Temperature, in \xB0F, reported by the thermostat."),
2674
+ upper_limit_celsius: zod.z.number().nullable().describe(
2675
+ "Upper temperature limit, in \xB0C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2676
+ ),
2677
+ upper_limit_fahrenheit: zod.z.number().nullable().describe(
2678
+ "Upper temperature limit, in \xB0F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2679
+ ),
2680
+ lower_limit_celsius: zod.z.number().nullable().describe(
2681
+ "Lower temperature limit, in \xB0C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2682
+ ),
2683
+ lower_limit_fahrenheit: zod.z.number().nullable().describe(
2684
+ "Lower temperature limit, in \xB0F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2685
+ )
2686
+ }).describe(
2687
+ "A thermostat's temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2688
+ );
2691
2689
  var temperature_threshold_no_longer_exceeded_event = device_event.extend({
2692
2690
  event_type: zod.z.literal(
2693
2691
  "thermostat.temperature_threshold_no_longer_exceeded"
2694
2692
  ),
2695
- temperature_celsius: zod.z.number(),
2696
- temperature_fahrenheit: zod.z.number(),
2697
- upper_limit_celsius: zod.z.number().nullable(),
2698
- upper_limit_fahrenheit: zod.z.number().nullable(),
2699
- lower_limit_celsius: zod.z.number().nullable(),
2700
- lower_limit_fahrenheit: zod.z.number().nullable()
2693
+ temperature_celsius: zod.z.number().describe("Temperature, in \xB0C, reported by the thermostat."),
2694
+ temperature_fahrenheit: zod.z.number().describe("Temperature, in \xB0F, reported by the thermostat."),
2695
+ upper_limit_celsius: zod.z.number().nullable().describe(
2696
+ "Upper temperature limit, in \xB0C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2697
+ ),
2698
+ upper_limit_fahrenheit: zod.z.number().nullable().describe(
2699
+ "Upper temperature limit, in \xB0F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2700
+ ),
2701
+ lower_limit_celsius: zod.z.number().nullable().describe(
2702
+ "Lower temperature limit, in \xB0C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2703
+ ),
2704
+ lower_limit_fahrenheit: zod.z.number().nullable().describe(
2705
+ "Lower temperature limit, in \xB0F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2706
+ )
2701
2707
  }).describe(
2702
- "A thermostat's temperature reading is no longer exceeding the set threshold."
2708
+ "A thermostat's temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2703
2709
  );
2704
2710
  var device_events = [
2705
2711
  device_connected_event,
@@ -4957,7 +4963,10 @@ var openapi_default = {
4957
4963
  {
4958
4964
  properties: {
4959
4965
  message: { type: "string" },
4960
- type: { enum: ["no_card_on_encoder"], type: "string" }
4966
+ type: {
4967
+ enum: ["no_credential_on_encoder"],
4968
+ type: "string"
4969
+ }
4961
4970
  },
4962
4971
  required: ["type", "message"],
4963
4972
  type: "object"
@@ -5584,7 +5593,10 @@ var openapi_default = {
5584
5593
  {
5585
5594
  properties: {
5586
5595
  message: { type: "string" },
5587
- type: { enum: ["no_card_on_encoder"], type: "string" }
5596
+ type: {
5597
+ enum: ["no_credential_on_encoder"],
5598
+ type: "string"
5599
+ }
5588
5600
  },
5589
5601
  required: ["type", "message"],
5590
5602
  type: "object"
@@ -8142,10 +8154,9 @@ var openapi_default = {
8142
8154
  "x-title": "Connected Account ID"
8143
8155
  },
8144
8156
  created_at: {
8145
- description: "The time when the event was created.",
8157
+ description: "Time at which the event was created.",
8146
8158
  format: "date-time",
8147
- type: "string",
8148
- "x-title": "Created At"
8159
+ type: "string"
8149
8160
  },
8150
8161
  device_id: {
8151
8162
  description: "The ID of the device.",
@@ -8154,23 +8165,20 @@ var openapi_default = {
8154
8165
  "x-title": "Device ID"
8155
8166
  },
8156
8167
  event_id: {
8157
- description: "The ID of the event.",
8168
+ description: "ID of the event.",
8158
8169
  format: "uuid",
8159
- type: "string",
8160
- "x-title": "Event ID"
8170
+ type: "string"
8161
8171
  },
8162
8172
  event_type: { enum: ["access_code.created"], type: "string" },
8163
8173
  occurred_at: {
8164
- description: "The time when the event occurred.",
8174
+ description: "Time when the event occurred.",
8165
8175
  format: "date-time",
8166
- type: "string",
8167
- "x-title": "Occurred At"
8176
+ type: "string"
8168
8177
  },
8169
8178
  workspace_id: {
8170
- description: "The ID of the workspace.",
8179
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8171
8180
  format: "uuid",
8172
- type: "string",
8173
- "x-title": "Workspace ID"
8181
+ type: "string"
8174
8182
  }
8175
8183
  },
8176
8184
  required: [
@@ -8201,10 +8209,9 @@ var openapi_default = {
8201
8209
  "x-title": "Connected Account ID"
8202
8210
  },
8203
8211
  created_at: {
8204
- description: "The time when the event was created.",
8212
+ description: "Time at which the event was created.",
8205
8213
  format: "date-time",
8206
- type: "string",
8207
- "x-title": "Created At"
8214
+ type: "string"
8208
8215
  },
8209
8216
  device_id: {
8210
8217
  description: "The ID of the device.",
@@ -8213,23 +8220,20 @@ var openapi_default = {
8213
8220
  "x-title": "Device ID"
8214
8221
  },
8215
8222
  event_id: {
8216
- description: "The ID of the event.",
8223
+ description: "ID of the event.",
8217
8224
  format: "uuid",
8218
- type: "string",
8219
- "x-title": "Event ID"
8225
+ type: "string"
8220
8226
  },
8221
8227
  event_type: { enum: ["access_code.changed"], type: "string" },
8222
8228
  occurred_at: {
8223
- description: "The time when the event occurred.",
8229
+ description: "Time when the event occurred.",
8224
8230
  format: "date-time",
8225
- type: "string",
8226
- "x-title": "Occurred At"
8231
+ type: "string"
8227
8232
  },
8228
8233
  workspace_id: {
8229
- description: "The ID of the workspace.",
8234
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8230
8235
  format: "uuid",
8231
- type: "string",
8232
- "x-title": "Workspace ID"
8236
+ type: "string"
8233
8237
  }
8234
8238
  },
8235
8239
  required: [
@@ -8265,10 +8269,9 @@ var openapi_default = {
8265
8269
  "x-title": "Connected Account ID"
8266
8270
  },
8267
8271
  created_at: {
8268
- description: "The time when the event was created.",
8272
+ description: "Time at which the event was created.",
8269
8273
  format: "date-time",
8270
- type: "string",
8271
- "x-title": "Created At"
8274
+ type: "string"
8272
8275
  },
8273
8276
  device_id: {
8274
8277
  description: "The ID of the device.",
@@ -8277,26 +8280,23 @@ var openapi_default = {
8277
8280
  "x-title": "Device ID"
8278
8281
  },
8279
8282
  event_id: {
8280
- description: "The ID of the event.",
8283
+ description: "ID of the event.",
8281
8284
  format: "uuid",
8282
- type: "string",
8283
- "x-title": "Event ID"
8285
+ type: "string"
8284
8286
  },
8285
8287
  event_type: {
8286
8288
  enum: ["access_code.scheduled_on_device"],
8287
8289
  type: "string"
8288
8290
  },
8289
8291
  occurred_at: {
8290
- description: "The time when the event occurred.",
8292
+ description: "Time when the event occurred.",
8291
8293
  format: "date-time",
8292
- type: "string",
8293
- "x-title": "Occurred At"
8294
+ type: "string"
8294
8295
  },
8295
8296
  workspace_id: {
8296
- description: "The ID of the workspace.",
8297
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8297
8298
  format: "uuid",
8298
- type: "string",
8299
- "x-title": "Workspace ID"
8299
+ type: "string"
8300
8300
  }
8301
8301
  },
8302
8302
  required: [
@@ -8333,10 +8333,9 @@ var openapi_default = {
8333
8333
  "x-title": "Connected Account ID"
8334
8334
  },
8335
8335
  created_at: {
8336
- description: "The time when the event was created.",
8336
+ description: "Time at which the event was created.",
8337
8337
  format: "date-time",
8338
- type: "string",
8339
- "x-title": "Created At"
8338
+ type: "string"
8340
8339
  },
8341
8340
  device_id: {
8342
8341
  description: "The ID of the device.",
@@ -8345,26 +8344,23 @@ var openapi_default = {
8345
8344
  "x-title": "Device ID"
8346
8345
  },
8347
8346
  event_id: {
8348
- description: "The ID of the event.",
8347
+ description: "ID of the event.",
8349
8348
  format: "uuid",
8350
- type: "string",
8351
- "x-title": "Event ID"
8349
+ type: "string"
8352
8350
  },
8353
8351
  event_type: {
8354
8352
  enum: ["access_code.set_on_device"],
8355
8353
  type: "string"
8356
8354
  },
8357
8355
  occurred_at: {
8358
- description: "The time when the event occurred.",
8356
+ description: "Time when the event occurred.",
8359
8357
  format: "date-time",
8360
- type: "string",
8361
- "x-title": "Occurred At"
8358
+ type: "string"
8362
8359
  },
8363
8360
  workspace_id: {
8364
- description: "The ID of the workspace.",
8361
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8365
8362
  format: "uuid",
8366
- type: "string",
8367
- "x-title": "Workspace ID"
8363
+ type: "string"
8368
8364
  }
8369
8365
  },
8370
8366
  required: [
@@ -8396,10 +8392,9 @@ var openapi_default = {
8396
8392
  "x-title": "Connected Account ID"
8397
8393
  },
8398
8394
  created_at: {
8399
- description: "The time when the event was created.",
8395
+ description: "Time at which the event was created.",
8400
8396
  format: "date-time",
8401
- type: "string",
8402
- "x-title": "Created At"
8397
+ type: "string"
8403
8398
  },
8404
8399
  device_id: {
8405
8400
  description: "The ID of the device.",
@@ -8408,26 +8403,23 @@ var openapi_default = {
8408
8403
  "x-title": "Device ID"
8409
8404
  },
8410
8405
  event_id: {
8411
- description: "The ID of the event.",
8406
+ description: "ID of the event.",
8412
8407
  format: "uuid",
8413
- type: "string",
8414
- "x-title": "Event ID"
8408
+ type: "string"
8415
8409
  },
8416
8410
  event_type: {
8417
8411
  enum: ["access_code.removed_from_device"],
8418
8412
  type: "string"
8419
8413
  },
8420
8414
  occurred_at: {
8421
- description: "The time when the event occurred.",
8415
+ description: "Time when the event occurred.",
8422
8416
  format: "date-time",
8423
- type: "string",
8424
- "x-title": "Occurred At"
8417
+ type: "string"
8425
8418
  },
8426
8419
  workspace_id: {
8427
- description: "The ID of the workspace.",
8420
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8428
8421
  format: "uuid",
8429
- type: "string",
8430
- "x-title": "Workspace ID"
8422
+ type: "string"
8431
8423
  }
8432
8424
  },
8433
8425
  required: [
@@ -8458,10 +8450,9 @@ var openapi_default = {
8458
8450
  "x-title": "Connected Account ID"
8459
8451
  },
8460
8452
  created_at: {
8461
- description: "The time when the event was created.",
8453
+ description: "Time at which the event was created.",
8462
8454
  format: "date-time",
8463
- type: "string",
8464
- "x-title": "Created At"
8455
+ type: "string"
8465
8456
  },
8466
8457
  device_id: {
8467
8458
  description: "The ID of the device.",
@@ -8470,26 +8461,23 @@ var openapi_default = {
8470
8461
  "x-title": "Device ID"
8471
8462
  },
8472
8463
  event_id: {
8473
- description: "The ID of the event.",
8464
+ description: "ID of the event.",
8474
8465
  format: "uuid",
8475
- type: "string",
8476
- "x-title": "Event ID"
8466
+ type: "string"
8477
8467
  },
8478
8468
  event_type: {
8479
8469
  enum: ["access_code.delay_in_setting_on_device"],
8480
8470
  type: "string"
8481
8471
  },
8482
8472
  occurred_at: {
8483
- description: "The time when the event occurred.",
8473
+ description: "Time when the event occurred.",
8484
8474
  format: "date-time",
8485
- type: "string",
8486
- "x-title": "Occurred At"
8475
+ type: "string"
8487
8476
  },
8488
8477
  workspace_id: {
8489
- description: "The ID of the workspace.",
8478
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8490
8479
  format: "uuid",
8491
- type: "string",
8492
- "x-title": "Workspace ID"
8480
+ type: "string"
8493
8481
  }
8494
8482
  },
8495
8483
  required: [
@@ -8520,10 +8508,9 @@ var openapi_default = {
8520
8508
  "x-title": "Connected Account ID"
8521
8509
  },
8522
8510
  created_at: {
8523
- description: "The time when the event was created.",
8511
+ description: "Time at which the event was created.",
8524
8512
  format: "date-time",
8525
- type: "string",
8526
- "x-title": "Created At"
8513
+ type: "string"
8527
8514
  },
8528
8515
  device_id: {
8529
8516
  description: "The ID of the device.",
@@ -8532,26 +8519,23 @@ var openapi_default = {
8532
8519
  "x-title": "Device ID"
8533
8520
  },
8534
8521
  event_id: {
8535
- description: "The ID of the event.",
8522
+ description: "ID of the event.",
8536
8523
  format: "uuid",
8537
- type: "string",
8538
- "x-title": "Event ID"
8524
+ type: "string"
8539
8525
  },
8540
8526
  event_type: {
8541
8527
  enum: ["access_code.failed_to_set_on_device"],
8542
8528
  type: "string"
8543
8529
  },
8544
8530
  occurred_at: {
8545
- description: "The time when the event occurred.",
8531
+ description: "Time when the event occurred.",
8546
8532
  format: "date-time",
8547
- type: "string",
8548
- "x-title": "Occurred At"
8533
+ type: "string"
8549
8534
  },
8550
8535
  workspace_id: {
8551
- description: "The ID of the workspace.",
8536
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8552
8537
  format: "uuid",
8553
- type: "string",
8554
- "x-title": "Workspace ID"
8538
+ type: "string"
8555
8539
  }
8556
8540
  },
8557
8541
  required: [
@@ -8588,10 +8572,9 @@ var openapi_default = {
8588
8572
  "x-title": "Connected Account ID"
8589
8573
  },
8590
8574
  created_at: {
8591
- description: "The time when the event was created.",
8575
+ description: "Time at which the event was created.",
8592
8576
  format: "date-time",
8593
- type: "string",
8594
- "x-title": "Created At"
8577
+ type: "string"
8595
8578
  },
8596
8579
  device_id: {
8597
8580
  description: "The ID of the device.",
@@ -8600,23 +8583,20 @@ var openapi_default = {
8600
8583
  "x-title": "Device ID"
8601
8584
  },
8602
8585
  event_id: {
8603
- description: "The ID of the event.",
8586
+ description: "ID of the event.",
8604
8587
  format: "uuid",
8605
- type: "string",
8606
- "x-title": "Event ID"
8588
+ type: "string"
8607
8589
  },
8608
8590
  event_type: { enum: ["access_code.deleted"], type: "string" },
8609
8591
  occurred_at: {
8610
- description: "The time when the event occurred.",
8592
+ description: "Time when the event occurred.",
8611
8593
  format: "date-time",
8612
- type: "string",
8613
- "x-title": "Occurred At"
8594
+ type: "string"
8614
8595
  },
8615
8596
  workspace_id: {
8616
- description: "The ID of the workspace.",
8597
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8617
8598
  format: "uuid",
8618
- type: "string",
8619
- "x-title": "Workspace ID"
8599
+ type: "string"
8620
8600
  }
8621
8601
  },
8622
8602
  required: [
@@ -8648,10 +8628,9 @@ var openapi_default = {
8648
8628
  "x-title": "Connected Account ID"
8649
8629
  },
8650
8630
  created_at: {
8651
- description: "The time when the event was created.",
8631
+ description: "Time at which the event was created.",
8652
8632
  format: "date-time",
8653
- type: "string",
8654
- "x-title": "Created At"
8633
+ type: "string"
8655
8634
  },
8656
8635
  device_id: {
8657
8636
  description: "The ID of the device.",
@@ -8660,26 +8639,23 @@ var openapi_default = {
8660
8639
  "x-title": "Device ID"
8661
8640
  },
8662
8641
  event_id: {
8663
- description: "The ID of the event.",
8642
+ description: "ID of the event.",
8664
8643
  format: "uuid",
8665
- type: "string",
8666
- "x-title": "Event ID"
8644
+ type: "string"
8667
8645
  },
8668
8646
  event_type: {
8669
8647
  enum: ["access_code.delay_in_removing_from_device"],
8670
8648
  type: "string"
8671
8649
  },
8672
8650
  occurred_at: {
8673
- description: "The time when the event occurred.",
8651
+ description: "Time when the event occurred.",
8674
8652
  format: "date-time",
8675
- type: "string",
8676
- "x-title": "Occurred At"
8653
+ type: "string"
8677
8654
  },
8678
8655
  workspace_id: {
8679
- description: "The ID of the workspace.",
8656
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8680
8657
  format: "uuid",
8681
- type: "string",
8682
- "x-title": "Workspace ID"
8658
+ type: "string"
8683
8659
  }
8684
8660
  },
8685
8661
  required: [
@@ -8710,10 +8686,9 @@ var openapi_default = {
8710
8686
  "x-title": "Connected Account ID"
8711
8687
  },
8712
8688
  created_at: {
8713
- description: "The time when the event was created.",
8689
+ description: "Time at which the event was created.",
8714
8690
  format: "date-time",
8715
- type: "string",
8716
- "x-title": "Created At"
8691
+ type: "string"
8717
8692
  },
8718
8693
  device_id: {
8719
8694
  description: "The ID of the device.",
@@ -8722,26 +8697,23 @@ var openapi_default = {
8722
8697
  "x-title": "Device ID"
8723
8698
  },
8724
8699
  event_id: {
8725
- description: "The ID of the event.",
8700
+ description: "ID of the event.",
8726
8701
  format: "uuid",
8727
- type: "string",
8728
- "x-title": "Event ID"
8702
+ type: "string"
8729
8703
  },
8730
8704
  event_type: {
8731
8705
  enum: ["access_code.failed_to_remove_from_device"],
8732
8706
  type: "string"
8733
8707
  },
8734
8708
  occurred_at: {
8735
- description: "The time when the event occurred.",
8709
+ description: "Time when the event occurred.",
8736
8710
  format: "date-time",
8737
- type: "string",
8738
- "x-title": "Occurred At"
8711
+ type: "string"
8739
8712
  },
8740
8713
  workspace_id: {
8741
- description: "The ID of the workspace.",
8714
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8742
8715
  format: "uuid",
8743
- type: "string",
8744
- "x-title": "Workspace ID"
8716
+ type: "string"
8745
8717
  }
8746
8718
  },
8747
8719
  required: [
@@ -8772,10 +8744,9 @@ var openapi_default = {
8772
8744
  "x-title": "Connected Account ID"
8773
8745
  },
8774
8746
  created_at: {
8775
- description: "The time when the event was created.",
8747
+ description: "Time at which the event was created.",
8776
8748
  format: "date-time",
8777
- type: "string",
8778
- "x-title": "Created At"
8749
+ type: "string"
8779
8750
  },
8780
8751
  device_id: {
8781
8752
  description: "The ID of the device.",
@@ -8784,26 +8755,23 @@ var openapi_default = {
8784
8755
  "x-title": "Device ID"
8785
8756
  },
8786
8757
  event_id: {
8787
- description: "The ID of the event.",
8758
+ description: "ID of the event.",
8788
8759
  format: "uuid",
8789
- type: "string",
8790
- "x-title": "Event ID"
8760
+ type: "string"
8791
8761
  },
8792
8762
  event_type: {
8793
8763
  enum: ["access_code.modified_external_to_seam"],
8794
8764
  type: "string"
8795
8765
  },
8796
8766
  occurred_at: {
8797
- description: "The time when the event occurred.",
8767
+ description: "Time when the event occurred.",
8798
8768
  format: "date-time",
8799
- type: "string",
8800
- "x-title": "Occurred At"
8769
+ type: "string"
8801
8770
  },
8802
8771
  workspace_id: {
8803
- description: "The ID of the workspace.",
8772
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8804
8773
  format: "uuid",
8805
- type: "string",
8806
- "x-title": "Workspace ID"
8774
+ type: "string"
8807
8775
  }
8808
8776
  },
8809
8777
  required: [
@@ -8834,10 +8802,9 @@ var openapi_default = {
8834
8802
  "x-title": "Connected Account ID"
8835
8803
  },
8836
8804
  created_at: {
8837
- description: "The time when the event was created.",
8805
+ description: "Time at which the event was created.",
8838
8806
  format: "date-time",
8839
- type: "string",
8840
- "x-title": "Created At"
8807
+ type: "string"
8841
8808
  },
8842
8809
  device_id: {
8843
8810
  description: "The ID of the device.",
@@ -8846,26 +8813,23 @@ var openapi_default = {
8846
8813
  "x-title": "Device ID"
8847
8814
  },
8848
8815
  event_id: {
8849
- description: "The ID of the event.",
8816
+ description: "ID of the event.",
8850
8817
  format: "uuid",
8851
- type: "string",
8852
- "x-title": "Event ID"
8818
+ type: "string"
8853
8819
  },
8854
8820
  event_type: {
8855
8821
  enum: ["access_code.deleted_external_to_seam"],
8856
8822
  type: "string"
8857
8823
  },
8858
8824
  occurred_at: {
8859
- description: "The time when the event occurred.",
8825
+ description: "Time when the event occurred.",
8860
8826
  format: "date-time",
8861
- type: "string",
8862
- "x-title": "Occurred At"
8827
+ type: "string"
8863
8828
  },
8864
8829
  workspace_id: {
8865
- description: "The ID of the workspace.",
8830
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8866
8831
  format: "uuid",
8867
- type: "string",
8868
- "x-title": "Workspace ID"
8832
+ type: "string"
8869
8833
  }
8870
8834
  },
8871
8835
  required: [
@@ -8897,10 +8861,9 @@ var openapi_default = {
8897
8861
  "x-title": "Connected Account ID"
8898
8862
  },
8899
8863
  created_at: {
8900
- description: "The time when the event was created.",
8864
+ description: "Time at which the event was created.",
8901
8865
  format: "date-time",
8902
- type: "string",
8903
- "x-title": "Created At"
8866
+ type: "string"
8904
8867
  },
8905
8868
  device_id: {
8906
8869
  description: "The ID of the device.",
@@ -8909,26 +8872,23 @@ var openapi_default = {
8909
8872
  "x-title": "Device ID"
8910
8873
  },
8911
8874
  event_id: {
8912
- description: "The ID of the event.",
8875
+ description: "ID of the event.",
8913
8876
  format: "uuid",
8914
- type: "string",
8915
- "x-title": "Event ID"
8877
+ type: "string"
8916
8878
  },
8917
8879
  event_type: {
8918
8880
  enum: ["access_code.backup_access_code_pulled"],
8919
8881
  type: "string"
8920
8882
  },
8921
8883
  occurred_at: {
8922
- description: "The time when the event occurred.",
8884
+ description: "Time when the event occurred.",
8923
8885
  format: "date-time",
8924
- type: "string",
8925
- "x-title": "Occurred At"
8886
+ type: "string"
8926
8887
  },
8927
8888
  workspace_id: {
8928
- description: "The ID of the workspace.",
8889
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8929
8890
  format: "uuid",
8930
- type: "string",
8931
- "x-title": "Workspace ID"
8891
+ type: "string"
8932
8892
  }
8933
8893
  },
8934
8894
  required: [
@@ -8960,10 +8920,9 @@ var openapi_default = {
8960
8920
  "x-title": "Connected Account ID"
8961
8921
  },
8962
8922
  created_at: {
8963
- description: "The time when the event was created.",
8923
+ description: "Time at which the event was created.",
8964
8924
  format: "date-time",
8965
- type: "string",
8966
- "x-title": "Created At"
8925
+ type: "string"
8967
8926
  },
8968
8927
  device_id: {
8969
8928
  description: "The ID of the device.",
@@ -8972,26 +8931,23 @@ var openapi_default = {
8972
8931
  "x-title": "Device ID"
8973
8932
  },
8974
8933
  event_id: {
8975
- description: "The ID of the event.",
8934
+ description: "ID of the event.",
8976
8935
  format: "uuid",
8977
- type: "string",
8978
- "x-title": "Event ID"
8936
+ type: "string"
8979
8937
  },
8980
8938
  event_type: {
8981
8939
  enum: ["access_code.unmanaged.converted_to_managed"],
8982
8940
  type: "string"
8983
8941
  },
8984
8942
  occurred_at: {
8985
- description: "The time when the event occurred.",
8943
+ description: "Time when the event occurred.",
8986
8944
  format: "date-time",
8987
- type: "string",
8988
- "x-title": "Occurred At"
8945
+ type: "string"
8989
8946
  },
8990
8947
  workspace_id: {
8991
- description: "The ID of the workspace.",
8948
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
8992
8949
  format: "uuid",
8993
- type: "string",
8994
- "x-title": "Workspace ID"
8950
+ type: "string"
8995
8951
  }
8996
8952
  },
8997
8953
  required: [
@@ -9022,10 +8978,9 @@ var openapi_default = {
9022
8978
  "x-title": "Connected Account ID"
9023
8979
  },
9024
8980
  created_at: {
9025
- description: "The time when the event was created.",
8981
+ description: "Time at which the event was created.",
9026
8982
  format: "date-time",
9027
- type: "string",
9028
- "x-title": "Created At"
8983
+ type: "string"
9029
8984
  },
9030
8985
  device_id: {
9031
8986
  description: "The ID of the device.",
@@ -9034,26 +8989,23 @@ var openapi_default = {
9034
8989
  "x-title": "Device ID"
9035
8990
  },
9036
8991
  event_id: {
9037
- description: "The ID of the event.",
8992
+ description: "ID of the event.",
9038
8993
  format: "uuid",
9039
- type: "string",
9040
- "x-title": "Event ID"
8994
+ type: "string"
9041
8995
  },
9042
8996
  event_type: {
9043
8997
  enum: ["access_code.unmanaged.failed_to_convert_to_managed"],
9044
8998
  type: "string"
9045
8999
  },
9046
9000
  occurred_at: {
9047
- description: "The time when the event occurred.",
9001
+ description: "Time when the event occurred.",
9048
9002
  format: "date-time",
9049
- type: "string",
9050
- "x-title": "Occurred At"
9003
+ type: "string"
9051
9004
  },
9052
9005
  workspace_id: {
9053
- description: "The ID of the workspace.",
9006
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9054
9007
  format: "uuid",
9055
- type: "string",
9056
- "x-title": "Workspace ID"
9008
+ type: "string"
9057
9009
  }
9058
9010
  },
9059
9011
  required: [
@@ -9084,10 +9036,9 @@ var openapi_default = {
9084
9036
  "x-title": "Connected Account ID"
9085
9037
  },
9086
9038
  created_at: {
9087
- description: "The time when the event was created.",
9039
+ description: "Time at which the event was created.",
9088
9040
  format: "date-time",
9089
- type: "string",
9090
- "x-title": "Created At"
9041
+ type: "string"
9091
9042
  },
9092
9043
  device_id: {
9093
9044
  description: "The ID of the device.",
@@ -9096,26 +9047,23 @@ var openapi_default = {
9096
9047
  "x-title": "Device ID"
9097
9048
  },
9098
9049
  event_id: {
9099
- description: "The ID of the event.",
9050
+ description: "ID of the event.",
9100
9051
  format: "uuid",
9101
- type: "string",
9102
- "x-title": "Event ID"
9052
+ type: "string"
9103
9053
  },
9104
9054
  event_type: {
9105
9055
  enum: ["access_code.unmanaged.created"],
9106
9056
  type: "string"
9107
9057
  },
9108
9058
  occurred_at: {
9109
- description: "The time when the event occurred.",
9059
+ description: "Time when the event occurred.",
9110
9060
  format: "date-time",
9111
- type: "string",
9112
- "x-title": "Occurred At"
9061
+ type: "string"
9113
9062
  },
9114
9063
  workspace_id: {
9115
- description: "The ID of the workspace.",
9064
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9116
9065
  format: "uuid",
9117
- type: "string",
9118
- "x-title": "Workspace ID"
9066
+ type: "string"
9119
9067
  }
9120
9068
  },
9121
9069
  required: [
@@ -9146,10 +9094,9 @@ var openapi_default = {
9146
9094
  "x-title": "Connected Account ID"
9147
9095
  },
9148
9096
  created_at: {
9149
- description: "The time when the event was created.",
9097
+ description: "Time at which the event was created.",
9150
9098
  format: "date-time",
9151
- type: "string",
9152
- "x-title": "Created At"
9099
+ type: "string"
9153
9100
  },
9154
9101
  device_id: {
9155
9102
  description: "The ID of the device.",
@@ -9158,26 +9105,23 @@ var openapi_default = {
9158
9105
  "x-title": "Device ID"
9159
9106
  },
9160
9107
  event_id: {
9161
- description: "The ID of the event.",
9108
+ description: "ID of the event.",
9162
9109
  format: "uuid",
9163
- type: "string",
9164
- "x-title": "Event ID"
9110
+ type: "string"
9165
9111
  },
9166
9112
  event_type: {
9167
9113
  enum: ["access_code.unmanaged.removed"],
9168
9114
  type: "string"
9169
9115
  },
9170
9116
  occurred_at: {
9171
- description: "The time when the event occurred.",
9117
+ description: "Time when the event occurred.",
9172
9118
  format: "date-time",
9173
- type: "string",
9174
- "x-title": "Occurred At"
9119
+ type: "string"
9175
9120
  },
9176
9121
  workspace_id: {
9177
- description: "The ID of the workspace.",
9122
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9178
9123
  format: "uuid",
9179
- type: "string",
9180
- "x-title": "Workspace ID"
9124
+ type: "string"
9181
9125
  }
9182
9126
  },
9183
9127
  required: [
@@ -9210,29 +9154,25 @@ var openapi_default = {
9210
9154
  "x-title": "Connected Account ID"
9211
9155
  },
9212
9156
  created_at: {
9213
- description: "The time when the event was created.",
9157
+ description: "Time at which the event was created.",
9214
9158
  format: "date-time",
9215
- type: "string",
9216
- "x-title": "Created At"
9159
+ type: "string"
9217
9160
  },
9218
9161
  event_id: {
9219
- description: "The ID of the event.",
9162
+ description: "ID of the event.",
9220
9163
  format: "uuid",
9221
- type: "string",
9222
- "x-title": "Event ID"
9164
+ type: "string"
9223
9165
  },
9224
9166
  event_type: { enum: ["acs_system.connected"], type: "string" },
9225
9167
  occurred_at: {
9226
- description: "The time when the event occurred.",
9168
+ description: "Time when the event occurred.",
9227
9169
  format: "date-time",
9228
- type: "string",
9229
- "x-title": "Occurred At"
9170
+ type: "string"
9230
9171
  },
9231
9172
  workspace_id: {
9232
- description: "The ID of the workspace.",
9173
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9233
9174
  format: "uuid",
9234
- type: "string",
9235
- "x-title": "Workspace ID"
9175
+ type: "string"
9236
9176
  }
9237
9177
  },
9238
9178
  required: [
@@ -9263,29 +9203,25 @@ var openapi_default = {
9263
9203
  "x-title": "Connected Account ID"
9264
9204
  },
9265
9205
  created_at: {
9266
- description: "The time when the event was created.",
9206
+ description: "Time at which the event was created.",
9267
9207
  format: "date-time",
9268
- type: "string",
9269
- "x-title": "Created At"
9208
+ type: "string"
9270
9209
  },
9271
9210
  event_id: {
9272
- description: "The ID of the event.",
9211
+ description: "ID of the event.",
9273
9212
  format: "uuid",
9274
- type: "string",
9275
- "x-title": "Event ID"
9213
+ type: "string"
9276
9214
  },
9277
9215
  event_type: { enum: ["acs_system.added"], type: "string" },
9278
9216
  occurred_at: {
9279
- description: "The time when the event occurred.",
9217
+ description: "Time when the event occurred.",
9280
9218
  format: "date-time",
9281
- type: "string",
9282
- "x-title": "Occurred At"
9219
+ type: "string"
9283
9220
  },
9284
9221
  workspace_id: {
9285
- description: "The ID of the workspace.",
9222
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9286
9223
  format: "uuid",
9287
- type: "string",
9288
- "x-title": "Workspace ID"
9224
+ type: "string"
9289
9225
  }
9290
9226
  },
9291
9227
  required: [
@@ -9316,29 +9252,25 @@ var openapi_default = {
9316
9252
  "x-title": "Connected Account ID"
9317
9253
  },
9318
9254
  created_at: {
9319
- description: "The time when the event was created.",
9255
+ description: "Time at which the event was created.",
9320
9256
  format: "date-time",
9321
- type: "string",
9322
- "x-title": "Created At"
9257
+ type: "string"
9323
9258
  },
9324
9259
  event_id: {
9325
- description: "The ID of the event.",
9260
+ description: "ID of the event.",
9326
9261
  format: "uuid",
9327
- type: "string",
9328
- "x-title": "Event ID"
9262
+ type: "string"
9329
9263
  },
9330
9264
  event_type: { enum: ["acs_system.disconnected"], type: "string" },
9331
9265
  occurred_at: {
9332
- description: "The time when the event occurred.",
9266
+ description: "Time when the event occurred.",
9333
9267
  format: "date-time",
9334
- type: "string",
9335
- "x-title": "Occurred At"
9268
+ type: "string"
9336
9269
  },
9337
9270
  workspace_id: {
9338
- description: "The ID of the workspace.",
9271
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9339
9272
  format: "uuid",
9340
- type: "string",
9341
- "x-title": "Workspace ID"
9273
+ type: "string"
9342
9274
  }
9343
9275
  },
9344
9276
  required: [
@@ -9370,29 +9302,25 @@ var openapi_default = {
9370
9302
  "x-title": "Connected Account ID"
9371
9303
  },
9372
9304
  created_at: {
9373
- description: "The time when the event was created.",
9305
+ description: "Time at which the event was created.",
9374
9306
  format: "date-time",
9375
- type: "string",
9376
- "x-title": "Created At"
9307
+ type: "string"
9377
9308
  },
9378
9309
  event_id: {
9379
- description: "The ID of the event.",
9310
+ description: "ID of the event.",
9380
9311
  format: "uuid",
9381
- type: "string",
9382
- "x-title": "Event ID"
9312
+ type: "string"
9383
9313
  },
9384
9314
  event_type: { enum: ["acs_credential.deleted"], type: "string" },
9385
9315
  occurred_at: {
9386
- description: "The time when the event occurred.",
9316
+ description: "Time when the event occurred.",
9387
9317
  format: "date-time",
9388
- type: "string",
9389
- "x-title": "Occurred At"
9318
+ type: "string"
9390
9319
  },
9391
9320
  workspace_id: {
9392
- description: "The ID of the workspace.",
9321
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9393
9322
  format: "uuid",
9394
- type: "string",
9395
- "x-title": "Workspace ID"
9323
+ type: "string"
9396
9324
  }
9397
9325
  },
9398
9326
  required: [
@@ -9425,29 +9353,25 @@ var openapi_default = {
9425
9353
  "x-title": "Connected Account ID"
9426
9354
  },
9427
9355
  created_at: {
9428
- description: "The time when the event was created.",
9356
+ description: "Time at which the event was created.",
9429
9357
  format: "date-time",
9430
- type: "string",
9431
- "x-title": "Created At"
9358
+ type: "string"
9432
9359
  },
9433
9360
  event_id: {
9434
- description: "The ID of the event.",
9361
+ description: "ID of the event.",
9435
9362
  format: "uuid",
9436
- type: "string",
9437
- "x-title": "Event ID"
9363
+ type: "string"
9438
9364
  },
9439
9365
  event_type: { enum: ["acs_credential.issued"], type: "string" },
9440
9366
  occurred_at: {
9441
- description: "The time when the event occurred.",
9367
+ description: "Time when the event occurred.",
9442
9368
  format: "date-time",
9443
- type: "string",
9444
- "x-title": "Occurred At"
9369
+ type: "string"
9445
9370
  },
9446
9371
  workspace_id: {
9447
- description: "The ID of the workspace.",
9372
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9448
9373
  format: "uuid",
9449
- type: "string",
9450
- "x-title": "Workspace ID"
9374
+ type: "string"
9451
9375
  }
9452
9376
  },
9453
9377
  required: [
@@ -9480,29 +9404,25 @@ var openapi_default = {
9480
9404
  "x-title": "Connected Account ID"
9481
9405
  },
9482
9406
  created_at: {
9483
- description: "The time when the event was created.",
9407
+ description: "Time at which the event was created.",
9484
9408
  format: "date-time",
9485
- type: "string",
9486
- "x-title": "Created At"
9409
+ type: "string"
9487
9410
  },
9488
9411
  event_id: {
9489
- description: "The ID of the event.",
9412
+ description: "ID of the event.",
9490
9413
  format: "uuid",
9491
- type: "string",
9492
- "x-title": "Event ID"
9414
+ type: "string"
9493
9415
  },
9494
9416
  event_type: { enum: ["acs_user.deleted"], type: "string" },
9495
9417
  occurred_at: {
9496
- description: "The time when the event occurred.",
9418
+ description: "Time when the event occurred.",
9497
9419
  format: "date-time",
9498
- type: "string",
9499
- "x-title": "Occurred At"
9420
+ type: "string"
9500
9421
  },
9501
9422
  workspace_id: {
9502
- description: "The ID of the workspace.",
9423
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9503
9424
  format: "uuid",
9504
- type: "string",
9505
- "x-title": "Workspace ID"
9425
+ type: "string"
9506
9426
  }
9507
9427
  },
9508
9428
  required: [
@@ -9539,29 +9459,25 @@ var openapi_default = {
9539
9459
  "x-title": "Connected Account ID"
9540
9460
  },
9541
9461
  created_at: {
9542
- description: "The time when the event was created.",
9462
+ description: "Time at which the event was created.",
9543
9463
  format: "date-time",
9544
- type: "string",
9545
- "x-title": "Created At"
9464
+ type: "string"
9546
9465
  },
9547
9466
  event_id: {
9548
- description: "The ID of the event.",
9467
+ description: "ID of the event.",
9549
9468
  format: "uuid",
9550
- type: "string",
9551
- "x-title": "Event ID"
9469
+ type: "string"
9552
9470
  },
9553
9471
  event_type: { enum: ["acs_encoder.added"], type: "string" },
9554
9472
  occurred_at: {
9555
- description: "The time when the event occurred.",
9473
+ description: "Time when the event occurred.",
9556
9474
  format: "date-time",
9557
- type: "string",
9558
- "x-title": "Occurred At"
9475
+ type: "string"
9559
9476
  },
9560
9477
  workspace_id: {
9561
- description: "The ID of the workspace.",
9478
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9562
9479
  format: "uuid",
9563
- type: "string",
9564
- "x-title": "Workspace ID"
9480
+ type: "string"
9565
9481
  }
9566
9482
  },
9567
9483
  required: [
@@ -9598,29 +9514,25 @@ var openapi_default = {
9598
9514
  "x-title": "Connected Account ID"
9599
9515
  },
9600
9516
  created_at: {
9601
- description: "The time when the event was created.",
9517
+ description: "Time at which the event was created.",
9602
9518
  format: "date-time",
9603
- type: "string",
9604
- "x-title": "Created At"
9519
+ type: "string"
9605
9520
  },
9606
9521
  event_id: {
9607
- description: "The ID of the event.",
9522
+ description: "ID of the event.",
9608
9523
  format: "uuid",
9609
- type: "string",
9610
- "x-title": "Event ID"
9524
+ type: "string"
9611
9525
  },
9612
9526
  event_type: { enum: ["acs_encoder.removed"], type: "string" },
9613
9527
  occurred_at: {
9614
- description: "The time when the event occurred.",
9528
+ description: "Time when the event occurred.",
9615
9529
  format: "date-time",
9616
- type: "string",
9617
- "x-title": "Occurred At"
9530
+ type: "string"
9618
9531
  },
9619
9532
  workspace_id: {
9620
- description: "The ID of the workspace.",
9533
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9621
9534
  format: "uuid",
9622
- type: "string",
9623
- "x-title": "Workspace ID"
9535
+ type: "string"
9624
9536
  }
9625
9537
  },
9626
9538
  required: [
@@ -9644,29 +9556,25 @@ var openapi_default = {
9644
9556
  "x-title": "Client Session ID"
9645
9557
  },
9646
9558
  created_at: {
9647
- description: "The time when the event was created.",
9559
+ description: "Time at which the event was created.",
9648
9560
  format: "date-time",
9649
- type: "string",
9650
- "x-title": "Created At"
9561
+ type: "string"
9651
9562
  },
9652
9563
  event_id: {
9653
- description: "The ID of the event.",
9564
+ description: "ID of the event.",
9654
9565
  format: "uuid",
9655
- type: "string",
9656
- "x-title": "Event ID"
9566
+ type: "string"
9657
9567
  },
9658
9568
  event_type: { enum: ["client_session.deleted"], type: "string" },
9659
9569
  occurred_at: {
9660
- description: "The time when the event occurred.",
9570
+ description: "Time when the event occurred.",
9661
9571
  format: "date-time",
9662
- type: "string",
9663
- "x-title": "Occurred At"
9572
+ type: "string"
9664
9573
  },
9665
9574
  workspace_id: {
9666
- description: "The ID of the workspace.",
9575
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9667
9576
  format: "uuid",
9668
- type: "string",
9669
- "x-title": "Workspace ID"
9577
+ type: "string"
9670
9578
  }
9671
9579
  },
9672
9580
  required: [
@@ -9695,32 +9603,28 @@ var openapi_default = {
9695
9603
  "x-title": "Connected Account ID"
9696
9604
  },
9697
9605
  created_at: {
9698
- description: "The time when the event was created.",
9606
+ description: "Time at which the event was created.",
9699
9607
  format: "date-time",
9700
- type: "string",
9701
- "x-title": "Created At"
9608
+ type: "string"
9702
9609
  },
9703
9610
  event_id: {
9704
- description: "The ID of the event.",
9611
+ description: "ID of the event.",
9705
9612
  format: "uuid",
9706
- type: "string",
9707
- "x-title": "Event ID"
9613
+ type: "string"
9708
9614
  },
9709
9615
  event_type: {
9710
9616
  enum: ["connected_account.connected"],
9711
9617
  type: "string"
9712
9618
  },
9713
9619
  occurred_at: {
9714
- description: "The time when the event occurred.",
9620
+ description: "Time when the event occurred.",
9715
9621
  format: "date-time",
9716
- type: "string",
9717
- "x-title": "Occurred At"
9622
+ type: "string"
9718
9623
  },
9719
9624
  workspace_id: {
9720
- description: "The ID of the workspace.",
9625
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9721
9626
  format: "uuid",
9722
- type: "string",
9723
- "x-title": "Workspace ID"
9627
+ type: "string"
9724
9628
  }
9725
9629
  },
9726
9630
  required: [
@@ -9750,32 +9654,28 @@ var openapi_default = {
9750
9654
  "x-title": "Connected Account ID"
9751
9655
  },
9752
9656
  created_at: {
9753
- description: "The time when the event was created.",
9657
+ description: "Time at which the event was created.",
9754
9658
  format: "date-time",
9755
- type: "string",
9756
- "x-title": "Created At"
9659
+ type: "string"
9757
9660
  },
9758
9661
  event_id: {
9759
- description: "The ID of the event.",
9662
+ description: "ID of the event.",
9760
9663
  format: "uuid",
9761
- type: "string",
9762
- "x-title": "Event ID"
9664
+ type: "string"
9763
9665
  },
9764
9666
  event_type: {
9765
9667
  enum: ["connected_account.created"],
9766
9668
  type: "string"
9767
9669
  },
9768
9670
  occurred_at: {
9769
- description: "The time when the event occurred.",
9671
+ description: "Time when the event occurred.",
9770
9672
  format: "date-time",
9771
- type: "string",
9772
- "x-title": "Occurred At"
9673
+ type: "string"
9773
9674
  },
9774
9675
  workspace_id: {
9775
- description: "The ID of the workspace.",
9676
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9776
9677
  format: "uuid",
9777
- type: "string",
9778
- "x-title": "Workspace ID"
9678
+ type: "string"
9779
9679
  }
9780
9680
  },
9781
9681
  required: [
@@ -9806,32 +9706,28 @@ var openapi_default = {
9806
9706
  "x-title": "Connected Account ID"
9807
9707
  },
9808
9708
  created_at: {
9809
- description: "The time when the event was created.",
9709
+ description: "Time at which the event was created.",
9810
9710
  format: "date-time",
9811
- type: "string",
9812
- "x-title": "Created At"
9711
+ type: "string"
9813
9712
  },
9814
9713
  event_id: {
9815
- description: "The ID of the event.",
9714
+ description: "ID of the event.",
9816
9715
  format: "uuid",
9817
- type: "string",
9818
- "x-title": "Event ID"
9716
+ type: "string"
9819
9717
  },
9820
9718
  event_type: {
9821
9719
  enum: ["connected_account.successful_login"],
9822
9720
  type: "string"
9823
9721
  },
9824
9722
  occurred_at: {
9825
- description: "The time when the event occurred.",
9723
+ description: "Time when the event occurred.",
9826
9724
  format: "date-time",
9827
- type: "string",
9828
- "x-title": "Occurred At"
9725
+ type: "string"
9829
9726
  },
9830
9727
  workspace_id: {
9831
- description: "The ID of the workspace.",
9728
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9832
9729
  format: "uuid",
9833
- type: "string",
9834
- "x-title": "Workspace ID"
9730
+ type: "string"
9835
9731
  }
9836
9732
  },
9837
9733
  required: [
@@ -9856,32 +9752,28 @@ var openapi_default = {
9856
9752
  "x-title": "Connected Account ID"
9857
9753
  },
9858
9754
  created_at: {
9859
- description: "The time when the event was created.",
9755
+ description: "Time at which the event was created.",
9860
9756
  format: "date-time",
9861
- type: "string",
9862
- "x-title": "Created At"
9757
+ type: "string"
9863
9758
  },
9864
9759
  event_id: {
9865
- description: "The ID of the event.",
9760
+ description: "ID of the event.",
9866
9761
  format: "uuid",
9867
- type: "string",
9868
- "x-title": "Event ID"
9762
+ type: "string"
9869
9763
  },
9870
9764
  event_type: {
9871
9765
  enum: ["connected_account.disconnected"],
9872
9766
  type: "string"
9873
9767
  },
9874
9768
  occurred_at: {
9875
- description: "The time when the event occurred.",
9769
+ description: "Time when the event occurred.",
9876
9770
  format: "date-time",
9877
- type: "string",
9878
- "x-title": "Occurred At"
9771
+ type: "string"
9879
9772
  },
9880
9773
  workspace_id: {
9881
- description: "The ID of the workspace.",
9774
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9882
9775
  format: "uuid",
9883
- type: "string",
9884
- "x-title": "Workspace ID"
9776
+ type: "string"
9885
9777
  }
9886
9778
  },
9887
9779
  required: [
@@ -9904,32 +9796,28 @@ var openapi_default = {
9904
9796
  "x-title": "Connected Account ID"
9905
9797
  },
9906
9798
  created_at: {
9907
- description: "The time when the event was created.",
9799
+ description: "Time at which the event was created.",
9908
9800
  format: "date-time",
9909
- type: "string",
9910
- "x-title": "Created At"
9801
+ type: "string"
9911
9802
  },
9912
9803
  event_id: {
9913
- description: "The ID of the event.",
9804
+ description: "ID of the event.",
9914
9805
  format: "uuid",
9915
- type: "string",
9916
- "x-title": "Event ID"
9806
+ type: "string"
9917
9807
  },
9918
9808
  event_type: {
9919
9809
  enum: ["connected_account.completed_first_sync"],
9920
9810
  type: "string"
9921
9811
  },
9922
9812
  occurred_at: {
9923
- description: "The time when the event occurred.",
9813
+ description: "Time when the event occurred.",
9924
9814
  format: "date-time",
9925
- type: "string",
9926
- "x-title": "Occurred At"
9815
+ type: "string"
9927
9816
  },
9928
9817
  workspace_id: {
9929
- description: "The ID of the workspace.",
9818
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9930
9819
  format: "uuid",
9931
- type: "string",
9932
- "x-title": "Workspace ID"
9820
+ type: "string"
9933
9821
  }
9934
9822
  },
9935
9823
  required: [
@@ -9952,32 +9840,28 @@ var openapi_default = {
9952
9840
  "x-title": "Connected Account ID"
9953
9841
  },
9954
9842
  created_at: {
9955
- description: "The time when the event was created.",
9843
+ description: "Time at which the event was created.",
9956
9844
  format: "date-time",
9957
- type: "string",
9958
- "x-title": "Created At"
9845
+ type: "string"
9959
9846
  },
9960
9847
  event_id: {
9961
- description: "The ID of the event.",
9848
+ description: "ID of the event.",
9962
9849
  format: "uuid",
9963
- type: "string",
9964
- "x-title": "Event ID"
9850
+ type: "string"
9965
9851
  },
9966
9852
  event_type: {
9967
9853
  enum: ["connected_account.deleted"],
9968
9854
  type: "string"
9969
9855
  },
9970
9856
  occurred_at: {
9971
- description: "The time when the event occurred.",
9857
+ description: "Time when the event occurred.",
9972
9858
  format: "date-time",
9973
- type: "string",
9974
- "x-title": "Occurred At"
9859
+ type: "string"
9975
9860
  },
9976
9861
  workspace_id: {
9977
- description: "The ID of the workspace.",
9862
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
9978
9863
  format: "uuid",
9979
- type: "string",
9980
- "x-title": "Workspace ID"
9864
+ type: "string"
9981
9865
  }
9982
9866
  },
9983
9867
  required: [
@@ -10000,16 +9884,14 @@ var openapi_default = {
10000
9884
  "x-title": "Connected Account ID"
10001
9885
  },
10002
9886
  created_at: {
10003
- description: "The time when the event was created.",
9887
+ description: "Time at which the event was created.",
10004
9888
  format: "date-time",
10005
- type: "string",
10006
- "x-title": "Created At"
9889
+ type: "string"
10007
9890
  },
10008
9891
  event_id: {
10009
- description: "The ID of the event.",
9892
+ description: "ID of the event.",
10010
9893
  format: "uuid",
10011
- type: "string",
10012
- "x-title": "Event ID"
9894
+ type: "string"
10013
9895
  },
10014
9896
  event_type: {
10015
9897
  enum: [
@@ -10018,16 +9900,14 @@ var openapi_default = {
10018
9900
  type: "string"
10019
9901
  },
10020
9902
  occurred_at: {
10021
- description: "The time when the event occurred.",
9903
+ description: "Time when the event occurred.",
10022
9904
  format: "date-time",
10023
- type: "string",
10024
- "x-title": "Occurred At"
9905
+ type: "string"
10025
9906
  },
10026
9907
  workspace_id: {
10027
- description: "The ID of the workspace.",
9908
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10028
9909
  format: "uuid",
10029
- type: "string",
10030
- "x-title": "Workspace ID"
9910
+ type: "string"
10031
9911
  }
10032
9912
  },
10033
9913
  required: [
@@ -10055,26 +9935,23 @@ var openapi_default = {
10055
9935
  "x-title": "Action Type"
10056
9936
  },
10057
9937
  created_at: {
10058
- description: "The time when the event was created.",
9938
+ description: "Time at which the event was created.",
10059
9939
  format: "date-time",
10060
- type: "string",
10061
- "x-title": "Created At"
9940
+ type: "string"
10062
9941
  },
10063
9942
  event_id: {
10064
- description: "The ID of the event.",
9943
+ description: "ID of the event.",
10065
9944
  format: "uuid",
10066
- type: "string",
10067
- "x-title": "Event ID"
9945
+ type: "string"
10068
9946
  },
10069
9947
  event_type: {
10070
9948
  enum: ["action_attempt.lock_door.succeeded"],
10071
9949
  type: "string"
10072
9950
  },
10073
9951
  occurred_at: {
10074
- description: "The time when the event occurred.",
9952
+ description: "Time when the event occurred.",
10075
9953
  format: "date-time",
10076
- type: "string",
10077
- "x-title": "Occurred At"
9954
+ type: "string"
10078
9955
  },
10079
9956
  status: {
10080
9957
  description: "The status of the action.",
@@ -10082,10 +9959,9 @@ var openapi_default = {
10082
9959
  "x-title": "Status"
10083
9960
  },
10084
9961
  workspace_id: {
10085
- description: "The ID of the workspace.",
9962
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10086
9963
  format: "uuid",
10087
- type: "string",
10088
- "x-title": "Workspace ID"
9964
+ type: "string"
10089
9965
  }
10090
9966
  },
10091
9967
  required: [
@@ -10115,26 +9991,23 @@ var openapi_default = {
10115
9991
  "x-title": "Action Type"
10116
9992
  },
10117
9993
  created_at: {
10118
- description: "The time when the event was created.",
9994
+ description: "Time at which the event was created.",
10119
9995
  format: "date-time",
10120
- type: "string",
10121
- "x-title": "Created At"
9996
+ type: "string"
10122
9997
  },
10123
9998
  event_id: {
10124
- description: "The ID of the event.",
9999
+ description: "ID of the event.",
10125
10000
  format: "uuid",
10126
- type: "string",
10127
- "x-title": "Event ID"
10001
+ type: "string"
10128
10002
  },
10129
10003
  event_type: {
10130
10004
  enum: ["action_attempt.lock_door.failed"],
10131
10005
  type: "string"
10132
10006
  },
10133
10007
  occurred_at: {
10134
- description: "The time when the event occurred.",
10008
+ description: "Time when the event occurred.",
10135
10009
  format: "date-time",
10136
- type: "string",
10137
- "x-title": "Occurred At"
10010
+ type: "string"
10138
10011
  },
10139
10012
  status: {
10140
10013
  description: "The status of the action.",
@@ -10142,10 +10015,9 @@ var openapi_default = {
10142
10015
  "x-title": "Status"
10143
10016
  },
10144
10017
  workspace_id: {
10145
- description: "The ID of the workspace.",
10018
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10146
10019
  format: "uuid",
10147
- type: "string",
10148
- "x-title": "Workspace ID"
10020
+ type: "string"
10149
10021
  }
10150
10022
  },
10151
10023
  required: [
@@ -10175,26 +10047,23 @@ var openapi_default = {
10175
10047
  "x-title": "Action Type"
10176
10048
  },
10177
10049
  created_at: {
10178
- description: "The time when the event was created.",
10050
+ description: "Time at which the event was created.",
10179
10051
  format: "date-time",
10180
- type: "string",
10181
- "x-title": "Created At"
10052
+ type: "string"
10182
10053
  },
10183
10054
  event_id: {
10184
- description: "The ID of the event.",
10055
+ description: "ID of the event.",
10185
10056
  format: "uuid",
10186
- type: "string",
10187
- "x-title": "Event ID"
10057
+ type: "string"
10188
10058
  },
10189
10059
  event_type: {
10190
10060
  enum: ["action_attempt.unlock_door.succeeded"],
10191
10061
  type: "string"
10192
10062
  },
10193
10063
  occurred_at: {
10194
- description: "The time when the event occurred.",
10064
+ description: "Time when the event occurred.",
10195
10065
  format: "date-time",
10196
- type: "string",
10197
- "x-title": "Occurred At"
10066
+ type: "string"
10198
10067
  },
10199
10068
  status: {
10200
10069
  description: "The status of the action.",
@@ -10202,10 +10071,9 @@ var openapi_default = {
10202
10071
  "x-title": "Status"
10203
10072
  },
10204
10073
  workspace_id: {
10205
- description: "The ID of the workspace.",
10074
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10206
10075
  format: "uuid",
10207
- type: "string",
10208
- "x-title": "Workspace ID"
10076
+ type: "string"
10209
10077
  }
10210
10078
  },
10211
10079
  required: [
@@ -10235,26 +10103,23 @@ var openapi_default = {
10235
10103
  "x-title": "Action Type"
10236
10104
  },
10237
10105
  created_at: {
10238
- description: "The time when the event was created.",
10106
+ description: "Time at which the event was created.",
10239
10107
  format: "date-time",
10240
- type: "string",
10241
- "x-title": "Created At"
10108
+ type: "string"
10242
10109
  },
10243
10110
  event_id: {
10244
- description: "The ID of the event.",
10111
+ description: "ID of the event.",
10245
10112
  format: "uuid",
10246
- type: "string",
10247
- "x-title": "Event ID"
10113
+ type: "string"
10248
10114
  },
10249
10115
  event_type: {
10250
10116
  enum: ["action_attempt.unlock_door.failed"],
10251
10117
  type: "string"
10252
10118
  },
10253
10119
  occurred_at: {
10254
- description: "The time when the event occurred.",
10120
+ description: "Time when the event occurred.",
10255
10121
  format: "date-time",
10256
- type: "string",
10257
- "x-title": "Occurred At"
10122
+ type: "string"
10258
10123
  },
10259
10124
  status: {
10260
10125
  description: "The status of the action.",
@@ -10262,10 +10127,9 @@ var openapi_default = {
10262
10127
  "x-title": "Status"
10263
10128
  },
10264
10129
  workspace_id: {
10265
- description: "The ID of the workspace.",
10130
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10266
10131
  format: "uuid",
10267
- type: "string",
10268
- "x-title": "Workspace ID"
10132
+ type: "string"
10269
10133
  }
10270
10134
  },
10271
10135
  required: [
@@ -10296,32 +10160,28 @@ var openapi_default = {
10296
10160
  "x-title": "Connected Account ID"
10297
10161
  },
10298
10162
  created_at: {
10299
- description: "The time when the event was created.",
10163
+ description: "Time at which the event was created.",
10300
10164
  format: "date-time",
10301
- type: "string",
10302
- "x-title": "Created At"
10165
+ type: "string"
10303
10166
  },
10304
10167
  event_id: {
10305
- description: "The ID of the event.",
10168
+ description: "ID of the event.",
10306
10169
  format: "uuid",
10307
- type: "string",
10308
- "x-title": "Event ID"
10170
+ type: "string"
10309
10171
  },
10310
10172
  event_type: {
10311
10173
  enum: ["connect_webview.login_succeeded"],
10312
10174
  type: "string"
10313
10175
  },
10314
10176
  occurred_at: {
10315
- description: "The time when the event occurred.",
10177
+ description: "Time when the event occurred.",
10316
10178
  format: "date-time",
10317
- type: "string",
10318
- "x-title": "Occurred At"
10179
+ type: "string"
10319
10180
  },
10320
10181
  workspace_id: {
10321
- description: "The ID of the workspace.",
10182
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10322
10183
  format: "uuid",
10323
- type: "string",
10324
- "x-title": "Workspace ID"
10184
+ type: "string"
10325
10185
  }
10326
10186
  },
10327
10187
  required: [
@@ -10345,32 +10205,28 @@ var openapi_default = {
10345
10205
  "x-title": "Connect Webview ID"
10346
10206
  },
10347
10207
  created_at: {
10348
- description: "The time when the event was created.",
10208
+ description: "Time at which the event was created.",
10349
10209
  format: "date-time",
10350
- type: "string",
10351
- "x-title": "Created At"
10210
+ type: "string"
10352
10211
  },
10353
10212
  event_id: {
10354
- description: "The ID of the event.",
10213
+ description: "ID of the event.",
10355
10214
  format: "uuid",
10356
- type: "string",
10357
- "x-title": "Event ID"
10215
+ type: "string"
10358
10216
  },
10359
10217
  event_type: {
10360
10218
  enum: ["connect_webview.login_failed"],
10361
10219
  type: "string"
10362
10220
  },
10363
10221
  occurred_at: {
10364
- description: "The time when the event occurred.",
10222
+ description: "Time when the event occurred.",
10365
10223
  format: "date-time",
10366
- type: "string",
10367
- "x-title": "Occurred At"
10224
+ type: "string"
10368
10225
  },
10369
10226
  workspace_id: {
10370
- description: "The ID of the workspace.",
10227
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10371
10228
  format: "uuid",
10372
- type: "string",
10373
- "x-title": "Workspace ID"
10229
+ type: "string"
10374
10230
  }
10375
10231
  },
10376
10232
  required: [
@@ -10387,41 +10243,35 @@ var openapi_default = {
10387
10243
  description: "A new device was connected to Seam.",
10388
10244
  properties: {
10389
10245
  connected_account_id: {
10390
- description: "ID of the connected account.",
10246
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10391
10247
  format: "uuid",
10392
- type: "string",
10393
- "x-title": "Connected Account ID"
10248
+ type: "string"
10394
10249
  },
10395
10250
  created_at: {
10396
- description: "The time when the event was created.",
10251
+ description: "Time at which the event was created.",
10397
10252
  format: "date-time",
10398
- type: "string",
10399
- "x-title": "Created At"
10253
+ type: "string"
10400
10254
  },
10401
10255
  device_id: {
10402
10256
  description: "ID of the device.",
10403
10257
  format: "uuid",
10404
- type: "string",
10405
- "x-title": "Device ID"
10258
+ type: "string"
10406
10259
  },
10407
10260
  event_id: {
10408
- description: "The ID of the event.",
10261
+ description: "ID of the event.",
10409
10262
  format: "uuid",
10410
- type: "string",
10411
- "x-title": "Event ID"
10263
+ type: "string"
10412
10264
  },
10413
10265
  event_type: { enum: ["device.connected"], type: "string" },
10414
10266
  occurred_at: {
10415
- description: "The time when the event occurred.",
10267
+ description: "Time when the event occurred.",
10416
10268
  format: "date-time",
10417
- type: "string",
10418
- "x-title": "Occurred At"
10269
+ type: "string"
10419
10270
  },
10420
10271
  workspace_id: {
10421
- description: "The ID of the workspace.",
10272
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10422
10273
  format: "uuid",
10423
- type: "string",
10424
- "x-title": "Workspace ID"
10274
+ type: "string"
10425
10275
  }
10426
10276
  },
10427
10277
  required: [
@@ -10436,44 +10286,38 @@ var openapi_default = {
10436
10286
  type: "object"
10437
10287
  },
10438
10288
  {
10439
- description: "A device has been added or reconnected to Seam.",
10289
+ description: "A device was added or reconnected to Seam.",
10440
10290
  properties: {
10441
10291
  connected_account_id: {
10442
- description: "ID of the connected account.",
10292
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10443
10293
  format: "uuid",
10444
- type: "string",
10445
- "x-title": "Connected Account ID"
10294
+ type: "string"
10446
10295
  },
10447
10296
  created_at: {
10448
- description: "The time when the event was created.",
10297
+ description: "Time at which the event was created.",
10449
10298
  format: "date-time",
10450
- type: "string",
10451
- "x-title": "Created At"
10299
+ type: "string"
10452
10300
  },
10453
10301
  device_id: {
10454
10302
  description: "ID of the device.",
10455
10303
  format: "uuid",
10456
- type: "string",
10457
- "x-title": "Device ID"
10304
+ type: "string"
10458
10305
  },
10459
10306
  event_id: {
10460
- description: "The ID of the event.",
10307
+ description: "ID of the event.",
10461
10308
  format: "uuid",
10462
- type: "string",
10463
- "x-title": "Event ID"
10309
+ type: "string"
10464
10310
  },
10465
10311
  event_type: { enum: ["device.added"], type: "string" },
10466
10312
  occurred_at: {
10467
- description: "The time when the event occurred.",
10313
+ description: "Time when the event occurred.",
10468
10314
  format: "date-time",
10469
- type: "string",
10470
- "x-title": "Occurred At"
10315
+ type: "string"
10471
10316
  },
10472
10317
  workspace_id: {
10473
- description: "The ID of the workspace.",
10318
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10474
10319
  format: "uuid",
10475
- type: "string",
10476
- "x-title": "Workspace ID"
10320
+ type: "string"
10477
10321
  }
10478
10322
  },
10479
10323
  required: [
@@ -10488,47 +10332,41 @@ var openapi_default = {
10488
10332
  type: "object"
10489
10333
  },
10490
10334
  {
10491
- description: "An unmanaged device was successfully converted to a managed device.",
10335
+ description: "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was successfully converted to a managed device.",
10492
10336
  properties: {
10493
10337
  connected_account_id: {
10494
- description: "ID of the connected account.",
10338
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10495
10339
  format: "uuid",
10496
- type: "string",
10497
- "x-title": "Connected Account ID"
10340
+ type: "string"
10498
10341
  },
10499
10342
  created_at: {
10500
- description: "The time when the event was created.",
10343
+ description: "Time at which the event was created.",
10501
10344
  format: "date-time",
10502
- type: "string",
10503
- "x-title": "Created At"
10345
+ type: "string"
10504
10346
  },
10505
10347
  device_id: {
10506
10348
  description: "ID of the device.",
10507
10349
  format: "uuid",
10508
- type: "string",
10509
- "x-title": "Device ID"
10350
+ type: "string"
10510
10351
  },
10511
10352
  event_id: {
10512
- description: "The ID of the event.",
10353
+ description: "ID of the event.",
10513
10354
  format: "uuid",
10514
- type: "string",
10515
- "x-title": "Event ID"
10355
+ type: "string"
10516
10356
  },
10517
10357
  event_type: {
10518
10358
  enum: ["device.converted_to_unmanaged"],
10519
10359
  type: "string"
10520
10360
  },
10521
10361
  occurred_at: {
10522
- description: "The time when the event occurred.",
10362
+ description: "Time when the event occurred.",
10523
10363
  format: "date-time",
10524
- type: "string",
10525
- "x-title": "Occurred At"
10364
+ type: "string"
10526
10365
  },
10527
10366
  workspace_id: {
10528
- description: "The ID of the workspace.",
10367
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10529
10368
  format: "uuid",
10530
- type: "string",
10531
- "x-title": "Workspace ID"
10369
+ type: "string"
10532
10370
  }
10533
10371
  },
10534
10372
  required: [
@@ -10543,47 +10381,41 @@ var openapi_default = {
10543
10381
  type: "object"
10544
10382
  },
10545
10383
  {
10546
- description: "A managed device was successfully converted to an unmanaged device.",
10384
+ description: "A managed device was successfully converted to an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices).",
10547
10385
  properties: {
10548
10386
  connected_account_id: {
10549
- description: "ID of the connected account.",
10387
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10550
10388
  format: "uuid",
10551
- type: "string",
10552
- "x-title": "Connected Account ID"
10389
+ type: "string"
10553
10390
  },
10554
10391
  created_at: {
10555
- description: "The time when the event was created.",
10392
+ description: "Time at which the event was created.",
10556
10393
  format: "date-time",
10557
- type: "string",
10558
- "x-title": "Created At"
10394
+ type: "string"
10559
10395
  },
10560
10396
  device_id: {
10561
10397
  description: "ID of the device.",
10562
10398
  format: "uuid",
10563
- type: "string",
10564
- "x-title": "Device ID"
10399
+ type: "string"
10565
10400
  },
10566
10401
  event_id: {
10567
- description: "The ID of the event.",
10402
+ description: "ID of the event.",
10568
10403
  format: "uuid",
10569
- type: "string",
10570
- "x-title": "Event ID"
10404
+ type: "string"
10571
10405
  },
10572
10406
  event_type: {
10573
10407
  enum: ["device.unmanaged.converted_to_managed"],
10574
10408
  type: "string"
10575
10409
  },
10576
10410
  occurred_at: {
10577
- description: "The time when the event occurred.",
10411
+ description: "Time when the event occurred.",
10578
10412
  format: "date-time",
10579
- type: "string",
10580
- "x-title": "Occurred At"
10413
+ type: "string"
10581
10414
  },
10582
10415
  workspace_id: {
10583
- description: "The ID of the workspace.",
10416
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10584
10417
  format: "uuid",
10585
- type: "string",
10586
- "x-title": "Workspace ID"
10418
+ type: "string"
10587
10419
  }
10588
10420
  },
10589
10421
  required: [
@@ -10598,47 +10430,41 @@ var openapi_default = {
10598
10430
  type: "object"
10599
10431
  },
10600
10432
  {
10601
- description: "An unmanaged device was connected to Seam",
10433
+ description: "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was connected to Seam.",
10602
10434
  properties: {
10603
10435
  connected_account_id: {
10604
- description: "ID of the connected account.",
10436
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10605
10437
  format: "uuid",
10606
- type: "string",
10607
- "x-title": "Connected Account ID"
10438
+ type: "string"
10608
10439
  },
10609
10440
  created_at: {
10610
- description: "The time when the event was created.",
10441
+ description: "Time at which the event was created.",
10611
10442
  format: "date-time",
10612
- type: "string",
10613
- "x-title": "Created At"
10443
+ type: "string"
10614
10444
  },
10615
10445
  device_id: {
10616
10446
  description: "ID of the device.",
10617
10447
  format: "uuid",
10618
- type: "string",
10619
- "x-title": "Device ID"
10448
+ type: "string"
10620
10449
  },
10621
10450
  event_id: {
10622
- description: "The ID of the event.",
10451
+ description: "ID of the event.",
10623
10452
  format: "uuid",
10624
- type: "string",
10625
- "x-title": "Event ID"
10453
+ type: "string"
10626
10454
  },
10627
10455
  event_type: {
10628
10456
  enum: ["device.unmanaged.connected"],
10629
10457
  type: "string"
10630
10458
  },
10631
10459
  occurred_at: {
10632
- description: "The time when the event occurred.",
10460
+ description: "Time when the event occurred.",
10633
10461
  format: "date-time",
10634
- type: "string",
10635
- "x-title": "Occurred At"
10462
+ type: "string"
10636
10463
  },
10637
10464
  workspace_id: {
10638
- description: "The ID of the workspace.",
10465
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10639
10466
  format: "uuid",
10640
- type: "string",
10641
- "x-title": "Workspace ID"
10467
+ type: "string"
10642
10468
  }
10643
10469
  },
10644
10470
  required: [
@@ -10653,54 +10479,47 @@ var openapi_default = {
10653
10479
  type: "object"
10654
10480
  },
10655
10481
  {
10656
- description: "A device was disconnected",
10482
+ description: "A device was disconnected from Seam.",
10657
10483
  properties: {
10658
10484
  connected_account_id: {
10659
- description: "ID of the connected account.",
10485
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10660
10486
  format: "uuid",
10661
- type: "string",
10662
- "x-title": "Connected Account ID"
10487
+ type: "string"
10663
10488
  },
10664
10489
  created_at: {
10665
- description: "The time when the event was created.",
10490
+ description: "Time at which the event was created.",
10666
10491
  format: "date-time",
10667
- type: "string",
10668
- "x-title": "Created At"
10492
+ type: "string"
10669
10493
  },
10670
10494
  device_id: {
10671
10495
  description: "ID of the device.",
10672
10496
  format: "uuid",
10673
- type: "string",
10674
- "x-title": "Device ID"
10497
+ type: "string"
10675
10498
  },
10676
10499
  error_code: {
10677
- description: "The error code associated with the event, if any.",
10500
+ description: "Error code associated with the disconnection event, if any.",
10678
10501
  enum: [
10679
10502
  "account_disconnected",
10680
10503
  "hub_disconnected",
10681
10504
  "device_disconnected"
10682
10505
  ],
10683
- type: "string",
10684
- "x-title": "Event Error Code"
10506
+ type: "string"
10685
10507
  },
10686
10508
  event_id: {
10687
- description: "The ID of the event.",
10509
+ description: "ID of the event.",
10688
10510
  format: "uuid",
10689
- type: "string",
10690
- "x-title": "Event ID"
10511
+ type: "string"
10691
10512
  },
10692
10513
  event_type: { enum: ["device.disconnected"], type: "string" },
10693
10514
  occurred_at: {
10694
- description: "The time when the event occurred.",
10515
+ description: "Time when the event occurred.",
10695
10516
  format: "date-time",
10696
- type: "string",
10697
- "x-title": "Occurred At"
10517
+ type: "string"
10698
10518
  },
10699
10519
  workspace_id: {
10700
- description: "The ID of the workspace.",
10520
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10701
10521
  format: "uuid",
10702
- type: "string",
10703
- "x-title": "Workspace ID"
10522
+ type: "string"
10704
10523
  }
10705
10524
  },
10706
10525
  required: [
@@ -10716,57 +10535,50 @@ var openapi_default = {
10716
10535
  type: "object"
10717
10536
  },
10718
10537
  {
10719
- description: "An unmanaged device was disconnected",
10538
+ description: "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was disconnected from Seam.",
10720
10539
  properties: {
10721
10540
  connected_account_id: {
10722
- description: "ID of the connected account.",
10541
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10723
10542
  format: "uuid",
10724
- type: "string",
10725
- "x-title": "Connected Account ID"
10543
+ type: "string"
10726
10544
  },
10727
10545
  created_at: {
10728
- description: "The time when the event was created.",
10546
+ description: "Time at which the event was created.",
10729
10547
  format: "date-time",
10730
- type: "string",
10731
- "x-title": "Created At"
10548
+ type: "string"
10732
10549
  },
10733
10550
  device_id: {
10734
10551
  description: "ID of the device.",
10735
10552
  format: "uuid",
10736
- type: "string",
10737
- "x-title": "Device ID"
10553
+ type: "string"
10738
10554
  },
10739
10555
  error_code: {
10740
- description: "The error code associated with the event, if any.",
10556
+ description: "Error code associated with the disconnection event, if any.",
10741
10557
  enum: [
10742
10558
  "account_disconnected",
10743
10559
  "hub_disconnected",
10744
10560
  "device_disconnected"
10745
10561
  ],
10746
- type: "string",
10747
- "x-title": "Event Error Code"
10562
+ type: "string"
10748
10563
  },
10749
10564
  event_id: {
10750
- description: "The ID of the event.",
10565
+ description: "ID of the event.",
10751
10566
  format: "uuid",
10752
- type: "string",
10753
- "x-title": "Event ID"
10567
+ type: "string"
10754
10568
  },
10755
10569
  event_type: {
10756
10570
  enum: ["device.unmanaged.disconnected"],
10757
10571
  type: "string"
10758
10572
  },
10759
10573
  occurred_at: {
10760
- description: "The time when the event occurred.",
10574
+ description: "Time when the event occurred.",
10761
10575
  format: "date-time",
10762
- type: "string",
10763
- "x-title": "Occurred At"
10576
+ type: "string"
10764
10577
  },
10765
10578
  workspace_id: {
10766
- description: "The ID of the workspace.",
10579
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10767
10580
  format: "uuid",
10768
- type: "string",
10769
- "x-title": "Workspace ID"
10581
+ type: "string"
10770
10582
  }
10771
10583
  },
10772
10584
  required: [
@@ -10782,44 +10594,38 @@ var openapi_default = {
10782
10594
  type: "object"
10783
10595
  },
10784
10596
  {
10785
- description: "A device detected that it was tampered with, e.g., opened or moved.",
10597
+ description: "A device detected that it was tampered with, for example, opened or moved.",
10786
10598
  properties: {
10787
10599
  connected_account_id: {
10788
- description: "ID of the connected account.",
10600
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10789
10601
  format: "uuid",
10790
- type: "string",
10791
- "x-title": "Connected Account ID"
10602
+ type: "string"
10792
10603
  },
10793
10604
  created_at: {
10794
- description: "The time when the event was created.",
10605
+ description: "Time at which the event was created.",
10795
10606
  format: "date-time",
10796
- type: "string",
10797
- "x-title": "Created At"
10607
+ type: "string"
10798
10608
  },
10799
10609
  device_id: {
10800
10610
  description: "ID of the device.",
10801
10611
  format: "uuid",
10802
- type: "string",
10803
- "x-title": "Device ID"
10612
+ type: "string"
10804
10613
  },
10805
10614
  event_id: {
10806
- description: "The ID of the event.",
10615
+ description: "ID of the event.",
10807
10616
  format: "uuid",
10808
- type: "string",
10809
- "x-title": "Event ID"
10617
+ type: "string"
10810
10618
  },
10811
10619
  event_type: { enum: ["device.tampered"], type: "string" },
10812
10620
  occurred_at: {
10813
- description: "The time when the event occurred.",
10621
+ description: "Time when the event occurred.",
10814
10622
  format: "date-time",
10815
- type: "string",
10816
- "x-title": "Occurred At"
10623
+ type: "string"
10817
10624
  },
10818
10625
  workspace_id: {
10819
- description: "The ID of the workspace.",
10626
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10820
10627
  format: "uuid",
10821
- type: "string",
10822
- "x-title": "Workspace ID"
10628
+ type: "string"
10823
10629
  }
10824
10630
  },
10825
10631
  required: [
@@ -10837,49 +10643,42 @@ var openapi_default = {
10837
10643
  description: "A device battery level dropped below the low threshold.",
10838
10644
  properties: {
10839
10645
  battery_level: {
10840
- description: "Fractional number 0 to 1.0 indicating amount of battery in device, as reported by device.",
10646
+ description: "Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device.",
10841
10647
  format: "float",
10842
10648
  maximum: 1,
10843
10649
  minimum: 0,
10844
- type: "number",
10845
- "x-title": "Battery Level"
10650
+ type: "number"
10846
10651
  },
10847
10652
  connected_account_id: {
10848
- description: "ID of the connected account.",
10653
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10849
10654
  format: "uuid",
10850
- type: "string",
10851
- "x-title": "Connected Account ID"
10655
+ type: "string"
10852
10656
  },
10853
10657
  created_at: {
10854
- description: "The time when the event was created.",
10658
+ description: "Time at which the event was created.",
10855
10659
  format: "date-time",
10856
- type: "string",
10857
- "x-title": "Created At"
10660
+ type: "string"
10858
10661
  },
10859
10662
  device_id: {
10860
10663
  description: "ID of the device.",
10861
10664
  format: "uuid",
10862
- type: "string",
10863
- "x-title": "Device ID"
10665
+ type: "string"
10864
10666
  },
10865
10667
  event_id: {
10866
- description: "The ID of the event.",
10668
+ description: "ID of the event.",
10867
10669
  format: "uuid",
10868
- type: "string",
10869
- "x-title": "Event ID"
10670
+ type: "string"
10870
10671
  },
10871
10672
  event_type: { enum: ["device.low_battery"], type: "string" },
10872
10673
  occurred_at: {
10873
- description: "The time when the event occurred.",
10674
+ description: "Time when the event occurred.",
10874
10675
  format: "date-time",
10875
- type: "string",
10876
- "x-title": "Occurred At"
10676
+ type: "string"
10877
10677
  },
10878
10678
  workspace_id: {
10879
- description: "The ID of the workspace.",
10679
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10880
10680
  format: "uuid",
10881
- type: "string",
10882
- "x-title": "Workspace ID"
10681
+ type: "string"
10883
10682
  }
10884
10683
  },
10885
10684
  required: [
@@ -10895,61 +10694,53 @@ var openapi_default = {
10895
10694
  type: "object"
10896
10695
  },
10897
10696
  {
10898
- description: "A device battery status changed since the last battery status changed event.",
10697
+ description: "A device battery status changed since the last `battery_status_changed` event.",
10899
10698
  properties: {
10900
10699
  battery_level: {
10901
- description: "Fractional number 0 to 1.0 indicating amount of battery in device, as reported by device.",
10700
+ description: "Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device.",
10902
10701
  format: "float",
10903
10702
  maximum: 1,
10904
10703
  minimum: 0,
10905
- type: "number",
10906
- "x-title": "Battery Level"
10704
+ type: "number"
10907
10705
  },
10908
10706
  battery_status: {
10909
- description: "Enum representing the battery status calculated from numeric battery_level value, one of 'critical' | 'low' | 'good' | 'full'",
10707
+ description: "Battery status of the device, calculated from the numeric `battery_level` value.",
10910
10708
  enum: ["critical", "low", "good", "full"],
10911
- type: "string",
10912
- "x-title": "Battery Status"
10709
+ type: "string"
10913
10710
  },
10914
10711
  connected_account_id: {
10915
- description: "ID of the connected account.",
10712
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10916
10713
  format: "uuid",
10917
- type: "string",
10918
- "x-title": "Connected Account ID"
10714
+ type: "string"
10919
10715
  },
10920
10716
  created_at: {
10921
- description: "The time when the event was created.",
10717
+ description: "Time at which the event was created.",
10922
10718
  format: "date-time",
10923
- type: "string",
10924
- "x-title": "Created At"
10719
+ type: "string"
10925
10720
  },
10926
10721
  device_id: {
10927
10722
  description: "ID of the device.",
10928
10723
  format: "uuid",
10929
- type: "string",
10930
- "x-title": "Device ID"
10724
+ type: "string"
10931
10725
  },
10932
10726
  event_id: {
10933
- description: "The ID of the event.",
10727
+ description: "ID of the event.",
10934
10728
  format: "uuid",
10935
- type: "string",
10936
- "x-title": "Event ID"
10729
+ type: "string"
10937
10730
  },
10938
10731
  event_type: {
10939
10732
  enum: ["device.battery_status_changed"],
10940
10733
  type: "string"
10941
10734
  },
10942
10735
  occurred_at: {
10943
- description: "The time when the event occurred.",
10736
+ description: "Time when the event occurred.",
10944
10737
  format: "date-time",
10945
- type: "string",
10946
- "x-title": "Occurred At"
10738
+ type: "string"
10947
10739
  },
10948
10740
  workspace_id: {
10949
- description: "The ID of the workspace.",
10741
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10950
10742
  format: "uuid",
10951
- type: "string",
10952
- "x-title": "Workspace ID"
10743
+ type: "string"
10953
10744
  }
10954
10745
  },
10955
10746
  required: [
@@ -10966,44 +10757,38 @@ var openapi_default = {
10966
10757
  type: "object"
10967
10758
  },
10968
10759
  {
10969
- description: "A device was removed externally from the connected account.",
10760
+ description: "A device was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10970
10761
  properties: {
10971
10762
  connected_account_id: {
10972
- description: "ID of the connected account.",
10763
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10973
10764
  format: "uuid",
10974
- type: "string",
10975
- "x-title": "Connected Account ID"
10765
+ type: "string"
10976
10766
  },
10977
10767
  created_at: {
10978
- description: "The time when the event was created.",
10768
+ description: "Time at which the event was created.",
10979
10769
  format: "date-time",
10980
- type: "string",
10981
- "x-title": "Created At"
10770
+ type: "string"
10982
10771
  },
10983
10772
  device_id: {
10984
10773
  description: "ID of the device.",
10985
10774
  format: "uuid",
10986
- type: "string",
10987
- "x-title": "Device ID"
10775
+ type: "string"
10988
10776
  },
10989
10777
  event_id: {
10990
- description: "The ID of the event.",
10778
+ description: "ID of the event.",
10991
10779
  format: "uuid",
10992
- type: "string",
10993
- "x-title": "Event ID"
10780
+ type: "string"
10994
10781
  },
10995
10782
  event_type: { enum: ["device.removed"], type: "string" },
10996
10783
  occurred_at: {
10997
- description: "The time when the event occurred.",
10784
+ description: "Time when the event occurred.",
10998
10785
  format: "date-time",
10999
- type: "string",
11000
- "x-title": "Occurred At"
10786
+ type: "string"
11001
10787
  },
11002
10788
  workspace_id: {
11003
- description: "The ID of the workspace.",
10789
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11004
10790
  format: "uuid",
11005
- type: "string",
11006
- "x-title": "Workspace ID"
10791
+ type: "string"
11007
10792
  }
11008
10793
  },
11009
10794
  required: [
@@ -11018,44 +10803,38 @@ var openapi_default = {
11018
10803
  type: "object"
11019
10804
  },
11020
10805
  {
11021
- description: "A device was deleted.",
10806
+ description: "A device was [deleted](https://docs.seam.co/latest/api/devices/delete).",
11022
10807
  properties: {
11023
10808
  connected_account_id: {
11024
- description: "ID of the connected account.",
10809
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11025
10810
  format: "uuid",
11026
- type: "string",
11027
- "x-title": "Connected Account ID"
10811
+ type: "string"
11028
10812
  },
11029
10813
  created_at: {
11030
- description: "The time when the event was created.",
10814
+ description: "Time at which the event was created.",
11031
10815
  format: "date-time",
11032
- type: "string",
11033
- "x-title": "Created At"
10816
+ type: "string"
11034
10817
  },
11035
10818
  device_id: {
11036
10819
  description: "ID of the device.",
11037
10820
  format: "uuid",
11038
- type: "string",
11039
- "x-title": "Device ID"
10821
+ type: "string"
11040
10822
  },
11041
10823
  event_id: {
11042
- description: "The ID of the event.",
10824
+ description: "ID of the event.",
11043
10825
  format: "uuid",
11044
- type: "string",
11045
- "x-title": "Event ID"
10826
+ type: "string"
11046
10827
  },
11047
10828
  event_type: { enum: ["device.deleted"], type: "string" },
11048
10829
  occurred_at: {
11049
- description: "The time when the event occurred.",
10830
+ description: "Time when the event occurred.",
11050
10831
  format: "date-time",
11051
- type: "string",
11052
- "x-title": "Occurred At"
10832
+ type: "string"
11053
10833
  },
11054
10834
  workspace_id: {
11055
- description: "The ID of the workspace.",
10835
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11056
10836
  format: "uuid",
11057
- type: "string",
11058
- "x-title": "Workspace ID"
10837
+ type: "string"
11059
10838
  }
11060
10839
  },
11061
10840
  required: [
@@ -11070,47 +10849,41 @@ var openapi_default = {
11070
10849
  type: "object"
11071
10850
  },
11072
10851
  {
11073
- description: "Seam detected a device is using a third party integration that will interfere with Seam device management.",
10852
+ description: "Seam detected that a device is using a third-party integration that will interfere with Seam device management.",
11074
10853
  properties: {
11075
10854
  connected_account_id: {
11076
- description: "ID of the connected account.",
10855
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11077
10856
  format: "uuid",
11078
- type: "string",
11079
- "x-title": "Connected Account ID"
10857
+ type: "string"
11080
10858
  },
11081
10859
  created_at: {
11082
- description: "The time when the event was created.",
10860
+ description: "Time at which the event was created.",
11083
10861
  format: "date-time",
11084
- type: "string",
11085
- "x-title": "Created At"
10862
+ type: "string"
11086
10863
  },
11087
10864
  device_id: {
11088
10865
  description: "ID of the device.",
11089
10866
  format: "uuid",
11090
- type: "string",
11091
- "x-title": "Device ID"
10867
+ type: "string"
11092
10868
  },
11093
10869
  event_id: {
11094
- description: "The ID of the event.",
10870
+ description: "ID of the event.",
11095
10871
  format: "uuid",
11096
- type: "string",
11097
- "x-title": "Event ID"
10872
+ type: "string"
11098
10873
  },
11099
10874
  event_type: {
11100
10875
  enum: ["device.third_party_integration_detected"],
11101
10876
  type: "string"
11102
10877
  },
11103
10878
  occurred_at: {
11104
- description: "The time when the event occurred.",
10879
+ description: "Time when the event occurred.",
11105
10880
  format: "date-time",
11106
- type: "string",
11107
- "x-title": "Occurred At"
10881
+ type: "string"
11108
10882
  },
11109
10883
  workspace_id: {
11110
- description: "The ID of the workspace.",
10884
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11111
10885
  format: "uuid",
11112
- type: "string",
11113
- "x-title": "Workspace ID"
10886
+ type: "string"
11114
10887
  }
11115
10888
  },
11116
10889
  required: [
@@ -11125,47 +10898,41 @@ var openapi_default = {
11125
10898
  type: "object"
11126
10899
  },
11127
10900
  {
11128
- description: "Seam detected a device is no longer using a third party integration that was interfering with Seam device management.",
10901
+ description: "Seam detected that a device is no longer using a third-party integration that was interfering with Seam device management.",
11129
10902
  properties: {
11130
10903
  connected_account_id: {
11131
- description: "ID of the connected account.",
10904
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11132
10905
  format: "uuid",
11133
- type: "string",
11134
- "x-title": "Connected Account ID"
10906
+ type: "string"
11135
10907
  },
11136
10908
  created_at: {
11137
- description: "The time when the event was created.",
10909
+ description: "Time at which the event was created.",
11138
10910
  format: "date-time",
11139
- type: "string",
11140
- "x-title": "Created At"
10911
+ type: "string"
11141
10912
  },
11142
10913
  device_id: {
11143
10914
  description: "ID of the device.",
11144
10915
  format: "uuid",
11145
- type: "string",
11146
- "x-title": "Device ID"
10916
+ type: "string"
11147
10917
  },
11148
10918
  event_id: {
11149
- description: "The ID of the event.",
10919
+ description: "ID of the event.",
11150
10920
  format: "uuid",
11151
- type: "string",
11152
- "x-title": "Event ID"
10921
+ type: "string"
11153
10922
  },
11154
10923
  event_type: {
11155
10924
  enum: ["device.third_party_integration_no_longer_detected"],
11156
10925
  type: "string"
11157
10926
  },
11158
10927
  occurred_at: {
11159
- description: "The time when the event occurred.",
10928
+ description: "Time when the event occurred.",
11160
10929
  format: "date-time",
11161
- type: "string",
11162
- "x-title": "Occurred At"
10930
+ type: "string"
11163
10931
  },
11164
10932
  workspace_id: {
11165
- description: "The ID of the workspace.",
10933
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11166
10934
  format: "uuid",
11167
- type: "string",
11168
- "x-title": "Workspace ID"
10935
+ type: "string"
11169
10936
  }
11170
10937
  },
11171
10938
  required: [
@@ -11183,44 +10950,38 @@ var openapi_default = {
11183
10950
  description: "A Salto device activated privacy mode.",
11184
10951
  properties: {
11185
10952
  connected_account_id: {
11186
- description: "ID of the connected account.",
10953
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11187
10954
  format: "uuid",
11188
- type: "string",
11189
- "x-title": "Connected Account ID"
10955
+ type: "string"
11190
10956
  },
11191
10957
  created_at: {
11192
- description: "The time when the event was created.",
10958
+ description: "Time at which the event was created.",
11193
10959
  format: "date-time",
11194
- type: "string",
11195
- "x-title": "Created At"
10960
+ type: "string"
11196
10961
  },
11197
10962
  device_id: {
11198
10963
  description: "ID of the device.",
11199
10964
  format: "uuid",
11200
- type: "string",
11201
- "x-title": "Device ID"
10965
+ type: "string"
11202
10966
  },
11203
10967
  event_id: {
11204
- description: "The ID of the event.",
10968
+ description: "ID of the event.",
11205
10969
  format: "uuid",
11206
- type: "string",
11207
- "x-title": "Event ID"
10970
+ type: "string"
11208
10971
  },
11209
10972
  event_type: {
11210
10973
  enum: ["device.salto.privacy_mode_activated"],
11211
10974
  type: "string"
11212
10975
  },
11213
10976
  occurred_at: {
11214
- description: "The time when the event occurred.",
10977
+ description: "Time when the event occurred.",
11215
10978
  format: "date-time",
11216
- type: "string",
11217
- "x-title": "Occurred At"
10979
+ type: "string"
11218
10980
  },
11219
10981
  workspace_id: {
11220
- description: "The ID of the workspace.",
10982
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11221
10983
  format: "uuid",
11222
- type: "string",
11223
- "x-title": "Workspace ID"
10984
+ type: "string"
11224
10985
  }
11225
10986
  },
11226
10987
  required: [
@@ -11238,44 +10999,38 @@ var openapi_default = {
11238
10999
  description: "A Salto device deactivated privacy mode.",
11239
11000
  properties: {
11240
11001
  connected_account_id: {
11241
- description: "ID of the connected account.",
11002
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11242
11003
  format: "uuid",
11243
- type: "string",
11244
- "x-title": "Connected Account ID"
11004
+ type: "string"
11245
11005
  },
11246
11006
  created_at: {
11247
- description: "The time when the event was created.",
11007
+ description: "Time at which the event was created.",
11248
11008
  format: "date-time",
11249
- type: "string",
11250
- "x-title": "Created At"
11009
+ type: "string"
11251
11010
  },
11252
11011
  device_id: {
11253
11012
  description: "ID of the device.",
11254
11013
  format: "uuid",
11255
- type: "string",
11256
- "x-title": "Device ID"
11014
+ type: "string"
11257
11015
  },
11258
11016
  event_id: {
11259
- description: "The ID of the event.",
11017
+ description: "ID of the event.",
11260
11018
  format: "uuid",
11261
- type: "string",
11262
- "x-title": "Event ID"
11019
+ type: "string"
11263
11020
  },
11264
11021
  event_type: {
11265
11022
  enum: ["device.salto.privacy_mode_deactivated"],
11266
11023
  type: "string"
11267
11024
  },
11268
11025
  occurred_at: {
11269
- description: "The time when the event occurred.",
11026
+ description: "Time when the event occurred.",
11270
11027
  format: "date-time",
11271
- type: "string",
11272
- "x-title": "Occurred At"
11028
+ type: "string"
11273
11029
  },
11274
11030
  workspace_id: {
11275
- description: "The ID of the workspace.",
11031
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11276
11032
  format: "uuid",
11277
- type: "string",
11278
- "x-title": "Workspace ID"
11033
+ type: "string"
11279
11034
  }
11280
11035
  },
11281
11036
  required: [
@@ -11293,44 +11048,38 @@ var openapi_default = {
11293
11048
  description: "Seam detected a flaky device connection.",
11294
11049
  properties: {
11295
11050
  connected_account_id: {
11296
- description: "ID of the connected account.",
11051
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11297
11052
  format: "uuid",
11298
- type: "string",
11299
- "x-title": "Connected Account ID"
11053
+ type: "string"
11300
11054
  },
11301
11055
  created_at: {
11302
- description: "The time when the event was created.",
11056
+ description: "Time at which the event was created.",
11303
11057
  format: "date-time",
11304
- type: "string",
11305
- "x-title": "Created At"
11058
+ type: "string"
11306
11059
  },
11307
11060
  device_id: {
11308
11061
  description: "ID of the device.",
11309
11062
  format: "uuid",
11310
- type: "string",
11311
- "x-title": "Device ID"
11063
+ type: "string"
11312
11064
  },
11313
11065
  event_id: {
11314
- description: "The ID of the event.",
11066
+ description: "ID of the event.",
11315
11067
  format: "uuid",
11316
- type: "string",
11317
- "x-title": "Event ID"
11068
+ type: "string"
11318
11069
  },
11319
11070
  event_type: {
11320
11071
  enum: ["device.connection_became_flaky"],
11321
11072
  type: "string"
11322
11073
  },
11323
11074
  occurred_at: {
11324
- description: "The time when the event occurred.",
11075
+ description: "Time when the event occurred.",
11325
11076
  format: "date-time",
11326
- type: "string",
11327
- "x-title": "Occurred At"
11077
+ type: "string"
11328
11078
  },
11329
11079
  workspace_id: {
11330
- description: "The ID of the workspace.",
11080
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11331
11081
  format: "uuid",
11332
- type: "string",
11333
- "x-title": "Workspace ID"
11082
+ type: "string"
11334
11083
  }
11335
11084
  },
11336
11085
  required: [
@@ -11345,47 +11094,41 @@ var openapi_default = {
11345
11094
  type: "object"
11346
11095
  },
11347
11096
  {
11348
- description: "Seam detected a previously flaky device connection stabilized.",
11097
+ description: "Seam detected that a previously-flaky device connection stabilized.",
11349
11098
  properties: {
11350
11099
  connected_account_id: {
11351
- description: "ID of the connected account.",
11100
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11352
11101
  format: "uuid",
11353
- type: "string",
11354
- "x-title": "Connected Account ID"
11102
+ type: "string"
11355
11103
  },
11356
11104
  created_at: {
11357
- description: "The time when the event was created.",
11105
+ description: "Time at which the event was created.",
11358
11106
  format: "date-time",
11359
- type: "string",
11360
- "x-title": "Created At"
11107
+ type: "string"
11361
11108
  },
11362
11109
  device_id: {
11363
11110
  description: "ID of the device.",
11364
11111
  format: "uuid",
11365
- type: "string",
11366
- "x-title": "Device ID"
11112
+ type: "string"
11367
11113
  },
11368
11114
  event_id: {
11369
- description: "The ID of the event.",
11115
+ description: "ID of the event.",
11370
11116
  format: "uuid",
11371
- type: "string",
11372
- "x-title": "Event ID"
11117
+ type: "string"
11373
11118
  },
11374
11119
  event_type: {
11375
11120
  enum: ["device.connection_stabilized"],
11376
11121
  type: "string"
11377
11122
  },
11378
11123
  occurred_at: {
11379
- description: "The time when the event occurred.",
11124
+ description: "Time when the event occurred.",
11380
11125
  format: "date-time",
11381
- type: "string",
11382
- "x-title": "Occurred At"
11126
+ type: "string"
11383
11127
  },
11384
11128
  workspace_id: {
11385
- description: "The ID of the workspace.",
11129
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11386
11130
  format: "uuid",
11387
- type: "string",
11388
- "x-title": "Workspace ID"
11131
+ type: "string"
11389
11132
  }
11390
11133
  },
11391
11134
  required: [
@@ -11400,47 +11143,41 @@ var openapi_default = {
11400
11143
  type: "object"
11401
11144
  },
11402
11145
  {
11403
- description: "A third party subscription is required to use all device features.",
11146
+ description: "A third-party subscription is required to use all device features.",
11404
11147
  properties: {
11405
11148
  connected_account_id: {
11406
- description: "ID of the connected account.",
11149
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11407
11150
  format: "uuid",
11408
- type: "string",
11409
- "x-title": "Connected Account ID"
11151
+ type: "string"
11410
11152
  },
11411
11153
  created_at: {
11412
- description: "The time when the event was created.",
11154
+ description: "Time at which the event was created.",
11413
11155
  format: "date-time",
11414
- type: "string",
11415
- "x-title": "Created At"
11156
+ type: "string"
11416
11157
  },
11417
11158
  device_id: {
11418
11159
  description: "ID of the device.",
11419
11160
  format: "uuid",
11420
- type: "string",
11421
- "x-title": "Device ID"
11161
+ type: "string"
11422
11162
  },
11423
11163
  event_id: {
11424
- description: "The ID of the event.",
11164
+ description: "ID of the event.",
11425
11165
  format: "uuid",
11426
- type: "string",
11427
- "x-title": "Event ID"
11166
+ type: "string"
11428
11167
  },
11429
11168
  event_type: {
11430
11169
  enum: ["device.error.subscription_required"],
11431
11170
  type: "string"
11432
11171
  },
11433
11172
  occurred_at: {
11434
- description: "The time when the event occurred.",
11173
+ description: "Time when the event occurred.",
11435
11174
  format: "date-time",
11436
- type: "string",
11437
- "x-title": "Occurred At"
11175
+ type: "string"
11438
11176
  },
11439
11177
  workspace_id: {
11440
- description: "The ID of the workspace.",
11178
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11441
11179
  format: "uuid",
11442
- type: "string",
11443
- "x-title": "Workspace ID"
11180
+ type: "string"
11444
11181
  }
11445
11182
  },
11446
11183
  required: [
@@ -11455,47 +11192,41 @@ var openapi_default = {
11455
11192
  type: "object"
11456
11193
  },
11457
11194
  {
11458
- description: "A third party subscription is active or no longer-required to use all device features.",
11195
+ description: "A third-party subscription is active or no longer required to use all device features.",
11459
11196
  properties: {
11460
11197
  connected_account_id: {
11461
- description: "ID of the connected account.",
11198
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11462
11199
  format: "uuid",
11463
- type: "string",
11464
- "x-title": "Connected Account ID"
11200
+ type: "string"
11465
11201
  },
11466
11202
  created_at: {
11467
- description: "The time when the event was created.",
11203
+ description: "Time at which the event was created.",
11468
11204
  format: "date-time",
11469
- type: "string",
11470
- "x-title": "Created At"
11205
+ type: "string"
11471
11206
  },
11472
11207
  device_id: {
11473
11208
  description: "ID of the device.",
11474
11209
  format: "uuid",
11475
- type: "string",
11476
- "x-title": "Device ID"
11210
+ type: "string"
11477
11211
  },
11478
11212
  event_id: {
11479
- description: "The ID of the event.",
11213
+ description: "ID of the event.",
11480
11214
  format: "uuid",
11481
- type: "string",
11482
- "x-title": "Event ID"
11215
+ type: "string"
11483
11216
  },
11484
11217
  event_type: {
11485
11218
  enum: ["device.error.subscription_required.resolved"],
11486
11219
  type: "string"
11487
11220
  },
11488
11221
  occurred_at: {
11489
- description: "The time when the event occurred.",
11222
+ description: "Time when the event occurred.",
11490
11223
  format: "date-time",
11491
- type: "string",
11492
- "x-title": "Occurred At"
11224
+ type: "string"
11493
11225
  },
11494
11226
  workspace_id: {
11495
- description: "The ID of the workspace.",
11227
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11496
11228
  format: "uuid",
11497
- type: "string",
11498
- "x-title": "Workspace ID"
11229
+ type: "string"
11499
11230
  }
11500
11231
  },
11501
11232
  required: [
@@ -11510,47 +11241,41 @@ var openapi_default = {
11510
11241
  type: "object"
11511
11242
  },
11512
11243
  {
11513
- description: "A accessory keypad was connected to a device.",
11244
+ description: "An accessory keypad was connected to a device.",
11514
11245
  properties: {
11515
11246
  connected_account_id: {
11516
- description: "ID of the connected account.",
11247
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11517
11248
  format: "uuid",
11518
- type: "string",
11519
- "x-title": "Connected Account ID"
11249
+ type: "string"
11520
11250
  },
11521
11251
  created_at: {
11522
- description: "The time when the event was created.",
11252
+ description: "Time at which the event was created.",
11523
11253
  format: "date-time",
11524
- type: "string",
11525
- "x-title": "Created At"
11254
+ type: "string"
11526
11255
  },
11527
11256
  device_id: {
11528
11257
  description: "ID of the device.",
11529
11258
  format: "uuid",
11530
- type: "string",
11531
- "x-title": "Device ID"
11259
+ type: "string"
11532
11260
  },
11533
11261
  event_id: {
11534
- description: "The ID of the event.",
11262
+ description: "ID of the event.",
11535
11263
  format: "uuid",
11536
- type: "string",
11537
- "x-title": "Event ID"
11264
+ type: "string"
11538
11265
  },
11539
11266
  event_type: {
11540
11267
  enum: ["device.accessory_keypad_connected"],
11541
11268
  type: "string"
11542
11269
  },
11543
11270
  occurred_at: {
11544
- description: "The time when the event occurred.",
11271
+ description: "Time when the event occurred.",
11545
11272
  format: "date-time",
11546
- type: "string",
11547
- "x-title": "Occurred At"
11273
+ type: "string"
11548
11274
  },
11549
11275
  workspace_id: {
11550
- description: "The ID of the workspace.",
11276
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11551
11277
  format: "uuid",
11552
- type: "string",
11553
- "x-title": "Workspace ID"
11278
+ type: "string"
11554
11279
  }
11555
11280
  },
11556
11281
  required: [
@@ -11565,47 +11290,41 @@ var openapi_default = {
11565
11290
  type: "object"
11566
11291
  },
11567
11292
  {
11568
- description: "A accessory keypad was disconnected to a device.",
11293
+ description: "An accessory keypad was disconnected from a device.",
11569
11294
  properties: {
11570
11295
  connected_account_id: {
11571
- description: "ID of the connected account.",
11296
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11572
11297
  format: "uuid",
11573
- type: "string",
11574
- "x-title": "Connected Account ID"
11298
+ type: "string"
11575
11299
  },
11576
11300
  created_at: {
11577
- description: "The time when the event was created.",
11301
+ description: "Time at which the event was created.",
11578
11302
  format: "date-time",
11579
- type: "string",
11580
- "x-title": "Created At"
11303
+ type: "string"
11581
11304
  },
11582
11305
  device_id: {
11583
11306
  description: "ID of the device.",
11584
11307
  format: "uuid",
11585
- type: "string",
11586
- "x-title": "Device ID"
11308
+ type: "string"
11587
11309
  },
11588
11310
  event_id: {
11589
- description: "The ID of the event.",
11311
+ description: "ID of the event.",
11590
11312
  format: "uuid",
11591
- type: "string",
11592
- "x-title": "Event ID"
11313
+ type: "string"
11593
11314
  },
11594
11315
  event_type: {
11595
11316
  enum: ["device.accessory_keypad_disconnected"],
11596
11317
  type: "string"
11597
11318
  },
11598
11319
  occurred_at: {
11599
- description: "The time when the event occurred.",
11320
+ description: "Time when the event occurred.",
11600
11321
  format: "date-time",
11601
- type: "string",
11602
- "x-title": "Occurred At"
11322
+ type: "string"
11603
11323
  },
11604
11324
  workspace_id: {
11605
- description: "The ID of the workspace.",
11325
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11606
11326
  format: "uuid",
11607
- type: "string",
11608
- "x-title": "Workspace ID"
11327
+ type: "string"
11609
11328
  }
11610
11329
  },
11611
11330
  required: [
@@ -11620,31 +11339,27 @@ var openapi_default = {
11620
11339
  type: "object"
11621
11340
  },
11622
11341
  {
11623
- description: "Extended periods of noise or noise exceeding a threshold was detected.",
11342
+ description: "Extended periods of noise or noise exceeding a [threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) were detected.",
11624
11343
  properties: {
11625
11344
  connected_account_id: {
11626
- description: "ID of the connected account.",
11345
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11627
11346
  format: "uuid",
11628
- type: "string",
11629
- "x-title": "Connected Account ID"
11347
+ type: "string"
11630
11348
  },
11631
11349
  created_at: {
11632
- description: "The time when the event was created.",
11350
+ description: "Time at which the event was created.",
11633
11351
  format: "date-time",
11634
- type: "string",
11635
- "x-title": "Created At"
11352
+ type: "string"
11636
11353
  },
11637
11354
  device_id: {
11638
11355
  description: "ID of the device.",
11639
11356
  format: "uuid",
11640
- type: "string",
11641
- "x-title": "Device ID"
11357
+ type: "string"
11642
11358
  },
11643
11359
  event_id: {
11644
- description: "The ID of the event.",
11360
+ description: "ID of the event.",
11645
11361
  format: "uuid",
11646
- type: "string",
11647
- "x-title": "Event ID"
11362
+ type: "string"
11648
11363
  },
11649
11364
  event_type: {
11650
11365
  enum: ["noise_sensor.noise_threshold_triggered"],
@@ -11652,31 +11367,44 @@ var openapi_default = {
11652
11367
  },
11653
11368
  minut_metadata: {
11654
11369
  additionalProperties: {},
11655
- description: "Metadata from the Minut API.",
11370
+ description: "Metadata from Minut.",
11656
11371
  type: "object",
11657
11372
  "x-title": "Minut Metadata"
11658
11373
  },
11659
- noise_level_decibels: { format: "float", type: "number" },
11660
- noise_level_nrs: { format: "float", type: "number" },
11661
- noise_threshold_id: { format: "uuid", type: "string" },
11662
- noise_threshold_name: { type: "string" },
11374
+ noise_level_decibels: {
11375
+ description: "Detected noise level in decibels.",
11376
+ format: "float",
11377
+ type: "number"
11378
+ },
11379
+ noise_level_nrs: {
11380
+ description: "Detected noise level in Noiseaware Noise Risk Score (NRS).",
11381
+ format: "float",
11382
+ type: "number"
11383
+ },
11384
+ noise_threshold_id: {
11385
+ description: "ID of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered.",
11386
+ format: "uuid",
11387
+ type: "string"
11388
+ },
11389
+ noise_threshold_name: {
11390
+ description: "Name of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered.",
11391
+ type: "string"
11392
+ },
11663
11393
  noiseaware_metadata: {
11664
11394
  additionalProperties: {},
11665
- description: "Metadata from the Noiseaware API.",
11395
+ description: "Metadata from Noiseaware.",
11666
11396
  type: "object",
11667
11397
  "x-title": "Noiseaware Metadata"
11668
11398
  },
11669
11399
  occurred_at: {
11670
- description: "The time when the event occurred.",
11400
+ description: "Time when the event occurred.",
11671
11401
  format: "date-time",
11672
- type: "string",
11673
- "x-title": "Occurred At"
11402
+ type: "string"
11674
11403
  },
11675
11404
  workspace_id: {
11676
- description: "The ID of the workspace.",
11405
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11677
11406
  format: "uuid",
11678
- type: "string",
11679
- "x-title": "Workspace ID"
11407
+ type: "string"
11680
11408
  }
11681
11409
  },
11682
11410
  required: [
@@ -11693,50 +11421,51 @@ var openapi_default = {
11693
11421
  {
11694
11422
  description: "A lock was locked.",
11695
11423
  properties: {
11696
- access_code_id: { format: "uuid", type: "string" },
11697
- action_attempt_id: { format: "uuid", type: "string" },
11424
+ access_code_id: {
11425
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to lock the device.",
11426
+ format: "uuid",
11427
+ type: "string"
11428
+ },
11429
+ action_attempt_id: {
11430
+ description: "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action.",
11431
+ format: "uuid",
11432
+ type: "string"
11433
+ },
11698
11434
  connected_account_id: {
11699
- description: "ID of the connected account.",
11435
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11700
11436
  format: "uuid",
11701
- type: "string",
11702
- "x-title": "Connected Account ID"
11437
+ type: "string"
11703
11438
  },
11704
11439
  created_at: {
11705
- description: "The time when the event was created.",
11440
+ description: "Time at which the event was created.",
11706
11441
  format: "date-time",
11707
- type: "string",
11708
- "x-title": "Created At"
11442
+ type: "string"
11709
11443
  },
11710
11444
  device_id: {
11711
11445
  description: "ID of the device.",
11712
11446
  format: "uuid",
11713
- type: "string",
11714
- "x-title": "Device ID"
11447
+ type: "string"
11715
11448
  },
11716
11449
  event_id: {
11717
- description: "The ID of the event.",
11450
+ description: "ID of the event.",
11718
11451
  format: "uuid",
11719
- type: "string",
11720
- "x-title": "Event ID"
11452
+ type: "string"
11721
11453
  },
11722
11454
  event_type: { enum: ["lock.locked"], type: "string" },
11723
11455
  method: {
11724
- description: "Method by which a lock device was locked or unlocked. When the method is `keycode`, the `access_code_id` will reference the Seam access code which was used, if reported by the device.",
11456
+ description: "Method by which a lock device was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.",
11725
11457
  enum: ["keycode", "manual", "automatic", "unknown", "seamapi"],
11726
- type: "string",
11727
- "x-title": "Lock Lock/Unlock Method"
11458
+ type: "string"
11728
11459
  },
11729
11460
  occurred_at: {
11730
- description: "The time when the event occurred.",
11461
+ description: "Time when the event occurred.",
11731
11462
  format: "date-time",
11732
- type: "string",
11733
- "x-title": "Occurred At"
11463
+ type: "string"
11734
11464
  },
11735
11465
  workspace_id: {
11736
- description: "The ID of the workspace.",
11466
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11737
11467
  format: "uuid",
11738
- type: "string",
11739
- "x-title": "Workspace ID"
11468
+ type: "string"
11740
11469
  }
11741
11470
  },
11742
11471
  required: [
@@ -11754,50 +11483,51 @@ var openapi_default = {
11754
11483
  {
11755
11484
  description: "A lock was unlocked.",
11756
11485
  properties: {
11757
- access_code_id: { format: "uuid", type: "string" },
11758
- action_attempt_id: { format: "uuid", type: "string" },
11486
+ access_code_id: {
11487
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to unlock the device.",
11488
+ format: "uuid",
11489
+ type: "string"
11490
+ },
11491
+ action_attempt_id: {
11492
+ description: "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action.",
11493
+ format: "uuid",
11494
+ type: "string"
11495
+ },
11759
11496
  connected_account_id: {
11760
- description: "ID of the connected account.",
11497
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11761
11498
  format: "uuid",
11762
- type: "string",
11763
- "x-title": "Connected Account ID"
11499
+ type: "string"
11764
11500
  },
11765
11501
  created_at: {
11766
- description: "The time when the event was created.",
11502
+ description: "Time at which the event was created.",
11767
11503
  format: "date-time",
11768
- type: "string",
11769
- "x-title": "Created At"
11504
+ type: "string"
11770
11505
  },
11771
11506
  device_id: {
11772
11507
  description: "ID of the device.",
11773
11508
  format: "uuid",
11774
- type: "string",
11775
- "x-title": "Device ID"
11509
+ type: "string"
11776
11510
  },
11777
11511
  event_id: {
11778
- description: "The ID of the event.",
11512
+ description: "ID of the event.",
11779
11513
  format: "uuid",
11780
- type: "string",
11781
- "x-title": "Event ID"
11514
+ type: "string"
11782
11515
  },
11783
11516
  event_type: { enum: ["lock.unlocked"], type: "string" },
11784
11517
  method: {
11785
- description: "Method by which a lock device was locked or unlocked. When the method is `keycode`, the `access_code_id` will reference the Seam access code which was used, if reported by the device.",
11518
+ description: "Method by which a lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.",
11786
11519
  enum: ["keycode", "manual", "automatic", "unknown", "seamapi"],
11787
- type: "string",
11788
- "x-title": "Lock Lock/Unlock Method"
11520
+ type: "string"
11789
11521
  },
11790
11522
  occurred_at: {
11791
- description: "The time when the event occurred.",
11523
+ description: "Time when the event occurred.",
11792
11524
  format: "date-time",
11793
- type: "string",
11794
- "x-title": "Occurred At"
11525
+ type: "string"
11795
11526
  },
11796
11527
  workspace_id: {
11797
- description: "The ID of the workspace.",
11528
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11798
11529
  format: "uuid",
11799
- type: "string",
11800
- "x-title": "Workspace ID"
11530
+ type: "string"
11801
11531
  }
11802
11532
  },
11803
11533
  required: [
@@ -11815,43 +11545,41 @@ var openapi_default = {
11815
11545
  {
11816
11546
  description: "The lock denied access to a user after one or more consecutive invalid attempts to unlock the device.",
11817
11547
  properties: {
11818
- access_code_id: { format: "uuid", type: "string" },
11548
+ access_code_id: {
11549
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used in the unlock attempts.",
11550
+ format: "uuid",
11551
+ type: "string"
11552
+ },
11819
11553
  connected_account_id: {
11820
- description: "ID of the connected account.",
11554
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11821
11555
  format: "uuid",
11822
- type: "string",
11823
- "x-title": "Connected Account ID"
11556
+ type: "string"
11824
11557
  },
11825
11558
  created_at: {
11826
- description: "The time when the event was created.",
11559
+ description: "Time at which the event was created.",
11827
11560
  format: "date-time",
11828
- type: "string",
11829
- "x-title": "Created At"
11561
+ type: "string"
11830
11562
  },
11831
11563
  device_id: {
11832
11564
  description: "ID of the device.",
11833
11565
  format: "uuid",
11834
- type: "string",
11835
- "x-title": "Device ID"
11566
+ type: "string"
11836
11567
  },
11837
11568
  event_id: {
11838
- description: "The ID of the event.",
11569
+ description: "ID of the event.",
11839
11570
  format: "uuid",
11840
- type: "string",
11841
- "x-title": "Event ID"
11571
+ type: "string"
11842
11572
  },
11843
11573
  event_type: { enum: ["lock.access_denied"], type: "string" },
11844
11574
  occurred_at: {
11845
- description: "The time when the event occurred.",
11575
+ description: "Time when the event occurred.",
11846
11576
  format: "date-time",
11847
- type: "string",
11848
- "x-title": "Occurred At"
11577
+ type: "string"
11849
11578
  },
11850
11579
  workspace_id: {
11851
- description: "The ID of the workspace.",
11580
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11852
11581
  format: "uuid",
11853
- type: "string",
11854
- "x-title": "Workspace ID"
11582
+ type: "string"
11855
11583
  }
11856
11584
  },
11857
11585
  required: [
@@ -11866,54 +11594,55 @@ var openapi_default = {
11866
11594
  type: "object"
11867
11595
  },
11868
11596
  {
11869
- description: "A thermostat climate preset was activated.",
11597
+ description: "A thermostat [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) was activated.",
11870
11598
  properties: {
11871
- climate_preset_key: { type: "string" },
11599
+ climate_preset_key: {
11600
+ description: "Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated.",
11601
+ type: "string"
11602
+ },
11872
11603
  connected_account_id: {
11873
- description: "ID of the connected account.",
11604
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11874
11605
  format: "uuid",
11875
- type: "string",
11876
- "x-title": "Connected Account ID"
11606
+ type: "string"
11877
11607
  },
11878
11608
  created_at: {
11879
- description: "The time when the event was created.",
11609
+ description: "Time at which the event was created.",
11880
11610
  format: "date-time",
11881
- type: "string",
11882
- "x-title": "Created At"
11611
+ type: "string"
11883
11612
  },
11884
11613
  device_id: {
11885
11614
  description: "ID of the device.",
11886
11615
  format: "uuid",
11887
- type: "string",
11888
- "x-title": "Device ID"
11616
+ type: "string"
11889
11617
  },
11890
11618
  event_id: {
11891
- description: "The ID of the event.",
11619
+ description: "ID of the event.",
11892
11620
  format: "uuid",
11893
- type: "string",
11894
- "x-title": "Event ID"
11621
+ type: "string"
11895
11622
  },
11896
11623
  event_type: {
11897
11624
  enum: ["thermostat.climate_preset_activated"],
11898
11625
  type: "string"
11899
11626
  },
11900
- is_fallback_climate_preset: { type: "boolean" },
11627
+ is_fallback_climate_preset: {
11628
+ description: "Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat.",
11629
+ type: "boolean"
11630
+ },
11901
11631
  occurred_at: {
11902
- description: "The time when the event occurred.",
11632
+ description: "Time when the event occurred.",
11903
11633
  format: "date-time",
11904
- type: "string",
11905
- "x-title": "Occurred At"
11634
+ type: "string"
11906
11635
  },
11907
11636
  thermostat_schedule_id: {
11637
+ description: "ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) that prompted the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to be activated.",
11908
11638
  format: "uuid",
11909
11639
  nullable: true,
11910
11640
  type: "string"
11911
11641
  },
11912
11642
  workspace_id: {
11913
- description: "The ID of the workspace.",
11643
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
11914
11644
  format: "uuid",
11915
- type: "string",
11916
- "x-title": "Workspace ID"
11645
+ type: "string"
11917
11646
  }
11918
11647
  },
11919
11648
  required: [
@@ -11931,13 +11660,12 @@ var openapi_default = {
11931
11660
  type: "object"
11932
11661
  },
11933
11662
  {
11934
- description: "A thermostat was manually adjusted.",
11663
+ description: "A thermostat was adjusted manually.",
11935
11664
  properties: {
11936
11665
  connected_account_id: {
11937
- description: "ID of the connected account.",
11666
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11938
11667
  format: "uuid",
11939
- type: "string",
11940
- "x-title": "Connected Account ID"
11668
+ type: "string"
11941
11669
  },
11942
11670
  cooling_set_point_celsius: {
11943
11671
  description: "Temperature to which the thermostat should cool (in \xB0C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).",
@@ -11950,22 +11678,19 @@ var openapi_default = {
11950
11678
  type: "number"
11951
11679
  },
11952
11680
  created_at: {
11953
- description: "The time when the event was created.",
11681
+ description: "Time at which the event was created.",
11954
11682
  format: "date-time",
11955
- type: "string",
11956
- "x-title": "Created At"
11683
+ type: "string"
11957
11684
  },
11958
11685
  device_id: {
11959
11686
  description: "ID of the device.",
11960
11687
  format: "uuid",
11961
- type: "string",
11962
- "x-title": "Device ID"
11688
+ type: "string"
11963
11689
  },
11964
11690
  event_id: {
11965
- description: "The ID of the event.",
11691
+ description: "ID of the event.",
11966
11692
  format: "uuid",
11967
- type: "string",
11968
- "x-title": "Event ID"
11693
+ type: "string"
11969
11694
  },
11970
11695
  event_type: {
11971
11696
  enum: ["thermostat.manually_adjusted"],
@@ -11991,18 +11716,20 @@ var openapi_default = {
11991
11716
  enum: ["off", "heat", "cool", "heat_cool"],
11992
11717
  type: "string"
11993
11718
  },
11994
- method: { enum: ["seam", "external"], type: "string" },
11719
+ method: {
11720
+ description: "Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat.",
11721
+ enum: ["seam", "external"],
11722
+ type: "string"
11723
+ },
11995
11724
  occurred_at: {
11996
- description: "The time when the event occurred.",
11725
+ description: "Time when the event occurred.",
11997
11726
  format: "date-time",
11998
- type: "string",
11999
- "x-title": "Occurred At"
11727
+ type: "string"
12000
11728
  },
12001
11729
  workspace_id: {
12002
- description: "The ID of the workspace.",
11730
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
12003
11731
  format: "uuid",
12004
- type: "string",
12005
- "x-title": "Workspace ID"
11732
+ type: "string"
12006
11733
  }
12007
11734
  },
12008
11735
  required: [
@@ -12018,69 +11745,75 @@ var openapi_default = {
12018
11745
  type: "object"
12019
11746
  },
12020
11747
  {
12021
- description: "A thermostat's temperature reading exceeded the set threshold.",
11748
+ description: "A thermostat's temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
12022
11749
  properties: {
12023
11750
  connected_account_id: {
12024
- description: "ID of the connected account.",
11751
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
12025
11752
  format: "uuid",
12026
- type: "string",
12027
- "x-title": "Connected Account ID"
11753
+ type: "string"
12028
11754
  },
12029
11755
  created_at: {
12030
- description: "The time when the event was created.",
11756
+ description: "Time at which the event was created.",
12031
11757
  format: "date-time",
12032
- type: "string",
12033
- "x-title": "Created At"
11758
+ type: "string"
12034
11759
  },
12035
11760
  device_id: {
12036
11761
  description: "ID of the device.",
12037
11762
  format: "uuid",
12038
- type: "string",
12039
- "x-title": "Device ID"
11763
+ type: "string"
12040
11764
  },
12041
11765
  event_id: {
12042
- description: "The ID of the event.",
11766
+ description: "ID of the event.",
12043
11767
  format: "uuid",
12044
- type: "string",
12045
- "x-title": "Event ID"
11768
+ type: "string"
12046
11769
  },
12047
11770
  event_type: {
12048
11771
  enum: ["thermostat.temperature_threshold_exceeded"],
12049
11772
  type: "string"
12050
11773
  },
12051
11774
  lower_limit_celsius: {
11775
+ description: "Lower temperature limit, in \xB0C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
12052
11776
  format: "float",
12053
11777
  nullable: true,
12054
11778
  type: "number"
12055
11779
  },
12056
11780
  lower_limit_fahrenheit: {
11781
+ description: "Lower temperature limit, in \xB0F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
12057
11782
  format: "float",
12058
11783
  nullable: true,
12059
11784
  type: "number"
12060
11785
  },
12061
11786
  occurred_at: {
12062
- description: "The time when the event occurred.",
11787
+ description: "Time when the event occurred.",
12063
11788
  format: "date-time",
12064
- type: "string",
12065
- "x-title": "Occurred At"
11789
+ type: "string"
11790
+ },
11791
+ temperature_celsius: {
11792
+ description: "Temperature, in \xB0C, reported by the thermostat.",
11793
+ format: "float",
11794
+ type: "number"
11795
+ },
11796
+ temperature_fahrenheit: {
11797
+ description: "Temperature, in \xB0F, reported by the thermostat.",
11798
+ format: "float",
11799
+ type: "number"
12066
11800
  },
12067
- temperature_celsius: { format: "float", type: "number" },
12068
- temperature_fahrenheit: { format: "float", type: "number" },
12069
11801
  upper_limit_celsius: {
11802
+ description: "Upper temperature limit, in \xB0C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
12070
11803
  format: "float",
12071
11804
  nullable: true,
12072
11805
  type: "number"
12073
11806
  },
12074
11807
  upper_limit_fahrenheit: {
11808
+ description: "Upper temperature limit, in \xB0F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
12075
11809
  format: "float",
12076
11810
  nullable: true,
12077
11811
  type: "number"
12078
11812
  },
12079
11813
  workspace_id: {
12080
- description: "The ID of the workspace.",
11814
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
12081
11815
  format: "uuid",
12082
- type: "string",
12083
- "x-title": "Workspace ID"
11816
+ type: "string"
12084
11817
  }
12085
11818
  },
12086
11819
  required: [
@@ -12101,69 +11834,75 @@ var openapi_default = {
12101
11834
  type: "object"
12102
11835
  },
12103
11836
  {
12104
- description: "A thermostat's temperature reading is no longer exceeding the set threshold.",
11837
+ description: "A thermostat's temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
12105
11838
  properties: {
12106
11839
  connected_account_id: {
12107
- description: "ID of the connected account.",
11840
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
12108
11841
  format: "uuid",
12109
- type: "string",
12110
- "x-title": "Connected Account ID"
11842
+ type: "string"
12111
11843
  },
12112
11844
  created_at: {
12113
- description: "The time when the event was created.",
11845
+ description: "Time at which the event was created.",
12114
11846
  format: "date-time",
12115
- type: "string",
12116
- "x-title": "Created At"
11847
+ type: "string"
12117
11848
  },
12118
11849
  device_id: {
12119
11850
  description: "ID of the device.",
12120
11851
  format: "uuid",
12121
- type: "string",
12122
- "x-title": "Device ID"
11852
+ type: "string"
12123
11853
  },
12124
11854
  event_id: {
12125
- description: "The ID of the event.",
11855
+ description: "ID of the event.",
12126
11856
  format: "uuid",
12127
- type: "string",
12128
- "x-title": "Event ID"
11857
+ type: "string"
12129
11858
  },
12130
11859
  event_type: {
12131
11860
  enum: ["thermostat.temperature_threshold_no_longer_exceeded"],
12132
11861
  type: "string"
12133
11862
  },
12134
11863
  lower_limit_celsius: {
11864
+ description: "Lower temperature limit, in \xB0C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
12135
11865
  format: "float",
12136
11866
  nullable: true,
12137
11867
  type: "number"
12138
11868
  },
12139
11869
  lower_limit_fahrenheit: {
11870
+ description: "Lower temperature limit, in \xB0F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
12140
11871
  format: "float",
12141
11872
  nullable: true,
12142
11873
  type: "number"
12143
11874
  },
12144
11875
  occurred_at: {
12145
- description: "The time when the event occurred.",
11876
+ description: "Time when the event occurred.",
12146
11877
  format: "date-time",
12147
- type: "string",
12148
- "x-title": "Occurred At"
11878
+ type: "string"
11879
+ },
11880
+ temperature_celsius: {
11881
+ description: "Temperature, in \xB0C, reported by the thermostat.",
11882
+ format: "float",
11883
+ type: "number"
11884
+ },
11885
+ temperature_fahrenheit: {
11886
+ description: "Temperature, in \xB0F, reported by the thermostat.",
11887
+ format: "float",
11888
+ type: "number"
12149
11889
  },
12150
- temperature_celsius: { format: "float", type: "number" },
12151
- temperature_fahrenheit: { format: "float", type: "number" },
12152
11890
  upper_limit_celsius: {
11891
+ description: "Upper temperature limit, in \xB0C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
12153
11892
  format: "float",
12154
11893
  nullable: true,
12155
11894
  type: "number"
12156
11895
  },
12157
11896
  upper_limit_fahrenheit: {
11897
+ description: "Upper temperature limit, in \xB0F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
12158
11898
  format: "float",
12159
11899
  nullable: true,
12160
11900
  type: "number"
12161
11901
  },
12162
11902
  workspace_id: {
12163
- description: "The ID of the workspace.",
11903
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
12164
11904
  format: "uuid",
12165
- type: "string",
12166
- "x-title": "Workspace ID"
11905
+ type: "string"
12167
11906
  }
12168
11907
  },
12169
11908
  required: [
@@ -12187,10 +11926,9 @@ var openapi_default = {
12187
11926
  description: "An enrollment automation was deleted.",
12188
11927
  properties: {
12189
11928
  created_at: {
12190
- description: "The time when the event was created.",
11929
+ description: "Time at which the event was created.",
12191
11930
  format: "date-time",
12192
- type: "string",
12193
- "x-title": "Created At"
11931
+ type: "string"
12194
11932
  },
12195
11933
  enrollment_automation_id: {
12196
11934
  description: "ID of the enrollment automation.",
@@ -12199,26 +11937,23 @@ var openapi_default = {
12199
11937
  "x-title": "Enrollment Automation ID"
12200
11938
  },
12201
11939
  event_id: {
12202
- description: "The ID of the event.",
11940
+ description: "ID of the event.",
12203
11941
  format: "uuid",
12204
- type: "string",
12205
- "x-title": "Event ID"
11942
+ type: "string"
12206
11943
  },
12207
11944
  event_type: {
12208
11945
  enum: ["enrollment_automation.deleted"],
12209
11946
  type: "string"
12210
11947
  },
12211
11948
  occurred_at: {
12212
- description: "The time when the event occurred.",
11949
+ description: "Time when the event occurred.",
12213
11950
  format: "date-time",
12214
- type: "string",
12215
- "x-title": "Occurred At"
11951
+ type: "string"
12216
11952
  },
12217
11953
  workspace_id: {
12218
- description: "The ID of the workspace.",
11954
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
12219
11955
  format: "uuid",
12220
- type: "string",
12221
- "x-title": "Workspace ID"
11956
+ type: "string"
12222
11957
  }
12223
11958
  },
12224
11959
  required: [
@@ -12235,10 +11970,9 @@ var openapi_default = {
12235
11970
  description: "A phone device was deactivated.",
12236
11971
  properties: {
12237
11972
  created_at: {
12238
- description: "The time when the event was created.",
11973
+ description: "Time at which the event was created.",
12239
11974
  format: "date-time",
12240
- type: "string",
12241
- "x-title": "Created At"
11975
+ type: "string"
12242
11976
  },
12243
11977
  device_id: {
12244
11978
  description: "ID of the device.",
@@ -12247,23 +11981,20 @@ var openapi_default = {
12247
11981
  "x-title": "Device ID"
12248
11982
  },
12249
11983
  event_id: {
12250
- description: "The ID of the event.",
11984
+ description: "ID of the event.",
12251
11985
  format: "uuid",
12252
- type: "string",
12253
- "x-title": "Event ID"
11986
+ type: "string"
12254
11987
  },
12255
11988
  event_type: { enum: ["phone.deactivated"], type: "string" },
12256
11989
  occurred_at: {
12257
- description: "The time when the event occurred.",
11990
+ description: "Time when the event occurred.",
12258
11991
  format: "date-time",
12259
- type: "string",
12260
- "x-title": "Occurred At"
11992
+ type: "string"
12261
11993
  },
12262
11994
  workspace_id: {
12263
- description: "The ID of the workspace.",
11995
+ description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
12264
11996
  format: "uuid",
12265
- type: "string",
12266
- "x-title": "Workspace ID"
11997
+ type: "string"
12267
11998
  }
12268
11999
  },
12269
12000
  required: [
@@ -16703,7 +16434,7 @@ var openapi_default = {
16703
16434
  "x-fern-sdk-method-name": "encode_credential",
16704
16435
  "x-fern-sdk-return-value": "action_attempt",
16705
16436
  "x-response-key": "action_attempt",
16706
- "x-undocumented": "Encoding a card is currently unimplemented."
16437
+ "x-undocumented": "Encoders are in alpha."
16707
16438
  }
16708
16439
  },
16709
16440
  "/acs/encoders/list": {
@@ -16908,7 +16639,283 @@ var openapi_default = {
16908
16639
  "x-fern-sdk-method-name": "scan_credential",
16909
16640
  "x-fern-sdk-return-value": "action_attempt",
16910
16641
  "x-response-key": "action_attempt",
16911
- "x-undocumented": "Reading a card is currently unimplemented."
16642
+ "x-undocumented": "Encoders are in alpha."
16643
+ }
16644
+ },
16645
+ "/acs/encoders/simulate/next_credential_encode_will_fail": {
16646
+ post: {
16647
+ operationId: "acsEncodersSimulateNextCredentialEncodeWillFailPost",
16648
+ requestBody: {
16649
+ content: {
16650
+ "application/json": {
16651
+ schema: {
16652
+ oneOf: [
16653
+ {
16654
+ additionalProperties: false,
16655
+ properties: {
16656
+ acs_encoder_id: { format: "uuid", type: "string" },
16657
+ error_code: {
16658
+ default: "no_credential_on_encoder",
16659
+ enum: ["no_credential_on_encoder"],
16660
+ type: "string"
16661
+ }
16662
+ },
16663
+ required: ["acs_encoder_id"],
16664
+ type: "object"
16665
+ },
16666
+ {
16667
+ additionalProperties: false,
16668
+ properties: {
16669
+ acs_credential_id: { format: "uuid", type: "string" },
16670
+ acs_encoder_id: { format: "uuid", type: "string" },
16671
+ error_code: {
16672
+ enum: ["uncategorized_error", "action_attempt_expired"],
16673
+ type: "string"
16674
+ }
16675
+ },
16676
+ required: ["acs_encoder_id", "error_code"],
16677
+ type: "object"
16678
+ }
16679
+ ]
16680
+ }
16681
+ }
16682
+ }
16683
+ },
16684
+ responses: {
16685
+ 200: {
16686
+ content: {
16687
+ "application/json": {
16688
+ schema: {
16689
+ properties: { ok: { type: "boolean" } },
16690
+ required: ["ok"],
16691
+ type: "object"
16692
+ }
16693
+ }
16694
+ },
16695
+ description: "OK"
16696
+ },
16697
+ 400: { description: "Bad Request" },
16698
+ 401: { description: "Unauthorized" }
16699
+ },
16700
+ security: [
16701
+ { api_key: [] },
16702
+ { pat_with_workspace: [] },
16703
+ { console_session_with_workspace: [] }
16704
+ ],
16705
+ summary: "/acs/encoders/simulate/next_credential_encode_will_fail",
16706
+ tags: ["/acs"],
16707
+ "x-fern-sdk-group-name": ["acs", "encoders", "simulate"],
16708
+ "x-fern-sdk-method-name": "next_credential_encode_will_fail",
16709
+ "x-response-key": null,
16710
+ "x-undocumented": "Encoder simulations are in alpha."
16711
+ }
16712
+ },
16713
+ "/acs/encoders/simulate/next_credential_encode_will_succeed": {
16714
+ post: {
16715
+ operationId: "acsEncodersSimulateNextCredentialEncodeWillSucceedPost",
16716
+ requestBody: {
16717
+ content: {
16718
+ "application/json": {
16719
+ schema: {
16720
+ additionalProperties: false,
16721
+ properties: {
16722
+ acs_encoder_id: { format: "uuid", type: "string" },
16723
+ scenario: {
16724
+ default: "credential_is_issued",
16725
+ enum: ["credential_is_issued"],
16726
+ type: "string"
16727
+ }
16728
+ },
16729
+ required: ["acs_encoder_id"],
16730
+ type: "object"
16731
+ }
16732
+ }
16733
+ }
16734
+ },
16735
+ responses: {
16736
+ 200: {
16737
+ content: {
16738
+ "application/json": {
16739
+ schema: {
16740
+ properties: { ok: { type: "boolean" } },
16741
+ required: ["ok"],
16742
+ type: "object"
16743
+ }
16744
+ }
16745
+ },
16746
+ description: "OK"
16747
+ },
16748
+ 400: { description: "Bad Request" },
16749
+ 401: { description: "Unauthorized" }
16750
+ },
16751
+ security: [
16752
+ { api_key: [] },
16753
+ { pat_with_workspace: [] },
16754
+ { console_session_with_workspace: [] }
16755
+ ],
16756
+ summary: "/acs/encoders/simulate/next_credential_encode_will_succeed",
16757
+ tags: ["/acs"],
16758
+ "x-fern-sdk-group-name": ["acs", "encoders", "simulate"],
16759
+ "x-fern-sdk-method-name": "next_credential_encode_will_succeed",
16760
+ "x-response-key": null,
16761
+ "x-undocumented": "Encoder simulations are in alpha."
16762
+ }
16763
+ },
16764
+ "/acs/encoders/simulate/next_credential_scan_will_fail": {
16765
+ post: {
16766
+ operationId: "acsEncodersSimulateNextCredentialScanWillFailPost",
16767
+ requestBody: {
16768
+ content: {
16769
+ "application/json": {
16770
+ schema: {
16771
+ oneOf: [
16772
+ {
16773
+ additionalProperties: false,
16774
+ properties: {
16775
+ acs_encoder_id: { format: "uuid", type: "string" },
16776
+ error_code: {
16777
+ default: "no_credential_on_encoder",
16778
+ enum: ["no_credential_on_encoder"],
16779
+ type: "string"
16780
+ }
16781
+ },
16782
+ required: ["acs_encoder_id"],
16783
+ type: "object"
16784
+ },
16785
+ {
16786
+ additionalProperties: false,
16787
+ properties: {
16788
+ acs_credential_id_on_seam: {
16789
+ format: "uuid",
16790
+ type: "string"
16791
+ },
16792
+ acs_encoder_id: { format: "uuid", type: "string" },
16793
+ error_code: {
16794
+ enum: ["uncategorized_error", "action_attempt_expired"],
16795
+ type: "string"
16796
+ }
16797
+ },
16798
+ required: ["acs_encoder_id", "error_code"],
16799
+ type: "object"
16800
+ }
16801
+ ]
16802
+ }
16803
+ }
16804
+ }
16805
+ },
16806
+ responses: {
16807
+ 200: {
16808
+ content: {
16809
+ "application/json": {
16810
+ schema: {
16811
+ properties: { ok: { type: "boolean" } },
16812
+ required: ["ok"],
16813
+ type: "object"
16814
+ }
16815
+ }
16816
+ },
16817
+ description: "OK"
16818
+ },
16819
+ 400: { description: "Bad Request" },
16820
+ 401: { description: "Unauthorized" }
16821
+ },
16822
+ security: [
16823
+ { api_key: [] },
16824
+ { pat_with_workspace: [] },
16825
+ { console_session_with_workspace: [] }
16826
+ ],
16827
+ summary: "/acs/encoders/simulate/next_credential_scan_will_fail",
16828
+ tags: ["/acs"],
16829
+ "x-fern-sdk-group-name": ["acs", "encoders", "simulate"],
16830
+ "x-fern-sdk-method-name": "next_credential_scan_will_fail",
16831
+ "x-response-key": null,
16832
+ "x-undocumented": "Encoder simulations are in alpha."
16833
+ }
16834
+ },
16835
+ "/acs/encoders/simulate/next_credential_scan_will_succeed": {
16836
+ post: {
16837
+ operationId: "acsEncodersSimulateNextCredentialScanWillSucceedPost",
16838
+ requestBody: {
16839
+ content: {
16840
+ "application/json": {
16841
+ schema: {
16842
+ oneOf: [
16843
+ {
16844
+ additionalProperties: false,
16845
+ properties: {
16846
+ acs_credential_id_on_seam: {
16847
+ format: "uuid",
16848
+ type: "string"
16849
+ },
16850
+ acs_encoder_id: { format: "uuid", type: "string" },
16851
+ scenario: {
16852
+ default: "credential_exists_on_seam",
16853
+ enum: [
16854
+ "credential_exists_on_seam",
16855
+ "credential_on_encoder_needs_update"
16856
+ ],
16857
+ type: "string"
16858
+ }
16859
+ },
16860
+ required: ["acs_encoder_id"],
16861
+ type: "object"
16862
+ },
16863
+ {
16864
+ additionalProperties: false,
16865
+ properties: {
16866
+ acs_encoder_id: { format: "uuid", type: "string" },
16867
+ scenario: {
16868
+ enum: ["credential_does_not_exist_on_seam"],
16869
+ type: "string"
16870
+ }
16871
+ },
16872
+ required: ["acs_encoder_id", "scenario"],
16873
+ type: "object"
16874
+ },
16875
+ {
16876
+ additionalProperties: false,
16877
+ properties: {
16878
+ acs_encoder_id: { format: "uuid", type: "string" },
16879
+ scenario: {
16880
+ enum: ["credential_on_encoder_is_empty"],
16881
+ type: "string"
16882
+ }
16883
+ },
16884
+ required: ["acs_encoder_id", "scenario"],
16885
+ type: "object"
16886
+ }
16887
+ ]
16888
+ }
16889
+ }
16890
+ }
16891
+ },
16892
+ responses: {
16893
+ 200: {
16894
+ content: {
16895
+ "application/json": {
16896
+ schema: {
16897
+ properties: { ok: { type: "boolean" } },
16898
+ required: ["ok"],
16899
+ type: "object"
16900
+ }
16901
+ }
16902
+ },
16903
+ description: "OK"
16904
+ },
16905
+ 400: { description: "Bad Request" },
16906
+ 401: { description: "Unauthorized" }
16907
+ },
16908
+ security: [
16909
+ { api_key: [] },
16910
+ { pat_with_workspace: [] },
16911
+ { console_session_with_workspace: [] }
16912
+ ],
16913
+ summary: "/acs/encoders/simulate/next_credential_scan_will_succeed",
16914
+ tags: ["/acs"],
16915
+ "x-fern-sdk-group-name": ["acs", "encoders", "simulate"],
16916
+ "x-fern-sdk-method-name": "next_credential_scan_will_succeed",
16917
+ "x-response-key": null,
16918
+ "x-undocumented": "Encoder simulations are in alpha."
16912
16919
  }
16913
16920
  },
16914
16921
  "/acs/entrances/get": {