File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -653,7 +653,7 @@ export type TemperatureChangedEvent = z.infer<typeof temperature_changed_event>
653
653
654
654
export const device_name_changed_event = device_event . extend ( {
655
655
event_type : z . literal ( 'device.name_changed' ) ,
656
- new_name : z . string ( ) . describe ( 'The new name of the device.' ) ,
656
+ device_name : z . string ( ) . describe ( 'The new name of the device.' ) ,
657
657
} ) . describe ( `
658
658
---
659
659
route_path: /devices
Original file line number Diff line number Diff line change @@ -12259,16 +12259,16 @@ export default {
12259
12259
format: 'uuid',
12260
12260
type: 'string',
12261
12261
},
12262
+ device_name: {
12263
+ description: 'The new name of the device.',
12264
+ type: 'string',
12265
+ },
12262
12266
event_id: {
12263
12267
description: 'ID of the event.',
12264
12268
format: 'uuid',
12265
12269
type: 'string',
12266
12270
},
12267
12271
event_type: { enum: ['device.name_changed'], type: 'string' },
12268
- new_name: {
12269
- description: 'The new name of the device.',
12270
- type: 'string',
12271
- },
12272
12272
occurred_at: {
12273
12273
description: 'Date and time at which the event occurred.',
12274
12274
format: 'date-time',
@@ -12289,7 +12289,7 @@ export default {
12289
12289
'device_id',
12290
12290
'connected_account_id',
12291
12291
'event_type',
12292
- 'new_name ',
12292
+ 'device_name ',
12293
12293
],
12294
12294
type: 'object',
12295
12295
'x-route-path': '/devices',
Original file line number Diff line number Diff line change @@ -20622,7 +20622,7 @@ export interface Routes {
20622
20622
connected_account_id: string
20623
20623
event_type: 'device.name_changed'
20624
20624
/** The new name of the device. */
20625
- new_name : string
20625
+ device_name : string
20626
20626
}
20627
20627
| {
20628
20628
/** ID of the event. */
@@ -22096,7 +22096,7 @@ export interface Routes {
22096
22096
connected_account_id: string
22097
22097
event_type: 'device.name_changed'
22098
22098
/** The new name of the device. */
22099
- new_name : string
22099
+ device_name : string
22100
22100
}
22101
22101
| {
22102
22102
/** ID of the event. */
You can’t perform that action at this time.
0 commit comments