@seamapi/types 1.312.2 → 1.313.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +909 -1184
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +733 -780
- package/lib/seam/connect/models/events/common.js +10 -24
- package/lib/seam/connect/models/events/common.js.map +1 -1
- package/lib/seam/connect/models/events/devices.js +145 -98
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +37 -134
- package/lib/seam/connect/openapi.js +431 -712
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +696 -646
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/common.ts +12 -24
- package/src/lib/seam/connect/models/events/devices.ts +212 -101
- package/src/lib/seam/connect/openapi.ts +556 -712
- package/src/lib/seam/connect/route-types.ts +696 -646
package/dist/connect.cjs
CHANGED
|
@@ -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
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
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
|
-
|
|
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
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
var
|
|
2506
|
-
|
|
2507
|
-
|
|
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
|
|
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(
|
|
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(
|
|
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,
|
|
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
|
|
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(
|
|
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(
|
|
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
|
|
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
|
|
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(
|
|
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
|
|
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
|
|
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("
|
|
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("
|
|
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
|
-
|
|
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
|
|
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
|
|
2603
|
+
Metadata from Minut.
|
|
2640
2604
|
`)
|
|
2641
2605
|
}).describe(
|
|
2642
|
-
"Extended periods of noise or noise exceeding a threshold
|
|
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
|
-
|
|
2648
|
-
|
|
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
|
-
|
|
2654
|
-
|
|
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
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
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
|
|
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
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
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
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
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
|
|
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,
|
|
@@ -8142,10 +8148,9 @@ var openapi_default = {
|
|
|
8142
8148
|
"x-title": "Connected Account ID"
|
|
8143
8149
|
},
|
|
8144
8150
|
created_at: {
|
|
8145
|
-
description: "
|
|
8151
|
+
description: "Time at which the event was created.",
|
|
8146
8152
|
format: "date-time",
|
|
8147
|
-
type: "string"
|
|
8148
|
-
"x-title": "Created At"
|
|
8153
|
+
type: "string"
|
|
8149
8154
|
},
|
|
8150
8155
|
device_id: {
|
|
8151
8156
|
description: "The ID of the device.",
|
|
@@ -8154,23 +8159,20 @@ var openapi_default = {
|
|
|
8154
8159
|
"x-title": "Device ID"
|
|
8155
8160
|
},
|
|
8156
8161
|
event_id: {
|
|
8157
|
-
description: "
|
|
8162
|
+
description: "ID of the event.",
|
|
8158
8163
|
format: "uuid",
|
|
8159
|
-
type: "string"
|
|
8160
|
-
"x-title": "Event ID"
|
|
8164
|
+
type: "string"
|
|
8161
8165
|
},
|
|
8162
8166
|
event_type: { enum: ["access_code.created"], type: "string" },
|
|
8163
8167
|
occurred_at: {
|
|
8164
|
-
description: "
|
|
8168
|
+
description: "Time when the event occurred.",
|
|
8165
8169
|
format: "date-time",
|
|
8166
|
-
type: "string"
|
|
8167
|
-
"x-title": "Occurred At"
|
|
8170
|
+
type: "string"
|
|
8168
8171
|
},
|
|
8169
8172
|
workspace_id: {
|
|
8170
|
-
description: "
|
|
8173
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8171
8174
|
format: "uuid",
|
|
8172
|
-
type: "string"
|
|
8173
|
-
"x-title": "Workspace ID"
|
|
8175
|
+
type: "string"
|
|
8174
8176
|
}
|
|
8175
8177
|
},
|
|
8176
8178
|
required: [
|
|
@@ -8201,10 +8203,9 @@ var openapi_default = {
|
|
|
8201
8203
|
"x-title": "Connected Account ID"
|
|
8202
8204
|
},
|
|
8203
8205
|
created_at: {
|
|
8204
|
-
description: "
|
|
8206
|
+
description: "Time at which the event was created.",
|
|
8205
8207
|
format: "date-time",
|
|
8206
|
-
type: "string"
|
|
8207
|
-
"x-title": "Created At"
|
|
8208
|
+
type: "string"
|
|
8208
8209
|
},
|
|
8209
8210
|
device_id: {
|
|
8210
8211
|
description: "The ID of the device.",
|
|
@@ -8213,23 +8214,20 @@ var openapi_default = {
|
|
|
8213
8214
|
"x-title": "Device ID"
|
|
8214
8215
|
},
|
|
8215
8216
|
event_id: {
|
|
8216
|
-
description: "
|
|
8217
|
+
description: "ID of the event.",
|
|
8217
8218
|
format: "uuid",
|
|
8218
|
-
type: "string"
|
|
8219
|
-
"x-title": "Event ID"
|
|
8219
|
+
type: "string"
|
|
8220
8220
|
},
|
|
8221
8221
|
event_type: { enum: ["access_code.changed"], type: "string" },
|
|
8222
8222
|
occurred_at: {
|
|
8223
|
-
description: "
|
|
8223
|
+
description: "Time when the event occurred.",
|
|
8224
8224
|
format: "date-time",
|
|
8225
|
-
type: "string"
|
|
8226
|
-
"x-title": "Occurred At"
|
|
8225
|
+
type: "string"
|
|
8227
8226
|
},
|
|
8228
8227
|
workspace_id: {
|
|
8229
|
-
description: "
|
|
8228
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8230
8229
|
format: "uuid",
|
|
8231
|
-
type: "string"
|
|
8232
|
-
"x-title": "Workspace ID"
|
|
8230
|
+
type: "string"
|
|
8233
8231
|
}
|
|
8234
8232
|
},
|
|
8235
8233
|
required: [
|
|
@@ -8265,10 +8263,9 @@ var openapi_default = {
|
|
|
8265
8263
|
"x-title": "Connected Account ID"
|
|
8266
8264
|
},
|
|
8267
8265
|
created_at: {
|
|
8268
|
-
description: "
|
|
8266
|
+
description: "Time at which the event was created.",
|
|
8269
8267
|
format: "date-time",
|
|
8270
|
-
type: "string"
|
|
8271
|
-
"x-title": "Created At"
|
|
8268
|
+
type: "string"
|
|
8272
8269
|
},
|
|
8273
8270
|
device_id: {
|
|
8274
8271
|
description: "The ID of the device.",
|
|
@@ -8277,26 +8274,23 @@ var openapi_default = {
|
|
|
8277
8274
|
"x-title": "Device ID"
|
|
8278
8275
|
},
|
|
8279
8276
|
event_id: {
|
|
8280
|
-
description: "
|
|
8277
|
+
description: "ID of the event.",
|
|
8281
8278
|
format: "uuid",
|
|
8282
|
-
type: "string"
|
|
8283
|
-
"x-title": "Event ID"
|
|
8279
|
+
type: "string"
|
|
8284
8280
|
},
|
|
8285
8281
|
event_type: {
|
|
8286
8282
|
enum: ["access_code.scheduled_on_device"],
|
|
8287
8283
|
type: "string"
|
|
8288
8284
|
},
|
|
8289
8285
|
occurred_at: {
|
|
8290
|
-
description: "
|
|
8286
|
+
description: "Time when the event occurred.",
|
|
8291
8287
|
format: "date-time",
|
|
8292
|
-
type: "string"
|
|
8293
|
-
"x-title": "Occurred At"
|
|
8288
|
+
type: "string"
|
|
8294
8289
|
},
|
|
8295
8290
|
workspace_id: {
|
|
8296
|
-
description: "
|
|
8291
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8297
8292
|
format: "uuid",
|
|
8298
|
-
type: "string"
|
|
8299
|
-
"x-title": "Workspace ID"
|
|
8293
|
+
type: "string"
|
|
8300
8294
|
}
|
|
8301
8295
|
},
|
|
8302
8296
|
required: [
|
|
@@ -8333,10 +8327,9 @@ var openapi_default = {
|
|
|
8333
8327
|
"x-title": "Connected Account ID"
|
|
8334
8328
|
},
|
|
8335
8329
|
created_at: {
|
|
8336
|
-
description: "
|
|
8330
|
+
description: "Time at which the event was created.",
|
|
8337
8331
|
format: "date-time",
|
|
8338
|
-
type: "string"
|
|
8339
|
-
"x-title": "Created At"
|
|
8332
|
+
type: "string"
|
|
8340
8333
|
},
|
|
8341
8334
|
device_id: {
|
|
8342
8335
|
description: "The ID of the device.",
|
|
@@ -8345,26 +8338,23 @@ var openapi_default = {
|
|
|
8345
8338
|
"x-title": "Device ID"
|
|
8346
8339
|
},
|
|
8347
8340
|
event_id: {
|
|
8348
|
-
description: "
|
|
8341
|
+
description: "ID of the event.",
|
|
8349
8342
|
format: "uuid",
|
|
8350
|
-
type: "string"
|
|
8351
|
-
"x-title": "Event ID"
|
|
8343
|
+
type: "string"
|
|
8352
8344
|
},
|
|
8353
8345
|
event_type: {
|
|
8354
8346
|
enum: ["access_code.set_on_device"],
|
|
8355
8347
|
type: "string"
|
|
8356
8348
|
},
|
|
8357
8349
|
occurred_at: {
|
|
8358
|
-
description: "
|
|
8350
|
+
description: "Time when the event occurred.",
|
|
8359
8351
|
format: "date-time",
|
|
8360
|
-
type: "string"
|
|
8361
|
-
"x-title": "Occurred At"
|
|
8352
|
+
type: "string"
|
|
8362
8353
|
},
|
|
8363
8354
|
workspace_id: {
|
|
8364
|
-
description: "
|
|
8355
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8365
8356
|
format: "uuid",
|
|
8366
|
-
type: "string"
|
|
8367
|
-
"x-title": "Workspace ID"
|
|
8357
|
+
type: "string"
|
|
8368
8358
|
}
|
|
8369
8359
|
},
|
|
8370
8360
|
required: [
|
|
@@ -8396,10 +8386,9 @@ var openapi_default = {
|
|
|
8396
8386
|
"x-title": "Connected Account ID"
|
|
8397
8387
|
},
|
|
8398
8388
|
created_at: {
|
|
8399
|
-
description: "
|
|
8389
|
+
description: "Time at which the event was created.",
|
|
8400
8390
|
format: "date-time",
|
|
8401
|
-
type: "string"
|
|
8402
|
-
"x-title": "Created At"
|
|
8391
|
+
type: "string"
|
|
8403
8392
|
},
|
|
8404
8393
|
device_id: {
|
|
8405
8394
|
description: "The ID of the device.",
|
|
@@ -8408,26 +8397,23 @@ var openapi_default = {
|
|
|
8408
8397
|
"x-title": "Device ID"
|
|
8409
8398
|
},
|
|
8410
8399
|
event_id: {
|
|
8411
|
-
description: "
|
|
8400
|
+
description: "ID of the event.",
|
|
8412
8401
|
format: "uuid",
|
|
8413
|
-
type: "string"
|
|
8414
|
-
"x-title": "Event ID"
|
|
8402
|
+
type: "string"
|
|
8415
8403
|
},
|
|
8416
8404
|
event_type: {
|
|
8417
8405
|
enum: ["access_code.removed_from_device"],
|
|
8418
8406
|
type: "string"
|
|
8419
8407
|
},
|
|
8420
8408
|
occurred_at: {
|
|
8421
|
-
description: "
|
|
8409
|
+
description: "Time when the event occurred.",
|
|
8422
8410
|
format: "date-time",
|
|
8423
|
-
type: "string"
|
|
8424
|
-
"x-title": "Occurred At"
|
|
8411
|
+
type: "string"
|
|
8425
8412
|
},
|
|
8426
8413
|
workspace_id: {
|
|
8427
|
-
description: "
|
|
8414
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8428
8415
|
format: "uuid",
|
|
8429
|
-
type: "string"
|
|
8430
|
-
"x-title": "Workspace ID"
|
|
8416
|
+
type: "string"
|
|
8431
8417
|
}
|
|
8432
8418
|
},
|
|
8433
8419
|
required: [
|
|
@@ -8458,10 +8444,9 @@ var openapi_default = {
|
|
|
8458
8444
|
"x-title": "Connected Account ID"
|
|
8459
8445
|
},
|
|
8460
8446
|
created_at: {
|
|
8461
|
-
description: "
|
|
8447
|
+
description: "Time at which the event was created.",
|
|
8462
8448
|
format: "date-time",
|
|
8463
|
-
type: "string"
|
|
8464
|
-
"x-title": "Created At"
|
|
8449
|
+
type: "string"
|
|
8465
8450
|
},
|
|
8466
8451
|
device_id: {
|
|
8467
8452
|
description: "The ID of the device.",
|
|
@@ -8470,26 +8455,23 @@ var openapi_default = {
|
|
|
8470
8455
|
"x-title": "Device ID"
|
|
8471
8456
|
},
|
|
8472
8457
|
event_id: {
|
|
8473
|
-
description: "
|
|
8458
|
+
description: "ID of the event.",
|
|
8474
8459
|
format: "uuid",
|
|
8475
|
-
type: "string"
|
|
8476
|
-
"x-title": "Event ID"
|
|
8460
|
+
type: "string"
|
|
8477
8461
|
},
|
|
8478
8462
|
event_type: {
|
|
8479
8463
|
enum: ["access_code.delay_in_setting_on_device"],
|
|
8480
8464
|
type: "string"
|
|
8481
8465
|
},
|
|
8482
8466
|
occurred_at: {
|
|
8483
|
-
description: "
|
|
8467
|
+
description: "Time when the event occurred.",
|
|
8484
8468
|
format: "date-time",
|
|
8485
|
-
type: "string"
|
|
8486
|
-
"x-title": "Occurred At"
|
|
8469
|
+
type: "string"
|
|
8487
8470
|
},
|
|
8488
8471
|
workspace_id: {
|
|
8489
|
-
description: "
|
|
8472
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8490
8473
|
format: "uuid",
|
|
8491
|
-
type: "string"
|
|
8492
|
-
"x-title": "Workspace ID"
|
|
8474
|
+
type: "string"
|
|
8493
8475
|
}
|
|
8494
8476
|
},
|
|
8495
8477
|
required: [
|
|
@@ -8520,10 +8502,9 @@ var openapi_default = {
|
|
|
8520
8502
|
"x-title": "Connected Account ID"
|
|
8521
8503
|
},
|
|
8522
8504
|
created_at: {
|
|
8523
|
-
description: "
|
|
8505
|
+
description: "Time at which the event was created.",
|
|
8524
8506
|
format: "date-time",
|
|
8525
|
-
type: "string"
|
|
8526
|
-
"x-title": "Created At"
|
|
8507
|
+
type: "string"
|
|
8527
8508
|
},
|
|
8528
8509
|
device_id: {
|
|
8529
8510
|
description: "The ID of the device.",
|
|
@@ -8532,26 +8513,23 @@ var openapi_default = {
|
|
|
8532
8513
|
"x-title": "Device ID"
|
|
8533
8514
|
},
|
|
8534
8515
|
event_id: {
|
|
8535
|
-
description: "
|
|
8516
|
+
description: "ID of the event.",
|
|
8536
8517
|
format: "uuid",
|
|
8537
|
-
type: "string"
|
|
8538
|
-
"x-title": "Event ID"
|
|
8518
|
+
type: "string"
|
|
8539
8519
|
},
|
|
8540
8520
|
event_type: {
|
|
8541
8521
|
enum: ["access_code.failed_to_set_on_device"],
|
|
8542
8522
|
type: "string"
|
|
8543
8523
|
},
|
|
8544
8524
|
occurred_at: {
|
|
8545
|
-
description: "
|
|
8525
|
+
description: "Time when the event occurred.",
|
|
8546
8526
|
format: "date-time",
|
|
8547
|
-
type: "string"
|
|
8548
|
-
"x-title": "Occurred At"
|
|
8527
|
+
type: "string"
|
|
8549
8528
|
},
|
|
8550
8529
|
workspace_id: {
|
|
8551
|
-
description: "
|
|
8530
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8552
8531
|
format: "uuid",
|
|
8553
|
-
type: "string"
|
|
8554
|
-
"x-title": "Workspace ID"
|
|
8532
|
+
type: "string"
|
|
8555
8533
|
}
|
|
8556
8534
|
},
|
|
8557
8535
|
required: [
|
|
@@ -8588,10 +8566,9 @@ var openapi_default = {
|
|
|
8588
8566
|
"x-title": "Connected Account ID"
|
|
8589
8567
|
},
|
|
8590
8568
|
created_at: {
|
|
8591
|
-
description: "
|
|
8569
|
+
description: "Time at which the event was created.",
|
|
8592
8570
|
format: "date-time",
|
|
8593
|
-
type: "string"
|
|
8594
|
-
"x-title": "Created At"
|
|
8571
|
+
type: "string"
|
|
8595
8572
|
},
|
|
8596
8573
|
device_id: {
|
|
8597
8574
|
description: "The ID of the device.",
|
|
@@ -8600,23 +8577,20 @@ var openapi_default = {
|
|
|
8600
8577
|
"x-title": "Device ID"
|
|
8601
8578
|
},
|
|
8602
8579
|
event_id: {
|
|
8603
|
-
description: "
|
|
8580
|
+
description: "ID of the event.",
|
|
8604
8581
|
format: "uuid",
|
|
8605
|
-
type: "string"
|
|
8606
|
-
"x-title": "Event ID"
|
|
8582
|
+
type: "string"
|
|
8607
8583
|
},
|
|
8608
8584
|
event_type: { enum: ["access_code.deleted"], type: "string" },
|
|
8609
8585
|
occurred_at: {
|
|
8610
|
-
description: "
|
|
8586
|
+
description: "Time when the event occurred.",
|
|
8611
8587
|
format: "date-time",
|
|
8612
|
-
type: "string"
|
|
8613
|
-
"x-title": "Occurred At"
|
|
8588
|
+
type: "string"
|
|
8614
8589
|
},
|
|
8615
8590
|
workspace_id: {
|
|
8616
|
-
description: "
|
|
8591
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8617
8592
|
format: "uuid",
|
|
8618
|
-
type: "string"
|
|
8619
|
-
"x-title": "Workspace ID"
|
|
8593
|
+
type: "string"
|
|
8620
8594
|
}
|
|
8621
8595
|
},
|
|
8622
8596
|
required: [
|
|
@@ -8648,10 +8622,9 @@ var openapi_default = {
|
|
|
8648
8622
|
"x-title": "Connected Account ID"
|
|
8649
8623
|
},
|
|
8650
8624
|
created_at: {
|
|
8651
|
-
description: "
|
|
8625
|
+
description: "Time at which the event was created.",
|
|
8652
8626
|
format: "date-time",
|
|
8653
|
-
type: "string"
|
|
8654
|
-
"x-title": "Created At"
|
|
8627
|
+
type: "string"
|
|
8655
8628
|
},
|
|
8656
8629
|
device_id: {
|
|
8657
8630
|
description: "The ID of the device.",
|
|
@@ -8660,26 +8633,23 @@ var openapi_default = {
|
|
|
8660
8633
|
"x-title": "Device ID"
|
|
8661
8634
|
},
|
|
8662
8635
|
event_id: {
|
|
8663
|
-
description: "
|
|
8636
|
+
description: "ID of the event.",
|
|
8664
8637
|
format: "uuid",
|
|
8665
|
-
type: "string"
|
|
8666
|
-
"x-title": "Event ID"
|
|
8638
|
+
type: "string"
|
|
8667
8639
|
},
|
|
8668
8640
|
event_type: {
|
|
8669
8641
|
enum: ["access_code.delay_in_removing_from_device"],
|
|
8670
8642
|
type: "string"
|
|
8671
8643
|
},
|
|
8672
8644
|
occurred_at: {
|
|
8673
|
-
description: "
|
|
8645
|
+
description: "Time when the event occurred.",
|
|
8674
8646
|
format: "date-time",
|
|
8675
|
-
type: "string"
|
|
8676
|
-
"x-title": "Occurred At"
|
|
8647
|
+
type: "string"
|
|
8677
8648
|
},
|
|
8678
8649
|
workspace_id: {
|
|
8679
|
-
description: "
|
|
8650
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8680
8651
|
format: "uuid",
|
|
8681
|
-
type: "string"
|
|
8682
|
-
"x-title": "Workspace ID"
|
|
8652
|
+
type: "string"
|
|
8683
8653
|
}
|
|
8684
8654
|
},
|
|
8685
8655
|
required: [
|
|
@@ -8710,10 +8680,9 @@ var openapi_default = {
|
|
|
8710
8680
|
"x-title": "Connected Account ID"
|
|
8711
8681
|
},
|
|
8712
8682
|
created_at: {
|
|
8713
|
-
description: "
|
|
8683
|
+
description: "Time at which the event was created.",
|
|
8714
8684
|
format: "date-time",
|
|
8715
|
-
type: "string"
|
|
8716
|
-
"x-title": "Created At"
|
|
8685
|
+
type: "string"
|
|
8717
8686
|
},
|
|
8718
8687
|
device_id: {
|
|
8719
8688
|
description: "The ID of the device.",
|
|
@@ -8722,26 +8691,23 @@ var openapi_default = {
|
|
|
8722
8691
|
"x-title": "Device ID"
|
|
8723
8692
|
},
|
|
8724
8693
|
event_id: {
|
|
8725
|
-
description: "
|
|
8694
|
+
description: "ID of the event.",
|
|
8726
8695
|
format: "uuid",
|
|
8727
|
-
type: "string"
|
|
8728
|
-
"x-title": "Event ID"
|
|
8696
|
+
type: "string"
|
|
8729
8697
|
},
|
|
8730
8698
|
event_type: {
|
|
8731
8699
|
enum: ["access_code.failed_to_remove_from_device"],
|
|
8732
8700
|
type: "string"
|
|
8733
8701
|
},
|
|
8734
8702
|
occurred_at: {
|
|
8735
|
-
description: "
|
|
8703
|
+
description: "Time when the event occurred.",
|
|
8736
8704
|
format: "date-time",
|
|
8737
|
-
type: "string"
|
|
8738
|
-
"x-title": "Occurred At"
|
|
8705
|
+
type: "string"
|
|
8739
8706
|
},
|
|
8740
8707
|
workspace_id: {
|
|
8741
|
-
description: "
|
|
8708
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8742
8709
|
format: "uuid",
|
|
8743
|
-
type: "string"
|
|
8744
|
-
"x-title": "Workspace ID"
|
|
8710
|
+
type: "string"
|
|
8745
8711
|
}
|
|
8746
8712
|
},
|
|
8747
8713
|
required: [
|
|
@@ -8772,10 +8738,9 @@ var openapi_default = {
|
|
|
8772
8738
|
"x-title": "Connected Account ID"
|
|
8773
8739
|
},
|
|
8774
8740
|
created_at: {
|
|
8775
|
-
description: "
|
|
8741
|
+
description: "Time at which the event was created.",
|
|
8776
8742
|
format: "date-time",
|
|
8777
|
-
type: "string"
|
|
8778
|
-
"x-title": "Created At"
|
|
8743
|
+
type: "string"
|
|
8779
8744
|
},
|
|
8780
8745
|
device_id: {
|
|
8781
8746
|
description: "The ID of the device.",
|
|
@@ -8784,26 +8749,23 @@ var openapi_default = {
|
|
|
8784
8749
|
"x-title": "Device ID"
|
|
8785
8750
|
},
|
|
8786
8751
|
event_id: {
|
|
8787
|
-
description: "
|
|
8752
|
+
description: "ID of the event.",
|
|
8788
8753
|
format: "uuid",
|
|
8789
|
-
type: "string"
|
|
8790
|
-
"x-title": "Event ID"
|
|
8754
|
+
type: "string"
|
|
8791
8755
|
},
|
|
8792
8756
|
event_type: {
|
|
8793
8757
|
enum: ["access_code.modified_external_to_seam"],
|
|
8794
8758
|
type: "string"
|
|
8795
8759
|
},
|
|
8796
8760
|
occurred_at: {
|
|
8797
|
-
description: "
|
|
8761
|
+
description: "Time when the event occurred.",
|
|
8798
8762
|
format: "date-time",
|
|
8799
|
-
type: "string"
|
|
8800
|
-
"x-title": "Occurred At"
|
|
8763
|
+
type: "string"
|
|
8801
8764
|
},
|
|
8802
8765
|
workspace_id: {
|
|
8803
|
-
description: "
|
|
8766
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8804
8767
|
format: "uuid",
|
|
8805
|
-
type: "string"
|
|
8806
|
-
"x-title": "Workspace ID"
|
|
8768
|
+
type: "string"
|
|
8807
8769
|
}
|
|
8808
8770
|
},
|
|
8809
8771
|
required: [
|
|
@@ -8834,10 +8796,9 @@ var openapi_default = {
|
|
|
8834
8796
|
"x-title": "Connected Account ID"
|
|
8835
8797
|
},
|
|
8836
8798
|
created_at: {
|
|
8837
|
-
description: "
|
|
8799
|
+
description: "Time at which the event was created.",
|
|
8838
8800
|
format: "date-time",
|
|
8839
|
-
type: "string"
|
|
8840
|
-
"x-title": "Created At"
|
|
8801
|
+
type: "string"
|
|
8841
8802
|
},
|
|
8842
8803
|
device_id: {
|
|
8843
8804
|
description: "The ID of the device.",
|
|
@@ -8846,26 +8807,23 @@ var openapi_default = {
|
|
|
8846
8807
|
"x-title": "Device ID"
|
|
8847
8808
|
},
|
|
8848
8809
|
event_id: {
|
|
8849
|
-
description: "
|
|
8810
|
+
description: "ID of the event.",
|
|
8850
8811
|
format: "uuid",
|
|
8851
|
-
type: "string"
|
|
8852
|
-
"x-title": "Event ID"
|
|
8812
|
+
type: "string"
|
|
8853
8813
|
},
|
|
8854
8814
|
event_type: {
|
|
8855
8815
|
enum: ["access_code.deleted_external_to_seam"],
|
|
8856
8816
|
type: "string"
|
|
8857
8817
|
},
|
|
8858
8818
|
occurred_at: {
|
|
8859
|
-
description: "
|
|
8819
|
+
description: "Time when the event occurred.",
|
|
8860
8820
|
format: "date-time",
|
|
8861
|
-
type: "string"
|
|
8862
|
-
"x-title": "Occurred At"
|
|
8821
|
+
type: "string"
|
|
8863
8822
|
},
|
|
8864
8823
|
workspace_id: {
|
|
8865
|
-
description: "
|
|
8824
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8866
8825
|
format: "uuid",
|
|
8867
|
-
type: "string"
|
|
8868
|
-
"x-title": "Workspace ID"
|
|
8826
|
+
type: "string"
|
|
8869
8827
|
}
|
|
8870
8828
|
},
|
|
8871
8829
|
required: [
|
|
@@ -8897,10 +8855,9 @@ var openapi_default = {
|
|
|
8897
8855
|
"x-title": "Connected Account ID"
|
|
8898
8856
|
},
|
|
8899
8857
|
created_at: {
|
|
8900
|
-
description: "
|
|
8858
|
+
description: "Time at which the event was created.",
|
|
8901
8859
|
format: "date-time",
|
|
8902
|
-
type: "string"
|
|
8903
|
-
"x-title": "Created At"
|
|
8860
|
+
type: "string"
|
|
8904
8861
|
},
|
|
8905
8862
|
device_id: {
|
|
8906
8863
|
description: "The ID of the device.",
|
|
@@ -8909,26 +8866,23 @@ var openapi_default = {
|
|
|
8909
8866
|
"x-title": "Device ID"
|
|
8910
8867
|
},
|
|
8911
8868
|
event_id: {
|
|
8912
|
-
description: "
|
|
8869
|
+
description: "ID of the event.",
|
|
8913
8870
|
format: "uuid",
|
|
8914
|
-
type: "string"
|
|
8915
|
-
"x-title": "Event ID"
|
|
8871
|
+
type: "string"
|
|
8916
8872
|
},
|
|
8917
8873
|
event_type: {
|
|
8918
8874
|
enum: ["access_code.backup_access_code_pulled"],
|
|
8919
8875
|
type: "string"
|
|
8920
8876
|
},
|
|
8921
8877
|
occurred_at: {
|
|
8922
|
-
description: "
|
|
8878
|
+
description: "Time when the event occurred.",
|
|
8923
8879
|
format: "date-time",
|
|
8924
|
-
type: "string"
|
|
8925
|
-
"x-title": "Occurred At"
|
|
8880
|
+
type: "string"
|
|
8926
8881
|
},
|
|
8927
8882
|
workspace_id: {
|
|
8928
|
-
description: "
|
|
8883
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8929
8884
|
format: "uuid",
|
|
8930
|
-
type: "string"
|
|
8931
|
-
"x-title": "Workspace ID"
|
|
8885
|
+
type: "string"
|
|
8932
8886
|
}
|
|
8933
8887
|
},
|
|
8934
8888
|
required: [
|
|
@@ -8960,10 +8914,9 @@ var openapi_default = {
|
|
|
8960
8914
|
"x-title": "Connected Account ID"
|
|
8961
8915
|
},
|
|
8962
8916
|
created_at: {
|
|
8963
|
-
description: "
|
|
8917
|
+
description: "Time at which the event was created.",
|
|
8964
8918
|
format: "date-time",
|
|
8965
|
-
type: "string"
|
|
8966
|
-
"x-title": "Created At"
|
|
8919
|
+
type: "string"
|
|
8967
8920
|
},
|
|
8968
8921
|
device_id: {
|
|
8969
8922
|
description: "The ID of the device.",
|
|
@@ -8972,26 +8925,23 @@ var openapi_default = {
|
|
|
8972
8925
|
"x-title": "Device ID"
|
|
8973
8926
|
},
|
|
8974
8927
|
event_id: {
|
|
8975
|
-
description: "
|
|
8928
|
+
description: "ID of the event.",
|
|
8976
8929
|
format: "uuid",
|
|
8977
|
-
type: "string"
|
|
8978
|
-
"x-title": "Event ID"
|
|
8930
|
+
type: "string"
|
|
8979
8931
|
},
|
|
8980
8932
|
event_type: {
|
|
8981
8933
|
enum: ["access_code.unmanaged.converted_to_managed"],
|
|
8982
8934
|
type: "string"
|
|
8983
8935
|
},
|
|
8984
8936
|
occurred_at: {
|
|
8985
|
-
description: "
|
|
8937
|
+
description: "Time when the event occurred.",
|
|
8986
8938
|
format: "date-time",
|
|
8987
|
-
type: "string"
|
|
8988
|
-
"x-title": "Occurred At"
|
|
8939
|
+
type: "string"
|
|
8989
8940
|
},
|
|
8990
8941
|
workspace_id: {
|
|
8991
|
-
description: "
|
|
8942
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
8992
8943
|
format: "uuid",
|
|
8993
|
-
type: "string"
|
|
8994
|
-
"x-title": "Workspace ID"
|
|
8944
|
+
type: "string"
|
|
8995
8945
|
}
|
|
8996
8946
|
},
|
|
8997
8947
|
required: [
|
|
@@ -9022,10 +8972,9 @@ var openapi_default = {
|
|
|
9022
8972
|
"x-title": "Connected Account ID"
|
|
9023
8973
|
},
|
|
9024
8974
|
created_at: {
|
|
9025
|
-
description: "
|
|
8975
|
+
description: "Time at which the event was created.",
|
|
9026
8976
|
format: "date-time",
|
|
9027
|
-
type: "string"
|
|
9028
|
-
"x-title": "Created At"
|
|
8977
|
+
type: "string"
|
|
9029
8978
|
},
|
|
9030
8979
|
device_id: {
|
|
9031
8980
|
description: "The ID of the device.",
|
|
@@ -9034,26 +8983,23 @@ var openapi_default = {
|
|
|
9034
8983
|
"x-title": "Device ID"
|
|
9035
8984
|
},
|
|
9036
8985
|
event_id: {
|
|
9037
|
-
description: "
|
|
8986
|
+
description: "ID of the event.",
|
|
9038
8987
|
format: "uuid",
|
|
9039
|
-
type: "string"
|
|
9040
|
-
"x-title": "Event ID"
|
|
8988
|
+
type: "string"
|
|
9041
8989
|
},
|
|
9042
8990
|
event_type: {
|
|
9043
8991
|
enum: ["access_code.unmanaged.failed_to_convert_to_managed"],
|
|
9044
8992
|
type: "string"
|
|
9045
8993
|
},
|
|
9046
8994
|
occurred_at: {
|
|
9047
|
-
description: "
|
|
8995
|
+
description: "Time when the event occurred.",
|
|
9048
8996
|
format: "date-time",
|
|
9049
|
-
type: "string"
|
|
9050
|
-
"x-title": "Occurred At"
|
|
8997
|
+
type: "string"
|
|
9051
8998
|
},
|
|
9052
8999
|
workspace_id: {
|
|
9053
|
-
description: "
|
|
9000
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9054
9001
|
format: "uuid",
|
|
9055
|
-
type: "string"
|
|
9056
|
-
"x-title": "Workspace ID"
|
|
9002
|
+
type: "string"
|
|
9057
9003
|
}
|
|
9058
9004
|
},
|
|
9059
9005
|
required: [
|
|
@@ -9084,10 +9030,9 @@ var openapi_default = {
|
|
|
9084
9030
|
"x-title": "Connected Account ID"
|
|
9085
9031
|
},
|
|
9086
9032
|
created_at: {
|
|
9087
|
-
description: "
|
|
9033
|
+
description: "Time at which the event was created.",
|
|
9088
9034
|
format: "date-time",
|
|
9089
|
-
type: "string"
|
|
9090
|
-
"x-title": "Created At"
|
|
9035
|
+
type: "string"
|
|
9091
9036
|
},
|
|
9092
9037
|
device_id: {
|
|
9093
9038
|
description: "The ID of the device.",
|
|
@@ -9096,26 +9041,23 @@ var openapi_default = {
|
|
|
9096
9041
|
"x-title": "Device ID"
|
|
9097
9042
|
},
|
|
9098
9043
|
event_id: {
|
|
9099
|
-
description: "
|
|
9044
|
+
description: "ID of the event.",
|
|
9100
9045
|
format: "uuid",
|
|
9101
|
-
type: "string"
|
|
9102
|
-
"x-title": "Event ID"
|
|
9046
|
+
type: "string"
|
|
9103
9047
|
},
|
|
9104
9048
|
event_type: {
|
|
9105
9049
|
enum: ["access_code.unmanaged.created"],
|
|
9106
9050
|
type: "string"
|
|
9107
9051
|
},
|
|
9108
9052
|
occurred_at: {
|
|
9109
|
-
description: "
|
|
9053
|
+
description: "Time when the event occurred.",
|
|
9110
9054
|
format: "date-time",
|
|
9111
|
-
type: "string"
|
|
9112
|
-
"x-title": "Occurred At"
|
|
9055
|
+
type: "string"
|
|
9113
9056
|
},
|
|
9114
9057
|
workspace_id: {
|
|
9115
|
-
description: "
|
|
9058
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9116
9059
|
format: "uuid",
|
|
9117
|
-
type: "string"
|
|
9118
|
-
"x-title": "Workspace ID"
|
|
9060
|
+
type: "string"
|
|
9119
9061
|
}
|
|
9120
9062
|
},
|
|
9121
9063
|
required: [
|
|
@@ -9146,10 +9088,9 @@ var openapi_default = {
|
|
|
9146
9088
|
"x-title": "Connected Account ID"
|
|
9147
9089
|
},
|
|
9148
9090
|
created_at: {
|
|
9149
|
-
description: "
|
|
9091
|
+
description: "Time at which the event was created.",
|
|
9150
9092
|
format: "date-time",
|
|
9151
|
-
type: "string"
|
|
9152
|
-
"x-title": "Created At"
|
|
9093
|
+
type: "string"
|
|
9153
9094
|
},
|
|
9154
9095
|
device_id: {
|
|
9155
9096
|
description: "The ID of the device.",
|
|
@@ -9158,26 +9099,23 @@ var openapi_default = {
|
|
|
9158
9099
|
"x-title": "Device ID"
|
|
9159
9100
|
},
|
|
9160
9101
|
event_id: {
|
|
9161
|
-
description: "
|
|
9102
|
+
description: "ID of the event.",
|
|
9162
9103
|
format: "uuid",
|
|
9163
|
-
type: "string"
|
|
9164
|
-
"x-title": "Event ID"
|
|
9104
|
+
type: "string"
|
|
9165
9105
|
},
|
|
9166
9106
|
event_type: {
|
|
9167
9107
|
enum: ["access_code.unmanaged.removed"],
|
|
9168
9108
|
type: "string"
|
|
9169
9109
|
},
|
|
9170
9110
|
occurred_at: {
|
|
9171
|
-
description: "
|
|
9111
|
+
description: "Time when the event occurred.",
|
|
9172
9112
|
format: "date-time",
|
|
9173
|
-
type: "string"
|
|
9174
|
-
"x-title": "Occurred At"
|
|
9113
|
+
type: "string"
|
|
9175
9114
|
},
|
|
9176
9115
|
workspace_id: {
|
|
9177
|
-
description: "
|
|
9116
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9178
9117
|
format: "uuid",
|
|
9179
|
-
type: "string"
|
|
9180
|
-
"x-title": "Workspace ID"
|
|
9118
|
+
type: "string"
|
|
9181
9119
|
}
|
|
9182
9120
|
},
|
|
9183
9121
|
required: [
|
|
@@ -9210,29 +9148,25 @@ var openapi_default = {
|
|
|
9210
9148
|
"x-title": "Connected Account ID"
|
|
9211
9149
|
},
|
|
9212
9150
|
created_at: {
|
|
9213
|
-
description: "
|
|
9151
|
+
description: "Time at which the event was created.",
|
|
9214
9152
|
format: "date-time",
|
|
9215
|
-
type: "string"
|
|
9216
|
-
"x-title": "Created At"
|
|
9153
|
+
type: "string"
|
|
9217
9154
|
},
|
|
9218
9155
|
event_id: {
|
|
9219
|
-
description: "
|
|
9156
|
+
description: "ID of the event.",
|
|
9220
9157
|
format: "uuid",
|
|
9221
|
-
type: "string"
|
|
9222
|
-
"x-title": "Event ID"
|
|
9158
|
+
type: "string"
|
|
9223
9159
|
},
|
|
9224
9160
|
event_type: { enum: ["acs_system.connected"], type: "string" },
|
|
9225
9161
|
occurred_at: {
|
|
9226
|
-
description: "
|
|
9162
|
+
description: "Time when the event occurred.",
|
|
9227
9163
|
format: "date-time",
|
|
9228
|
-
type: "string"
|
|
9229
|
-
"x-title": "Occurred At"
|
|
9164
|
+
type: "string"
|
|
9230
9165
|
},
|
|
9231
9166
|
workspace_id: {
|
|
9232
|
-
description: "
|
|
9167
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9233
9168
|
format: "uuid",
|
|
9234
|
-
type: "string"
|
|
9235
|
-
"x-title": "Workspace ID"
|
|
9169
|
+
type: "string"
|
|
9236
9170
|
}
|
|
9237
9171
|
},
|
|
9238
9172
|
required: [
|
|
@@ -9263,29 +9197,25 @@ var openapi_default = {
|
|
|
9263
9197
|
"x-title": "Connected Account ID"
|
|
9264
9198
|
},
|
|
9265
9199
|
created_at: {
|
|
9266
|
-
description: "
|
|
9200
|
+
description: "Time at which the event was created.",
|
|
9267
9201
|
format: "date-time",
|
|
9268
|
-
type: "string"
|
|
9269
|
-
"x-title": "Created At"
|
|
9202
|
+
type: "string"
|
|
9270
9203
|
},
|
|
9271
9204
|
event_id: {
|
|
9272
|
-
description: "
|
|
9205
|
+
description: "ID of the event.",
|
|
9273
9206
|
format: "uuid",
|
|
9274
|
-
type: "string"
|
|
9275
|
-
"x-title": "Event ID"
|
|
9207
|
+
type: "string"
|
|
9276
9208
|
},
|
|
9277
9209
|
event_type: { enum: ["acs_system.added"], type: "string" },
|
|
9278
9210
|
occurred_at: {
|
|
9279
|
-
description: "
|
|
9211
|
+
description: "Time when the event occurred.",
|
|
9280
9212
|
format: "date-time",
|
|
9281
|
-
type: "string"
|
|
9282
|
-
"x-title": "Occurred At"
|
|
9213
|
+
type: "string"
|
|
9283
9214
|
},
|
|
9284
9215
|
workspace_id: {
|
|
9285
|
-
description: "
|
|
9216
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9286
9217
|
format: "uuid",
|
|
9287
|
-
type: "string"
|
|
9288
|
-
"x-title": "Workspace ID"
|
|
9218
|
+
type: "string"
|
|
9289
9219
|
}
|
|
9290
9220
|
},
|
|
9291
9221
|
required: [
|
|
@@ -9316,29 +9246,25 @@ var openapi_default = {
|
|
|
9316
9246
|
"x-title": "Connected Account ID"
|
|
9317
9247
|
},
|
|
9318
9248
|
created_at: {
|
|
9319
|
-
description: "
|
|
9249
|
+
description: "Time at which the event was created.",
|
|
9320
9250
|
format: "date-time",
|
|
9321
|
-
type: "string"
|
|
9322
|
-
"x-title": "Created At"
|
|
9251
|
+
type: "string"
|
|
9323
9252
|
},
|
|
9324
9253
|
event_id: {
|
|
9325
|
-
description: "
|
|
9254
|
+
description: "ID of the event.",
|
|
9326
9255
|
format: "uuid",
|
|
9327
|
-
type: "string"
|
|
9328
|
-
"x-title": "Event ID"
|
|
9256
|
+
type: "string"
|
|
9329
9257
|
},
|
|
9330
9258
|
event_type: { enum: ["acs_system.disconnected"], type: "string" },
|
|
9331
9259
|
occurred_at: {
|
|
9332
|
-
description: "
|
|
9260
|
+
description: "Time when the event occurred.",
|
|
9333
9261
|
format: "date-time",
|
|
9334
|
-
type: "string"
|
|
9335
|
-
"x-title": "Occurred At"
|
|
9262
|
+
type: "string"
|
|
9336
9263
|
},
|
|
9337
9264
|
workspace_id: {
|
|
9338
|
-
description: "
|
|
9265
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9339
9266
|
format: "uuid",
|
|
9340
|
-
type: "string"
|
|
9341
|
-
"x-title": "Workspace ID"
|
|
9267
|
+
type: "string"
|
|
9342
9268
|
}
|
|
9343
9269
|
},
|
|
9344
9270
|
required: [
|
|
@@ -9370,29 +9296,25 @@ var openapi_default = {
|
|
|
9370
9296
|
"x-title": "Connected Account ID"
|
|
9371
9297
|
},
|
|
9372
9298
|
created_at: {
|
|
9373
|
-
description: "
|
|
9299
|
+
description: "Time at which the event was created.",
|
|
9374
9300
|
format: "date-time",
|
|
9375
|
-
type: "string"
|
|
9376
|
-
"x-title": "Created At"
|
|
9301
|
+
type: "string"
|
|
9377
9302
|
},
|
|
9378
9303
|
event_id: {
|
|
9379
|
-
description: "
|
|
9304
|
+
description: "ID of the event.",
|
|
9380
9305
|
format: "uuid",
|
|
9381
|
-
type: "string"
|
|
9382
|
-
"x-title": "Event ID"
|
|
9306
|
+
type: "string"
|
|
9383
9307
|
},
|
|
9384
9308
|
event_type: { enum: ["acs_credential.deleted"], type: "string" },
|
|
9385
9309
|
occurred_at: {
|
|
9386
|
-
description: "
|
|
9310
|
+
description: "Time when the event occurred.",
|
|
9387
9311
|
format: "date-time",
|
|
9388
|
-
type: "string"
|
|
9389
|
-
"x-title": "Occurred At"
|
|
9312
|
+
type: "string"
|
|
9390
9313
|
},
|
|
9391
9314
|
workspace_id: {
|
|
9392
|
-
description: "
|
|
9315
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9393
9316
|
format: "uuid",
|
|
9394
|
-
type: "string"
|
|
9395
|
-
"x-title": "Workspace ID"
|
|
9317
|
+
type: "string"
|
|
9396
9318
|
}
|
|
9397
9319
|
},
|
|
9398
9320
|
required: [
|
|
@@ -9425,29 +9347,25 @@ var openapi_default = {
|
|
|
9425
9347
|
"x-title": "Connected Account ID"
|
|
9426
9348
|
},
|
|
9427
9349
|
created_at: {
|
|
9428
|
-
description: "
|
|
9350
|
+
description: "Time at which the event was created.",
|
|
9429
9351
|
format: "date-time",
|
|
9430
|
-
type: "string"
|
|
9431
|
-
"x-title": "Created At"
|
|
9352
|
+
type: "string"
|
|
9432
9353
|
},
|
|
9433
9354
|
event_id: {
|
|
9434
|
-
description: "
|
|
9355
|
+
description: "ID of the event.",
|
|
9435
9356
|
format: "uuid",
|
|
9436
|
-
type: "string"
|
|
9437
|
-
"x-title": "Event ID"
|
|
9357
|
+
type: "string"
|
|
9438
9358
|
},
|
|
9439
9359
|
event_type: { enum: ["acs_credential.issued"], type: "string" },
|
|
9440
9360
|
occurred_at: {
|
|
9441
|
-
description: "
|
|
9361
|
+
description: "Time when the event occurred.",
|
|
9442
9362
|
format: "date-time",
|
|
9443
|
-
type: "string"
|
|
9444
|
-
"x-title": "Occurred At"
|
|
9363
|
+
type: "string"
|
|
9445
9364
|
},
|
|
9446
9365
|
workspace_id: {
|
|
9447
|
-
description: "
|
|
9366
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9448
9367
|
format: "uuid",
|
|
9449
|
-
type: "string"
|
|
9450
|
-
"x-title": "Workspace ID"
|
|
9368
|
+
type: "string"
|
|
9451
9369
|
}
|
|
9452
9370
|
},
|
|
9453
9371
|
required: [
|
|
@@ -9480,29 +9398,25 @@ var openapi_default = {
|
|
|
9480
9398
|
"x-title": "Connected Account ID"
|
|
9481
9399
|
},
|
|
9482
9400
|
created_at: {
|
|
9483
|
-
description: "
|
|
9401
|
+
description: "Time at which the event was created.",
|
|
9484
9402
|
format: "date-time",
|
|
9485
|
-
type: "string"
|
|
9486
|
-
"x-title": "Created At"
|
|
9403
|
+
type: "string"
|
|
9487
9404
|
},
|
|
9488
9405
|
event_id: {
|
|
9489
|
-
description: "
|
|
9406
|
+
description: "ID of the event.",
|
|
9490
9407
|
format: "uuid",
|
|
9491
|
-
type: "string"
|
|
9492
|
-
"x-title": "Event ID"
|
|
9408
|
+
type: "string"
|
|
9493
9409
|
},
|
|
9494
9410
|
event_type: { enum: ["acs_user.deleted"], type: "string" },
|
|
9495
9411
|
occurred_at: {
|
|
9496
|
-
description: "
|
|
9412
|
+
description: "Time when the event occurred.",
|
|
9497
9413
|
format: "date-time",
|
|
9498
|
-
type: "string"
|
|
9499
|
-
"x-title": "Occurred At"
|
|
9414
|
+
type: "string"
|
|
9500
9415
|
},
|
|
9501
9416
|
workspace_id: {
|
|
9502
|
-
description: "
|
|
9417
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9503
9418
|
format: "uuid",
|
|
9504
|
-
type: "string"
|
|
9505
|
-
"x-title": "Workspace ID"
|
|
9419
|
+
type: "string"
|
|
9506
9420
|
}
|
|
9507
9421
|
},
|
|
9508
9422
|
required: [
|
|
@@ -9539,29 +9453,25 @@ var openapi_default = {
|
|
|
9539
9453
|
"x-title": "Connected Account ID"
|
|
9540
9454
|
},
|
|
9541
9455
|
created_at: {
|
|
9542
|
-
description: "
|
|
9456
|
+
description: "Time at which the event was created.",
|
|
9543
9457
|
format: "date-time",
|
|
9544
|
-
type: "string"
|
|
9545
|
-
"x-title": "Created At"
|
|
9458
|
+
type: "string"
|
|
9546
9459
|
},
|
|
9547
9460
|
event_id: {
|
|
9548
|
-
description: "
|
|
9461
|
+
description: "ID of the event.",
|
|
9549
9462
|
format: "uuid",
|
|
9550
|
-
type: "string"
|
|
9551
|
-
"x-title": "Event ID"
|
|
9463
|
+
type: "string"
|
|
9552
9464
|
},
|
|
9553
9465
|
event_type: { enum: ["acs_encoder.added"], type: "string" },
|
|
9554
9466
|
occurred_at: {
|
|
9555
|
-
description: "
|
|
9467
|
+
description: "Time when the event occurred.",
|
|
9556
9468
|
format: "date-time",
|
|
9557
|
-
type: "string"
|
|
9558
|
-
"x-title": "Occurred At"
|
|
9469
|
+
type: "string"
|
|
9559
9470
|
},
|
|
9560
9471
|
workspace_id: {
|
|
9561
|
-
description: "
|
|
9472
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9562
9473
|
format: "uuid",
|
|
9563
|
-
type: "string"
|
|
9564
|
-
"x-title": "Workspace ID"
|
|
9474
|
+
type: "string"
|
|
9565
9475
|
}
|
|
9566
9476
|
},
|
|
9567
9477
|
required: [
|
|
@@ -9598,29 +9508,25 @@ var openapi_default = {
|
|
|
9598
9508
|
"x-title": "Connected Account ID"
|
|
9599
9509
|
},
|
|
9600
9510
|
created_at: {
|
|
9601
|
-
description: "
|
|
9511
|
+
description: "Time at which the event was created.",
|
|
9602
9512
|
format: "date-time",
|
|
9603
|
-
type: "string"
|
|
9604
|
-
"x-title": "Created At"
|
|
9513
|
+
type: "string"
|
|
9605
9514
|
},
|
|
9606
9515
|
event_id: {
|
|
9607
|
-
description: "
|
|
9516
|
+
description: "ID of the event.",
|
|
9608
9517
|
format: "uuid",
|
|
9609
|
-
type: "string"
|
|
9610
|
-
"x-title": "Event ID"
|
|
9518
|
+
type: "string"
|
|
9611
9519
|
},
|
|
9612
9520
|
event_type: { enum: ["acs_encoder.removed"], type: "string" },
|
|
9613
9521
|
occurred_at: {
|
|
9614
|
-
description: "
|
|
9522
|
+
description: "Time when the event occurred.",
|
|
9615
9523
|
format: "date-time",
|
|
9616
|
-
type: "string"
|
|
9617
|
-
"x-title": "Occurred At"
|
|
9524
|
+
type: "string"
|
|
9618
9525
|
},
|
|
9619
9526
|
workspace_id: {
|
|
9620
|
-
description: "
|
|
9527
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9621
9528
|
format: "uuid",
|
|
9622
|
-
type: "string"
|
|
9623
|
-
"x-title": "Workspace ID"
|
|
9529
|
+
type: "string"
|
|
9624
9530
|
}
|
|
9625
9531
|
},
|
|
9626
9532
|
required: [
|
|
@@ -9644,29 +9550,25 @@ var openapi_default = {
|
|
|
9644
9550
|
"x-title": "Client Session ID"
|
|
9645
9551
|
},
|
|
9646
9552
|
created_at: {
|
|
9647
|
-
description: "
|
|
9553
|
+
description: "Time at which the event was created.",
|
|
9648
9554
|
format: "date-time",
|
|
9649
|
-
type: "string"
|
|
9650
|
-
"x-title": "Created At"
|
|
9555
|
+
type: "string"
|
|
9651
9556
|
},
|
|
9652
9557
|
event_id: {
|
|
9653
|
-
description: "
|
|
9558
|
+
description: "ID of the event.",
|
|
9654
9559
|
format: "uuid",
|
|
9655
|
-
type: "string"
|
|
9656
|
-
"x-title": "Event ID"
|
|
9560
|
+
type: "string"
|
|
9657
9561
|
},
|
|
9658
9562
|
event_type: { enum: ["client_session.deleted"], type: "string" },
|
|
9659
9563
|
occurred_at: {
|
|
9660
|
-
description: "
|
|
9564
|
+
description: "Time when the event occurred.",
|
|
9661
9565
|
format: "date-time",
|
|
9662
|
-
type: "string"
|
|
9663
|
-
"x-title": "Occurred At"
|
|
9566
|
+
type: "string"
|
|
9664
9567
|
},
|
|
9665
9568
|
workspace_id: {
|
|
9666
|
-
description: "
|
|
9569
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9667
9570
|
format: "uuid",
|
|
9668
|
-
type: "string"
|
|
9669
|
-
"x-title": "Workspace ID"
|
|
9571
|
+
type: "string"
|
|
9670
9572
|
}
|
|
9671
9573
|
},
|
|
9672
9574
|
required: [
|
|
@@ -9695,32 +9597,28 @@ var openapi_default = {
|
|
|
9695
9597
|
"x-title": "Connected Account ID"
|
|
9696
9598
|
},
|
|
9697
9599
|
created_at: {
|
|
9698
|
-
description: "
|
|
9600
|
+
description: "Time at which the event was created.",
|
|
9699
9601
|
format: "date-time",
|
|
9700
|
-
type: "string"
|
|
9701
|
-
"x-title": "Created At"
|
|
9602
|
+
type: "string"
|
|
9702
9603
|
},
|
|
9703
9604
|
event_id: {
|
|
9704
|
-
description: "
|
|
9605
|
+
description: "ID of the event.",
|
|
9705
9606
|
format: "uuid",
|
|
9706
|
-
type: "string"
|
|
9707
|
-
"x-title": "Event ID"
|
|
9607
|
+
type: "string"
|
|
9708
9608
|
},
|
|
9709
9609
|
event_type: {
|
|
9710
9610
|
enum: ["connected_account.connected"],
|
|
9711
9611
|
type: "string"
|
|
9712
9612
|
},
|
|
9713
9613
|
occurred_at: {
|
|
9714
|
-
description: "
|
|
9614
|
+
description: "Time when the event occurred.",
|
|
9715
9615
|
format: "date-time",
|
|
9716
|
-
type: "string"
|
|
9717
|
-
"x-title": "Occurred At"
|
|
9616
|
+
type: "string"
|
|
9718
9617
|
},
|
|
9719
9618
|
workspace_id: {
|
|
9720
|
-
description: "
|
|
9619
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9721
9620
|
format: "uuid",
|
|
9722
|
-
type: "string"
|
|
9723
|
-
"x-title": "Workspace ID"
|
|
9621
|
+
type: "string"
|
|
9724
9622
|
}
|
|
9725
9623
|
},
|
|
9726
9624
|
required: [
|
|
@@ -9750,32 +9648,28 @@ var openapi_default = {
|
|
|
9750
9648
|
"x-title": "Connected Account ID"
|
|
9751
9649
|
},
|
|
9752
9650
|
created_at: {
|
|
9753
|
-
description: "
|
|
9651
|
+
description: "Time at which the event was created.",
|
|
9754
9652
|
format: "date-time",
|
|
9755
|
-
type: "string"
|
|
9756
|
-
"x-title": "Created At"
|
|
9653
|
+
type: "string"
|
|
9757
9654
|
},
|
|
9758
9655
|
event_id: {
|
|
9759
|
-
description: "
|
|
9656
|
+
description: "ID of the event.",
|
|
9760
9657
|
format: "uuid",
|
|
9761
|
-
type: "string"
|
|
9762
|
-
"x-title": "Event ID"
|
|
9658
|
+
type: "string"
|
|
9763
9659
|
},
|
|
9764
9660
|
event_type: {
|
|
9765
9661
|
enum: ["connected_account.created"],
|
|
9766
9662
|
type: "string"
|
|
9767
9663
|
},
|
|
9768
9664
|
occurred_at: {
|
|
9769
|
-
description: "
|
|
9665
|
+
description: "Time when the event occurred.",
|
|
9770
9666
|
format: "date-time",
|
|
9771
|
-
type: "string"
|
|
9772
|
-
"x-title": "Occurred At"
|
|
9667
|
+
type: "string"
|
|
9773
9668
|
},
|
|
9774
9669
|
workspace_id: {
|
|
9775
|
-
description: "
|
|
9670
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9776
9671
|
format: "uuid",
|
|
9777
|
-
type: "string"
|
|
9778
|
-
"x-title": "Workspace ID"
|
|
9672
|
+
type: "string"
|
|
9779
9673
|
}
|
|
9780
9674
|
},
|
|
9781
9675
|
required: [
|
|
@@ -9806,32 +9700,28 @@ var openapi_default = {
|
|
|
9806
9700
|
"x-title": "Connected Account ID"
|
|
9807
9701
|
},
|
|
9808
9702
|
created_at: {
|
|
9809
|
-
description: "
|
|
9703
|
+
description: "Time at which the event was created.",
|
|
9810
9704
|
format: "date-time",
|
|
9811
|
-
type: "string"
|
|
9812
|
-
"x-title": "Created At"
|
|
9705
|
+
type: "string"
|
|
9813
9706
|
},
|
|
9814
9707
|
event_id: {
|
|
9815
|
-
description: "
|
|
9708
|
+
description: "ID of the event.",
|
|
9816
9709
|
format: "uuid",
|
|
9817
|
-
type: "string"
|
|
9818
|
-
"x-title": "Event ID"
|
|
9710
|
+
type: "string"
|
|
9819
9711
|
},
|
|
9820
9712
|
event_type: {
|
|
9821
9713
|
enum: ["connected_account.successful_login"],
|
|
9822
9714
|
type: "string"
|
|
9823
9715
|
},
|
|
9824
9716
|
occurred_at: {
|
|
9825
|
-
description: "
|
|
9717
|
+
description: "Time when the event occurred.",
|
|
9826
9718
|
format: "date-time",
|
|
9827
|
-
type: "string"
|
|
9828
|
-
"x-title": "Occurred At"
|
|
9719
|
+
type: "string"
|
|
9829
9720
|
},
|
|
9830
9721
|
workspace_id: {
|
|
9831
|
-
description: "
|
|
9722
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9832
9723
|
format: "uuid",
|
|
9833
|
-
type: "string"
|
|
9834
|
-
"x-title": "Workspace ID"
|
|
9724
|
+
type: "string"
|
|
9835
9725
|
}
|
|
9836
9726
|
},
|
|
9837
9727
|
required: [
|
|
@@ -9856,32 +9746,28 @@ var openapi_default = {
|
|
|
9856
9746
|
"x-title": "Connected Account ID"
|
|
9857
9747
|
},
|
|
9858
9748
|
created_at: {
|
|
9859
|
-
description: "
|
|
9749
|
+
description: "Time at which the event was created.",
|
|
9860
9750
|
format: "date-time",
|
|
9861
|
-
type: "string"
|
|
9862
|
-
"x-title": "Created At"
|
|
9751
|
+
type: "string"
|
|
9863
9752
|
},
|
|
9864
9753
|
event_id: {
|
|
9865
|
-
description: "
|
|
9754
|
+
description: "ID of the event.",
|
|
9866
9755
|
format: "uuid",
|
|
9867
|
-
type: "string"
|
|
9868
|
-
"x-title": "Event ID"
|
|
9756
|
+
type: "string"
|
|
9869
9757
|
},
|
|
9870
9758
|
event_type: {
|
|
9871
9759
|
enum: ["connected_account.disconnected"],
|
|
9872
9760
|
type: "string"
|
|
9873
9761
|
},
|
|
9874
9762
|
occurred_at: {
|
|
9875
|
-
description: "
|
|
9763
|
+
description: "Time when the event occurred.",
|
|
9876
9764
|
format: "date-time",
|
|
9877
|
-
type: "string"
|
|
9878
|
-
"x-title": "Occurred At"
|
|
9765
|
+
type: "string"
|
|
9879
9766
|
},
|
|
9880
9767
|
workspace_id: {
|
|
9881
|
-
description: "
|
|
9768
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9882
9769
|
format: "uuid",
|
|
9883
|
-
type: "string"
|
|
9884
|
-
"x-title": "Workspace ID"
|
|
9770
|
+
type: "string"
|
|
9885
9771
|
}
|
|
9886
9772
|
},
|
|
9887
9773
|
required: [
|
|
@@ -9904,32 +9790,28 @@ var openapi_default = {
|
|
|
9904
9790
|
"x-title": "Connected Account ID"
|
|
9905
9791
|
},
|
|
9906
9792
|
created_at: {
|
|
9907
|
-
description: "
|
|
9793
|
+
description: "Time at which the event was created.",
|
|
9908
9794
|
format: "date-time",
|
|
9909
|
-
type: "string"
|
|
9910
|
-
"x-title": "Created At"
|
|
9795
|
+
type: "string"
|
|
9911
9796
|
},
|
|
9912
9797
|
event_id: {
|
|
9913
|
-
description: "
|
|
9798
|
+
description: "ID of the event.",
|
|
9914
9799
|
format: "uuid",
|
|
9915
|
-
type: "string"
|
|
9916
|
-
"x-title": "Event ID"
|
|
9800
|
+
type: "string"
|
|
9917
9801
|
},
|
|
9918
9802
|
event_type: {
|
|
9919
9803
|
enum: ["connected_account.completed_first_sync"],
|
|
9920
9804
|
type: "string"
|
|
9921
9805
|
},
|
|
9922
9806
|
occurred_at: {
|
|
9923
|
-
description: "
|
|
9807
|
+
description: "Time when the event occurred.",
|
|
9924
9808
|
format: "date-time",
|
|
9925
|
-
type: "string"
|
|
9926
|
-
"x-title": "Occurred At"
|
|
9809
|
+
type: "string"
|
|
9927
9810
|
},
|
|
9928
9811
|
workspace_id: {
|
|
9929
|
-
description: "
|
|
9812
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9930
9813
|
format: "uuid",
|
|
9931
|
-
type: "string"
|
|
9932
|
-
"x-title": "Workspace ID"
|
|
9814
|
+
type: "string"
|
|
9933
9815
|
}
|
|
9934
9816
|
},
|
|
9935
9817
|
required: [
|
|
@@ -9952,32 +9834,28 @@ var openapi_default = {
|
|
|
9952
9834
|
"x-title": "Connected Account ID"
|
|
9953
9835
|
},
|
|
9954
9836
|
created_at: {
|
|
9955
|
-
description: "
|
|
9837
|
+
description: "Time at which the event was created.",
|
|
9956
9838
|
format: "date-time",
|
|
9957
|
-
type: "string"
|
|
9958
|
-
"x-title": "Created At"
|
|
9839
|
+
type: "string"
|
|
9959
9840
|
},
|
|
9960
9841
|
event_id: {
|
|
9961
|
-
description: "
|
|
9842
|
+
description: "ID of the event.",
|
|
9962
9843
|
format: "uuid",
|
|
9963
|
-
type: "string"
|
|
9964
|
-
"x-title": "Event ID"
|
|
9844
|
+
type: "string"
|
|
9965
9845
|
},
|
|
9966
9846
|
event_type: {
|
|
9967
9847
|
enum: ["connected_account.deleted"],
|
|
9968
9848
|
type: "string"
|
|
9969
9849
|
},
|
|
9970
9850
|
occurred_at: {
|
|
9971
|
-
description: "
|
|
9851
|
+
description: "Time when the event occurred.",
|
|
9972
9852
|
format: "date-time",
|
|
9973
|
-
type: "string"
|
|
9974
|
-
"x-title": "Occurred At"
|
|
9853
|
+
type: "string"
|
|
9975
9854
|
},
|
|
9976
9855
|
workspace_id: {
|
|
9977
|
-
description: "
|
|
9856
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
9978
9857
|
format: "uuid",
|
|
9979
|
-
type: "string"
|
|
9980
|
-
"x-title": "Workspace ID"
|
|
9858
|
+
type: "string"
|
|
9981
9859
|
}
|
|
9982
9860
|
},
|
|
9983
9861
|
required: [
|
|
@@ -10000,16 +9878,14 @@ var openapi_default = {
|
|
|
10000
9878
|
"x-title": "Connected Account ID"
|
|
10001
9879
|
},
|
|
10002
9880
|
created_at: {
|
|
10003
|
-
description: "
|
|
9881
|
+
description: "Time at which the event was created.",
|
|
10004
9882
|
format: "date-time",
|
|
10005
|
-
type: "string"
|
|
10006
|
-
"x-title": "Created At"
|
|
9883
|
+
type: "string"
|
|
10007
9884
|
},
|
|
10008
9885
|
event_id: {
|
|
10009
|
-
description: "
|
|
9886
|
+
description: "ID of the event.",
|
|
10010
9887
|
format: "uuid",
|
|
10011
|
-
type: "string"
|
|
10012
|
-
"x-title": "Event ID"
|
|
9888
|
+
type: "string"
|
|
10013
9889
|
},
|
|
10014
9890
|
event_type: {
|
|
10015
9891
|
enum: [
|
|
@@ -10018,16 +9894,14 @@ var openapi_default = {
|
|
|
10018
9894
|
type: "string"
|
|
10019
9895
|
},
|
|
10020
9896
|
occurred_at: {
|
|
10021
|
-
description: "
|
|
9897
|
+
description: "Time when the event occurred.",
|
|
10022
9898
|
format: "date-time",
|
|
10023
|
-
type: "string"
|
|
10024
|
-
"x-title": "Occurred At"
|
|
9899
|
+
type: "string"
|
|
10025
9900
|
},
|
|
10026
9901
|
workspace_id: {
|
|
10027
|
-
description: "
|
|
9902
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10028
9903
|
format: "uuid",
|
|
10029
|
-
type: "string"
|
|
10030
|
-
"x-title": "Workspace ID"
|
|
9904
|
+
type: "string"
|
|
10031
9905
|
}
|
|
10032
9906
|
},
|
|
10033
9907
|
required: [
|
|
@@ -10055,26 +9929,23 @@ var openapi_default = {
|
|
|
10055
9929
|
"x-title": "Action Type"
|
|
10056
9930
|
},
|
|
10057
9931
|
created_at: {
|
|
10058
|
-
description: "
|
|
9932
|
+
description: "Time at which the event was created.",
|
|
10059
9933
|
format: "date-time",
|
|
10060
|
-
type: "string"
|
|
10061
|
-
"x-title": "Created At"
|
|
9934
|
+
type: "string"
|
|
10062
9935
|
},
|
|
10063
9936
|
event_id: {
|
|
10064
|
-
description: "
|
|
9937
|
+
description: "ID of the event.",
|
|
10065
9938
|
format: "uuid",
|
|
10066
|
-
type: "string"
|
|
10067
|
-
"x-title": "Event ID"
|
|
9939
|
+
type: "string"
|
|
10068
9940
|
},
|
|
10069
9941
|
event_type: {
|
|
10070
9942
|
enum: ["action_attempt.lock_door.succeeded"],
|
|
10071
9943
|
type: "string"
|
|
10072
9944
|
},
|
|
10073
9945
|
occurred_at: {
|
|
10074
|
-
description: "
|
|
9946
|
+
description: "Time when the event occurred.",
|
|
10075
9947
|
format: "date-time",
|
|
10076
|
-
type: "string"
|
|
10077
|
-
"x-title": "Occurred At"
|
|
9948
|
+
type: "string"
|
|
10078
9949
|
},
|
|
10079
9950
|
status: {
|
|
10080
9951
|
description: "The status of the action.",
|
|
@@ -10082,10 +9953,9 @@ var openapi_default = {
|
|
|
10082
9953
|
"x-title": "Status"
|
|
10083
9954
|
},
|
|
10084
9955
|
workspace_id: {
|
|
10085
|
-
description: "
|
|
9956
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10086
9957
|
format: "uuid",
|
|
10087
|
-
type: "string"
|
|
10088
|
-
"x-title": "Workspace ID"
|
|
9958
|
+
type: "string"
|
|
10089
9959
|
}
|
|
10090
9960
|
},
|
|
10091
9961
|
required: [
|
|
@@ -10115,26 +9985,23 @@ var openapi_default = {
|
|
|
10115
9985
|
"x-title": "Action Type"
|
|
10116
9986
|
},
|
|
10117
9987
|
created_at: {
|
|
10118
|
-
description: "
|
|
9988
|
+
description: "Time at which the event was created.",
|
|
10119
9989
|
format: "date-time",
|
|
10120
|
-
type: "string"
|
|
10121
|
-
"x-title": "Created At"
|
|
9990
|
+
type: "string"
|
|
10122
9991
|
},
|
|
10123
9992
|
event_id: {
|
|
10124
|
-
description: "
|
|
9993
|
+
description: "ID of the event.",
|
|
10125
9994
|
format: "uuid",
|
|
10126
|
-
type: "string"
|
|
10127
|
-
"x-title": "Event ID"
|
|
9995
|
+
type: "string"
|
|
10128
9996
|
},
|
|
10129
9997
|
event_type: {
|
|
10130
9998
|
enum: ["action_attempt.lock_door.failed"],
|
|
10131
9999
|
type: "string"
|
|
10132
10000
|
},
|
|
10133
10001
|
occurred_at: {
|
|
10134
|
-
description: "
|
|
10002
|
+
description: "Time when the event occurred.",
|
|
10135
10003
|
format: "date-time",
|
|
10136
|
-
type: "string"
|
|
10137
|
-
"x-title": "Occurred At"
|
|
10004
|
+
type: "string"
|
|
10138
10005
|
},
|
|
10139
10006
|
status: {
|
|
10140
10007
|
description: "The status of the action.",
|
|
@@ -10142,10 +10009,9 @@ var openapi_default = {
|
|
|
10142
10009
|
"x-title": "Status"
|
|
10143
10010
|
},
|
|
10144
10011
|
workspace_id: {
|
|
10145
|
-
description: "
|
|
10012
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10146
10013
|
format: "uuid",
|
|
10147
|
-
type: "string"
|
|
10148
|
-
"x-title": "Workspace ID"
|
|
10014
|
+
type: "string"
|
|
10149
10015
|
}
|
|
10150
10016
|
},
|
|
10151
10017
|
required: [
|
|
@@ -10175,26 +10041,23 @@ var openapi_default = {
|
|
|
10175
10041
|
"x-title": "Action Type"
|
|
10176
10042
|
},
|
|
10177
10043
|
created_at: {
|
|
10178
|
-
description: "
|
|
10044
|
+
description: "Time at which the event was created.",
|
|
10179
10045
|
format: "date-time",
|
|
10180
|
-
type: "string"
|
|
10181
|
-
"x-title": "Created At"
|
|
10046
|
+
type: "string"
|
|
10182
10047
|
},
|
|
10183
10048
|
event_id: {
|
|
10184
|
-
description: "
|
|
10049
|
+
description: "ID of the event.",
|
|
10185
10050
|
format: "uuid",
|
|
10186
|
-
type: "string"
|
|
10187
|
-
"x-title": "Event ID"
|
|
10051
|
+
type: "string"
|
|
10188
10052
|
},
|
|
10189
10053
|
event_type: {
|
|
10190
10054
|
enum: ["action_attempt.unlock_door.succeeded"],
|
|
10191
10055
|
type: "string"
|
|
10192
10056
|
},
|
|
10193
10057
|
occurred_at: {
|
|
10194
|
-
description: "
|
|
10058
|
+
description: "Time when the event occurred.",
|
|
10195
10059
|
format: "date-time",
|
|
10196
|
-
type: "string"
|
|
10197
|
-
"x-title": "Occurred At"
|
|
10060
|
+
type: "string"
|
|
10198
10061
|
},
|
|
10199
10062
|
status: {
|
|
10200
10063
|
description: "The status of the action.",
|
|
@@ -10202,10 +10065,9 @@ var openapi_default = {
|
|
|
10202
10065
|
"x-title": "Status"
|
|
10203
10066
|
},
|
|
10204
10067
|
workspace_id: {
|
|
10205
|
-
description: "
|
|
10068
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10206
10069
|
format: "uuid",
|
|
10207
|
-
type: "string"
|
|
10208
|
-
"x-title": "Workspace ID"
|
|
10070
|
+
type: "string"
|
|
10209
10071
|
}
|
|
10210
10072
|
},
|
|
10211
10073
|
required: [
|
|
@@ -10235,26 +10097,23 @@ var openapi_default = {
|
|
|
10235
10097
|
"x-title": "Action Type"
|
|
10236
10098
|
},
|
|
10237
10099
|
created_at: {
|
|
10238
|
-
description: "
|
|
10100
|
+
description: "Time at which the event was created.",
|
|
10239
10101
|
format: "date-time",
|
|
10240
|
-
type: "string"
|
|
10241
|
-
"x-title": "Created At"
|
|
10102
|
+
type: "string"
|
|
10242
10103
|
},
|
|
10243
10104
|
event_id: {
|
|
10244
|
-
description: "
|
|
10105
|
+
description: "ID of the event.",
|
|
10245
10106
|
format: "uuid",
|
|
10246
|
-
type: "string"
|
|
10247
|
-
"x-title": "Event ID"
|
|
10107
|
+
type: "string"
|
|
10248
10108
|
},
|
|
10249
10109
|
event_type: {
|
|
10250
10110
|
enum: ["action_attempt.unlock_door.failed"],
|
|
10251
10111
|
type: "string"
|
|
10252
10112
|
},
|
|
10253
10113
|
occurred_at: {
|
|
10254
|
-
description: "
|
|
10114
|
+
description: "Time when the event occurred.",
|
|
10255
10115
|
format: "date-time",
|
|
10256
|
-
type: "string"
|
|
10257
|
-
"x-title": "Occurred At"
|
|
10116
|
+
type: "string"
|
|
10258
10117
|
},
|
|
10259
10118
|
status: {
|
|
10260
10119
|
description: "The status of the action.",
|
|
@@ -10262,10 +10121,9 @@ var openapi_default = {
|
|
|
10262
10121
|
"x-title": "Status"
|
|
10263
10122
|
},
|
|
10264
10123
|
workspace_id: {
|
|
10265
|
-
description: "
|
|
10124
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10266
10125
|
format: "uuid",
|
|
10267
|
-
type: "string"
|
|
10268
|
-
"x-title": "Workspace ID"
|
|
10126
|
+
type: "string"
|
|
10269
10127
|
}
|
|
10270
10128
|
},
|
|
10271
10129
|
required: [
|
|
@@ -10296,32 +10154,28 @@ var openapi_default = {
|
|
|
10296
10154
|
"x-title": "Connected Account ID"
|
|
10297
10155
|
},
|
|
10298
10156
|
created_at: {
|
|
10299
|
-
description: "
|
|
10157
|
+
description: "Time at which the event was created.",
|
|
10300
10158
|
format: "date-time",
|
|
10301
|
-
type: "string"
|
|
10302
|
-
"x-title": "Created At"
|
|
10159
|
+
type: "string"
|
|
10303
10160
|
},
|
|
10304
10161
|
event_id: {
|
|
10305
|
-
description: "
|
|
10162
|
+
description: "ID of the event.",
|
|
10306
10163
|
format: "uuid",
|
|
10307
|
-
type: "string"
|
|
10308
|
-
"x-title": "Event ID"
|
|
10164
|
+
type: "string"
|
|
10309
10165
|
},
|
|
10310
10166
|
event_type: {
|
|
10311
10167
|
enum: ["connect_webview.login_succeeded"],
|
|
10312
10168
|
type: "string"
|
|
10313
10169
|
},
|
|
10314
10170
|
occurred_at: {
|
|
10315
|
-
description: "
|
|
10171
|
+
description: "Time when the event occurred.",
|
|
10316
10172
|
format: "date-time",
|
|
10317
|
-
type: "string"
|
|
10318
|
-
"x-title": "Occurred At"
|
|
10173
|
+
type: "string"
|
|
10319
10174
|
},
|
|
10320
10175
|
workspace_id: {
|
|
10321
|
-
description: "
|
|
10176
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10322
10177
|
format: "uuid",
|
|
10323
|
-
type: "string"
|
|
10324
|
-
"x-title": "Workspace ID"
|
|
10178
|
+
type: "string"
|
|
10325
10179
|
}
|
|
10326
10180
|
},
|
|
10327
10181
|
required: [
|
|
@@ -10345,32 +10199,28 @@ var openapi_default = {
|
|
|
10345
10199
|
"x-title": "Connect Webview ID"
|
|
10346
10200
|
},
|
|
10347
10201
|
created_at: {
|
|
10348
|
-
description: "
|
|
10202
|
+
description: "Time at which the event was created.",
|
|
10349
10203
|
format: "date-time",
|
|
10350
|
-
type: "string"
|
|
10351
|
-
"x-title": "Created At"
|
|
10204
|
+
type: "string"
|
|
10352
10205
|
},
|
|
10353
10206
|
event_id: {
|
|
10354
|
-
description: "
|
|
10207
|
+
description: "ID of the event.",
|
|
10355
10208
|
format: "uuid",
|
|
10356
|
-
type: "string"
|
|
10357
|
-
"x-title": "Event ID"
|
|
10209
|
+
type: "string"
|
|
10358
10210
|
},
|
|
10359
10211
|
event_type: {
|
|
10360
10212
|
enum: ["connect_webview.login_failed"],
|
|
10361
10213
|
type: "string"
|
|
10362
10214
|
},
|
|
10363
10215
|
occurred_at: {
|
|
10364
|
-
description: "
|
|
10216
|
+
description: "Time when the event occurred.",
|
|
10365
10217
|
format: "date-time",
|
|
10366
|
-
type: "string"
|
|
10367
|
-
"x-title": "Occurred At"
|
|
10218
|
+
type: "string"
|
|
10368
10219
|
},
|
|
10369
10220
|
workspace_id: {
|
|
10370
|
-
description: "
|
|
10221
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10371
10222
|
format: "uuid",
|
|
10372
|
-
type: "string"
|
|
10373
|
-
"x-title": "Workspace ID"
|
|
10223
|
+
type: "string"
|
|
10374
10224
|
}
|
|
10375
10225
|
},
|
|
10376
10226
|
required: [
|
|
@@ -10387,41 +10237,35 @@ var openapi_default = {
|
|
|
10387
10237
|
description: "A new device was connected to Seam.",
|
|
10388
10238
|
properties: {
|
|
10389
10239
|
connected_account_id: {
|
|
10390
|
-
description: "ID of the connected account.",
|
|
10240
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10391
10241
|
format: "uuid",
|
|
10392
|
-
type: "string"
|
|
10393
|
-
"x-title": "Connected Account ID"
|
|
10242
|
+
type: "string"
|
|
10394
10243
|
},
|
|
10395
10244
|
created_at: {
|
|
10396
|
-
description: "
|
|
10245
|
+
description: "Time at which the event was created.",
|
|
10397
10246
|
format: "date-time",
|
|
10398
|
-
type: "string"
|
|
10399
|
-
"x-title": "Created At"
|
|
10247
|
+
type: "string"
|
|
10400
10248
|
},
|
|
10401
10249
|
device_id: {
|
|
10402
10250
|
description: "ID of the device.",
|
|
10403
10251
|
format: "uuid",
|
|
10404
|
-
type: "string"
|
|
10405
|
-
"x-title": "Device ID"
|
|
10252
|
+
type: "string"
|
|
10406
10253
|
},
|
|
10407
10254
|
event_id: {
|
|
10408
|
-
description: "
|
|
10255
|
+
description: "ID of the event.",
|
|
10409
10256
|
format: "uuid",
|
|
10410
|
-
type: "string"
|
|
10411
|
-
"x-title": "Event ID"
|
|
10257
|
+
type: "string"
|
|
10412
10258
|
},
|
|
10413
10259
|
event_type: { enum: ["device.connected"], type: "string" },
|
|
10414
10260
|
occurred_at: {
|
|
10415
|
-
description: "
|
|
10261
|
+
description: "Time when the event occurred.",
|
|
10416
10262
|
format: "date-time",
|
|
10417
|
-
type: "string"
|
|
10418
|
-
"x-title": "Occurred At"
|
|
10263
|
+
type: "string"
|
|
10419
10264
|
},
|
|
10420
10265
|
workspace_id: {
|
|
10421
|
-
description: "
|
|
10266
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10422
10267
|
format: "uuid",
|
|
10423
|
-
type: "string"
|
|
10424
|
-
"x-title": "Workspace ID"
|
|
10268
|
+
type: "string"
|
|
10425
10269
|
}
|
|
10426
10270
|
},
|
|
10427
10271
|
required: [
|
|
@@ -10436,44 +10280,38 @@ var openapi_default = {
|
|
|
10436
10280
|
type: "object"
|
|
10437
10281
|
},
|
|
10438
10282
|
{
|
|
10439
|
-
description: "A device
|
|
10283
|
+
description: "A device was added or reconnected to Seam.",
|
|
10440
10284
|
properties: {
|
|
10441
10285
|
connected_account_id: {
|
|
10442
|
-
description: "ID of the connected account.",
|
|
10286
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10443
10287
|
format: "uuid",
|
|
10444
|
-
type: "string"
|
|
10445
|
-
"x-title": "Connected Account ID"
|
|
10288
|
+
type: "string"
|
|
10446
10289
|
},
|
|
10447
10290
|
created_at: {
|
|
10448
|
-
description: "
|
|
10291
|
+
description: "Time at which the event was created.",
|
|
10449
10292
|
format: "date-time",
|
|
10450
|
-
type: "string"
|
|
10451
|
-
"x-title": "Created At"
|
|
10293
|
+
type: "string"
|
|
10452
10294
|
},
|
|
10453
10295
|
device_id: {
|
|
10454
10296
|
description: "ID of the device.",
|
|
10455
10297
|
format: "uuid",
|
|
10456
|
-
type: "string"
|
|
10457
|
-
"x-title": "Device ID"
|
|
10298
|
+
type: "string"
|
|
10458
10299
|
},
|
|
10459
10300
|
event_id: {
|
|
10460
|
-
description: "
|
|
10301
|
+
description: "ID of the event.",
|
|
10461
10302
|
format: "uuid",
|
|
10462
|
-
type: "string"
|
|
10463
|
-
"x-title": "Event ID"
|
|
10303
|
+
type: "string"
|
|
10464
10304
|
},
|
|
10465
10305
|
event_type: { enum: ["device.added"], type: "string" },
|
|
10466
10306
|
occurred_at: {
|
|
10467
|
-
description: "
|
|
10307
|
+
description: "Time when the event occurred.",
|
|
10468
10308
|
format: "date-time",
|
|
10469
|
-
type: "string"
|
|
10470
|
-
"x-title": "Occurred At"
|
|
10309
|
+
type: "string"
|
|
10471
10310
|
},
|
|
10472
10311
|
workspace_id: {
|
|
10473
|
-
description: "
|
|
10312
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10474
10313
|
format: "uuid",
|
|
10475
|
-
type: "string"
|
|
10476
|
-
"x-title": "Workspace ID"
|
|
10314
|
+
type: "string"
|
|
10477
10315
|
}
|
|
10478
10316
|
},
|
|
10479
10317
|
required: [
|
|
@@ -10488,47 +10326,41 @@ var openapi_default = {
|
|
|
10488
10326
|
type: "object"
|
|
10489
10327
|
},
|
|
10490
10328
|
{
|
|
10491
|
-
description: "An unmanaged device was successfully converted to a managed device.",
|
|
10329
|
+
description: "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was successfully converted to a managed device.",
|
|
10492
10330
|
properties: {
|
|
10493
10331
|
connected_account_id: {
|
|
10494
|
-
description: "ID of the connected account.",
|
|
10332
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10495
10333
|
format: "uuid",
|
|
10496
|
-
type: "string"
|
|
10497
|
-
"x-title": "Connected Account ID"
|
|
10334
|
+
type: "string"
|
|
10498
10335
|
},
|
|
10499
10336
|
created_at: {
|
|
10500
|
-
description: "
|
|
10337
|
+
description: "Time at which the event was created.",
|
|
10501
10338
|
format: "date-time",
|
|
10502
|
-
type: "string"
|
|
10503
|
-
"x-title": "Created At"
|
|
10339
|
+
type: "string"
|
|
10504
10340
|
},
|
|
10505
10341
|
device_id: {
|
|
10506
10342
|
description: "ID of the device.",
|
|
10507
10343
|
format: "uuid",
|
|
10508
|
-
type: "string"
|
|
10509
|
-
"x-title": "Device ID"
|
|
10344
|
+
type: "string"
|
|
10510
10345
|
},
|
|
10511
10346
|
event_id: {
|
|
10512
|
-
description: "
|
|
10347
|
+
description: "ID of the event.",
|
|
10513
10348
|
format: "uuid",
|
|
10514
|
-
type: "string"
|
|
10515
|
-
"x-title": "Event ID"
|
|
10349
|
+
type: "string"
|
|
10516
10350
|
},
|
|
10517
10351
|
event_type: {
|
|
10518
10352
|
enum: ["device.converted_to_unmanaged"],
|
|
10519
10353
|
type: "string"
|
|
10520
10354
|
},
|
|
10521
10355
|
occurred_at: {
|
|
10522
|
-
description: "
|
|
10356
|
+
description: "Time when the event occurred.",
|
|
10523
10357
|
format: "date-time",
|
|
10524
|
-
type: "string"
|
|
10525
|
-
"x-title": "Occurred At"
|
|
10358
|
+
type: "string"
|
|
10526
10359
|
},
|
|
10527
10360
|
workspace_id: {
|
|
10528
|
-
description: "
|
|
10361
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10529
10362
|
format: "uuid",
|
|
10530
|
-
type: "string"
|
|
10531
|
-
"x-title": "Workspace ID"
|
|
10363
|
+
type: "string"
|
|
10532
10364
|
}
|
|
10533
10365
|
},
|
|
10534
10366
|
required: [
|
|
@@ -10543,47 +10375,41 @@ var openapi_default = {
|
|
|
10543
10375
|
type: "object"
|
|
10544
10376
|
},
|
|
10545
10377
|
{
|
|
10546
|
-
description: "A managed device was successfully converted to an unmanaged device.",
|
|
10378
|
+
description: "A managed device was successfully converted to an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices).",
|
|
10547
10379
|
properties: {
|
|
10548
10380
|
connected_account_id: {
|
|
10549
|
-
description: "ID of the connected account.",
|
|
10381
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10550
10382
|
format: "uuid",
|
|
10551
|
-
type: "string"
|
|
10552
|
-
"x-title": "Connected Account ID"
|
|
10383
|
+
type: "string"
|
|
10553
10384
|
},
|
|
10554
10385
|
created_at: {
|
|
10555
|
-
description: "
|
|
10386
|
+
description: "Time at which the event was created.",
|
|
10556
10387
|
format: "date-time",
|
|
10557
|
-
type: "string"
|
|
10558
|
-
"x-title": "Created At"
|
|
10388
|
+
type: "string"
|
|
10559
10389
|
},
|
|
10560
10390
|
device_id: {
|
|
10561
10391
|
description: "ID of the device.",
|
|
10562
10392
|
format: "uuid",
|
|
10563
|
-
type: "string"
|
|
10564
|
-
"x-title": "Device ID"
|
|
10393
|
+
type: "string"
|
|
10565
10394
|
},
|
|
10566
10395
|
event_id: {
|
|
10567
|
-
description: "
|
|
10396
|
+
description: "ID of the event.",
|
|
10568
10397
|
format: "uuid",
|
|
10569
|
-
type: "string"
|
|
10570
|
-
"x-title": "Event ID"
|
|
10398
|
+
type: "string"
|
|
10571
10399
|
},
|
|
10572
10400
|
event_type: {
|
|
10573
10401
|
enum: ["device.unmanaged.converted_to_managed"],
|
|
10574
10402
|
type: "string"
|
|
10575
10403
|
},
|
|
10576
10404
|
occurred_at: {
|
|
10577
|
-
description: "
|
|
10405
|
+
description: "Time when the event occurred.",
|
|
10578
10406
|
format: "date-time",
|
|
10579
|
-
type: "string"
|
|
10580
|
-
"x-title": "Occurred At"
|
|
10407
|
+
type: "string"
|
|
10581
10408
|
},
|
|
10582
10409
|
workspace_id: {
|
|
10583
|
-
description: "
|
|
10410
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10584
10411
|
format: "uuid",
|
|
10585
|
-
type: "string"
|
|
10586
|
-
"x-title": "Workspace ID"
|
|
10412
|
+
type: "string"
|
|
10587
10413
|
}
|
|
10588
10414
|
},
|
|
10589
10415
|
required: [
|
|
@@ -10598,47 +10424,41 @@ var openapi_default = {
|
|
|
10598
10424
|
type: "object"
|
|
10599
10425
|
},
|
|
10600
10426
|
{
|
|
10601
|
-
description: "An unmanaged device was connected to Seam",
|
|
10427
|
+
description: "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was connected to Seam.",
|
|
10602
10428
|
properties: {
|
|
10603
10429
|
connected_account_id: {
|
|
10604
|
-
description: "ID of the connected account.",
|
|
10430
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10605
10431
|
format: "uuid",
|
|
10606
|
-
type: "string"
|
|
10607
|
-
"x-title": "Connected Account ID"
|
|
10432
|
+
type: "string"
|
|
10608
10433
|
},
|
|
10609
10434
|
created_at: {
|
|
10610
|
-
description: "
|
|
10435
|
+
description: "Time at which the event was created.",
|
|
10611
10436
|
format: "date-time",
|
|
10612
|
-
type: "string"
|
|
10613
|
-
"x-title": "Created At"
|
|
10437
|
+
type: "string"
|
|
10614
10438
|
},
|
|
10615
10439
|
device_id: {
|
|
10616
10440
|
description: "ID of the device.",
|
|
10617
10441
|
format: "uuid",
|
|
10618
|
-
type: "string"
|
|
10619
|
-
"x-title": "Device ID"
|
|
10442
|
+
type: "string"
|
|
10620
10443
|
},
|
|
10621
10444
|
event_id: {
|
|
10622
|
-
description: "
|
|
10445
|
+
description: "ID of the event.",
|
|
10623
10446
|
format: "uuid",
|
|
10624
|
-
type: "string"
|
|
10625
|
-
"x-title": "Event ID"
|
|
10447
|
+
type: "string"
|
|
10626
10448
|
},
|
|
10627
10449
|
event_type: {
|
|
10628
10450
|
enum: ["device.unmanaged.connected"],
|
|
10629
10451
|
type: "string"
|
|
10630
10452
|
},
|
|
10631
10453
|
occurred_at: {
|
|
10632
|
-
description: "
|
|
10454
|
+
description: "Time when the event occurred.",
|
|
10633
10455
|
format: "date-time",
|
|
10634
|
-
type: "string"
|
|
10635
|
-
"x-title": "Occurred At"
|
|
10456
|
+
type: "string"
|
|
10636
10457
|
},
|
|
10637
10458
|
workspace_id: {
|
|
10638
|
-
description: "
|
|
10459
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10639
10460
|
format: "uuid",
|
|
10640
|
-
type: "string"
|
|
10641
|
-
"x-title": "Workspace ID"
|
|
10461
|
+
type: "string"
|
|
10642
10462
|
}
|
|
10643
10463
|
},
|
|
10644
10464
|
required: [
|
|
@@ -10653,54 +10473,47 @@ var openapi_default = {
|
|
|
10653
10473
|
type: "object"
|
|
10654
10474
|
},
|
|
10655
10475
|
{
|
|
10656
|
-
description: "A device was disconnected",
|
|
10476
|
+
description: "A device was disconnected from Seam.",
|
|
10657
10477
|
properties: {
|
|
10658
10478
|
connected_account_id: {
|
|
10659
|
-
description: "ID of the connected account.",
|
|
10479
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10660
10480
|
format: "uuid",
|
|
10661
|
-
type: "string"
|
|
10662
|
-
"x-title": "Connected Account ID"
|
|
10481
|
+
type: "string"
|
|
10663
10482
|
},
|
|
10664
10483
|
created_at: {
|
|
10665
|
-
description: "
|
|
10484
|
+
description: "Time at which the event was created.",
|
|
10666
10485
|
format: "date-time",
|
|
10667
|
-
type: "string"
|
|
10668
|
-
"x-title": "Created At"
|
|
10486
|
+
type: "string"
|
|
10669
10487
|
},
|
|
10670
10488
|
device_id: {
|
|
10671
10489
|
description: "ID of the device.",
|
|
10672
10490
|
format: "uuid",
|
|
10673
|
-
type: "string"
|
|
10674
|
-
"x-title": "Device ID"
|
|
10491
|
+
type: "string"
|
|
10675
10492
|
},
|
|
10676
10493
|
error_code: {
|
|
10677
|
-
description: "
|
|
10494
|
+
description: "Error code associated with the disconnection event, if any.",
|
|
10678
10495
|
enum: [
|
|
10679
10496
|
"account_disconnected",
|
|
10680
10497
|
"hub_disconnected",
|
|
10681
10498
|
"device_disconnected"
|
|
10682
10499
|
],
|
|
10683
|
-
type: "string"
|
|
10684
|
-
"x-title": "Event Error Code"
|
|
10500
|
+
type: "string"
|
|
10685
10501
|
},
|
|
10686
10502
|
event_id: {
|
|
10687
|
-
description: "
|
|
10503
|
+
description: "ID of the event.",
|
|
10688
10504
|
format: "uuid",
|
|
10689
|
-
type: "string"
|
|
10690
|
-
"x-title": "Event ID"
|
|
10505
|
+
type: "string"
|
|
10691
10506
|
},
|
|
10692
10507
|
event_type: { enum: ["device.disconnected"], type: "string" },
|
|
10693
10508
|
occurred_at: {
|
|
10694
|
-
description: "
|
|
10509
|
+
description: "Time when the event occurred.",
|
|
10695
10510
|
format: "date-time",
|
|
10696
|
-
type: "string"
|
|
10697
|
-
"x-title": "Occurred At"
|
|
10511
|
+
type: "string"
|
|
10698
10512
|
},
|
|
10699
10513
|
workspace_id: {
|
|
10700
|
-
description: "
|
|
10514
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10701
10515
|
format: "uuid",
|
|
10702
|
-
type: "string"
|
|
10703
|
-
"x-title": "Workspace ID"
|
|
10516
|
+
type: "string"
|
|
10704
10517
|
}
|
|
10705
10518
|
},
|
|
10706
10519
|
required: [
|
|
@@ -10716,57 +10529,50 @@ var openapi_default = {
|
|
|
10716
10529
|
type: "object"
|
|
10717
10530
|
},
|
|
10718
10531
|
{
|
|
10719
|
-
description: "An unmanaged device was disconnected",
|
|
10532
|
+
description: "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was disconnected from Seam.",
|
|
10720
10533
|
properties: {
|
|
10721
10534
|
connected_account_id: {
|
|
10722
|
-
description: "ID of the connected account.",
|
|
10535
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10723
10536
|
format: "uuid",
|
|
10724
|
-
type: "string"
|
|
10725
|
-
"x-title": "Connected Account ID"
|
|
10537
|
+
type: "string"
|
|
10726
10538
|
},
|
|
10727
10539
|
created_at: {
|
|
10728
|
-
description: "
|
|
10540
|
+
description: "Time at which the event was created.",
|
|
10729
10541
|
format: "date-time",
|
|
10730
|
-
type: "string"
|
|
10731
|
-
"x-title": "Created At"
|
|
10542
|
+
type: "string"
|
|
10732
10543
|
},
|
|
10733
10544
|
device_id: {
|
|
10734
10545
|
description: "ID of the device.",
|
|
10735
10546
|
format: "uuid",
|
|
10736
|
-
type: "string"
|
|
10737
|
-
"x-title": "Device ID"
|
|
10547
|
+
type: "string"
|
|
10738
10548
|
},
|
|
10739
10549
|
error_code: {
|
|
10740
|
-
description: "
|
|
10550
|
+
description: "Error code associated with the disconnection event, if any.",
|
|
10741
10551
|
enum: [
|
|
10742
10552
|
"account_disconnected",
|
|
10743
10553
|
"hub_disconnected",
|
|
10744
10554
|
"device_disconnected"
|
|
10745
10555
|
],
|
|
10746
|
-
type: "string"
|
|
10747
|
-
"x-title": "Event Error Code"
|
|
10556
|
+
type: "string"
|
|
10748
10557
|
},
|
|
10749
10558
|
event_id: {
|
|
10750
|
-
description: "
|
|
10559
|
+
description: "ID of the event.",
|
|
10751
10560
|
format: "uuid",
|
|
10752
|
-
type: "string"
|
|
10753
|
-
"x-title": "Event ID"
|
|
10561
|
+
type: "string"
|
|
10754
10562
|
},
|
|
10755
10563
|
event_type: {
|
|
10756
10564
|
enum: ["device.unmanaged.disconnected"],
|
|
10757
10565
|
type: "string"
|
|
10758
10566
|
},
|
|
10759
10567
|
occurred_at: {
|
|
10760
|
-
description: "
|
|
10568
|
+
description: "Time when the event occurred.",
|
|
10761
10569
|
format: "date-time",
|
|
10762
|
-
type: "string"
|
|
10763
|
-
"x-title": "Occurred At"
|
|
10570
|
+
type: "string"
|
|
10764
10571
|
},
|
|
10765
10572
|
workspace_id: {
|
|
10766
|
-
description: "
|
|
10573
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10767
10574
|
format: "uuid",
|
|
10768
|
-
type: "string"
|
|
10769
|
-
"x-title": "Workspace ID"
|
|
10575
|
+
type: "string"
|
|
10770
10576
|
}
|
|
10771
10577
|
},
|
|
10772
10578
|
required: [
|
|
@@ -10782,44 +10588,38 @@ var openapi_default = {
|
|
|
10782
10588
|
type: "object"
|
|
10783
10589
|
},
|
|
10784
10590
|
{
|
|
10785
|
-
description: "A device detected that it was tampered with,
|
|
10591
|
+
description: "A device detected that it was tampered with, for example, opened or moved.",
|
|
10786
10592
|
properties: {
|
|
10787
10593
|
connected_account_id: {
|
|
10788
|
-
description: "ID of the connected account.",
|
|
10594
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10789
10595
|
format: "uuid",
|
|
10790
|
-
type: "string"
|
|
10791
|
-
"x-title": "Connected Account ID"
|
|
10596
|
+
type: "string"
|
|
10792
10597
|
},
|
|
10793
10598
|
created_at: {
|
|
10794
|
-
description: "
|
|
10599
|
+
description: "Time at which the event was created.",
|
|
10795
10600
|
format: "date-time",
|
|
10796
|
-
type: "string"
|
|
10797
|
-
"x-title": "Created At"
|
|
10601
|
+
type: "string"
|
|
10798
10602
|
},
|
|
10799
10603
|
device_id: {
|
|
10800
10604
|
description: "ID of the device.",
|
|
10801
10605
|
format: "uuid",
|
|
10802
|
-
type: "string"
|
|
10803
|
-
"x-title": "Device ID"
|
|
10606
|
+
type: "string"
|
|
10804
10607
|
},
|
|
10805
10608
|
event_id: {
|
|
10806
|
-
description: "
|
|
10609
|
+
description: "ID of the event.",
|
|
10807
10610
|
format: "uuid",
|
|
10808
|
-
type: "string"
|
|
10809
|
-
"x-title": "Event ID"
|
|
10611
|
+
type: "string"
|
|
10810
10612
|
},
|
|
10811
10613
|
event_type: { enum: ["device.tampered"], type: "string" },
|
|
10812
10614
|
occurred_at: {
|
|
10813
|
-
description: "
|
|
10615
|
+
description: "Time when the event occurred.",
|
|
10814
10616
|
format: "date-time",
|
|
10815
|
-
type: "string"
|
|
10816
|
-
"x-title": "Occurred At"
|
|
10617
|
+
type: "string"
|
|
10817
10618
|
},
|
|
10818
10619
|
workspace_id: {
|
|
10819
|
-
description: "
|
|
10620
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10820
10621
|
format: "uuid",
|
|
10821
|
-
type: "string"
|
|
10822
|
-
"x-title": "Workspace ID"
|
|
10622
|
+
type: "string"
|
|
10823
10623
|
}
|
|
10824
10624
|
},
|
|
10825
10625
|
required: [
|
|
@@ -10837,49 +10637,42 @@ var openapi_default = {
|
|
|
10837
10637
|
description: "A device battery level dropped below the low threshold.",
|
|
10838
10638
|
properties: {
|
|
10839
10639
|
battery_level: {
|
|
10840
|
-
description: "
|
|
10640
|
+
description: "Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device.",
|
|
10841
10641
|
format: "float",
|
|
10842
10642
|
maximum: 1,
|
|
10843
10643
|
minimum: 0,
|
|
10844
|
-
type: "number"
|
|
10845
|
-
"x-title": "Battery Level"
|
|
10644
|
+
type: "number"
|
|
10846
10645
|
},
|
|
10847
10646
|
connected_account_id: {
|
|
10848
|
-
description: "ID of the connected account.",
|
|
10647
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10849
10648
|
format: "uuid",
|
|
10850
|
-
type: "string"
|
|
10851
|
-
"x-title": "Connected Account ID"
|
|
10649
|
+
type: "string"
|
|
10852
10650
|
},
|
|
10853
10651
|
created_at: {
|
|
10854
|
-
description: "
|
|
10652
|
+
description: "Time at which the event was created.",
|
|
10855
10653
|
format: "date-time",
|
|
10856
|
-
type: "string"
|
|
10857
|
-
"x-title": "Created At"
|
|
10654
|
+
type: "string"
|
|
10858
10655
|
},
|
|
10859
10656
|
device_id: {
|
|
10860
10657
|
description: "ID of the device.",
|
|
10861
10658
|
format: "uuid",
|
|
10862
|
-
type: "string"
|
|
10863
|
-
"x-title": "Device ID"
|
|
10659
|
+
type: "string"
|
|
10864
10660
|
},
|
|
10865
10661
|
event_id: {
|
|
10866
|
-
description: "
|
|
10662
|
+
description: "ID of the event.",
|
|
10867
10663
|
format: "uuid",
|
|
10868
|
-
type: "string"
|
|
10869
|
-
"x-title": "Event ID"
|
|
10664
|
+
type: "string"
|
|
10870
10665
|
},
|
|
10871
10666
|
event_type: { enum: ["device.low_battery"], type: "string" },
|
|
10872
10667
|
occurred_at: {
|
|
10873
|
-
description: "
|
|
10668
|
+
description: "Time when the event occurred.",
|
|
10874
10669
|
format: "date-time",
|
|
10875
|
-
type: "string"
|
|
10876
|
-
"x-title": "Occurred At"
|
|
10670
|
+
type: "string"
|
|
10877
10671
|
},
|
|
10878
10672
|
workspace_id: {
|
|
10879
|
-
description: "
|
|
10673
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10880
10674
|
format: "uuid",
|
|
10881
|
-
type: "string"
|
|
10882
|
-
"x-title": "Workspace ID"
|
|
10675
|
+
type: "string"
|
|
10883
10676
|
}
|
|
10884
10677
|
},
|
|
10885
10678
|
required: [
|
|
@@ -10895,61 +10688,53 @@ var openapi_default = {
|
|
|
10895
10688
|
type: "object"
|
|
10896
10689
|
},
|
|
10897
10690
|
{
|
|
10898
|
-
description: "A device battery status changed since the last
|
|
10691
|
+
description: "A device battery status changed since the last `battery_status_changed` event.",
|
|
10899
10692
|
properties: {
|
|
10900
10693
|
battery_level: {
|
|
10901
|
-
description: "
|
|
10694
|
+
description: "Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device.",
|
|
10902
10695
|
format: "float",
|
|
10903
10696
|
maximum: 1,
|
|
10904
10697
|
minimum: 0,
|
|
10905
|
-
type: "number"
|
|
10906
|
-
"x-title": "Battery Level"
|
|
10698
|
+
type: "number"
|
|
10907
10699
|
},
|
|
10908
10700
|
battery_status: {
|
|
10909
|
-
description: "
|
|
10701
|
+
description: "Battery status of the device, calculated from the numeric `battery_level` value.",
|
|
10910
10702
|
enum: ["critical", "low", "good", "full"],
|
|
10911
|
-
type: "string"
|
|
10912
|
-
"x-title": "Battery Status"
|
|
10703
|
+
type: "string"
|
|
10913
10704
|
},
|
|
10914
10705
|
connected_account_id: {
|
|
10915
|
-
description: "ID of the connected account.",
|
|
10706
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10916
10707
|
format: "uuid",
|
|
10917
|
-
type: "string"
|
|
10918
|
-
"x-title": "Connected Account ID"
|
|
10708
|
+
type: "string"
|
|
10919
10709
|
},
|
|
10920
10710
|
created_at: {
|
|
10921
|
-
description: "
|
|
10711
|
+
description: "Time at which the event was created.",
|
|
10922
10712
|
format: "date-time",
|
|
10923
|
-
type: "string"
|
|
10924
|
-
"x-title": "Created At"
|
|
10713
|
+
type: "string"
|
|
10925
10714
|
},
|
|
10926
10715
|
device_id: {
|
|
10927
10716
|
description: "ID of the device.",
|
|
10928
10717
|
format: "uuid",
|
|
10929
|
-
type: "string"
|
|
10930
|
-
"x-title": "Device ID"
|
|
10718
|
+
type: "string"
|
|
10931
10719
|
},
|
|
10932
10720
|
event_id: {
|
|
10933
|
-
description: "
|
|
10721
|
+
description: "ID of the event.",
|
|
10934
10722
|
format: "uuid",
|
|
10935
|
-
type: "string"
|
|
10936
|
-
"x-title": "Event ID"
|
|
10723
|
+
type: "string"
|
|
10937
10724
|
},
|
|
10938
10725
|
event_type: {
|
|
10939
10726
|
enum: ["device.battery_status_changed"],
|
|
10940
10727
|
type: "string"
|
|
10941
10728
|
},
|
|
10942
10729
|
occurred_at: {
|
|
10943
|
-
description: "
|
|
10730
|
+
description: "Time when the event occurred.",
|
|
10944
10731
|
format: "date-time",
|
|
10945
|
-
type: "string"
|
|
10946
|
-
"x-title": "Occurred At"
|
|
10732
|
+
type: "string"
|
|
10947
10733
|
},
|
|
10948
10734
|
workspace_id: {
|
|
10949
|
-
description: "
|
|
10735
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
10950
10736
|
format: "uuid",
|
|
10951
|
-
type: "string"
|
|
10952
|
-
"x-title": "Workspace ID"
|
|
10737
|
+
type: "string"
|
|
10953
10738
|
}
|
|
10954
10739
|
},
|
|
10955
10740
|
required: [
|
|
@@ -10966,44 +10751,38 @@ var openapi_default = {
|
|
|
10966
10751
|
type: "object"
|
|
10967
10752
|
},
|
|
10968
10753
|
{
|
|
10969
|
-
description: "A device was removed externally from the connected account.",
|
|
10754
|
+
description: "A device was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10970
10755
|
properties: {
|
|
10971
10756
|
connected_account_id: {
|
|
10972
|
-
description: "ID of the connected account.",
|
|
10757
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
10973
10758
|
format: "uuid",
|
|
10974
|
-
type: "string"
|
|
10975
|
-
"x-title": "Connected Account ID"
|
|
10759
|
+
type: "string"
|
|
10976
10760
|
},
|
|
10977
10761
|
created_at: {
|
|
10978
|
-
description: "
|
|
10762
|
+
description: "Time at which the event was created.",
|
|
10979
10763
|
format: "date-time",
|
|
10980
|
-
type: "string"
|
|
10981
|
-
"x-title": "Created At"
|
|
10764
|
+
type: "string"
|
|
10982
10765
|
},
|
|
10983
10766
|
device_id: {
|
|
10984
10767
|
description: "ID of the device.",
|
|
10985
10768
|
format: "uuid",
|
|
10986
|
-
type: "string"
|
|
10987
|
-
"x-title": "Device ID"
|
|
10769
|
+
type: "string"
|
|
10988
10770
|
},
|
|
10989
10771
|
event_id: {
|
|
10990
|
-
description: "
|
|
10772
|
+
description: "ID of the event.",
|
|
10991
10773
|
format: "uuid",
|
|
10992
|
-
type: "string"
|
|
10993
|
-
"x-title": "Event ID"
|
|
10774
|
+
type: "string"
|
|
10994
10775
|
},
|
|
10995
10776
|
event_type: { enum: ["device.removed"], type: "string" },
|
|
10996
10777
|
occurred_at: {
|
|
10997
|
-
description: "
|
|
10778
|
+
description: "Time when the event occurred.",
|
|
10998
10779
|
format: "date-time",
|
|
10999
|
-
type: "string"
|
|
11000
|
-
"x-title": "Occurred At"
|
|
10780
|
+
type: "string"
|
|
11001
10781
|
},
|
|
11002
10782
|
workspace_id: {
|
|
11003
|
-
description: "
|
|
10783
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11004
10784
|
format: "uuid",
|
|
11005
|
-
type: "string"
|
|
11006
|
-
"x-title": "Workspace ID"
|
|
10785
|
+
type: "string"
|
|
11007
10786
|
}
|
|
11008
10787
|
},
|
|
11009
10788
|
required: [
|
|
@@ -11018,44 +10797,38 @@ var openapi_default = {
|
|
|
11018
10797
|
type: "object"
|
|
11019
10798
|
},
|
|
11020
10799
|
{
|
|
11021
|
-
description: "A device was deleted.",
|
|
10800
|
+
description: "A device was [deleted](https://docs.seam.co/latest/api/devices/delete).",
|
|
11022
10801
|
properties: {
|
|
11023
10802
|
connected_account_id: {
|
|
11024
|
-
description: "ID of the connected account.",
|
|
10803
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11025
10804
|
format: "uuid",
|
|
11026
|
-
type: "string"
|
|
11027
|
-
"x-title": "Connected Account ID"
|
|
10805
|
+
type: "string"
|
|
11028
10806
|
},
|
|
11029
10807
|
created_at: {
|
|
11030
|
-
description: "
|
|
10808
|
+
description: "Time at which the event was created.",
|
|
11031
10809
|
format: "date-time",
|
|
11032
|
-
type: "string"
|
|
11033
|
-
"x-title": "Created At"
|
|
10810
|
+
type: "string"
|
|
11034
10811
|
},
|
|
11035
10812
|
device_id: {
|
|
11036
10813
|
description: "ID of the device.",
|
|
11037
10814
|
format: "uuid",
|
|
11038
|
-
type: "string"
|
|
11039
|
-
"x-title": "Device ID"
|
|
10815
|
+
type: "string"
|
|
11040
10816
|
},
|
|
11041
10817
|
event_id: {
|
|
11042
|
-
description: "
|
|
10818
|
+
description: "ID of the event.",
|
|
11043
10819
|
format: "uuid",
|
|
11044
|
-
type: "string"
|
|
11045
|
-
"x-title": "Event ID"
|
|
10820
|
+
type: "string"
|
|
11046
10821
|
},
|
|
11047
10822
|
event_type: { enum: ["device.deleted"], type: "string" },
|
|
11048
10823
|
occurred_at: {
|
|
11049
|
-
description: "
|
|
10824
|
+
description: "Time when the event occurred.",
|
|
11050
10825
|
format: "date-time",
|
|
11051
|
-
type: "string"
|
|
11052
|
-
"x-title": "Occurred At"
|
|
10826
|
+
type: "string"
|
|
11053
10827
|
},
|
|
11054
10828
|
workspace_id: {
|
|
11055
|
-
description: "
|
|
10829
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11056
10830
|
format: "uuid",
|
|
11057
|
-
type: "string"
|
|
11058
|
-
"x-title": "Workspace ID"
|
|
10831
|
+
type: "string"
|
|
11059
10832
|
}
|
|
11060
10833
|
},
|
|
11061
10834
|
required: [
|
|
@@ -11070,47 +10843,41 @@ var openapi_default = {
|
|
|
11070
10843
|
type: "object"
|
|
11071
10844
|
},
|
|
11072
10845
|
{
|
|
11073
|
-
description: "Seam detected a device is using a third
|
|
10846
|
+
description: "Seam detected that a device is using a third-party integration that will interfere with Seam device management.",
|
|
11074
10847
|
properties: {
|
|
11075
10848
|
connected_account_id: {
|
|
11076
|
-
description: "ID of the connected account.",
|
|
10849
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11077
10850
|
format: "uuid",
|
|
11078
|
-
type: "string"
|
|
11079
|
-
"x-title": "Connected Account ID"
|
|
10851
|
+
type: "string"
|
|
11080
10852
|
},
|
|
11081
10853
|
created_at: {
|
|
11082
|
-
description: "
|
|
10854
|
+
description: "Time at which the event was created.",
|
|
11083
10855
|
format: "date-time",
|
|
11084
|
-
type: "string"
|
|
11085
|
-
"x-title": "Created At"
|
|
10856
|
+
type: "string"
|
|
11086
10857
|
},
|
|
11087
10858
|
device_id: {
|
|
11088
10859
|
description: "ID of the device.",
|
|
11089
10860
|
format: "uuid",
|
|
11090
|
-
type: "string"
|
|
11091
|
-
"x-title": "Device ID"
|
|
10861
|
+
type: "string"
|
|
11092
10862
|
},
|
|
11093
10863
|
event_id: {
|
|
11094
|
-
description: "
|
|
10864
|
+
description: "ID of the event.",
|
|
11095
10865
|
format: "uuid",
|
|
11096
|
-
type: "string"
|
|
11097
|
-
"x-title": "Event ID"
|
|
10866
|
+
type: "string"
|
|
11098
10867
|
},
|
|
11099
10868
|
event_type: {
|
|
11100
10869
|
enum: ["device.third_party_integration_detected"],
|
|
11101
10870
|
type: "string"
|
|
11102
10871
|
},
|
|
11103
10872
|
occurred_at: {
|
|
11104
|
-
description: "
|
|
10873
|
+
description: "Time when the event occurred.",
|
|
11105
10874
|
format: "date-time",
|
|
11106
|
-
type: "string"
|
|
11107
|
-
"x-title": "Occurred At"
|
|
10875
|
+
type: "string"
|
|
11108
10876
|
},
|
|
11109
10877
|
workspace_id: {
|
|
11110
|
-
description: "
|
|
10878
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11111
10879
|
format: "uuid",
|
|
11112
|
-
type: "string"
|
|
11113
|
-
"x-title": "Workspace ID"
|
|
10880
|
+
type: "string"
|
|
11114
10881
|
}
|
|
11115
10882
|
},
|
|
11116
10883
|
required: [
|
|
@@ -11125,47 +10892,41 @@ var openapi_default = {
|
|
|
11125
10892
|
type: "object"
|
|
11126
10893
|
},
|
|
11127
10894
|
{
|
|
11128
|
-
description: "Seam detected a device is no longer using a third
|
|
10895
|
+
description: "Seam detected that a device is no longer using a third-party integration that was interfering with Seam device management.",
|
|
11129
10896
|
properties: {
|
|
11130
10897
|
connected_account_id: {
|
|
11131
|
-
description: "ID of the connected account.",
|
|
10898
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11132
10899
|
format: "uuid",
|
|
11133
|
-
type: "string"
|
|
11134
|
-
"x-title": "Connected Account ID"
|
|
10900
|
+
type: "string"
|
|
11135
10901
|
},
|
|
11136
10902
|
created_at: {
|
|
11137
|
-
description: "
|
|
10903
|
+
description: "Time at which the event was created.",
|
|
11138
10904
|
format: "date-time",
|
|
11139
|
-
type: "string"
|
|
11140
|
-
"x-title": "Created At"
|
|
10905
|
+
type: "string"
|
|
11141
10906
|
},
|
|
11142
10907
|
device_id: {
|
|
11143
10908
|
description: "ID of the device.",
|
|
11144
10909
|
format: "uuid",
|
|
11145
|
-
type: "string"
|
|
11146
|
-
"x-title": "Device ID"
|
|
10910
|
+
type: "string"
|
|
11147
10911
|
},
|
|
11148
10912
|
event_id: {
|
|
11149
|
-
description: "
|
|
10913
|
+
description: "ID of the event.",
|
|
11150
10914
|
format: "uuid",
|
|
11151
|
-
type: "string"
|
|
11152
|
-
"x-title": "Event ID"
|
|
10915
|
+
type: "string"
|
|
11153
10916
|
},
|
|
11154
10917
|
event_type: {
|
|
11155
10918
|
enum: ["device.third_party_integration_no_longer_detected"],
|
|
11156
10919
|
type: "string"
|
|
11157
10920
|
},
|
|
11158
10921
|
occurred_at: {
|
|
11159
|
-
description: "
|
|
10922
|
+
description: "Time when the event occurred.",
|
|
11160
10923
|
format: "date-time",
|
|
11161
|
-
type: "string"
|
|
11162
|
-
"x-title": "Occurred At"
|
|
10924
|
+
type: "string"
|
|
11163
10925
|
},
|
|
11164
10926
|
workspace_id: {
|
|
11165
|
-
description: "
|
|
10927
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11166
10928
|
format: "uuid",
|
|
11167
|
-
type: "string"
|
|
11168
|
-
"x-title": "Workspace ID"
|
|
10929
|
+
type: "string"
|
|
11169
10930
|
}
|
|
11170
10931
|
},
|
|
11171
10932
|
required: [
|
|
@@ -11183,44 +10944,38 @@ var openapi_default = {
|
|
|
11183
10944
|
description: "A Salto device activated privacy mode.",
|
|
11184
10945
|
properties: {
|
|
11185
10946
|
connected_account_id: {
|
|
11186
|
-
description: "ID of the connected account.",
|
|
10947
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11187
10948
|
format: "uuid",
|
|
11188
|
-
type: "string"
|
|
11189
|
-
"x-title": "Connected Account ID"
|
|
10949
|
+
type: "string"
|
|
11190
10950
|
},
|
|
11191
10951
|
created_at: {
|
|
11192
|
-
description: "
|
|
10952
|
+
description: "Time at which the event was created.",
|
|
11193
10953
|
format: "date-time",
|
|
11194
|
-
type: "string"
|
|
11195
|
-
"x-title": "Created At"
|
|
10954
|
+
type: "string"
|
|
11196
10955
|
},
|
|
11197
10956
|
device_id: {
|
|
11198
10957
|
description: "ID of the device.",
|
|
11199
10958
|
format: "uuid",
|
|
11200
|
-
type: "string"
|
|
11201
|
-
"x-title": "Device ID"
|
|
10959
|
+
type: "string"
|
|
11202
10960
|
},
|
|
11203
10961
|
event_id: {
|
|
11204
|
-
description: "
|
|
10962
|
+
description: "ID of the event.",
|
|
11205
10963
|
format: "uuid",
|
|
11206
|
-
type: "string"
|
|
11207
|
-
"x-title": "Event ID"
|
|
10964
|
+
type: "string"
|
|
11208
10965
|
},
|
|
11209
10966
|
event_type: {
|
|
11210
10967
|
enum: ["device.salto.privacy_mode_activated"],
|
|
11211
10968
|
type: "string"
|
|
11212
10969
|
},
|
|
11213
10970
|
occurred_at: {
|
|
11214
|
-
description: "
|
|
10971
|
+
description: "Time when the event occurred.",
|
|
11215
10972
|
format: "date-time",
|
|
11216
|
-
type: "string"
|
|
11217
|
-
"x-title": "Occurred At"
|
|
10973
|
+
type: "string"
|
|
11218
10974
|
},
|
|
11219
10975
|
workspace_id: {
|
|
11220
|
-
description: "
|
|
10976
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11221
10977
|
format: "uuid",
|
|
11222
|
-
type: "string"
|
|
11223
|
-
"x-title": "Workspace ID"
|
|
10978
|
+
type: "string"
|
|
11224
10979
|
}
|
|
11225
10980
|
},
|
|
11226
10981
|
required: [
|
|
@@ -11238,44 +10993,38 @@ var openapi_default = {
|
|
|
11238
10993
|
description: "A Salto device deactivated privacy mode.",
|
|
11239
10994
|
properties: {
|
|
11240
10995
|
connected_account_id: {
|
|
11241
|
-
description: "ID of the connected account.",
|
|
10996
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11242
10997
|
format: "uuid",
|
|
11243
|
-
type: "string"
|
|
11244
|
-
"x-title": "Connected Account ID"
|
|
10998
|
+
type: "string"
|
|
11245
10999
|
},
|
|
11246
11000
|
created_at: {
|
|
11247
|
-
description: "
|
|
11001
|
+
description: "Time at which the event was created.",
|
|
11248
11002
|
format: "date-time",
|
|
11249
|
-
type: "string"
|
|
11250
|
-
"x-title": "Created At"
|
|
11003
|
+
type: "string"
|
|
11251
11004
|
},
|
|
11252
11005
|
device_id: {
|
|
11253
11006
|
description: "ID of the device.",
|
|
11254
11007
|
format: "uuid",
|
|
11255
|
-
type: "string"
|
|
11256
|
-
"x-title": "Device ID"
|
|
11008
|
+
type: "string"
|
|
11257
11009
|
},
|
|
11258
11010
|
event_id: {
|
|
11259
|
-
description: "
|
|
11011
|
+
description: "ID of the event.",
|
|
11260
11012
|
format: "uuid",
|
|
11261
|
-
type: "string"
|
|
11262
|
-
"x-title": "Event ID"
|
|
11013
|
+
type: "string"
|
|
11263
11014
|
},
|
|
11264
11015
|
event_type: {
|
|
11265
11016
|
enum: ["device.salto.privacy_mode_deactivated"],
|
|
11266
11017
|
type: "string"
|
|
11267
11018
|
},
|
|
11268
11019
|
occurred_at: {
|
|
11269
|
-
description: "
|
|
11020
|
+
description: "Time when the event occurred.",
|
|
11270
11021
|
format: "date-time",
|
|
11271
|
-
type: "string"
|
|
11272
|
-
"x-title": "Occurred At"
|
|
11022
|
+
type: "string"
|
|
11273
11023
|
},
|
|
11274
11024
|
workspace_id: {
|
|
11275
|
-
description: "
|
|
11025
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11276
11026
|
format: "uuid",
|
|
11277
|
-
type: "string"
|
|
11278
|
-
"x-title": "Workspace ID"
|
|
11027
|
+
type: "string"
|
|
11279
11028
|
}
|
|
11280
11029
|
},
|
|
11281
11030
|
required: [
|
|
@@ -11293,44 +11042,38 @@ var openapi_default = {
|
|
|
11293
11042
|
description: "Seam detected a flaky device connection.",
|
|
11294
11043
|
properties: {
|
|
11295
11044
|
connected_account_id: {
|
|
11296
|
-
description: "ID of the connected account.",
|
|
11045
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11297
11046
|
format: "uuid",
|
|
11298
|
-
type: "string"
|
|
11299
|
-
"x-title": "Connected Account ID"
|
|
11047
|
+
type: "string"
|
|
11300
11048
|
},
|
|
11301
11049
|
created_at: {
|
|
11302
|
-
description: "
|
|
11050
|
+
description: "Time at which the event was created.",
|
|
11303
11051
|
format: "date-time",
|
|
11304
|
-
type: "string"
|
|
11305
|
-
"x-title": "Created At"
|
|
11052
|
+
type: "string"
|
|
11306
11053
|
},
|
|
11307
11054
|
device_id: {
|
|
11308
11055
|
description: "ID of the device.",
|
|
11309
11056
|
format: "uuid",
|
|
11310
|
-
type: "string"
|
|
11311
|
-
"x-title": "Device ID"
|
|
11057
|
+
type: "string"
|
|
11312
11058
|
},
|
|
11313
11059
|
event_id: {
|
|
11314
|
-
description: "
|
|
11060
|
+
description: "ID of the event.",
|
|
11315
11061
|
format: "uuid",
|
|
11316
|
-
type: "string"
|
|
11317
|
-
"x-title": "Event ID"
|
|
11062
|
+
type: "string"
|
|
11318
11063
|
},
|
|
11319
11064
|
event_type: {
|
|
11320
11065
|
enum: ["device.connection_became_flaky"],
|
|
11321
11066
|
type: "string"
|
|
11322
11067
|
},
|
|
11323
11068
|
occurred_at: {
|
|
11324
|
-
description: "
|
|
11069
|
+
description: "Time when the event occurred.",
|
|
11325
11070
|
format: "date-time",
|
|
11326
|
-
type: "string"
|
|
11327
|
-
"x-title": "Occurred At"
|
|
11071
|
+
type: "string"
|
|
11328
11072
|
},
|
|
11329
11073
|
workspace_id: {
|
|
11330
|
-
description: "
|
|
11074
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11331
11075
|
format: "uuid",
|
|
11332
|
-
type: "string"
|
|
11333
|
-
"x-title": "Workspace ID"
|
|
11076
|
+
type: "string"
|
|
11334
11077
|
}
|
|
11335
11078
|
},
|
|
11336
11079
|
required: [
|
|
@@ -11345,47 +11088,41 @@ var openapi_default = {
|
|
|
11345
11088
|
type: "object"
|
|
11346
11089
|
},
|
|
11347
11090
|
{
|
|
11348
|
-
description: "Seam detected a previously
|
|
11091
|
+
description: "Seam detected that a previously-flaky device connection stabilized.",
|
|
11349
11092
|
properties: {
|
|
11350
11093
|
connected_account_id: {
|
|
11351
|
-
description: "ID of the connected account.",
|
|
11094
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11352
11095
|
format: "uuid",
|
|
11353
|
-
type: "string"
|
|
11354
|
-
"x-title": "Connected Account ID"
|
|
11096
|
+
type: "string"
|
|
11355
11097
|
},
|
|
11356
11098
|
created_at: {
|
|
11357
|
-
description: "
|
|
11099
|
+
description: "Time at which the event was created.",
|
|
11358
11100
|
format: "date-time",
|
|
11359
|
-
type: "string"
|
|
11360
|
-
"x-title": "Created At"
|
|
11101
|
+
type: "string"
|
|
11361
11102
|
},
|
|
11362
11103
|
device_id: {
|
|
11363
11104
|
description: "ID of the device.",
|
|
11364
11105
|
format: "uuid",
|
|
11365
|
-
type: "string"
|
|
11366
|
-
"x-title": "Device ID"
|
|
11106
|
+
type: "string"
|
|
11367
11107
|
},
|
|
11368
11108
|
event_id: {
|
|
11369
|
-
description: "
|
|
11109
|
+
description: "ID of the event.",
|
|
11370
11110
|
format: "uuid",
|
|
11371
|
-
type: "string"
|
|
11372
|
-
"x-title": "Event ID"
|
|
11111
|
+
type: "string"
|
|
11373
11112
|
},
|
|
11374
11113
|
event_type: {
|
|
11375
11114
|
enum: ["device.connection_stabilized"],
|
|
11376
11115
|
type: "string"
|
|
11377
11116
|
},
|
|
11378
11117
|
occurred_at: {
|
|
11379
|
-
description: "
|
|
11118
|
+
description: "Time when the event occurred.",
|
|
11380
11119
|
format: "date-time",
|
|
11381
|
-
type: "string"
|
|
11382
|
-
"x-title": "Occurred At"
|
|
11120
|
+
type: "string"
|
|
11383
11121
|
},
|
|
11384
11122
|
workspace_id: {
|
|
11385
|
-
description: "
|
|
11123
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11386
11124
|
format: "uuid",
|
|
11387
|
-
type: "string"
|
|
11388
|
-
"x-title": "Workspace ID"
|
|
11125
|
+
type: "string"
|
|
11389
11126
|
}
|
|
11390
11127
|
},
|
|
11391
11128
|
required: [
|
|
@@ -11400,47 +11137,41 @@ var openapi_default = {
|
|
|
11400
11137
|
type: "object"
|
|
11401
11138
|
},
|
|
11402
11139
|
{
|
|
11403
|
-
description: "A third
|
|
11140
|
+
description: "A third-party subscription is required to use all device features.",
|
|
11404
11141
|
properties: {
|
|
11405
11142
|
connected_account_id: {
|
|
11406
|
-
description: "ID of the connected account.",
|
|
11143
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11407
11144
|
format: "uuid",
|
|
11408
|
-
type: "string"
|
|
11409
|
-
"x-title": "Connected Account ID"
|
|
11145
|
+
type: "string"
|
|
11410
11146
|
},
|
|
11411
11147
|
created_at: {
|
|
11412
|
-
description: "
|
|
11148
|
+
description: "Time at which the event was created.",
|
|
11413
11149
|
format: "date-time",
|
|
11414
|
-
type: "string"
|
|
11415
|
-
"x-title": "Created At"
|
|
11150
|
+
type: "string"
|
|
11416
11151
|
},
|
|
11417
11152
|
device_id: {
|
|
11418
11153
|
description: "ID of the device.",
|
|
11419
11154
|
format: "uuid",
|
|
11420
|
-
type: "string"
|
|
11421
|
-
"x-title": "Device ID"
|
|
11155
|
+
type: "string"
|
|
11422
11156
|
},
|
|
11423
11157
|
event_id: {
|
|
11424
|
-
description: "
|
|
11158
|
+
description: "ID of the event.",
|
|
11425
11159
|
format: "uuid",
|
|
11426
|
-
type: "string"
|
|
11427
|
-
"x-title": "Event ID"
|
|
11160
|
+
type: "string"
|
|
11428
11161
|
},
|
|
11429
11162
|
event_type: {
|
|
11430
11163
|
enum: ["device.error.subscription_required"],
|
|
11431
11164
|
type: "string"
|
|
11432
11165
|
},
|
|
11433
11166
|
occurred_at: {
|
|
11434
|
-
description: "
|
|
11167
|
+
description: "Time when the event occurred.",
|
|
11435
11168
|
format: "date-time",
|
|
11436
|
-
type: "string"
|
|
11437
|
-
"x-title": "Occurred At"
|
|
11169
|
+
type: "string"
|
|
11438
11170
|
},
|
|
11439
11171
|
workspace_id: {
|
|
11440
|
-
description: "
|
|
11172
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11441
11173
|
format: "uuid",
|
|
11442
|
-
type: "string"
|
|
11443
|
-
"x-title": "Workspace ID"
|
|
11174
|
+
type: "string"
|
|
11444
11175
|
}
|
|
11445
11176
|
},
|
|
11446
11177
|
required: [
|
|
@@ -11455,47 +11186,41 @@ var openapi_default = {
|
|
|
11455
11186
|
type: "object"
|
|
11456
11187
|
},
|
|
11457
11188
|
{
|
|
11458
|
-
description: "A third
|
|
11189
|
+
description: "A third-party subscription is active or no longer required to use all device features.",
|
|
11459
11190
|
properties: {
|
|
11460
11191
|
connected_account_id: {
|
|
11461
|
-
description: "ID of the connected account.",
|
|
11192
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11462
11193
|
format: "uuid",
|
|
11463
|
-
type: "string"
|
|
11464
|
-
"x-title": "Connected Account ID"
|
|
11194
|
+
type: "string"
|
|
11465
11195
|
},
|
|
11466
11196
|
created_at: {
|
|
11467
|
-
description: "
|
|
11197
|
+
description: "Time at which the event was created.",
|
|
11468
11198
|
format: "date-time",
|
|
11469
|
-
type: "string"
|
|
11470
|
-
"x-title": "Created At"
|
|
11199
|
+
type: "string"
|
|
11471
11200
|
},
|
|
11472
11201
|
device_id: {
|
|
11473
11202
|
description: "ID of the device.",
|
|
11474
11203
|
format: "uuid",
|
|
11475
|
-
type: "string"
|
|
11476
|
-
"x-title": "Device ID"
|
|
11204
|
+
type: "string"
|
|
11477
11205
|
},
|
|
11478
11206
|
event_id: {
|
|
11479
|
-
description: "
|
|
11207
|
+
description: "ID of the event.",
|
|
11480
11208
|
format: "uuid",
|
|
11481
|
-
type: "string"
|
|
11482
|
-
"x-title": "Event ID"
|
|
11209
|
+
type: "string"
|
|
11483
11210
|
},
|
|
11484
11211
|
event_type: {
|
|
11485
11212
|
enum: ["device.error.subscription_required.resolved"],
|
|
11486
11213
|
type: "string"
|
|
11487
11214
|
},
|
|
11488
11215
|
occurred_at: {
|
|
11489
|
-
description: "
|
|
11216
|
+
description: "Time when the event occurred.",
|
|
11490
11217
|
format: "date-time",
|
|
11491
|
-
type: "string"
|
|
11492
|
-
"x-title": "Occurred At"
|
|
11218
|
+
type: "string"
|
|
11493
11219
|
},
|
|
11494
11220
|
workspace_id: {
|
|
11495
|
-
description: "
|
|
11221
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11496
11222
|
format: "uuid",
|
|
11497
|
-
type: "string"
|
|
11498
|
-
"x-title": "Workspace ID"
|
|
11223
|
+
type: "string"
|
|
11499
11224
|
}
|
|
11500
11225
|
},
|
|
11501
11226
|
required: [
|
|
@@ -11510,47 +11235,41 @@ var openapi_default = {
|
|
|
11510
11235
|
type: "object"
|
|
11511
11236
|
},
|
|
11512
11237
|
{
|
|
11513
|
-
description: "
|
|
11238
|
+
description: "An accessory keypad was connected to a device.",
|
|
11514
11239
|
properties: {
|
|
11515
11240
|
connected_account_id: {
|
|
11516
|
-
description: "ID of the connected account.",
|
|
11241
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11517
11242
|
format: "uuid",
|
|
11518
|
-
type: "string"
|
|
11519
|
-
"x-title": "Connected Account ID"
|
|
11243
|
+
type: "string"
|
|
11520
11244
|
},
|
|
11521
11245
|
created_at: {
|
|
11522
|
-
description: "
|
|
11246
|
+
description: "Time at which the event was created.",
|
|
11523
11247
|
format: "date-time",
|
|
11524
|
-
type: "string"
|
|
11525
|
-
"x-title": "Created At"
|
|
11248
|
+
type: "string"
|
|
11526
11249
|
},
|
|
11527
11250
|
device_id: {
|
|
11528
11251
|
description: "ID of the device.",
|
|
11529
11252
|
format: "uuid",
|
|
11530
|
-
type: "string"
|
|
11531
|
-
"x-title": "Device ID"
|
|
11253
|
+
type: "string"
|
|
11532
11254
|
},
|
|
11533
11255
|
event_id: {
|
|
11534
|
-
description: "
|
|
11256
|
+
description: "ID of the event.",
|
|
11535
11257
|
format: "uuid",
|
|
11536
|
-
type: "string"
|
|
11537
|
-
"x-title": "Event ID"
|
|
11258
|
+
type: "string"
|
|
11538
11259
|
},
|
|
11539
11260
|
event_type: {
|
|
11540
11261
|
enum: ["device.accessory_keypad_connected"],
|
|
11541
11262
|
type: "string"
|
|
11542
11263
|
},
|
|
11543
11264
|
occurred_at: {
|
|
11544
|
-
description: "
|
|
11265
|
+
description: "Time when the event occurred.",
|
|
11545
11266
|
format: "date-time",
|
|
11546
|
-
type: "string"
|
|
11547
|
-
"x-title": "Occurred At"
|
|
11267
|
+
type: "string"
|
|
11548
11268
|
},
|
|
11549
11269
|
workspace_id: {
|
|
11550
|
-
description: "
|
|
11270
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11551
11271
|
format: "uuid",
|
|
11552
|
-
type: "string"
|
|
11553
|
-
"x-title": "Workspace ID"
|
|
11272
|
+
type: "string"
|
|
11554
11273
|
}
|
|
11555
11274
|
},
|
|
11556
11275
|
required: [
|
|
@@ -11565,47 +11284,41 @@ var openapi_default = {
|
|
|
11565
11284
|
type: "object"
|
|
11566
11285
|
},
|
|
11567
11286
|
{
|
|
11568
|
-
description: "
|
|
11287
|
+
description: "An accessory keypad was disconnected from a device.",
|
|
11569
11288
|
properties: {
|
|
11570
11289
|
connected_account_id: {
|
|
11571
|
-
description: "ID of the connected account.",
|
|
11290
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11572
11291
|
format: "uuid",
|
|
11573
|
-
type: "string"
|
|
11574
|
-
"x-title": "Connected Account ID"
|
|
11292
|
+
type: "string"
|
|
11575
11293
|
},
|
|
11576
11294
|
created_at: {
|
|
11577
|
-
description: "
|
|
11295
|
+
description: "Time at which the event was created.",
|
|
11578
11296
|
format: "date-time",
|
|
11579
|
-
type: "string"
|
|
11580
|
-
"x-title": "Created At"
|
|
11297
|
+
type: "string"
|
|
11581
11298
|
},
|
|
11582
11299
|
device_id: {
|
|
11583
11300
|
description: "ID of the device.",
|
|
11584
11301
|
format: "uuid",
|
|
11585
|
-
type: "string"
|
|
11586
|
-
"x-title": "Device ID"
|
|
11302
|
+
type: "string"
|
|
11587
11303
|
},
|
|
11588
11304
|
event_id: {
|
|
11589
|
-
description: "
|
|
11305
|
+
description: "ID of the event.",
|
|
11590
11306
|
format: "uuid",
|
|
11591
|
-
type: "string"
|
|
11592
|
-
"x-title": "Event ID"
|
|
11307
|
+
type: "string"
|
|
11593
11308
|
},
|
|
11594
11309
|
event_type: {
|
|
11595
11310
|
enum: ["device.accessory_keypad_disconnected"],
|
|
11596
11311
|
type: "string"
|
|
11597
11312
|
},
|
|
11598
11313
|
occurred_at: {
|
|
11599
|
-
description: "
|
|
11314
|
+
description: "Time when the event occurred.",
|
|
11600
11315
|
format: "date-time",
|
|
11601
|
-
type: "string"
|
|
11602
|
-
"x-title": "Occurred At"
|
|
11316
|
+
type: "string"
|
|
11603
11317
|
},
|
|
11604
11318
|
workspace_id: {
|
|
11605
|
-
description: "
|
|
11319
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11606
11320
|
format: "uuid",
|
|
11607
|
-
type: "string"
|
|
11608
|
-
"x-title": "Workspace ID"
|
|
11321
|
+
type: "string"
|
|
11609
11322
|
}
|
|
11610
11323
|
},
|
|
11611
11324
|
required: [
|
|
@@ -11620,31 +11333,27 @@ var openapi_default = {
|
|
|
11620
11333
|
type: "object"
|
|
11621
11334
|
},
|
|
11622
11335
|
{
|
|
11623
|
-
description: "Extended periods of noise or noise exceeding a threshold
|
|
11336
|
+
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
11337
|
properties: {
|
|
11625
11338
|
connected_account_id: {
|
|
11626
|
-
description: "ID of the connected account.",
|
|
11339
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11627
11340
|
format: "uuid",
|
|
11628
|
-
type: "string"
|
|
11629
|
-
"x-title": "Connected Account ID"
|
|
11341
|
+
type: "string"
|
|
11630
11342
|
},
|
|
11631
11343
|
created_at: {
|
|
11632
|
-
description: "
|
|
11344
|
+
description: "Time at which the event was created.",
|
|
11633
11345
|
format: "date-time",
|
|
11634
|
-
type: "string"
|
|
11635
|
-
"x-title": "Created At"
|
|
11346
|
+
type: "string"
|
|
11636
11347
|
},
|
|
11637
11348
|
device_id: {
|
|
11638
11349
|
description: "ID of the device.",
|
|
11639
11350
|
format: "uuid",
|
|
11640
|
-
type: "string"
|
|
11641
|
-
"x-title": "Device ID"
|
|
11351
|
+
type: "string"
|
|
11642
11352
|
},
|
|
11643
11353
|
event_id: {
|
|
11644
|
-
description: "
|
|
11354
|
+
description: "ID of the event.",
|
|
11645
11355
|
format: "uuid",
|
|
11646
|
-
type: "string"
|
|
11647
|
-
"x-title": "Event ID"
|
|
11356
|
+
type: "string"
|
|
11648
11357
|
},
|
|
11649
11358
|
event_type: {
|
|
11650
11359
|
enum: ["noise_sensor.noise_threshold_triggered"],
|
|
@@ -11652,31 +11361,44 @@ var openapi_default = {
|
|
|
11652
11361
|
},
|
|
11653
11362
|
minut_metadata: {
|
|
11654
11363
|
additionalProperties: {},
|
|
11655
|
-
description: "Metadata from
|
|
11364
|
+
description: "Metadata from Minut.",
|
|
11656
11365
|
type: "object",
|
|
11657
11366
|
"x-title": "Minut Metadata"
|
|
11658
11367
|
},
|
|
11659
|
-
noise_level_decibels: {
|
|
11660
|
-
|
|
11661
|
-
|
|
11662
|
-
|
|
11368
|
+
noise_level_decibels: {
|
|
11369
|
+
description: "Detected noise level in decibels.",
|
|
11370
|
+
format: "float",
|
|
11371
|
+
type: "number"
|
|
11372
|
+
},
|
|
11373
|
+
noise_level_nrs: {
|
|
11374
|
+
description: "Detected noise level in Noiseaware Noise Risk Score (NRS).",
|
|
11375
|
+
format: "float",
|
|
11376
|
+
type: "number"
|
|
11377
|
+
},
|
|
11378
|
+
noise_threshold_id: {
|
|
11379
|
+
description: "ID of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered.",
|
|
11380
|
+
format: "uuid",
|
|
11381
|
+
type: "string"
|
|
11382
|
+
},
|
|
11383
|
+
noise_threshold_name: {
|
|
11384
|
+
description: "Name of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered.",
|
|
11385
|
+
type: "string"
|
|
11386
|
+
},
|
|
11663
11387
|
noiseaware_metadata: {
|
|
11664
11388
|
additionalProperties: {},
|
|
11665
|
-
description: "Metadata from
|
|
11389
|
+
description: "Metadata from Noiseaware.",
|
|
11666
11390
|
type: "object",
|
|
11667
11391
|
"x-title": "Noiseaware Metadata"
|
|
11668
11392
|
},
|
|
11669
11393
|
occurred_at: {
|
|
11670
|
-
description: "
|
|
11394
|
+
description: "Time when the event occurred.",
|
|
11671
11395
|
format: "date-time",
|
|
11672
|
-
type: "string"
|
|
11673
|
-
"x-title": "Occurred At"
|
|
11396
|
+
type: "string"
|
|
11674
11397
|
},
|
|
11675
11398
|
workspace_id: {
|
|
11676
|
-
description: "
|
|
11399
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11677
11400
|
format: "uuid",
|
|
11678
|
-
type: "string"
|
|
11679
|
-
"x-title": "Workspace ID"
|
|
11401
|
+
type: "string"
|
|
11680
11402
|
}
|
|
11681
11403
|
},
|
|
11682
11404
|
required: [
|
|
@@ -11693,50 +11415,51 @@ var openapi_default = {
|
|
|
11693
11415
|
{
|
|
11694
11416
|
description: "A lock was locked.",
|
|
11695
11417
|
properties: {
|
|
11696
|
-
access_code_id: {
|
|
11697
|
-
|
|
11418
|
+
access_code_id: {
|
|
11419
|
+
description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to lock the device.",
|
|
11420
|
+
format: "uuid",
|
|
11421
|
+
type: "string"
|
|
11422
|
+
},
|
|
11423
|
+
action_attempt_id: {
|
|
11424
|
+
description: "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action.",
|
|
11425
|
+
format: "uuid",
|
|
11426
|
+
type: "string"
|
|
11427
|
+
},
|
|
11698
11428
|
connected_account_id: {
|
|
11699
|
-
description: "ID of the connected account.",
|
|
11429
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11700
11430
|
format: "uuid",
|
|
11701
|
-
type: "string"
|
|
11702
|
-
"x-title": "Connected Account ID"
|
|
11431
|
+
type: "string"
|
|
11703
11432
|
},
|
|
11704
11433
|
created_at: {
|
|
11705
|
-
description: "
|
|
11434
|
+
description: "Time at which the event was created.",
|
|
11706
11435
|
format: "date-time",
|
|
11707
|
-
type: "string"
|
|
11708
|
-
"x-title": "Created At"
|
|
11436
|
+
type: "string"
|
|
11709
11437
|
},
|
|
11710
11438
|
device_id: {
|
|
11711
11439
|
description: "ID of the device.",
|
|
11712
11440
|
format: "uuid",
|
|
11713
|
-
type: "string"
|
|
11714
|
-
"x-title": "Device ID"
|
|
11441
|
+
type: "string"
|
|
11715
11442
|
},
|
|
11716
11443
|
event_id: {
|
|
11717
|
-
description: "
|
|
11444
|
+
description: "ID of the event.",
|
|
11718
11445
|
format: "uuid",
|
|
11719
|
-
type: "string"
|
|
11720
|
-
"x-title": "Event ID"
|
|
11446
|
+
type: "string"
|
|
11721
11447
|
},
|
|
11722
11448
|
event_type: { enum: ["lock.locked"], type: "string" },
|
|
11723
11449
|
method: {
|
|
11724
|
-
description: "Method by which a lock device was locked
|
|
11450
|
+
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
11451
|
enum: ["keycode", "manual", "automatic", "unknown", "seamapi"],
|
|
11726
|
-
type: "string"
|
|
11727
|
-
"x-title": "Lock Lock/Unlock Method"
|
|
11452
|
+
type: "string"
|
|
11728
11453
|
},
|
|
11729
11454
|
occurred_at: {
|
|
11730
|
-
description: "
|
|
11455
|
+
description: "Time when the event occurred.",
|
|
11731
11456
|
format: "date-time",
|
|
11732
|
-
type: "string"
|
|
11733
|
-
"x-title": "Occurred At"
|
|
11457
|
+
type: "string"
|
|
11734
11458
|
},
|
|
11735
11459
|
workspace_id: {
|
|
11736
|
-
description: "
|
|
11460
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11737
11461
|
format: "uuid",
|
|
11738
|
-
type: "string"
|
|
11739
|
-
"x-title": "Workspace ID"
|
|
11462
|
+
type: "string"
|
|
11740
11463
|
}
|
|
11741
11464
|
},
|
|
11742
11465
|
required: [
|
|
@@ -11754,50 +11477,51 @@ var openapi_default = {
|
|
|
11754
11477
|
{
|
|
11755
11478
|
description: "A lock was unlocked.",
|
|
11756
11479
|
properties: {
|
|
11757
|
-
access_code_id: {
|
|
11758
|
-
|
|
11480
|
+
access_code_id: {
|
|
11481
|
+
description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to unlock the device.",
|
|
11482
|
+
format: "uuid",
|
|
11483
|
+
type: "string"
|
|
11484
|
+
},
|
|
11485
|
+
action_attempt_id: {
|
|
11486
|
+
description: "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action.",
|
|
11487
|
+
format: "uuid",
|
|
11488
|
+
type: "string"
|
|
11489
|
+
},
|
|
11759
11490
|
connected_account_id: {
|
|
11760
|
-
description: "ID of the connected account.",
|
|
11491
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11761
11492
|
format: "uuid",
|
|
11762
|
-
type: "string"
|
|
11763
|
-
"x-title": "Connected Account ID"
|
|
11493
|
+
type: "string"
|
|
11764
11494
|
},
|
|
11765
11495
|
created_at: {
|
|
11766
|
-
description: "
|
|
11496
|
+
description: "Time at which the event was created.",
|
|
11767
11497
|
format: "date-time",
|
|
11768
|
-
type: "string"
|
|
11769
|
-
"x-title": "Created At"
|
|
11498
|
+
type: "string"
|
|
11770
11499
|
},
|
|
11771
11500
|
device_id: {
|
|
11772
11501
|
description: "ID of the device.",
|
|
11773
11502
|
format: "uuid",
|
|
11774
|
-
type: "string"
|
|
11775
|
-
"x-title": "Device ID"
|
|
11503
|
+
type: "string"
|
|
11776
11504
|
},
|
|
11777
11505
|
event_id: {
|
|
11778
|
-
description: "
|
|
11506
|
+
description: "ID of the event.",
|
|
11779
11507
|
format: "uuid",
|
|
11780
|
-
type: "string"
|
|
11781
|
-
"x-title": "Event ID"
|
|
11508
|
+
type: "string"
|
|
11782
11509
|
},
|
|
11783
11510
|
event_type: { enum: ["lock.unlocked"], type: "string" },
|
|
11784
11511
|
method: {
|
|
11785
|
-
description: "Method by which a lock device was
|
|
11512
|
+
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
11513
|
enum: ["keycode", "manual", "automatic", "unknown", "seamapi"],
|
|
11787
|
-
type: "string"
|
|
11788
|
-
"x-title": "Lock Lock/Unlock Method"
|
|
11514
|
+
type: "string"
|
|
11789
11515
|
},
|
|
11790
11516
|
occurred_at: {
|
|
11791
|
-
description: "
|
|
11517
|
+
description: "Time when the event occurred.",
|
|
11792
11518
|
format: "date-time",
|
|
11793
|
-
type: "string"
|
|
11794
|
-
"x-title": "Occurred At"
|
|
11519
|
+
type: "string"
|
|
11795
11520
|
},
|
|
11796
11521
|
workspace_id: {
|
|
11797
|
-
description: "
|
|
11522
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11798
11523
|
format: "uuid",
|
|
11799
|
-
type: "string"
|
|
11800
|
-
"x-title": "Workspace ID"
|
|
11524
|
+
type: "string"
|
|
11801
11525
|
}
|
|
11802
11526
|
},
|
|
11803
11527
|
required: [
|
|
@@ -11815,43 +11539,41 @@ var openapi_default = {
|
|
|
11815
11539
|
{
|
|
11816
11540
|
description: "The lock denied access to a user after one or more consecutive invalid attempts to unlock the device.",
|
|
11817
11541
|
properties: {
|
|
11818
|
-
access_code_id: {
|
|
11542
|
+
access_code_id: {
|
|
11543
|
+
description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used in the unlock attempts.",
|
|
11544
|
+
format: "uuid",
|
|
11545
|
+
type: "string"
|
|
11546
|
+
},
|
|
11819
11547
|
connected_account_id: {
|
|
11820
|
-
description: "ID of the connected account.",
|
|
11548
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11821
11549
|
format: "uuid",
|
|
11822
|
-
type: "string"
|
|
11823
|
-
"x-title": "Connected Account ID"
|
|
11550
|
+
type: "string"
|
|
11824
11551
|
},
|
|
11825
11552
|
created_at: {
|
|
11826
|
-
description: "
|
|
11553
|
+
description: "Time at which the event was created.",
|
|
11827
11554
|
format: "date-time",
|
|
11828
|
-
type: "string"
|
|
11829
|
-
"x-title": "Created At"
|
|
11555
|
+
type: "string"
|
|
11830
11556
|
},
|
|
11831
11557
|
device_id: {
|
|
11832
11558
|
description: "ID of the device.",
|
|
11833
11559
|
format: "uuid",
|
|
11834
|
-
type: "string"
|
|
11835
|
-
"x-title": "Device ID"
|
|
11560
|
+
type: "string"
|
|
11836
11561
|
},
|
|
11837
11562
|
event_id: {
|
|
11838
|
-
description: "
|
|
11563
|
+
description: "ID of the event.",
|
|
11839
11564
|
format: "uuid",
|
|
11840
|
-
type: "string"
|
|
11841
|
-
"x-title": "Event ID"
|
|
11565
|
+
type: "string"
|
|
11842
11566
|
},
|
|
11843
11567
|
event_type: { enum: ["lock.access_denied"], type: "string" },
|
|
11844
11568
|
occurred_at: {
|
|
11845
|
-
description: "
|
|
11569
|
+
description: "Time when the event occurred.",
|
|
11846
11570
|
format: "date-time",
|
|
11847
|
-
type: "string"
|
|
11848
|
-
"x-title": "Occurred At"
|
|
11571
|
+
type: "string"
|
|
11849
11572
|
},
|
|
11850
11573
|
workspace_id: {
|
|
11851
|
-
description: "
|
|
11574
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11852
11575
|
format: "uuid",
|
|
11853
|
-
type: "string"
|
|
11854
|
-
"x-title": "Workspace ID"
|
|
11576
|
+
type: "string"
|
|
11855
11577
|
}
|
|
11856
11578
|
},
|
|
11857
11579
|
required: [
|
|
@@ -11866,54 +11588,55 @@ var openapi_default = {
|
|
|
11866
11588
|
type: "object"
|
|
11867
11589
|
},
|
|
11868
11590
|
{
|
|
11869
|
-
description: "A thermostat climate preset was activated.",
|
|
11591
|
+
description: "A thermostat [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) was activated.",
|
|
11870
11592
|
properties: {
|
|
11871
|
-
climate_preset_key: {
|
|
11593
|
+
climate_preset_key: {
|
|
11594
|
+
description: "Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated.",
|
|
11595
|
+
type: "string"
|
|
11596
|
+
},
|
|
11872
11597
|
connected_account_id: {
|
|
11873
|
-
description: "ID of the connected account.",
|
|
11598
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11874
11599
|
format: "uuid",
|
|
11875
|
-
type: "string"
|
|
11876
|
-
"x-title": "Connected Account ID"
|
|
11600
|
+
type: "string"
|
|
11877
11601
|
},
|
|
11878
11602
|
created_at: {
|
|
11879
|
-
description: "
|
|
11603
|
+
description: "Time at which the event was created.",
|
|
11880
11604
|
format: "date-time",
|
|
11881
|
-
type: "string"
|
|
11882
|
-
"x-title": "Created At"
|
|
11605
|
+
type: "string"
|
|
11883
11606
|
},
|
|
11884
11607
|
device_id: {
|
|
11885
11608
|
description: "ID of the device.",
|
|
11886
11609
|
format: "uuid",
|
|
11887
|
-
type: "string"
|
|
11888
|
-
"x-title": "Device ID"
|
|
11610
|
+
type: "string"
|
|
11889
11611
|
},
|
|
11890
11612
|
event_id: {
|
|
11891
|
-
description: "
|
|
11613
|
+
description: "ID of the event.",
|
|
11892
11614
|
format: "uuid",
|
|
11893
|
-
type: "string"
|
|
11894
|
-
"x-title": "Event ID"
|
|
11615
|
+
type: "string"
|
|
11895
11616
|
},
|
|
11896
11617
|
event_type: {
|
|
11897
11618
|
enum: ["thermostat.climate_preset_activated"],
|
|
11898
11619
|
type: "string"
|
|
11899
11620
|
},
|
|
11900
|
-
is_fallback_climate_preset: {
|
|
11621
|
+
is_fallback_climate_preset: {
|
|
11622
|
+
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.",
|
|
11623
|
+
type: "boolean"
|
|
11624
|
+
},
|
|
11901
11625
|
occurred_at: {
|
|
11902
|
-
description: "
|
|
11626
|
+
description: "Time when the event occurred.",
|
|
11903
11627
|
format: "date-time",
|
|
11904
|
-
type: "string"
|
|
11905
|
-
"x-title": "Occurred At"
|
|
11628
|
+
type: "string"
|
|
11906
11629
|
},
|
|
11907
11630
|
thermostat_schedule_id: {
|
|
11631
|
+
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
11632
|
format: "uuid",
|
|
11909
11633
|
nullable: true,
|
|
11910
11634
|
type: "string"
|
|
11911
11635
|
},
|
|
11912
11636
|
workspace_id: {
|
|
11913
|
-
description: "
|
|
11637
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
11914
11638
|
format: "uuid",
|
|
11915
|
-
type: "string"
|
|
11916
|
-
"x-title": "Workspace ID"
|
|
11639
|
+
type: "string"
|
|
11917
11640
|
}
|
|
11918
11641
|
},
|
|
11919
11642
|
required: [
|
|
@@ -11931,13 +11654,12 @@ var openapi_default = {
|
|
|
11931
11654
|
type: "object"
|
|
11932
11655
|
},
|
|
11933
11656
|
{
|
|
11934
|
-
description: "A thermostat was manually
|
|
11657
|
+
description: "A thermostat was adjusted manually.",
|
|
11935
11658
|
properties: {
|
|
11936
11659
|
connected_account_id: {
|
|
11937
|
-
description: "ID of the connected account.",
|
|
11660
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
11938
11661
|
format: "uuid",
|
|
11939
|
-
type: "string"
|
|
11940
|
-
"x-title": "Connected Account ID"
|
|
11662
|
+
type: "string"
|
|
11941
11663
|
},
|
|
11942
11664
|
cooling_set_point_celsius: {
|
|
11943
11665
|
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 +11672,19 @@ var openapi_default = {
|
|
|
11950
11672
|
type: "number"
|
|
11951
11673
|
},
|
|
11952
11674
|
created_at: {
|
|
11953
|
-
description: "
|
|
11675
|
+
description: "Time at which the event was created.",
|
|
11954
11676
|
format: "date-time",
|
|
11955
|
-
type: "string"
|
|
11956
|
-
"x-title": "Created At"
|
|
11677
|
+
type: "string"
|
|
11957
11678
|
},
|
|
11958
11679
|
device_id: {
|
|
11959
11680
|
description: "ID of the device.",
|
|
11960
11681
|
format: "uuid",
|
|
11961
|
-
type: "string"
|
|
11962
|
-
"x-title": "Device ID"
|
|
11682
|
+
type: "string"
|
|
11963
11683
|
},
|
|
11964
11684
|
event_id: {
|
|
11965
|
-
description: "
|
|
11685
|
+
description: "ID of the event.",
|
|
11966
11686
|
format: "uuid",
|
|
11967
|
-
type: "string"
|
|
11968
|
-
"x-title": "Event ID"
|
|
11687
|
+
type: "string"
|
|
11969
11688
|
},
|
|
11970
11689
|
event_type: {
|
|
11971
11690
|
enum: ["thermostat.manually_adjusted"],
|
|
@@ -11991,18 +11710,20 @@ var openapi_default = {
|
|
|
11991
11710
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
11992
11711
|
type: "string"
|
|
11993
11712
|
},
|
|
11994
|
-
method: {
|
|
11713
|
+
method: {
|
|
11714
|
+
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.",
|
|
11715
|
+
enum: ["seam", "external"],
|
|
11716
|
+
type: "string"
|
|
11717
|
+
},
|
|
11995
11718
|
occurred_at: {
|
|
11996
|
-
description: "
|
|
11719
|
+
description: "Time when the event occurred.",
|
|
11997
11720
|
format: "date-time",
|
|
11998
|
-
type: "string"
|
|
11999
|
-
"x-title": "Occurred At"
|
|
11721
|
+
type: "string"
|
|
12000
11722
|
},
|
|
12001
11723
|
workspace_id: {
|
|
12002
|
-
description: "
|
|
11724
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
12003
11725
|
format: "uuid",
|
|
12004
|
-
type: "string"
|
|
12005
|
-
"x-title": "Workspace ID"
|
|
11726
|
+
type: "string"
|
|
12006
11727
|
}
|
|
12007
11728
|
},
|
|
12008
11729
|
required: [
|
|
@@ -12018,69 +11739,75 @@ var openapi_default = {
|
|
|
12018
11739
|
type: "object"
|
|
12019
11740
|
},
|
|
12020
11741
|
{
|
|
12021
|
-
description: "A thermostat's temperature reading exceeded the set threshold.",
|
|
11742
|
+
description: "A thermostat's temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
|
|
12022
11743
|
properties: {
|
|
12023
11744
|
connected_account_id: {
|
|
12024
|
-
description: "ID of the connected account.",
|
|
11745
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
12025
11746
|
format: "uuid",
|
|
12026
|
-
type: "string"
|
|
12027
|
-
"x-title": "Connected Account ID"
|
|
11747
|
+
type: "string"
|
|
12028
11748
|
},
|
|
12029
11749
|
created_at: {
|
|
12030
|
-
description: "
|
|
11750
|
+
description: "Time at which the event was created.",
|
|
12031
11751
|
format: "date-time",
|
|
12032
|
-
type: "string"
|
|
12033
|
-
"x-title": "Created At"
|
|
11752
|
+
type: "string"
|
|
12034
11753
|
},
|
|
12035
11754
|
device_id: {
|
|
12036
11755
|
description: "ID of the device.",
|
|
12037
11756
|
format: "uuid",
|
|
12038
|
-
type: "string"
|
|
12039
|
-
"x-title": "Device ID"
|
|
11757
|
+
type: "string"
|
|
12040
11758
|
},
|
|
12041
11759
|
event_id: {
|
|
12042
|
-
description: "
|
|
11760
|
+
description: "ID of the event.",
|
|
12043
11761
|
format: "uuid",
|
|
12044
|
-
type: "string"
|
|
12045
|
-
"x-title": "Event ID"
|
|
11762
|
+
type: "string"
|
|
12046
11763
|
},
|
|
12047
11764
|
event_type: {
|
|
12048
11765
|
enum: ["thermostat.temperature_threshold_exceeded"],
|
|
12049
11766
|
type: "string"
|
|
12050
11767
|
},
|
|
12051
11768
|
lower_limit_celsius: {
|
|
11769
|
+
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
11770
|
format: "float",
|
|
12053
11771
|
nullable: true,
|
|
12054
11772
|
type: "number"
|
|
12055
11773
|
},
|
|
12056
11774
|
lower_limit_fahrenheit: {
|
|
11775
|
+
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
11776
|
format: "float",
|
|
12058
11777
|
nullable: true,
|
|
12059
11778
|
type: "number"
|
|
12060
11779
|
},
|
|
12061
11780
|
occurred_at: {
|
|
12062
|
-
description: "
|
|
11781
|
+
description: "Time when the event occurred.",
|
|
12063
11782
|
format: "date-time",
|
|
12064
|
-
type: "string"
|
|
12065
|
-
|
|
11783
|
+
type: "string"
|
|
11784
|
+
},
|
|
11785
|
+
temperature_celsius: {
|
|
11786
|
+
description: "Temperature, in \xB0C, reported by the thermostat.",
|
|
11787
|
+
format: "float",
|
|
11788
|
+
type: "number"
|
|
11789
|
+
},
|
|
11790
|
+
temperature_fahrenheit: {
|
|
11791
|
+
description: "Temperature, in \xB0F, reported by the thermostat.",
|
|
11792
|
+
format: "float",
|
|
11793
|
+
type: "number"
|
|
12066
11794
|
},
|
|
12067
|
-
temperature_celsius: { format: "float", type: "number" },
|
|
12068
|
-
temperature_fahrenheit: { format: "float", type: "number" },
|
|
12069
11795
|
upper_limit_celsius: {
|
|
11796
|
+
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
11797
|
format: "float",
|
|
12071
11798
|
nullable: true,
|
|
12072
11799
|
type: "number"
|
|
12073
11800
|
},
|
|
12074
11801
|
upper_limit_fahrenheit: {
|
|
11802
|
+
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
11803
|
format: "float",
|
|
12076
11804
|
nullable: true,
|
|
12077
11805
|
type: "number"
|
|
12078
11806
|
},
|
|
12079
11807
|
workspace_id: {
|
|
12080
|
-
description: "
|
|
11808
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
12081
11809
|
format: "uuid",
|
|
12082
|
-
type: "string"
|
|
12083
|
-
"x-title": "Workspace ID"
|
|
11810
|
+
type: "string"
|
|
12084
11811
|
}
|
|
12085
11812
|
},
|
|
12086
11813
|
required: [
|
|
@@ -12101,69 +11828,75 @@ var openapi_default = {
|
|
|
12101
11828
|
type: "object"
|
|
12102
11829
|
},
|
|
12103
11830
|
{
|
|
12104
|
-
description: "A thermostat's temperature reading
|
|
11831
|
+
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
11832
|
properties: {
|
|
12106
11833
|
connected_account_id: {
|
|
12107
|
-
description: "ID of the connected account.",
|
|
11834
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
12108
11835
|
format: "uuid",
|
|
12109
|
-
type: "string"
|
|
12110
|
-
"x-title": "Connected Account ID"
|
|
11836
|
+
type: "string"
|
|
12111
11837
|
},
|
|
12112
11838
|
created_at: {
|
|
12113
|
-
description: "
|
|
11839
|
+
description: "Time at which the event was created.",
|
|
12114
11840
|
format: "date-time",
|
|
12115
|
-
type: "string"
|
|
12116
|
-
"x-title": "Created At"
|
|
11841
|
+
type: "string"
|
|
12117
11842
|
},
|
|
12118
11843
|
device_id: {
|
|
12119
11844
|
description: "ID of the device.",
|
|
12120
11845
|
format: "uuid",
|
|
12121
|
-
type: "string"
|
|
12122
|
-
"x-title": "Device ID"
|
|
11846
|
+
type: "string"
|
|
12123
11847
|
},
|
|
12124
11848
|
event_id: {
|
|
12125
|
-
description: "
|
|
11849
|
+
description: "ID of the event.",
|
|
12126
11850
|
format: "uuid",
|
|
12127
|
-
type: "string"
|
|
12128
|
-
"x-title": "Event ID"
|
|
11851
|
+
type: "string"
|
|
12129
11852
|
},
|
|
12130
11853
|
event_type: {
|
|
12131
11854
|
enum: ["thermostat.temperature_threshold_no_longer_exceeded"],
|
|
12132
11855
|
type: "string"
|
|
12133
11856
|
},
|
|
12134
11857
|
lower_limit_celsius: {
|
|
11858
|
+
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
11859
|
format: "float",
|
|
12136
11860
|
nullable: true,
|
|
12137
11861
|
type: "number"
|
|
12138
11862
|
},
|
|
12139
11863
|
lower_limit_fahrenheit: {
|
|
11864
|
+
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
11865
|
format: "float",
|
|
12141
11866
|
nullable: true,
|
|
12142
11867
|
type: "number"
|
|
12143
11868
|
},
|
|
12144
11869
|
occurred_at: {
|
|
12145
|
-
description: "
|
|
11870
|
+
description: "Time when the event occurred.",
|
|
12146
11871
|
format: "date-time",
|
|
12147
|
-
type: "string"
|
|
12148
|
-
|
|
11872
|
+
type: "string"
|
|
11873
|
+
},
|
|
11874
|
+
temperature_celsius: {
|
|
11875
|
+
description: "Temperature, in \xB0C, reported by the thermostat.",
|
|
11876
|
+
format: "float",
|
|
11877
|
+
type: "number"
|
|
11878
|
+
},
|
|
11879
|
+
temperature_fahrenheit: {
|
|
11880
|
+
description: "Temperature, in \xB0F, reported by the thermostat.",
|
|
11881
|
+
format: "float",
|
|
11882
|
+
type: "number"
|
|
12149
11883
|
},
|
|
12150
|
-
temperature_celsius: { format: "float", type: "number" },
|
|
12151
|
-
temperature_fahrenheit: { format: "float", type: "number" },
|
|
12152
11884
|
upper_limit_celsius: {
|
|
11885
|
+
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
11886
|
format: "float",
|
|
12154
11887
|
nullable: true,
|
|
12155
11888
|
type: "number"
|
|
12156
11889
|
},
|
|
12157
11890
|
upper_limit_fahrenheit: {
|
|
11891
|
+
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
11892
|
format: "float",
|
|
12159
11893
|
nullable: true,
|
|
12160
11894
|
type: "number"
|
|
12161
11895
|
},
|
|
12162
11896
|
workspace_id: {
|
|
12163
|
-
description: "
|
|
11897
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
12164
11898
|
format: "uuid",
|
|
12165
|
-
type: "string"
|
|
12166
|
-
"x-title": "Workspace ID"
|
|
11899
|
+
type: "string"
|
|
12167
11900
|
}
|
|
12168
11901
|
},
|
|
12169
11902
|
required: [
|
|
@@ -12187,10 +11920,9 @@ var openapi_default = {
|
|
|
12187
11920
|
description: "An enrollment automation was deleted.",
|
|
12188
11921
|
properties: {
|
|
12189
11922
|
created_at: {
|
|
12190
|
-
description: "
|
|
11923
|
+
description: "Time at which the event was created.",
|
|
12191
11924
|
format: "date-time",
|
|
12192
|
-
type: "string"
|
|
12193
|
-
"x-title": "Created At"
|
|
11925
|
+
type: "string"
|
|
12194
11926
|
},
|
|
12195
11927
|
enrollment_automation_id: {
|
|
12196
11928
|
description: "ID of the enrollment automation.",
|
|
@@ -12199,26 +11931,23 @@ var openapi_default = {
|
|
|
12199
11931
|
"x-title": "Enrollment Automation ID"
|
|
12200
11932
|
},
|
|
12201
11933
|
event_id: {
|
|
12202
|
-
description: "
|
|
11934
|
+
description: "ID of the event.",
|
|
12203
11935
|
format: "uuid",
|
|
12204
|
-
type: "string"
|
|
12205
|
-
"x-title": "Event ID"
|
|
11936
|
+
type: "string"
|
|
12206
11937
|
},
|
|
12207
11938
|
event_type: {
|
|
12208
11939
|
enum: ["enrollment_automation.deleted"],
|
|
12209
11940
|
type: "string"
|
|
12210
11941
|
},
|
|
12211
11942
|
occurred_at: {
|
|
12212
|
-
description: "
|
|
11943
|
+
description: "Time when the event occurred.",
|
|
12213
11944
|
format: "date-time",
|
|
12214
|
-
type: "string"
|
|
12215
|
-
"x-title": "Occurred At"
|
|
11945
|
+
type: "string"
|
|
12216
11946
|
},
|
|
12217
11947
|
workspace_id: {
|
|
12218
|
-
description: "
|
|
11948
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
12219
11949
|
format: "uuid",
|
|
12220
|
-
type: "string"
|
|
12221
|
-
"x-title": "Workspace ID"
|
|
11950
|
+
type: "string"
|
|
12222
11951
|
}
|
|
12223
11952
|
},
|
|
12224
11953
|
required: [
|
|
@@ -12235,10 +11964,9 @@ var openapi_default = {
|
|
|
12235
11964
|
description: "A phone device was deactivated.",
|
|
12236
11965
|
properties: {
|
|
12237
11966
|
created_at: {
|
|
12238
|
-
description: "
|
|
11967
|
+
description: "Time at which the event was created.",
|
|
12239
11968
|
format: "date-time",
|
|
12240
|
-
type: "string"
|
|
12241
|
-
"x-title": "Created At"
|
|
11969
|
+
type: "string"
|
|
12242
11970
|
},
|
|
12243
11971
|
device_id: {
|
|
12244
11972
|
description: "ID of the device.",
|
|
@@ -12247,23 +11975,20 @@ var openapi_default = {
|
|
|
12247
11975
|
"x-title": "Device ID"
|
|
12248
11976
|
},
|
|
12249
11977
|
event_id: {
|
|
12250
|
-
description: "
|
|
11978
|
+
description: "ID of the event.",
|
|
12251
11979
|
format: "uuid",
|
|
12252
|
-
type: "string"
|
|
12253
|
-
"x-title": "Event ID"
|
|
11980
|
+
type: "string"
|
|
12254
11981
|
},
|
|
12255
11982
|
event_type: { enum: ["phone.deactivated"], type: "string" },
|
|
12256
11983
|
occurred_at: {
|
|
12257
|
-
description: "
|
|
11984
|
+
description: "Time when the event occurred.",
|
|
12258
11985
|
format: "date-time",
|
|
12259
|
-
type: "string"
|
|
12260
|
-
"x-title": "Occurred At"
|
|
11986
|
+
type: "string"
|
|
12261
11987
|
},
|
|
12262
11988
|
workspace_id: {
|
|
12263
|
-
description: "
|
|
11989
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
12264
11990
|
format: "uuid",
|
|
12265
|
-
type: "string"
|
|
12266
|
-
"x-title": "Workspace ID"
|
|
11991
|
+
type: "string"
|
|
12267
11992
|
}
|
|
12268
11993
|
},
|
|
12269
11994
|
required: [
|