@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.
- package/dist/connect.cjs +432 -65
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1177 -167
- package/dist/index.cjs +432 -65
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -71
- package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -14
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +0 -26
- package/lib/seam/connect/models/events/access-codes.d.ts +126 -0
- package/lib/seam/connect/models/events/access-grants.d.ts +42 -0
- package/lib/seam/connect/models/events/access-methods.d.ts +36 -0
- package/lib/seam/connect/models/events/acs/access-groups.d.ts +6 -0
- package/lib/seam/connect/models/events/acs/common.d.ts +3 -0
- package/lib/seam/connect/models/events/acs/credentials.d.ts +24 -0
- package/lib/seam/connect/models/events/acs/encoders.d.ts +12 -0
- package/lib/seam/connect/models/events/acs/entrances.d.ts +12 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +42 -0
- package/lib/seam/connect/models/events/acs/systems.d.ts +18 -0
- package/lib/seam/connect/models/events/acs/users.d.ts +12 -0
- package/lib/seam/connect/models/events/action-attempts.d.ts +48 -0
- package/lib/seam/connect/models/events/client-sessions.d.ts +6 -0
- package/lib/seam/connect/models/events/common.d.ts +3 -0
- package/lib/seam/connect/models/events/common.js +4 -0
- package/lib/seam/connect/models/events/common.js.map +1 -1
- package/lib/seam/connect/models/events/connect-webviews.d.ts +12 -0
- package/lib/seam/connect/models/events/connected-accounts.d.ts +48 -0
- package/lib/seam/connect/models/events/devices.d.ts +210 -0
- package/lib/seam/connect/models/events/enrollment-automations.d.ts +6 -0
- package/lib/seam/connect/models/events/phones.d.ts +6 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +321 -0
- package/lib/seam/connect/models/events/spaces.d.ts +18 -0
- package/lib/seam/connect/openapi.js +428 -54
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +856 -99
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -15
- package/src/lib/seam/connect/models/events/common.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +535 -64
- package/src/lib/seam/connect/route-types.ts +856 -110
|
@@ -2061,16 +2061,6 @@ export type Routes = {
|
|
|
2061
2061
|
/** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
|
|
2062
2062
|
managed_access_code_id?: string | undefined
|
|
2063
2063
|
}
|
|
2064
|
-
| {
|
|
2065
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2066
|
-
message: string
|
|
2067
|
-
/** Indicates that this is an access code error. */
|
|
2068
|
-
is_access_code_error: true
|
|
2069
|
-
/** Date and time at which Seam created the error. */
|
|
2070
|
-
created_at?: string | undefined
|
|
2071
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2072
|
-
error_code: 'duplicate_code_attempt_prevented'
|
|
2073
|
-
}
|
|
2074
2064
|
| {
|
|
2075
2065
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2076
2066
|
message: string
|
|
@@ -2626,16 +2616,6 @@ export type Routes = {
|
|
|
2626
2616
|
/** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
|
|
2627
2617
|
managed_access_code_id?: string | undefined
|
|
2628
2618
|
}
|
|
2629
|
-
| {
|
|
2630
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2631
|
-
message: string
|
|
2632
|
-
/** Indicates that this is an access code error. */
|
|
2633
|
-
is_access_code_error: true
|
|
2634
|
-
/** Date and time at which Seam created the error. */
|
|
2635
|
-
created_at?: string | undefined
|
|
2636
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2637
|
-
error_code: 'duplicate_code_attempt_prevented'
|
|
2638
|
-
}
|
|
2639
2619
|
| {
|
|
2640
2620
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2641
2621
|
message: string
|
|
@@ -5150,16 +5130,6 @@ export type Routes = {
|
|
|
5150
5130
|
/** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
|
|
5151
5131
|
managed_access_code_id?: string | undefined
|
|
5152
5132
|
}
|
|
5153
|
-
| {
|
|
5154
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5155
|
-
message: string
|
|
5156
|
-
/** Indicates that this is an access code error. */
|
|
5157
|
-
is_access_code_error: true
|
|
5158
|
-
/** Date and time at which Seam created the error. */
|
|
5159
|
-
created_at?: string | undefined
|
|
5160
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5161
|
-
error_code: 'duplicate_code_attempt_prevented'
|
|
5162
|
-
}
|
|
5163
5133
|
| {
|
|
5164
5134
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5165
5135
|
message: string
|
|
@@ -5814,16 +5784,6 @@ export type Routes = {
|
|
|
5814
5784
|
/** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
|
|
5815
5785
|
managed_access_code_id?: string | undefined
|
|
5816
5786
|
}
|
|
5817
|
-
| {
|
|
5818
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5819
|
-
message: string
|
|
5820
|
-
/** Indicates that this is an access code error. */
|
|
5821
|
-
is_access_code_error: true
|
|
5822
|
-
/** Date and time at which Seam created the error. */
|
|
5823
|
-
created_at?: string | undefined
|
|
5824
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5825
|
-
error_code: 'duplicate_code_attempt_prevented'
|
|
5826
|
-
}
|
|
5827
5787
|
| {
|
|
5828
5788
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5829
5789
|
message: string
|
|
@@ -6370,16 +6330,6 @@ export type Routes = {
|
|
|
6370
6330
|
/** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
|
|
6371
6331
|
managed_access_code_id?: string | undefined
|
|
6372
6332
|
}
|
|
6373
|
-
| {
|
|
6374
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6375
|
-
message: string
|
|
6376
|
-
/** Indicates that this is an access code error. */
|
|
6377
|
-
is_access_code_error: true
|
|
6378
|
-
/** Date and time at which Seam created the error. */
|
|
6379
|
-
created_at?: string | undefined
|
|
6380
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6381
|
-
error_code: 'duplicate_code_attempt_prevented'
|
|
6382
|
-
}
|
|
6383
6333
|
| {
|
|
6384
6334
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6385
6335
|
message: string
|
|
@@ -6903,16 +6853,6 @@ export type Routes = {
|
|
|
6903
6853
|
/** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
|
|
6904
6854
|
managed_access_code_id?: string | undefined
|
|
6905
6855
|
}
|
|
6906
|
-
| {
|
|
6907
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6908
|
-
message: string
|
|
6909
|
-
/** Indicates that this is an access code error. */
|
|
6910
|
-
is_access_code_error: true
|
|
6911
|
-
/** Date and time at which Seam created the error. */
|
|
6912
|
-
created_at?: string | undefined
|
|
6913
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6914
|
-
error_code: 'duplicate_code_attempt_prevented'
|
|
6915
|
-
}
|
|
6916
6856
|
| {
|
|
6917
6857
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6918
6858
|
message: string
|
|
@@ -7469,16 +7409,6 @@ export type Routes = {
|
|
|
7469
7409
|
/** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
|
|
7470
7410
|
managed_access_code_id?: string | undefined
|
|
7471
7411
|
}
|
|
7472
|
-
| {
|
|
7473
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7474
|
-
message: string
|
|
7475
|
-
/** Indicates that this is an access code error. */
|
|
7476
|
-
is_access_code_error: true
|
|
7477
|
-
/** Date and time at which Seam created the error. */
|
|
7478
|
-
created_at?: string | undefined
|
|
7479
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7480
|
-
error_code: 'duplicate_code_attempt_prevented'
|
|
7481
|
-
}
|
|
7482
7412
|
| {
|
|
7483
7413
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7484
7414
|
message: string
|
|
@@ -9895,16 +9825,6 @@ export type Routes = {
|
|
|
9895
9825
|
/** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
|
|
9896
9826
|
managed_access_code_id?: string | undefined
|
|
9897
9827
|
}
|
|
9898
|
-
| {
|
|
9899
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9900
|
-
message: string
|
|
9901
|
-
/** Indicates that this is an access code error. */
|
|
9902
|
-
is_access_code_error: true
|
|
9903
|
-
/** Date and time at which Seam created the error. */
|
|
9904
|
-
created_at?: string | undefined
|
|
9905
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9906
|
-
error_code: 'duplicate_code_attempt_prevented'
|
|
9907
|
-
}
|
|
9908
9828
|
| {
|
|
9909
9829
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9910
9830
|
message: string
|
|
@@ -10340,16 +10260,6 @@ export type Routes = {
|
|
|
10340
10260
|
/** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
|
|
10341
10261
|
managed_access_code_id?: string | undefined
|
|
10342
10262
|
}
|
|
10343
|
-
| {
|
|
10344
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10345
|
-
message: string
|
|
10346
|
-
/** Indicates that this is an access code error. */
|
|
10347
|
-
is_access_code_error: true
|
|
10348
|
-
/** Date and time at which Seam created the error. */
|
|
10349
|
-
created_at?: string | undefined
|
|
10350
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10351
|
-
error_code: 'duplicate_code_attempt_prevented'
|
|
10352
|
-
}
|
|
10353
10263
|
| {
|
|
10354
10264
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10355
10265
|
message: string
|
|
@@ -54582,6 +54492,8 @@ export type Routes = {
|
|
|
54582
54492
|
created_at: string
|
|
54583
54493
|
/** Date and time at which the event occurred. */
|
|
54584
54494
|
occurred_at: string
|
|
54495
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54496
|
+
event_description?: string | undefined
|
|
54585
54497
|
/** ID of the affected access code. */
|
|
54586
54498
|
access_code_id: string
|
|
54587
54499
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54611,6 +54523,8 @@ export type Routes = {
|
|
|
54611
54523
|
created_at: string
|
|
54612
54524
|
/** Date and time at which the event occurred. */
|
|
54613
54525
|
occurred_at: string
|
|
54526
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54527
|
+
event_description?: string | undefined
|
|
54614
54528
|
/** ID of the affected access code. */
|
|
54615
54529
|
access_code_id: string
|
|
54616
54530
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54653,6 +54567,8 @@ export type Routes = {
|
|
|
54653
54567
|
created_at: string
|
|
54654
54568
|
/** Date and time at which the event occurred. */
|
|
54655
54569
|
occurred_at: string
|
|
54570
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54571
|
+
event_description?: string | undefined
|
|
54656
54572
|
/** ID of the affected access code. */
|
|
54657
54573
|
access_code_id: string
|
|
54658
54574
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54694,6 +54610,8 @@ export type Routes = {
|
|
|
54694
54610
|
created_at: string
|
|
54695
54611
|
/** Date and time at which the event occurred. */
|
|
54696
54612
|
occurred_at: string
|
|
54613
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54614
|
+
event_description?: string | undefined
|
|
54697
54615
|
/** ID of the affected access code. */
|
|
54698
54616
|
access_code_id: string
|
|
54699
54617
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54735,6 +54653,8 @@ export type Routes = {
|
|
|
54735
54653
|
created_at: string
|
|
54736
54654
|
/** Date and time at which the event occurred. */
|
|
54737
54655
|
occurred_at: string
|
|
54656
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54657
|
+
event_description?: string | undefined
|
|
54738
54658
|
/** ID of the affected access code. */
|
|
54739
54659
|
access_code_id: string
|
|
54740
54660
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54780,6 +54700,8 @@ export type Routes = {
|
|
|
54780
54700
|
created_at: string
|
|
54781
54701
|
/** Date and time at which the event occurred. */
|
|
54782
54702
|
occurred_at: string
|
|
54703
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54704
|
+
event_description?: string | undefined
|
|
54783
54705
|
/** ID of the affected access code. */
|
|
54784
54706
|
access_code_id: string
|
|
54785
54707
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54832,6 +54754,8 @@ export type Routes = {
|
|
|
54832
54754
|
created_at: string
|
|
54833
54755
|
/** Date and time at which the event occurred. */
|
|
54834
54756
|
occurred_at: string
|
|
54757
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54758
|
+
event_description?: string | undefined
|
|
54835
54759
|
/** ID of the affected access code. */
|
|
54836
54760
|
access_code_id: string
|
|
54837
54761
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54863,6 +54787,8 @@ export type Routes = {
|
|
|
54863
54787
|
created_at: string
|
|
54864
54788
|
/** Date and time at which the event occurred. */
|
|
54865
54789
|
occurred_at: string
|
|
54790
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54791
|
+
event_description?: string | undefined
|
|
54866
54792
|
/** ID of the affected access code. */
|
|
54867
54793
|
access_code_id: string
|
|
54868
54794
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54894,6 +54820,8 @@ export type Routes = {
|
|
|
54894
54820
|
created_at: string
|
|
54895
54821
|
/** Date and time at which the event occurred. */
|
|
54896
54822
|
occurred_at: string
|
|
54823
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54824
|
+
event_description?: string | undefined
|
|
54897
54825
|
/** ID of the affected access code. */
|
|
54898
54826
|
access_code_id: string
|
|
54899
54827
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54923,6 +54851,8 @@ export type Routes = {
|
|
|
54923
54851
|
created_at: string
|
|
54924
54852
|
/** Date and time at which the event occurred. */
|
|
54925
54853
|
occurred_at: string
|
|
54854
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54855
|
+
event_description?: string | undefined
|
|
54926
54856
|
/** ID of the affected access code. */
|
|
54927
54857
|
access_code_id: string
|
|
54928
54858
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55006,6 +54936,8 @@ export type Routes = {
|
|
|
55006
54936
|
created_at: string
|
|
55007
54937
|
/** Date and time at which the event occurred. */
|
|
55008
54938
|
occurred_at: string
|
|
54939
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54940
|
+
event_description?: string | undefined
|
|
55009
54941
|
/** ID of the affected access code. */
|
|
55010
54942
|
access_code_id: string
|
|
55011
54943
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55089,6 +55021,8 @@ export type Routes = {
|
|
|
55089
55021
|
created_at: string
|
|
55090
55022
|
/** Date and time at which the event occurred. */
|
|
55091
55023
|
occurred_at: string
|
|
55024
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55025
|
+
event_description?: string | undefined
|
|
55092
55026
|
/** ID of the affected access code. */
|
|
55093
55027
|
access_code_id: string
|
|
55094
55028
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55120,6 +55054,8 @@ export type Routes = {
|
|
|
55120
55054
|
created_at: string
|
|
55121
55055
|
/** Date and time at which the event occurred. */
|
|
55122
55056
|
occurred_at: string
|
|
55057
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55058
|
+
event_description?: string | undefined
|
|
55123
55059
|
/** ID of the affected access code. */
|
|
55124
55060
|
access_code_id: string
|
|
55125
55061
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55203,6 +55139,8 @@ export type Routes = {
|
|
|
55203
55139
|
created_at: string
|
|
55204
55140
|
/** Date and time at which the event occurred. */
|
|
55205
55141
|
occurred_at: string
|
|
55142
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55143
|
+
event_description?: string | undefined
|
|
55206
55144
|
/** ID of the affected access code. */
|
|
55207
55145
|
access_code_id: string
|
|
55208
55146
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55286,6 +55224,8 @@ export type Routes = {
|
|
|
55286
55224
|
created_at: string
|
|
55287
55225
|
/** Date and time at which the event occurred. */
|
|
55288
55226
|
occurred_at: string
|
|
55227
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55228
|
+
event_description?: string | undefined
|
|
55289
55229
|
/** ID of the affected access code. */
|
|
55290
55230
|
access_code_id: string
|
|
55291
55231
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55315,6 +55255,8 @@ export type Routes = {
|
|
|
55315
55255
|
created_at: string
|
|
55316
55256
|
/** Date and time at which the event occurred. */
|
|
55317
55257
|
occurred_at: string
|
|
55258
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55259
|
+
event_description?: string | undefined
|
|
55318
55260
|
/** ID of the affected access code. */
|
|
55319
55261
|
access_code_id: string
|
|
55320
55262
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55344,6 +55286,8 @@ export type Routes = {
|
|
|
55344
55286
|
created_at: string
|
|
55345
55287
|
/** Date and time at which the event occurred. */
|
|
55346
55288
|
occurred_at: string
|
|
55289
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55290
|
+
event_description?: string | undefined
|
|
55347
55291
|
/** ID of the affected access code. */
|
|
55348
55292
|
access_code_id: string
|
|
55349
55293
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55375,6 +55319,8 @@ export type Routes = {
|
|
|
55375
55319
|
created_at: string
|
|
55376
55320
|
/** Date and time at which the event occurred. */
|
|
55377
55321
|
occurred_at: string
|
|
55322
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55323
|
+
event_description?: string | undefined
|
|
55378
55324
|
/** ID of the affected access code. */
|
|
55379
55325
|
access_code_id: string
|
|
55380
55326
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55404,6 +55350,8 @@ export type Routes = {
|
|
|
55404
55350
|
created_at: string
|
|
55405
55351
|
/** Date and time at which the event occurred. */
|
|
55406
55352
|
occurred_at: string
|
|
55353
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55354
|
+
event_description?: string | undefined
|
|
55407
55355
|
/** ID of the affected access code. */
|
|
55408
55356
|
access_code_id: string
|
|
55409
55357
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55487,6 +55435,8 @@ export type Routes = {
|
|
|
55487
55435
|
created_at: string
|
|
55488
55436
|
/** Date and time at which the event occurred. */
|
|
55489
55437
|
occurred_at: string
|
|
55438
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55439
|
+
event_description?: string | undefined
|
|
55490
55440
|
/** ID of the affected access code. */
|
|
55491
55441
|
access_code_id: string
|
|
55492
55442
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55516,6 +55466,8 @@ export type Routes = {
|
|
|
55516
55466
|
created_at: string
|
|
55517
55467
|
/** Date and time at which the event occurred. */
|
|
55518
55468
|
occurred_at: string
|
|
55469
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55470
|
+
event_description?: string | undefined
|
|
55519
55471
|
/** ID of the affected access code. */
|
|
55520
55472
|
access_code_id: string
|
|
55521
55473
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55545,6 +55497,8 @@ export type Routes = {
|
|
|
55545
55497
|
created_at: string
|
|
55546
55498
|
/** Date and time at which the event occurred. */
|
|
55547
55499
|
occurred_at: string
|
|
55500
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55501
|
+
event_description?: string | undefined
|
|
55548
55502
|
/** ID of the affected Access Grant. */
|
|
55549
55503
|
access_grant_id: string
|
|
55550
55504
|
event_type: 'access_grant.created'
|
|
@@ -55558,6 +55512,8 @@ export type Routes = {
|
|
|
55558
55512
|
created_at: string
|
|
55559
55513
|
/** Date and time at which the event occurred. */
|
|
55560
55514
|
occurred_at: string
|
|
55515
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55516
|
+
event_description?: string | undefined
|
|
55561
55517
|
/** ID of the affected Access Grant. */
|
|
55562
55518
|
access_grant_id: string
|
|
55563
55519
|
event_type: 'access_grant.deleted'
|
|
@@ -55571,6 +55527,8 @@ export type Routes = {
|
|
|
55571
55527
|
created_at: string
|
|
55572
55528
|
/** Date and time at which the event occurred. */
|
|
55573
55529
|
occurred_at: string
|
|
55530
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55531
|
+
event_description?: string | undefined
|
|
55574
55532
|
/** ID of the affected Access Grant. */
|
|
55575
55533
|
access_grant_id: string
|
|
55576
55534
|
event_type: 'access_grant.access_granted_to_all_doors'
|
|
@@ -55584,6 +55542,8 @@ export type Routes = {
|
|
|
55584
55542
|
created_at: string
|
|
55585
55543
|
/** Date and time at which the event occurred. */
|
|
55586
55544
|
occurred_at: string
|
|
55545
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55546
|
+
event_description?: string | undefined
|
|
55587
55547
|
/** ID of the affected Access Grant. */
|
|
55588
55548
|
access_grant_id: string
|
|
55589
55549
|
event_type: 'access_grant.access_granted_to_door'
|
|
@@ -55599,6 +55559,8 @@ export type Routes = {
|
|
|
55599
55559
|
created_at: string
|
|
55600
55560
|
/** Date and time at which the event occurred. */
|
|
55601
55561
|
occurred_at: string
|
|
55562
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55563
|
+
event_description?: string | undefined
|
|
55602
55564
|
/** ID of the affected Access Grant. */
|
|
55603
55565
|
access_grant_id: string
|
|
55604
55566
|
event_type: 'access_grant.access_to_door_lost'
|
|
@@ -55614,6 +55576,8 @@ export type Routes = {
|
|
|
55614
55576
|
created_at: string
|
|
55615
55577
|
/** Date and time at which the event occurred. */
|
|
55616
55578
|
occurred_at: string
|
|
55579
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55580
|
+
event_description?: string | undefined
|
|
55617
55581
|
/** ID of the affected Access Grant. */
|
|
55618
55582
|
access_grant_id: string
|
|
55619
55583
|
event_type: 'access_grant.access_times_changed'
|
|
@@ -55633,6 +55597,8 @@ export type Routes = {
|
|
|
55633
55597
|
created_at: string
|
|
55634
55598
|
/** Date and time at which the event occurred. */
|
|
55635
55599
|
occurred_at: string
|
|
55600
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55601
|
+
event_description?: string | undefined
|
|
55636
55602
|
/** ID of the affected Access Grant. */
|
|
55637
55603
|
access_grant_id: string
|
|
55638
55604
|
event_type: 'access_grant.could_not_create_requested_access_methods'
|
|
@@ -55650,6 +55616,8 @@ export type Routes = {
|
|
|
55650
55616
|
created_at: string
|
|
55651
55617
|
/** Date and time at which the event occurred. */
|
|
55652
55618
|
occurred_at: string
|
|
55619
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55620
|
+
event_description?: string | undefined
|
|
55653
55621
|
/** ID of the affected access method. */
|
|
55654
55622
|
access_method_id: string
|
|
55655
55623
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -55671,6 +55639,8 @@ export type Routes = {
|
|
|
55671
55639
|
created_at: string
|
|
55672
55640
|
/** Date and time at which the event occurred. */
|
|
55673
55641
|
occurred_at: string
|
|
55642
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55643
|
+
event_description?: string | undefined
|
|
55674
55644
|
/** ID of the affected access method. */
|
|
55675
55645
|
access_method_id: string
|
|
55676
55646
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -55688,6 +55658,8 @@ export type Routes = {
|
|
|
55688
55658
|
created_at: string
|
|
55689
55659
|
/** Date and time at which the event occurred. */
|
|
55690
55660
|
occurred_at: string
|
|
55661
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55662
|
+
event_description?: string | undefined
|
|
55691
55663
|
/** ID of the affected access method. */
|
|
55692
55664
|
access_method_id: string
|
|
55693
55665
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -55705,6 +55677,8 @@ export type Routes = {
|
|
|
55705
55677
|
created_at: string
|
|
55706
55678
|
/** Date and time at which the event occurred. */
|
|
55707
55679
|
occurred_at: string
|
|
55680
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55681
|
+
event_description?: string | undefined
|
|
55708
55682
|
/** ID of the affected access method. */
|
|
55709
55683
|
access_method_id: string
|
|
55710
55684
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -55722,6 +55696,8 @@ export type Routes = {
|
|
|
55722
55696
|
created_at: string
|
|
55723
55697
|
/** Date and time at which the event occurred. */
|
|
55724
55698
|
occurred_at: string
|
|
55699
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55700
|
+
event_description?: string | undefined
|
|
55725
55701
|
/** ID of the affected access method. */
|
|
55726
55702
|
access_method_id: string
|
|
55727
55703
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -55743,6 +55719,8 @@ export type Routes = {
|
|
|
55743
55719
|
created_at: string
|
|
55744
55720
|
/** Date and time at which the event occurred. */
|
|
55745
55721
|
occurred_at: string
|
|
55722
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55723
|
+
event_description?: string | undefined
|
|
55746
55724
|
/** ID of the affected access method. */
|
|
55747
55725
|
access_method_id: string
|
|
55748
55726
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -55760,6 +55738,8 @@ export type Routes = {
|
|
|
55760
55738
|
created_at: string
|
|
55761
55739
|
/** Date and time at which the event occurred. */
|
|
55762
55740
|
occurred_at: string
|
|
55741
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55742
|
+
event_description?: string | undefined
|
|
55763
55743
|
/** ID of the connected account. */
|
|
55764
55744
|
connected_account_id?: string | undefined
|
|
55765
55745
|
/** ID of the access system. */
|
|
@@ -55775,6 +55755,8 @@ export type Routes = {
|
|
|
55775
55755
|
created_at: string
|
|
55776
55756
|
/** Date and time at which the event occurred. */
|
|
55777
55757
|
occurred_at: string
|
|
55758
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55759
|
+
event_description?: string | undefined
|
|
55778
55760
|
/** ID of the connected account. */
|
|
55779
55761
|
connected_account_id?: string | undefined
|
|
55780
55762
|
/** ID of the access system. */
|
|
@@ -55790,6 +55772,8 @@ export type Routes = {
|
|
|
55790
55772
|
created_at: string
|
|
55791
55773
|
/** Date and time at which the event occurred. */
|
|
55792
55774
|
occurred_at: string
|
|
55775
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55776
|
+
event_description?: string | undefined
|
|
55793
55777
|
/** ID of the connected account. */
|
|
55794
55778
|
connected_account_id?: string | undefined
|
|
55795
55779
|
/** ID of the access system. */
|
|
@@ -55841,6 +55825,8 @@ export type Routes = {
|
|
|
55841
55825
|
created_at: string
|
|
55842
55826
|
/** Date and time at which the event occurred. */
|
|
55843
55827
|
occurred_at: string
|
|
55828
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55829
|
+
event_description?: string | undefined
|
|
55844
55830
|
/** ID of the connected account. */
|
|
55845
55831
|
connected_account_id?: string | undefined
|
|
55846
55832
|
/** ID of the access system. */
|
|
@@ -55858,6 +55844,8 @@ export type Routes = {
|
|
|
55858
55844
|
created_at: string
|
|
55859
55845
|
/** Date and time at which the event occurred. */
|
|
55860
55846
|
occurred_at: string
|
|
55847
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55848
|
+
event_description?: string | undefined
|
|
55861
55849
|
/** ID of the connected account. */
|
|
55862
55850
|
connected_account_id?: string | undefined
|
|
55863
55851
|
/** ID of the access system. */
|
|
@@ -55875,6 +55863,8 @@ export type Routes = {
|
|
|
55875
55863
|
created_at: string
|
|
55876
55864
|
/** Date and time at which the event occurred. */
|
|
55877
55865
|
occurred_at: string
|
|
55866
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55867
|
+
event_description?: string | undefined
|
|
55878
55868
|
/** ID of the connected account. */
|
|
55879
55869
|
connected_account_id?: string | undefined
|
|
55880
55870
|
/** ID of the access system. */
|
|
@@ -55892,6 +55882,8 @@ export type Routes = {
|
|
|
55892
55882
|
created_at: string
|
|
55893
55883
|
/** Date and time at which the event occurred. */
|
|
55894
55884
|
occurred_at: string
|
|
55885
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55886
|
+
event_description?: string | undefined
|
|
55895
55887
|
/** ID of the connected account. */
|
|
55896
55888
|
connected_account_id?: string | undefined
|
|
55897
55889
|
/** ID of the access system. */
|
|
@@ -55909,6 +55901,8 @@ export type Routes = {
|
|
|
55909
55901
|
created_at: string
|
|
55910
55902
|
/** Date and time at which the event occurred. */
|
|
55911
55903
|
occurred_at: string
|
|
55904
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55905
|
+
event_description?: string | undefined
|
|
55912
55906
|
/** ID of the connected account. */
|
|
55913
55907
|
connected_account_id?: string | undefined
|
|
55914
55908
|
/** ID of the access system. */
|
|
@@ -55926,6 +55920,8 @@ export type Routes = {
|
|
|
55926
55920
|
created_at: string
|
|
55927
55921
|
/** Date and time at which the event occurred. */
|
|
55928
55922
|
occurred_at: string
|
|
55923
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55924
|
+
event_description?: string | undefined
|
|
55929
55925
|
/** ID of the connected account. */
|
|
55930
55926
|
connected_account_id?: string | undefined
|
|
55931
55927
|
/** ID of the access system. */
|
|
@@ -55943,6 +55939,8 @@ export type Routes = {
|
|
|
55943
55939
|
created_at: string
|
|
55944
55940
|
/** Date and time at which the event occurred. */
|
|
55945
55941
|
occurred_at: string
|
|
55942
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55943
|
+
event_description?: string | undefined
|
|
55946
55944
|
/** ID of the connected account. */
|
|
55947
55945
|
connected_account_id?: string | undefined
|
|
55948
55946
|
/** ID of the access system. */
|
|
@@ -55960,6 +55958,8 @@ export type Routes = {
|
|
|
55960
55958
|
created_at: string
|
|
55961
55959
|
/** Date and time at which the event occurred. */
|
|
55962
55960
|
occurred_at: string
|
|
55961
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55962
|
+
event_description?: string | undefined
|
|
55963
55963
|
/** ID of the connected account. */
|
|
55964
55964
|
connected_account_id?: string | undefined
|
|
55965
55965
|
/** ID of the access system. */
|
|
@@ -55977,6 +55977,8 @@ export type Routes = {
|
|
|
55977
55977
|
created_at: string
|
|
55978
55978
|
/** Date and time at which the event occurred. */
|
|
55979
55979
|
occurred_at: string
|
|
55980
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55981
|
+
event_description?: string | undefined
|
|
55980
55982
|
/** ID of the connected account. */
|
|
55981
55983
|
connected_account_id?: string | undefined
|
|
55982
55984
|
/** ID of the access system. */
|
|
@@ -55994,6 +55996,8 @@ export type Routes = {
|
|
|
55994
55996
|
created_at: string
|
|
55995
55997
|
/** Date and time at which the event occurred. */
|
|
55996
55998
|
occurred_at: string
|
|
55999
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56000
|
+
event_description?: string | undefined
|
|
55997
56001
|
/** ID of the connected account. */
|
|
55998
56002
|
connected_account_id?: string | undefined
|
|
55999
56003
|
/** ID of the access system. */
|
|
@@ -56011,6 +56015,8 @@ export type Routes = {
|
|
|
56011
56015
|
created_at: string
|
|
56012
56016
|
/** Date and time at which the event occurred. */
|
|
56013
56017
|
occurred_at: string
|
|
56018
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56019
|
+
event_description?: string | undefined
|
|
56014
56020
|
/** ID of the connected account. */
|
|
56015
56021
|
connected_account_id?: string | undefined
|
|
56016
56022
|
/** ID of the access system. */
|
|
@@ -56028,6 +56034,8 @@ export type Routes = {
|
|
|
56028
56034
|
created_at: string
|
|
56029
56035
|
/** Date and time at which the event occurred. */
|
|
56030
56036
|
occurred_at: string
|
|
56037
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56038
|
+
event_description?: string | undefined
|
|
56031
56039
|
/** ID of the affected client session. */
|
|
56032
56040
|
client_session_id: string
|
|
56033
56041
|
event_type: 'client_session.deleted'
|
|
@@ -56041,6 +56049,8 @@ export type Routes = {
|
|
|
56041
56049
|
created_at: string
|
|
56042
56050
|
/** Date and time at which the event occurred. */
|
|
56043
56051
|
occurred_at: string
|
|
56052
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56053
|
+
event_description?: string | undefined
|
|
56044
56054
|
/** ID of the affected connected account. */
|
|
56045
56055
|
connected_account_id: string
|
|
56046
56056
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56064,6 +56074,8 @@ export type Routes = {
|
|
|
56064
56074
|
created_at: string
|
|
56065
56075
|
/** Date and time at which the event occurred. */
|
|
56066
56076
|
occurred_at: string
|
|
56077
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56078
|
+
event_description?: string | undefined
|
|
56067
56079
|
/** ID of the affected connected account. */
|
|
56068
56080
|
connected_account_id: string
|
|
56069
56081
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56085,6 +56097,8 @@ export type Routes = {
|
|
|
56085
56097
|
created_at: string
|
|
56086
56098
|
/** Date and time at which the event occurred. */
|
|
56087
56099
|
occurred_at: string
|
|
56100
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56101
|
+
event_description?: string | undefined
|
|
56088
56102
|
/** ID of the affected connected account. */
|
|
56089
56103
|
connected_account_id: string
|
|
56090
56104
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56106,6 +56120,8 @@ export type Routes = {
|
|
|
56106
56120
|
created_at: string
|
|
56107
56121
|
/** Date and time at which the event occurred. */
|
|
56108
56122
|
occurred_at: string
|
|
56123
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56124
|
+
event_description?: string | undefined
|
|
56109
56125
|
/** ID of the affected connected account. */
|
|
56110
56126
|
connected_account_id: string
|
|
56111
56127
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56143,6 +56159,8 @@ export type Routes = {
|
|
|
56143
56159
|
created_at: string
|
|
56144
56160
|
/** Date and time at which the event occurred. */
|
|
56145
56161
|
occurred_at: string
|
|
56162
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56163
|
+
event_description?: string | undefined
|
|
56146
56164
|
/** ID of the affected connected account. */
|
|
56147
56165
|
connected_account_id: string
|
|
56148
56166
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56162,6 +56180,8 @@ export type Routes = {
|
|
|
56162
56180
|
created_at: string
|
|
56163
56181
|
/** Date and time at which the event occurred. */
|
|
56164
56182
|
occurred_at: string
|
|
56183
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56184
|
+
event_description?: string | undefined
|
|
56165
56185
|
/** ID of the affected connected account. */
|
|
56166
56186
|
connected_account_id: string
|
|
56167
56187
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56185,6 +56205,8 @@ export type Routes = {
|
|
|
56185
56205
|
created_at: string
|
|
56186
56206
|
/** Date and time at which the event occurred. */
|
|
56187
56207
|
occurred_at: string
|
|
56208
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56209
|
+
event_description?: string | undefined
|
|
56188
56210
|
/** ID of the affected connected account. */
|
|
56189
56211
|
connected_account_id: string
|
|
56190
56212
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56204,6 +56226,8 @@ export type Routes = {
|
|
|
56204
56226
|
created_at: string
|
|
56205
56227
|
/** Date and time at which the event occurred. */
|
|
56206
56228
|
occurred_at: string
|
|
56229
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56230
|
+
event_description?: string | undefined
|
|
56207
56231
|
/** ID of the affected connected account. */
|
|
56208
56232
|
connected_account_id: string
|
|
56209
56233
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56241,6 +56265,8 @@ export type Routes = {
|
|
|
56241
56265
|
created_at: string
|
|
56242
56266
|
/** Date and time at which the event occurred. */
|
|
56243
56267
|
occurred_at: string
|
|
56268
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56269
|
+
event_description?: string | undefined
|
|
56244
56270
|
/** ID of the affected action attempt. */
|
|
56245
56271
|
action_attempt_id: string
|
|
56246
56272
|
/** Type of the action. */
|
|
@@ -56262,6 +56288,8 @@ export type Routes = {
|
|
|
56262
56288
|
created_at: string
|
|
56263
56289
|
/** Date and time at which the event occurred. */
|
|
56264
56290
|
occurred_at: string
|
|
56291
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56292
|
+
event_description?: string | undefined
|
|
56265
56293
|
/** ID of the affected action attempt. */
|
|
56266
56294
|
action_attempt_id: string
|
|
56267
56295
|
/** Type of the action. */
|
|
@@ -56283,6 +56311,8 @@ export type Routes = {
|
|
|
56283
56311
|
created_at: string
|
|
56284
56312
|
/** Date and time at which the event occurred. */
|
|
56285
56313
|
occurred_at: string
|
|
56314
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56315
|
+
event_description?: string | undefined
|
|
56286
56316
|
/** ID of the affected action attempt. */
|
|
56287
56317
|
action_attempt_id: string
|
|
56288
56318
|
/** Type of the action. */
|
|
@@ -56304,6 +56334,8 @@ export type Routes = {
|
|
|
56304
56334
|
created_at: string
|
|
56305
56335
|
/** Date and time at which the event occurred. */
|
|
56306
56336
|
occurred_at: string
|
|
56337
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56338
|
+
event_description?: string | undefined
|
|
56307
56339
|
/** ID of the affected action attempt. */
|
|
56308
56340
|
action_attempt_id: string
|
|
56309
56341
|
/** Type of the action. */
|
|
@@ -56325,6 +56357,8 @@ export type Routes = {
|
|
|
56325
56357
|
created_at: string
|
|
56326
56358
|
/** Date and time at which the event occurred. */
|
|
56327
56359
|
occurred_at: string
|
|
56360
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56361
|
+
event_description?: string | undefined
|
|
56328
56362
|
/** ID of the affected action attempt. */
|
|
56329
56363
|
action_attempt_id: string
|
|
56330
56364
|
/** Type of the action. */
|
|
@@ -56346,6 +56380,8 @@ export type Routes = {
|
|
|
56346
56380
|
created_at: string
|
|
56347
56381
|
/** Date and time at which the event occurred. */
|
|
56348
56382
|
occurred_at: string
|
|
56383
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56384
|
+
event_description?: string | undefined
|
|
56349
56385
|
/** ID of the affected action attempt. */
|
|
56350
56386
|
action_attempt_id: string
|
|
56351
56387
|
/** Type of the action. */
|
|
@@ -56367,6 +56403,8 @@ export type Routes = {
|
|
|
56367
56403
|
created_at: string
|
|
56368
56404
|
/** Date and time at which the event occurred. */
|
|
56369
56405
|
occurred_at: string
|
|
56406
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56407
|
+
event_description?: string | undefined
|
|
56370
56408
|
/** ID of the affected action attempt. */
|
|
56371
56409
|
action_attempt_id: string
|
|
56372
56410
|
/** Type of the action. */
|
|
@@ -56388,6 +56426,8 @@ export type Routes = {
|
|
|
56388
56426
|
created_at: string
|
|
56389
56427
|
/** Date and time at which the event occurred. */
|
|
56390
56428
|
occurred_at: string
|
|
56429
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56430
|
+
event_description?: string | undefined
|
|
56391
56431
|
/** ID of the affected action attempt. */
|
|
56392
56432
|
action_attempt_id: string
|
|
56393
56433
|
/** Type of the action. */
|
|
@@ -56409,6 +56449,8 @@ export type Routes = {
|
|
|
56409
56449
|
created_at: string
|
|
56410
56450
|
/** Date and time at which the event occurred. */
|
|
56411
56451
|
occurred_at: string
|
|
56452
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56453
|
+
event_description?: string | undefined
|
|
56412
56454
|
/** ID of the affected Connect Webview. */
|
|
56413
56455
|
connect_webview_id: string
|
|
56414
56456
|
event_type: 'connect_webview.login_succeeded'
|
|
@@ -56432,6 +56474,8 @@ export type Routes = {
|
|
|
56432
56474
|
created_at: string
|
|
56433
56475
|
/** Date and time at which the event occurred. */
|
|
56434
56476
|
occurred_at: string
|
|
56477
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56478
|
+
event_description?: string | undefined
|
|
56435
56479
|
/** ID of the affected Connect Webview. */
|
|
56436
56480
|
connect_webview_id: string
|
|
56437
56481
|
event_type: 'connect_webview.login_failed'
|
|
@@ -56445,6 +56489,8 @@ export type Routes = {
|
|
|
56445
56489
|
created_at: string
|
|
56446
56490
|
/** Date and time at which the event occurred. */
|
|
56447
56491
|
occurred_at: string
|
|
56492
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56493
|
+
event_description?: string | undefined
|
|
56448
56494
|
/** ID of the affected device. */
|
|
56449
56495
|
device_id: string
|
|
56450
56496
|
/** ID of the connected account associated with the event. */
|
|
@@ -56474,6 +56520,8 @@ export type Routes = {
|
|
|
56474
56520
|
created_at: string
|
|
56475
56521
|
/** Date and time at which the event occurred. */
|
|
56476
56522
|
occurred_at: string
|
|
56523
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56524
|
+
event_description?: string | undefined
|
|
56477
56525
|
/** ID of the affected device. */
|
|
56478
56526
|
device_id: string
|
|
56479
56527
|
/** ID of the connected account associated with the event. */
|
|
@@ -56503,6 +56551,8 @@ export type Routes = {
|
|
|
56503
56551
|
created_at: string
|
|
56504
56552
|
/** Date and time at which the event occurred. */
|
|
56505
56553
|
occurred_at: string
|
|
56554
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56555
|
+
event_description?: string | undefined
|
|
56506
56556
|
/** ID of the affected device. */
|
|
56507
56557
|
device_id: string
|
|
56508
56558
|
/** ID of the connected account associated with the event. */
|
|
@@ -56532,6 +56582,8 @@ export type Routes = {
|
|
|
56532
56582
|
created_at: string
|
|
56533
56583
|
/** Date and time at which the event occurred. */
|
|
56534
56584
|
occurred_at: string
|
|
56585
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56586
|
+
event_description?: string | undefined
|
|
56535
56587
|
/** ID of the affected device. */
|
|
56536
56588
|
device_id: string
|
|
56537
56589
|
/** ID of the connected account associated with the event. */
|
|
@@ -56561,6 +56613,8 @@ export type Routes = {
|
|
|
56561
56613
|
created_at: string
|
|
56562
56614
|
/** Date and time at which the event occurred. */
|
|
56563
56615
|
occurred_at: string
|
|
56616
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56617
|
+
event_description?: string | undefined
|
|
56564
56618
|
/** ID of the affected device. */
|
|
56565
56619
|
device_id: string
|
|
56566
56620
|
/** ID of the connected account associated with the event. */
|
|
@@ -56590,6 +56644,8 @@ export type Routes = {
|
|
|
56590
56644
|
created_at: string
|
|
56591
56645
|
/** Date and time at which the event occurred. */
|
|
56592
56646
|
occurred_at: string
|
|
56647
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56648
|
+
event_description?: string | undefined
|
|
56593
56649
|
/** ID of the affected device. */
|
|
56594
56650
|
device_id: string
|
|
56595
56651
|
/** ID of the connected account associated with the event. */
|
|
@@ -56660,6 +56716,8 @@ export type Routes = {
|
|
|
56660
56716
|
created_at: string
|
|
56661
56717
|
/** Date and time at which the event occurred. */
|
|
56662
56718
|
occurred_at: string
|
|
56719
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56720
|
+
event_description?: string | undefined
|
|
56663
56721
|
/** ID of the affected device. */
|
|
56664
56722
|
device_id: string
|
|
56665
56723
|
/** ID of the connected account associated with the event. */
|
|
@@ -56730,6 +56788,8 @@ export type Routes = {
|
|
|
56730
56788
|
created_at: string
|
|
56731
56789
|
/** Date and time at which the event occurred. */
|
|
56732
56790
|
occurred_at: string
|
|
56791
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56792
|
+
event_description?: string | undefined
|
|
56733
56793
|
/** ID of the affected device. */
|
|
56734
56794
|
device_id: string
|
|
56735
56795
|
/** ID of the connected account associated with the event. */
|
|
@@ -56759,6 +56819,8 @@ export type Routes = {
|
|
|
56759
56819
|
created_at: string
|
|
56760
56820
|
/** Date and time at which the event occurred. */
|
|
56761
56821
|
occurred_at: string
|
|
56822
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56823
|
+
event_description?: string | undefined
|
|
56762
56824
|
/** ID of the affected device. */
|
|
56763
56825
|
device_id: string
|
|
56764
56826
|
/** ID of the connected account associated with the event. */
|
|
@@ -56790,6 +56852,8 @@ export type Routes = {
|
|
|
56790
56852
|
created_at: string
|
|
56791
56853
|
/** Date and time at which the event occurred. */
|
|
56792
56854
|
occurred_at: string
|
|
56855
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56856
|
+
event_description?: string | undefined
|
|
56793
56857
|
/** ID of the affected device. */
|
|
56794
56858
|
device_id: string
|
|
56795
56859
|
/** ID of the connected account associated with the event. */
|
|
@@ -56823,6 +56887,8 @@ export type Routes = {
|
|
|
56823
56887
|
created_at: string
|
|
56824
56888
|
/** Date and time at which the event occurred. */
|
|
56825
56889
|
occurred_at: string
|
|
56890
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56891
|
+
event_description?: string | undefined
|
|
56826
56892
|
/** ID of the affected device. */
|
|
56827
56893
|
device_id: string
|
|
56828
56894
|
/** ID of the connected account associated with the event. */
|
|
@@ -56852,6 +56918,8 @@ export type Routes = {
|
|
|
56852
56918
|
created_at: string
|
|
56853
56919
|
/** Date and time at which the event occurred. */
|
|
56854
56920
|
occurred_at: string
|
|
56921
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56922
|
+
event_description?: string | undefined
|
|
56855
56923
|
/** ID of the affected device. */
|
|
56856
56924
|
device_id: string
|
|
56857
56925
|
/** ID of the connected account associated with the event. */
|
|
@@ -56883,6 +56951,8 @@ export type Routes = {
|
|
|
56883
56951
|
created_at: string
|
|
56884
56952
|
/** Date and time at which the event occurred. */
|
|
56885
56953
|
occurred_at: string
|
|
56954
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56955
|
+
event_description?: string | undefined
|
|
56886
56956
|
/** ID of the affected device. */
|
|
56887
56957
|
device_id: string
|
|
56888
56958
|
/** ID of the connected account associated with the event. */
|
|
@@ -56912,6 +56982,8 @@ export type Routes = {
|
|
|
56912
56982
|
created_at: string
|
|
56913
56983
|
/** Date and time at which the event occurred. */
|
|
56914
56984
|
occurred_at: string
|
|
56985
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56986
|
+
event_description?: string | undefined
|
|
56915
56987
|
/** ID of the affected device. */
|
|
56916
56988
|
device_id: string
|
|
56917
56989
|
/** ID of the connected account associated with the event. */
|
|
@@ -56941,6 +57013,8 @@ export type Routes = {
|
|
|
56941
57013
|
created_at: string
|
|
56942
57014
|
/** Date and time at which the event occurred. */
|
|
56943
57015
|
occurred_at: string
|
|
57016
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57017
|
+
event_description?: string | undefined
|
|
56944
57018
|
/** ID of the affected device. */
|
|
56945
57019
|
device_id: string
|
|
56946
57020
|
/** ID of the connected account associated with the event. */
|
|
@@ -56970,6 +57044,8 @@ export type Routes = {
|
|
|
56970
57044
|
created_at: string
|
|
56971
57045
|
/** Date and time at which the event occurred. */
|
|
56972
57046
|
occurred_at: string
|
|
57047
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57048
|
+
event_description?: string | undefined
|
|
56973
57049
|
/** ID of the affected device. */
|
|
56974
57050
|
device_id: string
|
|
56975
57051
|
/** ID of the connected account associated with the event. */
|
|
@@ -56999,6 +57075,8 @@ export type Routes = {
|
|
|
56999
57075
|
created_at: string
|
|
57000
57076
|
/** Date and time at which the event occurred. */
|
|
57001
57077
|
occurred_at: string
|
|
57078
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57079
|
+
event_description?: string | undefined
|
|
57002
57080
|
/** ID of the affected device. */
|
|
57003
57081
|
device_id: string
|
|
57004
57082
|
/** ID of the connected account associated with the event. */
|
|
@@ -57064,6 +57142,8 @@ export type Routes = {
|
|
|
57064
57142
|
created_at: string
|
|
57065
57143
|
/** Date and time at which the event occurred. */
|
|
57066
57144
|
occurred_at: string
|
|
57145
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57146
|
+
event_description?: string | undefined
|
|
57067
57147
|
/** ID of the affected device. */
|
|
57068
57148
|
device_id: string
|
|
57069
57149
|
/** ID of the connected account associated with the event. */
|
|
@@ -57093,6 +57173,8 @@ export type Routes = {
|
|
|
57093
57173
|
created_at: string
|
|
57094
57174
|
/** Date and time at which the event occurred. */
|
|
57095
57175
|
occurred_at: string
|
|
57176
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57177
|
+
event_description?: string | undefined
|
|
57096
57178
|
/** ID of the affected device. */
|
|
57097
57179
|
device_id: string
|
|
57098
57180
|
/** ID of the connected account associated with the event. */
|
|
@@ -57158,6 +57240,8 @@ export type Routes = {
|
|
|
57158
57240
|
created_at: string
|
|
57159
57241
|
/** Date and time at which the event occurred. */
|
|
57160
57242
|
occurred_at: string
|
|
57243
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57244
|
+
event_description?: string | undefined
|
|
57161
57245
|
/** ID of the affected device. */
|
|
57162
57246
|
device_id: string
|
|
57163
57247
|
/** ID of the connected account associated with the event. */
|
|
@@ -57187,6 +57271,8 @@ export type Routes = {
|
|
|
57187
57271
|
created_at: string
|
|
57188
57272
|
/** Date and time at which the event occurred. */
|
|
57189
57273
|
occurred_at: string
|
|
57274
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57275
|
+
event_description?: string | undefined
|
|
57190
57276
|
/** ID of the affected device. */
|
|
57191
57277
|
device_id: string
|
|
57192
57278
|
/** ID of the connected account associated with the event. */
|
|
@@ -57216,6 +57302,8 @@ export type Routes = {
|
|
|
57216
57302
|
created_at: string
|
|
57217
57303
|
/** Date and time at which the event occurred. */
|
|
57218
57304
|
occurred_at: string
|
|
57305
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57306
|
+
event_description?: string | undefined
|
|
57219
57307
|
/** ID of the affected device. */
|
|
57220
57308
|
device_id: string
|
|
57221
57309
|
/** ID of the connected account associated with the event. */
|
|
@@ -57281,6 +57369,8 @@ export type Routes = {
|
|
|
57281
57369
|
created_at: string
|
|
57282
57370
|
/** Date and time at which the event occurred. */
|
|
57283
57371
|
occurred_at: string
|
|
57372
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57373
|
+
event_description?: string | undefined
|
|
57284
57374
|
/** ID of the affected device. */
|
|
57285
57375
|
device_id: string
|
|
57286
57376
|
/** ID of the connected account associated with the event. */
|
|
@@ -57330,6 +57420,8 @@ export type Routes = {
|
|
|
57330
57420
|
created_at: string
|
|
57331
57421
|
/** Date and time at which the event occurred. */
|
|
57332
57422
|
occurred_at: string
|
|
57423
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57424
|
+
event_description?: string | undefined
|
|
57333
57425
|
/** ID of the affected device. */
|
|
57334
57426
|
device_id: string
|
|
57335
57427
|
/** ID of the connected account associated with the event. */
|
|
@@ -57384,6 +57476,8 @@ export type Routes = {
|
|
|
57384
57476
|
created_at: string
|
|
57385
57477
|
/** Date and time at which the event occurred. */
|
|
57386
57478
|
occurred_at: string
|
|
57479
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57480
|
+
event_description?: string | undefined
|
|
57387
57481
|
/** ID of the affected device. */
|
|
57388
57482
|
device_id?: string | undefined
|
|
57389
57483
|
/** ID of the connected account associated with the event. */
|
|
@@ -57462,6 +57556,8 @@ export type Routes = {
|
|
|
57462
57556
|
created_at: string
|
|
57463
57557
|
/** Date and time at which the event occurred. */
|
|
57464
57558
|
occurred_at: string
|
|
57559
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57560
|
+
event_description?: string | undefined
|
|
57465
57561
|
/** ID of the affected device. */
|
|
57466
57562
|
device_id?: string | undefined
|
|
57467
57563
|
/** ID of the connected account associated with the event. */
|
|
@@ -57517,6 +57613,8 @@ export type Routes = {
|
|
|
57517
57613
|
created_at: string
|
|
57518
57614
|
/** Date and time at which the event occurred. */
|
|
57519
57615
|
occurred_at: string
|
|
57616
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57617
|
+
event_description?: string | undefined
|
|
57520
57618
|
/** ID of the affected device. */
|
|
57521
57619
|
device_id: string
|
|
57522
57620
|
/** ID of the connected account associated with the event. */
|
|
@@ -57552,6 +57650,8 @@ export type Routes = {
|
|
|
57552
57650
|
created_at: string
|
|
57553
57651
|
/** Date and time at which the event occurred. */
|
|
57554
57652
|
occurred_at: string
|
|
57653
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57654
|
+
event_description?: string | undefined
|
|
57555
57655
|
/** ID of the affected device. */
|
|
57556
57656
|
device_id: string
|
|
57557
57657
|
/** ID of the connected account associated with the event. */
|
|
@@ -57602,6 +57702,8 @@ export type Routes = {
|
|
|
57602
57702
|
created_at: string
|
|
57603
57703
|
/** Date and time at which the event occurred. */
|
|
57604
57704
|
occurred_at: string
|
|
57705
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57706
|
+
event_description?: string | undefined
|
|
57605
57707
|
/** ID of the affected device. */
|
|
57606
57708
|
device_id: string
|
|
57607
57709
|
/** ID of the connected account associated with the event. */
|
|
@@ -57643,6 +57745,8 @@ export type Routes = {
|
|
|
57643
57745
|
created_at: string
|
|
57644
57746
|
/** Date and time at which the event occurred. */
|
|
57645
57747
|
occurred_at: string
|
|
57748
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57749
|
+
event_description?: string | undefined
|
|
57646
57750
|
/** ID of the affected device. */
|
|
57647
57751
|
device_id: string
|
|
57648
57752
|
/** ID of the connected account associated with the event. */
|
|
@@ -57684,6 +57788,8 @@ export type Routes = {
|
|
|
57684
57788
|
created_at: string
|
|
57685
57789
|
/** Date and time at which the event occurred. */
|
|
57686
57790
|
occurred_at: string
|
|
57791
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57792
|
+
event_description?: string | undefined
|
|
57687
57793
|
/** ID of the affected device. */
|
|
57688
57794
|
device_id: string
|
|
57689
57795
|
/** ID of the connected account associated with the event. */
|
|
@@ -57721,6 +57827,8 @@ export type Routes = {
|
|
|
57721
57827
|
created_at: string
|
|
57722
57828
|
/** Date and time at which the event occurred. */
|
|
57723
57829
|
occurred_at: string
|
|
57830
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57831
|
+
event_description?: string | undefined
|
|
57724
57832
|
/** ID of the affected device. */
|
|
57725
57833
|
device_id: string
|
|
57726
57834
|
/** ID of the connected account associated with the event. */
|
|
@@ -57754,6 +57862,8 @@ export type Routes = {
|
|
|
57754
57862
|
created_at: string
|
|
57755
57863
|
/** Date and time at which the event occurred. */
|
|
57756
57864
|
occurred_at: string
|
|
57865
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57866
|
+
event_description?: string | undefined
|
|
57757
57867
|
/** ID of the affected device. */
|
|
57758
57868
|
device_id: string
|
|
57759
57869
|
/** ID of the connected account associated with the event. */
|
|
@@ -57785,6 +57895,8 @@ export type Routes = {
|
|
|
57785
57895
|
created_at: string
|
|
57786
57896
|
/** Date and time at which the event occurred. */
|
|
57787
57897
|
occurred_at: string
|
|
57898
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57899
|
+
event_description?: string | undefined
|
|
57788
57900
|
/** ID of the affected device. */
|
|
57789
57901
|
device_id: string
|
|
57790
57902
|
/** ID of the connected account associated with the event. */
|
|
@@ -57824,6 +57936,8 @@ export type Routes = {
|
|
|
57824
57936
|
created_at: string
|
|
57825
57937
|
/** Date and time at which the event occurred. */
|
|
57826
57938
|
occurred_at: string
|
|
57939
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57940
|
+
event_description?: string | undefined
|
|
57827
57941
|
/** ID of the affected device. */
|
|
57828
57942
|
device_id: string
|
|
57829
57943
|
/** ID of the connected account associated with the event. */
|
|
@@ -57857,6 +57971,8 @@ export type Routes = {
|
|
|
57857
57971
|
created_at: string
|
|
57858
57972
|
/** Date and time at which the event occurred. */
|
|
57859
57973
|
occurred_at: string
|
|
57974
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57975
|
+
event_description?: string | undefined
|
|
57860
57976
|
/** ID of the affected enrollment automation. */
|
|
57861
57977
|
enrollment_automation_id: string
|
|
57862
57978
|
event_type: 'enrollment_automation.deleted'
|
|
@@ -57870,6 +57986,8 @@ export type Routes = {
|
|
|
57870
57986
|
created_at: string
|
|
57871
57987
|
/** Date and time at which the event occurred. */
|
|
57872
57988
|
occurred_at: string
|
|
57989
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57990
|
+
event_description?: string | undefined
|
|
57873
57991
|
/** ID of the affected phone device. */
|
|
57874
57992
|
device_id: string
|
|
57875
57993
|
/** Custom metadata of the device; present when device_id is provided. */
|
|
@@ -57889,6 +58007,8 @@ export type Routes = {
|
|
|
57889
58007
|
created_at: string
|
|
57890
58008
|
/** Date and time at which the event occurred. */
|
|
57891
58009
|
occurred_at: string
|
|
58010
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58011
|
+
event_description?: string | undefined
|
|
57892
58012
|
/** ID of the affected space. */
|
|
57893
58013
|
space_id: string
|
|
57894
58014
|
/** Type of the event. */
|
|
@@ -57909,6 +58029,8 @@ export type Routes = {
|
|
|
57909
58029
|
created_at: string
|
|
57910
58030
|
/** Date and time at which the event occurred. */
|
|
57911
58031
|
occurred_at: string
|
|
58032
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58033
|
+
event_description?: string | undefined
|
|
57912
58034
|
/** ID of the affected space. */
|
|
57913
58035
|
space_id: string
|
|
57914
58036
|
/** Type of the event. */
|
|
@@ -57929,6 +58051,8 @@ export type Routes = {
|
|
|
57929
58051
|
created_at: string
|
|
57930
58052
|
/** Date and time at which the event occurred. */
|
|
57931
58053
|
occurred_at: string
|
|
58054
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58055
|
+
event_description?: string | undefined
|
|
57932
58056
|
/** ID of the affected space. */
|
|
57933
58057
|
space_id: string
|
|
57934
58058
|
/** Type of the event. */
|
|
@@ -58241,6 +58365,8 @@ export type Routes = {
|
|
|
58241
58365
|
created_at: string
|
|
58242
58366
|
/** Date and time at which the event occurred. */
|
|
58243
58367
|
occurred_at: string
|
|
58368
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58369
|
+
event_description?: string | undefined
|
|
58244
58370
|
/** ID of the affected access code. */
|
|
58245
58371
|
access_code_id: string
|
|
58246
58372
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58270,6 +58396,8 @@ export type Routes = {
|
|
|
58270
58396
|
created_at: string
|
|
58271
58397
|
/** Date and time at which the event occurred. */
|
|
58272
58398
|
occurred_at: string
|
|
58399
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58400
|
+
event_description?: string | undefined
|
|
58273
58401
|
/** ID of the affected access code. */
|
|
58274
58402
|
access_code_id: string
|
|
58275
58403
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58312,6 +58440,8 @@ export type Routes = {
|
|
|
58312
58440
|
created_at: string
|
|
58313
58441
|
/** Date and time at which the event occurred. */
|
|
58314
58442
|
occurred_at: string
|
|
58443
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58444
|
+
event_description?: string | undefined
|
|
58315
58445
|
/** ID of the affected access code. */
|
|
58316
58446
|
access_code_id: string
|
|
58317
58447
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58353,6 +58483,8 @@ export type Routes = {
|
|
|
58353
58483
|
created_at: string
|
|
58354
58484
|
/** Date and time at which the event occurred. */
|
|
58355
58485
|
occurred_at: string
|
|
58486
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58487
|
+
event_description?: string | undefined
|
|
58356
58488
|
/** ID of the affected access code. */
|
|
58357
58489
|
access_code_id: string
|
|
58358
58490
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58394,6 +58526,8 @@ export type Routes = {
|
|
|
58394
58526
|
created_at: string
|
|
58395
58527
|
/** Date and time at which the event occurred. */
|
|
58396
58528
|
occurred_at: string
|
|
58529
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58530
|
+
event_description?: string | undefined
|
|
58397
58531
|
/** ID of the affected access code. */
|
|
58398
58532
|
access_code_id: string
|
|
58399
58533
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58439,6 +58573,8 @@ export type Routes = {
|
|
|
58439
58573
|
created_at: string
|
|
58440
58574
|
/** Date and time at which the event occurred. */
|
|
58441
58575
|
occurred_at: string
|
|
58576
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58577
|
+
event_description?: string | undefined
|
|
58442
58578
|
/** ID of the affected access code. */
|
|
58443
58579
|
access_code_id: string
|
|
58444
58580
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58491,6 +58627,8 @@ export type Routes = {
|
|
|
58491
58627
|
created_at: string
|
|
58492
58628
|
/** Date and time at which the event occurred. */
|
|
58493
58629
|
occurred_at: string
|
|
58630
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58631
|
+
event_description?: string | undefined
|
|
58494
58632
|
/** ID of the affected access code. */
|
|
58495
58633
|
access_code_id: string
|
|
58496
58634
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58522,6 +58660,8 @@ export type Routes = {
|
|
|
58522
58660
|
created_at: string
|
|
58523
58661
|
/** Date and time at which the event occurred. */
|
|
58524
58662
|
occurred_at: string
|
|
58663
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58664
|
+
event_description?: string | undefined
|
|
58525
58665
|
/** ID of the affected access code. */
|
|
58526
58666
|
access_code_id: string
|
|
58527
58667
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58553,6 +58693,8 @@ export type Routes = {
|
|
|
58553
58693
|
created_at: string
|
|
58554
58694
|
/** Date and time at which the event occurred. */
|
|
58555
58695
|
occurred_at: string
|
|
58696
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58697
|
+
event_description?: string | undefined
|
|
58556
58698
|
/** ID of the affected access code. */
|
|
58557
58699
|
access_code_id: string
|
|
58558
58700
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58582,6 +58724,8 @@ export type Routes = {
|
|
|
58582
58724
|
created_at: string
|
|
58583
58725
|
/** Date and time at which the event occurred. */
|
|
58584
58726
|
occurred_at: string
|
|
58727
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58728
|
+
event_description?: string | undefined
|
|
58585
58729
|
/** ID of the affected access code. */
|
|
58586
58730
|
access_code_id: string
|
|
58587
58731
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58665,6 +58809,8 @@ export type Routes = {
|
|
|
58665
58809
|
created_at: string
|
|
58666
58810
|
/** Date and time at which the event occurred. */
|
|
58667
58811
|
occurred_at: string
|
|
58812
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58813
|
+
event_description?: string | undefined
|
|
58668
58814
|
/** ID of the affected access code. */
|
|
58669
58815
|
access_code_id: string
|
|
58670
58816
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58748,6 +58894,8 @@ export type Routes = {
|
|
|
58748
58894
|
created_at: string
|
|
58749
58895
|
/** Date and time at which the event occurred. */
|
|
58750
58896
|
occurred_at: string
|
|
58897
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58898
|
+
event_description?: string | undefined
|
|
58751
58899
|
/** ID of the affected access code. */
|
|
58752
58900
|
access_code_id: string
|
|
58753
58901
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58779,6 +58927,8 @@ export type Routes = {
|
|
|
58779
58927
|
created_at: string
|
|
58780
58928
|
/** Date and time at which the event occurred. */
|
|
58781
58929
|
occurred_at: string
|
|
58930
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58931
|
+
event_description?: string | undefined
|
|
58782
58932
|
/** ID of the affected access code. */
|
|
58783
58933
|
access_code_id: string
|
|
58784
58934
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58862,6 +59012,8 @@ export type Routes = {
|
|
|
58862
59012
|
created_at: string
|
|
58863
59013
|
/** Date and time at which the event occurred. */
|
|
58864
59014
|
occurred_at: string
|
|
59015
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59016
|
+
event_description?: string | undefined
|
|
58865
59017
|
/** ID of the affected access code. */
|
|
58866
59018
|
access_code_id: string
|
|
58867
59019
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58945,6 +59097,8 @@ export type Routes = {
|
|
|
58945
59097
|
created_at: string
|
|
58946
59098
|
/** Date and time at which the event occurred. */
|
|
58947
59099
|
occurred_at: string
|
|
59100
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59101
|
+
event_description?: string | undefined
|
|
58948
59102
|
/** ID of the affected access code. */
|
|
58949
59103
|
access_code_id: string
|
|
58950
59104
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58974,6 +59128,8 @@ export type Routes = {
|
|
|
58974
59128
|
created_at: string
|
|
58975
59129
|
/** Date and time at which the event occurred. */
|
|
58976
59130
|
occurred_at: string
|
|
59131
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59132
|
+
event_description?: string | undefined
|
|
58977
59133
|
/** ID of the affected access code. */
|
|
58978
59134
|
access_code_id: string
|
|
58979
59135
|
/** ID of the device associated with the affected access code. */
|
|
@@ -59003,6 +59159,8 @@ export type Routes = {
|
|
|
59003
59159
|
created_at: string
|
|
59004
59160
|
/** Date and time at which the event occurred. */
|
|
59005
59161
|
occurred_at: string
|
|
59162
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59163
|
+
event_description?: string | undefined
|
|
59006
59164
|
/** ID of the affected access code. */
|
|
59007
59165
|
access_code_id: string
|
|
59008
59166
|
/** ID of the device associated with the affected access code. */
|
|
@@ -59034,6 +59192,8 @@ export type Routes = {
|
|
|
59034
59192
|
created_at: string
|
|
59035
59193
|
/** Date and time at which the event occurred. */
|
|
59036
59194
|
occurred_at: string
|
|
59195
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59196
|
+
event_description?: string | undefined
|
|
59037
59197
|
/** ID of the affected access code. */
|
|
59038
59198
|
access_code_id: string
|
|
59039
59199
|
/** ID of the device associated with the affected access code. */
|
|
@@ -59063,6 +59223,8 @@ export type Routes = {
|
|
|
59063
59223
|
created_at: string
|
|
59064
59224
|
/** Date and time at which the event occurred. */
|
|
59065
59225
|
occurred_at: string
|
|
59226
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59227
|
+
event_description?: string | undefined
|
|
59066
59228
|
/** ID of the affected access code. */
|
|
59067
59229
|
access_code_id: string
|
|
59068
59230
|
/** ID of the device associated with the affected access code. */
|
|
@@ -59146,6 +59308,8 @@ export type Routes = {
|
|
|
59146
59308
|
created_at: string
|
|
59147
59309
|
/** Date and time at which the event occurred. */
|
|
59148
59310
|
occurred_at: string
|
|
59311
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59312
|
+
event_description?: string | undefined
|
|
59149
59313
|
/** ID of the affected access code. */
|
|
59150
59314
|
access_code_id: string
|
|
59151
59315
|
/** ID of the device associated with the affected access code. */
|
|
@@ -59175,6 +59339,8 @@ export type Routes = {
|
|
|
59175
59339
|
created_at: string
|
|
59176
59340
|
/** Date and time at which the event occurred. */
|
|
59177
59341
|
occurred_at: string
|
|
59342
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59343
|
+
event_description?: string | undefined
|
|
59178
59344
|
/** ID of the affected access code. */
|
|
59179
59345
|
access_code_id: string
|
|
59180
59346
|
/** ID of the device associated with the affected access code. */
|
|
@@ -59204,6 +59370,8 @@ export type Routes = {
|
|
|
59204
59370
|
created_at: string
|
|
59205
59371
|
/** Date and time at which the event occurred. */
|
|
59206
59372
|
occurred_at: string
|
|
59373
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59374
|
+
event_description?: string | undefined
|
|
59207
59375
|
/** ID of the affected Access Grant. */
|
|
59208
59376
|
access_grant_id: string
|
|
59209
59377
|
event_type: 'access_grant.created'
|
|
@@ -59217,6 +59385,8 @@ export type Routes = {
|
|
|
59217
59385
|
created_at: string
|
|
59218
59386
|
/** Date and time at which the event occurred. */
|
|
59219
59387
|
occurred_at: string
|
|
59388
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59389
|
+
event_description?: string | undefined
|
|
59220
59390
|
/** ID of the affected Access Grant. */
|
|
59221
59391
|
access_grant_id: string
|
|
59222
59392
|
event_type: 'access_grant.deleted'
|
|
@@ -59230,6 +59400,8 @@ export type Routes = {
|
|
|
59230
59400
|
created_at: string
|
|
59231
59401
|
/** Date and time at which the event occurred. */
|
|
59232
59402
|
occurred_at: string
|
|
59403
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59404
|
+
event_description?: string | undefined
|
|
59233
59405
|
/** ID of the affected Access Grant. */
|
|
59234
59406
|
access_grant_id: string
|
|
59235
59407
|
event_type: 'access_grant.access_granted_to_all_doors'
|
|
@@ -59243,6 +59415,8 @@ export type Routes = {
|
|
|
59243
59415
|
created_at: string
|
|
59244
59416
|
/** Date and time at which the event occurred. */
|
|
59245
59417
|
occurred_at: string
|
|
59418
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59419
|
+
event_description?: string | undefined
|
|
59246
59420
|
/** ID of the affected Access Grant. */
|
|
59247
59421
|
access_grant_id: string
|
|
59248
59422
|
event_type: 'access_grant.access_granted_to_door'
|
|
@@ -59258,6 +59432,8 @@ export type Routes = {
|
|
|
59258
59432
|
created_at: string
|
|
59259
59433
|
/** Date and time at which the event occurred. */
|
|
59260
59434
|
occurred_at: string
|
|
59435
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59436
|
+
event_description?: string | undefined
|
|
59261
59437
|
/** ID of the affected Access Grant. */
|
|
59262
59438
|
access_grant_id: string
|
|
59263
59439
|
event_type: 'access_grant.access_to_door_lost'
|
|
@@ -59273,6 +59449,8 @@ export type Routes = {
|
|
|
59273
59449
|
created_at: string
|
|
59274
59450
|
/** Date and time at which the event occurred. */
|
|
59275
59451
|
occurred_at: string
|
|
59452
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59453
|
+
event_description?: string | undefined
|
|
59276
59454
|
/** ID of the affected Access Grant. */
|
|
59277
59455
|
access_grant_id: string
|
|
59278
59456
|
event_type: 'access_grant.access_times_changed'
|
|
@@ -59292,6 +59470,8 @@ export type Routes = {
|
|
|
59292
59470
|
created_at: string
|
|
59293
59471
|
/** Date and time at which the event occurred. */
|
|
59294
59472
|
occurred_at: string
|
|
59473
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59474
|
+
event_description?: string | undefined
|
|
59295
59475
|
/** ID of the affected Access Grant. */
|
|
59296
59476
|
access_grant_id: string
|
|
59297
59477
|
event_type: 'access_grant.could_not_create_requested_access_methods'
|
|
@@ -59309,6 +59489,8 @@ export type Routes = {
|
|
|
59309
59489
|
created_at: string
|
|
59310
59490
|
/** Date and time at which the event occurred. */
|
|
59311
59491
|
occurred_at: string
|
|
59492
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59493
|
+
event_description?: string | undefined
|
|
59312
59494
|
/** ID of the affected access method. */
|
|
59313
59495
|
access_method_id: string
|
|
59314
59496
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -59330,6 +59512,8 @@ export type Routes = {
|
|
|
59330
59512
|
created_at: string
|
|
59331
59513
|
/** Date and time at which the event occurred. */
|
|
59332
59514
|
occurred_at: string
|
|
59515
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59516
|
+
event_description?: string | undefined
|
|
59333
59517
|
/** ID of the affected access method. */
|
|
59334
59518
|
access_method_id: string
|
|
59335
59519
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -59347,6 +59531,8 @@ export type Routes = {
|
|
|
59347
59531
|
created_at: string
|
|
59348
59532
|
/** Date and time at which the event occurred. */
|
|
59349
59533
|
occurred_at: string
|
|
59534
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59535
|
+
event_description?: string | undefined
|
|
59350
59536
|
/** ID of the affected access method. */
|
|
59351
59537
|
access_method_id: string
|
|
59352
59538
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -59364,6 +59550,8 @@ export type Routes = {
|
|
|
59364
59550
|
created_at: string
|
|
59365
59551
|
/** Date and time at which the event occurred. */
|
|
59366
59552
|
occurred_at: string
|
|
59553
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59554
|
+
event_description?: string | undefined
|
|
59367
59555
|
/** ID of the affected access method. */
|
|
59368
59556
|
access_method_id: string
|
|
59369
59557
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -59381,6 +59569,8 @@ export type Routes = {
|
|
|
59381
59569
|
created_at: string
|
|
59382
59570
|
/** Date and time at which the event occurred. */
|
|
59383
59571
|
occurred_at: string
|
|
59572
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59573
|
+
event_description?: string | undefined
|
|
59384
59574
|
/** ID of the affected access method. */
|
|
59385
59575
|
access_method_id: string
|
|
59386
59576
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -59402,6 +59592,8 @@ export type Routes = {
|
|
|
59402
59592
|
created_at: string
|
|
59403
59593
|
/** Date and time at which the event occurred. */
|
|
59404
59594
|
occurred_at: string
|
|
59595
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59596
|
+
event_description?: string | undefined
|
|
59405
59597
|
/** ID of the affected access method. */
|
|
59406
59598
|
access_method_id: string
|
|
59407
59599
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -59419,6 +59611,8 @@ export type Routes = {
|
|
|
59419
59611
|
created_at: string
|
|
59420
59612
|
/** Date and time at which the event occurred. */
|
|
59421
59613
|
occurred_at: string
|
|
59614
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59615
|
+
event_description?: string | undefined
|
|
59422
59616
|
/** ID of the connected account. */
|
|
59423
59617
|
connected_account_id?: string | undefined
|
|
59424
59618
|
/** ID of the access system. */
|
|
@@ -59434,6 +59628,8 @@ export type Routes = {
|
|
|
59434
59628
|
created_at: string
|
|
59435
59629
|
/** Date and time at which the event occurred. */
|
|
59436
59630
|
occurred_at: string
|
|
59631
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59632
|
+
event_description?: string | undefined
|
|
59437
59633
|
/** ID of the connected account. */
|
|
59438
59634
|
connected_account_id?: string | undefined
|
|
59439
59635
|
/** ID of the access system. */
|
|
@@ -59449,6 +59645,8 @@ export type Routes = {
|
|
|
59449
59645
|
created_at: string
|
|
59450
59646
|
/** Date and time at which the event occurred. */
|
|
59451
59647
|
occurred_at: string
|
|
59648
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59649
|
+
event_description?: string | undefined
|
|
59452
59650
|
/** ID of the connected account. */
|
|
59453
59651
|
connected_account_id?: string | undefined
|
|
59454
59652
|
/** ID of the access system. */
|
|
@@ -59500,6 +59698,8 @@ export type Routes = {
|
|
|
59500
59698
|
created_at: string
|
|
59501
59699
|
/** Date and time at which the event occurred. */
|
|
59502
59700
|
occurred_at: string
|
|
59701
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59702
|
+
event_description?: string | undefined
|
|
59503
59703
|
/** ID of the connected account. */
|
|
59504
59704
|
connected_account_id?: string | undefined
|
|
59505
59705
|
/** ID of the access system. */
|
|
@@ -59517,6 +59717,8 @@ export type Routes = {
|
|
|
59517
59717
|
created_at: string
|
|
59518
59718
|
/** Date and time at which the event occurred. */
|
|
59519
59719
|
occurred_at: string
|
|
59720
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59721
|
+
event_description?: string | undefined
|
|
59520
59722
|
/** ID of the connected account. */
|
|
59521
59723
|
connected_account_id?: string | undefined
|
|
59522
59724
|
/** ID of the access system. */
|
|
@@ -59534,6 +59736,8 @@ export type Routes = {
|
|
|
59534
59736
|
created_at: string
|
|
59535
59737
|
/** Date and time at which the event occurred. */
|
|
59536
59738
|
occurred_at: string
|
|
59739
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59740
|
+
event_description?: string | undefined
|
|
59537
59741
|
/** ID of the connected account. */
|
|
59538
59742
|
connected_account_id?: string | undefined
|
|
59539
59743
|
/** ID of the access system. */
|
|
@@ -59551,6 +59755,8 @@ export type Routes = {
|
|
|
59551
59755
|
created_at: string
|
|
59552
59756
|
/** Date and time at which the event occurred. */
|
|
59553
59757
|
occurred_at: string
|
|
59758
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59759
|
+
event_description?: string | undefined
|
|
59554
59760
|
/** ID of the connected account. */
|
|
59555
59761
|
connected_account_id?: string | undefined
|
|
59556
59762
|
/** ID of the access system. */
|
|
@@ -59568,6 +59774,8 @@ export type Routes = {
|
|
|
59568
59774
|
created_at: string
|
|
59569
59775
|
/** Date and time at which the event occurred. */
|
|
59570
59776
|
occurred_at: string
|
|
59777
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59778
|
+
event_description?: string | undefined
|
|
59571
59779
|
/** ID of the connected account. */
|
|
59572
59780
|
connected_account_id?: string | undefined
|
|
59573
59781
|
/** ID of the access system. */
|
|
@@ -59585,6 +59793,8 @@ export type Routes = {
|
|
|
59585
59793
|
created_at: string
|
|
59586
59794
|
/** Date and time at which the event occurred. */
|
|
59587
59795
|
occurred_at: string
|
|
59796
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59797
|
+
event_description?: string | undefined
|
|
59588
59798
|
/** ID of the connected account. */
|
|
59589
59799
|
connected_account_id?: string | undefined
|
|
59590
59800
|
/** ID of the access system. */
|
|
@@ -59602,6 +59812,8 @@ export type Routes = {
|
|
|
59602
59812
|
created_at: string
|
|
59603
59813
|
/** Date and time at which the event occurred. */
|
|
59604
59814
|
occurred_at: string
|
|
59815
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59816
|
+
event_description?: string | undefined
|
|
59605
59817
|
/** ID of the connected account. */
|
|
59606
59818
|
connected_account_id?: string | undefined
|
|
59607
59819
|
/** ID of the access system. */
|
|
@@ -59619,6 +59831,8 @@ export type Routes = {
|
|
|
59619
59831
|
created_at: string
|
|
59620
59832
|
/** Date and time at which the event occurred. */
|
|
59621
59833
|
occurred_at: string
|
|
59834
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59835
|
+
event_description?: string | undefined
|
|
59622
59836
|
/** ID of the connected account. */
|
|
59623
59837
|
connected_account_id?: string | undefined
|
|
59624
59838
|
/** ID of the access system. */
|
|
@@ -59636,6 +59850,8 @@ export type Routes = {
|
|
|
59636
59850
|
created_at: string
|
|
59637
59851
|
/** Date and time at which the event occurred. */
|
|
59638
59852
|
occurred_at: string
|
|
59853
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59854
|
+
event_description?: string | undefined
|
|
59639
59855
|
/** ID of the connected account. */
|
|
59640
59856
|
connected_account_id?: string | undefined
|
|
59641
59857
|
/** ID of the access system. */
|
|
@@ -59653,6 +59869,8 @@ export type Routes = {
|
|
|
59653
59869
|
created_at: string
|
|
59654
59870
|
/** Date and time at which the event occurred. */
|
|
59655
59871
|
occurred_at: string
|
|
59872
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59873
|
+
event_description?: string | undefined
|
|
59656
59874
|
/** ID of the connected account. */
|
|
59657
59875
|
connected_account_id?: string | undefined
|
|
59658
59876
|
/** ID of the access system. */
|
|
@@ -59670,6 +59888,8 @@ export type Routes = {
|
|
|
59670
59888
|
created_at: string
|
|
59671
59889
|
/** Date and time at which the event occurred. */
|
|
59672
59890
|
occurred_at: string
|
|
59891
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59892
|
+
event_description?: string | undefined
|
|
59673
59893
|
/** ID of the connected account. */
|
|
59674
59894
|
connected_account_id?: string | undefined
|
|
59675
59895
|
/** ID of the access system. */
|
|
@@ -59687,6 +59907,8 @@ export type Routes = {
|
|
|
59687
59907
|
created_at: string
|
|
59688
59908
|
/** Date and time at which the event occurred. */
|
|
59689
59909
|
occurred_at: string
|
|
59910
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59911
|
+
event_description?: string | undefined
|
|
59690
59912
|
/** ID of the affected client session. */
|
|
59691
59913
|
client_session_id: string
|
|
59692
59914
|
event_type: 'client_session.deleted'
|
|
@@ -59700,6 +59922,8 @@ export type Routes = {
|
|
|
59700
59922
|
created_at: string
|
|
59701
59923
|
/** Date and time at which the event occurred. */
|
|
59702
59924
|
occurred_at: string
|
|
59925
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59926
|
+
event_description?: string | undefined
|
|
59703
59927
|
/** ID of the affected connected account. */
|
|
59704
59928
|
connected_account_id: string
|
|
59705
59929
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59723,6 +59947,8 @@ export type Routes = {
|
|
|
59723
59947
|
created_at: string
|
|
59724
59948
|
/** Date and time at which the event occurred. */
|
|
59725
59949
|
occurred_at: string
|
|
59950
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59951
|
+
event_description?: string | undefined
|
|
59726
59952
|
/** ID of the affected connected account. */
|
|
59727
59953
|
connected_account_id: string
|
|
59728
59954
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59744,6 +59970,8 @@ export type Routes = {
|
|
|
59744
59970
|
created_at: string
|
|
59745
59971
|
/** Date and time at which the event occurred. */
|
|
59746
59972
|
occurred_at: string
|
|
59973
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59974
|
+
event_description?: string | undefined
|
|
59747
59975
|
/** ID of the affected connected account. */
|
|
59748
59976
|
connected_account_id: string
|
|
59749
59977
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59765,6 +59993,8 @@ export type Routes = {
|
|
|
59765
59993
|
created_at: string
|
|
59766
59994
|
/** Date and time at which the event occurred. */
|
|
59767
59995
|
occurred_at: string
|
|
59996
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59997
|
+
event_description?: string | undefined
|
|
59768
59998
|
/** ID of the affected connected account. */
|
|
59769
59999
|
connected_account_id: string
|
|
59770
60000
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59802,6 +60032,8 @@ export type Routes = {
|
|
|
59802
60032
|
created_at: string
|
|
59803
60033
|
/** Date and time at which the event occurred. */
|
|
59804
60034
|
occurred_at: string
|
|
60035
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60036
|
+
event_description?: string | undefined
|
|
59805
60037
|
/** ID of the affected connected account. */
|
|
59806
60038
|
connected_account_id: string
|
|
59807
60039
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59821,6 +60053,8 @@ export type Routes = {
|
|
|
59821
60053
|
created_at: string
|
|
59822
60054
|
/** Date and time at which the event occurred. */
|
|
59823
60055
|
occurred_at: string
|
|
60056
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60057
|
+
event_description?: string | undefined
|
|
59824
60058
|
/** ID of the affected connected account. */
|
|
59825
60059
|
connected_account_id: string
|
|
59826
60060
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59844,6 +60078,8 @@ export type Routes = {
|
|
|
59844
60078
|
created_at: string
|
|
59845
60079
|
/** Date and time at which the event occurred. */
|
|
59846
60080
|
occurred_at: string
|
|
60081
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60082
|
+
event_description?: string | undefined
|
|
59847
60083
|
/** ID of the affected connected account. */
|
|
59848
60084
|
connected_account_id: string
|
|
59849
60085
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59863,6 +60099,8 @@ export type Routes = {
|
|
|
59863
60099
|
created_at: string
|
|
59864
60100
|
/** Date and time at which the event occurred. */
|
|
59865
60101
|
occurred_at: string
|
|
60102
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60103
|
+
event_description?: string | undefined
|
|
59866
60104
|
/** ID of the affected connected account. */
|
|
59867
60105
|
connected_account_id: string
|
|
59868
60106
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59900,6 +60138,8 @@ export type Routes = {
|
|
|
59900
60138
|
created_at: string
|
|
59901
60139
|
/** Date and time at which the event occurred. */
|
|
59902
60140
|
occurred_at: string
|
|
60141
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60142
|
+
event_description?: string | undefined
|
|
59903
60143
|
/** ID of the affected action attempt. */
|
|
59904
60144
|
action_attempt_id: string
|
|
59905
60145
|
/** Type of the action. */
|
|
@@ -59921,6 +60161,8 @@ export type Routes = {
|
|
|
59921
60161
|
created_at: string
|
|
59922
60162
|
/** Date and time at which the event occurred. */
|
|
59923
60163
|
occurred_at: string
|
|
60164
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60165
|
+
event_description?: string | undefined
|
|
59924
60166
|
/** ID of the affected action attempt. */
|
|
59925
60167
|
action_attempt_id: string
|
|
59926
60168
|
/** Type of the action. */
|
|
@@ -59942,6 +60184,8 @@ export type Routes = {
|
|
|
59942
60184
|
created_at: string
|
|
59943
60185
|
/** Date and time at which the event occurred. */
|
|
59944
60186
|
occurred_at: string
|
|
60187
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60188
|
+
event_description?: string | undefined
|
|
59945
60189
|
/** ID of the affected action attempt. */
|
|
59946
60190
|
action_attempt_id: string
|
|
59947
60191
|
/** Type of the action. */
|
|
@@ -59963,6 +60207,8 @@ export type Routes = {
|
|
|
59963
60207
|
created_at: string
|
|
59964
60208
|
/** Date and time at which the event occurred. */
|
|
59965
60209
|
occurred_at: string
|
|
60210
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60211
|
+
event_description?: string | undefined
|
|
59966
60212
|
/** ID of the affected action attempt. */
|
|
59967
60213
|
action_attempt_id: string
|
|
59968
60214
|
/** Type of the action. */
|
|
@@ -59984,6 +60230,8 @@ export type Routes = {
|
|
|
59984
60230
|
created_at: string
|
|
59985
60231
|
/** Date and time at which the event occurred. */
|
|
59986
60232
|
occurred_at: string
|
|
60233
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60234
|
+
event_description?: string | undefined
|
|
59987
60235
|
/** ID of the affected action attempt. */
|
|
59988
60236
|
action_attempt_id: string
|
|
59989
60237
|
/** Type of the action. */
|
|
@@ -60005,6 +60253,8 @@ export type Routes = {
|
|
|
60005
60253
|
created_at: string
|
|
60006
60254
|
/** Date and time at which the event occurred. */
|
|
60007
60255
|
occurred_at: string
|
|
60256
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60257
|
+
event_description?: string | undefined
|
|
60008
60258
|
/** ID of the affected action attempt. */
|
|
60009
60259
|
action_attempt_id: string
|
|
60010
60260
|
/** Type of the action. */
|
|
@@ -60026,6 +60276,8 @@ export type Routes = {
|
|
|
60026
60276
|
created_at: string
|
|
60027
60277
|
/** Date and time at which the event occurred. */
|
|
60028
60278
|
occurred_at: string
|
|
60279
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60280
|
+
event_description?: string | undefined
|
|
60029
60281
|
/** ID of the affected action attempt. */
|
|
60030
60282
|
action_attempt_id: string
|
|
60031
60283
|
/** Type of the action. */
|
|
@@ -60047,6 +60299,8 @@ export type Routes = {
|
|
|
60047
60299
|
created_at: string
|
|
60048
60300
|
/** Date and time at which the event occurred. */
|
|
60049
60301
|
occurred_at: string
|
|
60302
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60303
|
+
event_description?: string | undefined
|
|
60050
60304
|
/** ID of the affected action attempt. */
|
|
60051
60305
|
action_attempt_id: string
|
|
60052
60306
|
/** Type of the action. */
|
|
@@ -60068,6 +60322,8 @@ export type Routes = {
|
|
|
60068
60322
|
created_at: string
|
|
60069
60323
|
/** Date and time at which the event occurred. */
|
|
60070
60324
|
occurred_at: string
|
|
60325
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60326
|
+
event_description?: string | undefined
|
|
60071
60327
|
/** ID of the affected Connect Webview. */
|
|
60072
60328
|
connect_webview_id: string
|
|
60073
60329
|
event_type: 'connect_webview.login_succeeded'
|
|
@@ -60091,6 +60347,8 @@ export type Routes = {
|
|
|
60091
60347
|
created_at: string
|
|
60092
60348
|
/** Date and time at which the event occurred. */
|
|
60093
60349
|
occurred_at: string
|
|
60350
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60351
|
+
event_description?: string | undefined
|
|
60094
60352
|
/** ID of the affected Connect Webview. */
|
|
60095
60353
|
connect_webview_id: string
|
|
60096
60354
|
event_type: 'connect_webview.login_failed'
|
|
@@ -60104,6 +60362,8 @@ export type Routes = {
|
|
|
60104
60362
|
created_at: string
|
|
60105
60363
|
/** Date and time at which the event occurred. */
|
|
60106
60364
|
occurred_at: string
|
|
60365
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60366
|
+
event_description?: string | undefined
|
|
60107
60367
|
/** ID of the affected device. */
|
|
60108
60368
|
device_id: string
|
|
60109
60369
|
/** ID of the connected account associated with the event. */
|
|
@@ -60133,6 +60393,8 @@ export type Routes = {
|
|
|
60133
60393
|
created_at: string
|
|
60134
60394
|
/** Date and time at which the event occurred. */
|
|
60135
60395
|
occurred_at: string
|
|
60396
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60397
|
+
event_description?: string | undefined
|
|
60136
60398
|
/** ID of the affected device. */
|
|
60137
60399
|
device_id: string
|
|
60138
60400
|
/** ID of the connected account associated with the event. */
|
|
@@ -60162,6 +60424,8 @@ export type Routes = {
|
|
|
60162
60424
|
created_at: string
|
|
60163
60425
|
/** Date and time at which the event occurred. */
|
|
60164
60426
|
occurred_at: string
|
|
60427
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60428
|
+
event_description?: string | undefined
|
|
60165
60429
|
/** ID of the affected device. */
|
|
60166
60430
|
device_id: string
|
|
60167
60431
|
/** ID of the connected account associated with the event. */
|
|
@@ -60191,6 +60455,8 @@ export type Routes = {
|
|
|
60191
60455
|
created_at: string
|
|
60192
60456
|
/** Date and time at which the event occurred. */
|
|
60193
60457
|
occurred_at: string
|
|
60458
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60459
|
+
event_description?: string | undefined
|
|
60194
60460
|
/** ID of the affected device. */
|
|
60195
60461
|
device_id: string
|
|
60196
60462
|
/** ID of the connected account associated with the event. */
|
|
@@ -60220,6 +60486,8 @@ export type Routes = {
|
|
|
60220
60486
|
created_at: string
|
|
60221
60487
|
/** Date and time at which the event occurred. */
|
|
60222
60488
|
occurred_at: string
|
|
60489
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60490
|
+
event_description?: string | undefined
|
|
60223
60491
|
/** ID of the affected device. */
|
|
60224
60492
|
device_id: string
|
|
60225
60493
|
/** ID of the connected account associated with the event. */
|
|
@@ -60249,6 +60517,8 @@ export type Routes = {
|
|
|
60249
60517
|
created_at: string
|
|
60250
60518
|
/** Date and time at which the event occurred. */
|
|
60251
60519
|
occurred_at: string
|
|
60520
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60521
|
+
event_description?: string | undefined
|
|
60252
60522
|
/** ID of the affected device. */
|
|
60253
60523
|
device_id: string
|
|
60254
60524
|
/** ID of the connected account associated with the event. */
|
|
@@ -60319,6 +60589,8 @@ export type Routes = {
|
|
|
60319
60589
|
created_at: string
|
|
60320
60590
|
/** Date and time at which the event occurred. */
|
|
60321
60591
|
occurred_at: string
|
|
60592
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60593
|
+
event_description?: string | undefined
|
|
60322
60594
|
/** ID of the affected device. */
|
|
60323
60595
|
device_id: string
|
|
60324
60596
|
/** ID of the connected account associated with the event. */
|
|
@@ -60389,6 +60661,8 @@ export type Routes = {
|
|
|
60389
60661
|
created_at: string
|
|
60390
60662
|
/** Date and time at which the event occurred. */
|
|
60391
60663
|
occurred_at: string
|
|
60664
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60665
|
+
event_description?: string | undefined
|
|
60392
60666
|
/** ID of the affected device. */
|
|
60393
60667
|
device_id: string
|
|
60394
60668
|
/** ID of the connected account associated with the event. */
|
|
@@ -60418,6 +60692,8 @@ export type Routes = {
|
|
|
60418
60692
|
created_at: string
|
|
60419
60693
|
/** Date and time at which the event occurred. */
|
|
60420
60694
|
occurred_at: string
|
|
60695
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60696
|
+
event_description?: string | undefined
|
|
60421
60697
|
/** ID of the affected device. */
|
|
60422
60698
|
device_id: string
|
|
60423
60699
|
/** ID of the connected account associated with the event. */
|
|
@@ -60449,6 +60725,8 @@ export type Routes = {
|
|
|
60449
60725
|
created_at: string
|
|
60450
60726
|
/** Date and time at which the event occurred. */
|
|
60451
60727
|
occurred_at: string
|
|
60728
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60729
|
+
event_description?: string | undefined
|
|
60452
60730
|
/** ID of the affected device. */
|
|
60453
60731
|
device_id: string
|
|
60454
60732
|
/** ID of the connected account associated with the event. */
|
|
@@ -60482,6 +60760,8 @@ export type Routes = {
|
|
|
60482
60760
|
created_at: string
|
|
60483
60761
|
/** Date and time at which the event occurred. */
|
|
60484
60762
|
occurred_at: string
|
|
60763
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60764
|
+
event_description?: string | undefined
|
|
60485
60765
|
/** ID of the affected device. */
|
|
60486
60766
|
device_id: string
|
|
60487
60767
|
/** ID of the connected account associated with the event. */
|
|
@@ -60511,6 +60791,8 @@ export type Routes = {
|
|
|
60511
60791
|
created_at: string
|
|
60512
60792
|
/** Date and time at which the event occurred. */
|
|
60513
60793
|
occurred_at: string
|
|
60794
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60795
|
+
event_description?: string | undefined
|
|
60514
60796
|
/** ID of the affected device. */
|
|
60515
60797
|
device_id: string
|
|
60516
60798
|
/** ID of the connected account associated with the event. */
|
|
@@ -60542,6 +60824,8 @@ export type Routes = {
|
|
|
60542
60824
|
created_at: string
|
|
60543
60825
|
/** Date and time at which the event occurred. */
|
|
60544
60826
|
occurred_at: string
|
|
60827
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60828
|
+
event_description?: string | undefined
|
|
60545
60829
|
/** ID of the affected device. */
|
|
60546
60830
|
device_id: string
|
|
60547
60831
|
/** ID of the connected account associated with the event. */
|
|
@@ -60571,6 +60855,8 @@ export type Routes = {
|
|
|
60571
60855
|
created_at: string
|
|
60572
60856
|
/** Date and time at which the event occurred. */
|
|
60573
60857
|
occurred_at: string
|
|
60858
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60859
|
+
event_description?: string | undefined
|
|
60574
60860
|
/** ID of the affected device. */
|
|
60575
60861
|
device_id: string
|
|
60576
60862
|
/** ID of the connected account associated with the event. */
|
|
@@ -60600,6 +60886,8 @@ export type Routes = {
|
|
|
60600
60886
|
created_at: string
|
|
60601
60887
|
/** Date and time at which the event occurred. */
|
|
60602
60888
|
occurred_at: string
|
|
60889
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60890
|
+
event_description?: string | undefined
|
|
60603
60891
|
/** ID of the affected device. */
|
|
60604
60892
|
device_id: string
|
|
60605
60893
|
/** ID of the connected account associated with the event. */
|
|
@@ -60629,6 +60917,8 @@ export type Routes = {
|
|
|
60629
60917
|
created_at: string
|
|
60630
60918
|
/** Date and time at which the event occurred. */
|
|
60631
60919
|
occurred_at: string
|
|
60920
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60921
|
+
event_description?: string | undefined
|
|
60632
60922
|
/** ID of the affected device. */
|
|
60633
60923
|
device_id: string
|
|
60634
60924
|
/** ID of the connected account associated with the event. */
|
|
@@ -60658,6 +60948,8 @@ export type Routes = {
|
|
|
60658
60948
|
created_at: string
|
|
60659
60949
|
/** Date and time at which the event occurred. */
|
|
60660
60950
|
occurred_at: string
|
|
60951
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60952
|
+
event_description?: string | undefined
|
|
60661
60953
|
/** ID of the affected device. */
|
|
60662
60954
|
device_id: string
|
|
60663
60955
|
/** ID of the connected account associated with the event. */
|
|
@@ -60723,6 +61015,8 @@ export type Routes = {
|
|
|
60723
61015
|
created_at: string
|
|
60724
61016
|
/** Date and time at which the event occurred. */
|
|
60725
61017
|
occurred_at: string
|
|
61018
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61019
|
+
event_description?: string | undefined
|
|
60726
61020
|
/** ID of the affected device. */
|
|
60727
61021
|
device_id: string
|
|
60728
61022
|
/** ID of the connected account associated with the event. */
|
|
@@ -60752,6 +61046,8 @@ export type Routes = {
|
|
|
60752
61046
|
created_at: string
|
|
60753
61047
|
/** Date and time at which the event occurred. */
|
|
60754
61048
|
occurred_at: string
|
|
61049
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61050
|
+
event_description?: string | undefined
|
|
60755
61051
|
/** ID of the affected device. */
|
|
60756
61052
|
device_id: string
|
|
60757
61053
|
/** ID of the connected account associated with the event. */
|
|
@@ -60817,6 +61113,8 @@ export type Routes = {
|
|
|
60817
61113
|
created_at: string
|
|
60818
61114
|
/** Date and time at which the event occurred. */
|
|
60819
61115
|
occurred_at: string
|
|
61116
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61117
|
+
event_description?: string | undefined
|
|
60820
61118
|
/** ID of the affected device. */
|
|
60821
61119
|
device_id: string
|
|
60822
61120
|
/** ID of the connected account associated with the event. */
|
|
@@ -60846,6 +61144,8 @@ export type Routes = {
|
|
|
60846
61144
|
created_at: string
|
|
60847
61145
|
/** Date and time at which the event occurred. */
|
|
60848
61146
|
occurred_at: string
|
|
61147
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61148
|
+
event_description?: string | undefined
|
|
60849
61149
|
/** ID of the affected device. */
|
|
60850
61150
|
device_id: string
|
|
60851
61151
|
/** ID of the connected account associated with the event. */
|
|
@@ -60875,6 +61175,8 @@ export type Routes = {
|
|
|
60875
61175
|
created_at: string
|
|
60876
61176
|
/** Date and time at which the event occurred. */
|
|
60877
61177
|
occurred_at: string
|
|
61178
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61179
|
+
event_description?: string | undefined
|
|
60878
61180
|
/** ID of the affected device. */
|
|
60879
61181
|
device_id: string
|
|
60880
61182
|
/** ID of the connected account associated with the event. */
|
|
@@ -60940,6 +61242,8 @@ export type Routes = {
|
|
|
60940
61242
|
created_at: string
|
|
60941
61243
|
/** Date and time at which the event occurred. */
|
|
60942
61244
|
occurred_at: string
|
|
61245
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61246
|
+
event_description?: string | undefined
|
|
60943
61247
|
/** ID of the affected device. */
|
|
60944
61248
|
device_id: string
|
|
60945
61249
|
/** ID of the connected account associated with the event. */
|
|
@@ -60989,6 +61293,8 @@ export type Routes = {
|
|
|
60989
61293
|
created_at: string
|
|
60990
61294
|
/** Date and time at which the event occurred. */
|
|
60991
61295
|
occurred_at: string
|
|
61296
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61297
|
+
event_description?: string | undefined
|
|
60992
61298
|
/** ID of the affected device. */
|
|
60993
61299
|
device_id: string
|
|
60994
61300
|
/** ID of the connected account associated with the event. */
|
|
@@ -61038,6 +61344,8 @@ export type Routes = {
|
|
|
61038
61344
|
created_at: string
|
|
61039
61345
|
/** Date and time at which the event occurred. */
|
|
61040
61346
|
occurred_at: string
|
|
61347
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61348
|
+
event_description?: string | undefined
|
|
61041
61349
|
/** ID of the affected device. */
|
|
61042
61350
|
device_id?: string | undefined
|
|
61043
61351
|
/** ID of the connected account associated with the event. */
|
|
@@ -61111,6 +61419,8 @@ export type Routes = {
|
|
|
61111
61419
|
created_at: string
|
|
61112
61420
|
/** Date and time at which the event occurred. */
|
|
61113
61421
|
occurred_at: string
|
|
61422
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61423
|
+
event_description?: string | undefined
|
|
61114
61424
|
/** ID of the affected device. */
|
|
61115
61425
|
device_id?: string | undefined
|
|
61116
61426
|
/** ID of the connected account associated with the event. */
|
|
@@ -61166,6 +61476,8 @@ export type Routes = {
|
|
|
61166
61476
|
created_at: string
|
|
61167
61477
|
/** Date and time at which the event occurred. */
|
|
61168
61478
|
occurred_at: string
|
|
61479
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61480
|
+
event_description?: string | undefined
|
|
61169
61481
|
/** ID of the affected device. */
|
|
61170
61482
|
device_id: string
|
|
61171
61483
|
/** ID of the connected account associated with the event. */
|
|
@@ -61201,6 +61513,8 @@ export type Routes = {
|
|
|
61201
61513
|
created_at: string
|
|
61202
61514
|
/** Date and time at which the event occurred. */
|
|
61203
61515
|
occurred_at: string
|
|
61516
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61517
|
+
event_description?: string | undefined
|
|
61204
61518
|
/** ID of the affected device. */
|
|
61205
61519
|
device_id: string
|
|
61206
61520
|
/** ID of the connected account associated with the event. */
|
|
@@ -61248,6 +61562,8 @@ export type Routes = {
|
|
|
61248
61562
|
created_at: string
|
|
61249
61563
|
/** Date and time at which the event occurred. */
|
|
61250
61564
|
occurred_at: string
|
|
61565
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61566
|
+
event_description?: string | undefined
|
|
61251
61567
|
/** ID of the affected device. */
|
|
61252
61568
|
device_id: string
|
|
61253
61569
|
/** ID of the connected account associated with the event. */
|
|
@@ -61289,6 +61605,8 @@ export type Routes = {
|
|
|
61289
61605
|
created_at: string
|
|
61290
61606
|
/** Date and time at which the event occurred. */
|
|
61291
61607
|
occurred_at: string
|
|
61608
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61609
|
+
event_description?: string | undefined
|
|
61292
61610
|
/** ID of the affected device. */
|
|
61293
61611
|
device_id: string
|
|
61294
61612
|
/** ID of the connected account associated with the event. */
|
|
@@ -61330,6 +61648,8 @@ export type Routes = {
|
|
|
61330
61648
|
created_at: string
|
|
61331
61649
|
/** Date and time at which the event occurred. */
|
|
61332
61650
|
occurred_at: string
|
|
61651
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61652
|
+
event_description?: string | undefined
|
|
61333
61653
|
/** ID of the affected device. */
|
|
61334
61654
|
device_id: string
|
|
61335
61655
|
/** ID of the connected account associated with the event. */
|
|
@@ -61367,6 +61687,8 @@ export type Routes = {
|
|
|
61367
61687
|
created_at: string
|
|
61368
61688
|
/** Date and time at which the event occurred. */
|
|
61369
61689
|
occurred_at: string
|
|
61690
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61691
|
+
event_description?: string | undefined
|
|
61370
61692
|
/** ID of the affected device. */
|
|
61371
61693
|
device_id: string
|
|
61372
61694
|
/** ID of the connected account associated with the event. */
|
|
@@ -61400,6 +61722,8 @@ export type Routes = {
|
|
|
61400
61722
|
created_at: string
|
|
61401
61723
|
/** Date and time at which the event occurred. */
|
|
61402
61724
|
occurred_at: string
|
|
61725
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61726
|
+
event_description?: string | undefined
|
|
61403
61727
|
/** ID of the affected device. */
|
|
61404
61728
|
device_id: string
|
|
61405
61729
|
/** ID of the connected account associated with the event. */
|
|
@@ -61431,6 +61755,8 @@ export type Routes = {
|
|
|
61431
61755
|
created_at: string
|
|
61432
61756
|
/** Date and time at which the event occurred. */
|
|
61433
61757
|
occurred_at: string
|
|
61758
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61759
|
+
event_description?: string | undefined
|
|
61434
61760
|
/** ID of the affected device. */
|
|
61435
61761
|
device_id: string
|
|
61436
61762
|
/** ID of the connected account associated with the event. */
|
|
@@ -61470,6 +61796,8 @@ export type Routes = {
|
|
|
61470
61796
|
created_at: string
|
|
61471
61797
|
/** Date and time at which the event occurred. */
|
|
61472
61798
|
occurred_at: string
|
|
61799
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61800
|
+
event_description?: string | undefined
|
|
61473
61801
|
/** ID of the affected device. */
|
|
61474
61802
|
device_id: string
|
|
61475
61803
|
/** ID of the connected account associated with the event. */
|
|
@@ -61503,6 +61831,8 @@ export type Routes = {
|
|
|
61503
61831
|
created_at: string
|
|
61504
61832
|
/** Date and time at which the event occurred. */
|
|
61505
61833
|
occurred_at: string
|
|
61834
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61835
|
+
event_description?: string | undefined
|
|
61506
61836
|
/** ID of the affected enrollment automation. */
|
|
61507
61837
|
enrollment_automation_id: string
|
|
61508
61838
|
event_type: 'enrollment_automation.deleted'
|
|
@@ -61516,6 +61846,8 @@ export type Routes = {
|
|
|
61516
61846
|
created_at: string
|
|
61517
61847
|
/** Date and time at which the event occurred. */
|
|
61518
61848
|
occurred_at: string
|
|
61849
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61850
|
+
event_description?: string | undefined
|
|
61519
61851
|
/** ID of the affected phone device. */
|
|
61520
61852
|
device_id: string
|
|
61521
61853
|
/** Custom metadata of the device; present when device_id is provided. */
|
|
@@ -61535,6 +61867,8 @@ export type Routes = {
|
|
|
61535
61867
|
created_at: string
|
|
61536
61868
|
/** Date and time at which the event occurred. */
|
|
61537
61869
|
occurred_at: string
|
|
61870
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61871
|
+
event_description?: string | undefined
|
|
61538
61872
|
/** ID of the affected space. */
|
|
61539
61873
|
space_id: string
|
|
61540
61874
|
/** Type of the event. */
|
|
@@ -61555,6 +61889,8 @@ export type Routes = {
|
|
|
61555
61889
|
created_at: string
|
|
61556
61890
|
/** Date and time at which the event occurred. */
|
|
61557
61891
|
occurred_at: string
|
|
61892
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61893
|
+
event_description?: string | undefined
|
|
61558
61894
|
/** ID of the affected space. */
|
|
61559
61895
|
space_id: string
|
|
61560
61896
|
/** Type of the event. */
|
|
@@ -61575,6 +61911,8 @@ export type Routes = {
|
|
|
61575
61911
|
created_at: string
|
|
61576
61912
|
/** Date and time at which the event occurred. */
|
|
61577
61913
|
occurred_at: string
|
|
61914
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61915
|
+
event_description?: string | undefined
|
|
61578
61916
|
/** ID of the affected space. */
|
|
61579
61917
|
space_id: string
|
|
61580
61918
|
/** Type of the event. */
|
|
@@ -93366,6 +93704,8 @@ export type Routes = {
|
|
|
93366
93704
|
created_at: string
|
|
93367
93705
|
/** Date and time at which the event occurred. */
|
|
93368
93706
|
occurred_at: string
|
|
93707
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
93708
|
+
event_description?: string | undefined
|
|
93369
93709
|
/** ID of the affected access code. */
|
|
93370
93710
|
access_code_id: string
|
|
93371
93711
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93395,6 +93735,8 @@ export type Routes = {
|
|
|
93395
93735
|
created_at: string
|
|
93396
93736
|
/** Date and time at which the event occurred. */
|
|
93397
93737
|
occurred_at: string
|
|
93738
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
93739
|
+
event_description?: string | undefined
|
|
93398
93740
|
/** ID of the affected access code. */
|
|
93399
93741
|
access_code_id: string
|
|
93400
93742
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93437,6 +93779,8 @@ export type Routes = {
|
|
|
93437
93779
|
created_at: string
|
|
93438
93780
|
/** Date and time at which the event occurred. */
|
|
93439
93781
|
occurred_at: string
|
|
93782
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
93783
|
+
event_description?: string | undefined
|
|
93440
93784
|
/** ID of the affected access code. */
|
|
93441
93785
|
access_code_id: string
|
|
93442
93786
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93478,6 +93822,8 @@ export type Routes = {
|
|
|
93478
93822
|
created_at: string
|
|
93479
93823
|
/** Date and time at which the event occurred. */
|
|
93480
93824
|
occurred_at: string
|
|
93825
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
93826
|
+
event_description?: string | undefined
|
|
93481
93827
|
/** ID of the affected access code. */
|
|
93482
93828
|
access_code_id: string
|
|
93483
93829
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93519,6 +93865,8 @@ export type Routes = {
|
|
|
93519
93865
|
created_at: string
|
|
93520
93866
|
/** Date and time at which the event occurred. */
|
|
93521
93867
|
occurred_at: string
|
|
93868
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
93869
|
+
event_description?: string | undefined
|
|
93522
93870
|
/** ID of the affected access code. */
|
|
93523
93871
|
access_code_id: string
|
|
93524
93872
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93564,6 +93912,8 @@ export type Routes = {
|
|
|
93564
93912
|
created_at: string
|
|
93565
93913
|
/** Date and time at which the event occurred. */
|
|
93566
93914
|
occurred_at: string
|
|
93915
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
93916
|
+
event_description?: string | undefined
|
|
93567
93917
|
/** ID of the affected access code. */
|
|
93568
93918
|
access_code_id: string
|
|
93569
93919
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93616,6 +93966,8 @@ export type Routes = {
|
|
|
93616
93966
|
created_at: string
|
|
93617
93967
|
/** Date and time at which the event occurred. */
|
|
93618
93968
|
occurred_at: string
|
|
93969
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
93970
|
+
event_description?: string | undefined
|
|
93619
93971
|
/** ID of the affected access code. */
|
|
93620
93972
|
access_code_id: string
|
|
93621
93973
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93647,6 +93999,8 @@ export type Routes = {
|
|
|
93647
93999
|
created_at: string
|
|
93648
94000
|
/** Date and time at which the event occurred. */
|
|
93649
94001
|
occurred_at: string
|
|
94002
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94003
|
+
event_description?: string | undefined
|
|
93650
94004
|
/** ID of the affected access code. */
|
|
93651
94005
|
access_code_id: string
|
|
93652
94006
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93678,6 +94032,8 @@ export type Routes = {
|
|
|
93678
94032
|
created_at: string
|
|
93679
94033
|
/** Date and time at which the event occurred. */
|
|
93680
94034
|
occurred_at: string
|
|
94035
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94036
|
+
event_description?: string | undefined
|
|
93681
94037
|
/** ID of the affected access code. */
|
|
93682
94038
|
access_code_id: string
|
|
93683
94039
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93707,6 +94063,8 @@ export type Routes = {
|
|
|
93707
94063
|
created_at: string
|
|
93708
94064
|
/** Date and time at which the event occurred. */
|
|
93709
94065
|
occurred_at: string
|
|
94066
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94067
|
+
event_description?: string | undefined
|
|
93710
94068
|
/** ID of the affected access code. */
|
|
93711
94069
|
access_code_id: string
|
|
93712
94070
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93790,6 +94148,8 @@ export type Routes = {
|
|
|
93790
94148
|
created_at: string
|
|
93791
94149
|
/** Date and time at which the event occurred. */
|
|
93792
94150
|
occurred_at: string
|
|
94151
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94152
|
+
event_description?: string | undefined
|
|
93793
94153
|
/** ID of the affected access code. */
|
|
93794
94154
|
access_code_id: string
|
|
93795
94155
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93873,6 +94233,8 @@ export type Routes = {
|
|
|
93873
94233
|
created_at: string
|
|
93874
94234
|
/** Date and time at which the event occurred. */
|
|
93875
94235
|
occurred_at: string
|
|
94236
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94237
|
+
event_description?: string | undefined
|
|
93876
94238
|
/** ID of the affected access code. */
|
|
93877
94239
|
access_code_id: string
|
|
93878
94240
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93904,6 +94266,8 @@ export type Routes = {
|
|
|
93904
94266
|
created_at: string
|
|
93905
94267
|
/** Date and time at which the event occurred. */
|
|
93906
94268
|
occurred_at: string
|
|
94269
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94270
|
+
event_description?: string | undefined
|
|
93907
94271
|
/** ID of the affected access code. */
|
|
93908
94272
|
access_code_id: string
|
|
93909
94273
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93987,6 +94351,8 @@ export type Routes = {
|
|
|
93987
94351
|
created_at: string
|
|
93988
94352
|
/** Date and time at which the event occurred. */
|
|
93989
94353
|
occurred_at: string
|
|
94354
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94355
|
+
event_description?: string | undefined
|
|
93990
94356
|
/** ID of the affected access code. */
|
|
93991
94357
|
access_code_id: string
|
|
93992
94358
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94070,6 +94436,8 @@ export type Routes = {
|
|
|
94070
94436
|
created_at: string
|
|
94071
94437
|
/** Date and time at which the event occurred. */
|
|
94072
94438
|
occurred_at: string
|
|
94439
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94440
|
+
event_description?: string | undefined
|
|
94073
94441
|
/** ID of the affected access code. */
|
|
94074
94442
|
access_code_id: string
|
|
94075
94443
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94099,6 +94467,8 @@ export type Routes = {
|
|
|
94099
94467
|
created_at: string
|
|
94100
94468
|
/** Date and time at which the event occurred. */
|
|
94101
94469
|
occurred_at: string
|
|
94470
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94471
|
+
event_description?: string | undefined
|
|
94102
94472
|
/** ID of the affected access code. */
|
|
94103
94473
|
access_code_id: string
|
|
94104
94474
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94128,6 +94498,8 @@ export type Routes = {
|
|
|
94128
94498
|
created_at: string
|
|
94129
94499
|
/** Date and time at which the event occurred. */
|
|
94130
94500
|
occurred_at: string
|
|
94501
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94502
|
+
event_description?: string | undefined
|
|
94131
94503
|
/** ID of the affected access code. */
|
|
94132
94504
|
access_code_id: string
|
|
94133
94505
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94159,6 +94531,8 @@ export type Routes = {
|
|
|
94159
94531
|
created_at: string
|
|
94160
94532
|
/** Date and time at which the event occurred. */
|
|
94161
94533
|
occurred_at: string
|
|
94534
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94535
|
+
event_description?: string | undefined
|
|
94162
94536
|
/** ID of the affected access code. */
|
|
94163
94537
|
access_code_id: string
|
|
94164
94538
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94188,6 +94562,8 @@ export type Routes = {
|
|
|
94188
94562
|
created_at: string
|
|
94189
94563
|
/** Date and time at which the event occurred. */
|
|
94190
94564
|
occurred_at: string
|
|
94565
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94566
|
+
event_description?: string | undefined
|
|
94191
94567
|
/** ID of the affected access code. */
|
|
94192
94568
|
access_code_id: string
|
|
94193
94569
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94271,6 +94647,8 @@ export type Routes = {
|
|
|
94271
94647
|
created_at: string
|
|
94272
94648
|
/** Date and time at which the event occurred. */
|
|
94273
94649
|
occurred_at: string
|
|
94650
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94651
|
+
event_description?: string | undefined
|
|
94274
94652
|
/** ID of the affected access code. */
|
|
94275
94653
|
access_code_id: string
|
|
94276
94654
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94300,6 +94678,8 @@ export type Routes = {
|
|
|
94300
94678
|
created_at: string
|
|
94301
94679
|
/** Date and time at which the event occurred. */
|
|
94302
94680
|
occurred_at: string
|
|
94681
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94682
|
+
event_description?: string | undefined
|
|
94303
94683
|
/** ID of the affected access code. */
|
|
94304
94684
|
access_code_id: string
|
|
94305
94685
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94329,6 +94709,8 @@ export type Routes = {
|
|
|
94329
94709
|
created_at: string
|
|
94330
94710
|
/** Date and time at which the event occurred. */
|
|
94331
94711
|
occurred_at: string
|
|
94712
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94713
|
+
event_description?: string | undefined
|
|
94332
94714
|
/** ID of the affected Access Grant. */
|
|
94333
94715
|
access_grant_id: string
|
|
94334
94716
|
event_type: 'access_grant.created'
|
|
@@ -94342,6 +94724,8 @@ export type Routes = {
|
|
|
94342
94724
|
created_at: string
|
|
94343
94725
|
/** Date and time at which the event occurred. */
|
|
94344
94726
|
occurred_at: string
|
|
94727
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94728
|
+
event_description?: string | undefined
|
|
94345
94729
|
/** ID of the affected Access Grant. */
|
|
94346
94730
|
access_grant_id: string
|
|
94347
94731
|
event_type: 'access_grant.deleted'
|
|
@@ -94355,6 +94739,8 @@ export type Routes = {
|
|
|
94355
94739
|
created_at: string
|
|
94356
94740
|
/** Date and time at which the event occurred. */
|
|
94357
94741
|
occurred_at: string
|
|
94742
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94743
|
+
event_description?: string | undefined
|
|
94358
94744
|
/** ID of the affected Access Grant. */
|
|
94359
94745
|
access_grant_id: string
|
|
94360
94746
|
event_type: 'access_grant.access_granted_to_all_doors'
|
|
@@ -94368,6 +94754,8 @@ export type Routes = {
|
|
|
94368
94754
|
created_at: string
|
|
94369
94755
|
/** Date and time at which the event occurred. */
|
|
94370
94756
|
occurred_at: string
|
|
94757
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94758
|
+
event_description?: string | undefined
|
|
94371
94759
|
/** ID of the affected Access Grant. */
|
|
94372
94760
|
access_grant_id: string
|
|
94373
94761
|
event_type: 'access_grant.access_granted_to_door'
|
|
@@ -94383,6 +94771,8 @@ export type Routes = {
|
|
|
94383
94771
|
created_at: string
|
|
94384
94772
|
/** Date and time at which the event occurred. */
|
|
94385
94773
|
occurred_at: string
|
|
94774
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94775
|
+
event_description?: string | undefined
|
|
94386
94776
|
/** ID of the affected Access Grant. */
|
|
94387
94777
|
access_grant_id: string
|
|
94388
94778
|
event_type: 'access_grant.access_to_door_lost'
|
|
@@ -94398,6 +94788,8 @@ export type Routes = {
|
|
|
94398
94788
|
created_at: string
|
|
94399
94789
|
/** Date and time at which the event occurred. */
|
|
94400
94790
|
occurred_at: string
|
|
94791
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94792
|
+
event_description?: string | undefined
|
|
94401
94793
|
/** ID of the affected Access Grant. */
|
|
94402
94794
|
access_grant_id: string
|
|
94403
94795
|
event_type: 'access_grant.access_times_changed'
|
|
@@ -94417,6 +94809,8 @@ export type Routes = {
|
|
|
94417
94809
|
created_at: string
|
|
94418
94810
|
/** Date and time at which the event occurred. */
|
|
94419
94811
|
occurred_at: string
|
|
94812
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94813
|
+
event_description?: string | undefined
|
|
94420
94814
|
/** ID of the affected Access Grant. */
|
|
94421
94815
|
access_grant_id: string
|
|
94422
94816
|
event_type: 'access_grant.could_not_create_requested_access_methods'
|
|
@@ -94434,6 +94828,8 @@ export type Routes = {
|
|
|
94434
94828
|
created_at: string
|
|
94435
94829
|
/** Date and time at which the event occurred. */
|
|
94436
94830
|
occurred_at: string
|
|
94831
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94832
|
+
event_description?: string | undefined
|
|
94437
94833
|
/** ID of the affected access method. */
|
|
94438
94834
|
access_method_id: string
|
|
94439
94835
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -94455,6 +94851,8 @@ export type Routes = {
|
|
|
94455
94851
|
created_at: string
|
|
94456
94852
|
/** Date and time at which the event occurred. */
|
|
94457
94853
|
occurred_at: string
|
|
94854
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94855
|
+
event_description?: string | undefined
|
|
94458
94856
|
/** ID of the affected access method. */
|
|
94459
94857
|
access_method_id: string
|
|
94460
94858
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -94472,6 +94870,8 @@ export type Routes = {
|
|
|
94472
94870
|
created_at: string
|
|
94473
94871
|
/** Date and time at which the event occurred. */
|
|
94474
94872
|
occurred_at: string
|
|
94873
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94874
|
+
event_description?: string | undefined
|
|
94475
94875
|
/** ID of the affected access method. */
|
|
94476
94876
|
access_method_id: string
|
|
94477
94877
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -94489,6 +94889,8 @@ export type Routes = {
|
|
|
94489
94889
|
created_at: string
|
|
94490
94890
|
/** Date and time at which the event occurred. */
|
|
94491
94891
|
occurred_at: string
|
|
94892
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94893
|
+
event_description?: string | undefined
|
|
94492
94894
|
/** ID of the affected access method. */
|
|
94493
94895
|
access_method_id: string
|
|
94494
94896
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -94506,6 +94908,8 @@ export type Routes = {
|
|
|
94506
94908
|
created_at: string
|
|
94507
94909
|
/** Date and time at which the event occurred. */
|
|
94508
94910
|
occurred_at: string
|
|
94911
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94912
|
+
event_description?: string | undefined
|
|
94509
94913
|
/** ID of the affected access method. */
|
|
94510
94914
|
access_method_id: string
|
|
94511
94915
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -94527,6 +94931,8 @@ export type Routes = {
|
|
|
94527
94931
|
created_at: string
|
|
94528
94932
|
/** Date and time at which the event occurred. */
|
|
94529
94933
|
occurred_at: string
|
|
94934
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94935
|
+
event_description?: string | undefined
|
|
94530
94936
|
/** ID of the affected access method. */
|
|
94531
94937
|
access_method_id: string
|
|
94532
94938
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -94544,6 +94950,8 @@ export type Routes = {
|
|
|
94544
94950
|
created_at: string
|
|
94545
94951
|
/** Date and time at which the event occurred. */
|
|
94546
94952
|
occurred_at: string
|
|
94953
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94954
|
+
event_description?: string | undefined
|
|
94547
94955
|
/** ID of the connected account. */
|
|
94548
94956
|
connected_account_id?: string | undefined
|
|
94549
94957
|
/** ID of the access system. */
|
|
@@ -94559,6 +94967,8 @@ export type Routes = {
|
|
|
94559
94967
|
created_at: string
|
|
94560
94968
|
/** Date and time at which the event occurred. */
|
|
94561
94969
|
occurred_at: string
|
|
94970
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94971
|
+
event_description?: string | undefined
|
|
94562
94972
|
/** ID of the connected account. */
|
|
94563
94973
|
connected_account_id?: string | undefined
|
|
94564
94974
|
/** ID of the access system. */
|
|
@@ -94574,6 +94984,8 @@ export type Routes = {
|
|
|
94574
94984
|
created_at: string
|
|
94575
94985
|
/** Date and time at which the event occurred. */
|
|
94576
94986
|
occurred_at: string
|
|
94987
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94988
|
+
event_description?: string | undefined
|
|
94577
94989
|
/** ID of the connected account. */
|
|
94578
94990
|
connected_account_id?: string | undefined
|
|
94579
94991
|
/** ID of the access system. */
|
|
@@ -94625,6 +95037,8 @@ export type Routes = {
|
|
|
94625
95037
|
created_at: string
|
|
94626
95038
|
/** Date and time at which the event occurred. */
|
|
94627
95039
|
occurred_at: string
|
|
95040
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95041
|
+
event_description?: string | undefined
|
|
94628
95042
|
/** ID of the connected account. */
|
|
94629
95043
|
connected_account_id?: string | undefined
|
|
94630
95044
|
/** ID of the access system. */
|
|
@@ -94642,6 +95056,8 @@ export type Routes = {
|
|
|
94642
95056
|
created_at: string
|
|
94643
95057
|
/** Date and time at which the event occurred. */
|
|
94644
95058
|
occurred_at: string
|
|
95059
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95060
|
+
event_description?: string | undefined
|
|
94645
95061
|
/** ID of the connected account. */
|
|
94646
95062
|
connected_account_id?: string | undefined
|
|
94647
95063
|
/** ID of the access system. */
|
|
@@ -94659,6 +95075,8 @@ export type Routes = {
|
|
|
94659
95075
|
created_at: string
|
|
94660
95076
|
/** Date and time at which the event occurred. */
|
|
94661
95077
|
occurred_at: string
|
|
95078
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95079
|
+
event_description?: string | undefined
|
|
94662
95080
|
/** ID of the connected account. */
|
|
94663
95081
|
connected_account_id?: string | undefined
|
|
94664
95082
|
/** ID of the access system. */
|
|
@@ -94676,6 +95094,8 @@ export type Routes = {
|
|
|
94676
95094
|
created_at: string
|
|
94677
95095
|
/** Date and time at which the event occurred. */
|
|
94678
95096
|
occurred_at: string
|
|
95097
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95098
|
+
event_description?: string | undefined
|
|
94679
95099
|
/** ID of the connected account. */
|
|
94680
95100
|
connected_account_id?: string | undefined
|
|
94681
95101
|
/** ID of the access system. */
|
|
@@ -94693,6 +95113,8 @@ export type Routes = {
|
|
|
94693
95113
|
created_at: string
|
|
94694
95114
|
/** Date and time at which the event occurred. */
|
|
94695
95115
|
occurred_at: string
|
|
95116
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95117
|
+
event_description?: string | undefined
|
|
94696
95118
|
/** ID of the connected account. */
|
|
94697
95119
|
connected_account_id?: string | undefined
|
|
94698
95120
|
/** ID of the access system. */
|
|
@@ -94710,6 +95132,8 @@ export type Routes = {
|
|
|
94710
95132
|
created_at: string
|
|
94711
95133
|
/** Date and time at which the event occurred. */
|
|
94712
95134
|
occurred_at: string
|
|
95135
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95136
|
+
event_description?: string | undefined
|
|
94713
95137
|
/** ID of the connected account. */
|
|
94714
95138
|
connected_account_id?: string | undefined
|
|
94715
95139
|
/** ID of the access system. */
|
|
@@ -94727,6 +95151,8 @@ export type Routes = {
|
|
|
94727
95151
|
created_at: string
|
|
94728
95152
|
/** Date and time at which the event occurred. */
|
|
94729
95153
|
occurred_at: string
|
|
95154
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95155
|
+
event_description?: string | undefined
|
|
94730
95156
|
/** ID of the connected account. */
|
|
94731
95157
|
connected_account_id?: string | undefined
|
|
94732
95158
|
/** ID of the access system. */
|
|
@@ -94744,6 +95170,8 @@ export type Routes = {
|
|
|
94744
95170
|
created_at: string
|
|
94745
95171
|
/** Date and time at which the event occurred. */
|
|
94746
95172
|
occurred_at: string
|
|
95173
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95174
|
+
event_description?: string | undefined
|
|
94747
95175
|
/** ID of the connected account. */
|
|
94748
95176
|
connected_account_id?: string | undefined
|
|
94749
95177
|
/** ID of the access system. */
|
|
@@ -94761,6 +95189,8 @@ export type Routes = {
|
|
|
94761
95189
|
created_at: string
|
|
94762
95190
|
/** Date and time at which the event occurred. */
|
|
94763
95191
|
occurred_at: string
|
|
95192
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95193
|
+
event_description?: string | undefined
|
|
94764
95194
|
/** ID of the connected account. */
|
|
94765
95195
|
connected_account_id?: string | undefined
|
|
94766
95196
|
/** ID of the access system. */
|
|
@@ -94778,6 +95208,8 @@ export type Routes = {
|
|
|
94778
95208
|
created_at: string
|
|
94779
95209
|
/** Date and time at which the event occurred. */
|
|
94780
95210
|
occurred_at: string
|
|
95211
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95212
|
+
event_description?: string | undefined
|
|
94781
95213
|
/** ID of the connected account. */
|
|
94782
95214
|
connected_account_id?: string | undefined
|
|
94783
95215
|
/** ID of the access system. */
|
|
@@ -94795,6 +95227,8 @@ export type Routes = {
|
|
|
94795
95227
|
created_at: string
|
|
94796
95228
|
/** Date and time at which the event occurred. */
|
|
94797
95229
|
occurred_at: string
|
|
95230
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95231
|
+
event_description?: string | undefined
|
|
94798
95232
|
/** ID of the connected account. */
|
|
94799
95233
|
connected_account_id?: string | undefined
|
|
94800
95234
|
/** ID of the access system. */
|
|
@@ -94812,6 +95246,8 @@ export type Routes = {
|
|
|
94812
95246
|
created_at: string
|
|
94813
95247
|
/** Date and time at which the event occurred. */
|
|
94814
95248
|
occurred_at: string
|
|
95249
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95250
|
+
event_description?: string | undefined
|
|
94815
95251
|
/** ID of the affected client session. */
|
|
94816
95252
|
client_session_id: string
|
|
94817
95253
|
event_type: 'client_session.deleted'
|
|
@@ -94825,6 +95261,8 @@ export type Routes = {
|
|
|
94825
95261
|
created_at: string
|
|
94826
95262
|
/** Date and time at which the event occurred. */
|
|
94827
95263
|
occurred_at: string
|
|
95264
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95265
|
+
event_description?: string | undefined
|
|
94828
95266
|
/** ID of the affected connected account. */
|
|
94829
95267
|
connected_account_id: string
|
|
94830
95268
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94848,6 +95286,8 @@ export type Routes = {
|
|
|
94848
95286
|
created_at: string
|
|
94849
95287
|
/** Date and time at which the event occurred. */
|
|
94850
95288
|
occurred_at: string
|
|
95289
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95290
|
+
event_description?: string | undefined
|
|
94851
95291
|
/** ID of the affected connected account. */
|
|
94852
95292
|
connected_account_id: string
|
|
94853
95293
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94869,6 +95309,8 @@ export type Routes = {
|
|
|
94869
95309
|
created_at: string
|
|
94870
95310
|
/** Date and time at which the event occurred. */
|
|
94871
95311
|
occurred_at: string
|
|
95312
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95313
|
+
event_description?: string | undefined
|
|
94872
95314
|
/** ID of the affected connected account. */
|
|
94873
95315
|
connected_account_id: string
|
|
94874
95316
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94890,6 +95332,8 @@ export type Routes = {
|
|
|
94890
95332
|
created_at: string
|
|
94891
95333
|
/** Date and time at which the event occurred. */
|
|
94892
95334
|
occurred_at: string
|
|
95335
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95336
|
+
event_description?: string | undefined
|
|
94893
95337
|
/** ID of the affected connected account. */
|
|
94894
95338
|
connected_account_id: string
|
|
94895
95339
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94927,6 +95371,8 @@ export type Routes = {
|
|
|
94927
95371
|
created_at: string
|
|
94928
95372
|
/** Date and time at which the event occurred. */
|
|
94929
95373
|
occurred_at: string
|
|
95374
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95375
|
+
event_description?: string | undefined
|
|
94930
95376
|
/** ID of the affected connected account. */
|
|
94931
95377
|
connected_account_id: string
|
|
94932
95378
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94946,6 +95392,8 @@ export type Routes = {
|
|
|
94946
95392
|
created_at: string
|
|
94947
95393
|
/** Date and time at which the event occurred. */
|
|
94948
95394
|
occurred_at: string
|
|
95395
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95396
|
+
event_description?: string | undefined
|
|
94949
95397
|
/** ID of the affected connected account. */
|
|
94950
95398
|
connected_account_id: string
|
|
94951
95399
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94969,6 +95417,8 @@ export type Routes = {
|
|
|
94969
95417
|
created_at: string
|
|
94970
95418
|
/** Date and time at which the event occurred. */
|
|
94971
95419
|
occurred_at: string
|
|
95420
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95421
|
+
event_description?: string | undefined
|
|
94972
95422
|
/** ID of the affected connected account. */
|
|
94973
95423
|
connected_account_id: string
|
|
94974
95424
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94988,6 +95438,8 @@ export type Routes = {
|
|
|
94988
95438
|
created_at: string
|
|
94989
95439
|
/** Date and time at which the event occurred. */
|
|
94990
95440
|
occurred_at: string
|
|
95441
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95442
|
+
event_description?: string | undefined
|
|
94991
95443
|
/** ID of the affected connected account. */
|
|
94992
95444
|
connected_account_id: string
|
|
94993
95445
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -95025,6 +95477,8 @@ export type Routes = {
|
|
|
95025
95477
|
created_at: string
|
|
95026
95478
|
/** Date and time at which the event occurred. */
|
|
95027
95479
|
occurred_at: string
|
|
95480
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95481
|
+
event_description?: string | undefined
|
|
95028
95482
|
/** ID of the affected action attempt. */
|
|
95029
95483
|
action_attempt_id: string
|
|
95030
95484
|
/** Type of the action. */
|
|
@@ -95046,6 +95500,8 @@ export type Routes = {
|
|
|
95046
95500
|
created_at: string
|
|
95047
95501
|
/** Date and time at which the event occurred. */
|
|
95048
95502
|
occurred_at: string
|
|
95503
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95504
|
+
event_description?: string | undefined
|
|
95049
95505
|
/** ID of the affected action attempt. */
|
|
95050
95506
|
action_attempt_id: string
|
|
95051
95507
|
/** Type of the action. */
|
|
@@ -95067,6 +95523,8 @@ export type Routes = {
|
|
|
95067
95523
|
created_at: string
|
|
95068
95524
|
/** Date and time at which the event occurred. */
|
|
95069
95525
|
occurred_at: string
|
|
95526
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95527
|
+
event_description?: string | undefined
|
|
95070
95528
|
/** ID of the affected action attempt. */
|
|
95071
95529
|
action_attempt_id: string
|
|
95072
95530
|
/** Type of the action. */
|
|
@@ -95088,6 +95546,8 @@ export type Routes = {
|
|
|
95088
95546
|
created_at: string
|
|
95089
95547
|
/** Date and time at which the event occurred. */
|
|
95090
95548
|
occurred_at: string
|
|
95549
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95550
|
+
event_description?: string | undefined
|
|
95091
95551
|
/** ID of the affected action attempt. */
|
|
95092
95552
|
action_attempt_id: string
|
|
95093
95553
|
/** Type of the action. */
|
|
@@ -95109,6 +95569,8 @@ export type Routes = {
|
|
|
95109
95569
|
created_at: string
|
|
95110
95570
|
/** Date and time at which the event occurred. */
|
|
95111
95571
|
occurred_at: string
|
|
95572
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95573
|
+
event_description?: string | undefined
|
|
95112
95574
|
/** ID of the affected action attempt. */
|
|
95113
95575
|
action_attempt_id: string
|
|
95114
95576
|
/** Type of the action. */
|
|
@@ -95130,6 +95592,8 @@ export type Routes = {
|
|
|
95130
95592
|
created_at: string
|
|
95131
95593
|
/** Date and time at which the event occurred. */
|
|
95132
95594
|
occurred_at: string
|
|
95595
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95596
|
+
event_description?: string | undefined
|
|
95133
95597
|
/** ID of the affected action attempt. */
|
|
95134
95598
|
action_attempt_id: string
|
|
95135
95599
|
/** Type of the action. */
|
|
@@ -95151,6 +95615,8 @@ export type Routes = {
|
|
|
95151
95615
|
created_at: string
|
|
95152
95616
|
/** Date and time at which the event occurred. */
|
|
95153
95617
|
occurred_at: string
|
|
95618
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95619
|
+
event_description?: string | undefined
|
|
95154
95620
|
/** ID of the affected action attempt. */
|
|
95155
95621
|
action_attempt_id: string
|
|
95156
95622
|
/** Type of the action. */
|
|
@@ -95172,6 +95638,8 @@ export type Routes = {
|
|
|
95172
95638
|
created_at: string
|
|
95173
95639
|
/** Date and time at which the event occurred. */
|
|
95174
95640
|
occurred_at: string
|
|
95641
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95642
|
+
event_description?: string | undefined
|
|
95175
95643
|
/** ID of the affected action attempt. */
|
|
95176
95644
|
action_attempt_id: string
|
|
95177
95645
|
/** Type of the action. */
|
|
@@ -95193,6 +95661,8 @@ export type Routes = {
|
|
|
95193
95661
|
created_at: string
|
|
95194
95662
|
/** Date and time at which the event occurred. */
|
|
95195
95663
|
occurred_at: string
|
|
95664
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95665
|
+
event_description?: string | undefined
|
|
95196
95666
|
/** ID of the affected Connect Webview. */
|
|
95197
95667
|
connect_webview_id: string
|
|
95198
95668
|
event_type: 'connect_webview.login_succeeded'
|
|
@@ -95216,6 +95686,8 @@ export type Routes = {
|
|
|
95216
95686
|
created_at: string
|
|
95217
95687
|
/** Date and time at which the event occurred. */
|
|
95218
95688
|
occurred_at: string
|
|
95689
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95690
|
+
event_description?: string | undefined
|
|
95219
95691
|
/** ID of the affected Connect Webview. */
|
|
95220
95692
|
connect_webview_id: string
|
|
95221
95693
|
event_type: 'connect_webview.login_failed'
|
|
@@ -95229,6 +95701,8 @@ export type Routes = {
|
|
|
95229
95701
|
created_at: string
|
|
95230
95702
|
/** Date and time at which the event occurred. */
|
|
95231
95703
|
occurred_at: string
|
|
95704
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95705
|
+
event_description?: string | undefined
|
|
95232
95706
|
/** ID of the affected device. */
|
|
95233
95707
|
device_id: string
|
|
95234
95708
|
/** ID of the connected account associated with the event. */
|
|
@@ -95258,6 +95732,8 @@ export type Routes = {
|
|
|
95258
95732
|
created_at: string
|
|
95259
95733
|
/** Date and time at which the event occurred. */
|
|
95260
95734
|
occurred_at: string
|
|
95735
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95736
|
+
event_description?: string | undefined
|
|
95261
95737
|
/** ID of the affected device. */
|
|
95262
95738
|
device_id: string
|
|
95263
95739
|
/** ID of the connected account associated with the event. */
|
|
@@ -95287,6 +95763,8 @@ export type Routes = {
|
|
|
95287
95763
|
created_at: string
|
|
95288
95764
|
/** Date and time at which the event occurred. */
|
|
95289
95765
|
occurred_at: string
|
|
95766
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95767
|
+
event_description?: string | undefined
|
|
95290
95768
|
/** ID of the affected device. */
|
|
95291
95769
|
device_id: string
|
|
95292
95770
|
/** ID of the connected account associated with the event. */
|
|
@@ -95316,6 +95794,8 @@ export type Routes = {
|
|
|
95316
95794
|
created_at: string
|
|
95317
95795
|
/** Date and time at which the event occurred. */
|
|
95318
95796
|
occurred_at: string
|
|
95797
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95798
|
+
event_description?: string | undefined
|
|
95319
95799
|
/** ID of the affected device. */
|
|
95320
95800
|
device_id: string
|
|
95321
95801
|
/** ID of the connected account associated with the event. */
|
|
@@ -95345,6 +95825,8 @@ export type Routes = {
|
|
|
95345
95825
|
created_at: string
|
|
95346
95826
|
/** Date and time at which the event occurred. */
|
|
95347
95827
|
occurred_at: string
|
|
95828
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95829
|
+
event_description?: string | undefined
|
|
95348
95830
|
/** ID of the affected device. */
|
|
95349
95831
|
device_id: string
|
|
95350
95832
|
/** ID of the connected account associated with the event. */
|
|
@@ -95374,6 +95856,8 @@ export type Routes = {
|
|
|
95374
95856
|
created_at: string
|
|
95375
95857
|
/** Date and time at which the event occurred. */
|
|
95376
95858
|
occurred_at: string
|
|
95859
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95860
|
+
event_description?: string | undefined
|
|
95377
95861
|
/** ID of the affected device. */
|
|
95378
95862
|
device_id: string
|
|
95379
95863
|
/** ID of the connected account associated with the event. */
|
|
@@ -95444,6 +95928,8 @@ export type Routes = {
|
|
|
95444
95928
|
created_at: string
|
|
95445
95929
|
/** Date and time at which the event occurred. */
|
|
95446
95930
|
occurred_at: string
|
|
95931
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95932
|
+
event_description?: string | undefined
|
|
95447
95933
|
/** ID of the affected device. */
|
|
95448
95934
|
device_id: string
|
|
95449
95935
|
/** ID of the connected account associated with the event. */
|
|
@@ -95514,6 +96000,8 @@ export type Routes = {
|
|
|
95514
96000
|
created_at: string
|
|
95515
96001
|
/** Date and time at which the event occurred. */
|
|
95516
96002
|
occurred_at: string
|
|
96003
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96004
|
+
event_description?: string | undefined
|
|
95517
96005
|
/** ID of the affected device. */
|
|
95518
96006
|
device_id: string
|
|
95519
96007
|
/** ID of the connected account associated with the event. */
|
|
@@ -95543,6 +96031,8 @@ export type Routes = {
|
|
|
95543
96031
|
created_at: string
|
|
95544
96032
|
/** Date and time at which the event occurred. */
|
|
95545
96033
|
occurred_at: string
|
|
96034
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96035
|
+
event_description?: string | undefined
|
|
95546
96036
|
/** ID of the affected device. */
|
|
95547
96037
|
device_id: string
|
|
95548
96038
|
/** ID of the connected account associated with the event. */
|
|
@@ -95574,6 +96064,8 @@ export type Routes = {
|
|
|
95574
96064
|
created_at: string
|
|
95575
96065
|
/** Date and time at which the event occurred. */
|
|
95576
96066
|
occurred_at: string
|
|
96067
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96068
|
+
event_description?: string | undefined
|
|
95577
96069
|
/** ID of the affected device. */
|
|
95578
96070
|
device_id: string
|
|
95579
96071
|
/** ID of the connected account associated with the event. */
|
|
@@ -95607,6 +96099,8 @@ export type Routes = {
|
|
|
95607
96099
|
created_at: string
|
|
95608
96100
|
/** Date and time at which the event occurred. */
|
|
95609
96101
|
occurred_at: string
|
|
96102
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96103
|
+
event_description?: string | undefined
|
|
95610
96104
|
/** ID of the affected device. */
|
|
95611
96105
|
device_id: string
|
|
95612
96106
|
/** ID of the connected account associated with the event. */
|
|
@@ -95636,6 +96130,8 @@ export type Routes = {
|
|
|
95636
96130
|
created_at: string
|
|
95637
96131
|
/** Date and time at which the event occurred. */
|
|
95638
96132
|
occurred_at: string
|
|
96133
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96134
|
+
event_description?: string | undefined
|
|
95639
96135
|
/** ID of the affected device. */
|
|
95640
96136
|
device_id: string
|
|
95641
96137
|
/** ID of the connected account associated with the event. */
|
|
@@ -95667,6 +96163,8 @@ export type Routes = {
|
|
|
95667
96163
|
created_at: string
|
|
95668
96164
|
/** Date and time at which the event occurred. */
|
|
95669
96165
|
occurred_at: string
|
|
96166
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96167
|
+
event_description?: string | undefined
|
|
95670
96168
|
/** ID of the affected device. */
|
|
95671
96169
|
device_id: string
|
|
95672
96170
|
/** ID of the connected account associated with the event. */
|
|
@@ -95696,6 +96194,8 @@ export type Routes = {
|
|
|
95696
96194
|
created_at: string
|
|
95697
96195
|
/** Date and time at which the event occurred. */
|
|
95698
96196
|
occurred_at: string
|
|
96197
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96198
|
+
event_description?: string | undefined
|
|
95699
96199
|
/** ID of the affected device. */
|
|
95700
96200
|
device_id: string
|
|
95701
96201
|
/** ID of the connected account associated with the event. */
|
|
@@ -95725,6 +96225,8 @@ export type Routes = {
|
|
|
95725
96225
|
created_at: string
|
|
95726
96226
|
/** Date and time at which the event occurred. */
|
|
95727
96227
|
occurred_at: string
|
|
96228
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96229
|
+
event_description?: string | undefined
|
|
95728
96230
|
/** ID of the affected device. */
|
|
95729
96231
|
device_id: string
|
|
95730
96232
|
/** ID of the connected account associated with the event. */
|
|
@@ -95754,6 +96256,8 @@ export type Routes = {
|
|
|
95754
96256
|
created_at: string
|
|
95755
96257
|
/** Date and time at which the event occurred. */
|
|
95756
96258
|
occurred_at: string
|
|
96259
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96260
|
+
event_description?: string | undefined
|
|
95757
96261
|
/** ID of the affected device. */
|
|
95758
96262
|
device_id: string
|
|
95759
96263
|
/** ID of the connected account associated with the event. */
|
|
@@ -95783,6 +96287,8 @@ export type Routes = {
|
|
|
95783
96287
|
created_at: string
|
|
95784
96288
|
/** Date and time at which the event occurred. */
|
|
95785
96289
|
occurred_at: string
|
|
96290
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96291
|
+
event_description?: string | undefined
|
|
95786
96292
|
/** ID of the affected device. */
|
|
95787
96293
|
device_id: string
|
|
95788
96294
|
/** ID of the connected account associated with the event. */
|
|
@@ -95848,6 +96354,8 @@ export type Routes = {
|
|
|
95848
96354
|
created_at: string
|
|
95849
96355
|
/** Date and time at which the event occurred. */
|
|
95850
96356
|
occurred_at: string
|
|
96357
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96358
|
+
event_description?: string | undefined
|
|
95851
96359
|
/** ID of the affected device. */
|
|
95852
96360
|
device_id: string
|
|
95853
96361
|
/** ID of the connected account associated with the event. */
|
|
@@ -95877,6 +96385,8 @@ export type Routes = {
|
|
|
95877
96385
|
created_at: string
|
|
95878
96386
|
/** Date and time at which the event occurred. */
|
|
95879
96387
|
occurred_at: string
|
|
96388
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96389
|
+
event_description?: string | undefined
|
|
95880
96390
|
/** ID of the affected device. */
|
|
95881
96391
|
device_id: string
|
|
95882
96392
|
/** ID of the connected account associated with the event. */
|
|
@@ -95942,6 +96452,8 @@ export type Routes = {
|
|
|
95942
96452
|
created_at: string
|
|
95943
96453
|
/** Date and time at which the event occurred. */
|
|
95944
96454
|
occurred_at: string
|
|
96455
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96456
|
+
event_description?: string | undefined
|
|
95945
96457
|
/** ID of the affected device. */
|
|
95946
96458
|
device_id: string
|
|
95947
96459
|
/** ID of the connected account associated with the event. */
|
|
@@ -95971,6 +96483,8 @@ export type Routes = {
|
|
|
95971
96483
|
created_at: string
|
|
95972
96484
|
/** Date and time at which the event occurred. */
|
|
95973
96485
|
occurred_at: string
|
|
96486
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96487
|
+
event_description?: string | undefined
|
|
95974
96488
|
/** ID of the affected device. */
|
|
95975
96489
|
device_id: string
|
|
95976
96490
|
/** ID of the connected account associated with the event. */
|
|
@@ -96000,6 +96514,8 @@ export type Routes = {
|
|
|
96000
96514
|
created_at: string
|
|
96001
96515
|
/** Date and time at which the event occurred. */
|
|
96002
96516
|
occurred_at: string
|
|
96517
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96518
|
+
event_description?: string | undefined
|
|
96003
96519
|
/** ID of the affected device. */
|
|
96004
96520
|
device_id: string
|
|
96005
96521
|
/** ID of the connected account associated with the event. */
|
|
@@ -96065,6 +96581,8 @@ export type Routes = {
|
|
|
96065
96581
|
created_at: string
|
|
96066
96582
|
/** Date and time at which the event occurred. */
|
|
96067
96583
|
occurred_at: string
|
|
96584
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96585
|
+
event_description?: string | undefined
|
|
96068
96586
|
/** ID of the affected device. */
|
|
96069
96587
|
device_id: string
|
|
96070
96588
|
/** ID of the connected account associated with the event. */
|
|
@@ -96114,6 +96632,8 @@ export type Routes = {
|
|
|
96114
96632
|
created_at: string
|
|
96115
96633
|
/** Date and time at which the event occurred. */
|
|
96116
96634
|
occurred_at: string
|
|
96635
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96636
|
+
event_description?: string | undefined
|
|
96117
96637
|
/** ID of the affected device. */
|
|
96118
96638
|
device_id: string
|
|
96119
96639
|
/** ID of the connected account associated with the event. */
|
|
@@ -96163,6 +96683,8 @@ export type Routes = {
|
|
|
96163
96683
|
created_at: string
|
|
96164
96684
|
/** Date and time at which the event occurred. */
|
|
96165
96685
|
occurred_at: string
|
|
96686
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96687
|
+
event_description?: string | undefined
|
|
96166
96688
|
/** ID of the affected device. */
|
|
96167
96689
|
device_id?: string | undefined
|
|
96168
96690
|
/** ID of the connected account associated with the event. */
|
|
@@ -96236,6 +96758,8 @@ export type Routes = {
|
|
|
96236
96758
|
created_at: string
|
|
96237
96759
|
/** Date and time at which the event occurred. */
|
|
96238
96760
|
occurred_at: string
|
|
96761
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96762
|
+
event_description?: string | undefined
|
|
96239
96763
|
/** ID of the affected device. */
|
|
96240
96764
|
device_id?: string | undefined
|
|
96241
96765
|
/** ID of the connected account associated with the event. */
|
|
@@ -96291,6 +96815,8 @@ export type Routes = {
|
|
|
96291
96815
|
created_at: string
|
|
96292
96816
|
/** Date and time at which the event occurred. */
|
|
96293
96817
|
occurred_at: string
|
|
96818
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96819
|
+
event_description?: string | undefined
|
|
96294
96820
|
/** ID of the affected device. */
|
|
96295
96821
|
device_id: string
|
|
96296
96822
|
/** ID of the connected account associated with the event. */
|
|
@@ -96326,6 +96852,8 @@ export type Routes = {
|
|
|
96326
96852
|
created_at: string
|
|
96327
96853
|
/** Date and time at which the event occurred. */
|
|
96328
96854
|
occurred_at: string
|
|
96855
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96856
|
+
event_description?: string | undefined
|
|
96329
96857
|
/** ID of the affected device. */
|
|
96330
96858
|
device_id: string
|
|
96331
96859
|
/** ID of the connected account associated with the event. */
|
|
@@ -96373,6 +96901,8 @@ export type Routes = {
|
|
|
96373
96901
|
created_at: string
|
|
96374
96902
|
/** Date and time at which the event occurred. */
|
|
96375
96903
|
occurred_at: string
|
|
96904
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96905
|
+
event_description?: string | undefined
|
|
96376
96906
|
/** ID of the affected device. */
|
|
96377
96907
|
device_id: string
|
|
96378
96908
|
/** ID of the connected account associated with the event. */
|
|
@@ -96414,6 +96944,8 @@ export type Routes = {
|
|
|
96414
96944
|
created_at: string
|
|
96415
96945
|
/** Date and time at which the event occurred. */
|
|
96416
96946
|
occurred_at: string
|
|
96947
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96948
|
+
event_description?: string | undefined
|
|
96417
96949
|
/** ID of the affected device. */
|
|
96418
96950
|
device_id: string
|
|
96419
96951
|
/** ID of the connected account associated with the event. */
|
|
@@ -96455,6 +96987,8 @@ export type Routes = {
|
|
|
96455
96987
|
created_at: string
|
|
96456
96988
|
/** Date and time at which the event occurred. */
|
|
96457
96989
|
occurred_at: string
|
|
96990
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96991
|
+
event_description?: string | undefined
|
|
96458
96992
|
/** ID of the affected device. */
|
|
96459
96993
|
device_id: string
|
|
96460
96994
|
/** ID of the connected account associated with the event. */
|
|
@@ -96492,6 +97026,8 @@ export type Routes = {
|
|
|
96492
97026
|
created_at: string
|
|
96493
97027
|
/** Date and time at which the event occurred. */
|
|
96494
97028
|
occurred_at: string
|
|
97029
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97030
|
+
event_description?: string | undefined
|
|
96495
97031
|
/** ID of the affected device. */
|
|
96496
97032
|
device_id: string
|
|
96497
97033
|
/** ID of the connected account associated with the event. */
|
|
@@ -96525,6 +97061,8 @@ export type Routes = {
|
|
|
96525
97061
|
created_at: string
|
|
96526
97062
|
/** Date and time at which the event occurred. */
|
|
96527
97063
|
occurred_at: string
|
|
97064
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97065
|
+
event_description?: string | undefined
|
|
96528
97066
|
/** ID of the affected device. */
|
|
96529
97067
|
device_id: string
|
|
96530
97068
|
/** ID of the connected account associated with the event. */
|
|
@@ -96556,6 +97094,8 @@ export type Routes = {
|
|
|
96556
97094
|
created_at: string
|
|
96557
97095
|
/** Date and time at which the event occurred. */
|
|
96558
97096
|
occurred_at: string
|
|
97097
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97098
|
+
event_description?: string | undefined
|
|
96559
97099
|
/** ID of the affected device. */
|
|
96560
97100
|
device_id: string
|
|
96561
97101
|
/** ID of the connected account associated with the event. */
|
|
@@ -96595,6 +97135,8 @@ export type Routes = {
|
|
|
96595
97135
|
created_at: string
|
|
96596
97136
|
/** Date and time at which the event occurred. */
|
|
96597
97137
|
occurred_at: string
|
|
97138
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97139
|
+
event_description?: string | undefined
|
|
96598
97140
|
/** ID of the affected device. */
|
|
96599
97141
|
device_id: string
|
|
96600
97142
|
/** ID of the connected account associated with the event. */
|
|
@@ -96628,6 +97170,8 @@ export type Routes = {
|
|
|
96628
97170
|
created_at: string
|
|
96629
97171
|
/** Date and time at which the event occurred. */
|
|
96630
97172
|
occurred_at: string
|
|
97173
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97174
|
+
event_description?: string | undefined
|
|
96631
97175
|
/** ID of the affected enrollment automation. */
|
|
96632
97176
|
enrollment_automation_id: string
|
|
96633
97177
|
event_type: 'enrollment_automation.deleted'
|
|
@@ -96641,6 +97185,8 @@ export type Routes = {
|
|
|
96641
97185
|
created_at: string
|
|
96642
97186
|
/** Date and time at which the event occurred. */
|
|
96643
97187
|
occurred_at: string
|
|
97188
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97189
|
+
event_description?: string | undefined
|
|
96644
97190
|
/** ID of the affected phone device. */
|
|
96645
97191
|
device_id: string
|
|
96646
97192
|
/** Custom metadata of the device; present when device_id is provided. */
|
|
@@ -96660,6 +97206,8 @@ export type Routes = {
|
|
|
96660
97206
|
created_at: string
|
|
96661
97207
|
/** Date and time at which the event occurred. */
|
|
96662
97208
|
occurred_at: string
|
|
97209
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97210
|
+
event_description?: string | undefined
|
|
96663
97211
|
/** ID of the affected space. */
|
|
96664
97212
|
space_id: string
|
|
96665
97213
|
/** Type of the event. */
|
|
@@ -96680,6 +97228,8 @@ export type Routes = {
|
|
|
96680
97228
|
created_at: string
|
|
96681
97229
|
/** Date and time at which the event occurred. */
|
|
96682
97230
|
occurred_at: string
|
|
97231
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97232
|
+
event_description?: string | undefined
|
|
96683
97233
|
/** ID of the affected space. */
|
|
96684
97234
|
space_id: string
|
|
96685
97235
|
/** Type of the event. */
|
|
@@ -96700,6 +97250,8 @@ export type Routes = {
|
|
|
96700
97250
|
created_at: string
|
|
96701
97251
|
/** Date and time at which the event occurred. */
|
|
96702
97252
|
occurred_at: string
|
|
97253
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97254
|
+
event_description?: string | undefined
|
|
96703
97255
|
/** ID of the affected space. */
|
|
96704
97256
|
space_id: string
|
|
96705
97257
|
/** Type of the event. */
|
|
@@ -137999,6 +138551,8 @@ export type Routes = {
|
|
|
137999
138551
|
created_at: string
|
|
138000
138552
|
/** Date and time at which the event occurred. */
|
|
138001
138553
|
occurred_at: string
|
|
138554
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138555
|
+
event_description?: string | undefined
|
|
138002
138556
|
/** ID of the affected access code. */
|
|
138003
138557
|
access_code_id: string
|
|
138004
138558
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138028,6 +138582,8 @@ export type Routes = {
|
|
|
138028
138582
|
created_at: string
|
|
138029
138583
|
/** Date and time at which the event occurred. */
|
|
138030
138584
|
occurred_at: string
|
|
138585
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138586
|
+
event_description?: string | undefined
|
|
138031
138587
|
/** ID of the affected access code. */
|
|
138032
138588
|
access_code_id: string
|
|
138033
138589
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138070,6 +138626,8 @@ export type Routes = {
|
|
|
138070
138626
|
created_at: string
|
|
138071
138627
|
/** Date and time at which the event occurred. */
|
|
138072
138628
|
occurred_at: string
|
|
138629
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138630
|
+
event_description?: string | undefined
|
|
138073
138631
|
/** ID of the affected access code. */
|
|
138074
138632
|
access_code_id: string
|
|
138075
138633
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138111,6 +138669,8 @@ export type Routes = {
|
|
|
138111
138669
|
created_at: string
|
|
138112
138670
|
/** Date and time at which the event occurred. */
|
|
138113
138671
|
occurred_at: string
|
|
138672
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138673
|
+
event_description?: string | undefined
|
|
138114
138674
|
/** ID of the affected access code. */
|
|
138115
138675
|
access_code_id: string
|
|
138116
138676
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138152,6 +138712,8 @@ export type Routes = {
|
|
|
138152
138712
|
created_at: string
|
|
138153
138713
|
/** Date and time at which the event occurred. */
|
|
138154
138714
|
occurred_at: string
|
|
138715
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138716
|
+
event_description?: string | undefined
|
|
138155
138717
|
/** ID of the affected access code. */
|
|
138156
138718
|
access_code_id: string
|
|
138157
138719
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138197,6 +138759,8 @@ export type Routes = {
|
|
|
138197
138759
|
created_at: string
|
|
138198
138760
|
/** Date and time at which the event occurred. */
|
|
138199
138761
|
occurred_at: string
|
|
138762
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138763
|
+
event_description?: string | undefined
|
|
138200
138764
|
/** ID of the affected access code. */
|
|
138201
138765
|
access_code_id: string
|
|
138202
138766
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138249,6 +138813,8 @@ export type Routes = {
|
|
|
138249
138813
|
created_at: string
|
|
138250
138814
|
/** Date and time at which the event occurred. */
|
|
138251
138815
|
occurred_at: string
|
|
138816
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138817
|
+
event_description?: string | undefined
|
|
138252
138818
|
/** ID of the affected access code. */
|
|
138253
138819
|
access_code_id: string
|
|
138254
138820
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138280,6 +138846,8 @@ export type Routes = {
|
|
|
138280
138846
|
created_at: string
|
|
138281
138847
|
/** Date and time at which the event occurred. */
|
|
138282
138848
|
occurred_at: string
|
|
138849
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138850
|
+
event_description?: string | undefined
|
|
138283
138851
|
/** ID of the affected access code. */
|
|
138284
138852
|
access_code_id: string
|
|
138285
138853
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138311,6 +138879,8 @@ export type Routes = {
|
|
|
138311
138879
|
created_at: string
|
|
138312
138880
|
/** Date and time at which the event occurred. */
|
|
138313
138881
|
occurred_at: string
|
|
138882
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138883
|
+
event_description?: string | undefined
|
|
138314
138884
|
/** ID of the affected access code. */
|
|
138315
138885
|
access_code_id: string
|
|
138316
138886
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138340,6 +138910,8 @@ export type Routes = {
|
|
|
138340
138910
|
created_at: string
|
|
138341
138911
|
/** Date and time at which the event occurred. */
|
|
138342
138912
|
occurred_at: string
|
|
138913
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138914
|
+
event_description?: string | undefined
|
|
138343
138915
|
/** ID of the affected access code. */
|
|
138344
138916
|
access_code_id: string
|
|
138345
138917
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138423,6 +138995,8 @@ export type Routes = {
|
|
|
138423
138995
|
created_at: string
|
|
138424
138996
|
/** Date and time at which the event occurred. */
|
|
138425
138997
|
occurred_at: string
|
|
138998
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138999
|
+
event_description?: string | undefined
|
|
138426
139000
|
/** ID of the affected access code. */
|
|
138427
139001
|
access_code_id: string
|
|
138428
139002
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138506,6 +139080,8 @@ export type Routes = {
|
|
|
138506
139080
|
created_at: string
|
|
138507
139081
|
/** Date and time at which the event occurred. */
|
|
138508
139082
|
occurred_at: string
|
|
139083
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139084
|
+
event_description?: string | undefined
|
|
138509
139085
|
/** ID of the affected access code. */
|
|
138510
139086
|
access_code_id: string
|
|
138511
139087
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138537,6 +139113,8 @@ export type Routes = {
|
|
|
138537
139113
|
created_at: string
|
|
138538
139114
|
/** Date and time at which the event occurred. */
|
|
138539
139115
|
occurred_at: string
|
|
139116
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139117
|
+
event_description?: string | undefined
|
|
138540
139118
|
/** ID of the affected access code. */
|
|
138541
139119
|
access_code_id: string
|
|
138542
139120
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138620,6 +139198,8 @@ export type Routes = {
|
|
|
138620
139198
|
created_at: string
|
|
138621
139199
|
/** Date and time at which the event occurred. */
|
|
138622
139200
|
occurred_at: string
|
|
139201
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139202
|
+
event_description?: string | undefined
|
|
138623
139203
|
/** ID of the affected access code. */
|
|
138624
139204
|
access_code_id: string
|
|
138625
139205
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138703,6 +139283,8 @@ export type Routes = {
|
|
|
138703
139283
|
created_at: string
|
|
138704
139284
|
/** Date and time at which the event occurred. */
|
|
138705
139285
|
occurred_at: string
|
|
139286
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139287
|
+
event_description?: string | undefined
|
|
138706
139288
|
/** ID of the affected access code. */
|
|
138707
139289
|
access_code_id: string
|
|
138708
139290
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138732,6 +139314,8 @@ export type Routes = {
|
|
|
138732
139314
|
created_at: string
|
|
138733
139315
|
/** Date and time at which the event occurred. */
|
|
138734
139316
|
occurred_at: string
|
|
139317
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139318
|
+
event_description?: string | undefined
|
|
138735
139319
|
/** ID of the affected access code. */
|
|
138736
139320
|
access_code_id: string
|
|
138737
139321
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138761,6 +139345,8 @@ export type Routes = {
|
|
|
138761
139345
|
created_at: string
|
|
138762
139346
|
/** Date and time at which the event occurred. */
|
|
138763
139347
|
occurred_at: string
|
|
139348
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139349
|
+
event_description?: string | undefined
|
|
138764
139350
|
/** ID of the affected access code. */
|
|
138765
139351
|
access_code_id: string
|
|
138766
139352
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138792,6 +139378,8 @@ export type Routes = {
|
|
|
138792
139378
|
created_at: string
|
|
138793
139379
|
/** Date and time at which the event occurred. */
|
|
138794
139380
|
occurred_at: string
|
|
139381
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139382
|
+
event_description?: string | undefined
|
|
138795
139383
|
/** ID of the affected access code. */
|
|
138796
139384
|
access_code_id: string
|
|
138797
139385
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138821,6 +139409,8 @@ export type Routes = {
|
|
|
138821
139409
|
created_at: string
|
|
138822
139410
|
/** Date and time at which the event occurred. */
|
|
138823
139411
|
occurred_at: string
|
|
139412
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139413
|
+
event_description?: string | undefined
|
|
138824
139414
|
/** ID of the affected access code. */
|
|
138825
139415
|
access_code_id: string
|
|
138826
139416
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138904,6 +139494,8 @@ export type Routes = {
|
|
|
138904
139494
|
created_at: string
|
|
138905
139495
|
/** Date and time at which the event occurred. */
|
|
138906
139496
|
occurred_at: string
|
|
139497
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139498
|
+
event_description?: string | undefined
|
|
138907
139499
|
/** ID of the affected access code. */
|
|
138908
139500
|
access_code_id: string
|
|
138909
139501
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138933,6 +139525,8 @@ export type Routes = {
|
|
|
138933
139525
|
created_at: string
|
|
138934
139526
|
/** Date and time at which the event occurred. */
|
|
138935
139527
|
occurred_at: string
|
|
139528
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139529
|
+
event_description?: string | undefined
|
|
138936
139530
|
/** ID of the affected access code. */
|
|
138937
139531
|
access_code_id: string
|
|
138938
139532
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138962,6 +139556,8 @@ export type Routes = {
|
|
|
138962
139556
|
created_at: string
|
|
138963
139557
|
/** Date and time at which the event occurred. */
|
|
138964
139558
|
occurred_at: string
|
|
139559
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139560
|
+
event_description?: string | undefined
|
|
138965
139561
|
/** ID of the affected Access Grant. */
|
|
138966
139562
|
access_grant_id: string
|
|
138967
139563
|
event_type: 'access_grant.created'
|
|
@@ -138975,6 +139571,8 @@ export type Routes = {
|
|
|
138975
139571
|
created_at: string
|
|
138976
139572
|
/** Date and time at which the event occurred. */
|
|
138977
139573
|
occurred_at: string
|
|
139574
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139575
|
+
event_description?: string | undefined
|
|
138978
139576
|
/** ID of the affected Access Grant. */
|
|
138979
139577
|
access_grant_id: string
|
|
138980
139578
|
event_type: 'access_grant.deleted'
|
|
@@ -138988,6 +139586,8 @@ export type Routes = {
|
|
|
138988
139586
|
created_at: string
|
|
138989
139587
|
/** Date and time at which the event occurred. */
|
|
138990
139588
|
occurred_at: string
|
|
139589
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139590
|
+
event_description?: string | undefined
|
|
138991
139591
|
/** ID of the affected Access Grant. */
|
|
138992
139592
|
access_grant_id: string
|
|
138993
139593
|
event_type: 'access_grant.access_granted_to_all_doors'
|
|
@@ -139001,6 +139601,8 @@ export type Routes = {
|
|
|
139001
139601
|
created_at: string
|
|
139002
139602
|
/** Date and time at which the event occurred. */
|
|
139003
139603
|
occurred_at: string
|
|
139604
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139605
|
+
event_description?: string | undefined
|
|
139004
139606
|
/** ID of the affected Access Grant. */
|
|
139005
139607
|
access_grant_id: string
|
|
139006
139608
|
event_type: 'access_grant.access_granted_to_door'
|
|
@@ -139016,6 +139618,8 @@ export type Routes = {
|
|
|
139016
139618
|
created_at: string
|
|
139017
139619
|
/** Date and time at which the event occurred. */
|
|
139018
139620
|
occurred_at: string
|
|
139621
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139622
|
+
event_description?: string | undefined
|
|
139019
139623
|
/** ID of the affected Access Grant. */
|
|
139020
139624
|
access_grant_id: string
|
|
139021
139625
|
event_type: 'access_grant.access_to_door_lost'
|
|
@@ -139031,6 +139635,8 @@ export type Routes = {
|
|
|
139031
139635
|
created_at: string
|
|
139032
139636
|
/** Date and time at which the event occurred. */
|
|
139033
139637
|
occurred_at: string
|
|
139638
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139639
|
+
event_description?: string | undefined
|
|
139034
139640
|
/** ID of the affected Access Grant. */
|
|
139035
139641
|
access_grant_id: string
|
|
139036
139642
|
event_type: 'access_grant.access_times_changed'
|
|
@@ -139050,6 +139656,8 @@ export type Routes = {
|
|
|
139050
139656
|
created_at: string
|
|
139051
139657
|
/** Date and time at which the event occurred. */
|
|
139052
139658
|
occurred_at: string
|
|
139659
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139660
|
+
event_description?: string | undefined
|
|
139053
139661
|
/** ID of the affected Access Grant. */
|
|
139054
139662
|
access_grant_id: string
|
|
139055
139663
|
event_type: 'access_grant.could_not_create_requested_access_methods'
|
|
@@ -139067,6 +139675,8 @@ export type Routes = {
|
|
|
139067
139675
|
created_at: string
|
|
139068
139676
|
/** Date and time at which the event occurred. */
|
|
139069
139677
|
occurred_at: string
|
|
139678
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139679
|
+
event_description?: string | undefined
|
|
139070
139680
|
/** ID of the affected access method. */
|
|
139071
139681
|
access_method_id: string
|
|
139072
139682
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -139088,6 +139698,8 @@ export type Routes = {
|
|
|
139088
139698
|
created_at: string
|
|
139089
139699
|
/** Date and time at which the event occurred. */
|
|
139090
139700
|
occurred_at: string
|
|
139701
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139702
|
+
event_description?: string | undefined
|
|
139091
139703
|
/** ID of the affected access method. */
|
|
139092
139704
|
access_method_id: string
|
|
139093
139705
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -139105,6 +139717,8 @@ export type Routes = {
|
|
|
139105
139717
|
created_at: string
|
|
139106
139718
|
/** Date and time at which the event occurred. */
|
|
139107
139719
|
occurred_at: string
|
|
139720
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139721
|
+
event_description?: string | undefined
|
|
139108
139722
|
/** ID of the affected access method. */
|
|
139109
139723
|
access_method_id: string
|
|
139110
139724
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -139122,6 +139736,8 @@ export type Routes = {
|
|
|
139122
139736
|
created_at: string
|
|
139123
139737
|
/** Date and time at which the event occurred. */
|
|
139124
139738
|
occurred_at: string
|
|
139739
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139740
|
+
event_description?: string | undefined
|
|
139125
139741
|
/** ID of the affected access method. */
|
|
139126
139742
|
access_method_id: string
|
|
139127
139743
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -139139,6 +139755,8 @@ export type Routes = {
|
|
|
139139
139755
|
created_at: string
|
|
139140
139756
|
/** Date and time at which the event occurred. */
|
|
139141
139757
|
occurred_at: string
|
|
139758
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139759
|
+
event_description?: string | undefined
|
|
139142
139760
|
/** ID of the affected access method. */
|
|
139143
139761
|
access_method_id: string
|
|
139144
139762
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -139160,6 +139778,8 @@ export type Routes = {
|
|
|
139160
139778
|
created_at: string
|
|
139161
139779
|
/** Date and time at which the event occurred. */
|
|
139162
139780
|
occurred_at: string
|
|
139781
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139782
|
+
event_description?: string | undefined
|
|
139163
139783
|
/** ID of the affected access method. */
|
|
139164
139784
|
access_method_id: string
|
|
139165
139785
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -139177,6 +139797,8 @@ export type Routes = {
|
|
|
139177
139797
|
created_at: string
|
|
139178
139798
|
/** Date and time at which the event occurred. */
|
|
139179
139799
|
occurred_at: string
|
|
139800
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139801
|
+
event_description?: string | undefined
|
|
139180
139802
|
/** ID of the connected account. */
|
|
139181
139803
|
connected_account_id?: string | undefined
|
|
139182
139804
|
/** ID of the access system. */
|
|
@@ -139192,6 +139814,8 @@ export type Routes = {
|
|
|
139192
139814
|
created_at: string
|
|
139193
139815
|
/** Date and time at which the event occurred. */
|
|
139194
139816
|
occurred_at: string
|
|
139817
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139818
|
+
event_description?: string | undefined
|
|
139195
139819
|
/** ID of the connected account. */
|
|
139196
139820
|
connected_account_id?: string | undefined
|
|
139197
139821
|
/** ID of the access system. */
|
|
@@ -139207,6 +139831,8 @@ export type Routes = {
|
|
|
139207
139831
|
created_at: string
|
|
139208
139832
|
/** Date and time at which the event occurred. */
|
|
139209
139833
|
occurred_at: string
|
|
139834
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139835
|
+
event_description?: string | undefined
|
|
139210
139836
|
/** ID of the connected account. */
|
|
139211
139837
|
connected_account_id?: string | undefined
|
|
139212
139838
|
/** ID of the access system. */
|
|
@@ -139258,6 +139884,8 @@ export type Routes = {
|
|
|
139258
139884
|
created_at: string
|
|
139259
139885
|
/** Date and time at which the event occurred. */
|
|
139260
139886
|
occurred_at: string
|
|
139887
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139888
|
+
event_description?: string | undefined
|
|
139261
139889
|
/** ID of the connected account. */
|
|
139262
139890
|
connected_account_id?: string | undefined
|
|
139263
139891
|
/** ID of the access system. */
|
|
@@ -139275,6 +139903,8 @@ export type Routes = {
|
|
|
139275
139903
|
created_at: string
|
|
139276
139904
|
/** Date and time at which the event occurred. */
|
|
139277
139905
|
occurred_at: string
|
|
139906
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139907
|
+
event_description?: string | undefined
|
|
139278
139908
|
/** ID of the connected account. */
|
|
139279
139909
|
connected_account_id?: string | undefined
|
|
139280
139910
|
/** ID of the access system. */
|
|
@@ -139292,6 +139922,8 @@ export type Routes = {
|
|
|
139292
139922
|
created_at: string
|
|
139293
139923
|
/** Date and time at which the event occurred. */
|
|
139294
139924
|
occurred_at: string
|
|
139925
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139926
|
+
event_description?: string | undefined
|
|
139295
139927
|
/** ID of the connected account. */
|
|
139296
139928
|
connected_account_id?: string | undefined
|
|
139297
139929
|
/** ID of the access system. */
|
|
@@ -139309,6 +139941,8 @@ export type Routes = {
|
|
|
139309
139941
|
created_at: string
|
|
139310
139942
|
/** Date and time at which the event occurred. */
|
|
139311
139943
|
occurred_at: string
|
|
139944
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139945
|
+
event_description?: string | undefined
|
|
139312
139946
|
/** ID of the connected account. */
|
|
139313
139947
|
connected_account_id?: string | undefined
|
|
139314
139948
|
/** ID of the access system. */
|
|
@@ -139326,6 +139960,8 @@ export type Routes = {
|
|
|
139326
139960
|
created_at: string
|
|
139327
139961
|
/** Date and time at which the event occurred. */
|
|
139328
139962
|
occurred_at: string
|
|
139963
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139964
|
+
event_description?: string | undefined
|
|
139329
139965
|
/** ID of the connected account. */
|
|
139330
139966
|
connected_account_id?: string | undefined
|
|
139331
139967
|
/** ID of the access system. */
|
|
@@ -139343,6 +139979,8 @@ export type Routes = {
|
|
|
139343
139979
|
created_at: string
|
|
139344
139980
|
/** Date and time at which the event occurred. */
|
|
139345
139981
|
occurred_at: string
|
|
139982
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139983
|
+
event_description?: string | undefined
|
|
139346
139984
|
/** ID of the connected account. */
|
|
139347
139985
|
connected_account_id?: string | undefined
|
|
139348
139986
|
/** ID of the access system. */
|
|
@@ -139360,6 +139998,8 @@ export type Routes = {
|
|
|
139360
139998
|
created_at: string
|
|
139361
139999
|
/** Date and time at which the event occurred. */
|
|
139362
140000
|
occurred_at: string
|
|
140001
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140002
|
+
event_description?: string | undefined
|
|
139363
140003
|
/** ID of the connected account. */
|
|
139364
140004
|
connected_account_id?: string | undefined
|
|
139365
140005
|
/** ID of the access system. */
|
|
@@ -139377,6 +140017,8 @@ export type Routes = {
|
|
|
139377
140017
|
created_at: string
|
|
139378
140018
|
/** Date and time at which the event occurred. */
|
|
139379
140019
|
occurred_at: string
|
|
140020
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140021
|
+
event_description?: string | undefined
|
|
139380
140022
|
/** ID of the connected account. */
|
|
139381
140023
|
connected_account_id?: string | undefined
|
|
139382
140024
|
/** ID of the access system. */
|
|
@@ -139394,6 +140036,8 @@ export type Routes = {
|
|
|
139394
140036
|
created_at: string
|
|
139395
140037
|
/** Date and time at which the event occurred. */
|
|
139396
140038
|
occurred_at: string
|
|
140039
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140040
|
+
event_description?: string | undefined
|
|
139397
140041
|
/** ID of the connected account. */
|
|
139398
140042
|
connected_account_id?: string | undefined
|
|
139399
140043
|
/** ID of the access system. */
|
|
@@ -139411,6 +140055,8 @@ export type Routes = {
|
|
|
139411
140055
|
created_at: string
|
|
139412
140056
|
/** Date and time at which the event occurred. */
|
|
139413
140057
|
occurred_at: string
|
|
140058
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140059
|
+
event_description?: string | undefined
|
|
139414
140060
|
/** ID of the connected account. */
|
|
139415
140061
|
connected_account_id?: string | undefined
|
|
139416
140062
|
/** ID of the access system. */
|
|
@@ -139428,6 +140074,8 @@ export type Routes = {
|
|
|
139428
140074
|
created_at: string
|
|
139429
140075
|
/** Date and time at which the event occurred. */
|
|
139430
140076
|
occurred_at: string
|
|
140077
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140078
|
+
event_description?: string | undefined
|
|
139431
140079
|
/** ID of the connected account. */
|
|
139432
140080
|
connected_account_id?: string | undefined
|
|
139433
140081
|
/** ID of the access system. */
|
|
@@ -139445,6 +140093,8 @@ export type Routes = {
|
|
|
139445
140093
|
created_at: string
|
|
139446
140094
|
/** Date and time at which the event occurred. */
|
|
139447
140095
|
occurred_at: string
|
|
140096
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140097
|
+
event_description?: string | undefined
|
|
139448
140098
|
/** ID of the affected client session. */
|
|
139449
140099
|
client_session_id: string
|
|
139450
140100
|
event_type: 'client_session.deleted'
|
|
@@ -139458,6 +140108,8 @@ export type Routes = {
|
|
|
139458
140108
|
created_at: string
|
|
139459
140109
|
/** Date and time at which the event occurred. */
|
|
139460
140110
|
occurred_at: string
|
|
140111
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140112
|
+
event_description?: string | undefined
|
|
139461
140113
|
/** ID of the affected connected account. */
|
|
139462
140114
|
connected_account_id: string
|
|
139463
140115
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139481,6 +140133,8 @@ export type Routes = {
|
|
|
139481
140133
|
created_at: string
|
|
139482
140134
|
/** Date and time at which the event occurred. */
|
|
139483
140135
|
occurred_at: string
|
|
140136
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140137
|
+
event_description?: string | undefined
|
|
139484
140138
|
/** ID of the affected connected account. */
|
|
139485
140139
|
connected_account_id: string
|
|
139486
140140
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139502,6 +140156,8 @@ export type Routes = {
|
|
|
139502
140156
|
created_at: string
|
|
139503
140157
|
/** Date and time at which the event occurred. */
|
|
139504
140158
|
occurred_at: string
|
|
140159
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140160
|
+
event_description?: string | undefined
|
|
139505
140161
|
/** ID of the affected connected account. */
|
|
139506
140162
|
connected_account_id: string
|
|
139507
140163
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139523,6 +140179,8 @@ export type Routes = {
|
|
|
139523
140179
|
created_at: string
|
|
139524
140180
|
/** Date and time at which the event occurred. */
|
|
139525
140181
|
occurred_at: string
|
|
140182
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140183
|
+
event_description?: string | undefined
|
|
139526
140184
|
/** ID of the affected connected account. */
|
|
139527
140185
|
connected_account_id: string
|
|
139528
140186
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139560,6 +140218,8 @@ export type Routes = {
|
|
|
139560
140218
|
created_at: string
|
|
139561
140219
|
/** Date and time at which the event occurred. */
|
|
139562
140220
|
occurred_at: string
|
|
140221
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140222
|
+
event_description?: string | undefined
|
|
139563
140223
|
/** ID of the affected connected account. */
|
|
139564
140224
|
connected_account_id: string
|
|
139565
140225
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139579,6 +140239,8 @@ export type Routes = {
|
|
|
139579
140239
|
created_at: string
|
|
139580
140240
|
/** Date and time at which the event occurred. */
|
|
139581
140241
|
occurred_at: string
|
|
140242
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140243
|
+
event_description?: string | undefined
|
|
139582
140244
|
/** ID of the affected connected account. */
|
|
139583
140245
|
connected_account_id: string
|
|
139584
140246
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139602,6 +140264,8 @@ export type Routes = {
|
|
|
139602
140264
|
created_at: string
|
|
139603
140265
|
/** Date and time at which the event occurred. */
|
|
139604
140266
|
occurred_at: string
|
|
140267
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140268
|
+
event_description?: string | undefined
|
|
139605
140269
|
/** ID of the affected connected account. */
|
|
139606
140270
|
connected_account_id: string
|
|
139607
140271
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139621,6 +140285,8 @@ export type Routes = {
|
|
|
139621
140285
|
created_at: string
|
|
139622
140286
|
/** Date and time at which the event occurred. */
|
|
139623
140287
|
occurred_at: string
|
|
140288
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140289
|
+
event_description?: string | undefined
|
|
139624
140290
|
/** ID of the affected connected account. */
|
|
139625
140291
|
connected_account_id: string
|
|
139626
140292
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139658,6 +140324,8 @@ export type Routes = {
|
|
|
139658
140324
|
created_at: string
|
|
139659
140325
|
/** Date and time at which the event occurred. */
|
|
139660
140326
|
occurred_at: string
|
|
140327
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140328
|
+
event_description?: string | undefined
|
|
139661
140329
|
/** ID of the affected action attempt. */
|
|
139662
140330
|
action_attempt_id: string
|
|
139663
140331
|
/** Type of the action. */
|
|
@@ -139679,6 +140347,8 @@ export type Routes = {
|
|
|
139679
140347
|
created_at: string
|
|
139680
140348
|
/** Date and time at which the event occurred. */
|
|
139681
140349
|
occurred_at: string
|
|
140350
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140351
|
+
event_description?: string | undefined
|
|
139682
140352
|
/** ID of the affected action attempt. */
|
|
139683
140353
|
action_attempt_id: string
|
|
139684
140354
|
/** Type of the action. */
|
|
@@ -139700,6 +140370,8 @@ export type Routes = {
|
|
|
139700
140370
|
created_at: string
|
|
139701
140371
|
/** Date and time at which the event occurred. */
|
|
139702
140372
|
occurred_at: string
|
|
140373
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140374
|
+
event_description?: string | undefined
|
|
139703
140375
|
/** ID of the affected action attempt. */
|
|
139704
140376
|
action_attempt_id: string
|
|
139705
140377
|
/** Type of the action. */
|
|
@@ -139721,6 +140393,8 @@ export type Routes = {
|
|
|
139721
140393
|
created_at: string
|
|
139722
140394
|
/** Date and time at which the event occurred. */
|
|
139723
140395
|
occurred_at: string
|
|
140396
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140397
|
+
event_description?: string | undefined
|
|
139724
140398
|
/** ID of the affected action attempt. */
|
|
139725
140399
|
action_attempt_id: string
|
|
139726
140400
|
/** Type of the action. */
|
|
@@ -139742,6 +140416,8 @@ export type Routes = {
|
|
|
139742
140416
|
created_at: string
|
|
139743
140417
|
/** Date and time at which the event occurred. */
|
|
139744
140418
|
occurred_at: string
|
|
140419
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140420
|
+
event_description?: string | undefined
|
|
139745
140421
|
/** ID of the affected action attempt. */
|
|
139746
140422
|
action_attempt_id: string
|
|
139747
140423
|
/** Type of the action. */
|
|
@@ -139763,6 +140439,8 @@ export type Routes = {
|
|
|
139763
140439
|
created_at: string
|
|
139764
140440
|
/** Date and time at which the event occurred. */
|
|
139765
140441
|
occurred_at: string
|
|
140442
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140443
|
+
event_description?: string | undefined
|
|
139766
140444
|
/** ID of the affected action attempt. */
|
|
139767
140445
|
action_attempt_id: string
|
|
139768
140446
|
/** Type of the action. */
|
|
@@ -139784,6 +140462,8 @@ export type Routes = {
|
|
|
139784
140462
|
created_at: string
|
|
139785
140463
|
/** Date and time at which the event occurred. */
|
|
139786
140464
|
occurred_at: string
|
|
140465
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140466
|
+
event_description?: string | undefined
|
|
139787
140467
|
/** ID of the affected action attempt. */
|
|
139788
140468
|
action_attempt_id: string
|
|
139789
140469
|
/** Type of the action. */
|
|
@@ -139805,6 +140485,8 @@ export type Routes = {
|
|
|
139805
140485
|
created_at: string
|
|
139806
140486
|
/** Date and time at which the event occurred. */
|
|
139807
140487
|
occurred_at: string
|
|
140488
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140489
|
+
event_description?: string | undefined
|
|
139808
140490
|
/** ID of the affected action attempt. */
|
|
139809
140491
|
action_attempt_id: string
|
|
139810
140492
|
/** Type of the action. */
|
|
@@ -139826,6 +140508,8 @@ export type Routes = {
|
|
|
139826
140508
|
created_at: string
|
|
139827
140509
|
/** Date and time at which the event occurred. */
|
|
139828
140510
|
occurred_at: string
|
|
140511
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140512
|
+
event_description?: string | undefined
|
|
139829
140513
|
/** ID of the affected Connect Webview. */
|
|
139830
140514
|
connect_webview_id: string
|
|
139831
140515
|
event_type: 'connect_webview.login_succeeded'
|
|
@@ -139849,6 +140533,8 @@ export type Routes = {
|
|
|
139849
140533
|
created_at: string
|
|
139850
140534
|
/** Date and time at which the event occurred. */
|
|
139851
140535
|
occurred_at: string
|
|
140536
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140537
|
+
event_description?: string | undefined
|
|
139852
140538
|
/** ID of the affected Connect Webview. */
|
|
139853
140539
|
connect_webview_id: string
|
|
139854
140540
|
event_type: 'connect_webview.login_failed'
|
|
@@ -139862,6 +140548,8 @@ export type Routes = {
|
|
|
139862
140548
|
created_at: string
|
|
139863
140549
|
/** Date and time at which the event occurred. */
|
|
139864
140550
|
occurred_at: string
|
|
140551
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140552
|
+
event_description?: string | undefined
|
|
139865
140553
|
/** ID of the affected device. */
|
|
139866
140554
|
device_id: string
|
|
139867
140555
|
/** ID of the connected account associated with the event. */
|
|
@@ -139891,6 +140579,8 @@ export type Routes = {
|
|
|
139891
140579
|
created_at: string
|
|
139892
140580
|
/** Date and time at which the event occurred. */
|
|
139893
140581
|
occurred_at: string
|
|
140582
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140583
|
+
event_description?: string | undefined
|
|
139894
140584
|
/** ID of the affected device. */
|
|
139895
140585
|
device_id: string
|
|
139896
140586
|
/** ID of the connected account associated with the event. */
|
|
@@ -139920,6 +140610,8 @@ export type Routes = {
|
|
|
139920
140610
|
created_at: string
|
|
139921
140611
|
/** Date and time at which the event occurred. */
|
|
139922
140612
|
occurred_at: string
|
|
140613
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140614
|
+
event_description?: string | undefined
|
|
139923
140615
|
/** ID of the affected device. */
|
|
139924
140616
|
device_id: string
|
|
139925
140617
|
/** ID of the connected account associated with the event. */
|
|
@@ -139949,6 +140641,8 @@ export type Routes = {
|
|
|
139949
140641
|
created_at: string
|
|
139950
140642
|
/** Date and time at which the event occurred. */
|
|
139951
140643
|
occurred_at: string
|
|
140644
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140645
|
+
event_description?: string | undefined
|
|
139952
140646
|
/** ID of the affected device. */
|
|
139953
140647
|
device_id: string
|
|
139954
140648
|
/** ID of the connected account associated with the event. */
|
|
@@ -139978,6 +140672,8 @@ export type Routes = {
|
|
|
139978
140672
|
created_at: string
|
|
139979
140673
|
/** Date and time at which the event occurred. */
|
|
139980
140674
|
occurred_at: string
|
|
140675
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140676
|
+
event_description?: string | undefined
|
|
139981
140677
|
/** ID of the affected device. */
|
|
139982
140678
|
device_id: string
|
|
139983
140679
|
/** ID of the connected account associated with the event. */
|
|
@@ -140007,6 +140703,8 @@ export type Routes = {
|
|
|
140007
140703
|
created_at: string
|
|
140008
140704
|
/** Date and time at which the event occurred. */
|
|
140009
140705
|
occurred_at: string
|
|
140706
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140707
|
+
event_description?: string | undefined
|
|
140010
140708
|
/** ID of the affected device. */
|
|
140011
140709
|
device_id: string
|
|
140012
140710
|
/** ID of the connected account associated with the event. */
|
|
@@ -140077,6 +140775,8 @@ export type Routes = {
|
|
|
140077
140775
|
created_at: string
|
|
140078
140776
|
/** Date and time at which the event occurred. */
|
|
140079
140777
|
occurred_at: string
|
|
140778
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140779
|
+
event_description?: string | undefined
|
|
140080
140780
|
/** ID of the affected device. */
|
|
140081
140781
|
device_id: string
|
|
140082
140782
|
/** ID of the connected account associated with the event. */
|
|
@@ -140147,6 +140847,8 @@ export type Routes = {
|
|
|
140147
140847
|
created_at: string
|
|
140148
140848
|
/** Date and time at which the event occurred. */
|
|
140149
140849
|
occurred_at: string
|
|
140850
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140851
|
+
event_description?: string | undefined
|
|
140150
140852
|
/** ID of the affected device. */
|
|
140151
140853
|
device_id: string
|
|
140152
140854
|
/** ID of the connected account associated with the event. */
|
|
@@ -140176,6 +140878,8 @@ export type Routes = {
|
|
|
140176
140878
|
created_at: string
|
|
140177
140879
|
/** Date and time at which the event occurred. */
|
|
140178
140880
|
occurred_at: string
|
|
140881
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140882
|
+
event_description?: string | undefined
|
|
140179
140883
|
/** ID of the affected device. */
|
|
140180
140884
|
device_id: string
|
|
140181
140885
|
/** ID of the connected account associated with the event. */
|
|
@@ -140207,6 +140911,8 @@ export type Routes = {
|
|
|
140207
140911
|
created_at: string
|
|
140208
140912
|
/** Date and time at which the event occurred. */
|
|
140209
140913
|
occurred_at: string
|
|
140914
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140915
|
+
event_description?: string | undefined
|
|
140210
140916
|
/** ID of the affected device. */
|
|
140211
140917
|
device_id: string
|
|
140212
140918
|
/** ID of the connected account associated with the event. */
|
|
@@ -140240,6 +140946,8 @@ export type Routes = {
|
|
|
140240
140946
|
created_at: string
|
|
140241
140947
|
/** Date and time at which the event occurred. */
|
|
140242
140948
|
occurred_at: string
|
|
140949
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140950
|
+
event_description?: string | undefined
|
|
140243
140951
|
/** ID of the affected device. */
|
|
140244
140952
|
device_id: string
|
|
140245
140953
|
/** ID of the connected account associated with the event. */
|
|
@@ -140269,6 +140977,8 @@ export type Routes = {
|
|
|
140269
140977
|
created_at: string
|
|
140270
140978
|
/** Date and time at which the event occurred. */
|
|
140271
140979
|
occurred_at: string
|
|
140980
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140981
|
+
event_description?: string | undefined
|
|
140272
140982
|
/** ID of the affected device. */
|
|
140273
140983
|
device_id: string
|
|
140274
140984
|
/** ID of the connected account associated with the event. */
|
|
@@ -140300,6 +141010,8 @@ export type Routes = {
|
|
|
140300
141010
|
created_at: string
|
|
140301
141011
|
/** Date and time at which the event occurred. */
|
|
140302
141012
|
occurred_at: string
|
|
141013
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141014
|
+
event_description?: string | undefined
|
|
140303
141015
|
/** ID of the affected device. */
|
|
140304
141016
|
device_id: string
|
|
140305
141017
|
/** ID of the connected account associated with the event. */
|
|
@@ -140329,6 +141041,8 @@ export type Routes = {
|
|
|
140329
141041
|
created_at: string
|
|
140330
141042
|
/** Date and time at which the event occurred. */
|
|
140331
141043
|
occurred_at: string
|
|
141044
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141045
|
+
event_description?: string | undefined
|
|
140332
141046
|
/** ID of the affected device. */
|
|
140333
141047
|
device_id: string
|
|
140334
141048
|
/** ID of the connected account associated with the event. */
|
|
@@ -140358,6 +141072,8 @@ export type Routes = {
|
|
|
140358
141072
|
created_at: string
|
|
140359
141073
|
/** Date and time at which the event occurred. */
|
|
140360
141074
|
occurred_at: string
|
|
141075
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141076
|
+
event_description?: string | undefined
|
|
140361
141077
|
/** ID of the affected device. */
|
|
140362
141078
|
device_id: string
|
|
140363
141079
|
/** ID of the connected account associated with the event. */
|
|
@@ -140387,6 +141103,8 @@ export type Routes = {
|
|
|
140387
141103
|
created_at: string
|
|
140388
141104
|
/** Date and time at which the event occurred. */
|
|
140389
141105
|
occurred_at: string
|
|
141106
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141107
|
+
event_description?: string | undefined
|
|
140390
141108
|
/** ID of the affected device. */
|
|
140391
141109
|
device_id: string
|
|
140392
141110
|
/** ID of the connected account associated with the event. */
|
|
@@ -140416,6 +141134,8 @@ export type Routes = {
|
|
|
140416
141134
|
created_at: string
|
|
140417
141135
|
/** Date and time at which the event occurred. */
|
|
140418
141136
|
occurred_at: string
|
|
141137
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141138
|
+
event_description?: string | undefined
|
|
140419
141139
|
/** ID of the affected device. */
|
|
140420
141140
|
device_id: string
|
|
140421
141141
|
/** ID of the connected account associated with the event. */
|
|
@@ -140481,6 +141201,8 @@ export type Routes = {
|
|
|
140481
141201
|
created_at: string
|
|
140482
141202
|
/** Date and time at which the event occurred. */
|
|
140483
141203
|
occurred_at: string
|
|
141204
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141205
|
+
event_description?: string | undefined
|
|
140484
141206
|
/** ID of the affected device. */
|
|
140485
141207
|
device_id: string
|
|
140486
141208
|
/** ID of the connected account associated with the event. */
|
|
@@ -140510,6 +141232,8 @@ export type Routes = {
|
|
|
140510
141232
|
created_at: string
|
|
140511
141233
|
/** Date and time at which the event occurred. */
|
|
140512
141234
|
occurred_at: string
|
|
141235
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141236
|
+
event_description?: string | undefined
|
|
140513
141237
|
/** ID of the affected device. */
|
|
140514
141238
|
device_id: string
|
|
140515
141239
|
/** ID of the connected account associated with the event. */
|
|
@@ -140575,6 +141299,8 @@ export type Routes = {
|
|
|
140575
141299
|
created_at: string
|
|
140576
141300
|
/** Date and time at which the event occurred. */
|
|
140577
141301
|
occurred_at: string
|
|
141302
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141303
|
+
event_description?: string | undefined
|
|
140578
141304
|
/** ID of the affected device. */
|
|
140579
141305
|
device_id: string
|
|
140580
141306
|
/** ID of the connected account associated with the event. */
|
|
@@ -140604,6 +141330,8 @@ export type Routes = {
|
|
|
140604
141330
|
created_at: string
|
|
140605
141331
|
/** Date and time at which the event occurred. */
|
|
140606
141332
|
occurred_at: string
|
|
141333
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141334
|
+
event_description?: string | undefined
|
|
140607
141335
|
/** ID of the affected device. */
|
|
140608
141336
|
device_id: string
|
|
140609
141337
|
/** ID of the connected account associated with the event. */
|
|
@@ -140633,6 +141361,8 @@ export type Routes = {
|
|
|
140633
141361
|
created_at: string
|
|
140634
141362
|
/** Date and time at which the event occurred. */
|
|
140635
141363
|
occurred_at: string
|
|
141364
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141365
|
+
event_description?: string | undefined
|
|
140636
141366
|
/** ID of the affected device. */
|
|
140637
141367
|
device_id: string
|
|
140638
141368
|
/** ID of the connected account associated with the event. */
|
|
@@ -140698,6 +141428,8 @@ export type Routes = {
|
|
|
140698
141428
|
created_at: string
|
|
140699
141429
|
/** Date and time at which the event occurred. */
|
|
140700
141430
|
occurred_at: string
|
|
141431
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141432
|
+
event_description?: string | undefined
|
|
140701
141433
|
/** ID of the affected device. */
|
|
140702
141434
|
device_id: string
|
|
140703
141435
|
/** ID of the connected account associated with the event. */
|
|
@@ -140747,6 +141479,8 @@ export type Routes = {
|
|
|
140747
141479
|
created_at: string
|
|
140748
141480
|
/** Date and time at which the event occurred. */
|
|
140749
141481
|
occurred_at: string
|
|
141482
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141483
|
+
event_description?: string | undefined
|
|
140750
141484
|
/** ID of the affected device. */
|
|
140751
141485
|
device_id: string
|
|
140752
141486
|
/** ID of the connected account associated with the event. */
|
|
@@ -140801,6 +141535,8 @@ export type Routes = {
|
|
|
140801
141535
|
created_at: string
|
|
140802
141536
|
/** Date and time at which the event occurred. */
|
|
140803
141537
|
occurred_at: string
|
|
141538
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141539
|
+
event_description?: string | undefined
|
|
140804
141540
|
/** ID of the affected device. */
|
|
140805
141541
|
device_id?: string | undefined
|
|
140806
141542
|
/** ID of the connected account associated with the event. */
|
|
@@ -140879,6 +141615,8 @@ export type Routes = {
|
|
|
140879
141615
|
created_at: string
|
|
140880
141616
|
/** Date and time at which the event occurred. */
|
|
140881
141617
|
occurred_at: string
|
|
141618
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141619
|
+
event_description?: string | undefined
|
|
140882
141620
|
/** ID of the affected device. */
|
|
140883
141621
|
device_id?: string | undefined
|
|
140884
141622
|
/** ID of the connected account associated with the event. */
|
|
@@ -140934,6 +141672,8 @@ export type Routes = {
|
|
|
140934
141672
|
created_at: string
|
|
140935
141673
|
/** Date and time at which the event occurred. */
|
|
140936
141674
|
occurred_at: string
|
|
141675
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141676
|
+
event_description?: string | undefined
|
|
140937
141677
|
/** ID of the affected device. */
|
|
140938
141678
|
device_id: string
|
|
140939
141679
|
/** ID of the connected account associated with the event. */
|
|
@@ -140969,6 +141709,8 @@ export type Routes = {
|
|
|
140969
141709
|
created_at: string
|
|
140970
141710
|
/** Date and time at which the event occurred. */
|
|
140971
141711
|
occurred_at: string
|
|
141712
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141713
|
+
event_description?: string | undefined
|
|
140972
141714
|
/** ID of the affected device. */
|
|
140973
141715
|
device_id: string
|
|
140974
141716
|
/** ID of the connected account associated with the event. */
|
|
@@ -141023,6 +141765,8 @@ export type Routes = {
|
|
|
141023
141765
|
created_at: string
|
|
141024
141766
|
/** Date and time at which the event occurred. */
|
|
141025
141767
|
occurred_at: string
|
|
141768
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141769
|
+
event_description?: string | undefined
|
|
141026
141770
|
/** ID of the affected device. */
|
|
141027
141771
|
device_id: string
|
|
141028
141772
|
/** ID of the connected account associated with the event. */
|
|
@@ -141064,6 +141808,8 @@ export type Routes = {
|
|
|
141064
141808
|
created_at: string
|
|
141065
141809
|
/** Date and time at which the event occurred. */
|
|
141066
141810
|
occurred_at: string
|
|
141811
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141812
|
+
event_description?: string | undefined
|
|
141067
141813
|
/** ID of the affected device. */
|
|
141068
141814
|
device_id: string
|
|
141069
141815
|
/** ID of the connected account associated with the event. */
|
|
@@ -141105,6 +141851,8 @@ export type Routes = {
|
|
|
141105
141851
|
created_at: string
|
|
141106
141852
|
/** Date and time at which the event occurred. */
|
|
141107
141853
|
occurred_at: string
|
|
141854
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141855
|
+
event_description?: string | undefined
|
|
141108
141856
|
/** ID of the affected device. */
|
|
141109
141857
|
device_id: string
|
|
141110
141858
|
/** ID of the connected account associated with the event. */
|
|
@@ -141142,6 +141890,8 @@ export type Routes = {
|
|
|
141142
141890
|
created_at: string
|
|
141143
141891
|
/** Date and time at which the event occurred. */
|
|
141144
141892
|
occurred_at: string
|
|
141893
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141894
|
+
event_description?: string | undefined
|
|
141145
141895
|
/** ID of the affected device. */
|
|
141146
141896
|
device_id: string
|
|
141147
141897
|
/** ID of the connected account associated with the event. */
|
|
@@ -141175,6 +141925,8 @@ export type Routes = {
|
|
|
141175
141925
|
created_at: string
|
|
141176
141926
|
/** Date and time at which the event occurred. */
|
|
141177
141927
|
occurred_at: string
|
|
141928
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141929
|
+
event_description?: string | undefined
|
|
141178
141930
|
/** ID of the affected device. */
|
|
141179
141931
|
device_id: string
|
|
141180
141932
|
/** ID of the connected account associated with the event. */
|
|
@@ -141206,6 +141958,8 @@ export type Routes = {
|
|
|
141206
141958
|
created_at: string
|
|
141207
141959
|
/** Date and time at which the event occurred. */
|
|
141208
141960
|
occurred_at: string
|
|
141961
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141962
|
+
event_description?: string | undefined
|
|
141209
141963
|
/** ID of the affected device. */
|
|
141210
141964
|
device_id: string
|
|
141211
141965
|
/** ID of the connected account associated with the event. */
|
|
@@ -141245,6 +141999,8 @@ export type Routes = {
|
|
|
141245
141999
|
created_at: string
|
|
141246
142000
|
/** Date and time at which the event occurred. */
|
|
141247
142001
|
occurred_at: string
|
|
142002
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142003
|
+
event_description?: string | undefined
|
|
141248
142004
|
/** ID of the affected device. */
|
|
141249
142005
|
device_id: string
|
|
141250
142006
|
/** ID of the connected account associated with the event. */
|
|
@@ -141278,6 +142034,8 @@ export type Routes = {
|
|
|
141278
142034
|
created_at: string
|
|
141279
142035
|
/** Date and time at which the event occurred. */
|
|
141280
142036
|
occurred_at: string
|
|
142037
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142038
|
+
event_description?: string | undefined
|
|
141281
142039
|
/** ID of the affected enrollment automation. */
|
|
141282
142040
|
enrollment_automation_id: string
|
|
141283
142041
|
event_type: 'enrollment_automation.deleted'
|
|
@@ -141291,6 +142049,8 @@ export type Routes = {
|
|
|
141291
142049
|
created_at: string
|
|
141292
142050
|
/** Date and time at which the event occurred. */
|
|
141293
142051
|
occurred_at: string
|
|
142052
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142053
|
+
event_description?: string | undefined
|
|
141294
142054
|
/** ID of the affected phone device. */
|
|
141295
142055
|
device_id: string
|
|
141296
142056
|
/** Custom metadata of the device; present when device_id is provided. */
|
|
@@ -141310,6 +142070,8 @@ export type Routes = {
|
|
|
141310
142070
|
created_at: string
|
|
141311
142071
|
/** Date and time at which the event occurred. */
|
|
141312
142072
|
occurred_at: string
|
|
142073
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142074
|
+
event_description?: string | undefined
|
|
141313
142075
|
/** ID of the affected space. */
|
|
141314
142076
|
space_id: string
|
|
141315
142077
|
/** Type of the event. */
|
|
@@ -141330,6 +142092,8 @@ export type Routes = {
|
|
|
141330
142092
|
created_at: string
|
|
141331
142093
|
/** Date and time at which the event occurred. */
|
|
141332
142094
|
occurred_at: string
|
|
142095
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142096
|
+
event_description?: string | undefined
|
|
141333
142097
|
/** ID of the affected space. */
|
|
141334
142098
|
space_id: string
|
|
141335
142099
|
/** Type of the event. */
|
|
@@ -141350,6 +142114,8 @@ export type Routes = {
|
|
|
141350
142114
|
created_at: string
|
|
141351
142115
|
/** Date and time at which the event occurred. */
|
|
141352
142116
|
occurred_at: string
|
|
142117
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142118
|
+
event_description?: string | undefined
|
|
141353
142119
|
/** ID of the affected space. */
|
|
141354
142120
|
space_id: string
|
|
141355
142121
|
/** Type of the event. */
|
|
@@ -141787,16 +142553,6 @@ export type Routes = {
|
|
|
141787
142553
|
/** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
|
|
141788
142554
|
managed_access_code_id?: string | undefined
|
|
141789
142555
|
}
|
|
141790
|
-
| {
|
|
141791
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
141792
|
-
message: string
|
|
141793
|
-
/** Indicates that this is an access code error. */
|
|
141794
|
-
is_access_code_error: true
|
|
141795
|
-
/** Date and time at which Seam created the error. */
|
|
141796
|
-
created_at?: string | undefined
|
|
141797
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
141798
|
-
error_code: 'duplicate_code_attempt_prevented'
|
|
141799
|
-
}
|
|
141800
142556
|
| {
|
|
141801
142557
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
141802
142558
|
message: string
|
|
@@ -142218,16 +142974,6 @@ export type Routes = {
|
|
|
142218
142974
|
/** ID of the managed access code that conflicts with this managed access code, when Seam can identify it. */
|
|
142219
142975
|
managed_access_code_id?: string | undefined
|
|
142220
142976
|
}
|
|
142221
|
-
| {
|
|
142222
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
142223
|
-
message: string
|
|
142224
|
-
/** Indicates that this is an access code error. */
|
|
142225
|
-
is_access_code_error: true
|
|
142226
|
-
/** Date and time at which Seam created the error. */
|
|
142227
|
-
created_at?: string | undefined
|
|
142228
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
142229
|
-
error_code: 'duplicate_code_attempt_prevented'
|
|
142230
|
-
}
|
|
142231
142977
|
| {
|
|
142232
142978
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
142233
142979
|
message: string
|