@seamapi/types 1.906.0 → 1.907.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/connect.cjs CHANGED
@@ -6399,7 +6399,10 @@ var device_removed_event = device_event.extend({
6399
6399
  A [device](https://docs.seam.co/core-concepts/devices) was removed externally from the [connected account](https://docs.seam.co/core-concepts/connected-accounts).
6400
6400
  `);
6401
6401
  var device_deleted_event = device_event.extend({
6402
- event_type: zod.z.literal("device.deleted")
6402
+ event_type: zod.z.literal("device.deleted"),
6403
+ device_name: zod.z.string().nullable().optional().describe(
6404
+ "Name of the deleted device, captured at deletion time. The device record no longer exists when this event fires, so the name is preserved here. Null when the device had no resolvable name."
6405
+ )
6403
6406
  }).describe(`
6404
6407
  ---
6405
6408
  route_path: /devices
@@ -28586,6 +28589,11 @@ var openapi = {
28586
28589
  format: "uuid",
28587
28590
  type: "string"
28588
28591
  },
28592
+ device_name: {
28593
+ description: "Name of the deleted device, captured at deletion time. The device record no longer exists when this event fires, so the name is preserved here. Null when the device had no resolvable name.",
28594
+ nullable: true,
28595
+ type: "string"
28596
+ },
28589
28597
  event_id: {
28590
28598
  description: "ID of the event.",
28591
28599
  format: "uuid",