@@ -55405,6 +55405,19 @@ export type Routes = {
5540555405 }
5540655406 | undefined
5540755407 event_type: 'access_code.changed'
55408+ /** List of properties that changed on the access code. */
55409+ changed_properties?:
55410+ | {
55411+ /** Name of the property that changed (e.g. `code`). */
55412+ property: string
55413+ /** Previous value of the property, or null if not set. */
55414+ previous_value: string | null
55415+ /** New value of the property, or null if cleared. */
55416+ new_value: string | null
55417+ }[]
55418+ | undefined
55419+ /** Human-readable reason for the change (e.g. `ongoing code auto-renewed`). */
55420+ change_reason?: string | undefined
5540855421 }
5540955422 | {
5541055423 /** ID of the event. */
@@ -58825,6 +58838,19 @@ export type Routes = {
5882558838 }
5882658839 | undefined
5882758840 event_type: 'access_code.changed'
58841+ /** List of properties that changed on the access code. */
58842+ changed_properties?:
58843+ | {
58844+ /** Name of the property that changed (e.g. `code`). */
58845+ property: string
58846+ /** Previous value of the property, or null if not set. */
58847+ previous_value: string | null
58848+ /** New value of the property, or null if cleared. */
58849+ new_value: string | null
58850+ }[]
58851+ | undefined
58852+ /** Human-readable reason for the change (e.g. `ongoing code auto-renewed`). */
58853+ change_reason?: string | undefined
5882858854 }
5882958855 | {
5883058856 /** ID of the event. */
@@ -92500,6 +92526,19 @@ export type Routes = {
9250092526 }
9250192527 | undefined
9250292528 event_type: 'access_code.changed'
92529+ /** List of properties that changed on the access code. */
92530+ changed_properties?:
92531+ | {
92532+ /** Name of the property that changed (e.g. `code`). */
92533+ property: string
92534+ /** Previous value of the property, or null if not set. */
92535+ previous_value: string | null
92536+ /** New value of the property, or null if cleared. */
92537+ new_value: string | null
92538+ }[]
92539+ | undefined
92540+ /** Human-readable reason for the change (e.g. `ongoing code auto-renewed`). */
92541+ change_reason?: string | undefined
9250392542 }
9250492543 | {
9250592544 /** ID of the event. */
@@ -135559,6 +135598,19 @@ export type Routes = {
135559135598 }
135560135599 | undefined
135561135600 event_type: 'access_code.changed'
135601+ /** List of properties that changed on the access code. */
135602+ changed_properties?:
135603+ | {
135604+ /** Name of the property that changed (e.g. `code`). */
135605+ property: string
135606+ /** Previous value of the property, or null if not set. */
135607+ previous_value: string | null
135608+ /** New value of the property, or null if cleared. */
135609+ new_value: string | null
135610+ }[]
135611+ | undefined
135612+ /** Human-readable reason for the change (e.g. `ongoing code auto-renewed`). */
135613+ change_reason?: string | undefined
135562135614 }
135563135615 | {
135564135616 /** ID of the event. */
0 commit comments