@seamapi/types 1.947.0 → 1.949.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.
Files changed (40) hide show
  1. package/dist/connect.cjs +432 -65
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1177 -167
  4. package/dist/index.cjs +432 -65
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -71
  7. package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -14
  8. package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
  9. package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +0 -26
  10. package/lib/seam/connect/models/events/access-codes.d.ts +126 -0
  11. package/lib/seam/connect/models/events/access-grants.d.ts +42 -0
  12. package/lib/seam/connect/models/events/access-methods.d.ts +36 -0
  13. package/lib/seam/connect/models/events/acs/access-groups.d.ts +6 -0
  14. package/lib/seam/connect/models/events/acs/common.d.ts +3 -0
  15. package/lib/seam/connect/models/events/acs/credentials.d.ts +24 -0
  16. package/lib/seam/connect/models/events/acs/encoders.d.ts +12 -0
  17. package/lib/seam/connect/models/events/acs/entrances.d.ts +12 -0
  18. package/lib/seam/connect/models/events/acs/index.d.ts +42 -0
  19. package/lib/seam/connect/models/events/acs/systems.d.ts +18 -0
  20. package/lib/seam/connect/models/events/acs/users.d.ts +12 -0
  21. package/lib/seam/connect/models/events/action-attempts.d.ts +48 -0
  22. package/lib/seam/connect/models/events/client-sessions.d.ts +6 -0
  23. package/lib/seam/connect/models/events/common.d.ts +3 -0
  24. package/lib/seam/connect/models/events/common.js +4 -0
  25. package/lib/seam/connect/models/events/common.js.map +1 -1
  26. package/lib/seam/connect/models/events/connect-webviews.d.ts +12 -0
  27. package/lib/seam/connect/models/events/connected-accounts.d.ts +48 -0
  28. package/lib/seam/connect/models/events/devices.d.ts +210 -0
  29. package/lib/seam/connect/models/events/enrollment-automations.d.ts +6 -0
  30. package/lib/seam/connect/models/events/phones.d.ts +6 -0
  31. package/lib/seam/connect/models/events/seam-event.d.ts +321 -0
  32. package/lib/seam/connect/models/events/spaces.d.ts +18 -0
  33. package/lib/seam/connect/openapi.js +428 -54
  34. package/lib/seam/connect/openapi.js.map +1 -1
  35. package/lib/seam/connect/route-types.d.ts +856 -99
  36. package/package.json +1 -1
  37. package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -15
  38. package/src/lib/seam/connect/models/events/common.ts +6 -0
  39. package/src/lib/seam/connect/openapi.ts +535 -64
  40. package/src/lib/seam/connect/route-types.ts +856 -110
@@ -1785,15 +1785,6 @@ export type Routes = {
1785
1785
  unmanaged_access_code_id?: string | undefined;
1786
1786
  /** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
1787
1787
  managed_access_code_id?: string | undefined;
1788
- } | {
1789
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
1790
- message: string;
1791
- /** Indicates that this is an access code error. */
1792
- is_access_code_error: true;
1793
- /** Date and time at which Seam created the error. */
1794
- created_at?: string | undefined;
1795
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1796
- error_code: 'duplicate_code_attempt_prevented';
1797
1788
  } | {
1798
1789
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
1799
1790
  message: string;
@@ -2300,15 +2291,6 @@ export type Routes = {
2300
2291
  unmanaged_access_code_id?: string | undefined;
2301
2292
  /** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
2302
2293
  managed_access_code_id?: string | undefined;
2303
- } | {
2304
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
2305
- message: string;
2306
- /** Indicates that this is an access code error. */
2307
- is_access_code_error: true;
2308
- /** Date and time at which Seam created the error. */
2309
- created_at?: string | undefined;
2310
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2311
- error_code: 'duplicate_code_attempt_prevented';
2312
2294
  } | {
2313
2295
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
2314
2296
  message: string;
@@ -4503,15 +4485,6 @@ export type Routes = {
4503
4485
  unmanaged_access_code_id?: string | undefined;
4504
4486
  /** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
4505
4487
  managed_access_code_id?: string | undefined;
4506
- } | {
4507
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
4508
- message: string;
4509
- /** Indicates that this is an access code error. */
4510
- is_access_code_error: true;
4511
- /** Date and time at which Seam created the error. */
4512
- created_at?: string | undefined;
4513
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4514
- error_code: 'duplicate_code_attempt_prevented';
4515
4488
  } | {
4516
4489
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
4517
4490
  message: string;
@@ -5064,15 +5037,6 @@ export type Routes = {
5064
5037
  unmanaged_access_code_id?: string | undefined;
5065
5038
  /** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
5066
5039
  managed_access_code_id?: string | undefined;
5067
- } | {
5068
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5069
- message: string;
5070
- /** Indicates that this is an access code error. */
5071
- is_access_code_error: true;
5072
- /** Date and time at which Seam created the error. */
5073
- created_at?: string | undefined;
5074
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5075
- error_code: 'duplicate_code_attempt_prevented';
5076
5040
  } | {
5077
5041
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5078
5042
  message: string;
@@ -5570,15 +5534,6 @@ export type Routes = {
5570
5534
  unmanaged_access_code_id?: string | undefined;
5571
5535
  /** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
5572
5536
  managed_access_code_id?: string | undefined;
5573
- } | {
5574
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5575
- message: string;
5576
- /** Indicates that this is an access code error. */
5577
- is_access_code_error: true;
5578
- /** Date and time at which Seam created the error. */
5579
- created_at?: string | undefined;
5580
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5581
- error_code: 'duplicate_code_attempt_prevented';
5582
5537
  } | {
5583
5538
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5584
5539
  message: string;
@@ -6053,15 +6008,6 @@ export type Routes = {
6053
6008
  unmanaged_access_code_id?: string | undefined;
6054
6009
  /** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
6055
6010
  managed_access_code_id?: string | undefined;
6056
- } | {
6057
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6058
- message: string;
6059
- /** Indicates that this is an access code error. */
6060
- is_access_code_error: true;
6061
- /** Date and time at which Seam created the error. */
6062
- created_at?: string | undefined;
6063
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6064
- error_code: 'duplicate_code_attempt_prevented';
6065
6011
  } | {
6066
6012
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6067
6013
  message: string;
@@ -6569,15 +6515,6 @@ export type Routes = {
6569
6515
  unmanaged_access_code_id?: string | undefined;
6570
6516
  /** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
6571
6517
  managed_access_code_id?: string | undefined;
6572
- } | {
6573
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6574
- message: string;
6575
- /** Indicates that this is an access code error. */
6576
- is_access_code_error: true;
6577
- /** Date and time at which Seam created the error. */
6578
- created_at?: string | undefined;
6579
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6580
- error_code: 'duplicate_code_attempt_prevented';
6581
6518
  } | {
6582
6519
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6583
6520
  message: string;
@@ -8681,15 +8618,6 @@ export type Routes = {
8681
8618
  unmanaged_access_code_id?: string | undefined;
8682
8619
  /** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
8683
8620
  managed_access_code_id?: string | undefined;
8684
- } | {
8685
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8686
- message: string;
8687
- /** Indicates that this is an access code error. */
8688
- is_access_code_error: true;
8689
- /** Date and time at which Seam created the error. */
8690
- created_at?: string | undefined;
8691
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
8692
- error_code: 'duplicate_code_attempt_prevented';
8693
8621
  } | {
8694
8622
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8695
8623
  message: string;
@@ -9083,15 +9011,6 @@ export type Routes = {
9083
9011
  unmanaged_access_code_id?: string | undefined;
9084
9012
  /** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
9085
9013
  managed_access_code_id?: string | undefined;
9086
- } | {
9087
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9088
- message: string;
9089
- /** Indicates that this is an access code error. */
9090
- is_access_code_error: true;
9091
- /** Date and time at which Seam created the error. */
9092
- created_at?: string | undefined;
9093
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
9094
- error_code: 'duplicate_code_attempt_prevented';
9095
9014
  } | {
9096
9015
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9097
9016
  message: string;
@@ -45273,6 +45192,8 @@ export type Routes = {
45273
45192
  created_at: string;
45274
45193
  /** Date and time at which the event occurred. */
45275
45194
  occurred_at: string;
45195
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45196
+ event_description?: string | undefined;
45276
45197
  /** ID of the affected access code. */
45277
45198
  access_code_id: string;
45278
45199
  /** ID of the device associated with the affected access code. */
@@ -45297,6 +45218,8 @@ export type Routes = {
45297
45218
  created_at: string;
45298
45219
  /** Date and time at which the event occurred. */
45299
45220
  occurred_at: string;
45221
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45222
+ event_description?: string | undefined;
45300
45223
  /** ID of the affected access code. */
45301
45224
  access_code_id: string;
45302
45225
  /** ID of the device associated with the affected access code. */
@@ -45332,6 +45255,8 @@ export type Routes = {
45332
45255
  created_at: string;
45333
45256
  /** Date and time at which the event occurred. */
45334
45257
  occurred_at: string;
45258
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45259
+ event_description?: string | undefined;
45335
45260
  /** ID of the affected access code. */
45336
45261
  access_code_id: string;
45337
45262
  /** ID of the device associated with the affected access code. */
@@ -45368,6 +45293,8 @@ export type Routes = {
45368
45293
  created_at: string;
45369
45294
  /** Date and time at which the event occurred. */
45370
45295
  occurred_at: string;
45296
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45297
+ event_description?: string | undefined;
45371
45298
  /** ID of the affected access code. */
45372
45299
  access_code_id: string;
45373
45300
  /** ID of the device associated with the affected access code. */
@@ -45404,6 +45331,8 @@ export type Routes = {
45404
45331
  created_at: string;
45405
45332
  /** Date and time at which the event occurred. */
45406
45333
  occurred_at: string;
45334
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45335
+ event_description?: string | undefined;
45407
45336
  /** ID of the affected access code. */
45408
45337
  access_code_id: string;
45409
45338
  /** ID of the device associated with the affected access code. */
@@ -45444,6 +45373,8 @@ export type Routes = {
45444
45373
  created_at: string;
45445
45374
  /** Date and time at which the event occurred. */
45446
45375
  occurred_at: string;
45376
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45377
+ event_description?: string | undefined;
45447
45378
  /** ID of the affected access code. */
45448
45379
  access_code_id: string;
45449
45380
  /** ID of the device associated with the affected access code. */
@@ -45481,6 +45412,8 @@ export type Routes = {
45481
45412
  created_at: string;
45482
45413
  /** Date and time at which the event occurred. */
45483
45414
  occurred_at: string;
45415
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45416
+ event_description?: string | undefined;
45484
45417
  /** ID of the affected access code. */
45485
45418
  access_code_id: string;
45486
45419
  /** ID of the device associated with the affected access code. */
@@ -45507,6 +45440,8 @@ export type Routes = {
45507
45440
  created_at: string;
45508
45441
  /** Date and time at which the event occurred. */
45509
45442
  occurred_at: string;
45443
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45444
+ event_description?: string | undefined;
45510
45445
  /** ID of the affected access code. */
45511
45446
  access_code_id: string;
45512
45447
  /** ID of the device associated with the affected access code. */
@@ -45533,6 +45468,8 @@ export type Routes = {
45533
45468
  created_at: string;
45534
45469
  /** Date and time at which the event occurred. */
45535
45470
  occurred_at: string;
45471
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45472
+ event_description?: string | undefined;
45536
45473
  /** ID of the affected access code. */
45537
45474
  access_code_id: string;
45538
45475
  /** ID of the device associated with the affected access code. */
@@ -45557,6 +45494,8 @@ export type Routes = {
45557
45494
  created_at: string;
45558
45495
  /** Date and time at which the event occurred. */
45559
45496
  occurred_at: string;
45497
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45498
+ event_description?: string | undefined;
45560
45499
  /** ID of the affected access code. */
45561
45500
  access_code_id: string;
45562
45501
  /** ID of the device associated with the affected access code. */
@@ -45635,6 +45574,8 @@ export type Routes = {
45635
45574
  created_at: string;
45636
45575
  /** Date and time at which the event occurred. */
45637
45576
  occurred_at: string;
45577
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45578
+ event_description?: string | undefined;
45638
45579
  /** ID of the affected access code. */
45639
45580
  access_code_id: string;
45640
45581
  /** ID of the device associated with the affected access code. */
@@ -45713,6 +45654,8 @@ export type Routes = {
45713
45654
  created_at: string;
45714
45655
  /** Date and time at which the event occurred. */
45715
45656
  occurred_at: string;
45657
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45658
+ event_description?: string | undefined;
45716
45659
  /** ID of the affected access code. */
45717
45660
  access_code_id: string;
45718
45661
  /** ID of the device associated with the affected access code. */
@@ -45739,6 +45682,8 @@ export type Routes = {
45739
45682
  created_at: string;
45740
45683
  /** Date and time at which the event occurred. */
45741
45684
  occurred_at: string;
45685
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45686
+ event_description?: string | undefined;
45742
45687
  /** ID of the affected access code. */
45743
45688
  access_code_id: string;
45744
45689
  /** ID of the device associated with the affected access code. */
@@ -45817,6 +45762,8 @@ export type Routes = {
45817
45762
  created_at: string;
45818
45763
  /** Date and time at which the event occurred. */
45819
45764
  occurred_at: string;
45765
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45766
+ event_description?: string | undefined;
45820
45767
  /** ID of the affected access code. */
45821
45768
  access_code_id: string;
45822
45769
  /** ID of the device associated with the affected access code. */
@@ -45895,6 +45842,8 @@ export type Routes = {
45895
45842
  created_at: string;
45896
45843
  /** Date and time at which the event occurred. */
45897
45844
  occurred_at: string;
45845
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45846
+ event_description?: string | undefined;
45898
45847
  /** ID of the affected access code. */
45899
45848
  access_code_id: string;
45900
45849
  /** ID of the device associated with the affected access code. */
@@ -45919,6 +45868,8 @@ export type Routes = {
45919
45868
  created_at: string;
45920
45869
  /** Date and time at which the event occurred. */
45921
45870
  occurred_at: string;
45871
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45872
+ event_description?: string | undefined;
45922
45873
  /** ID of the affected access code. */
45923
45874
  access_code_id: string;
45924
45875
  /** ID of the device associated with the affected access code. */
@@ -45943,6 +45894,8 @@ export type Routes = {
45943
45894
  created_at: string;
45944
45895
  /** Date and time at which the event occurred. */
45945
45896
  occurred_at: string;
45897
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45898
+ event_description?: string | undefined;
45946
45899
  /** ID of the affected access code. */
45947
45900
  access_code_id: string;
45948
45901
  /** ID of the device associated with the affected access code. */
@@ -45969,6 +45922,8 @@ export type Routes = {
45969
45922
  created_at: string;
45970
45923
  /** Date and time at which the event occurred. */
45971
45924
  occurred_at: string;
45925
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45926
+ event_description?: string | undefined;
45972
45927
  /** ID of the affected access code. */
45973
45928
  access_code_id: string;
45974
45929
  /** ID of the device associated with the affected access code. */
@@ -45993,6 +45948,8 @@ export type Routes = {
45993
45948
  created_at: string;
45994
45949
  /** Date and time at which the event occurred. */
45995
45950
  occurred_at: string;
45951
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
45952
+ event_description?: string | undefined;
45996
45953
  /** ID of the affected access code. */
45997
45954
  access_code_id: string;
45998
45955
  /** ID of the device associated with the affected access code. */
@@ -46071,6 +46028,8 @@ export type Routes = {
46071
46028
  created_at: string;
46072
46029
  /** Date and time at which the event occurred. */
46073
46030
  occurred_at: string;
46031
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46032
+ event_description?: string | undefined;
46074
46033
  /** ID of the affected access code. */
46075
46034
  access_code_id: string;
46076
46035
  /** ID of the device associated with the affected access code. */
@@ -46095,6 +46054,8 @@ export type Routes = {
46095
46054
  created_at: string;
46096
46055
  /** Date and time at which the event occurred. */
46097
46056
  occurred_at: string;
46057
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46058
+ event_description?: string | undefined;
46098
46059
  /** ID of the affected access code. */
46099
46060
  access_code_id: string;
46100
46061
  /** ID of the device associated with the affected access code. */
@@ -46119,6 +46080,8 @@ export type Routes = {
46119
46080
  created_at: string;
46120
46081
  /** Date and time at which the event occurred. */
46121
46082
  occurred_at: string;
46083
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46084
+ event_description?: string | undefined;
46122
46085
  /** ID of the affected Access Grant. */
46123
46086
  access_grant_id: string;
46124
46087
  event_type: 'access_grant.created';
@@ -46131,6 +46094,8 @@ export type Routes = {
46131
46094
  created_at: string;
46132
46095
  /** Date and time at which the event occurred. */
46133
46096
  occurred_at: string;
46097
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46098
+ event_description?: string | undefined;
46134
46099
  /** ID of the affected Access Grant. */
46135
46100
  access_grant_id: string;
46136
46101
  event_type: 'access_grant.deleted';
@@ -46143,6 +46108,8 @@ export type Routes = {
46143
46108
  created_at: string;
46144
46109
  /** Date and time at which the event occurred. */
46145
46110
  occurred_at: string;
46111
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46112
+ event_description?: string | undefined;
46146
46113
  /** ID of the affected Access Grant. */
46147
46114
  access_grant_id: string;
46148
46115
  event_type: 'access_grant.access_granted_to_all_doors';
@@ -46155,6 +46122,8 @@ export type Routes = {
46155
46122
  created_at: string;
46156
46123
  /** Date and time at which the event occurred. */
46157
46124
  occurred_at: string;
46125
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46126
+ event_description?: string | undefined;
46158
46127
  /** ID of the affected Access Grant. */
46159
46128
  access_grant_id: string;
46160
46129
  event_type: 'access_grant.access_granted_to_door';
@@ -46169,6 +46138,8 @@ export type Routes = {
46169
46138
  created_at: string;
46170
46139
  /** Date and time at which the event occurred. */
46171
46140
  occurred_at: string;
46141
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46142
+ event_description?: string | undefined;
46172
46143
  /** ID of the affected Access Grant. */
46173
46144
  access_grant_id: string;
46174
46145
  event_type: 'access_grant.access_to_door_lost';
@@ -46183,6 +46154,8 @@ export type Routes = {
46183
46154
  created_at: string;
46184
46155
  /** Date and time at which the event occurred. */
46185
46156
  occurred_at: string;
46157
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46158
+ event_description?: string | undefined;
46186
46159
  /** ID of the affected Access Grant. */
46187
46160
  access_grant_id: string;
46188
46161
  event_type: 'access_grant.access_times_changed';
@@ -46201,6 +46174,8 @@ export type Routes = {
46201
46174
  created_at: string;
46202
46175
  /** Date and time at which the event occurred. */
46203
46176
  occurred_at: string;
46177
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46178
+ event_description?: string | undefined;
46204
46179
  /** ID of the affected Access Grant. */
46205
46180
  access_grant_id: string;
46206
46181
  event_type: 'access_grant.could_not_create_requested_access_methods';
@@ -46217,6 +46192,8 @@ export type Routes = {
46217
46192
  created_at: string;
46218
46193
  /** Date and time at which the event occurred. */
46219
46194
  occurred_at: string;
46195
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46196
+ event_description?: string | undefined;
46220
46197
  /** ID of the affected access method. */
46221
46198
  access_method_id: string;
46222
46199
  /** IDs of the access grants associated with this access method. */
@@ -46237,6 +46214,8 @@ export type Routes = {
46237
46214
  created_at: string;
46238
46215
  /** Date and time at which the event occurred. */
46239
46216
  occurred_at: string;
46217
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46218
+ event_description?: string | undefined;
46240
46219
  /** ID of the affected access method. */
46241
46220
  access_method_id: string;
46242
46221
  /** IDs of the access grants associated with this access method. */
@@ -46253,6 +46232,8 @@ export type Routes = {
46253
46232
  created_at: string;
46254
46233
  /** Date and time at which the event occurred. */
46255
46234
  occurred_at: string;
46235
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46236
+ event_description?: string | undefined;
46256
46237
  /** ID of the affected access method. */
46257
46238
  access_method_id: string;
46258
46239
  /** IDs of the access grants associated with this access method. */
@@ -46269,6 +46250,8 @@ export type Routes = {
46269
46250
  created_at: string;
46270
46251
  /** Date and time at which the event occurred. */
46271
46252
  occurred_at: string;
46253
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46254
+ event_description?: string | undefined;
46272
46255
  /** ID of the affected access method. */
46273
46256
  access_method_id: string;
46274
46257
  /** IDs of the access grants associated with this access method. */
@@ -46285,6 +46268,8 @@ export type Routes = {
46285
46268
  created_at: string;
46286
46269
  /** Date and time at which the event occurred. */
46287
46270
  occurred_at: string;
46271
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46272
+ event_description?: string | undefined;
46288
46273
  /** ID of the affected access method. */
46289
46274
  access_method_id: string;
46290
46275
  /** IDs of the access grants associated with this access method. */
@@ -46305,6 +46290,8 @@ export type Routes = {
46305
46290
  created_at: string;
46306
46291
  /** Date and time at which the event occurred. */
46307
46292
  occurred_at: string;
46293
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46294
+ event_description?: string | undefined;
46308
46295
  /** ID of the affected access method. */
46309
46296
  access_method_id: string;
46310
46297
  /** IDs of the access grants associated with this access method. */
@@ -46321,6 +46308,8 @@ export type Routes = {
46321
46308
  created_at: string;
46322
46309
  /** Date and time at which the event occurred. */
46323
46310
  occurred_at: string;
46311
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46312
+ event_description?: string | undefined;
46324
46313
  /** ID of the connected account. */
46325
46314
  connected_account_id?: string | undefined;
46326
46315
  /** ID of the access system. */
@@ -46335,6 +46324,8 @@ export type Routes = {
46335
46324
  created_at: string;
46336
46325
  /** Date and time at which the event occurred. */
46337
46326
  occurred_at: string;
46327
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46328
+ event_description?: string | undefined;
46338
46329
  /** ID of the connected account. */
46339
46330
  connected_account_id?: string | undefined;
46340
46331
  /** ID of the access system. */
@@ -46349,6 +46340,8 @@ export type Routes = {
46349
46340
  created_at: string;
46350
46341
  /** Date and time at which the event occurred. */
46351
46342
  occurred_at: string;
46343
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46344
+ event_description?: string | undefined;
46352
46345
  /** ID of the connected account. */
46353
46346
  connected_account_id?: string | undefined;
46354
46347
  /** ID of the access system. */
@@ -46399,6 +46392,8 @@ export type Routes = {
46399
46392
  created_at: string;
46400
46393
  /** Date and time at which the event occurred. */
46401
46394
  occurred_at: string;
46395
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46396
+ event_description?: string | undefined;
46402
46397
  /** ID of the connected account. */
46403
46398
  connected_account_id?: string | undefined;
46404
46399
  /** ID of the access system. */
@@ -46415,6 +46410,8 @@ export type Routes = {
46415
46410
  created_at: string;
46416
46411
  /** Date and time at which the event occurred. */
46417
46412
  occurred_at: string;
46413
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46414
+ event_description?: string | undefined;
46418
46415
  /** ID of the connected account. */
46419
46416
  connected_account_id?: string | undefined;
46420
46417
  /** ID of the access system. */
@@ -46431,6 +46428,8 @@ export type Routes = {
46431
46428
  created_at: string;
46432
46429
  /** Date and time at which the event occurred. */
46433
46430
  occurred_at: string;
46431
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46432
+ event_description?: string | undefined;
46434
46433
  /** ID of the connected account. */
46435
46434
  connected_account_id?: string | undefined;
46436
46435
  /** ID of the access system. */
@@ -46447,6 +46446,8 @@ export type Routes = {
46447
46446
  created_at: string;
46448
46447
  /** Date and time at which the event occurred. */
46449
46448
  occurred_at: string;
46449
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46450
+ event_description?: string | undefined;
46450
46451
  /** ID of the connected account. */
46451
46452
  connected_account_id?: string | undefined;
46452
46453
  /** ID of the access system. */
@@ -46463,6 +46464,8 @@ export type Routes = {
46463
46464
  created_at: string;
46464
46465
  /** Date and time at which the event occurred. */
46465
46466
  occurred_at: string;
46467
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46468
+ event_description?: string | undefined;
46466
46469
  /** ID of the connected account. */
46467
46470
  connected_account_id?: string | undefined;
46468
46471
  /** ID of the access system. */
@@ -46479,6 +46482,8 @@ export type Routes = {
46479
46482
  created_at: string;
46480
46483
  /** Date and time at which the event occurred. */
46481
46484
  occurred_at: string;
46485
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46486
+ event_description?: string | undefined;
46482
46487
  /** ID of the connected account. */
46483
46488
  connected_account_id?: string | undefined;
46484
46489
  /** ID of the access system. */
@@ -46495,6 +46500,8 @@ export type Routes = {
46495
46500
  created_at: string;
46496
46501
  /** Date and time at which the event occurred. */
46497
46502
  occurred_at: string;
46503
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46504
+ event_description?: string | undefined;
46498
46505
  /** ID of the connected account. */
46499
46506
  connected_account_id?: string | undefined;
46500
46507
  /** ID of the access system. */
@@ -46511,6 +46518,8 @@ export type Routes = {
46511
46518
  created_at: string;
46512
46519
  /** Date and time at which the event occurred. */
46513
46520
  occurred_at: string;
46521
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46522
+ event_description?: string | undefined;
46514
46523
  /** ID of the connected account. */
46515
46524
  connected_account_id?: string | undefined;
46516
46525
  /** ID of the access system. */
@@ -46527,6 +46536,8 @@ export type Routes = {
46527
46536
  created_at: string;
46528
46537
  /** Date and time at which the event occurred. */
46529
46538
  occurred_at: string;
46539
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46540
+ event_description?: string | undefined;
46530
46541
  /** ID of the connected account. */
46531
46542
  connected_account_id?: string | undefined;
46532
46543
  /** ID of the access system. */
@@ -46543,6 +46554,8 @@ export type Routes = {
46543
46554
  created_at: string;
46544
46555
  /** Date and time at which the event occurred. */
46545
46556
  occurred_at: string;
46557
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46558
+ event_description?: string | undefined;
46546
46559
  /** ID of the connected account. */
46547
46560
  connected_account_id?: string | undefined;
46548
46561
  /** ID of the access system. */
@@ -46559,6 +46572,8 @@ export type Routes = {
46559
46572
  created_at: string;
46560
46573
  /** Date and time at which the event occurred. */
46561
46574
  occurred_at: string;
46575
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46576
+ event_description?: string | undefined;
46562
46577
  /** ID of the connected account. */
46563
46578
  connected_account_id?: string | undefined;
46564
46579
  /** ID of the access system. */
@@ -46575,6 +46590,8 @@ export type Routes = {
46575
46590
  created_at: string;
46576
46591
  /** Date and time at which the event occurred. */
46577
46592
  occurred_at: string;
46593
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46594
+ event_description?: string | undefined;
46578
46595
  /** ID of the affected client session. */
46579
46596
  client_session_id: string;
46580
46597
  event_type: 'client_session.deleted';
@@ -46587,6 +46604,8 @@ export type Routes = {
46587
46604
  created_at: string;
46588
46605
  /** Date and time at which the event occurred. */
46589
46606
  occurred_at: string;
46607
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46608
+ event_description?: string | undefined;
46590
46609
  /** ID of the affected connected account. */
46591
46610
  connected_account_id: string;
46592
46611
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -46607,6 +46626,8 @@ export type Routes = {
46607
46626
  created_at: string;
46608
46627
  /** Date and time at which the event occurred. */
46609
46628
  occurred_at: string;
46629
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46630
+ event_description?: string | undefined;
46610
46631
  /** ID of the affected connected account. */
46611
46632
  connected_account_id: string;
46612
46633
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -46625,6 +46646,8 @@ export type Routes = {
46625
46646
  created_at: string;
46626
46647
  /** Date and time at which the event occurred. */
46627
46648
  occurred_at: string;
46649
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46650
+ event_description?: string | undefined;
46628
46651
  /** ID of the affected connected account. */
46629
46652
  connected_account_id: string;
46630
46653
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -46643,6 +46666,8 @@ export type Routes = {
46643
46666
  created_at: string;
46644
46667
  /** Date and time at which the event occurred. */
46645
46668
  occurred_at: string;
46669
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46670
+ event_description?: string | undefined;
46646
46671
  /** ID of the affected connected account. */
46647
46672
  connected_account_id: string;
46648
46673
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -46677,6 +46702,8 @@ export type Routes = {
46677
46702
  created_at: string;
46678
46703
  /** Date and time at which the event occurred. */
46679
46704
  occurred_at: string;
46705
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46706
+ event_description?: string | undefined;
46680
46707
  /** ID of the affected connected account. */
46681
46708
  connected_account_id: string;
46682
46709
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -46693,6 +46720,8 @@ export type Routes = {
46693
46720
  created_at: string;
46694
46721
  /** Date and time at which the event occurred. */
46695
46722
  occurred_at: string;
46723
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46724
+ event_description?: string | undefined;
46696
46725
  /** ID of the affected connected account. */
46697
46726
  connected_account_id: string;
46698
46727
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -46713,6 +46742,8 @@ export type Routes = {
46713
46742
  created_at: string;
46714
46743
  /** Date and time at which the event occurred. */
46715
46744
  occurred_at: string;
46745
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46746
+ event_description?: string | undefined;
46716
46747
  /** ID of the affected connected account. */
46717
46748
  connected_account_id: string;
46718
46749
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -46729,6 +46760,8 @@ export type Routes = {
46729
46760
  created_at: string;
46730
46761
  /** Date and time at which the event occurred. */
46731
46762
  occurred_at: string;
46763
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46764
+ event_description?: string | undefined;
46732
46765
  /** ID of the affected connected account. */
46733
46766
  connected_account_id: string;
46734
46767
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -46763,6 +46796,8 @@ export type Routes = {
46763
46796
  created_at: string;
46764
46797
  /** Date and time at which the event occurred. */
46765
46798
  occurred_at: string;
46799
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46800
+ event_description?: string | undefined;
46766
46801
  /** ID of the affected action attempt. */
46767
46802
  action_attempt_id: string;
46768
46803
  /** Type of the action. */
@@ -46783,6 +46818,8 @@ export type Routes = {
46783
46818
  created_at: string;
46784
46819
  /** Date and time at which the event occurred. */
46785
46820
  occurred_at: string;
46821
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46822
+ event_description?: string | undefined;
46786
46823
  /** ID of the affected action attempt. */
46787
46824
  action_attempt_id: string;
46788
46825
  /** Type of the action. */
@@ -46803,6 +46840,8 @@ export type Routes = {
46803
46840
  created_at: string;
46804
46841
  /** Date and time at which the event occurred. */
46805
46842
  occurred_at: string;
46843
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46844
+ event_description?: string | undefined;
46806
46845
  /** ID of the affected action attempt. */
46807
46846
  action_attempt_id: string;
46808
46847
  /** Type of the action. */
@@ -46823,6 +46862,8 @@ export type Routes = {
46823
46862
  created_at: string;
46824
46863
  /** Date and time at which the event occurred. */
46825
46864
  occurred_at: string;
46865
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46866
+ event_description?: string | undefined;
46826
46867
  /** ID of the affected action attempt. */
46827
46868
  action_attempt_id: string;
46828
46869
  /** Type of the action. */
@@ -46843,6 +46884,8 @@ export type Routes = {
46843
46884
  created_at: string;
46844
46885
  /** Date and time at which the event occurred. */
46845
46886
  occurred_at: string;
46887
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46888
+ event_description?: string | undefined;
46846
46889
  /** ID of the affected action attempt. */
46847
46890
  action_attempt_id: string;
46848
46891
  /** Type of the action. */
@@ -46863,6 +46906,8 @@ export type Routes = {
46863
46906
  created_at: string;
46864
46907
  /** Date and time at which the event occurred. */
46865
46908
  occurred_at: string;
46909
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46910
+ event_description?: string | undefined;
46866
46911
  /** ID of the affected action attempt. */
46867
46912
  action_attempt_id: string;
46868
46913
  /** Type of the action. */
@@ -46883,6 +46928,8 @@ export type Routes = {
46883
46928
  created_at: string;
46884
46929
  /** Date and time at which the event occurred. */
46885
46930
  occurred_at: string;
46931
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46932
+ event_description?: string | undefined;
46886
46933
  /** ID of the affected action attempt. */
46887
46934
  action_attempt_id: string;
46888
46935
  /** Type of the action. */
@@ -46903,6 +46950,8 @@ export type Routes = {
46903
46950
  created_at: string;
46904
46951
  /** Date and time at which the event occurred. */
46905
46952
  occurred_at: string;
46953
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46954
+ event_description?: string | undefined;
46906
46955
  /** ID of the affected action attempt. */
46907
46956
  action_attempt_id: string;
46908
46957
  /** Type of the action. */
@@ -46923,6 +46972,8 @@ export type Routes = {
46923
46972
  created_at: string;
46924
46973
  /** Date and time at which the event occurred. */
46925
46974
  occurred_at: string;
46975
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46976
+ event_description?: string | undefined;
46926
46977
  /** ID of the affected Connect Webview. */
46927
46978
  connect_webview_id: string;
46928
46979
  event_type: 'connect_webview.login_succeeded';
@@ -46943,6 +46994,8 @@ export type Routes = {
46943
46994
  created_at: string;
46944
46995
  /** Date and time at which the event occurred. */
46945
46996
  occurred_at: string;
46997
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
46998
+ event_description?: string | undefined;
46946
46999
  /** ID of the affected Connect Webview. */
46947
47000
  connect_webview_id: string;
46948
47001
  event_type: 'connect_webview.login_failed';
@@ -46955,6 +47008,8 @@ export type Routes = {
46955
47008
  created_at: string;
46956
47009
  /** Date and time at which the event occurred. */
46957
47010
  occurred_at: string;
47011
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47012
+ event_description?: string | undefined;
46958
47013
  /** ID of the affected device. */
46959
47014
  device_id: string;
46960
47015
  /** ID of the connected account associated with the event. */
@@ -46979,6 +47034,8 @@ export type Routes = {
46979
47034
  created_at: string;
46980
47035
  /** Date and time at which the event occurred. */
46981
47036
  occurred_at: string;
47037
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47038
+ event_description?: string | undefined;
46982
47039
  /** ID of the affected device. */
46983
47040
  device_id: string;
46984
47041
  /** ID of the connected account associated with the event. */
@@ -47003,6 +47060,8 @@ export type Routes = {
47003
47060
  created_at: string;
47004
47061
  /** Date and time at which the event occurred. */
47005
47062
  occurred_at: string;
47063
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47064
+ event_description?: string | undefined;
47006
47065
  /** ID of the affected device. */
47007
47066
  device_id: string;
47008
47067
  /** ID of the connected account associated with the event. */
@@ -47027,6 +47086,8 @@ export type Routes = {
47027
47086
  created_at: string;
47028
47087
  /** Date and time at which the event occurred. */
47029
47088
  occurred_at: string;
47089
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47090
+ event_description?: string | undefined;
47030
47091
  /** ID of the affected device. */
47031
47092
  device_id: string;
47032
47093
  /** ID of the connected account associated with the event. */
@@ -47051,6 +47112,8 @@ export type Routes = {
47051
47112
  created_at: string;
47052
47113
  /** Date and time at which the event occurred. */
47053
47114
  occurred_at: string;
47115
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47116
+ event_description?: string | undefined;
47054
47117
  /** ID of the affected device. */
47055
47118
  device_id: string;
47056
47119
  /** ID of the connected account associated with the event. */
@@ -47075,6 +47138,8 @@ export type Routes = {
47075
47138
  created_at: string;
47076
47139
  /** Date and time at which the event occurred. */
47077
47140
  occurred_at: string;
47141
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47142
+ event_description?: string | undefined;
47078
47143
  /** ID of the affected device. */
47079
47144
  device_id: string;
47080
47145
  /** ID of the connected account associated with the event. */
@@ -47137,6 +47202,8 @@ export type Routes = {
47137
47202
  created_at: string;
47138
47203
  /** Date and time at which the event occurred. */
47139
47204
  occurred_at: string;
47205
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47206
+ event_description?: string | undefined;
47140
47207
  /** ID of the affected device. */
47141
47208
  device_id: string;
47142
47209
  /** ID of the connected account associated with the event. */
@@ -47199,6 +47266,8 @@ export type Routes = {
47199
47266
  created_at: string;
47200
47267
  /** Date and time at which the event occurred. */
47201
47268
  occurred_at: string;
47269
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47270
+ event_description?: string | undefined;
47202
47271
  /** ID of the affected device. */
47203
47272
  device_id: string;
47204
47273
  /** ID of the connected account associated with the event. */
@@ -47223,6 +47292,8 @@ export type Routes = {
47223
47292
  created_at: string;
47224
47293
  /** Date and time at which the event occurred. */
47225
47294
  occurred_at: string;
47295
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47296
+ event_description?: string | undefined;
47226
47297
  /** ID of the affected device. */
47227
47298
  device_id: string;
47228
47299
  /** ID of the connected account associated with the event. */
@@ -47249,6 +47320,8 @@ export type Routes = {
47249
47320
  created_at: string;
47250
47321
  /** Date and time at which the event occurred. */
47251
47322
  occurred_at: string;
47323
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47324
+ event_description?: string | undefined;
47252
47325
  /** ID of the affected device. */
47253
47326
  device_id: string;
47254
47327
  /** ID of the connected account associated with the event. */
@@ -47277,6 +47350,8 @@ export type Routes = {
47277
47350
  created_at: string;
47278
47351
  /** Date and time at which the event occurred. */
47279
47352
  occurred_at: string;
47353
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47354
+ event_description?: string | undefined;
47280
47355
  /** ID of the affected device. */
47281
47356
  device_id: string;
47282
47357
  /** ID of the connected account associated with the event. */
@@ -47301,6 +47376,8 @@ export type Routes = {
47301
47376
  created_at: string;
47302
47377
  /** Date and time at which the event occurred. */
47303
47378
  occurred_at: string;
47379
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47380
+ event_description?: string | undefined;
47304
47381
  /** ID of the affected device. */
47305
47382
  device_id: string;
47306
47383
  /** ID of the connected account associated with the event. */
@@ -47327,6 +47404,8 @@ export type Routes = {
47327
47404
  created_at: string;
47328
47405
  /** Date and time at which the event occurred. */
47329
47406
  occurred_at: string;
47407
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47408
+ event_description?: string | undefined;
47330
47409
  /** ID of the affected device. */
47331
47410
  device_id: string;
47332
47411
  /** ID of the connected account associated with the event. */
@@ -47351,6 +47430,8 @@ export type Routes = {
47351
47430
  created_at: string;
47352
47431
  /** Date and time at which the event occurred. */
47353
47432
  occurred_at: string;
47433
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47434
+ event_description?: string | undefined;
47354
47435
  /** ID of the affected device. */
47355
47436
  device_id: string;
47356
47437
  /** ID of the connected account associated with the event. */
@@ -47375,6 +47456,8 @@ export type Routes = {
47375
47456
  created_at: string;
47376
47457
  /** Date and time at which the event occurred. */
47377
47458
  occurred_at: string;
47459
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47460
+ event_description?: string | undefined;
47378
47461
  /** ID of the affected device. */
47379
47462
  device_id: string;
47380
47463
  /** ID of the connected account associated with the event. */
@@ -47399,6 +47482,8 @@ export type Routes = {
47399
47482
  created_at: string;
47400
47483
  /** Date and time at which the event occurred. */
47401
47484
  occurred_at: string;
47485
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47486
+ event_description?: string | undefined;
47402
47487
  /** ID of the affected device. */
47403
47488
  device_id: string;
47404
47489
  /** ID of the connected account associated with the event. */
@@ -47423,6 +47508,8 @@ export type Routes = {
47423
47508
  created_at: string;
47424
47509
  /** Date and time at which the event occurred. */
47425
47510
  occurred_at: string;
47511
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47512
+ event_description?: string | undefined;
47426
47513
  /** ID of the affected device. */
47427
47514
  device_id: string;
47428
47515
  /** ID of the connected account associated with the event. */
@@ -47483,6 +47570,8 @@ export type Routes = {
47483
47570
  created_at: string;
47484
47571
  /** Date and time at which the event occurred. */
47485
47572
  occurred_at: string;
47573
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47574
+ event_description?: string | undefined;
47486
47575
  /** ID of the affected device. */
47487
47576
  device_id: string;
47488
47577
  /** ID of the connected account associated with the event. */
@@ -47507,6 +47596,8 @@ export type Routes = {
47507
47596
  created_at: string;
47508
47597
  /** Date and time at which the event occurred. */
47509
47598
  occurred_at: string;
47599
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47600
+ event_description?: string | undefined;
47510
47601
  /** ID of the affected device. */
47511
47602
  device_id: string;
47512
47603
  /** ID of the connected account associated with the event. */
@@ -47567,6 +47658,8 @@ export type Routes = {
47567
47658
  created_at: string;
47568
47659
  /** Date and time at which the event occurred. */
47569
47660
  occurred_at: string;
47661
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47662
+ event_description?: string | undefined;
47570
47663
  /** ID of the affected device. */
47571
47664
  device_id: string;
47572
47665
  /** ID of the connected account associated with the event. */
@@ -47591,6 +47684,8 @@ export type Routes = {
47591
47684
  created_at: string;
47592
47685
  /** Date and time at which the event occurred. */
47593
47686
  occurred_at: string;
47687
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47688
+ event_description?: string | undefined;
47594
47689
  /** ID of the affected device. */
47595
47690
  device_id: string;
47596
47691
  /** ID of the connected account associated with the event. */
@@ -47615,6 +47710,8 @@ export type Routes = {
47615
47710
  created_at: string;
47616
47711
  /** Date and time at which the event occurred. */
47617
47712
  occurred_at: string;
47713
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47714
+ event_description?: string | undefined;
47618
47715
  /** ID of the affected device. */
47619
47716
  device_id: string;
47620
47717
  /** ID of the connected account associated with the event. */
@@ -47675,6 +47772,8 @@ export type Routes = {
47675
47772
  created_at: string;
47676
47773
  /** Date and time at which the event occurred. */
47677
47774
  occurred_at: string;
47775
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47776
+ event_description?: string | undefined;
47678
47777
  /** ID of the affected device. */
47679
47778
  device_id: string;
47680
47779
  /** ID of the connected account associated with the event. */
@@ -47715,6 +47814,8 @@ export type Routes = {
47715
47814
  created_at: string;
47716
47815
  /** Date and time at which the event occurred. */
47717
47816
  occurred_at: string;
47817
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47818
+ event_description?: string | undefined;
47718
47819
  /** ID of the affected device. */
47719
47820
  device_id: string;
47720
47821
  /** ID of the connected account associated with the event. */
@@ -47759,6 +47860,8 @@ export type Routes = {
47759
47860
  created_at: string;
47760
47861
  /** Date and time at which the event occurred. */
47761
47862
  occurred_at: string;
47863
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47864
+ event_description?: string | undefined;
47762
47865
  /** ID of the affected device. */
47763
47866
  device_id?: string | undefined;
47764
47867
  /** ID of the connected account associated with the event. */
@@ -47827,6 +47930,8 @@ export type Routes = {
47827
47930
  created_at: string;
47828
47931
  /** Date and time at which the event occurred. */
47829
47932
  occurred_at: string;
47933
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47934
+ event_description?: string | undefined;
47830
47935
  /** ID of the affected device. */
47831
47936
  device_id?: string | undefined;
47832
47937
  /** ID of the connected account associated with the event. */
@@ -47877,6 +47982,8 @@ export type Routes = {
47877
47982
  created_at: string;
47878
47983
  /** Date and time at which the event occurred. */
47879
47984
  occurred_at: string;
47985
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
47986
+ event_description?: string | undefined;
47880
47987
  /** ID of the affected device. */
47881
47988
  device_id: string;
47882
47989
  /** ID of the connected account associated with the event. */
@@ -47907,6 +48014,8 @@ export type Routes = {
47907
48014
  created_at: string;
47908
48015
  /** Date and time at which the event occurred. */
47909
48016
  occurred_at: string;
48017
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48018
+ event_description?: string | undefined;
47910
48019
  /** ID of the affected device. */
47911
48020
  device_id: string;
47912
48021
  /** ID of the connected account associated with the event. */
@@ -47945,6 +48054,8 @@ export type Routes = {
47945
48054
  created_at: string;
47946
48055
  /** Date and time at which the event occurred. */
47947
48056
  occurred_at: string;
48057
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48058
+ event_description?: string | undefined;
47948
48059
  /** ID of the affected device. */
47949
48060
  device_id: string;
47950
48061
  /** ID of the connected account associated with the event. */
@@ -47981,6 +48092,8 @@ export type Routes = {
47981
48092
  created_at: string;
47982
48093
  /** Date and time at which the event occurred. */
47983
48094
  occurred_at: string;
48095
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48096
+ event_description?: string | undefined;
47984
48097
  /** ID of the affected device. */
47985
48098
  device_id: string;
47986
48099
  /** ID of the connected account associated with the event. */
@@ -48017,6 +48130,8 @@ export type Routes = {
48017
48130
  created_at: string;
48018
48131
  /** Date and time at which the event occurred. */
48019
48132
  occurred_at: string;
48133
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48134
+ event_description?: string | undefined;
48020
48135
  /** ID of the affected device. */
48021
48136
  device_id: string;
48022
48137
  /** ID of the connected account associated with the event. */
@@ -48049,6 +48164,8 @@ export type Routes = {
48049
48164
  created_at: string;
48050
48165
  /** Date and time at which the event occurred. */
48051
48166
  occurred_at: string;
48167
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48168
+ event_description?: string | undefined;
48052
48169
  /** ID of the affected device. */
48053
48170
  device_id: string;
48054
48171
  /** ID of the connected account associated with the event. */
@@ -48077,6 +48194,8 @@ export type Routes = {
48077
48194
  created_at: string;
48078
48195
  /** Date and time at which the event occurred. */
48079
48196
  occurred_at: string;
48197
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48198
+ event_description?: string | undefined;
48080
48199
  /** ID of the affected device. */
48081
48200
  device_id: string;
48082
48201
  /** ID of the connected account associated with the event. */
@@ -48103,6 +48222,8 @@ export type Routes = {
48103
48222
  created_at: string;
48104
48223
  /** Date and time at which the event occurred. */
48105
48224
  occurred_at: string;
48225
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48226
+ event_description?: string | undefined;
48106
48227
  /** ID of the affected device. */
48107
48228
  device_id: string;
48108
48229
  /** ID of the connected account associated with the event. */
@@ -48135,6 +48256,8 @@ export type Routes = {
48135
48256
  created_at: string;
48136
48257
  /** Date and time at which the event occurred. */
48137
48258
  occurred_at: string;
48259
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48260
+ event_description?: string | undefined;
48138
48261
  /** ID of the affected device. */
48139
48262
  device_id: string;
48140
48263
  /** ID of the connected account associated with the event. */
@@ -48163,6 +48286,8 @@ export type Routes = {
48163
48286
  created_at: string;
48164
48287
  /** Date and time at which the event occurred. */
48165
48288
  occurred_at: string;
48289
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48290
+ event_description?: string | undefined;
48166
48291
  /** ID of the affected enrollment automation. */
48167
48292
  enrollment_automation_id: string;
48168
48293
  event_type: 'enrollment_automation.deleted';
@@ -48175,6 +48300,8 @@ export type Routes = {
48175
48300
  created_at: string;
48176
48301
  /** Date and time at which the event occurred. */
48177
48302
  occurred_at: string;
48303
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48304
+ event_description?: string | undefined;
48178
48305
  /** ID of the affected phone device. */
48179
48306
  device_id: string;
48180
48307
  /** Custom metadata of the device; present when device_id is provided. */
@@ -48191,6 +48318,8 @@ export type Routes = {
48191
48318
  created_at: string;
48192
48319
  /** Date and time at which the event occurred. */
48193
48320
  occurred_at: string;
48321
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48322
+ event_description?: string | undefined;
48194
48323
  /** ID of the affected space. */
48195
48324
  space_id: string;
48196
48325
  /** Type of the event. */
@@ -48210,6 +48339,8 @@ export type Routes = {
48210
48339
  created_at: string;
48211
48340
  /** Date and time at which the event occurred. */
48212
48341
  occurred_at: string;
48342
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48343
+ event_description?: string | undefined;
48213
48344
  /** ID of the affected space. */
48214
48345
  space_id: string;
48215
48346
  /** Type of the event. */
@@ -48229,6 +48360,8 @@ export type Routes = {
48229
48360
  created_at: string;
48230
48361
  /** Date and time at which the event occurred. */
48231
48362
  occurred_at: string;
48363
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48364
+ event_description?: string | undefined;
48232
48365
  /** ID of the affected space. */
48233
48366
  space_id: string;
48234
48367
  /** Type of the event. */
@@ -48318,6 +48451,8 @@ export type Routes = {
48318
48451
  created_at: string;
48319
48452
  /** Date and time at which the event occurred. */
48320
48453
  occurred_at: string;
48454
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48455
+ event_description?: string | undefined;
48321
48456
  /** ID of the affected access code. */
48322
48457
  access_code_id: string;
48323
48458
  /** ID of the device associated with the affected access code. */
@@ -48342,6 +48477,8 @@ export type Routes = {
48342
48477
  created_at: string;
48343
48478
  /** Date and time at which the event occurred. */
48344
48479
  occurred_at: string;
48480
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48481
+ event_description?: string | undefined;
48345
48482
  /** ID of the affected access code. */
48346
48483
  access_code_id: string;
48347
48484
  /** ID of the device associated with the affected access code. */
@@ -48377,6 +48514,8 @@ export type Routes = {
48377
48514
  created_at: string;
48378
48515
  /** Date and time at which the event occurred. */
48379
48516
  occurred_at: string;
48517
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48518
+ event_description?: string | undefined;
48380
48519
  /** ID of the affected access code. */
48381
48520
  access_code_id: string;
48382
48521
  /** ID of the device associated with the affected access code. */
@@ -48413,6 +48552,8 @@ export type Routes = {
48413
48552
  created_at: string;
48414
48553
  /** Date and time at which the event occurred. */
48415
48554
  occurred_at: string;
48555
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48556
+ event_description?: string | undefined;
48416
48557
  /** ID of the affected access code. */
48417
48558
  access_code_id: string;
48418
48559
  /** ID of the device associated with the affected access code. */
@@ -48449,6 +48590,8 @@ export type Routes = {
48449
48590
  created_at: string;
48450
48591
  /** Date and time at which the event occurred. */
48451
48592
  occurred_at: string;
48593
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48594
+ event_description?: string | undefined;
48452
48595
  /** ID of the affected access code. */
48453
48596
  access_code_id: string;
48454
48597
  /** ID of the device associated with the affected access code. */
@@ -48489,6 +48632,8 @@ export type Routes = {
48489
48632
  created_at: string;
48490
48633
  /** Date and time at which the event occurred. */
48491
48634
  occurred_at: string;
48635
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48636
+ event_description?: string | undefined;
48492
48637
  /** ID of the affected access code. */
48493
48638
  access_code_id: string;
48494
48639
  /** ID of the device associated with the affected access code. */
@@ -48526,6 +48671,8 @@ export type Routes = {
48526
48671
  created_at: string;
48527
48672
  /** Date and time at which the event occurred. */
48528
48673
  occurred_at: string;
48674
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48675
+ event_description?: string | undefined;
48529
48676
  /** ID of the affected access code. */
48530
48677
  access_code_id: string;
48531
48678
  /** ID of the device associated with the affected access code. */
@@ -48552,6 +48699,8 @@ export type Routes = {
48552
48699
  created_at: string;
48553
48700
  /** Date and time at which the event occurred. */
48554
48701
  occurred_at: string;
48702
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48703
+ event_description?: string | undefined;
48555
48704
  /** ID of the affected access code. */
48556
48705
  access_code_id: string;
48557
48706
  /** ID of the device associated with the affected access code. */
@@ -48578,6 +48727,8 @@ export type Routes = {
48578
48727
  created_at: string;
48579
48728
  /** Date and time at which the event occurred. */
48580
48729
  occurred_at: string;
48730
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48731
+ event_description?: string | undefined;
48581
48732
  /** ID of the affected access code. */
48582
48733
  access_code_id: string;
48583
48734
  /** ID of the device associated with the affected access code. */
@@ -48602,6 +48753,8 @@ export type Routes = {
48602
48753
  created_at: string;
48603
48754
  /** Date and time at which the event occurred. */
48604
48755
  occurred_at: string;
48756
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48757
+ event_description?: string | undefined;
48605
48758
  /** ID of the affected access code. */
48606
48759
  access_code_id: string;
48607
48760
  /** ID of the device associated with the affected access code. */
@@ -48680,6 +48833,8 @@ export type Routes = {
48680
48833
  created_at: string;
48681
48834
  /** Date and time at which the event occurred. */
48682
48835
  occurred_at: string;
48836
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48837
+ event_description?: string | undefined;
48683
48838
  /** ID of the affected access code. */
48684
48839
  access_code_id: string;
48685
48840
  /** ID of the device associated with the affected access code. */
@@ -48758,6 +48913,8 @@ export type Routes = {
48758
48913
  created_at: string;
48759
48914
  /** Date and time at which the event occurred. */
48760
48915
  occurred_at: string;
48916
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48917
+ event_description?: string | undefined;
48761
48918
  /** ID of the affected access code. */
48762
48919
  access_code_id: string;
48763
48920
  /** ID of the device associated with the affected access code. */
@@ -48784,6 +48941,8 @@ export type Routes = {
48784
48941
  created_at: string;
48785
48942
  /** Date and time at which the event occurred. */
48786
48943
  occurred_at: string;
48944
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
48945
+ event_description?: string | undefined;
48787
48946
  /** ID of the affected access code. */
48788
48947
  access_code_id: string;
48789
48948
  /** ID of the device associated with the affected access code. */
@@ -48862,6 +49021,8 @@ export type Routes = {
48862
49021
  created_at: string;
48863
49022
  /** Date and time at which the event occurred. */
48864
49023
  occurred_at: string;
49024
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49025
+ event_description?: string | undefined;
48865
49026
  /** ID of the affected access code. */
48866
49027
  access_code_id: string;
48867
49028
  /** ID of the device associated with the affected access code. */
@@ -48940,6 +49101,8 @@ export type Routes = {
48940
49101
  created_at: string;
48941
49102
  /** Date and time at which the event occurred. */
48942
49103
  occurred_at: string;
49104
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49105
+ event_description?: string | undefined;
48943
49106
  /** ID of the affected access code. */
48944
49107
  access_code_id: string;
48945
49108
  /** ID of the device associated with the affected access code. */
@@ -48964,6 +49127,8 @@ export type Routes = {
48964
49127
  created_at: string;
48965
49128
  /** Date and time at which the event occurred. */
48966
49129
  occurred_at: string;
49130
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49131
+ event_description?: string | undefined;
48967
49132
  /** ID of the affected access code. */
48968
49133
  access_code_id: string;
48969
49134
  /** ID of the device associated with the affected access code. */
@@ -48988,6 +49153,8 @@ export type Routes = {
48988
49153
  created_at: string;
48989
49154
  /** Date and time at which the event occurred. */
48990
49155
  occurred_at: string;
49156
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49157
+ event_description?: string | undefined;
48991
49158
  /** ID of the affected access code. */
48992
49159
  access_code_id: string;
48993
49160
  /** ID of the device associated with the affected access code. */
@@ -49014,6 +49181,8 @@ export type Routes = {
49014
49181
  created_at: string;
49015
49182
  /** Date and time at which the event occurred. */
49016
49183
  occurred_at: string;
49184
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49185
+ event_description?: string | undefined;
49017
49186
  /** ID of the affected access code. */
49018
49187
  access_code_id: string;
49019
49188
  /** ID of the device associated with the affected access code. */
@@ -49038,6 +49207,8 @@ export type Routes = {
49038
49207
  created_at: string;
49039
49208
  /** Date and time at which the event occurred. */
49040
49209
  occurred_at: string;
49210
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49211
+ event_description?: string | undefined;
49041
49212
  /** ID of the affected access code. */
49042
49213
  access_code_id: string;
49043
49214
  /** ID of the device associated with the affected access code. */
@@ -49116,6 +49287,8 @@ export type Routes = {
49116
49287
  created_at: string;
49117
49288
  /** Date and time at which the event occurred. */
49118
49289
  occurred_at: string;
49290
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49291
+ event_description?: string | undefined;
49119
49292
  /** ID of the affected access code. */
49120
49293
  access_code_id: string;
49121
49294
  /** ID of the device associated with the affected access code. */
@@ -49140,6 +49313,8 @@ export type Routes = {
49140
49313
  created_at: string;
49141
49314
  /** Date and time at which the event occurred. */
49142
49315
  occurred_at: string;
49316
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49317
+ event_description?: string | undefined;
49143
49318
  /** ID of the affected access code. */
49144
49319
  access_code_id: string;
49145
49320
  /** ID of the device associated with the affected access code. */
@@ -49164,6 +49339,8 @@ export type Routes = {
49164
49339
  created_at: string;
49165
49340
  /** Date and time at which the event occurred. */
49166
49341
  occurred_at: string;
49342
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49343
+ event_description?: string | undefined;
49167
49344
  /** ID of the affected Access Grant. */
49168
49345
  access_grant_id: string;
49169
49346
  event_type: 'access_grant.created';
@@ -49176,6 +49353,8 @@ export type Routes = {
49176
49353
  created_at: string;
49177
49354
  /** Date and time at which the event occurred. */
49178
49355
  occurred_at: string;
49356
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49357
+ event_description?: string | undefined;
49179
49358
  /** ID of the affected Access Grant. */
49180
49359
  access_grant_id: string;
49181
49360
  event_type: 'access_grant.deleted';
@@ -49188,6 +49367,8 @@ export type Routes = {
49188
49367
  created_at: string;
49189
49368
  /** Date and time at which the event occurred. */
49190
49369
  occurred_at: string;
49370
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49371
+ event_description?: string | undefined;
49191
49372
  /** ID of the affected Access Grant. */
49192
49373
  access_grant_id: string;
49193
49374
  event_type: 'access_grant.access_granted_to_all_doors';
@@ -49200,6 +49381,8 @@ export type Routes = {
49200
49381
  created_at: string;
49201
49382
  /** Date and time at which the event occurred. */
49202
49383
  occurred_at: string;
49384
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49385
+ event_description?: string | undefined;
49203
49386
  /** ID of the affected Access Grant. */
49204
49387
  access_grant_id: string;
49205
49388
  event_type: 'access_grant.access_granted_to_door';
@@ -49214,6 +49397,8 @@ export type Routes = {
49214
49397
  created_at: string;
49215
49398
  /** Date and time at which the event occurred. */
49216
49399
  occurred_at: string;
49400
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49401
+ event_description?: string | undefined;
49217
49402
  /** ID of the affected Access Grant. */
49218
49403
  access_grant_id: string;
49219
49404
  event_type: 'access_grant.access_to_door_lost';
@@ -49228,6 +49413,8 @@ export type Routes = {
49228
49413
  created_at: string;
49229
49414
  /** Date and time at which the event occurred. */
49230
49415
  occurred_at: string;
49416
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49417
+ event_description?: string | undefined;
49231
49418
  /** ID of the affected Access Grant. */
49232
49419
  access_grant_id: string;
49233
49420
  event_type: 'access_grant.access_times_changed';
@@ -49246,6 +49433,8 @@ export type Routes = {
49246
49433
  created_at: string;
49247
49434
  /** Date and time at which the event occurred. */
49248
49435
  occurred_at: string;
49436
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49437
+ event_description?: string | undefined;
49249
49438
  /** ID of the affected Access Grant. */
49250
49439
  access_grant_id: string;
49251
49440
  event_type: 'access_grant.could_not_create_requested_access_methods';
@@ -49262,6 +49451,8 @@ export type Routes = {
49262
49451
  created_at: string;
49263
49452
  /** Date and time at which the event occurred. */
49264
49453
  occurred_at: string;
49454
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49455
+ event_description?: string | undefined;
49265
49456
  /** ID of the affected access method. */
49266
49457
  access_method_id: string;
49267
49458
  /** IDs of the access grants associated with this access method. */
@@ -49282,6 +49473,8 @@ export type Routes = {
49282
49473
  created_at: string;
49283
49474
  /** Date and time at which the event occurred. */
49284
49475
  occurred_at: string;
49476
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49477
+ event_description?: string | undefined;
49285
49478
  /** ID of the affected access method. */
49286
49479
  access_method_id: string;
49287
49480
  /** IDs of the access grants associated with this access method. */
@@ -49298,6 +49491,8 @@ export type Routes = {
49298
49491
  created_at: string;
49299
49492
  /** Date and time at which the event occurred. */
49300
49493
  occurred_at: string;
49494
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49495
+ event_description?: string | undefined;
49301
49496
  /** ID of the affected access method. */
49302
49497
  access_method_id: string;
49303
49498
  /** IDs of the access grants associated with this access method. */
@@ -49314,6 +49509,8 @@ export type Routes = {
49314
49509
  created_at: string;
49315
49510
  /** Date and time at which the event occurred. */
49316
49511
  occurred_at: string;
49512
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49513
+ event_description?: string | undefined;
49317
49514
  /** ID of the affected access method. */
49318
49515
  access_method_id: string;
49319
49516
  /** IDs of the access grants associated with this access method. */
@@ -49330,6 +49527,8 @@ export type Routes = {
49330
49527
  created_at: string;
49331
49528
  /** Date and time at which the event occurred. */
49332
49529
  occurred_at: string;
49530
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49531
+ event_description?: string | undefined;
49333
49532
  /** ID of the affected access method. */
49334
49533
  access_method_id: string;
49335
49534
  /** IDs of the access grants associated with this access method. */
@@ -49350,6 +49549,8 @@ export type Routes = {
49350
49549
  created_at: string;
49351
49550
  /** Date and time at which the event occurred. */
49352
49551
  occurred_at: string;
49552
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49553
+ event_description?: string | undefined;
49353
49554
  /** ID of the affected access method. */
49354
49555
  access_method_id: string;
49355
49556
  /** IDs of the access grants associated with this access method. */
@@ -49366,6 +49567,8 @@ export type Routes = {
49366
49567
  created_at: string;
49367
49568
  /** Date and time at which the event occurred. */
49368
49569
  occurred_at: string;
49570
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49571
+ event_description?: string | undefined;
49369
49572
  /** ID of the connected account. */
49370
49573
  connected_account_id?: string | undefined;
49371
49574
  /** ID of the access system. */
@@ -49380,6 +49583,8 @@ export type Routes = {
49380
49583
  created_at: string;
49381
49584
  /** Date and time at which the event occurred. */
49382
49585
  occurred_at: string;
49586
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49587
+ event_description?: string | undefined;
49383
49588
  /** ID of the connected account. */
49384
49589
  connected_account_id?: string | undefined;
49385
49590
  /** ID of the access system. */
@@ -49394,6 +49599,8 @@ export type Routes = {
49394
49599
  created_at: string;
49395
49600
  /** Date and time at which the event occurred. */
49396
49601
  occurred_at: string;
49602
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49603
+ event_description?: string | undefined;
49397
49604
  /** ID of the connected account. */
49398
49605
  connected_account_id?: string | undefined;
49399
49606
  /** ID of the access system. */
@@ -49444,6 +49651,8 @@ export type Routes = {
49444
49651
  created_at: string;
49445
49652
  /** Date and time at which the event occurred. */
49446
49653
  occurred_at: string;
49654
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49655
+ event_description?: string | undefined;
49447
49656
  /** ID of the connected account. */
49448
49657
  connected_account_id?: string | undefined;
49449
49658
  /** ID of the access system. */
@@ -49460,6 +49669,8 @@ export type Routes = {
49460
49669
  created_at: string;
49461
49670
  /** Date and time at which the event occurred. */
49462
49671
  occurred_at: string;
49672
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49673
+ event_description?: string | undefined;
49463
49674
  /** ID of the connected account. */
49464
49675
  connected_account_id?: string | undefined;
49465
49676
  /** ID of the access system. */
@@ -49476,6 +49687,8 @@ export type Routes = {
49476
49687
  created_at: string;
49477
49688
  /** Date and time at which the event occurred. */
49478
49689
  occurred_at: string;
49690
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49691
+ event_description?: string | undefined;
49479
49692
  /** ID of the connected account. */
49480
49693
  connected_account_id?: string | undefined;
49481
49694
  /** ID of the access system. */
@@ -49492,6 +49705,8 @@ export type Routes = {
49492
49705
  created_at: string;
49493
49706
  /** Date and time at which the event occurred. */
49494
49707
  occurred_at: string;
49708
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49709
+ event_description?: string | undefined;
49495
49710
  /** ID of the connected account. */
49496
49711
  connected_account_id?: string | undefined;
49497
49712
  /** ID of the access system. */
@@ -49508,6 +49723,8 @@ export type Routes = {
49508
49723
  created_at: string;
49509
49724
  /** Date and time at which the event occurred. */
49510
49725
  occurred_at: string;
49726
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49727
+ event_description?: string | undefined;
49511
49728
  /** ID of the connected account. */
49512
49729
  connected_account_id?: string | undefined;
49513
49730
  /** ID of the access system. */
@@ -49524,6 +49741,8 @@ export type Routes = {
49524
49741
  created_at: string;
49525
49742
  /** Date and time at which the event occurred. */
49526
49743
  occurred_at: string;
49744
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49745
+ event_description?: string | undefined;
49527
49746
  /** ID of the connected account. */
49528
49747
  connected_account_id?: string | undefined;
49529
49748
  /** ID of the access system. */
@@ -49540,6 +49759,8 @@ export type Routes = {
49540
49759
  created_at: string;
49541
49760
  /** Date and time at which the event occurred. */
49542
49761
  occurred_at: string;
49762
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49763
+ event_description?: string | undefined;
49543
49764
  /** ID of the connected account. */
49544
49765
  connected_account_id?: string | undefined;
49545
49766
  /** ID of the access system. */
@@ -49556,6 +49777,8 @@ export type Routes = {
49556
49777
  created_at: string;
49557
49778
  /** Date and time at which the event occurred. */
49558
49779
  occurred_at: string;
49780
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49781
+ event_description?: string | undefined;
49559
49782
  /** ID of the connected account. */
49560
49783
  connected_account_id?: string | undefined;
49561
49784
  /** ID of the access system. */
@@ -49572,6 +49795,8 @@ export type Routes = {
49572
49795
  created_at: string;
49573
49796
  /** Date and time at which the event occurred. */
49574
49797
  occurred_at: string;
49798
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49799
+ event_description?: string | undefined;
49575
49800
  /** ID of the connected account. */
49576
49801
  connected_account_id?: string | undefined;
49577
49802
  /** ID of the access system. */
@@ -49588,6 +49813,8 @@ export type Routes = {
49588
49813
  created_at: string;
49589
49814
  /** Date and time at which the event occurred. */
49590
49815
  occurred_at: string;
49816
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49817
+ event_description?: string | undefined;
49591
49818
  /** ID of the connected account. */
49592
49819
  connected_account_id?: string | undefined;
49593
49820
  /** ID of the access system. */
@@ -49604,6 +49831,8 @@ export type Routes = {
49604
49831
  created_at: string;
49605
49832
  /** Date and time at which the event occurred. */
49606
49833
  occurred_at: string;
49834
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49835
+ event_description?: string | undefined;
49607
49836
  /** ID of the connected account. */
49608
49837
  connected_account_id?: string | undefined;
49609
49838
  /** ID of the access system. */
@@ -49620,6 +49849,8 @@ export type Routes = {
49620
49849
  created_at: string;
49621
49850
  /** Date and time at which the event occurred. */
49622
49851
  occurred_at: string;
49852
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49853
+ event_description?: string | undefined;
49623
49854
  /** ID of the affected client session. */
49624
49855
  client_session_id: string;
49625
49856
  event_type: 'client_session.deleted';
@@ -49632,6 +49863,8 @@ export type Routes = {
49632
49863
  created_at: string;
49633
49864
  /** Date and time at which the event occurred. */
49634
49865
  occurred_at: string;
49866
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49867
+ event_description?: string | undefined;
49635
49868
  /** ID of the affected connected account. */
49636
49869
  connected_account_id: string;
49637
49870
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -49652,6 +49885,8 @@ export type Routes = {
49652
49885
  created_at: string;
49653
49886
  /** Date and time at which the event occurred. */
49654
49887
  occurred_at: string;
49888
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49889
+ event_description?: string | undefined;
49655
49890
  /** ID of the affected connected account. */
49656
49891
  connected_account_id: string;
49657
49892
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -49670,6 +49905,8 @@ export type Routes = {
49670
49905
  created_at: string;
49671
49906
  /** Date and time at which the event occurred. */
49672
49907
  occurred_at: string;
49908
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49909
+ event_description?: string | undefined;
49673
49910
  /** ID of the affected connected account. */
49674
49911
  connected_account_id: string;
49675
49912
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -49688,6 +49925,8 @@ export type Routes = {
49688
49925
  created_at: string;
49689
49926
  /** Date and time at which the event occurred. */
49690
49927
  occurred_at: string;
49928
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49929
+ event_description?: string | undefined;
49691
49930
  /** ID of the affected connected account. */
49692
49931
  connected_account_id: string;
49693
49932
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -49722,6 +49961,8 @@ export type Routes = {
49722
49961
  created_at: string;
49723
49962
  /** Date and time at which the event occurred. */
49724
49963
  occurred_at: string;
49964
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49965
+ event_description?: string | undefined;
49725
49966
  /** ID of the affected connected account. */
49726
49967
  connected_account_id: string;
49727
49968
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -49738,6 +49979,8 @@ export type Routes = {
49738
49979
  created_at: string;
49739
49980
  /** Date and time at which the event occurred. */
49740
49981
  occurred_at: string;
49982
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
49983
+ event_description?: string | undefined;
49741
49984
  /** ID of the affected connected account. */
49742
49985
  connected_account_id: string;
49743
49986
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -49758,6 +50001,8 @@ export type Routes = {
49758
50001
  created_at: string;
49759
50002
  /** Date and time at which the event occurred. */
49760
50003
  occurred_at: string;
50004
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50005
+ event_description?: string | undefined;
49761
50006
  /** ID of the affected connected account. */
49762
50007
  connected_account_id: string;
49763
50008
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -49774,6 +50019,8 @@ export type Routes = {
49774
50019
  created_at: string;
49775
50020
  /** Date and time at which the event occurred. */
49776
50021
  occurred_at: string;
50022
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50023
+ event_description?: string | undefined;
49777
50024
  /** ID of the affected connected account. */
49778
50025
  connected_account_id: string;
49779
50026
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -49808,6 +50055,8 @@ export type Routes = {
49808
50055
  created_at: string;
49809
50056
  /** Date and time at which the event occurred. */
49810
50057
  occurred_at: string;
50058
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50059
+ event_description?: string | undefined;
49811
50060
  /** ID of the affected action attempt. */
49812
50061
  action_attempt_id: string;
49813
50062
  /** Type of the action. */
@@ -49828,6 +50077,8 @@ export type Routes = {
49828
50077
  created_at: string;
49829
50078
  /** Date and time at which the event occurred. */
49830
50079
  occurred_at: string;
50080
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50081
+ event_description?: string | undefined;
49831
50082
  /** ID of the affected action attempt. */
49832
50083
  action_attempt_id: string;
49833
50084
  /** Type of the action. */
@@ -49848,6 +50099,8 @@ export type Routes = {
49848
50099
  created_at: string;
49849
50100
  /** Date and time at which the event occurred. */
49850
50101
  occurred_at: string;
50102
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50103
+ event_description?: string | undefined;
49851
50104
  /** ID of the affected action attempt. */
49852
50105
  action_attempt_id: string;
49853
50106
  /** Type of the action. */
@@ -49868,6 +50121,8 @@ export type Routes = {
49868
50121
  created_at: string;
49869
50122
  /** Date and time at which the event occurred. */
49870
50123
  occurred_at: string;
50124
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50125
+ event_description?: string | undefined;
49871
50126
  /** ID of the affected action attempt. */
49872
50127
  action_attempt_id: string;
49873
50128
  /** Type of the action. */
@@ -49888,6 +50143,8 @@ export type Routes = {
49888
50143
  created_at: string;
49889
50144
  /** Date and time at which the event occurred. */
49890
50145
  occurred_at: string;
50146
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50147
+ event_description?: string | undefined;
49891
50148
  /** ID of the affected action attempt. */
49892
50149
  action_attempt_id: string;
49893
50150
  /** Type of the action. */
@@ -49908,6 +50165,8 @@ export type Routes = {
49908
50165
  created_at: string;
49909
50166
  /** Date and time at which the event occurred. */
49910
50167
  occurred_at: string;
50168
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50169
+ event_description?: string | undefined;
49911
50170
  /** ID of the affected action attempt. */
49912
50171
  action_attempt_id: string;
49913
50172
  /** Type of the action. */
@@ -49928,6 +50187,8 @@ export type Routes = {
49928
50187
  created_at: string;
49929
50188
  /** Date and time at which the event occurred. */
49930
50189
  occurred_at: string;
50190
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50191
+ event_description?: string | undefined;
49931
50192
  /** ID of the affected action attempt. */
49932
50193
  action_attempt_id: string;
49933
50194
  /** Type of the action. */
@@ -49948,6 +50209,8 @@ export type Routes = {
49948
50209
  created_at: string;
49949
50210
  /** Date and time at which the event occurred. */
49950
50211
  occurred_at: string;
50212
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50213
+ event_description?: string | undefined;
49951
50214
  /** ID of the affected action attempt. */
49952
50215
  action_attempt_id: string;
49953
50216
  /** Type of the action. */
@@ -49968,6 +50231,8 @@ export type Routes = {
49968
50231
  created_at: string;
49969
50232
  /** Date and time at which the event occurred. */
49970
50233
  occurred_at: string;
50234
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50235
+ event_description?: string | undefined;
49971
50236
  /** ID of the affected Connect Webview. */
49972
50237
  connect_webview_id: string;
49973
50238
  event_type: 'connect_webview.login_succeeded';
@@ -49988,6 +50253,8 @@ export type Routes = {
49988
50253
  created_at: string;
49989
50254
  /** Date and time at which the event occurred. */
49990
50255
  occurred_at: string;
50256
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50257
+ event_description?: string | undefined;
49991
50258
  /** ID of the affected Connect Webview. */
49992
50259
  connect_webview_id: string;
49993
50260
  event_type: 'connect_webview.login_failed';
@@ -50000,6 +50267,8 @@ export type Routes = {
50000
50267
  created_at: string;
50001
50268
  /** Date and time at which the event occurred. */
50002
50269
  occurred_at: string;
50270
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50271
+ event_description?: string | undefined;
50003
50272
  /** ID of the affected device. */
50004
50273
  device_id: string;
50005
50274
  /** ID of the connected account associated with the event. */
@@ -50024,6 +50293,8 @@ export type Routes = {
50024
50293
  created_at: string;
50025
50294
  /** Date and time at which the event occurred. */
50026
50295
  occurred_at: string;
50296
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50297
+ event_description?: string | undefined;
50027
50298
  /** ID of the affected device. */
50028
50299
  device_id: string;
50029
50300
  /** ID of the connected account associated with the event. */
@@ -50048,6 +50319,8 @@ export type Routes = {
50048
50319
  created_at: string;
50049
50320
  /** Date and time at which the event occurred. */
50050
50321
  occurred_at: string;
50322
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50323
+ event_description?: string | undefined;
50051
50324
  /** ID of the affected device. */
50052
50325
  device_id: string;
50053
50326
  /** ID of the connected account associated with the event. */
@@ -50072,6 +50345,8 @@ export type Routes = {
50072
50345
  created_at: string;
50073
50346
  /** Date and time at which the event occurred. */
50074
50347
  occurred_at: string;
50348
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50349
+ event_description?: string | undefined;
50075
50350
  /** ID of the affected device. */
50076
50351
  device_id: string;
50077
50352
  /** ID of the connected account associated with the event. */
@@ -50096,6 +50371,8 @@ export type Routes = {
50096
50371
  created_at: string;
50097
50372
  /** Date and time at which the event occurred. */
50098
50373
  occurred_at: string;
50374
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50375
+ event_description?: string | undefined;
50099
50376
  /** ID of the affected device. */
50100
50377
  device_id: string;
50101
50378
  /** ID of the connected account associated with the event. */
@@ -50120,6 +50397,8 @@ export type Routes = {
50120
50397
  created_at: string;
50121
50398
  /** Date and time at which the event occurred. */
50122
50399
  occurred_at: string;
50400
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50401
+ event_description?: string | undefined;
50123
50402
  /** ID of the affected device. */
50124
50403
  device_id: string;
50125
50404
  /** ID of the connected account associated with the event. */
@@ -50182,6 +50461,8 @@ export type Routes = {
50182
50461
  created_at: string;
50183
50462
  /** Date and time at which the event occurred. */
50184
50463
  occurred_at: string;
50464
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50465
+ event_description?: string | undefined;
50185
50466
  /** ID of the affected device. */
50186
50467
  device_id: string;
50187
50468
  /** ID of the connected account associated with the event. */
@@ -50244,6 +50525,8 @@ export type Routes = {
50244
50525
  created_at: string;
50245
50526
  /** Date and time at which the event occurred. */
50246
50527
  occurred_at: string;
50528
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50529
+ event_description?: string | undefined;
50247
50530
  /** ID of the affected device. */
50248
50531
  device_id: string;
50249
50532
  /** ID of the connected account associated with the event. */
@@ -50268,6 +50551,8 @@ export type Routes = {
50268
50551
  created_at: string;
50269
50552
  /** Date and time at which the event occurred. */
50270
50553
  occurred_at: string;
50554
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50555
+ event_description?: string | undefined;
50271
50556
  /** ID of the affected device. */
50272
50557
  device_id: string;
50273
50558
  /** ID of the connected account associated with the event. */
@@ -50294,6 +50579,8 @@ export type Routes = {
50294
50579
  created_at: string;
50295
50580
  /** Date and time at which the event occurred. */
50296
50581
  occurred_at: string;
50582
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50583
+ event_description?: string | undefined;
50297
50584
  /** ID of the affected device. */
50298
50585
  device_id: string;
50299
50586
  /** ID of the connected account associated with the event. */
@@ -50322,6 +50609,8 @@ export type Routes = {
50322
50609
  created_at: string;
50323
50610
  /** Date and time at which the event occurred. */
50324
50611
  occurred_at: string;
50612
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50613
+ event_description?: string | undefined;
50325
50614
  /** ID of the affected device. */
50326
50615
  device_id: string;
50327
50616
  /** ID of the connected account associated with the event. */
@@ -50346,6 +50635,8 @@ export type Routes = {
50346
50635
  created_at: string;
50347
50636
  /** Date and time at which the event occurred. */
50348
50637
  occurred_at: string;
50638
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50639
+ event_description?: string | undefined;
50349
50640
  /** ID of the affected device. */
50350
50641
  device_id: string;
50351
50642
  /** ID of the connected account associated with the event. */
@@ -50372,6 +50663,8 @@ export type Routes = {
50372
50663
  created_at: string;
50373
50664
  /** Date and time at which the event occurred. */
50374
50665
  occurred_at: string;
50666
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50667
+ event_description?: string | undefined;
50375
50668
  /** ID of the affected device. */
50376
50669
  device_id: string;
50377
50670
  /** ID of the connected account associated with the event. */
@@ -50396,6 +50689,8 @@ export type Routes = {
50396
50689
  created_at: string;
50397
50690
  /** Date and time at which the event occurred. */
50398
50691
  occurred_at: string;
50692
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50693
+ event_description?: string | undefined;
50399
50694
  /** ID of the affected device. */
50400
50695
  device_id: string;
50401
50696
  /** ID of the connected account associated with the event. */
@@ -50420,6 +50715,8 @@ export type Routes = {
50420
50715
  created_at: string;
50421
50716
  /** Date and time at which the event occurred. */
50422
50717
  occurred_at: string;
50718
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50719
+ event_description?: string | undefined;
50423
50720
  /** ID of the affected device. */
50424
50721
  device_id: string;
50425
50722
  /** ID of the connected account associated with the event. */
@@ -50444,6 +50741,8 @@ export type Routes = {
50444
50741
  created_at: string;
50445
50742
  /** Date and time at which the event occurred. */
50446
50743
  occurred_at: string;
50744
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50745
+ event_description?: string | undefined;
50447
50746
  /** ID of the affected device. */
50448
50747
  device_id: string;
50449
50748
  /** ID of the connected account associated with the event. */
@@ -50468,6 +50767,8 @@ export type Routes = {
50468
50767
  created_at: string;
50469
50768
  /** Date and time at which the event occurred. */
50470
50769
  occurred_at: string;
50770
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50771
+ event_description?: string | undefined;
50471
50772
  /** ID of the affected device. */
50472
50773
  device_id: string;
50473
50774
  /** ID of the connected account associated with the event. */
@@ -50528,6 +50829,8 @@ export type Routes = {
50528
50829
  created_at: string;
50529
50830
  /** Date and time at which the event occurred. */
50530
50831
  occurred_at: string;
50832
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50833
+ event_description?: string | undefined;
50531
50834
  /** ID of the affected device. */
50532
50835
  device_id: string;
50533
50836
  /** ID of the connected account associated with the event. */
@@ -50552,6 +50855,8 @@ export type Routes = {
50552
50855
  created_at: string;
50553
50856
  /** Date and time at which the event occurred. */
50554
50857
  occurred_at: string;
50858
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50859
+ event_description?: string | undefined;
50555
50860
  /** ID of the affected device. */
50556
50861
  device_id: string;
50557
50862
  /** ID of the connected account associated with the event. */
@@ -50612,6 +50917,8 @@ export type Routes = {
50612
50917
  created_at: string;
50613
50918
  /** Date and time at which the event occurred. */
50614
50919
  occurred_at: string;
50920
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50921
+ event_description?: string | undefined;
50615
50922
  /** ID of the affected device. */
50616
50923
  device_id: string;
50617
50924
  /** ID of the connected account associated with the event. */
@@ -50636,6 +50943,8 @@ export type Routes = {
50636
50943
  created_at: string;
50637
50944
  /** Date and time at which the event occurred. */
50638
50945
  occurred_at: string;
50946
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50947
+ event_description?: string | undefined;
50639
50948
  /** ID of the affected device. */
50640
50949
  device_id: string;
50641
50950
  /** ID of the connected account associated with the event. */
@@ -50660,6 +50969,8 @@ export type Routes = {
50660
50969
  created_at: string;
50661
50970
  /** Date and time at which the event occurred. */
50662
50971
  occurred_at: string;
50972
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
50973
+ event_description?: string | undefined;
50663
50974
  /** ID of the affected device. */
50664
50975
  device_id: string;
50665
50976
  /** ID of the connected account associated with the event. */
@@ -50720,6 +51031,8 @@ export type Routes = {
50720
51031
  created_at: string;
50721
51032
  /** Date and time at which the event occurred. */
50722
51033
  occurred_at: string;
51034
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51035
+ event_description?: string | undefined;
50723
51036
  /** ID of the affected device. */
50724
51037
  device_id: string;
50725
51038
  /** ID of the connected account associated with the event. */
@@ -50760,6 +51073,8 @@ export type Routes = {
50760
51073
  created_at: string;
50761
51074
  /** Date and time at which the event occurred. */
50762
51075
  occurred_at: string;
51076
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51077
+ event_description?: string | undefined;
50763
51078
  /** ID of the affected device. */
50764
51079
  device_id: string;
50765
51080
  /** ID of the connected account associated with the event. */
@@ -50804,6 +51119,8 @@ export type Routes = {
50804
51119
  created_at: string;
50805
51120
  /** Date and time at which the event occurred. */
50806
51121
  occurred_at: string;
51122
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51123
+ event_description?: string | undefined;
50807
51124
  /** ID of the affected device. */
50808
51125
  device_id?: string | undefined;
50809
51126
  /** ID of the connected account associated with the event. */
@@ -50872,6 +51189,8 @@ export type Routes = {
50872
51189
  created_at: string;
50873
51190
  /** Date and time at which the event occurred. */
50874
51191
  occurred_at: string;
51192
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51193
+ event_description?: string | undefined;
50875
51194
  /** ID of the affected device. */
50876
51195
  device_id?: string | undefined;
50877
51196
  /** ID of the connected account associated with the event. */
@@ -50922,6 +51241,8 @@ export type Routes = {
50922
51241
  created_at: string;
50923
51242
  /** Date and time at which the event occurred. */
50924
51243
  occurred_at: string;
51244
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51245
+ event_description?: string | undefined;
50925
51246
  /** ID of the affected device. */
50926
51247
  device_id: string;
50927
51248
  /** ID of the connected account associated with the event. */
@@ -50952,6 +51273,8 @@ export type Routes = {
50952
51273
  created_at: string;
50953
51274
  /** Date and time at which the event occurred. */
50954
51275
  occurred_at: string;
51276
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51277
+ event_description?: string | undefined;
50955
51278
  /** ID of the affected device. */
50956
51279
  device_id: string;
50957
51280
  /** ID of the connected account associated with the event. */
@@ -50990,6 +51313,8 @@ export type Routes = {
50990
51313
  created_at: string;
50991
51314
  /** Date and time at which the event occurred. */
50992
51315
  occurred_at: string;
51316
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51317
+ event_description?: string | undefined;
50993
51318
  /** ID of the affected device. */
50994
51319
  device_id: string;
50995
51320
  /** ID of the connected account associated with the event. */
@@ -51026,6 +51351,8 @@ export type Routes = {
51026
51351
  created_at: string;
51027
51352
  /** Date and time at which the event occurred. */
51028
51353
  occurred_at: string;
51354
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51355
+ event_description?: string | undefined;
51029
51356
  /** ID of the affected device. */
51030
51357
  device_id: string;
51031
51358
  /** ID of the connected account associated with the event. */
@@ -51062,6 +51389,8 @@ export type Routes = {
51062
51389
  created_at: string;
51063
51390
  /** Date and time at which the event occurred. */
51064
51391
  occurred_at: string;
51392
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51393
+ event_description?: string | undefined;
51065
51394
  /** ID of the affected device. */
51066
51395
  device_id: string;
51067
51396
  /** ID of the connected account associated with the event. */
@@ -51094,6 +51423,8 @@ export type Routes = {
51094
51423
  created_at: string;
51095
51424
  /** Date and time at which the event occurred. */
51096
51425
  occurred_at: string;
51426
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51427
+ event_description?: string | undefined;
51097
51428
  /** ID of the affected device. */
51098
51429
  device_id: string;
51099
51430
  /** ID of the connected account associated with the event. */
@@ -51122,6 +51453,8 @@ export type Routes = {
51122
51453
  created_at: string;
51123
51454
  /** Date and time at which the event occurred. */
51124
51455
  occurred_at: string;
51456
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51457
+ event_description?: string | undefined;
51125
51458
  /** ID of the affected device. */
51126
51459
  device_id: string;
51127
51460
  /** ID of the connected account associated with the event. */
@@ -51148,6 +51481,8 @@ export type Routes = {
51148
51481
  created_at: string;
51149
51482
  /** Date and time at which the event occurred. */
51150
51483
  occurred_at: string;
51484
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51485
+ event_description?: string | undefined;
51151
51486
  /** ID of the affected device. */
51152
51487
  device_id: string;
51153
51488
  /** ID of the connected account associated with the event. */
@@ -51180,6 +51515,8 @@ export type Routes = {
51180
51515
  created_at: string;
51181
51516
  /** Date and time at which the event occurred. */
51182
51517
  occurred_at: string;
51518
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51519
+ event_description?: string | undefined;
51183
51520
  /** ID of the affected device. */
51184
51521
  device_id: string;
51185
51522
  /** ID of the connected account associated with the event. */
@@ -51208,6 +51545,8 @@ export type Routes = {
51208
51545
  created_at: string;
51209
51546
  /** Date and time at which the event occurred. */
51210
51547
  occurred_at: string;
51548
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51549
+ event_description?: string | undefined;
51211
51550
  /** ID of the affected enrollment automation. */
51212
51551
  enrollment_automation_id: string;
51213
51552
  event_type: 'enrollment_automation.deleted';
@@ -51220,6 +51559,8 @@ export type Routes = {
51220
51559
  created_at: string;
51221
51560
  /** Date and time at which the event occurred. */
51222
51561
  occurred_at: string;
51562
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51563
+ event_description?: string | undefined;
51223
51564
  /** ID of the affected phone device. */
51224
51565
  device_id: string;
51225
51566
  /** Custom metadata of the device; present when device_id is provided. */
@@ -51236,6 +51577,8 @@ export type Routes = {
51236
51577
  created_at: string;
51237
51578
  /** Date and time at which the event occurred. */
51238
51579
  occurred_at: string;
51580
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51581
+ event_description?: string | undefined;
51239
51582
  /** ID of the affected space. */
51240
51583
  space_id: string;
51241
51584
  /** Type of the event. */
@@ -51255,6 +51598,8 @@ export type Routes = {
51255
51598
  created_at: string;
51256
51599
  /** Date and time at which the event occurred. */
51257
51600
  occurred_at: string;
51601
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51602
+ event_description?: string | undefined;
51258
51603
  /** ID of the affected space. */
51259
51604
  space_id: string;
51260
51605
  /** Type of the event. */
@@ -51274,6 +51619,8 @@ export type Routes = {
51274
51619
  created_at: string;
51275
51620
  /** Date and time at which the event occurred. */
51276
51621
  occurred_at: string;
51622
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
51623
+ event_description?: string | undefined;
51277
51624
  /** ID of the affected space. */
51278
51625
  space_id: string;
51279
51626
  /** Type of the event. */
@@ -77826,6 +78173,8 @@ export type Routes = {
77826
78173
  created_at: string;
77827
78174
  /** Date and time at which the event occurred. */
77828
78175
  occurred_at: string;
78176
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78177
+ event_description?: string | undefined;
77829
78178
  /** ID of the affected access code. */
77830
78179
  access_code_id: string;
77831
78180
  /** ID of the device associated with the affected access code. */
@@ -77850,6 +78199,8 @@ export type Routes = {
77850
78199
  created_at: string;
77851
78200
  /** Date and time at which the event occurred. */
77852
78201
  occurred_at: string;
78202
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78203
+ event_description?: string | undefined;
77853
78204
  /** ID of the affected access code. */
77854
78205
  access_code_id: string;
77855
78206
  /** ID of the device associated with the affected access code. */
@@ -77885,6 +78236,8 @@ export type Routes = {
77885
78236
  created_at: string;
77886
78237
  /** Date and time at which the event occurred. */
77887
78238
  occurred_at: string;
78239
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78240
+ event_description?: string | undefined;
77888
78241
  /** ID of the affected access code. */
77889
78242
  access_code_id: string;
77890
78243
  /** ID of the device associated with the affected access code. */
@@ -77921,6 +78274,8 @@ export type Routes = {
77921
78274
  created_at: string;
77922
78275
  /** Date and time at which the event occurred. */
77923
78276
  occurred_at: string;
78277
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78278
+ event_description?: string | undefined;
77924
78279
  /** ID of the affected access code. */
77925
78280
  access_code_id: string;
77926
78281
  /** ID of the device associated with the affected access code. */
@@ -77957,6 +78312,8 @@ export type Routes = {
77957
78312
  created_at: string;
77958
78313
  /** Date and time at which the event occurred. */
77959
78314
  occurred_at: string;
78315
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78316
+ event_description?: string | undefined;
77960
78317
  /** ID of the affected access code. */
77961
78318
  access_code_id: string;
77962
78319
  /** ID of the device associated with the affected access code. */
@@ -77997,6 +78354,8 @@ export type Routes = {
77997
78354
  created_at: string;
77998
78355
  /** Date and time at which the event occurred. */
77999
78356
  occurred_at: string;
78357
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78358
+ event_description?: string | undefined;
78000
78359
  /** ID of the affected access code. */
78001
78360
  access_code_id: string;
78002
78361
  /** ID of the device associated with the affected access code. */
@@ -78034,6 +78393,8 @@ export type Routes = {
78034
78393
  created_at: string;
78035
78394
  /** Date and time at which the event occurred. */
78036
78395
  occurred_at: string;
78396
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78397
+ event_description?: string | undefined;
78037
78398
  /** ID of the affected access code. */
78038
78399
  access_code_id: string;
78039
78400
  /** ID of the device associated with the affected access code. */
@@ -78060,6 +78421,8 @@ export type Routes = {
78060
78421
  created_at: string;
78061
78422
  /** Date and time at which the event occurred. */
78062
78423
  occurred_at: string;
78424
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78425
+ event_description?: string | undefined;
78063
78426
  /** ID of the affected access code. */
78064
78427
  access_code_id: string;
78065
78428
  /** ID of the device associated with the affected access code. */
@@ -78086,6 +78449,8 @@ export type Routes = {
78086
78449
  created_at: string;
78087
78450
  /** Date and time at which the event occurred. */
78088
78451
  occurred_at: string;
78452
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78453
+ event_description?: string | undefined;
78089
78454
  /** ID of the affected access code. */
78090
78455
  access_code_id: string;
78091
78456
  /** ID of the device associated with the affected access code. */
@@ -78110,6 +78475,8 @@ export type Routes = {
78110
78475
  created_at: string;
78111
78476
  /** Date and time at which the event occurred. */
78112
78477
  occurred_at: string;
78478
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78479
+ event_description?: string | undefined;
78113
78480
  /** ID of the affected access code. */
78114
78481
  access_code_id: string;
78115
78482
  /** ID of the device associated with the affected access code. */
@@ -78188,6 +78555,8 @@ export type Routes = {
78188
78555
  created_at: string;
78189
78556
  /** Date and time at which the event occurred. */
78190
78557
  occurred_at: string;
78558
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78559
+ event_description?: string | undefined;
78191
78560
  /** ID of the affected access code. */
78192
78561
  access_code_id: string;
78193
78562
  /** ID of the device associated with the affected access code. */
@@ -78266,6 +78635,8 @@ export type Routes = {
78266
78635
  created_at: string;
78267
78636
  /** Date and time at which the event occurred. */
78268
78637
  occurred_at: string;
78638
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78639
+ event_description?: string | undefined;
78269
78640
  /** ID of the affected access code. */
78270
78641
  access_code_id: string;
78271
78642
  /** ID of the device associated with the affected access code. */
@@ -78292,6 +78663,8 @@ export type Routes = {
78292
78663
  created_at: string;
78293
78664
  /** Date and time at which the event occurred. */
78294
78665
  occurred_at: string;
78666
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78667
+ event_description?: string | undefined;
78295
78668
  /** ID of the affected access code. */
78296
78669
  access_code_id: string;
78297
78670
  /** ID of the device associated with the affected access code. */
@@ -78370,6 +78743,8 @@ export type Routes = {
78370
78743
  created_at: string;
78371
78744
  /** Date and time at which the event occurred. */
78372
78745
  occurred_at: string;
78746
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78747
+ event_description?: string | undefined;
78373
78748
  /** ID of the affected access code. */
78374
78749
  access_code_id: string;
78375
78750
  /** ID of the device associated with the affected access code. */
@@ -78448,6 +78823,8 @@ export type Routes = {
78448
78823
  created_at: string;
78449
78824
  /** Date and time at which the event occurred. */
78450
78825
  occurred_at: string;
78826
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78827
+ event_description?: string | undefined;
78451
78828
  /** ID of the affected access code. */
78452
78829
  access_code_id: string;
78453
78830
  /** ID of the device associated with the affected access code. */
@@ -78472,6 +78849,8 @@ export type Routes = {
78472
78849
  created_at: string;
78473
78850
  /** Date and time at which the event occurred. */
78474
78851
  occurred_at: string;
78852
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78853
+ event_description?: string | undefined;
78475
78854
  /** ID of the affected access code. */
78476
78855
  access_code_id: string;
78477
78856
  /** ID of the device associated with the affected access code. */
@@ -78496,6 +78875,8 @@ export type Routes = {
78496
78875
  created_at: string;
78497
78876
  /** Date and time at which the event occurred. */
78498
78877
  occurred_at: string;
78878
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78879
+ event_description?: string | undefined;
78499
78880
  /** ID of the affected access code. */
78500
78881
  access_code_id: string;
78501
78882
  /** ID of the device associated with the affected access code. */
@@ -78522,6 +78903,8 @@ export type Routes = {
78522
78903
  created_at: string;
78523
78904
  /** Date and time at which the event occurred. */
78524
78905
  occurred_at: string;
78906
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78907
+ event_description?: string | undefined;
78525
78908
  /** ID of the affected access code. */
78526
78909
  access_code_id: string;
78527
78910
  /** ID of the device associated with the affected access code. */
@@ -78546,6 +78929,8 @@ export type Routes = {
78546
78929
  created_at: string;
78547
78930
  /** Date and time at which the event occurred. */
78548
78931
  occurred_at: string;
78932
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
78933
+ event_description?: string | undefined;
78549
78934
  /** ID of the affected access code. */
78550
78935
  access_code_id: string;
78551
78936
  /** ID of the device associated with the affected access code. */
@@ -78624,6 +79009,8 @@ export type Routes = {
78624
79009
  created_at: string;
78625
79010
  /** Date and time at which the event occurred. */
78626
79011
  occurred_at: string;
79012
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79013
+ event_description?: string | undefined;
78627
79014
  /** ID of the affected access code. */
78628
79015
  access_code_id: string;
78629
79016
  /** ID of the device associated with the affected access code. */
@@ -78648,6 +79035,8 @@ export type Routes = {
78648
79035
  created_at: string;
78649
79036
  /** Date and time at which the event occurred. */
78650
79037
  occurred_at: string;
79038
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79039
+ event_description?: string | undefined;
78651
79040
  /** ID of the affected access code. */
78652
79041
  access_code_id: string;
78653
79042
  /** ID of the device associated with the affected access code. */
@@ -78672,6 +79061,8 @@ export type Routes = {
78672
79061
  created_at: string;
78673
79062
  /** Date and time at which the event occurred. */
78674
79063
  occurred_at: string;
79064
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79065
+ event_description?: string | undefined;
78675
79066
  /** ID of the affected Access Grant. */
78676
79067
  access_grant_id: string;
78677
79068
  event_type: 'access_grant.created';
@@ -78684,6 +79075,8 @@ export type Routes = {
78684
79075
  created_at: string;
78685
79076
  /** Date and time at which the event occurred. */
78686
79077
  occurred_at: string;
79078
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79079
+ event_description?: string | undefined;
78687
79080
  /** ID of the affected Access Grant. */
78688
79081
  access_grant_id: string;
78689
79082
  event_type: 'access_grant.deleted';
@@ -78696,6 +79089,8 @@ export type Routes = {
78696
79089
  created_at: string;
78697
79090
  /** Date and time at which the event occurred. */
78698
79091
  occurred_at: string;
79092
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79093
+ event_description?: string | undefined;
78699
79094
  /** ID of the affected Access Grant. */
78700
79095
  access_grant_id: string;
78701
79096
  event_type: 'access_grant.access_granted_to_all_doors';
@@ -78708,6 +79103,8 @@ export type Routes = {
78708
79103
  created_at: string;
78709
79104
  /** Date and time at which the event occurred. */
78710
79105
  occurred_at: string;
79106
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79107
+ event_description?: string | undefined;
78711
79108
  /** ID of the affected Access Grant. */
78712
79109
  access_grant_id: string;
78713
79110
  event_type: 'access_grant.access_granted_to_door';
@@ -78722,6 +79119,8 @@ export type Routes = {
78722
79119
  created_at: string;
78723
79120
  /** Date and time at which the event occurred. */
78724
79121
  occurred_at: string;
79122
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79123
+ event_description?: string | undefined;
78725
79124
  /** ID of the affected Access Grant. */
78726
79125
  access_grant_id: string;
78727
79126
  event_type: 'access_grant.access_to_door_lost';
@@ -78736,6 +79135,8 @@ export type Routes = {
78736
79135
  created_at: string;
78737
79136
  /** Date and time at which the event occurred. */
78738
79137
  occurred_at: string;
79138
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79139
+ event_description?: string | undefined;
78739
79140
  /** ID of the affected Access Grant. */
78740
79141
  access_grant_id: string;
78741
79142
  event_type: 'access_grant.access_times_changed';
@@ -78754,6 +79155,8 @@ export type Routes = {
78754
79155
  created_at: string;
78755
79156
  /** Date and time at which the event occurred. */
78756
79157
  occurred_at: string;
79158
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79159
+ event_description?: string | undefined;
78757
79160
  /** ID of the affected Access Grant. */
78758
79161
  access_grant_id: string;
78759
79162
  event_type: 'access_grant.could_not_create_requested_access_methods';
@@ -78770,6 +79173,8 @@ export type Routes = {
78770
79173
  created_at: string;
78771
79174
  /** Date and time at which the event occurred. */
78772
79175
  occurred_at: string;
79176
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79177
+ event_description?: string | undefined;
78773
79178
  /** ID of the affected access method. */
78774
79179
  access_method_id: string;
78775
79180
  /** IDs of the access grants associated with this access method. */
@@ -78790,6 +79195,8 @@ export type Routes = {
78790
79195
  created_at: string;
78791
79196
  /** Date and time at which the event occurred. */
78792
79197
  occurred_at: string;
79198
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79199
+ event_description?: string | undefined;
78793
79200
  /** ID of the affected access method. */
78794
79201
  access_method_id: string;
78795
79202
  /** IDs of the access grants associated with this access method. */
@@ -78806,6 +79213,8 @@ export type Routes = {
78806
79213
  created_at: string;
78807
79214
  /** Date and time at which the event occurred. */
78808
79215
  occurred_at: string;
79216
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79217
+ event_description?: string | undefined;
78809
79218
  /** ID of the affected access method. */
78810
79219
  access_method_id: string;
78811
79220
  /** IDs of the access grants associated with this access method. */
@@ -78822,6 +79231,8 @@ export type Routes = {
78822
79231
  created_at: string;
78823
79232
  /** Date and time at which the event occurred. */
78824
79233
  occurred_at: string;
79234
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79235
+ event_description?: string | undefined;
78825
79236
  /** ID of the affected access method. */
78826
79237
  access_method_id: string;
78827
79238
  /** IDs of the access grants associated with this access method. */
@@ -78838,6 +79249,8 @@ export type Routes = {
78838
79249
  created_at: string;
78839
79250
  /** Date and time at which the event occurred. */
78840
79251
  occurred_at: string;
79252
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79253
+ event_description?: string | undefined;
78841
79254
  /** ID of the affected access method. */
78842
79255
  access_method_id: string;
78843
79256
  /** IDs of the access grants associated with this access method. */
@@ -78858,6 +79271,8 @@ export type Routes = {
78858
79271
  created_at: string;
78859
79272
  /** Date and time at which the event occurred. */
78860
79273
  occurred_at: string;
79274
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79275
+ event_description?: string | undefined;
78861
79276
  /** ID of the affected access method. */
78862
79277
  access_method_id: string;
78863
79278
  /** IDs of the access grants associated with this access method. */
@@ -78874,6 +79289,8 @@ export type Routes = {
78874
79289
  created_at: string;
78875
79290
  /** Date and time at which the event occurred. */
78876
79291
  occurred_at: string;
79292
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79293
+ event_description?: string | undefined;
78877
79294
  /** ID of the connected account. */
78878
79295
  connected_account_id?: string | undefined;
78879
79296
  /** ID of the access system. */
@@ -78888,6 +79305,8 @@ export type Routes = {
78888
79305
  created_at: string;
78889
79306
  /** Date and time at which the event occurred. */
78890
79307
  occurred_at: string;
79308
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79309
+ event_description?: string | undefined;
78891
79310
  /** ID of the connected account. */
78892
79311
  connected_account_id?: string | undefined;
78893
79312
  /** ID of the access system. */
@@ -78902,6 +79321,8 @@ export type Routes = {
78902
79321
  created_at: string;
78903
79322
  /** Date and time at which the event occurred. */
78904
79323
  occurred_at: string;
79324
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79325
+ event_description?: string | undefined;
78905
79326
  /** ID of the connected account. */
78906
79327
  connected_account_id?: string | undefined;
78907
79328
  /** ID of the access system. */
@@ -78952,6 +79373,8 @@ export type Routes = {
78952
79373
  created_at: string;
78953
79374
  /** Date and time at which the event occurred. */
78954
79375
  occurred_at: string;
79376
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79377
+ event_description?: string | undefined;
78955
79378
  /** ID of the connected account. */
78956
79379
  connected_account_id?: string | undefined;
78957
79380
  /** ID of the access system. */
@@ -78968,6 +79391,8 @@ export type Routes = {
78968
79391
  created_at: string;
78969
79392
  /** Date and time at which the event occurred. */
78970
79393
  occurred_at: string;
79394
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79395
+ event_description?: string | undefined;
78971
79396
  /** ID of the connected account. */
78972
79397
  connected_account_id?: string | undefined;
78973
79398
  /** ID of the access system. */
@@ -78984,6 +79409,8 @@ export type Routes = {
78984
79409
  created_at: string;
78985
79410
  /** Date and time at which the event occurred. */
78986
79411
  occurred_at: string;
79412
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79413
+ event_description?: string | undefined;
78987
79414
  /** ID of the connected account. */
78988
79415
  connected_account_id?: string | undefined;
78989
79416
  /** ID of the access system. */
@@ -79000,6 +79427,8 @@ export type Routes = {
79000
79427
  created_at: string;
79001
79428
  /** Date and time at which the event occurred. */
79002
79429
  occurred_at: string;
79430
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79431
+ event_description?: string | undefined;
79003
79432
  /** ID of the connected account. */
79004
79433
  connected_account_id?: string | undefined;
79005
79434
  /** ID of the access system. */
@@ -79016,6 +79445,8 @@ export type Routes = {
79016
79445
  created_at: string;
79017
79446
  /** Date and time at which the event occurred. */
79018
79447
  occurred_at: string;
79448
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79449
+ event_description?: string | undefined;
79019
79450
  /** ID of the connected account. */
79020
79451
  connected_account_id?: string | undefined;
79021
79452
  /** ID of the access system. */
@@ -79032,6 +79463,8 @@ export type Routes = {
79032
79463
  created_at: string;
79033
79464
  /** Date and time at which the event occurred. */
79034
79465
  occurred_at: string;
79466
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79467
+ event_description?: string | undefined;
79035
79468
  /** ID of the connected account. */
79036
79469
  connected_account_id?: string | undefined;
79037
79470
  /** ID of the access system. */
@@ -79048,6 +79481,8 @@ export type Routes = {
79048
79481
  created_at: string;
79049
79482
  /** Date and time at which the event occurred. */
79050
79483
  occurred_at: string;
79484
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79485
+ event_description?: string | undefined;
79051
79486
  /** ID of the connected account. */
79052
79487
  connected_account_id?: string | undefined;
79053
79488
  /** ID of the access system. */
@@ -79064,6 +79499,8 @@ export type Routes = {
79064
79499
  created_at: string;
79065
79500
  /** Date and time at which the event occurred. */
79066
79501
  occurred_at: string;
79502
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79503
+ event_description?: string | undefined;
79067
79504
  /** ID of the connected account. */
79068
79505
  connected_account_id?: string | undefined;
79069
79506
  /** ID of the access system. */
@@ -79080,6 +79517,8 @@ export type Routes = {
79080
79517
  created_at: string;
79081
79518
  /** Date and time at which the event occurred. */
79082
79519
  occurred_at: string;
79520
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79521
+ event_description?: string | undefined;
79083
79522
  /** ID of the connected account. */
79084
79523
  connected_account_id?: string | undefined;
79085
79524
  /** ID of the access system. */
@@ -79096,6 +79535,8 @@ export type Routes = {
79096
79535
  created_at: string;
79097
79536
  /** Date and time at which the event occurred. */
79098
79537
  occurred_at: string;
79538
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79539
+ event_description?: string | undefined;
79099
79540
  /** ID of the connected account. */
79100
79541
  connected_account_id?: string | undefined;
79101
79542
  /** ID of the access system. */
@@ -79112,6 +79553,8 @@ export type Routes = {
79112
79553
  created_at: string;
79113
79554
  /** Date and time at which the event occurred. */
79114
79555
  occurred_at: string;
79556
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79557
+ event_description?: string | undefined;
79115
79558
  /** ID of the connected account. */
79116
79559
  connected_account_id?: string | undefined;
79117
79560
  /** ID of the access system. */
@@ -79128,6 +79571,8 @@ export type Routes = {
79128
79571
  created_at: string;
79129
79572
  /** Date and time at which the event occurred. */
79130
79573
  occurred_at: string;
79574
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79575
+ event_description?: string | undefined;
79131
79576
  /** ID of the affected client session. */
79132
79577
  client_session_id: string;
79133
79578
  event_type: 'client_session.deleted';
@@ -79140,6 +79585,8 @@ export type Routes = {
79140
79585
  created_at: string;
79141
79586
  /** Date and time at which the event occurred. */
79142
79587
  occurred_at: string;
79588
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79589
+ event_description?: string | undefined;
79143
79590
  /** ID of the affected connected account. */
79144
79591
  connected_account_id: string;
79145
79592
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -79160,6 +79607,8 @@ export type Routes = {
79160
79607
  created_at: string;
79161
79608
  /** Date and time at which the event occurred. */
79162
79609
  occurred_at: string;
79610
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79611
+ event_description?: string | undefined;
79163
79612
  /** ID of the affected connected account. */
79164
79613
  connected_account_id: string;
79165
79614
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -79178,6 +79627,8 @@ export type Routes = {
79178
79627
  created_at: string;
79179
79628
  /** Date and time at which the event occurred. */
79180
79629
  occurred_at: string;
79630
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79631
+ event_description?: string | undefined;
79181
79632
  /** ID of the affected connected account. */
79182
79633
  connected_account_id: string;
79183
79634
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -79196,6 +79647,8 @@ export type Routes = {
79196
79647
  created_at: string;
79197
79648
  /** Date and time at which the event occurred. */
79198
79649
  occurred_at: string;
79650
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79651
+ event_description?: string | undefined;
79199
79652
  /** ID of the affected connected account. */
79200
79653
  connected_account_id: string;
79201
79654
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -79230,6 +79683,8 @@ export type Routes = {
79230
79683
  created_at: string;
79231
79684
  /** Date and time at which the event occurred. */
79232
79685
  occurred_at: string;
79686
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79687
+ event_description?: string | undefined;
79233
79688
  /** ID of the affected connected account. */
79234
79689
  connected_account_id: string;
79235
79690
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -79246,6 +79701,8 @@ export type Routes = {
79246
79701
  created_at: string;
79247
79702
  /** Date and time at which the event occurred. */
79248
79703
  occurred_at: string;
79704
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79705
+ event_description?: string | undefined;
79249
79706
  /** ID of the affected connected account. */
79250
79707
  connected_account_id: string;
79251
79708
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -79266,6 +79723,8 @@ export type Routes = {
79266
79723
  created_at: string;
79267
79724
  /** Date and time at which the event occurred. */
79268
79725
  occurred_at: string;
79726
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79727
+ event_description?: string | undefined;
79269
79728
  /** ID of the affected connected account. */
79270
79729
  connected_account_id: string;
79271
79730
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -79282,6 +79741,8 @@ export type Routes = {
79282
79741
  created_at: string;
79283
79742
  /** Date and time at which the event occurred. */
79284
79743
  occurred_at: string;
79744
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79745
+ event_description?: string | undefined;
79285
79746
  /** ID of the affected connected account. */
79286
79747
  connected_account_id: string;
79287
79748
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -79316,6 +79777,8 @@ export type Routes = {
79316
79777
  created_at: string;
79317
79778
  /** Date and time at which the event occurred. */
79318
79779
  occurred_at: string;
79780
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79781
+ event_description?: string | undefined;
79319
79782
  /** ID of the affected action attempt. */
79320
79783
  action_attempt_id: string;
79321
79784
  /** Type of the action. */
@@ -79336,6 +79799,8 @@ export type Routes = {
79336
79799
  created_at: string;
79337
79800
  /** Date and time at which the event occurred. */
79338
79801
  occurred_at: string;
79802
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79803
+ event_description?: string | undefined;
79339
79804
  /** ID of the affected action attempt. */
79340
79805
  action_attempt_id: string;
79341
79806
  /** Type of the action. */
@@ -79356,6 +79821,8 @@ export type Routes = {
79356
79821
  created_at: string;
79357
79822
  /** Date and time at which the event occurred. */
79358
79823
  occurred_at: string;
79824
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79825
+ event_description?: string | undefined;
79359
79826
  /** ID of the affected action attempt. */
79360
79827
  action_attempt_id: string;
79361
79828
  /** Type of the action. */
@@ -79376,6 +79843,8 @@ export type Routes = {
79376
79843
  created_at: string;
79377
79844
  /** Date and time at which the event occurred. */
79378
79845
  occurred_at: string;
79846
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79847
+ event_description?: string | undefined;
79379
79848
  /** ID of the affected action attempt. */
79380
79849
  action_attempt_id: string;
79381
79850
  /** Type of the action. */
@@ -79396,6 +79865,8 @@ export type Routes = {
79396
79865
  created_at: string;
79397
79866
  /** Date and time at which the event occurred. */
79398
79867
  occurred_at: string;
79868
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79869
+ event_description?: string | undefined;
79399
79870
  /** ID of the affected action attempt. */
79400
79871
  action_attempt_id: string;
79401
79872
  /** Type of the action. */
@@ -79416,6 +79887,8 @@ export type Routes = {
79416
79887
  created_at: string;
79417
79888
  /** Date and time at which the event occurred. */
79418
79889
  occurred_at: string;
79890
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79891
+ event_description?: string | undefined;
79419
79892
  /** ID of the affected action attempt. */
79420
79893
  action_attempt_id: string;
79421
79894
  /** Type of the action. */
@@ -79436,6 +79909,8 @@ export type Routes = {
79436
79909
  created_at: string;
79437
79910
  /** Date and time at which the event occurred. */
79438
79911
  occurred_at: string;
79912
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79913
+ event_description?: string | undefined;
79439
79914
  /** ID of the affected action attempt. */
79440
79915
  action_attempt_id: string;
79441
79916
  /** Type of the action. */
@@ -79456,6 +79931,8 @@ export type Routes = {
79456
79931
  created_at: string;
79457
79932
  /** Date and time at which the event occurred. */
79458
79933
  occurred_at: string;
79934
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79935
+ event_description?: string | undefined;
79459
79936
  /** ID of the affected action attempt. */
79460
79937
  action_attempt_id: string;
79461
79938
  /** Type of the action. */
@@ -79476,6 +79953,8 @@ export type Routes = {
79476
79953
  created_at: string;
79477
79954
  /** Date and time at which the event occurred. */
79478
79955
  occurred_at: string;
79956
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79957
+ event_description?: string | undefined;
79479
79958
  /** ID of the affected Connect Webview. */
79480
79959
  connect_webview_id: string;
79481
79960
  event_type: 'connect_webview.login_succeeded';
@@ -79496,6 +79975,8 @@ export type Routes = {
79496
79975
  created_at: string;
79497
79976
  /** Date and time at which the event occurred. */
79498
79977
  occurred_at: string;
79978
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79979
+ event_description?: string | undefined;
79499
79980
  /** ID of the affected Connect Webview. */
79500
79981
  connect_webview_id: string;
79501
79982
  event_type: 'connect_webview.login_failed';
@@ -79508,6 +79989,8 @@ export type Routes = {
79508
79989
  created_at: string;
79509
79990
  /** Date and time at which the event occurred. */
79510
79991
  occurred_at: string;
79992
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
79993
+ event_description?: string | undefined;
79511
79994
  /** ID of the affected device. */
79512
79995
  device_id: string;
79513
79996
  /** ID of the connected account associated with the event. */
@@ -79532,6 +80015,8 @@ export type Routes = {
79532
80015
  created_at: string;
79533
80016
  /** Date and time at which the event occurred. */
79534
80017
  occurred_at: string;
80018
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80019
+ event_description?: string | undefined;
79535
80020
  /** ID of the affected device. */
79536
80021
  device_id: string;
79537
80022
  /** ID of the connected account associated with the event. */
@@ -79556,6 +80041,8 @@ export type Routes = {
79556
80041
  created_at: string;
79557
80042
  /** Date and time at which the event occurred. */
79558
80043
  occurred_at: string;
80044
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80045
+ event_description?: string | undefined;
79559
80046
  /** ID of the affected device. */
79560
80047
  device_id: string;
79561
80048
  /** ID of the connected account associated with the event. */
@@ -79580,6 +80067,8 @@ export type Routes = {
79580
80067
  created_at: string;
79581
80068
  /** Date and time at which the event occurred. */
79582
80069
  occurred_at: string;
80070
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80071
+ event_description?: string | undefined;
79583
80072
  /** ID of the affected device. */
79584
80073
  device_id: string;
79585
80074
  /** ID of the connected account associated with the event. */
@@ -79604,6 +80093,8 @@ export type Routes = {
79604
80093
  created_at: string;
79605
80094
  /** Date and time at which the event occurred. */
79606
80095
  occurred_at: string;
80096
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80097
+ event_description?: string | undefined;
79607
80098
  /** ID of the affected device. */
79608
80099
  device_id: string;
79609
80100
  /** ID of the connected account associated with the event. */
@@ -79628,6 +80119,8 @@ export type Routes = {
79628
80119
  created_at: string;
79629
80120
  /** Date and time at which the event occurred. */
79630
80121
  occurred_at: string;
80122
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80123
+ event_description?: string | undefined;
79631
80124
  /** ID of the affected device. */
79632
80125
  device_id: string;
79633
80126
  /** ID of the connected account associated with the event. */
@@ -79690,6 +80183,8 @@ export type Routes = {
79690
80183
  created_at: string;
79691
80184
  /** Date and time at which the event occurred. */
79692
80185
  occurred_at: string;
80186
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80187
+ event_description?: string | undefined;
79693
80188
  /** ID of the affected device. */
79694
80189
  device_id: string;
79695
80190
  /** ID of the connected account associated with the event. */
@@ -79752,6 +80247,8 @@ export type Routes = {
79752
80247
  created_at: string;
79753
80248
  /** Date and time at which the event occurred. */
79754
80249
  occurred_at: string;
80250
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80251
+ event_description?: string | undefined;
79755
80252
  /** ID of the affected device. */
79756
80253
  device_id: string;
79757
80254
  /** ID of the connected account associated with the event. */
@@ -79776,6 +80273,8 @@ export type Routes = {
79776
80273
  created_at: string;
79777
80274
  /** Date and time at which the event occurred. */
79778
80275
  occurred_at: string;
80276
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80277
+ event_description?: string | undefined;
79779
80278
  /** ID of the affected device. */
79780
80279
  device_id: string;
79781
80280
  /** ID of the connected account associated with the event. */
@@ -79802,6 +80301,8 @@ export type Routes = {
79802
80301
  created_at: string;
79803
80302
  /** Date and time at which the event occurred. */
79804
80303
  occurred_at: string;
80304
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80305
+ event_description?: string | undefined;
79805
80306
  /** ID of the affected device. */
79806
80307
  device_id: string;
79807
80308
  /** ID of the connected account associated with the event. */
@@ -79830,6 +80331,8 @@ export type Routes = {
79830
80331
  created_at: string;
79831
80332
  /** Date and time at which the event occurred. */
79832
80333
  occurred_at: string;
80334
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80335
+ event_description?: string | undefined;
79833
80336
  /** ID of the affected device. */
79834
80337
  device_id: string;
79835
80338
  /** ID of the connected account associated with the event. */
@@ -79854,6 +80357,8 @@ export type Routes = {
79854
80357
  created_at: string;
79855
80358
  /** Date and time at which the event occurred. */
79856
80359
  occurred_at: string;
80360
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80361
+ event_description?: string | undefined;
79857
80362
  /** ID of the affected device. */
79858
80363
  device_id: string;
79859
80364
  /** ID of the connected account associated with the event. */
@@ -79880,6 +80385,8 @@ export type Routes = {
79880
80385
  created_at: string;
79881
80386
  /** Date and time at which the event occurred. */
79882
80387
  occurred_at: string;
80388
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80389
+ event_description?: string | undefined;
79883
80390
  /** ID of the affected device. */
79884
80391
  device_id: string;
79885
80392
  /** ID of the connected account associated with the event. */
@@ -79904,6 +80411,8 @@ export type Routes = {
79904
80411
  created_at: string;
79905
80412
  /** Date and time at which the event occurred. */
79906
80413
  occurred_at: string;
80414
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80415
+ event_description?: string | undefined;
79907
80416
  /** ID of the affected device. */
79908
80417
  device_id: string;
79909
80418
  /** ID of the connected account associated with the event. */
@@ -79928,6 +80437,8 @@ export type Routes = {
79928
80437
  created_at: string;
79929
80438
  /** Date and time at which the event occurred. */
79930
80439
  occurred_at: string;
80440
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80441
+ event_description?: string | undefined;
79931
80442
  /** ID of the affected device. */
79932
80443
  device_id: string;
79933
80444
  /** ID of the connected account associated with the event. */
@@ -79952,6 +80463,8 @@ export type Routes = {
79952
80463
  created_at: string;
79953
80464
  /** Date and time at which the event occurred. */
79954
80465
  occurred_at: string;
80466
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80467
+ event_description?: string | undefined;
79955
80468
  /** ID of the affected device. */
79956
80469
  device_id: string;
79957
80470
  /** ID of the connected account associated with the event. */
@@ -79976,6 +80489,8 @@ export type Routes = {
79976
80489
  created_at: string;
79977
80490
  /** Date and time at which the event occurred. */
79978
80491
  occurred_at: string;
80492
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80493
+ event_description?: string | undefined;
79979
80494
  /** ID of the affected device. */
79980
80495
  device_id: string;
79981
80496
  /** ID of the connected account associated with the event. */
@@ -80036,6 +80551,8 @@ export type Routes = {
80036
80551
  created_at: string;
80037
80552
  /** Date and time at which the event occurred. */
80038
80553
  occurred_at: string;
80554
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80555
+ event_description?: string | undefined;
80039
80556
  /** ID of the affected device. */
80040
80557
  device_id: string;
80041
80558
  /** ID of the connected account associated with the event. */
@@ -80060,6 +80577,8 @@ export type Routes = {
80060
80577
  created_at: string;
80061
80578
  /** Date and time at which the event occurred. */
80062
80579
  occurred_at: string;
80580
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80581
+ event_description?: string | undefined;
80063
80582
  /** ID of the affected device. */
80064
80583
  device_id: string;
80065
80584
  /** ID of the connected account associated with the event. */
@@ -80120,6 +80639,8 @@ export type Routes = {
80120
80639
  created_at: string;
80121
80640
  /** Date and time at which the event occurred. */
80122
80641
  occurred_at: string;
80642
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80643
+ event_description?: string | undefined;
80123
80644
  /** ID of the affected device. */
80124
80645
  device_id: string;
80125
80646
  /** ID of the connected account associated with the event. */
@@ -80144,6 +80665,8 @@ export type Routes = {
80144
80665
  created_at: string;
80145
80666
  /** Date and time at which the event occurred. */
80146
80667
  occurred_at: string;
80668
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80669
+ event_description?: string | undefined;
80147
80670
  /** ID of the affected device. */
80148
80671
  device_id: string;
80149
80672
  /** ID of the connected account associated with the event. */
@@ -80168,6 +80691,8 @@ export type Routes = {
80168
80691
  created_at: string;
80169
80692
  /** Date and time at which the event occurred. */
80170
80693
  occurred_at: string;
80694
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80695
+ event_description?: string | undefined;
80171
80696
  /** ID of the affected device. */
80172
80697
  device_id: string;
80173
80698
  /** ID of the connected account associated with the event. */
@@ -80228,6 +80753,8 @@ export type Routes = {
80228
80753
  created_at: string;
80229
80754
  /** Date and time at which the event occurred. */
80230
80755
  occurred_at: string;
80756
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80757
+ event_description?: string | undefined;
80231
80758
  /** ID of the affected device. */
80232
80759
  device_id: string;
80233
80760
  /** ID of the connected account associated with the event. */
@@ -80268,6 +80795,8 @@ export type Routes = {
80268
80795
  created_at: string;
80269
80796
  /** Date and time at which the event occurred. */
80270
80797
  occurred_at: string;
80798
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80799
+ event_description?: string | undefined;
80271
80800
  /** ID of the affected device. */
80272
80801
  device_id: string;
80273
80802
  /** ID of the connected account associated with the event. */
@@ -80312,6 +80841,8 @@ export type Routes = {
80312
80841
  created_at: string;
80313
80842
  /** Date and time at which the event occurred. */
80314
80843
  occurred_at: string;
80844
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80845
+ event_description?: string | undefined;
80315
80846
  /** ID of the affected device. */
80316
80847
  device_id?: string | undefined;
80317
80848
  /** ID of the connected account associated with the event. */
@@ -80380,6 +80911,8 @@ export type Routes = {
80380
80911
  created_at: string;
80381
80912
  /** Date and time at which the event occurred. */
80382
80913
  occurred_at: string;
80914
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80915
+ event_description?: string | undefined;
80383
80916
  /** ID of the affected device. */
80384
80917
  device_id?: string | undefined;
80385
80918
  /** ID of the connected account associated with the event. */
@@ -80430,6 +80963,8 @@ export type Routes = {
80430
80963
  created_at: string;
80431
80964
  /** Date and time at which the event occurred. */
80432
80965
  occurred_at: string;
80966
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80967
+ event_description?: string | undefined;
80433
80968
  /** ID of the affected device. */
80434
80969
  device_id: string;
80435
80970
  /** ID of the connected account associated with the event. */
@@ -80460,6 +80995,8 @@ export type Routes = {
80460
80995
  created_at: string;
80461
80996
  /** Date and time at which the event occurred. */
80462
80997
  occurred_at: string;
80998
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
80999
+ event_description?: string | undefined;
80463
81000
  /** ID of the affected device. */
80464
81001
  device_id: string;
80465
81002
  /** ID of the connected account associated with the event. */
@@ -80498,6 +81035,8 @@ export type Routes = {
80498
81035
  created_at: string;
80499
81036
  /** Date and time at which the event occurred. */
80500
81037
  occurred_at: string;
81038
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
81039
+ event_description?: string | undefined;
80501
81040
  /** ID of the affected device. */
80502
81041
  device_id: string;
80503
81042
  /** ID of the connected account associated with the event. */
@@ -80534,6 +81073,8 @@ export type Routes = {
80534
81073
  created_at: string;
80535
81074
  /** Date and time at which the event occurred. */
80536
81075
  occurred_at: string;
81076
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
81077
+ event_description?: string | undefined;
80537
81078
  /** ID of the affected device. */
80538
81079
  device_id: string;
80539
81080
  /** ID of the connected account associated with the event. */
@@ -80570,6 +81111,8 @@ export type Routes = {
80570
81111
  created_at: string;
80571
81112
  /** Date and time at which the event occurred. */
80572
81113
  occurred_at: string;
81114
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
81115
+ event_description?: string | undefined;
80573
81116
  /** ID of the affected device. */
80574
81117
  device_id: string;
80575
81118
  /** ID of the connected account associated with the event. */
@@ -80602,6 +81145,8 @@ export type Routes = {
80602
81145
  created_at: string;
80603
81146
  /** Date and time at which the event occurred. */
80604
81147
  occurred_at: string;
81148
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
81149
+ event_description?: string | undefined;
80605
81150
  /** ID of the affected device. */
80606
81151
  device_id: string;
80607
81152
  /** ID of the connected account associated with the event. */
@@ -80630,6 +81175,8 @@ export type Routes = {
80630
81175
  created_at: string;
80631
81176
  /** Date and time at which the event occurred. */
80632
81177
  occurred_at: string;
81178
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
81179
+ event_description?: string | undefined;
80633
81180
  /** ID of the affected device. */
80634
81181
  device_id: string;
80635
81182
  /** ID of the connected account associated with the event. */
@@ -80656,6 +81203,8 @@ export type Routes = {
80656
81203
  created_at: string;
80657
81204
  /** Date and time at which the event occurred. */
80658
81205
  occurred_at: string;
81206
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
81207
+ event_description?: string | undefined;
80659
81208
  /** ID of the affected device. */
80660
81209
  device_id: string;
80661
81210
  /** ID of the connected account associated with the event. */
@@ -80688,6 +81237,8 @@ export type Routes = {
80688
81237
  created_at: string;
80689
81238
  /** Date and time at which the event occurred. */
80690
81239
  occurred_at: string;
81240
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
81241
+ event_description?: string | undefined;
80691
81242
  /** ID of the affected device. */
80692
81243
  device_id: string;
80693
81244
  /** ID of the connected account associated with the event. */
@@ -80716,6 +81267,8 @@ export type Routes = {
80716
81267
  created_at: string;
80717
81268
  /** Date and time at which the event occurred. */
80718
81269
  occurred_at: string;
81270
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
81271
+ event_description?: string | undefined;
80719
81272
  /** ID of the affected enrollment automation. */
80720
81273
  enrollment_automation_id: string;
80721
81274
  event_type: 'enrollment_automation.deleted';
@@ -80728,6 +81281,8 @@ export type Routes = {
80728
81281
  created_at: string;
80729
81282
  /** Date and time at which the event occurred. */
80730
81283
  occurred_at: string;
81284
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
81285
+ event_description?: string | undefined;
80731
81286
  /** ID of the affected phone device. */
80732
81287
  device_id: string;
80733
81288
  /** Custom metadata of the device; present when device_id is provided. */
@@ -80744,6 +81299,8 @@ export type Routes = {
80744
81299
  created_at: string;
80745
81300
  /** Date and time at which the event occurred. */
80746
81301
  occurred_at: string;
81302
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
81303
+ event_description?: string | undefined;
80747
81304
  /** ID of the affected space. */
80748
81305
  space_id: string;
80749
81306
  /** Type of the event. */
@@ -80763,6 +81320,8 @@ export type Routes = {
80763
81320
  created_at: string;
80764
81321
  /** Date and time at which the event occurred. */
80765
81322
  occurred_at: string;
81323
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
81324
+ event_description?: string | undefined;
80766
81325
  /** ID of the affected space. */
80767
81326
  space_id: string;
80768
81327
  /** Type of the event. */
@@ -80782,6 +81341,8 @@ export type Routes = {
80782
81341
  created_at: string;
80783
81342
  /** Date and time at which the event occurred. */
80784
81343
  occurred_at: string;
81344
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
81345
+ event_description?: string | undefined;
80785
81346
  /** ID of the affected space. */
80786
81347
  space_id: string;
80787
81348
  /** Type of the event. */
@@ -115623,6 +116184,8 @@ export type Routes = {
115623
116184
  created_at: string;
115624
116185
  /** Date and time at which the event occurred. */
115625
116186
  occurred_at: string;
116187
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116188
+ event_description?: string | undefined;
115626
116189
  /** ID of the affected access code. */
115627
116190
  access_code_id: string;
115628
116191
  /** ID of the device associated with the affected access code. */
@@ -115647,6 +116210,8 @@ export type Routes = {
115647
116210
  created_at: string;
115648
116211
  /** Date and time at which the event occurred. */
115649
116212
  occurred_at: string;
116213
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116214
+ event_description?: string | undefined;
115650
116215
  /** ID of the affected access code. */
115651
116216
  access_code_id: string;
115652
116217
  /** ID of the device associated with the affected access code. */
@@ -115682,6 +116247,8 @@ export type Routes = {
115682
116247
  created_at: string;
115683
116248
  /** Date and time at which the event occurred. */
115684
116249
  occurred_at: string;
116250
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116251
+ event_description?: string | undefined;
115685
116252
  /** ID of the affected access code. */
115686
116253
  access_code_id: string;
115687
116254
  /** ID of the device associated with the affected access code. */
@@ -115718,6 +116285,8 @@ export type Routes = {
115718
116285
  created_at: string;
115719
116286
  /** Date and time at which the event occurred. */
115720
116287
  occurred_at: string;
116288
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116289
+ event_description?: string | undefined;
115721
116290
  /** ID of the affected access code. */
115722
116291
  access_code_id: string;
115723
116292
  /** ID of the device associated with the affected access code. */
@@ -115754,6 +116323,8 @@ export type Routes = {
115754
116323
  created_at: string;
115755
116324
  /** Date and time at which the event occurred. */
115756
116325
  occurred_at: string;
116326
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116327
+ event_description?: string | undefined;
115757
116328
  /** ID of the affected access code. */
115758
116329
  access_code_id: string;
115759
116330
  /** ID of the device associated with the affected access code. */
@@ -115794,6 +116365,8 @@ export type Routes = {
115794
116365
  created_at: string;
115795
116366
  /** Date and time at which the event occurred. */
115796
116367
  occurred_at: string;
116368
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116369
+ event_description?: string | undefined;
115797
116370
  /** ID of the affected access code. */
115798
116371
  access_code_id: string;
115799
116372
  /** ID of the device associated with the affected access code. */
@@ -115831,6 +116404,8 @@ export type Routes = {
115831
116404
  created_at: string;
115832
116405
  /** Date and time at which the event occurred. */
115833
116406
  occurred_at: string;
116407
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116408
+ event_description?: string | undefined;
115834
116409
  /** ID of the affected access code. */
115835
116410
  access_code_id: string;
115836
116411
  /** ID of the device associated with the affected access code. */
@@ -115857,6 +116432,8 @@ export type Routes = {
115857
116432
  created_at: string;
115858
116433
  /** Date and time at which the event occurred. */
115859
116434
  occurred_at: string;
116435
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116436
+ event_description?: string | undefined;
115860
116437
  /** ID of the affected access code. */
115861
116438
  access_code_id: string;
115862
116439
  /** ID of the device associated with the affected access code. */
@@ -115883,6 +116460,8 @@ export type Routes = {
115883
116460
  created_at: string;
115884
116461
  /** Date and time at which the event occurred. */
115885
116462
  occurred_at: string;
116463
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116464
+ event_description?: string | undefined;
115886
116465
  /** ID of the affected access code. */
115887
116466
  access_code_id: string;
115888
116467
  /** ID of the device associated with the affected access code. */
@@ -115907,6 +116486,8 @@ export type Routes = {
115907
116486
  created_at: string;
115908
116487
  /** Date and time at which the event occurred. */
115909
116488
  occurred_at: string;
116489
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116490
+ event_description?: string | undefined;
115910
116491
  /** ID of the affected access code. */
115911
116492
  access_code_id: string;
115912
116493
  /** ID of the device associated with the affected access code. */
@@ -115985,6 +116566,8 @@ export type Routes = {
115985
116566
  created_at: string;
115986
116567
  /** Date and time at which the event occurred. */
115987
116568
  occurred_at: string;
116569
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116570
+ event_description?: string | undefined;
115988
116571
  /** ID of the affected access code. */
115989
116572
  access_code_id: string;
115990
116573
  /** ID of the device associated with the affected access code. */
@@ -116063,6 +116646,8 @@ export type Routes = {
116063
116646
  created_at: string;
116064
116647
  /** Date and time at which the event occurred. */
116065
116648
  occurred_at: string;
116649
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116650
+ event_description?: string | undefined;
116066
116651
  /** ID of the affected access code. */
116067
116652
  access_code_id: string;
116068
116653
  /** ID of the device associated with the affected access code. */
@@ -116089,6 +116674,8 @@ export type Routes = {
116089
116674
  created_at: string;
116090
116675
  /** Date and time at which the event occurred. */
116091
116676
  occurred_at: string;
116677
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116678
+ event_description?: string | undefined;
116092
116679
  /** ID of the affected access code. */
116093
116680
  access_code_id: string;
116094
116681
  /** ID of the device associated with the affected access code. */
@@ -116167,6 +116754,8 @@ export type Routes = {
116167
116754
  created_at: string;
116168
116755
  /** Date and time at which the event occurred. */
116169
116756
  occurred_at: string;
116757
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116758
+ event_description?: string | undefined;
116170
116759
  /** ID of the affected access code. */
116171
116760
  access_code_id: string;
116172
116761
  /** ID of the device associated with the affected access code. */
@@ -116245,6 +116834,8 @@ export type Routes = {
116245
116834
  created_at: string;
116246
116835
  /** Date and time at which the event occurred. */
116247
116836
  occurred_at: string;
116837
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116838
+ event_description?: string | undefined;
116248
116839
  /** ID of the affected access code. */
116249
116840
  access_code_id: string;
116250
116841
  /** ID of the device associated with the affected access code. */
@@ -116269,6 +116860,8 @@ export type Routes = {
116269
116860
  created_at: string;
116270
116861
  /** Date and time at which the event occurred. */
116271
116862
  occurred_at: string;
116863
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116864
+ event_description?: string | undefined;
116272
116865
  /** ID of the affected access code. */
116273
116866
  access_code_id: string;
116274
116867
  /** ID of the device associated with the affected access code. */
@@ -116293,6 +116886,8 @@ export type Routes = {
116293
116886
  created_at: string;
116294
116887
  /** Date and time at which the event occurred. */
116295
116888
  occurred_at: string;
116889
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116890
+ event_description?: string | undefined;
116296
116891
  /** ID of the affected access code. */
116297
116892
  access_code_id: string;
116298
116893
  /** ID of the device associated with the affected access code. */
@@ -116319,6 +116914,8 @@ export type Routes = {
116319
116914
  created_at: string;
116320
116915
  /** Date and time at which the event occurred. */
116321
116916
  occurred_at: string;
116917
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116918
+ event_description?: string | undefined;
116322
116919
  /** ID of the affected access code. */
116323
116920
  access_code_id: string;
116324
116921
  /** ID of the device associated with the affected access code. */
@@ -116343,6 +116940,8 @@ export type Routes = {
116343
116940
  created_at: string;
116344
116941
  /** Date and time at which the event occurred. */
116345
116942
  occurred_at: string;
116943
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
116944
+ event_description?: string | undefined;
116346
116945
  /** ID of the affected access code. */
116347
116946
  access_code_id: string;
116348
116947
  /** ID of the device associated with the affected access code. */
@@ -116421,6 +117020,8 @@ export type Routes = {
116421
117020
  created_at: string;
116422
117021
  /** Date and time at which the event occurred. */
116423
117022
  occurred_at: string;
117023
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117024
+ event_description?: string | undefined;
116424
117025
  /** ID of the affected access code. */
116425
117026
  access_code_id: string;
116426
117027
  /** ID of the device associated with the affected access code. */
@@ -116445,6 +117046,8 @@ export type Routes = {
116445
117046
  created_at: string;
116446
117047
  /** Date and time at which the event occurred. */
116447
117048
  occurred_at: string;
117049
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117050
+ event_description?: string | undefined;
116448
117051
  /** ID of the affected access code. */
116449
117052
  access_code_id: string;
116450
117053
  /** ID of the device associated with the affected access code. */
@@ -116469,6 +117072,8 @@ export type Routes = {
116469
117072
  created_at: string;
116470
117073
  /** Date and time at which the event occurred. */
116471
117074
  occurred_at: string;
117075
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117076
+ event_description?: string | undefined;
116472
117077
  /** ID of the affected Access Grant. */
116473
117078
  access_grant_id: string;
116474
117079
  event_type: 'access_grant.created';
@@ -116481,6 +117086,8 @@ export type Routes = {
116481
117086
  created_at: string;
116482
117087
  /** Date and time at which the event occurred. */
116483
117088
  occurred_at: string;
117089
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117090
+ event_description?: string | undefined;
116484
117091
  /** ID of the affected Access Grant. */
116485
117092
  access_grant_id: string;
116486
117093
  event_type: 'access_grant.deleted';
@@ -116493,6 +117100,8 @@ export type Routes = {
116493
117100
  created_at: string;
116494
117101
  /** Date and time at which the event occurred. */
116495
117102
  occurred_at: string;
117103
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117104
+ event_description?: string | undefined;
116496
117105
  /** ID of the affected Access Grant. */
116497
117106
  access_grant_id: string;
116498
117107
  event_type: 'access_grant.access_granted_to_all_doors';
@@ -116505,6 +117114,8 @@ export type Routes = {
116505
117114
  created_at: string;
116506
117115
  /** Date and time at which the event occurred. */
116507
117116
  occurred_at: string;
117117
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117118
+ event_description?: string | undefined;
116508
117119
  /** ID of the affected Access Grant. */
116509
117120
  access_grant_id: string;
116510
117121
  event_type: 'access_grant.access_granted_to_door';
@@ -116519,6 +117130,8 @@ export type Routes = {
116519
117130
  created_at: string;
116520
117131
  /** Date and time at which the event occurred. */
116521
117132
  occurred_at: string;
117133
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117134
+ event_description?: string | undefined;
116522
117135
  /** ID of the affected Access Grant. */
116523
117136
  access_grant_id: string;
116524
117137
  event_type: 'access_grant.access_to_door_lost';
@@ -116533,6 +117146,8 @@ export type Routes = {
116533
117146
  created_at: string;
116534
117147
  /** Date and time at which the event occurred. */
116535
117148
  occurred_at: string;
117149
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117150
+ event_description?: string | undefined;
116536
117151
  /** ID of the affected Access Grant. */
116537
117152
  access_grant_id: string;
116538
117153
  event_type: 'access_grant.access_times_changed';
@@ -116551,6 +117166,8 @@ export type Routes = {
116551
117166
  created_at: string;
116552
117167
  /** Date and time at which the event occurred. */
116553
117168
  occurred_at: string;
117169
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117170
+ event_description?: string | undefined;
116554
117171
  /** ID of the affected Access Grant. */
116555
117172
  access_grant_id: string;
116556
117173
  event_type: 'access_grant.could_not_create_requested_access_methods';
@@ -116567,6 +117184,8 @@ export type Routes = {
116567
117184
  created_at: string;
116568
117185
  /** Date and time at which the event occurred. */
116569
117186
  occurred_at: string;
117187
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117188
+ event_description?: string | undefined;
116570
117189
  /** ID of the affected access method. */
116571
117190
  access_method_id: string;
116572
117191
  /** IDs of the access grants associated with this access method. */
@@ -116587,6 +117206,8 @@ export type Routes = {
116587
117206
  created_at: string;
116588
117207
  /** Date and time at which the event occurred. */
116589
117208
  occurred_at: string;
117209
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117210
+ event_description?: string | undefined;
116590
117211
  /** ID of the affected access method. */
116591
117212
  access_method_id: string;
116592
117213
  /** IDs of the access grants associated with this access method. */
@@ -116603,6 +117224,8 @@ export type Routes = {
116603
117224
  created_at: string;
116604
117225
  /** Date and time at which the event occurred. */
116605
117226
  occurred_at: string;
117227
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117228
+ event_description?: string | undefined;
116606
117229
  /** ID of the affected access method. */
116607
117230
  access_method_id: string;
116608
117231
  /** IDs of the access grants associated with this access method. */
@@ -116619,6 +117242,8 @@ export type Routes = {
116619
117242
  created_at: string;
116620
117243
  /** Date and time at which the event occurred. */
116621
117244
  occurred_at: string;
117245
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117246
+ event_description?: string | undefined;
116622
117247
  /** ID of the affected access method. */
116623
117248
  access_method_id: string;
116624
117249
  /** IDs of the access grants associated with this access method. */
@@ -116635,6 +117260,8 @@ export type Routes = {
116635
117260
  created_at: string;
116636
117261
  /** Date and time at which the event occurred. */
116637
117262
  occurred_at: string;
117263
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117264
+ event_description?: string | undefined;
116638
117265
  /** ID of the affected access method. */
116639
117266
  access_method_id: string;
116640
117267
  /** IDs of the access grants associated with this access method. */
@@ -116655,6 +117282,8 @@ export type Routes = {
116655
117282
  created_at: string;
116656
117283
  /** Date and time at which the event occurred. */
116657
117284
  occurred_at: string;
117285
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117286
+ event_description?: string | undefined;
116658
117287
  /** ID of the affected access method. */
116659
117288
  access_method_id: string;
116660
117289
  /** IDs of the access grants associated with this access method. */
@@ -116671,6 +117300,8 @@ export type Routes = {
116671
117300
  created_at: string;
116672
117301
  /** Date and time at which the event occurred. */
116673
117302
  occurred_at: string;
117303
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117304
+ event_description?: string | undefined;
116674
117305
  /** ID of the connected account. */
116675
117306
  connected_account_id?: string | undefined;
116676
117307
  /** ID of the access system. */
@@ -116685,6 +117316,8 @@ export type Routes = {
116685
117316
  created_at: string;
116686
117317
  /** Date and time at which the event occurred. */
116687
117318
  occurred_at: string;
117319
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117320
+ event_description?: string | undefined;
116688
117321
  /** ID of the connected account. */
116689
117322
  connected_account_id?: string | undefined;
116690
117323
  /** ID of the access system. */
@@ -116699,6 +117332,8 @@ export type Routes = {
116699
117332
  created_at: string;
116700
117333
  /** Date and time at which the event occurred. */
116701
117334
  occurred_at: string;
117335
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117336
+ event_description?: string | undefined;
116702
117337
  /** ID of the connected account. */
116703
117338
  connected_account_id?: string | undefined;
116704
117339
  /** ID of the access system. */
@@ -116749,6 +117384,8 @@ export type Routes = {
116749
117384
  created_at: string;
116750
117385
  /** Date and time at which the event occurred. */
116751
117386
  occurred_at: string;
117387
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117388
+ event_description?: string | undefined;
116752
117389
  /** ID of the connected account. */
116753
117390
  connected_account_id?: string | undefined;
116754
117391
  /** ID of the access system. */
@@ -116765,6 +117402,8 @@ export type Routes = {
116765
117402
  created_at: string;
116766
117403
  /** Date and time at which the event occurred. */
116767
117404
  occurred_at: string;
117405
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117406
+ event_description?: string | undefined;
116768
117407
  /** ID of the connected account. */
116769
117408
  connected_account_id?: string | undefined;
116770
117409
  /** ID of the access system. */
@@ -116781,6 +117420,8 @@ export type Routes = {
116781
117420
  created_at: string;
116782
117421
  /** Date and time at which the event occurred. */
116783
117422
  occurred_at: string;
117423
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117424
+ event_description?: string | undefined;
116784
117425
  /** ID of the connected account. */
116785
117426
  connected_account_id?: string | undefined;
116786
117427
  /** ID of the access system. */
@@ -116797,6 +117438,8 @@ export type Routes = {
116797
117438
  created_at: string;
116798
117439
  /** Date and time at which the event occurred. */
116799
117440
  occurred_at: string;
117441
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117442
+ event_description?: string | undefined;
116800
117443
  /** ID of the connected account. */
116801
117444
  connected_account_id?: string | undefined;
116802
117445
  /** ID of the access system. */
@@ -116813,6 +117456,8 @@ export type Routes = {
116813
117456
  created_at: string;
116814
117457
  /** Date and time at which the event occurred. */
116815
117458
  occurred_at: string;
117459
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117460
+ event_description?: string | undefined;
116816
117461
  /** ID of the connected account. */
116817
117462
  connected_account_id?: string | undefined;
116818
117463
  /** ID of the access system. */
@@ -116829,6 +117474,8 @@ export type Routes = {
116829
117474
  created_at: string;
116830
117475
  /** Date and time at which the event occurred. */
116831
117476
  occurred_at: string;
117477
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117478
+ event_description?: string | undefined;
116832
117479
  /** ID of the connected account. */
116833
117480
  connected_account_id?: string | undefined;
116834
117481
  /** ID of the access system. */
@@ -116845,6 +117492,8 @@ export type Routes = {
116845
117492
  created_at: string;
116846
117493
  /** Date and time at which the event occurred. */
116847
117494
  occurred_at: string;
117495
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117496
+ event_description?: string | undefined;
116848
117497
  /** ID of the connected account. */
116849
117498
  connected_account_id?: string | undefined;
116850
117499
  /** ID of the access system. */
@@ -116861,6 +117510,8 @@ export type Routes = {
116861
117510
  created_at: string;
116862
117511
  /** Date and time at which the event occurred. */
116863
117512
  occurred_at: string;
117513
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117514
+ event_description?: string | undefined;
116864
117515
  /** ID of the connected account. */
116865
117516
  connected_account_id?: string | undefined;
116866
117517
  /** ID of the access system. */
@@ -116877,6 +117528,8 @@ export type Routes = {
116877
117528
  created_at: string;
116878
117529
  /** Date and time at which the event occurred. */
116879
117530
  occurred_at: string;
117531
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117532
+ event_description?: string | undefined;
116880
117533
  /** ID of the connected account. */
116881
117534
  connected_account_id?: string | undefined;
116882
117535
  /** ID of the access system. */
@@ -116893,6 +117546,8 @@ export type Routes = {
116893
117546
  created_at: string;
116894
117547
  /** Date and time at which the event occurred. */
116895
117548
  occurred_at: string;
117549
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117550
+ event_description?: string | undefined;
116896
117551
  /** ID of the connected account. */
116897
117552
  connected_account_id?: string | undefined;
116898
117553
  /** ID of the access system. */
@@ -116909,6 +117564,8 @@ export type Routes = {
116909
117564
  created_at: string;
116910
117565
  /** Date and time at which the event occurred. */
116911
117566
  occurred_at: string;
117567
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117568
+ event_description?: string | undefined;
116912
117569
  /** ID of the connected account. */
116913
117570
  connected_account_id?: string | undefined;
116914
117571
  /** ID of the access system. */
@@ -116925,6 +117582,8 @@ export type Routes = {
116925
117582
  created_at: string;
116926
117583
  /** Date and time at which the event occurred. */
116927
117584
  occurred_at: string;
117585
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117586
+ event_description?: string | undefined;
116928
117587
  /** ID of the affected client session. */
116929
117588
  client_session_id: string;
116930
117589
  event_type: 'client_session.deleted';
@@ -116937,6 +117596,8 @@ export type Routes = {
116937
117596
  created_at: string;
116938
117597
  /** Date and time at which the event occurred. */
116939
117598
  occurred_at: string;
117599
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117600
+ event_description?: string | undefined;
116940
117601
  /** ID of the affected connected account. */
116941
117602
  connected_account_id: string;
116942
117603
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -116957,6 +117618,8 @@ export type Routes = {
116957
117618
  created_at: string;
116958
117619
  /** Date and time at which the event occurred. */
116959
117620
  occurred_at: string;
117621
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117622
+ event_description?: string | undefined;
116960
117623
  /** ID of the affected connected account. */
116961
117624
  connected_account_id: string;
116962
117625
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -116975,6 +117638,8 @@ export type Routes = {
116975
117638
  created_at: string;
116976
117639
  /** Date and time at which the event occurred. */
116977
117640
  occurred_at: string;
117641
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117642
+ event_description?: string | undefined;
116978
117643
  /** ID of the affected connected account. */
116979
117644
  connected_account_id: string;
116980
117645
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -116993,6 +117658,8 @@ export type Routes = {
116993
117658
  created_at: string;
116994
117659
  /** Date and time at which the event occurred. */
116995
117660
  occurred_at: string;
117661
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117662
+ event_description?: string | undefined;
116996
117663
  /** ID of the affected connected account. */
116997
117664
  connected_account_id: string;
116998
117665
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -117027,6 +117694,8 @@ export type Routes = {
117027
117694
  created_at: string;
117028
117695
  /** Date and time at which the event occurred. */
117029
117696
  occurred_at: string;
117697
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117698
+ event_description?: string | undefined;
117030
117699
  /** ID of the affected connected account. */
117031
117700
  connected_account_id: string;
117032
117701
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -117043,6 +117712,8 @@ export type Routes = {
117043
117712
  created_at: string;
117044
117713
  /** Date and time at which the event occurred. */
117045
117714
  occurred_at: string;
117715
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117716
+ event_description?: string | undefined;
117046
117717
  /** ID of the affected connected account. */
117047
117718
  connected_account_id: string;
117048
117719
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -117063,6 +117734,8 @@ export type Routes = {
117063
117734
  created_at: string;
117064
117735
  /** Date and time at which the event occurred. */
117065
117736
  occurred_at: string;
117737
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117738
+ event_description?: string | undefined;
117066
117739
  /** ID of the affected connected account. */
117067
117740
  connected_account_id: string;
117068
117741
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -117079,6 +117752,8 @@ export type Routes = {
117079
117752
  created_at: string;
117080
117753
  /** Date and time at which the event occurred. */
117081
117754
  occurred_at: string;
117755
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117756
+ event_description?: string | undefined;
117082
117757
  /** ID of the affected connected account. */
117083
117758
  connected_account_id: string;
117084
117759
  /** Custom metadata of the connected account, present when connected_account_id is provided. */
@@ -117113,6 +117788,8 @@ export type Routes = {
117113
117788
  created_at: string;
117114
117789
  /** Date and time at which the event occurred. */
117115
117790
  occurred_at: string;
117791
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117792
+ event_description?: string | undefined;
117116
117793
  /** ID of the affected action attempt. */
117117
117794
  action_attempt_id: string;
117118
117795
  /** Type of the action. */
@@ -117133,6 +117810,8 @@ export type Routes = {
117133
117810
  created_at: string;
117134
117811
  /** Date and time at which the event occurred. */
117135
117812
  occurred_at: string;
117813
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117814
+ event_description?: string | undefined;
117136
117815
  /** ID of the affected action attempt. */
117137
117816
  action_attempt_id: string;
117138
117817
  /** Type of the action. */
@@ -117153,6 +117832,8 @@ export type Routes = {
117153
117832
  created_at: string;
117154
117833
  /** Date and time at which the event occurred. */
117155
117834
  occurred_at: string;
117835
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117836
+ event_description?: string | undefined;
117156
117837
  /** ID of the affected action attempt. */
117157
117838
  action_attempt_id: string;
117158
117839
  /** Type of the action. */
@@ -117173,6 +117854,8 @@ export type Routes = {
117173
117854
  created_at: string;
117174
117855
  /** Date and time at which the event occurred. */
117175
117856
  occurred_at: string;
117857
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117858
+ event_description?: string | undefined;
117176
117859
  /** ID of the affected action attempt. */
117177
117860
  action_attempt_id: string;
117178
117861
  /** Type of the action. */
@@ -117193,6 +117876,8 @@ export type Routes = {
117193
117876
  created_at: string;
117194
117877
  /** Date and time at which the event occurred. */
117195
117878
  occurred_at: string;
117879
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117880
+ event_description?: string | undefined;
117196
117881
  /** ID of the affected action attempt. */
117197
117882
  action_attempt_id: string;
117198
117883
  /** Type of the action. */
@@ -117213,6 +117898,8 @@ export type Routes = {
117213
117898
  created_at: string;
117214
117899
  /** Date and time at which the event occurred. */
117215
117900
  occurred_at: string;
117901
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117902
+ event_description?: string | undefined;
117216
117903
  /** ID of the affected action attempt. */
117217
117904
  action_attempt_id: string;
117218
117905
  /** Type of the action. */
@@ -117233,6 +117920,8 @@ export type Routes = {
117233
117920
  created_at: string;
117234
117921
  /** Date and time at which the event occurred. */
117235
117922
  occurred_at: string;
117923
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117924
+ event_description?: string | undefined;
117236
117925
  /** ID of the affected action attempt. */
117237
117926
  action_attempt_id: string;
117238
117927
  /** Type of the action. */
@@ -117253,6 +117942,8 @@ export type Routes = {
117253
117942
  created_at: string;
117254
117943
  /** Date and time at which the event occurred. */
117255
117944
  occurred_at: string;
117945
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117946
+ event_description?: string | undefined;
117256
117947
  /** ID of the affected action attempt. */
117257
117948
  action_attempt_id: string;
117258
117949
  /** Type of the action. */
@@ -117273,6 +117964,8 @@ export type Routes = {
117273
117964
  created_at: string;
117274
117965
  /** Date and time at which the event occurred. */
117275
117966
  occurred_at: string;
117967
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117968
+ event_description?: string | undefined;
117276
117969
  /** ID of the affected Connect Webview. */
117277
117970
  connect_webview_id: string;
117278
117971
  event_type: 'connect_webview.login_succeeded';
@@ -117293,6 +117986,8 @@ export type Routes = {
117293
117986
  created_at: string;
117294
117987
  /** Date and time at which the event occurred. */
117295
117988
  occurred_at: string;
117989
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
117990
+ event_description?: string | undefined;
117296
117991
  /** ID of the affected Connect Webview. */
117297
117992
  connect_webview_id: string;
117298
117993
  event_type: 'connect_webview.login_failed';
@@ -117305,6 +118000,8 @@ export type Routes = {
117305
118000
  created_at: string;
117306
118001
  /** Date and time at which the event occurred. */
117307
118002
  occurred_at: string;
118003
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118004
+ event_description?: string | undefined;
117308
118005
  /** ID of the affected device. */
117309
118006
  device_id: string;
117310
118007
  /** ID of the connected account associated with the event. */
@@ -117329,6 +118026,8 @@ export type Routes = {
117329
118026
  created_at: string;
117330
118027
  /** Date and time at which the event occurred. */
117331
118028
  occurred_at: string;
118029
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118030
+ event_description?: string | undefined;
117332
118031
  /** ID of the affected device. */
117333
118032
  device_id: string;
117334
118033
  /** ID of the connected account associated with the event. */
@@ -117353,6 +118052,8 @@ export type Routes = {
117353
118052
  created_at: string;
117354
118053
  /** Date and time at which the event occurred. */
117355
118054
  occurred_at: string;
118055
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118056
+ event_description?: string | undefined;
117356
118057
  /** ID of the affected device. */
117357
118058
  device_id: string;
117358
118059
  /** ID of the connected account associated with the event. */
@@ -117377,6 +118078,8 @@ export type Routes = {
117377
118078
  created_at: string;
117378
118079
  /** Date and time at which the event occurred. */
117379
118080
  occurred_at: string;
118081
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118082
+ event_description?: string | undefined;
117380
118083
  /** ID of the affected device. */
117381
118084
  device_id: string;
117382
118085
  /** ID of the connected account associated with the event. */
@@ -117401,6 +118104,8 @@ export type Routes = {
117401
118104
  created_at: string;
117402
118105
  /** Date and time at which the event occurred. */
117403
118106
  occurred_at: string;
118107
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118108
+ event_description?: string | undefined;
117404
118109
  /** ID of the affected device. */
117405
118110
  device_id: string;
117406
118111
  /** ID of the connected account associated with the event. */
@@ -117425,6 +118130,8 @@ export type Routes = {
117425
118130
  created_at: string;
117426
118131
  /** Date and time at which the event occurred. */
117427
118132
  occurred_at: string;
118133
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118134
+ event_description?: string | undefined;
117428
118135
  /** ID of the affected device. */
117429
118136
  device_id: string;
117430
118137
  /** ID of the connected account associated with the event. */
@@ -117487,6 +118194,8 @@ export type Routes = {
117487
118194
  created_at: string;
117488
118195
  /** Date and time at which the event occurred. */
117489
118196
  occurred_at: string;
118197
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118198
+ event_description?: string | undefined;
117490
118199
  /** ID of the affected device. */
117491
118200
  device_id: string;
117492
118201
  /** ID of the connected account associated with the event. */
@@ -117549,6 +118258,8 @@ export type Routes = {
117549
118258
  created_at: string;
117550
118259
  /** Date and time at which the event occurred. */
117551
118260
  occurred_at: string;
118261
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118262
+ event_description?: string | undefined;
117552
118263
  /** ID of the affected device. */
117553
118264
  device_id: string;
117554
118265
  /** ID of the connected account associated with the event. */
@@ -117573,6 +118284,8 @@ export type Routes = {
117573
118284
  created_at: string;
117574
118285
  /** Date and time at which the event occurred. */
117575
118286
  occurred_at: string;
118287
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118288
+ event_description?: string | undefined;
117576
118289
  /** ID of the affected device. */
117577
118290
  device_id: string;
117578
118291
  /** ID of the connected account associated with the event. */
@@ -117599,6 +118312,8 @@ export type Routes = {
117599
118312
  created_at: string;
117600
118313
  /** Date and time at which the event occurred. */
117601
118314
  occurred_at: string;
118315
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118316
+ event_description?: string | undefined;
117602
118317
  /** ID of the affected device. */
117603
118318
  device_id: string;
117604
118319
  /** ID of the connected account associated with the event. */
@@ -117627,6 +118342,8 @@ export type Routes = {
117627
118342
  created_at: string;
117628
118343
  /** Date and time at which the event occurred. */
117629
118344
  occurred_at: string;
118345
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118346
+ event_description?: string | undefined;
117630
118347
  /** ID of the affected device. */
117631
118348
  device_id: string;
117632
118349
  /** ID of the connected account associated with the event. */
@@ -117651,6 +118368,8 @@ export type Routes = {
117651
118368
  created_at: string;
117652
118369
  /** Date and time at which the event occurred. */
117653
118370
  occurred_at: string;
118371
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118372
+ event_description?: string | undefined;
117654
118373
  /** ID of the affected device. */
117655
118374
  device_id: string;
117656
118375
  /** ID of the connected account associated with the event. */
@@ -117677,6 +118396,8 @@ export type Routes = {
117677
118396
  created_at: string;
117678
118397
  /** Date and time at which the event occurred. */
117679
118398
  occurred_at: string;
118399
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118400
+ event_description?: string | undefined;
117680
118401
  /** ID of the affected device. */
117681
118402
  device_id: string;
117682
118403
  /** ID of the connected account associated with the event. */
@@ -117701,6 +118422,8 @@ export type Routes = {
117701
118422
  created_at: string;
117702
118423
  /** Date and time at which the event occurred. */
117703
118424
  occurred_at: string;
118425
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118426
+ event_description?: string | undefined;
117704
118427
  /** ID of the affected device. */
117705
118428
  device_id: string;
117706
118429
  /** ID of the connected account associated with the event. */
@@ -117725,6 +118448,8 @@ export type Routes = {
117725
118448
  created_at: string;
117726
118449
  /** Date and time at which the event occurred. */
117727
118450
  occurred_at: string;
118451
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118452
+ event_description?: string | undefined;
117728
118453
  /** ID of the affected device. */
117729
118454
  device_id: string;
117730
118455
  /** ID of the connected account associated with the event. */
@@ -117749,6 +118474,8 @@ export type Routes = {
117749
118474
  created_at: string;
117750
118475
  /** Date and time at which the event occurred. */
117751
118476
  occurred_at: string;
118477
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118478
+ event_description?: string | undefined;
117752
118479
  /** ID of the affected device. */
117753
118480
  device_id: string;
117754
118481
  /** ID of the connected account associated with the event. */
@@ -117773,6 +118500,8 @@ export type Routes = {
117773
118500
  created_at: string;
117774
118501
  /** Date and time at which the event occurred. */
117775
118502
  occurred_at: string;
118503
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118504
+ event_description?: string | undefined;
117776
118505
  /** ID of the affected device. */
117777
118506
  device_id: string;
117778
118507
  /** ID of the connected account associated with the event. */
@@ -117833,6 +118562,8 @@ export type Routes = {
117833
118562
  created_at: string;
117834
118563
  /** Date and time at which the event occurred. */
117835
118564
  occurred_at: string;
118565
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118566
+ event_description?: string | undefined;
117836
118567
  /** ID of the affected device. */
117837
118568
  device_id: string;
117838
118569
  /** ID of the connected account associated with the event. */
@@ -117857,6 +118588,8 @@ export type Routes = {
117857
118588
  created_at: string;
117858
118589
  /** Date and time at which the event occurred. */
117859
118590
  occurred_at: string;
118591
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118592
+ event_description?: string | undefined;
117860
118593
  /** ID of the affected device. */
117861
118594
  device_id: string;
117862
118595
  /** ID of the connected account associated with the event. */
@@ -117917,6 +118650,8 @@ export type Routes = {
117917
118650
  created_at: string;
117918
118651
  /** Date and time at which the event occurred. */
117919
118652
  occurred_at: string;
118653
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118654
+ event_description?: string | undefined;
117920
118655
  /** ID of the affected device. */
117921
118656
  device_id: string;
117922
118657
  /** ID of the connected account associated with the event. */
@@ -117941,6 +118676,8 @@ export type Routes = {
117941
118676
  created_at: string;
117942
118677
  /** Date and time at which the event occurred. */
117943
118678
  occurred_at: string;
118679
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118680
+ event_description?: string | undefined;
117944
118681
  /** ID of the affected device. */
117945
118682
  device_id: string;
117946
118683
  /** ID of the connected account associated with the event. */
@@ -117965,6 +118702,8 @@ export type Routes = {
117965
118702
  created_at: string;
117966
118703
  /** Date and time at which the event occurred. */
117967
118704
  occurred_at: string;
118705
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118706
+ event_description?: string | undefined;
117968
118707
  /** ID of the affected device. */
117969
118708
  device_id: string;
117970
118709
  /** ID of the connected account associated with the event. */
@@ -118025,6 +118764,8 @@ export type Routes = {
118025
118764
  created_at: string;
118026
118765
  /** Date and time at which the event occurred. */
118027
118766
  occurred_at: string;
118767
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118768
+ event_description?: string | undefined;
118028
118769
  /** ID of the affected device. */
118029
118770
  device_id: string;
118030
118771
  /** ID of the connected account associated with the event. */
@@ -118065,6 +118806,8 @@ export type Routes = {
118065
118806
  created_at: string;
118066
118807
  /** Date and time at which the event occurred. */
118067
118808
  occurred_at: string;
118809
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118810
+ event_description?: string | undefined;
118068
118811
  /** ID of the affected device. */
118069
118812
  device_id: string;
118070
118813
  /** ID of the connected account associated with the event. */
@@ -118109,6 +118852,8 @@ export type Routes = {
118109
118852
  created_at: string;
118110
118853
  /** Date and time at which the event occurred. */
118111
118854
  occurred_at: string;
118855
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118856
+ event_description?: string | undefined;
118112
118857
  /** ID of the affected device. */
118113
118858
  device_id?: string | undefined;
118114
118859
  /** ID of the connected account associated with the event. */
@@ -118177,6 +118922,8 @@ export type Routes = {
118177
118922
  created_at: string;
118178
118923
  /** Date and time at which the event occurred. */
118179
118924
  occurred_at: string;
118925
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118926
+ event_description?: string | undefined;
118180
118927
  /** ID of the affected device. */
118181
118928
  device_id?: string | undefined;
118182
118929
  /** ID of the connected account associated with the event. */
@@ -118227,6 +118974,8 @@ export type Routes = {
118227
118974
  created_at: string;
118228
118975
  /** Date and time at which the event occurred. */
118229
118976
  occurred_at: string;
118977
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
118978
+ event_description?: string | undefined;
118230
118979
  /** ID of the affected device. */
118231
118980
  device_id: string;
118232
118981
  /** ID of the connected account associated with the event. */
@@ -118257,6 +119006,8 @@ export type Routes = {
118257
119006
  created_at: string;
118258
119007
  /** Date and time at which the event occurred. */
118259
119008
  occurred_at: string;
119009
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119010
+ event_description?: string | undefined;
118260
119011
  /** ID of the affected device. */
118261
119012
  device_id: string;
118262
119013
  /** ID of the connected account associated with the event. */
@@ -118295,6 +119046,8 @@ export type Routes = {
118295
119046
  created_at: string;
118296
119047
  /** Date and time at which the event occurred. */
118297
119048
  occurred_at: string;
119049
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119050
+ event_description?: string | undefined;
118298
119051
  /** ID of the affected device. */
118299
119052
  device_id: string;
118300
119053
  /** ID of the connected account associated with the event. */
@@ -118331,6 +119084,8 @@ export type Routes = {
118331
119084
  created_at: string;
118332
119085
  /** Date and time at which the event occurred. */
118333
119086
  occurred_at: string;
119087
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119088
+ event_description?: string | undefined;
118334
119089
  /** ID of the affected device. */
118335
119090
  device_id: string;
118336
119091
  /** ID of the connected account associated with the event. */
@@ -118367,6 +119122,8 @@ export type Routes = {
118367
119122
  created_at: string;
118368
119123
  /** Date and time at which the event occurred. */
118369
119124
  occurred_at: string;
119125
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119126
+ event_description?: string | undefined;
118370
119127
  /** ID of the affected device. */
118371
119128
  device_id: string;
118372
119129
  /** ID of the connected account associated with the event. */
@@ -118399,6 +119156,8 @@ export type Routes = {
118399
119156
  created_at: string;
118400
119157
  /** Date and time at which the event occurred. */
118401
119158
  occurred_at: string;
119159
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119160
+ event_description?: string | undefined;
118402
119161
  /** ID of the affected device. */
118403
119162
  device_id: string;
118404
119163
  /** ID of the connected account associated with the event. */
@@ -118427,6 +119186,8 @@ export type Routes = {
118427
119186
  created_at: string;
118428
119187
  /** Date and time at which the event occurred. */
118429
119188
  occurred_at: string;
119189
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119190
+ event_description?: string | undefined;
118430
119191
  /** ID of the affected device. */
118431
119192
  device_id: string;
118432
119193
  /** ID of the connected account associated with the event. */
@@ -118453,6 +119214,8 @@ export type Routes = {
118453
119214
  created_at: string;
118454
119215
  /** Date and time at which the event occurred. */
118455
119216
  occurred_at: string;
119217
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119218
+ event_description?: string | undefined;
118456
119219
  /** ID of the affected device. */
118457
119220
  device_id: string;
118458
119221
  /** ID of the connected account associated with the event. */
@@ -118485,6 +119248,8 @@ export type Routes = {
118485
119248
  created_at: string;
118486
119249
  /** Date and time at which the event occurred. */
118487
119250
  occurred_at: string;
119251
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119252
+ event_description?: string | undefined;
118488
119253
  /** ID of the affected device. */
118489
119254
  device_id: string;
118490
119255
  /** ID of the connected account associated with the event. */
@@ -118513,6 +119278,8 @@ export type Routes = {
118513
119278
  created_at: string;
118514
119279
  /** Date and time at which the event occurred. */
118515
119280
  occurred_at: string;
119281
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119282
+ event_description?: string | undefined;
118516
119283
  /** ID of the affected enrollment automation. */
118517
119284
  enrollment_automation_id: string;
118518
119285
  event_type: 'enrollment_automation.deleted';
@@ -118525,6 +119292,8 @@ export type Routes = {
118525
119292
  created_at: string;
118526
119293
  /** Date and time at which the event occurred. */
118527
119294
  occurred_at: string;
119295
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119296
+ event_description?: string | undefined;
118528
119297
  /** ID of the affected phone device. */
118529
119298
  device_id: string;
118530
119299
  /** Custom metadata of the device; present when device_id is provided. */
@@ -118541,6 +119310,8 @@ export type Routes = {
118541
119310
  created_at: string;
118542
119311
  /** Date and time at which the event occurred. */
118543
119312
  occurred_at: string;
119313
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119314
+ event_description?: string | undefined;
118544
119315
  /** ID of the affected space. */
118545
119316
  space_id: string;
118546
119317
  /** Type of the event. */
@@ -118560,6 +119331,8 @@ export type Routes = {
118560
119331
  created_at: string;
118561
119332
  /** Date and time at which the event occurred. */
118562
119333
  occurred_at: string;
119334
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119335
+ event_description?: string | undefined;
118563
119336
  /** ID of the affected space. */
118564
119337
  space_id: string;
118565
119338
  /** Type of the event. */
@@ -118579,6 +119352,8 @@ export type Routes = {
118579
119352
  created_at: string;
118580
119353
  /** Date and time at which the event occurred. */
118581
119354
  occurred_at: string;
119355
+ /** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
119356
+ event_description?: string | undefined;
118582
119357
  /** ID of the affected space. */
118583
119358
  space_id: string;
118584
119359
  /** Type of the event. */
@@ -118938,15 +119713,6 @@ export type Routes = {
118938
119713
  unmanaged_access_code_id?: string | undefined;
118939
119714
  /** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
118940
119715
  managed_access_code_id?: string | undefined;
118941
- } | {
118942
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
118943
- message: string;
118944
- /** Indicates that this is an access code error. */
118945
- is_access_code_error: true;
118946
- /** Date and time at which Seam created the error. */
118947
- created_at?: string | undefined;
118948
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
118949
- error_code: 'duplicate_code_attempt_prevented';
118950
119716
  } | {
118951
119717
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
118952
119718
  message: string;
@@ -119324,15 +120090,6 @@ export type Routes = {
119324
120090
  unmanaged_access_code_id?: string | undefined;
119325
120091
  /** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
119326
120092
  managed_access_code_id?: string | undefined;
119327
- } | {
119328
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
119329
- message: string;
119330
- /** Indicates that this is an access code error. */
119331
- is_access_code_error: true;
119332
- /** Date and time at which Seam created the error. */
119333
- created_at?: string | undefined;
119334
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
119335
- error_code: 'duplicate_code_attempt_prevented';
119336
120093
  } | {
119337
120094
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
119338
120095
  message: string;