@seamapi/types 1.947.0 → 1.948.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 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1177 -0
- package/dist/index.cjs +432 -1
- package/dist/index.cjs.map +1 -1
- 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 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +856 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/common.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +535 -0
- package/src/lib/seam/connect/route-types.ts +856 -0
|
@@ -54582,6 +54582,8 @@ export type Routes = {
|
|
|
54582
54582
|
created_at: string
|
|
54583
54583
|
/** Date and time at which the event occurred. */
|
|
54584
54584
|
occurred_at: string
|
|
54585
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54586
|
+
event_description?: string | undefined
|
|
54585
54587
|
/** ID of the affected access code. */
|
|
54586
54588
|
access_code_id: string
|
|
54587
54589
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54611,6 +54613,8 @@ export type Routes = {
|
|
|
54611
54613
|
created_at: string
|
|
54612
54614
|
/** Date and time at which the event occurred. */
|
|
54613
54615
|
occurred_at: string
|
|
54616
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54617
|
+
event_description?: string | undefined
|
|
54614
54618
|
/** ID of the affected access code. */
|
|
54615
54619
|
access_code_id: string
|
|
54616
54620
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54653,6 +54657,8 @@ export type Routes = {
|
|
|
54653
54657
|
created_at: string
|
|
54654
54658
|
/** Date and time at which the event occurred. */
|
|
54655
54659
|
occurred_at: string
|
|
54660
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54661
|
+
event_description?: string | undefined
|
|
54656
54662
|
/** ID of the affected access code. */
|
|
54657
54663
|
access_code_id: string
|
|
54658
54664
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54694,6 +54700,8 @@ export type Routes = {
|
|
|
54694
54700
|
created_at: string
|
|
54695
54701
|
/** Date and time at which the event occurred. */
|
|
54696
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
|
|
54697
54705
|
/** ID of the affected access code. */
|
|
54698
54706
|
access_code_id: string
|
|
54699
54707
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54735,6 +54743,8 @@ export type Routes = {
|
|
|
54735
54743
|
created_at: string
|
|
54736
54744
|
/** Date and time at which the event occurred. */
|
|
54737
54745
|
occurred_at: string
|
|
54746
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54747
|
+
event_description?: string | undefined
|
|
54738
54748
|
/** ID of the affected access code. */
|
|
54739
54749
|
access_code_id: string
|
|
54740
54750
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54780,6 +54790,8 @@ export type Routes = {
|
|
|
54780
54790
|
created_at: string
|
|
54781
54791
|
/** Date and time at which the event occurred. */
|
|
54782
54792
|
occurred_at: string
|
|
54793
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54794
|
+
event_description?: string | undefined
|
|
54783
54795
|
/** ID of the affected access code. */
|
|
54784
54796
|
access_code_id: string
|
|
54785
54797
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54832,6 +54844,8 @@ export type Routes = {
|
|
|
54832
54844
|
created_at: string
|
|
54833
54845
|
/** Date and time at which the event occurred. */
|
|
54834
54846
|
occurred_at: string
|
|
54847
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54848
|
+
event_description?: string | undefined
|
|
54835
54849
|
/** ID of the affected access code. */
|
|
54836
54850
|
access_code_id: string
|
|
54837
54851
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54863,6 +54877,8 @@ export type Routes = {
|
|
|
54863
54877
|
created_at: string
|
|
54864
54878
|
/** Date and time at which the event occurred. */
|
|
54865
54879
|
occurred_at: string
|
|
54880
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54881
|
+
event_description?: string | undefined
|
|
54866
54882
|
/** ID of the affected access code. */
|
|
54867
54883
|
access_code_id: string
|
|
54868
54884
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54894,6 +54910,8 @@ export type Routes = {
|
|
|
54894
54910
|
created_at: string
|
|
54895
54911
|
/** Date and time at which the event occurred. */
|
|
54896
54912
|
occurred_at: string
|
|
54913
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54914
|
+
event_description?: string | undefined
|
|
54897
54915
|
/** ID of the affected access code. */
|
|
54898
54916
|
access_code_id: string
|
|
54899
54917
|
/** ID of the device associated with the affected access code. */
|
|
@@ -54923,6 +54941,8 @@ export type Routes = {
|
|
|
54923
54941
|
created_at: string
|
|
54924
54942
|
/** Date and time at which the event occurred. */
|
|
54925
54943
|
occurred_at: string
|
|
54944
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
54945
|
+
event_description?: string | undefined
|
|
54926
54946
|
/** ID of the affected access code. */
|
|
54927
54947
|
access_code_id: string
|
|
54928
54948
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55006,6 +55026,8 @@ export type Routes = {
|
|
|
55006
55026
|
created_at: string
|
|
55007
55027
|
/** Date and time at which the event occurred. */
|
|
55008
55028
|
occurred_at: string
|
|
55029
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55030
|
+
event_description?: string | undefined
|
|
55009
55031
|
/** ID of the affected access code. */
|
|
55010
55032
|
access_code_id: string
|
|
55011
55033
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55089,6 +55111,8 @@ export type Routes = {
|
|
|
55089
55111
|
created_at: string
|
|
55090
55112
|
/** Date and time at which the event occurred. */
|
|
55091
55113
|
occurred_at: string
|
|
55114
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55115
|
+
event_description?: string | undefined
|
|
55092
55116
|
/** ID of the affected access code. */
|
|
55093
55117
|
access_code_id: string
|
|
55094
55118
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55120,6 +55144,8 @@ export type Routes = {
|
|
|
55120
55144
|
created_at: string
|
|
55121
55145
|
/** Date and time at which the event occurred. */
|
|
55122
55146
|
occurred_at: string
|
|
55147
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55148
|
+
event_description?: string | undefined
|
|
55123
55149
|
/** ID of the affected access code. */
|
|
55124
55150
|
access_code_id: string
|
|
55125
55151
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55203,6 +55229,8 @@ export type Routes = {
|
|
|
55203
55229
|
created_at: string
|
|
55204
55230
|
/** Date and time at which the event occurred. */
|
|
55205
55231
|
occurred_at: string
|
|
55232
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55233
|
+
event_description?: string | undefined
|
|
55206
55234
|
/** ID of the affected access code. */
|
|
55207
55235
|
access_code_id: string
|
|
55208
55236
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55286,6 +55314,8 @@ export type Routes = {
|
|
|
55286
55314
|
created_at: string
|
|
55287
55315
|
/** Date and time at which the event occurred. */
|
|
55288
55316
|
occurred_at: string
|
|
55317
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55318
|
+
event_description?: string | undefined
|
|
55289
55319
|
/** ID of the affected access code. */
|
|
55290
55320
|
access_code_id: string
|
|
55291
55321
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55315,6 +55345,8 @@ export type Routes = {
|
|
|
55315
55345
|
created_at: string
|
|
55316
55346
|
/** Date and time at which the event occurred. */
|
|
55317
55347
|
occurred_at: string
|
|
55348
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55349
|
+
event_description?: string | undefined
|
|
55318
55350
|
/** ID of the affected access code. */
|
|
55319
55351
|
access_code_id: string
|
|
55320
55352
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55344,6 +55376,8 @@ export type Routes = {
|
|
|
55344
55376
|
created_at: string
|
|
55345
55377
|
/** Date and time at which the event occurred. */
|
|
55346
55378
|
occurred_at: string
|
|
55379
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55380
|
+
event_description?: string | undefined
|
|
55347
55381
|
/** ID of the affected access code. */
|
|
55348
55382
|
access_code_id: string
|
|
55349
55383
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55375,6 +55409,8 @@ export type Routes = {
|
|
|
55375
55409
|
created_at: string
|
|
55376
55410
|
/** Date and time at which the event occurred. */
|
|
55377
55411
|
occurred_at: string
|
|
55412
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55413
|
+
event_description?: string | undefined
|
|
55378
55414
|
/** ID of the affected access code. */
|
|
55379
55415
|
access_code_id: string
|
|
55380
55416
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55404,6 +55440,8 @@ export type Routes = {
|
|
|
55404
55440
|
created_at: string
|
|
55405
55441
|
/** Date and time at which the event occurred. */
|
|
55406
55442
|
occurred_at: string
|
|
55443
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55444
|
+
event_description?: string | undefined
|
|
55407
55445
|
/** ID of the affected access code. */
|
|
55408
55446
|
access_code_id: string
|
|
55409
55447
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55487,6 +55525,8 @@ export type Routes = {
|
|
|
55487
55525
|
created_at: string
|
|
55488
55526
|
/** Date and time at which the event occurred. */
|
|
55489
55527
|
occurred_at: string
|
|
55528
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55529
|
+
event_description?: string | undefined
|
|
55490
55530
|
/** ID of the affected access code. */
|
|
55491
55531
|
access_code_id: string
|
|
55492
55532
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55516,6 +55556,8 @@ export type Routes = {
|
|
|
55516
55556
|
created_at: string
|
|
55517
55557
|
/** Date and time at which the event occurred. */
|
|
55518
55558
|
occurred_at: string
|
|
55559
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55560
|
+
event_description?: string | undefined
|
|
55519
55561
|
/** ID of the affected access code. */
|
|
55520
55562
|
access_code_id: string
|
|
55521
55563
|
/** ID of the device associated with the affected access code. */
|
|
@@ -55545,6 +55587,8 @@ export type Routes = {
|
|
|
55545
55587
|
created_at: string
|
|
55546
55588
|
/** Date and time at which the event occurred. */
|
|
55547
55589
|
occurred_at: string
|
|
55590
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55591
|
+
event_description?: string | undefined
|
|
55548
55592
|
/** ID of the affected Access Grant. */
|
|
55549
55593
|
access_grant_id: string
|
|
55550
55594
|
event_type: 'access_grant.created'
|
|
@@ -55558,6 +55602,8 @@ export type Routes = {
|
|
|
55558
55602
|
created_at: string
|
|
55559
55603
|
/** Date and time at which the event occurred. */
|
|
55560
55604
|
occurred_at: string
|
|
55605
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55606
|
+
event_description?: string | undefined
|
|
55561
55607
|
/** ID of the affected Access Grant. */
|
|
55562
55608
|
access_grant_id: string
|
|
55563
55609
|
event_type: 'access_grant.deleted'
|
|
@@ -55571,6 +55617,8 @@ export type Routes = {
|
|
|
55571
55617
|
created_at: string
|
|
55572
55618
|
/** Date and time at which the event occurred. */
|
|
55573
55619
|
occurred_at: string
|
|
55620
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55621
|
+
event_description?: string | undefined
|
|
55574
55622
|
/** ID of the affected Access Grant. */
|
|
55575
55623
|
access_grant_id: string
|
|
55576
55624
|
event_type: 'access_grant.access_granted_to_all_doors'
|
|
@@ -55584,6 +55632,8 @@ export type Routes = {
|
|
|
55584
55632
|
created_at: string
|
|
55585
55633
|
/** Date and time at which the event occurred. */
|
|
55586
55634
|
occurred_at: string
|
|
55635
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55636
|
+
event_description?: string | undefined
|
|
55587
55637
|
/** ID of the affected Access Grant. */
|
|
55588
55638
|
access_grant_id: string
|
|
55589
55639
|
event_type: 'access_grant.access_granted_to_door'
|
|
@@ -55599,6 +55649,8 @@ export type Routes = {
|
|
|
55599
55649
|
created_at: string
|
|
55600
55650
|
/** Date and time at which the event occurred. */
|
|
55601
55651
|
occurred_at: string
|
|
55652
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55653
|
+
event_description?: string | undefined
|
|
55602
55654
|
/** ID of the affected Access Grant. */
|
|
55603
55655
|
access_grant_id: string
|
|
55604
55656
|
event_type: 'access_grant.access_to_door_lost'
|
|
@@ -55614,6 +55666,8 @@ export type Routes = {
|
|
|
55614
55666
|
created_at: string
|
|
55615
55667
|
/** Date and time at which the event occurred. */
|
|
55616
55668
|
occurred_at: string
|
|
55669
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55670
|
+
event_description?: string | undefined
|
|
55617
55671
|
/** ID of the affected Access Grant. */
|
|
55618
55672
|
access_grant_id: string
|
|
55619
55673
|
event_type: 'access_grant.access_times_changed'
|
|
@@ -55633,6 +55687,8 @@ export type Routes = {
|
|
|
55633
55687
|
created_at: string
|
|
55634
55688
|
/** Date and time at which the event occurred. */
|
|
55635
55689
|
occurred_at: string
|
|
55690
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55691
|
+
event_description?: string | undefined
|
|
55636
55692
|
/** ID of the affected Access Grant. */
|
|
55637
55693
|
access_grant_id: string
|
|
55638
55694
|
event_type: 'access_grant.could_not_create_requested_access_methods'
|
|
@@ -55650,6 +55706,8 @@ export type Routes = {
|
|
|
55650
55706
|
created_at: string
|
|
55651
55707
|
/** Date and time at which the event occurred. */
|
|
55652
55708
|
occurred_at: string
|
|
55709
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55710
|
+
event_description?: string | undefined
|
|
55653
55711
|
/** ID of the affected access method. */
|
|
55654
55712
|
access_method_id: string
|
|
55655
55713
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -55671,6 +55729,8 @@ export type Routes = {
|
|
|
55671
55729
|
created_at: string
|
|
55672
55730
|
/** Date and time at which the event occurred. */
|
|
55673
55731
|
occurred_at: string
|
|
55732
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55733
|
+
event_description?: string | undefined
|
|
55674
55734
|
/** ID of the affected access method. */
|
|
55675
55735
|
access_method_id: string
|
|
55676
55736
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -55688,6 +55748,8 @@ export type Routes = {
|
|
|
55688
55748
|
created_at: string
|
|
55689
55749
|
/** Date and time at which the event occurred. */
|
|
55690
55750
|
occurred_at: string
|
|
55751
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55752
|
+
event_description?: string | undefined
|
|
55691
55753
|
/** ID of the affected access method. */
|
|
55692
55754
|
access_method_id: string
|
|
55693
55755
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -55705,6 +55767,8 @@ export type Routes = {
|
|
|
55705
55767
|
created_at: string
|
|
55706
55768
|
/** Date and time at which the event occurred. */
|
|
55707
55769
|
occurred_at: string
|
|
55770
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55771
|
+
event_description?: string | undefined
|
|
55708
55772
|
/** ID of the affected access method. */
|
|
55709
55773
|
access_method_id: string
|
|
55710
55774
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -55722,6 +55786,8 @@ export type Routes = {
|
|
|
55722
55786
|
created_at: string
|
|
55723
55787
|
/** Date and time at which the event occurred. */
|
|
55724
55788
|
occurred_at: string
|
|
55789
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55790
|
+
event_description?: string | undefined
|
|
55725
55791
|
/** ID of the affected access method. */
|
|
55726
55792
|
access_method_id: string
|
|
55727
55793
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -55743,6 +55809,8 @@ export type Routes = {
|
|
|
55743
55809
|
created_at: string
|
|
55744
55810
|
/** Date and time at which the event occurred. */
|
|
55745
55811
|
occurred_at: string
|
|
55812
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55813
|
+
event_description?: string | undefined
|
|
55746
55814
|
/** ID of the affected access method. */
|
|
55747
55815
|
access_method_id: string
|
|
55748
55816
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -55760,6 +55828,8 @@ export type Routes = {
|
|
|
55760
55828
|
created_at: string
|
|
55761
55829
|
/** Date and time at which the event occurred. */
|
|
55762
55830
|
occurred_at: string
|
|
55831
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55832
|
+
event_description?: string | undefined
|
|
55763
55833
|
/** ID of the connected account. */
|
|
55764
55834
|
connected_account_id?: string | undefined
|
|
55765
55835
|
/** ID of the access system. */
|
|
@@ -55775,6 +55845,8 @@ export type Routes = {
|
|
|
55775
55845
|
created_at: string
|
|
55776
55846
|
/** Date and time at which the event occurred. */
|
|
55777
55847
|
occurred_at: string
|
|
55848
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55849
|
+
event_description?: string | undefined
|
|
55778
55850
|
/** ID of the connected account. */
|
|
55779
55851
|
connected_account_id?: string | undefined
|
|
55780
55852
|
/** ID of the access system. */
|
|
@@ -55790,6 +55862,8 @@ export type Routes = {
|
|
|
55790
55862
|
created_at: string
|
|
55791
55863
|
/** Date and time at which the event occurred. */
|
|
55792
55864
|
occurred_at: string
|
|
55865
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55866
|
+
event_description?: string | undefined
|
|
55793
55867
|
/** ID of the connected account. */
|
|
55794
55868
|
connected_account_id?: string | undefined
|
|
55795
55869
|
/** ID of the access system. */
|
|
@@ -55841,6 +55915,8 @@ export type Routes = {
|
|
|
55841
55915
|
created_at: string
|
|
55842
55916
|
/** Date and time at which the event occurred. */
|
|
55843
55917
|
occurred_at: string
|
|
55918
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55919
|
+
event_description?: string | undefined
|
|
55844
55920
|
/** ID of the connected account. */
|
|
55845
55921
|
connected_account_id?: string | undefined
|
|
55846
55922
|
/** ID of the access system. */
|
|
@@ -55858,6 +55934,8 @@ export type Routes = {
|
|
|
55858
55934
|
created_at: string
|
|
55859
55935
|
/** Date and time at which the event occurred. */
|
|
55860
55936
|
occurred_at: string
|
|
55937
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55938
|
+
event_description?: string | undefined
|
|
55861
55939
|
/** ID of the connected account. */
|
|
55862
55940
|
connected_account_id?: string | undefined
|
|
55863
55941
|
/** ID of the access system. */
|
|
@@ -55875,6 +55953,8 @@ export type Routes = {
|
|
|
55875
55953
|
created_at: string
|
|
55876
55954
|
/** Date and time at which the event occurred. */
|
|
55877
55955
|
occurred_at: string
|
|
55956
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55957
|
+
event_description?: string | undefined
|
|
55878
55958
|
/** ID of the connected account. */
|
|
55879
55959
|
connected_account_id?: string | undefined
|
|
55880
55960
|
/** ID of the access system. */
|
|
@@ -55892,6 +55972,8 @@ export type Routes = {
|
|
|
55892
55972
|
created_at: string
|
|
55893
55973
|
/** Date and time at which the event occurred. */
|
|
55894
55974
|
occurred_at: string
|
|
55975
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55976
|
+
event_description?: string | undefined
|
|
55895
55977
|
/** ID of the connected account. */
|
|
55896
55978
|
connected_account_id?: string | undefined
|
|
55897
55979
|
/** ID of the access system. */
|
|
@@ -55909,6 +55991,8 @@ export type Routes = {
|
|
|
55909
55991
|
created_at: string
|
|
55910
55992
|
/** Date and time at which the event occurred. */
|
|
55911
55993
|
occurred_at: string
|
|
55994
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
55995
|
+
event_description?: string | undefined
|
|
55912
55996
|
/** ID of the connected account. */
|
|
55913
55997
|
connected_account_id?: string | undefined
|
|
55914
55998
|
/** ID of the access system. */
|
|
@@ -55926,6 +56010,8 @@ export type Routes = {
|
|
|
55926
56010
|
created_at: string
|
|
55927
56011
|
/** Date and time at which the event occurred. */
|
|
55928
56012
|
occurred_at: string
|
|
56013
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56014
|
+
event_description?: string | undefined
|
|
55929
56015
|
/** ID of the connected account. */
|
|
55930
56016
|
connected_account_id?: string | undefined
|
|
55931
56017
|
/** ID of the access system. */
|
|
@@ -55943,6 +56029,8 @@ export type Routes = {
|
|
|
55943
56029
|
created_at: string
|
|
55944
56030
|
/** Date and time at which the event occurred. */
|
|
55945
56031
|
occurred_at: string
|
|
56032
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56033
|
+
event_description?: string | undefined
|
|
55946
56034
|
/** ID of the connected account. */
|
|
55947
56035
|
connected_account_id?: string | undefined
|
|
55948
56036
|
/** ID of the access system. */
|
|
@@ -55960,6 +56048,8 @@ export type Routes = {
|
|
|
55960
56048
|
created_at: string
|
|
55961
56049
|
/** Date and time at which the event occurred. */
|
|
55962
56050
|
occurred_at: string
|
|
56051
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56052
|
+
event_description?: string | undefined
|
|
55963
56053
|
/** ID of the connected account. */
|
|
55964
56054
|
connected_account_id?: string | undefined
|
|
55965
56055
|
/** ID of the access system. */
|
|
@@ -55977,6 +56067,8 @@ export type Routes = {
|
|
|
55977
56067
|
created_at: string
|
|
55978
56068
|
/** Date and time at which the event occurred. */
|
|
55979
56069
|
occurred_at: string
|
|
56070
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56071
|
+
event_description?: string | undefined
|
|
55980
56072
|
/** ID of the connected account. */
|
|
55981
56073
|
connected_account_id?: string | undefined
|
|
55982
56074
|
/** ID of the access system. */
|
|
@@ -55994,6 +56086,8 @@ export type Routes = {
|
|
|
55994
56086
|
created_at: string
|
|
55995
56087
|
/** Date and time at which the event occurred. */
|
|
55996
56088
|
occurred_at: string
|
|
56089
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56090
|
+
event_description?: string | undefined
|
|
55997
56091
|
/** ID of the connected account. */
|
|
55998
56092
|
connected_account_id?: string | undefined
|
|
55999
56093
|
/** ID of the access system. */
|
|
@@ -56011,6 +56105,8 @@ export type Routes = {
|
|
|
56011
56105
|
created_at: string
|
|
56012
56106
|
/** Date and time at which the event occurred. */
|
|
56013
56107
|
occurred_at: string
|
|
56108
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56109
|
+
event_description?: string | undefined
|
|
56014
56110
|
/** ID of the connected account. */
|
|
56015
56111
|
connected_account_id?: string | undefined
|
|
56016
56112
|
/** ID of the access system. */
|
|
@@ -56028,6 +56124,8 @@ export type Routes = {
|
|
|
56028
56124
|
created_at: string
|
|
56029
56125
|
/** Date and time at which the event occurred. */
|
|
56030
56126
|
occurred_at: string
|
|
56127
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56128
|
+
event_description?: string | undefined
|
|
56031
56129
|
/** ID of the affected client session. */
|
|
56032
56130
|
client_session_id: string
|
|
56033
56131
|
event_type: 'client_session.deleted'
|
|
@@ -56041,6 +56139,8 @@ export type Routes = {
|
|
|
56041
56139
|
created_at: string
|
|
56042
56140
|
/** Date and time at which the event occurred. */
|
|
56043
56141
|
occurred_at: string
|
|
56142
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56143
|
+
event_description?: string | undefined
|
|
56044
56144
|
/** ID of the affected connected account. */
|
|
56045
56145
|
connected_account_id: string
|
|
56046
56146
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56064,6 +56164,8 @@ export type Routes = {
|
|
|
56064
56164
|
created_at: string
|
|
56065
56165
|
/** Date and time at which the event occurred. */
|
|
56066
56166
|
occurred_at: string
|
|
56167
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56168
|
+
event_description?: string | undefined
|
|
56067
56169
|
/** ID of the affected connected account. */
|
|
56068
56170
|
connected_account_id: string
|
|
56069
56171
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56085,6 +56187,8 @@ export type Routes = {
|
|
|
56085
56187
|
created_at: string
|
|
56086
56188
|
/** Date and time at which the event occurred. */
|
|
56087
56189
|
occurred_at: string
|
|
56190
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56191
|
+
event_description?: string | undefined
|
|
56088
56192
|
/** ID of the affected connected account. */
|
|
56089
56193
|
connected_account_id: string
|
|
56090
56194
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56106,6 +56210,8 @@ export type Routes = {
|
|
|
56106
56210
|
created_at: string
|
|
56107
56211
|
/** Date and time at which the event occurred. */
|
|
56108
56212
|
occurred_at: string
|
|
56213
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56214
|
+
event_description?: string | undefined
|
|
56109
56215
|
/** ID of the affected connected account. */
|
|
56110
56216
|
connected_account_id: string
|
|
56111
56217
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56143,6 +56249,8 @@ export type Routes = {
|
|
|
56143
56249
|
created_at: string
|
|
56144
56250
|
/** Date and time at which the event occurred. */
|
|
56145
56251
|
occurred_at: string
|
|
56252
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56253
|
+
event_description?: string | undefined
|
|
56146
56254
|
/** ID of the affected connected account. */
|
|
56147
56255
|
connected_account_id: string
|
|
56148
56256
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56162,6 +56270,8 @@ export type Routes = {
|
|
|
56162
56270
|
created_at: string
|
|
56163
56271
|
/** Date and time at which the event occurred. */
|
|
56164
56272
|
occurred_at: string
|
|
56273
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56274
|
+
event_description?: string | undefined
|
|
56165
56275
|
/** ID of the affected connected account. */
|
|
56166
56276
|
connected_account_id: string
|
|
56167
56277
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56185,6 +56295,8 @@ export type Routes = {
|
|
|
56185
56295
|
created_at: string
|
|
56186
56296
|
/** Date and time at which the event occurred. */
|
|
56187
56297
|
occurred_at: string
|
|
56298
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56299
|
+
event_description?: string | undefined
|
|
56188
56300
|
/** ID of the affected connected account. */
|
|
56189
56301
|
connected_account_id: string
|
|
56190
56302
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56204,6 +56316,8 @@ export type Routes = {
|
|
|
56204
56316
|
created_at: string
|
|
56205
56317
|
/** Date and time at which the event occurred. */
|
|
56206
56318
|
occurred_at: string
|
|
56319
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56320
|
+
event_description?: string | undefined
|
|
56207
56321
|
/** ID of the affected connected account. */
|
|
56208
56322
|
connected_account_id: string
|
|
56209
56323
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -56241,6 +56355,8 @@ export type Routes = {
|
|
|
56241
56355
|
created_at: string
|
|
56242
56356
|
/** Date and time at which the event occurred. */
|
|
56243
56357
|
occurred_at: string
|
|
56358
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56359
|
+
event_description?: string | undefined
|
|
56244
56360
|
/** ID of the affected action attempt. */
|
|
56245
56361
|
action_attempt_id: string
|
|
56246
56362
|
/** Type of the action. */
|
|
@@ -56262,6 +56378,8 @@ export type Routes = {
|
|
|
56262
56378
|
created_at: string
|
|
56263
56379
|
/** Date and time at which the event occurred. */
|
|
56264
56380
|
occurred_at: string
|
|
56381
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56382
|
+
event_description?: string | undefined
|
|
56265
56383
|
/** ID of the affected action attempt. */
|
|
56266
56384
|
action_attempt_id: string
|
|
56267
56385
|
/** Type of the action. */
|
|
@@ -56283,6 +56401,8 @@ export type Routes = {
|
|
|
56283
56401
|
created_at: string
|
|
56284
56402
|
/** Date and time at which the event occurred. */
|
|
56285
56403
|
occurred_at: string
|
|
56404
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56405
|
+
event_description?: string | undefined
|
|
56286
56406
|
/** ID of the affected action attempt. */
|
|
56287
56407
|
action_attempt_id: string
|
|
56288
56408
|
/** Type of the action. */
|
|
@@ -56304,6 +56424,8 @@ export type Routes = {
|
|
|
56304
56424
|
created_at: string
|
|
56305
56425
|
/** Date and time at which the event occurred. */
|
|
56306
56426
|
occurred_at: string
|
|
56427
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56428
|
+
event_description?: string | undefined
|
|
56307
56429
|
/** ID of the affected action attempt. */
|
|
56308
56430
|
action_attempt_id: string
|
|
56309
56431
|
/** Type of the action. */
|
|
@@ -56325,6 +56447,8 @@ export type Routes = {
|
|
|
56325
56447
|
created_at: string
|
|
56326
56448
|
/** Date and time at which the event occurred. */
|
|
56327
56449
|
occurred_at: string
|
|
56450
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56451
|
+
event_description?: string | undefined
|
|
56328
56452
|
/** ID of the affected action attempt. */
|
|
56329
56453
|
action_attempt_id: string
|
|
56330
56454
|
/** Type of the action. */
|
|
@@ -56346,6 +56470,8 @@ export type Routes = {
|
|
|
56346
56470
|
created_at: string
|
|
56347
56471
|
/** Date and time at which the event occurred. */
|
|
56348
56472
|
occurred_at: string
|
|
56473
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56474
|
+
event_description?: string | undefined
|
|
56349
56475
|
/** ID of the affected action attempt. */
|
|
56350
56476
|
action_attempt_id: string
|
|
56351
56477
|
/** Type of the action. */
|
|
@@ -56367,6 +56493,8 @@ export type Routes = {
|
|
|
56367
56493
|
created_at: string
|
|
56368
56494
|
/** Date and time at which the event occurred. */
|
|
56369
56495
|
occurred_at: string
|
|
56496
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56497
|
+
event_description?: string | undefined
|
|
56370
56498
|
/** ID of the affected action attempt. */
|
|
56371
56499
|
action_attempt_id: string
|
|
56372
56500
|
/** Type of the action. */
|
|
@@ -56388,6 +56516,8 @@ export type Routes = {
|
|
|
56388
56516
|
created_at: string
|
|
56389
56517
|
/** Date and time at which the event occurred. */
|
|
56390
56518
|
occurred_at: string
|
|
56519
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56520
|
+
event_description?: string | undefined
|
|
56391
56521
|
/** ID of the affected action attempt. */
|
|
56392
56522
|
action_attempt_id: string
|
|
56393
56523
|
/** Type of the action. */
|
|
@@ -56409,6 +56539,8 @@ export type Routes = {
|
|
|
56409
56539
|
created_at: string
|
|
56410
56540
|
/** Date and time at which the event occurred. */
|
|
56411
56541
|
occurred_at: string
|
|
56542
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56543
|
+
event_description?: string | undefined
|
|
56412
56544
|
/** ID of the affected Connect Webview. */
|
|
56413
56545
|
connect_webview_id: string
|
|
56414
56546
|
event_type: 'connect_webview.login_succeeded'
|
|
@@ -56432,6 +56564,8 @@ export type Routes = {
|
|
|
56432
56564
|
created_at: string
|
|
56433
56565
|
/** Date and time at which the event occurred. */
|
|
56434
56566
|
occurred_at: string
|
|
56567
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56568
|
+
event_description?: string | undefined
|
|
56435
56569
|
/** ID of the affected Connect Webview. */
|
|
56436
56570
|
connect_webview_id: string
|
|
56437
56571
|
event_type: 'connect_webview.login_failed'
|
|
@@ -56445,6 +56579,8 @@ export type Routes = {
|
|
|
56445
56579
|
created_at: string
|
|
56446
56580
|
/** Date and time at which the event occurred. */
|
|
56447
56581
|
occurred_at: string
|
|
56582
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56583
|
+
event_description?: string | undefined
|
|
56448
56584
|
/** ID of the affected device. */
|
|
56449
56585
|
device_id: string
|
|
56450
56586
|
/** ID of the connected account associated with the event. */
|
|
@@ -56474,6 +56610,8 @@ export type Routes = {
|
|
|
56474
56610
|
created_at: string
|
|
56475
56611
|
/** Date and time at which the event occurred. */
|
|
56476
56612
|
occurred_at: string
|
|
56613
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56614
|
+
event_description?: string | undefined
|
|
56477
56615
|
/** ID of the affected device. */
|
|
56478
56616
|
device_id: string
|
|
56479
56617
|
/** ID of the connected account associated with the event. */
|
|
@@ -56503,6 +56641,8 @@ export type Routes = {
|
|
|
56503
56641
|
created_at: string
|
|
56504
56642
|
/** Date and time at which the event occurred. */
|
|
56505
56643
|
occurred_at: string
|
|
56644
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56645
|
+
event_description?: string | undefined
|
|
56506
56646
|
/** ID of the affected device. */
|
|
56507
56647
|
device_id: string
|
|
56508
56648
|
/** ID of the connected account associated with the event. */
|
|
@@ -56532,6 +56672,8 @@ export type Routes = {
|
|
|
56532
56672
|
created_at: string
|
|
56533
56673
|
/** Date and time at which the event occurred. */
|
|
56534
56674
|
occurred_at: string
|
|
56675
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56676
|
+
event_description?: string | undefined
|
|
56535
56677
|
/** ID of the affected device. */
|
|
56536
56678
|
device_id: string
|
|
56537
56679
|
/** ID of the connected account associated with the event. */
|
|
@@ -56561,6 +56703,8 @@ export type Routes = {
|
|
|
56561
56703
|
created_at: string
|
|
56562
56704
|
/** Date and time at which the event occurred. */
|
|
56563
56705
|
occurred_at: string
|
|
56706
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56707
|
+
event_description?: string | undefined
|
|
56564
56708
|
/** ID of the affected device. */
|
|
56565
56709
|
device_id: string
|
|
56566
56710
|
/** ID of the connected account associated with the event. */
|
|
@@ -56590,6 +56734,8 @@ export type Routes = {
|
|
|
56590
56734
|
created_at: string
|
|
56591
56735
|
/** Date and time at which the event occurred. */
|
|
56592
56736
|
occurred_at: string
|
|
56737
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56738
|
+
event_description?: string | undefined
|
|
56593
56739
|
/** ID of the affected device. */
|
|
56594
56740
|
device_id: string
|
|
56595
56741
|
/** ID of the connected account associated with the event. */
|
|
@@ -56660,6 +56806,8 @@ export type Routes = {
|
|
|
56660
56806
|
created_at: string
|
|
56661
56807
|
/** Date and time at which the event occurred. */
|
|
56662
56808
|
occurred_at: string
|
|
56809
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56810
|
+
event_description?: string | undefined
|
|
56663
56811
|
/** ID of the affected device. */
|
|
56664
56812
|
device_id: string
|
|
56665
56813
|
/** ID of the connected account associated with the event. */
|
|
@@ -56730,6 +56878,8 @@ export type Routes = {
|
|
|
56730
56878
|
created_at: string
|
|
56731
56879
|
/** Date and time at which the event occurred. */
|
|
56732
56880
|
occurred_at: string
|
|
56881
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56882
|
+
event_description?: string | undefined
|
|
56733
56883
|
/** ID of the affected device. */
|
|
56734
56884
|
device_id: string
|
|
56735
56885
|
/** ID of the connected account associated with the event. */
|
|
@@ -56759,6 +56909,8 @@ export type Routes = {
|
|
|
56759
56909
|
created_at: string
|
|
56760
56910
|
/** Date and time at which the event occurred. */
|
|
56761
56911
|
occurred_at: string
|
|
56912
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56913
|
+
event_description?: string | undefined
|
|
56762
56914
|
/** ID of the affected device. */
|
|
56763
56915
|
device_id: string
|
|
56764
56916
|
/** ID of the connected account associated with the event. */
|
|
@@ -56790,6 +56942,8 @@ export type Routes = {
|
|
|
56790
56942
|
created_at: string
|
|
56791
56943
|
/** Date and time at which the event occurred. */
|
|
56792
56944
|
occurred_at: string
|
|
56945
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56946
|
+
event_description?: string | undefined
|
|
56793
56947
|
/** ID of the affected device. */
|
|
56794
56948
|
device_id: string
|
|
56795
56949
|
/** ID of the connected account associated with the event. */
|
|
@@ -56823,6 +56977,8 @@ export type Routes = {
|
|
|
56823
56977
|
created_at: string
|
|
56824
56978
|
/** Date and time at which the event occurred. */
|
|
56825
56979
|
occurred_at: string
|
|
56980
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
56981
|
+
event_description?: string | undefined
|
|
56826
56982
|
/** ID of the affected device. */
|
|
56827
56983
|
device_id: string
|
|
56828
56984
|
/** ID of the connected account associated with the event. */
|
|
@@ -56852,6 +57008,8 @@ export type Routes = {
|
|
|
56852
57008
|
created_at: string
|
|
56853
57009
|
/** Date and time at which the event occurred. */
|
|
56854
57010
|
occurred_at: string
|
|
57011
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57012
|
+
event_description?: string | undefined
|
|
56855
57013
|
/** ID of the affected device. */
|
|
56856
57014
|
device_id: string
|
|
56857
57015
|
/** ID of the connected account associated with the event. */
|
|
@@ -56883,6 +57041,8 @@ export type Routes = {
|
|
|
56883
57041
|
created_at: string
|
|
56884
57042
|
/** Date and time at which the event occurred. */
|
|
56885
57043
|
occurred_at: string
|
|
57044
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57045
|
+
event_description?: string | undefined
|
|
56886
57046
|
/** ID of the affected device. */
|
|
56887
57047
|
device_id: string
|
|
56888
57048
|
/** ID of the connected account associated with the event. */
|
|
@@ -56912,6 +57072,8 @@ export type Routes = {
|
|
|
56912
57072
|
created_at: string
|
|
56913
57073
|
/** Date and time at which the event occurred. */
|
|
56914
57074
|
occurred_at: string
|
|
57075
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57076
|
+
event_description?: string | undefined
|
|
56915
57077
|
/** ID of the affected device. */
|
|
56916
57078
|
device_id: string
|
|
56917
57079
|
/** ID of the connected account associated with the event. */
|
|
@@ -56941,6 +57103,8 @@ export type Routes = {
|
|
|
56941
57103
|
created_at: string
|
|
56942
57104
|
/** Date and time at which the event occurred. */
|
|
56943
57105
|
occurred_at: string
|
|
57106
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57107
|
+
event_description?: string | undefined
|
|
56944
57108
|
/** ID of the affected device. */
|
|
56945
57109
|
device_id: string
|
|
56946
57110
|
/** ID of the connected account associated with the event. */
|
|
@@ -56970,6 +57134,8 @@ export type Routes = {
|
|
|
56970
57134
|
created_at: string
|
|
56971
57135
|
/** Date and time at which the event occurred. */
|
|
56972
57136
|
occurred_at: string
|
|
57137
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57138
|
+
event_description?: string | undefined
|
|
56973
57139
|
/** ID of the affected device. */
|
|
56974
57140
|
device_id: string
|
|
56975
57141
|
/** ID of the connected account associated with the event. */
|
|
@@ -56999,6 +57165,8 @@ export type Routes = {
|
|
|
56999
57165
|
created_at: string
|
|
57000
57166
|
/** Date and time at which the event occurred. */
|
|
57001
57167
|
occurred_at: string
|
|
57168
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57169
|
+
event_description?: string | undefined
|
|
57002
57170
|
/** ID of the affected device. */
|
|
57003
57171
|
device_id: string
|
|
57004
57172
|
/** ID of the connected account associated with the event. */
|
|
@@ -57064,6 +57232,8 @@ export type Routes = {
|
|
|
57064
57232
|
created_at: string
|
|
57065
57233
|
/** Date and time at which the event occurred. */
|
|
57066
57234
|
occurred_at: string
|
|
57235
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57236
|
+
event_description?: string | undefined
|
|
57067
57237
|
/** ID of the affected device. */
|
|
57068
57238
|
device_id: string
|
|
57069
57239
|
/** ID of the connected account associated with the event. */
|
|
@@ -57093,6 +57263,8 @@ export type Routes = {
|
|
|
57093
57263
|
created_at: string
|
|
57094
57264
|
/** Date and time at which the event occurred. */
|
|
57095
57265
|
occurred_at: string
|
|
57266
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57267
|
+
event_description?: string | undefined
|
|
57096
57268
|
/** ID of the affected device. */
|
|
57097
57269
|
device_id: string
|
|
57098
57270
|
/** ID of the connected account associated with the event. */
|
|
@@ -57158,6 +57330,8 @@ export type Routes = {
|
|
|
57158
57330
|
created_at: string
|
|
57159
57331
|
/** Date and time at which the event occurred. */
|
|
57160
57332
|
occurred_at: string
|
|
57333
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57334
|
+
event_description?: string | undefined
|
|
57161
57335
|
/** ID of the affected device. */
|
|
57162
57336
|
device_id: string
|
|
57163
57337
|
/** ID of the connected account associated with the event. */
|
|
@@ -57187,6 +57361,8 @@ export type Routes = {
|
|
|
57187
57361
|
created_at: string
|
|
57188
57362
|
/** Date and time at which the event occurred. */
|
|
57189
57363
|
occurred_at: string
|
|
57364
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57365
|
+
event_description?: string | undefined
|
|
57190
57366
|
/** ID of the affected device. */
|
|
57191
57367
|
device_id: string
|
|
57192
57368
|
/** ID of the connected account associated with the event. */
|
|
@@ -57216,6 +57392,8 @@ export type Routes = {
|
|
|
57216
57392
|
created_at: string
|
|
57217
57393
|
/** Date and time at which the event occurred. */
|
|
57218
57394
|
occurred_at: string
|
|
57395
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57396
|
+
event_description?: string | undefined
|
|
57219
57397
|
/** ID of the affected device. */
|
|
57220
57398
|
device_id: string
|
|
57221
57399
|
/** ID of the connected account associated with the event. */
|
|
@@ -57281,6 +57459,8 @@ export type Routes = {
|
|
|
57281
57459
|
created_at: string
|
|
57282
57460
|
/** Date and time at which the event occurred. */
|
|
57283
57461
|
occurred_at: string
|
|
57462
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57463
|
+
event_description?: string | undefined
|
|
57284
57464
|
/** ID of the affected device. */
|
|
57285
57465
|
device_id: string
|
|
57286
57466
|
/** ID of the connected account associated with the event. */
|
|
@@ -57330,6 +57510,8 @@ export type Routes = {
|
|
|
57330
57510
|
created_at: string
|
|
57331
57511
|
/** Date and time at which the event occurred. */
|
|
57332
57512
|
occurred_at: string
|
|
57513
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57514
|
+
event_description?: string | undefined
|
|
57333
57515
|
/** ID of the affected device. */
|
|
57334
57516
|
device_id: string
|
|
57335
57517
|
/** ID of the connected account associated with the event. */
|
|
@@ -57384,6 +57566,8 @@ export type Routes = {
|
|
|
57384
57566
|
created_at: string
|
|
57385
57567
|
/** Date and time at which the event occurred. */
|
|
57386
57568
|
occurred_at: string
|
|
57569
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57570
|
+
event_description?: string | undefined
|
|
57387
57571
|
/** ID of the affected device. */
|
|
57388
57572
|
device_id?: string | undefined
|
|
57389
57573
|
/** ID of the connected account associated with the event. */
|
|
@@ -57462,6 +57646,8 @@ export type Routes = {
|
|
|
57462
57646
|
created_at: string
|
|
57463
57647
|
/** Date and time at which the event occurred. */
|
|
57464
57648
|
occurred_at: string
|
|
57649
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57650
|
+
event_description?: string | undefined
|
|
57465
57651
|
/** ID of the affected device. */
|
|
57466
57652
|
device_id?: string | undefined
|
|
57467
57653
|
/** ID of the connected account associated with the event. */
|
|
@@ -57517,6 +57703,8 @@ export type Routes = {
|
|
|
57517
57703
|
created_at: string
|
|
57518
57704
|
/** Date and time at which the event occurred. */
|
|
57519
57705
|
occurred_at: string
|
|
57706
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57707
|
+
event_description?: string | undefined
|
|
57520
57708
|
/** ID of the affected device. */
|
|
57521
57709
|
device_id: string
|
|
57522
57710
|
/** ID of the connected account associated with the event. */
|
|
@@ -57552,6 +57740,8 @@ export type Routes = {
|
|
|
57552
57740
|
created_at: string
|
|
57553
57741
|
/** Date and time at which the event occurred. */
|
|
57554
57742
|
occurred_at: string
|
|
57743
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57744
|
+
event_description?: string | undefined
|
|
57555
57745
|
/** ID of the affected device. */
|
|
57556
57746
|
device_id: string
|
|
57557
57747
|
/** ID of the connected account associated with the event. */
|
|
@@ -57602,6 +57792,8 @@ export type Routes = {
|
|
|
57602
57792
|
created_at: string
|
|
57603
57793
|
/** Date and time at which the event occurred. */
|
|
57604
57794
|
occurred_at: string
|
|
57795
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57796
|
+
event_description?: string | undefined
|
|
57605
57797
|
/** ID of the affected device. */
|
|
57606
57798
|
device_id: string
|
|
57607
57799
|
/** ID of the connected account associated with the event. */
|
|
@@ -57643,6 +57835,8 @@ export type Routes = {
|
|
|
57643
57835
|
created_at: string
|
|
57644
57836
|
/** Date and time at which the event occurred. */
|
|
57645
57837
|
occurred_at: string
|
|
57838
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57839
|
+
event_description?: string | undefined
|
|
57646
57840
|
/** ID of the affected device. */
|
|
57647
57841
|
device_id: string
|
|
57648
57842
|
/** ID of the connected account associated with the event. */
|
|
@@ -57684,6 +57878,8 @@ export type Routes = {
|
|
|
57684
57878
|
created_at: string
|
|
57685
57879
|
/** Date and time at which the event occurred. */
|
|
57686
57880
|
occurred_at: string
|
|
57881
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57882
|
+
event_description?: string | undefined
|
|
57687
57883
|
/** ID of the affected device. */
|
|
57688
57884
|
device_id: string
|
|
57689
57885
|
/** ID of the connected account associated with the event. */
|
|
@@ -57721,6 +57917,8 @@ export type Routes = {
|
|
|
57721
57917
|
created_at: string
|
|
57722
57918
|
/** Date and time at which the event occurred. */
|
|
57723
57919
|
occurred_at: string
|
|
57920
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57921
|
+
event_description?: string | undefined
|
|
57724
57922
|
/** ID of the affected device. */
|
|
57725
57923
|
device_id: string
|
|
57726
57924
|
/** ID of the connected account associated with the event. */
|
|
@@ -57754,6 +57952,8 @@ export type Routes = {
|
|
|
57754
57952
|
created_at: string
|
|
57755
57953
|
/** Date and time at which the event occurred. */
|
|
57756
57954
|
occurred_at: string
|
|
57955
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57956
|
+
event_description?: string | undefined
|
|
57757
57957
|
/** ID of the affected device. */
|
|
57758
57958
|
device_id: string
|
|
57759
57959
|
/** ID of the connected account associated with the event. */
|
|
@@ -57785,6 +57985,8 @@ export type Routes = {
|
|
|
57785
57985
|
created_at: string
|
|
57786
57986
|
/** Date and time at which the event occurred. */
|
|
57787
57987
|
occurred_at: string
|
|
57988
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
57989
|
+
event_description?: string | undefined
|
|
57788
57990
|
/** ID of the affected device. */
|
|
57789
57991
|
device_id: string
|
|
57790
57992
|
/** ID of the connected account associated with the event. */
|
|
@@ -57824,6 +58026,8 @@ export type Routes = {
|
|
|
57824
58026
|
created_at: string
|
|
57825
58027
|
/** Date and time at which the event occurred. */
|
|
57826
58028
|
occurred_at: string
|
|
58029
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58030
|
+
event_description?: string | undefined
|
|
57827
58031
|
/** ID of the affected device. */
|
|
57828
58032
|
device_id: string
|
|
57829
58033
|
/** ID of the connected account associated with the event. */
|
|
@@ -57857,6 +58061,8 @@ export type Routes = {
|
|
|
57857
58061
|
created_at: string
|
|
57858
58062
|
/** Date and time at which the event occurred. */
|
|
57859
58063
|
occurred_at: string
|
|
58064
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58065
|
+
event_description?: string | undefined
|
|
57860
58066
|
/** ID of the affected enrollment automation. */
|
|
57861
58067
|
enrollment_automation_id: string
|
|
57862
58068
|
event_type: 'enrollment_automation.deleted'
|
|
@@ -57870,6 +58076,8 @@ export type Routes = {
|
|
|
57870
58076
|
created_at: string
|
|
57871
58077
|
/** Date and time at which the event occurred. */
|
|
57872
58078
|
occurred_at: string
|
|
58079
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58080
|
+
event_description?: string | undefined
|
|
57873
58081
|
/** ID of the affected phone device. */
|
|
57874
58082
|
device_id: string
|
|
57875
58083
|
/** Custom metadata of the device; present when device_id is provided. */
|
|
@@ -57889,6 +58097,8 @@ export type Routes = {
|
|
|
57889
58097
|
created_at: string
|
|
57890
58098
|
/** Date and time at which the event occurred. */
|
|
57891
58099
|
occurred_at: string
|
|
58100
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58101
|
+
event_description?: string | undefined
|
|
57892
58102
|
/** ID of the affected space. */
|
|
57893
58103
|
space_id: string
|
|
57894
58104
|
/** Type of the event. */
|
|
@@ -57909,6 +58119,8 @@ export type Routes = {
|
|
|
57909
58119
|
created_at: string
|
|
57910
58120
|
/** Date and time at which the event occurred. */
|
|
57911
58121
|
occurred_at: string
|
|
58122
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58123
|
+
event_description?: string | undefined
|
|
57912
58124
|
/** ID of the affected space. */
|
|
57913
58125
|
space_id: string
|
|
57914
58126
|
/** Type of the event. */
|
|
@@ -57929,6 +58141,8 @@ export type Routes = {
|
|
|
57929
58141
|
created_at: string
|
|
57930
58142
|
/** Date and time at which the event occurred. */
|
|
57931
58143
|
occurred_at: string
|
|
58144
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58145
|
+
event_description?: string | undefined
|
|
57932
58146
|
/** ID of the affected space. */
|
|
57933
58147
|
space_id: string
|
|
57934
58148
|
/** Type of the event. */
|
|
@@ -58241,6 +58455,8 @@ export type Routes = {
|
|
|
58241
58455
|
created_at: string
|
|
58242
58456
|
/** Date and time at which the event occurred. */
|
|
58243
58457
|
occurred_at: string
|
|
58458
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58459
|
+
event_description?: string | undefined
|
|
58244
58460
|
/** ID of the affected access code. */
|
|
58245
58461
|
access_code_id: string
|
|
58246
58462
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58270,6 +58486,8 @@ export type Routes = {
|
|
|
58270
58486
|
created_at: string
|
|
58271
58487
|
/** Date and time at which the event occurred. */
|
|
58272
58488
|
occurred_at: string
|
|
58489
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58490
|
+
event_description?: string | undefined
|
|
58273
58491
|
/** ID of the affected access code. */
|
|
58274
58492
|
access_code_id: string
|
|
58275
58493
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58312,6 +58530,8 @@ export type Routes = {
|
|
|
58312
58530
|
created_at: string
|
|
58313
58531
|
/** Date and time at which the event occurred. */
|
|
58314
58532
|
occurred_at: string
|
|
58533
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58534
|
+
event_description?: string | undefined
|
|
58315
58535
|
/** ID of the affected access code. */
|
|
58316
58536
|
access_code_id: string
|
|
58317
58537
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58353,6 +58573,8 @@ export type Routes = {
|
|
|
58353
58573
|
created_at: string
|
|
58354
58574
|
/** Date and time at which the event occurred. */
|
|
58355
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
|
|
58356
58578
|
/** ID of the affected access code. */
|
|
58357
58579
|
access_code_id: string
|
|
58358
58580
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58394,6 +58616,8 @@ export type Routes = {
|
|
|
58394
58616
|
created_at: string
|
|
58395
58617
|
/** Date and time at which the event occurred. */
|
|
58396
58618
|
occurred_at: string
|
|
58619
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58620
|
+
event_description?: string | undefined
|
|
58397
58621
|
/** ID of the affected access code. */
|
|
58398
58622
|
access_code_id: string
|
|
58399
58623
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58439,6 +58663,8 @@ export type Routes = {
|
|
|
58439
58663
|
created_at: string
|
|
58440
58664
|
/** Date and time at which the event occurred. */
|
|
58441
58665
|
occurred_at: string
|
|
58666
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58667
|
+
event_description?: string | undefined
|
|
58442
58668
|
/** ID of the affected access code. */
|
|
58443
58669
|
access_code_id: string
|
|
58444
58670
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58491,6 +58717,8 @@ export type Routes = {
|
|
|
58491
58717
|
created_at: string
|
|
58492
58718
|
/** Date and time at which the event occurred. */
|
|
58493
58719
|
occurred_at: string
|
|
58720
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58721
|
+
event_description?: string | undefined
|
|
58494
58722
|
/** ID of the affected access code. */
|
|
58495
58723
|
access_code_id: string
|
|
58496
58724
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58522,6 +58750,8 @@ export type Routes = {
|
|
|
58522
58750
|
created_at: string
|
|
58523
58751
|
/** Date and time at which the event occurred. */
|
|
58524
58752
|
occurred_at: string
|
|
58753
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58754
|
+
event_description?: string | undefined
|
|
58525
58755
|
/** ID of the affected access code. */
|
|
58526
58756
|
access_code_id: string
|
|
58527
58757
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58553,6 +58783,8 @@ export type Routes = {
|
|
|
58553
58783
|
created_at: string
|
|
58554
58784
|
/** Date and time at which the event occurred. */
|
|
58555
58785
|
occurred_at: string
|
|
58786
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58787
|
+
event_description?: string | undefined
|
|
58556
58788
|
/** ID of the affected access code. */
|
|
58557
58789
|
access_code_id: string
|
|
58558
58790
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58582,6 +58814,8 @@ export type Routes = {
|
|
|
58582
58814
|
created_at: string
|
|
58583
58815
|
/** Date and time at which the event occurred. */
|
|
58584
58816
|
occurred_at: string
|
|
58817
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58818
|
+
event_description?: string | undefined
|
|
58585
58819
|
/** ID of the affected access code. */
|
|
58586
58820
|
access_code_id: string
|
|
58587
58821
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58665,6 +58899,8 @@ export type Routes = {
|
|
|
58665
58899
|
created_at: string
|
|
58666
58900
|
/** Date and time at which the event occurred. */
|
|
58667
58901
|
occurred_at: string
|
|
58902
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58903
|
+
event_description?: string | undefined
|
|
58668
58904
|
/** ID of the affected access code. */
|
|
58669
58905
|
access_code_id: string
|
|
58670
58906
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58748,6 +58984,8 @@ export type Routes = {
|
|
|
58748
58984
|
created_at: string
|
|
58749
58985
|
/** Date and time at which the event occurred. */
|
|
58750
58986
|
occurred_at: string
|
|
58987
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
58988
|
+
event_description?: string | undefined
|
|
58751
58989
|
/** ID of the affected access code. */
|
|
58752
58990
|
access_code_id: string
|
|
58753
58991
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58779,6 +59017,8 @@ export type Routes = {
|
|
|
58779
59017
|
created_at: string
|
|
58780
59018
|
/** Date and time at which the event occurred. */
|
|
58781
59019
|
occurred_at: string
|
|
59020
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59021
|
+
event_description?: string | undefined
|
|
58782
59022
|
/** ID of the affected access code. */
|
|
58783
59023
|
access_code_id: string
|
|
58784
59024
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58862,6 +59102,8 @@ export type Routes = {
|
|
|
58862
59102
|
created_at: string
|
|
58863
59103
|
/** Date and time at which the event occurred. */
|
|
58864
59104
|
occurred_at: string
|
|
59105
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59106
|
+
event_description?: string | undefined
|
|
58865
59107
|
/** ID of the affected access code. */
|
|
58866
59108
|
access_code_id: string
|
|
58867
59109
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58945,6 +59187,8 @@ export type Routes = {
|
|
|
58945
59187
|
created_at: string
|
|
58946
59188
|
/** Date and time at which the event occurred. */
|
|
58947
59189
|
occurred_at: string
|
|
59190
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59191
|
+
event_description?: string | undefined
|
|
58948
59192
|
/** ID of the affected access code. */
|
|
58949
59193
|
access_code_id: string
|
|
58950
59194
|
/** ID of the device associated with the affected access code. */
|
|
@@ -58974,6 +59218,8 @@ export type Routes = {
|
|
|
58974
59218
|
created_at: string
|
|
58975
59219
|
/** Date and time at which the event occurred. */
|
|
58976
59220
|
occurred_at: string
|
|
59221
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59222
|
+
event_description?: string | undefined
|
|
58977
59223
|
/** ID of the affected access code. */
|
|
58978
59224
|
access_code_id: string
|
|
58979
59225
|
/** ID of the device associated with the affected access code. */
|
|
@@ -59003,6 +59249,8 @@ export type Routes = {
|
|
|
59003
59249
|
created_at: string
|
|
59004
59250
|
/** Date and time at which the event occurred. */
|
|
59005
59251
|
occurred_at: string
|
|
59252
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59253
|
+
event_description?: string | undefined
|
|
59006
59254
|
/** ID of the affected access code. */
|
|
59007
59255
|
access_code_id: string
|
|
59008
59256
|
/** ID of the device associated with the affected access code. */
|
|
@@ -59034,6 +59282,8 @@ export type Routes = {
|
|
|
59034
59282
|
created_at: string
|
|
59035
59283
|
/** Date and time at which the event occurred. */
|
|
59036
59284
|
occurred_at: string
|
|
59285
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59286
|
+
event_description?: string | undefined
|
|
59037
59287
|
/** ID of the affected access code. */
|
|
59038
59288
|
access_code_id: string
|
|
59039
59289
|
/** ID of the device associated with the affected access code. */
|
|
@@ -59063,6 +59313,8 @@ export type Routes = {
|
|
|
59063
59313
|
created_at: string
|
|
59064
59314
|
/** Date and time at which the event occurred. */
|
|
59065
59315
|
occurred_at: string
|
|
59316
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59317
|
+
event_description?: string | undefined
|
|
59066
59318
|
/** ID of the affected access code. */
|
|
59067
59319
|
access_code_id: string
|
|
59068
59320
|
/** ID of the device associated with the affected access code. */
|
|
@@ -59146,6 +59398,8 @@ export type Routes = {
|
|
|
59146
59398
|
created_at: string
|
|
59147
59399
|
/** Date and time at which the event occurred. */
|
|
59148
59400
|
occurred_at: string
|
|
59401
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59402
|
+
event_description?: string | undefined
|
|
59149
59403
|
/** ID of the affected access code. */
|
|
59150
59404
|
access_code_id: string
|
|
59151
59405
|
/** ID of the device associated with the affected access code. */
|
|
@@ -59175,6 +59429,8 @@ export type Routes = {
|
|
|
59175
59429
|
created_at: string
|
|
59176
59430
|
/** Date and time at which the event occurred. */
|
|
59177
59431
|
occurred_at: string
|
|
59432
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59433
|
+
event_description?: string | undefined
|
|
59178
59434
|
/** ID of the affected access code. */
|
|
59179
59435
|
access_code_id: string
|
|
59180
59436
|
/** ID of the device associated with the affected access code. */
|
|
@@ -59204,6 +59460,8 @@ export type Routes = {
|
|
|
59204
59460
|
created_at: string
|
|
59205
59461
|
/** Date and time at which the event occurred. */
|
|
59206
59462
|
occurred_at: string
|
|
59463
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59464
|
+
event_description?: string | undefined
|
|
59207
59465
|
/** ID of the affected Access Grant. */
|
|
59208
59466
|
access_grant_id: string
|
|
59209
59467
|
event_type: 'access_grant.created'
|
|
@@ -59217,6 +59475,8 @@ export type Routes = {
|
|
|
59217
59475
|
created_at: string
|
|
59218
59476
|
/** Date and time at which the event occurred. */
|
|
59219
59477
|
occurred_at: string
|
|
59478
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59479
|
+
event_description?: string | undefined
|
|
59220
59480
|
/** ID of the affected Access Grant. */
|
|
59221
59481
|
access_grant_id: string
|
|
59222
59482
|
event_type: 'access_grant.deleted'
|
|
@@ -59230,6 +59490,8 @@ export type Routes = {
|
|
|
59230
59490
|
created_at: string
|
|
59231
59491
|
/** Date and time at which the event occurred. */
|
|
59232
59492
|
occurred_at: string
|
|
59493
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59494
|
+
event_description?: string | undefined
|
|
59233
59495
|
/** ID of the affected Access Grant. */
|
|
59234
59496
|
access_grant_id: string
|
|
59235
59497
|
event_type: 'access_grant.access_granted_to_all_doors'
|
|
@@ -59243,6 +59505,8 @@ export type Routes = {
|
|
|
59243
59505
|
created_at: string
|
|
59244
59506
|
/** Date and time at which the event occurred. */
|
|
59245
59507
|
occurred_at: string
|
|
59508
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59509
|
+
event_description?: string | undefined
|
|
59246
59510
|
/** ID of the affected Access Grant. */
|
|
59247
59511
|
access_grant_id: string
|
|
59248
59512
|
event_type: 'access_grant.access_granted_to_door'
|
|
@@ -59258,6 +59522,8 @@ export type Routes = {
|
|
|
59258
59522
|
created_at: string
|
|
59259
59523
|
/** Date and time at which the event occurred. */
|
|
59260
59524
|
occurred_at: string
|
|
59525
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59526
|
+
event_description?: string | undefined
|
|
59261
59527
|
/** ID of the affected Access Grant. */
|
|
59262
59528
|
access_grant_id: string
|
|
59263
59529
|
event_type: 'access_grant.access_to_door_lost'
|
|
@@ -59273,6 +59539,8 @@ export type Routes = {
|
|
|
59273
59539
|
created_at: string
|
|
59274
59540
|
/** Date and time at which the event occurred. */
|
|
59275
59541
|
occurred_at: string
|
|
59542
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59543
|
+
event_description?: string | undefined
|
|
59276
59544
|
/** ID of the affected Access Grant. */
|
|
59277
59545
|
access_grant_id: string
|
|
59278
59546
|
event_type: 'access_grant.access_times_changed'
|
|
@@ -59292,6 +59560,8 @@ export type Routes = {
|
|
|
59292
59560
|
created_at: string
|
|
59293
59561
|
/** Date and time at which the event occurred. */
|
|
59294
59562
|
occurred_at: string
|
|
59563
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59564
|
+
event_description?: string | undefined
|
|
59295
59565
|
/** ID of the affected Access Grant. */
|
|
59296
59566
|
access_grant_id: string
|
|
59297
59567
|
event_type: 'access_grant.could_not_create_requested_access_methods'
|
|
@@ -59309,6 +59579,8 @@ export type Routes = {
|
|
|
59309
59579
|
created_at: string
|
|
59310
59580
|
/** Date and time at which the event occurred. */
|
|
59311
59581
|
occurred_at: string
|
|
59582
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59583
|
+
event_description?: string | undefined
|
|
59312
59584
|
/** ID of the affected access method. */
|
|
59313
59585
|
access_method_id: string
|
|
59314
59586
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -59330,6 +59602,8 @@ export type Routes = {
|
|
|
59330
59602
|
created_at: string
|
|
59331
59603
|
/** Date and time at which the event occurred. */
|
|
59332
59604
|
occurred_at: string
|
|
59605
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59606
|
+
event_description?: string | undefined
|
|
59333
59607
|
/** ID of the affected access method. */
|
|
59334
59608
|
access_method_id: string
|
|
59335
59609
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -59347,6 +59621,8 @@ export type Routes = {
|
|
|
59347
59621
|
created_at: string
|
|
59348
59622
|
/** Date and time at which the event occurred. */
|
|
59349
59623
|
occurred_at: string
|
|
59624
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59625
|
+
event_description?: string | undefined
|
|
59350
59626
|
/** ID of the affected access method. */
|
|
59351
59627
|
access_method_id: string
|
|
59352
59628
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -59364,6 +59640,8 @@ export type Routes = {
|
|
|
59364
59640
|
created_at: string
|
|
59365
59641
|
/** Date and time at which the event occurred. */
|
|
59366
59642
|
occurred_at: string
|
|
59643
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59644
|
+
event_description?: string | undefined
|
|
59367
59645
|
/** ID of the affected access method. */
|
|
59368
59646
|
access_method_id: string
|
|
59369
59647
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -59381,6 +59659,8 @@ export type Routes = {
|
|
|
59381
59659
|
created_at: string
|
|
59382
59660
|
/** Date and time at which the event occurred. */
|
|
59383
59661
|
occurred_at: string
|
|
59662
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59663
|
+
event_description?: string | undefined
|
|
59384
59664
|
/** ID of the affected access method. */
|
|
59385
59665
|
access_method_id: string
|
|
59386
59666
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -59402,6 +59682,8 @@ export type Routes = {
|
|
|
59402
59682
|
created_at: string
|
|
59403
59683
|
/** Date and time at which the event occurred. */
|
|
59404
59684
|
occurred_at: string
|
|
59685
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59686
|
+
event_description?: string | undefined
|
|
59405
59687
|
/** ID of the affected access method. */
|
|
59406
59688
|
access_method_id: string
|
|
59407
59689
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -59419,6 +59701,8 @@ export type Routes = {
|
|
|
59419
59701
|
created_at: string
|
|
59420
59702
|
/** Date and time at which the event occurred. */
|
|
59421
59703
|
occurred_at: string
|
|
59704
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59705
|
+
event_description?: string | undefined
|
|
59422
59706
|
/** ID of the connected account. */
|
|
59423
59707
|
connected_account_id?: string | undefined
|
|
59424
59708
|
/** ID of the access system. */
|
|
@@ -59434,6 +59718,8 @@ export type Routes = {
|
|
|
59434
59718
|
created_at: string
|
|
59435
59719
|
/** Date and time at which the event occurred. */
|
|
59436
59720
|
occurred_at: string
|
|
59721
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59722
|
+
event_description?: string | undefined
|
|
59437
59723
|
/** ID of the connected account. */
|
|
59438
59724
|
connected_account_id?: string | undefined
|
|
59439
59725
|
/** ID of the access system. */
|
|
@@ -59449,6 +59735,8 @@ export type Routes = {
|
|
|
59449
59735
|
created_at: string
|
|
59450
59736
|
/** Date and time at which the event occurred. */
|
|
59451
59737
|
occurred_at: string
|
|
59738
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59739
|
+
event_description?: string | undefined
|
|
59452
59740
|
/** ID of the connected account. */
|
|
59453
59741
|
connected_account_id?: string | undefined
|
|
59454
59742
|
/** ID of the access system. */
|
|
@@ -59500,6 +59788,8 @@ export type Routes = {
|
|
|
59500
59788
|
created_at: string
|
|
59501
59789
|
/** Date and time at which the event occurred. */
|
|
59502
59790
|
occurred_at: string
|
|
59791
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59792
|
+
event_description?: string | undefined
|
|
59503
59793
|
/** ID of the connected account. */
|
|
59504
59794
|
connected_account_id?: string | undefined
|
|
59505
59795
|
/** ID of the access system. */
|
|
@@ -59517,6 +59807,8 @@ export type Routes = {
|
|
|
59517
59807
|
created_at: string
|
|
59518
59808
|
/** Date and time at which the event occurred. */
|
|
59519
59809
|
occurred_at: string
|
|
59810
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59811
|
+
event_description?: string | undefined
|
|
59520
59812
|
/** ID of the connected account. */
|
|
59521
59813
|
connected_account_id?: string | undefined
|
|
59522
59814
|
/** ID of the access system. */
|
|
@@ -59534,6 +59826,8 @@ export type Routes = {
|
|
|
59534
59826
|
created_at: string
|
|
59535
59827
|
/** Date and time at which the event occurred. */
|
|
59536
59828
|
occurred_at: string
|
|
59829
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59830
|
+
event_description?: string | undefined
|
|
59537
59831
|
/** ID of the connected account. */
|
|
59538
59832
|
connected_account_id?: string | undefined
|
|
59539
59833
|
/** ID of the access system. */
|
|
@@ -59551,6 +59845,8 @@ export type Routes = {
|
|
|
59551
59845
|
created_at: string
|
|
59552
59846
|
/** Date and time at which the event occurred. */
|
|
59553
59847
|
occurred_at: string
|
|
59848
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59849
|
+
event_description?: string | undefined
|
|
59554
59850
|
/** ID of the connected account. */
|
|
59555
59851
|
connected_account_id?: string | undefined
|
|
59556
59852
|
/** ID of the access system. */
|
|
@@ -59568,6 +59864,8 @@ export type Routes = {
|
|
|
59568
59864
|
created_at: string
|
|
59569
59865
|
/** Date and time at which the event occurred. */
|
|
59570
59866
|
occurred_at: string
|
|
59867
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59868
|
+
event_description?: string | undefined
|
|
59571
59869
|
/** ID of the connected account. */
|
|
59572
59870
|
connected_account_id?: string | undefined
|
|
59573
59871
|
/** ID of the access system. */
|
|
@@ -59585,6 +59883,8 @@ export type Routes = {
|
|
|
59585
59883
|
created_at: string
|
|
59586
59884
|
/** Date and time at which the event occurred. */
|
|
59587
59885
|
occurred_at: string
|
|
59886
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59887
|
+
event_description?: string | undefined
|
|
59588
59888
|
/** ID of the connected account. */
|
|
59589
59889
|
connected_account_id?: string | undefined
|
|
59590
59890
|
/** ID of the access system. */
|
|
@@ -59602,6 +59902,8 @@ export type Routes = {
|
|
|
59602
59902
|
created_at: string
|
|
59603
59903
|
/** Date and time at which the event occurred. */
|
|
59604
59904
|
occurred_at: string
|
|
59905
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59906
|
+
event_description?: string | undefined
|
|
59605
59907
|
/** ID of the connected account. */
|
|
59606
59908
|
connected_account_id?: string | undefined
|
|
59607
59909
|
/** ID of the access system. */
|
|
@@ -59619,6 +59921,8 @@ export type Routes = {
|
|
|
59619
59921
|
created_at: string
|
|
59620
59922
|
/** Date and time at which the event occurred. */
|
|
59621
59923
|
occurred_at: string
|
|
59924
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59925
|
+
event_description?: string | undefined
|
|
59622
59926
|
/** ID of the connected account. */
|
|
59623
59927
|
connected_account_id?: string | undefined
|
|
59624
59928
|
/** ID of the access system. */
|
|
@@ -59636,6 +59940,8 @@ export type Routes = {
|
|
|
59636
59940
|
created_at: string
|
|
59637
59941
|
/** Date and time at which the event occurred. */
|
|
59638
59942
|
occurred_at: string
|
|
59943
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59944
|
+
event_description?: string | undefined
|
|
59639
59945
|
/** ID of the connected account. */
|
|
59640
59946
|
connected_account_id?: string | undefined
|
|
59641
59947
|
/** ID of the access system. */
|
|
@@ -59653,6 +59959,8 @@ export type Routes = {
|
|
|
59653
59959
|
created_at: string
|
|
59654
59960
|
/** Date and time at which the event occurred. */
|
|
59655
59961
|
occurred_at: string
|
|
59962
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59963
|
+
event_description?: string | undefined
|
|
59656
59964
|
/** ID of the connected account. */
|
|
59657
59965
|
connected_account_id?: string | undefined
|
|
59658
59966
|
/** ID of the access system. */
|
|
@@ -59670,6 +59978,8 @@ export type Routes = {
|
|
|
59670
59978
|
created_at: string
|
|
59671
59979
|
/** Date and time at which the event occurred. */
|
|
59672
59980
|
occurred_at: string
|
|
59981
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
59982
|
+
event_description?: string | undefined
|
|
59673
59983
|
/** ID of the connected account. */
|
|
59674
59984
|
connected_account_id?: string | undefined
|
|
59675
59985
|
/** ID of the access system. */
|
|
@@ -59687,6 +59997,8 @@ export type Routes = {
|
|
|
59687
59997
|
created_at: string
|
|
59688
59998
|
/** Date and time at which the event occurred. */
|
|
59689
59999
|
occurred_at: string
|
|
60000
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60001
|
+
event_description?: string | undefined
|
|
59690
60002
|
/** ID of the affected client session. */
|
|
59691
60003
|
client_session_id: string
|
|
59692
60004
|
event_type: 'client_session.deleted'
|
|
@@ -59700,6 +60012,8 @@ export type Routes = {
|
|
|
59700
60012
|
created_at: string
|
|
59701
60013
|
/** Date and time at which the event occurred. */
|
|
59702
60014
|
occurred_at: string
|
|
60015
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60016
|
+
event_description?: string | undefined
|
|
59703
60017
|
/** ID of the affected connected account. */
|
|
59704
60018
|
connected_account_id: string
|
|
59705
60019
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59723,6 +60037,8 @@ export type Routes = {
|
|
|
59723
60037
|
created_at: string
|
|
59724
60038
|
/** Date and time at which the event occurred. */
|
|
59725
60039
|
occurred_at: string
|
|
60040
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60041
|
+
event_description?: string | undefined
|
|
59726
60042
|
/** ID of the affected connected account. */
|
|
59727
60043
|
connected_account_id: string
|
|
59728
60044
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59744,6 +60060,8 @@ export type Routes = {
|
|
|
59744
60060
|
created_at: string
|
|
59745
60061
|
/** Date and time at which the event occurred. */
|
|
59746
60062
|
occurred_at: string
|
|
60063
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60064
|
+
event_description?: string | undefined
|
|
59747
60065
|
/** ID of the affected connected account. */
|
|
59748
60066
|
connected_account_id: string
|
|
59749
60067
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59765,6 +60083,8 @@ export type Routes = {
|
|
|
59765
60083
|
created_at: string
|
|
59766
60084
|
/** Date and time at which the event occurred. */
|
|
59767
60085
|
occurred_at: string
|
|
60086
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60087
|
+
event_description?: string | undefined
|
|
59768
60088
|
/** ID of the affected connected account. */
|
|
59769
60089
|
connected_account_id: string
|
|
59770
60090
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59802,6 +60122,8 @@ export type Routes = {
|
|
|
59802
60122
|
created_at: string
|
|
59803
60123
|
/** Date and time at which the event occurred. */
|
|
59804
60124
|
occurred_at: string
|
|
60125
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60126
|
+
event_description?: string | undefined
|
|
59805
60127
|
/** ID of the affected connected account. */
|
|
59806
60128
|
connected_account_id: string
|
|
59807
60129
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59821,6 +60143,8 @@ export type Routes = {
|
|
|
59821
60143
|
created_at: string
|
|
59822
60144
|
/** Date and time at which the event occurred. */
|
|
59823
60145
|
occurred_at: string
|
|
60146
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60147
|
+
event_description?: string | undefined
|
|
59824
60148
|
/** ID of the affected connected account. */
|
|
59825
60149
|
connected_account_id: string
|
|
59826
60150
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59844,6 +60168,8 @@ export type Routes = {
|
|
|
59844
60168
|
created_at: string
|
|
59845
60169
|
/** Date and time at which the event occurred. */
|
|
59846
60170
|
occurred_at: string
|
|
60171
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60172
|
+
event_description?: string | undefined
|
|
59847
60173
|
/** ID of the affected connected account. */
|
|
59848
60174
|
connected_account_id: string
|
|
59849
60175
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59863,6 +60189,8 @@ export type Routes = {
|
|
|
59863
60189
|
created_at: string
|
|
59864
60190
|
/** Date and time at which the event occurred. */
|
|
59865
60191
|
occurred_at: string
|
|
60192
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60193
|
+
event_description?: string | undefined
|
|
59866
60194
|
/** ID of the affected connected account. */
|
|
59867
60195
|
connected_account_id: string
|
|
59868
60196
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -59900,6 +60228,8 @@ export type Routes = {
|
|
|
59900
60228
|
created_at: string
|
|
59901
60229
|
/** Date and time at which the event occurred. */
|
|
59902
60230
|
occurred_at: string
|
|
60231
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60232
|
+
event_description?: string | undefined
|
|
59903
60233
|
/** ID of the affected action attempt. */
|
|
59904
60234
|
action_attempt_id: string
|
|
59905
60235
|
/** Type of the action. */
|
|
@@ -59921,6 +60251,8 @@ export type Routes = {
|
|
|
59921
60251
|
created_at: string
|
|
59922
60252
|
/** Date and time at which the event occurred. */
|
|
59923
60253
|
occurred_at: string
|
|
60254
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60255
|
+
event_description?: string | undefined
|
|
59924
60256
|
/** ID of the affected action attempt. */
|
|
59925
60257
|
action_attempt_id: string
|
|
59926
60258
|
/** Type of the action. */
|
|
@@ -59942,6 +60274,8 @@ export type Routes = {
|
|
|
59942
60274
|
created_at: string
|
|
59943
60275
|
/** Date and time at which the event occurred. */
|
|
59944
60276
|
occurred_at: string
|
|
60277
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60278
|
+
event_description?: string | undefined
|
|
59945
60279
|
/** ID of the affected action attempt. */
|
|
59946
60280
|
action_attempt_id: string
|
|
59947
60281
|
/** Type of the action. */
|
|
@@ -59963,6 +60297,8 @@ export type Routes = {
|
|
|
59963
60297
|
created_at: string
|
|
59964
60298
|
/** Date and time at which the event occurred. */
|
|
59965
60299
|
occurred_at: string
|
|
60300
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60301
|
+
event_description?: string | undefined
|
|
59966
60302
|
/** ID of the affected action attempt. */
|
|
59967
60303
|
action_attempt_id: string
|
|
59968
60304
|
/** Type of the action. */
|
|
@@ -59984,6 +60320,8 @@ export type Routes = {
|
|
|
59984
60320
|
created_at: string
|
|
59985
60321
|
/** Date and time at which the event occurred. */
|
|
59986
60322
|
occurred_at: string
|
|
60323
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60324
|
+
event_description?: string | undefined
|
|
59987
60325
|
/** ID of the affected action attempt. */
|
|
59988
60326
|
action_attempt_id: string
|
|
59989
60327
|
/** Type of the action. */
|
|
@@ -60005,6 +60343,8 @@ export type Routes = {
|
|
|
60005
60343
|
created_at: string
|
|
60006
60344
|
/** Date and time at which the event occurred. */
|
|
60007
60345
|
occurred_at: string
|
|
60346
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60347
|
+
event_description?: string | undefined
|
|
60008
60348
|
/** ID of the affected action attempt. */
|
|
60009
60349
|
action_attempt_id: string
|
|
60010
60350
|
/** Type of the action. */
|
|
@@ -60026,6 +60366,8 @@ export type Routes = {
|
|
|
60026
60366
|
created_at: string
|
|
60027
60367
|
/** Date and time at which the event occurred. */
|
|
60028
60368
|
occurred_at: string
|
|
60369
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60370
|
+
event_description?: string | undefined
|
|
60029
60371
|
/** ID of the affected action attempt. */
|
|
60030
60372
|
action_attempt_id: string
|
|
60031
60373
|
/** Type of the action. */
|
|
@@ -60047,6 +60389,8 @@ export type Routes = {
|
|
|
60047
60389
|
created_at: string
|
|
60048
60390
|
/** Date and time at which the event occurred. */
|
|
60049
60391
|
occurred_at: string
|
|
60392
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60393
|
+
event_description?: string | undefined
|
|
60050
60394
|
/** ID of the affected action attempt. */
|
|
60051
60395
|
action_attempt_id: string
|
|
60052
60396
|
/** Type of the action. */
|
|
@@ -60068,6 +60412,8 @@ export type Routes = {
|
|
|
60068
60412
|
created_at: string
|
|
60069
60413
|
/** Date and time at which the event occurred. */
|
|
60070
60414
|
occurred_at: string
|
|
60415
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60416
|
+
event_description?: string | undefined
|
|
60071
60417
|
/** ID of the affected Connect Webview. */
|
|
60072
60418
|
connect_webview_id: string
|
|
60073
60419
|
event_type: 'connect_webview.login_succeeded'
|
|
@@ -60091,6 +60437,8 @@ export type Routes = {
|
|
|
60091
60437
|
created_at: string
|
|
60092
60438
|
/** Date and time at which the event occurred. */
|
|
60093
60439
|
occurred_at: string
|
|
60440
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60441
|
+
event_description?: string | undefined
|
|
60094
60442
|
/** ID of the affected Connect Webview. */
|
|
60095
60443
|
connect_webview_id: string
|
|
60096
60444
|
event_type: 'connect_webview.login_failed'
|
|
@@ -60104,6 +60452,8 @@ export type Routes = {
|
|
|
60104
60452
|
created_at: string
|
|
60105
60453
|
/** Date and time at which the event occurred. */
|
|
60106
60454
|
occurred_at: string
|
|
60455
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60456
|
+
event_description?: string | undefined
|
|
60107
60457
|
/** ID of the affected device. */
|
|
60108
60458
|
device_id: string
|
|
60109
60459
|
/** ID of the connected account associated with the event. */
|
|
@@ -60133,6 +60483,8 @@ export type Routes = {
|
|
|
60133
60483
|
created_at: string
|
|
60134
60484
|
/** Date and time at which the event occurred. */
|
|
60135
60485
|
occurred_at: string
|
|
60486
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60487
|
+
event_description?: string | undefined
|
|
60136
60488
|
/** ID of the affected device. */
|
|
60137
60489
|
device_id: string
|
|
60138
60490
|
/** ID of the connected account associated with the event. */
|
|
@@ -60162,6 +60514,8 @@ export type Routes = {
|
|
|
60162
60514
|
created_at: string
|
|
60163
60515
|
/** Date and time at which the event occurred. */
|
|
60164
60516
|
occurred_at: string
|
|
60517
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60518
|
+
event_description?: string | undefined
|
|
60165
60519
|
/** ID of the affected device. */
|
|
60166
60520
|
device_id: string
|
|
60167
60521
|
/** ID of the connected account associated with the event. */
|
|
@@ -60191,6 +60545,8 @@ export type Routes = {
|
|
|
60191
60545
|
created_at: string
|
|
60192
60546
|
/** Date and time at which the event occurred. */
|
|
60193
60547
|
occurred_at: string
|
|
60548
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60549
|
+
event_description?: string | undefined
|
|
60194
60550
|
/** ID of the affected device. */
|
|
60195
60551
|
device_id: string
|
|
60196
60552
|
/** ID of the connected account associated with the event. */
|
|
@@ -60220,6 +60576,8 @@ export type Routes = {
|
|
|
60220
60576
|
created_at: string
|
|
60221
60577
|
/** Date and time at which the event occurred. */
|
|
60222
60578
|
occurred_at: string
|
|
60579
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60580
|
+
event_description?: string | undefined
|
|
60223
60581
|
/** ID of the affected device. */
|
|
60224
60582
|
device_id: string
|
|
60225
60583
|
/** ID of the connected account associated with the event. */
|
|
@@ -60249,6 +60607,8 @@ export type Routes = {
|
|
|
60249
60607
|
created_at: string
|
|
60250
60608
|
/** Date and time at which the event occurred. */
|
|
60251
60609
|
occurred_at: string
|
|
60610
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60611
|
+
event_description?: string | undefined
|
|
60252
60612
|
/** ID of the affected device. */
|
|
60253
60613
|
device_id: string
|
|
60254
60614
|
/** ID of the connected account associated with the event. */
|
|
@@ -60319,6 +60679,8 @@ export type Routes = {
|
|
|
60319
60679
|
created_at: string
|
|
60320
60680
|
/** Date and time at which the event occurred. */
|
|
60321
60681
|
occurred_at: string
|
|
60682
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60683
|
+
event_description?: string | undefined
|
|
60322
60684
|
/** ID of the affected device. */
|
|
60323
60685
|
device_id: string
|
|
60324
60686
|
/** ID of the connected account associated with the event. */
|
|
@@ -60389,6 +60751,8 @@ export type Routes = {
|
|
|
60389
60751
|
created_at: string
|
|
60390
60752
|
/** Date and time at which the event occurred. */
|
|
60391
60753
|
occurred_at: string
|
|
60754
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60755
|
+
event_description?: string | undefined
|
|
60392
60756
|
/** ID of the affected device. */
|
|
60393
60757
|
device_id: string
|
|
60394
60758
|
/** ID of the connected account associated with the event. */
|
|
@@ -60418,6 +60782,8 @@ export type Routes = {
|
|
|
60418
60782
|
created_at: string
|
|
60419
60783
|
/** Date and time at which the event occurred. */
|
|
60420
60784
|
occurred_at: string
|
|
60785
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60786
|
+
event_description?: string | undefined
|
|
60421
60787
|
/** ID of the affected device. */
|
|
60422
60788
|
device_id: string
|
|
60423
60789
|
/** ID of the connected account associated with the event. */
|
|
@@ -60449,6 +60815,8 @@ export type Routes = {
|
|
|
60449
60815
|
created_at: string
|
|
60450
60816
|
/** Date and time at which the event occurred. */
|
|
60451
60817
|
occurred_at: string
|
|
60818
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60819
|
+
event_description?: string | undefined
|
|
60452
60820
|
/** ID of the affected device. */
|
|
60453
60821
|
device_id: string
|
|
60454
60822
|
/** ID of the connected account associated with the event. */
|
|
@@ -60482,6 +60850,8 @@ export type Routes = {
|
|
|
60482
60850
|
created_at: string
|
|
60483
60851
|
/** Date and time at which the event occurred. */
|
|
60484
60852
|
occurred_at: string
|
|
60853
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60854
|
+
event_description?: string | undefined
|
|
60485
60855
|
/** ID of the affected device. */
|
|
60486
60856
|
device_id: string
|
|
60487
60857
|
/** ID of the connected account associated with the event. */
|
|
@@ -60511,6 +60881,8 @@ export type Routes = {
|
|
|
60511
60881
|
created_at: string
|
|
60512
60882
|
/** Date and time at which the event occurred. */
|
|
60513
60883
|
occurred_at: string
|
|
60884
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60885
|
+
event_description?: string | undefined
|
|
60514
60886
|
/** ID of the affected device. */
|
|
60515
60887
|
device_id: string
|
|
60516
60888
|
/** ID of the connected account associated with the event. */
|
|
@@ -60542,6 +60914,8 @@ export type Routes = {
|
|
|
60542
60914
|
created_at: string
|
|
60543
60915
|
/** Date and time at which the event occurred. */
|
|
60544
60916
|
occurred_at: string
|
|
60917
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60918
|
+
event_description?: string | undefined
|
|
60545
60919
|
/** ID of the affected device. */
|
|
60546
60920
|
device_id: string
|
|
60547
60921
|
/** ID of the connected account associated with the event. */
|
|
@@ -60571,6 +60945,8 @@ export type Routes = {
|
|
|
60571
60945
|
created_at: string
|
|
60572
60946
|
/** Date and time at which the event occurred. */
|
|
60573
60947
|
occurred_at: string
|
|
60948
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60949
|
+
event_description?: string | undefined
|
|
60574
60950
|
/** ID of the affected device. */
|
|
60575
60951
|
device_id: string
|
|
60576
60952
|
/** ID of the connected account associated with the event. */
|
|
@@ -60600,6 +60976,8 @@ export type Routes = {
|
|
|
60600
60976
|
created_at: string
|
|
60601
60977
|
/** Date and time at which the event occurred. */
|
|
60602
60978
|
occurred_at: string
|
|
60979
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
60980
|
+
event_description?: string | undefined
|
|
60603
60981
|
/** ID of the affected device. */
|
|
60604
60982
|
device_id: string
|
|
60605
60983
|
/** ID of the connected account associated with the event. */
|
|
@@ -60629,6 +61007,8 @@ export type Routes = {
|
|
|
60629
61007
|
created_at: string
|
|
60630
61008
|
/** Date and time at which the event occurred. */
|
|
60631
61009
|
occurred_at: string
|
|
61010
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61011
|
+
event_description?: string | undefined
|
|
60632
61012
|
/** ID of the affected device. */
|
|
60633
61013
|
device_id: string
|
|
60634
61014
|
/** ID of the connected account associated with the event. */
|
|
@@ -60658,6 +61038,8 @@ export type Routes = {
|
|
|
60658
61038
|
created_at: string
|
|
60659
61039
|
/** Date and time at which the event occurred. */
|
|
60660
61040
|
occurred_at: string
|
|
61041
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61042
|
+
event_description?: string | undefined
|
|
60661
61043
|
/** ID of the affected device. */
|
|
60662
61044
|
device_id: string
|
|
60663
61045
|
/** ID of the connected account associated with the event. */
|
|
@@ -60723,6 +61105,8 @@ export type Routes = {
|
|
|
60723
61105
|
created_at: string
|
|
60724
61106
|
/** Date and time at which the event occurred. */
|
|
60725
61107
|
occurred_at: string
|
|
61108
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61109
|
+
event_description?: string | undefined
|
|
60726
61110
|
/** ID of the affected device. */
|
|
60727
61111
|
device_id: string
|
|
60728
61112
|
/** ID of the connected account associated with the event. */
|
|
@@ -60752,6 +61136,8 @@ export type Routes = {
|
|
|
60752
61136
|
created_at: string
|
|
60753
61137
|
/** Date and time at which the event occurred. */
|
|
60754
61138
|
occurred_at: string
|
|
61139
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61140
|
+
event_description?: string | undefined
|
|
60755
61141
|
/** ID of the affected device. */
|
|
60756
61142
|
device_id: string
|
|
60757
61143
|
/** ID of the connected account associated with the event. */
|
|
@@ -60817,6 +61203,8 @@ export type Routes = {
|
|
|
60817
61203
|
created_at: string
|
|
60818
61204
|
/** Date and time at which the event occurred. */
|
|
60819
61205
|
occurred_at: string
|
|
61206
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61207
|
+
event_description?: string | undefined
|
|
60820
61208
|
/** ID of the affected device. */
|
|
60821
61209
|
device_id: string
|
|
60822
61210
|
/** ID of the connected account associated with the event. */
|
|
@@ -60846,6 +61234,8 @@ export type Routes = {
|
|
|
60846
61234
|
created_at: string
|
|
60847
61235
|
/** Date and time at which the event occurred. */
|
|
60848
61236
|
occurred_at: string
|
|
61237
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61238
|
+
event_description?: string | undefined
|
|
60849
61239
|
/** ID of the affected device. */
|
|
60850
61240
|
device_id: string
|
|
60851
61241
|
/** ID of the connected account associated with the event. */
|
|
@@ -60875,6 +61265,8 @@ export type Routes = {
|
|
|
60875
61265
|
created_at: string
|
|
60876
61266
|
/** Date and time at which the event occurred. */
|
|
60877
61267
|
occurred_at: string
|
|
61268
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61269
|
+
event_description?: string | undefined
|
|
60878
61270
|
/** ID of the affected device. */
|
|
60879
61271
|
device_id: string
|
|
60880
61272
|
/** ID of the connected account associated with the event. */
|
|
@@ -60940,6 +61332,8 @@ export type Routes = {
|
|
|
60940
61332
|
created_at: string
|
|
60941
61333
|
/** Date and time at which the event occurred. */
|
|
60942
61334
|
occurred_at: string
|
|
61335
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61336
|
+
event_description?: string | undefined
|
|
60943
61337
|
/** ID of the affected device. */
|
|
60944
61338
|
device_id: string
|
|
60945
61339
|
/** ID of the connected account associated with the event. */
|
|
@@ -60989,6 +61383,8 @@ export type Routes = {
|
|
|
60989
61383
|
created_at: string
|
|
60990
61384
|
/** Date and time at which the event occurred. */
|
|
60991
61385
|
occurred_at: string
|
|
61386
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61387
|
+
event_description?: string | undefined
|
|
60992
61388
|
/** ID of the affected device. */
|
|
60993
61389
|
device_id: string
|
|
60994
61390
|
/** ID of the connected account associated with the event. */
|
|
@@ -61038,6 +61434,8 @@ export type Routes = {
|
|
|
61038
61434
|
created_at: string
|
|
61039
61435
|
/** Date and time at which the event occurred. */
|
|
61040
61436
|
occurred_at: string
|
|
61437
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61438
|
+
event_description?: string | undefined
|
|
61041
61439
|
/** ID of the affected device. */
|
|
61042
61440
|
device_id?: string | undefined
|
|
61043
61441
|
/** ID of the connected account associated with the event. */
|
|
@@ -61111,6 +61509,8 @@ export type Routes = {
|
|
|
61111
61509
|
created_at: string
|
|
61112
61510
|
/** Date and time at which the event occurred. */
|
|
61113
61511
|
occurred_at: string
|
|
61512
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61513
|
+
event_description?: string | undefined
|
|
61114
61514
|
/** ID of the affected device. */
|
|
61115
61515
|
device_id?: string | undefined
|
|
61116
61516
|
/** ID of the connected account associated with the event. */
|
|
@@ -61166,6 +61566,8 @@ export type Routes = {
|
|
|
61166
61566
|
created_at: string
|
|
61167
61567
|
/** Date and time at which the event occurred. */
|
|
61168
61568
|
occurred_at: string
|
|
61569
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61570
|
+
event_description?: string | undefined
|
|
61169
61571
|
/** ID of the affected device. */
|
|
61170
61572
|
device_id: string
|
|
61171
61573
|
/** ID of the connected account associated with the event. */
|
|
@@ -61201,6 +61603,8 @@ export type Routes = {
|
|
|
61201
61603
|
created_at: string
|
|
61202
61604
|
/** Date and time at which the event occurred. */
|
|
61203
61605
|
occurred_at: string
|
|
61606
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61607
|
+
event_description?: string | undefined
|
|
61204
61608
|
/** ID of the affected device. */
|
|
61205
61609
|
device_id: string
|
|
61206
61610
|
/** ID of the connected account associated with the event. */
|
|
@@ -61248,6 +61652,8 @@ export type Routes = {
|
|
|
61248
61652
|
created_at: string
|
|
61249
61653
|
/** Date and time at which the event occurred. */
|
|
61250
61654
|
occurred_at: string
|
|
61655
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61656
|
+
event_description?: string | undefined
|
|
61251
61657
|
/** ID of the affected device. */
|
|
61252
61658
|
device_id: string
|
|
61253
61659
|
/** ID of the connected account associated with the event. */
|
|
@@ -61289,6 +61695,8 @@ export type Routes = {
|
|
|
61289
61695
|
created_at: string
|
|
61290
61696
|
/** Date and time at which the event occurred. */
|
|
61291
61697
|
occurred_at: string
|
|
61698
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61699
|
+
event_description?: string | undefined
|
|
61292
61700
|
/** ID of the affected device. */
|
|
61293
61701
|
device_id: string
|
|
61294
61702
|
/** ID of the connected account associated with the event. */
|
|
@@ -61330,6 +61738,8 @@ export type Routes = {
|
|
|
61330
61738
|
created_at: string
|
|
61331
61739
|
/** Date and time at which the event occurred. */
|
|
61332
61740
|
occurred_at: string
|
|
61741
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61742
|
+
event_description?: string | undefined
|
|
61333
61743
|
/** ID of the affected device. */
|
|
61334
61744
|
device_id: string
|
|
61335
61745
|
/** ID of the connected account associated with the event. */
|
|
@@ -61367,6 +61777,8 @@ export type Routes = {
|
|
|
61367
61777
|
created_at: string
|
|
61368
61778
|
/** Date and time at which the event occurred. */
|
|
61369
61779
|
occurred_at: string
|
|
61780
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61781
|
+
event_description?: string | undefined
|
|
61370
61782
|
/** ID of the affected device. */
|
|
61371
61783
|
device_id: string
|
|
61372
61784
|
/** ID of the connected account associated with the event. */
|
|
@@ -61400,6 +61812,8 @@ export type Routes = {
|
|
|
61400
61812
|
created_at: string
|
|
61401
61813
|
/** Date and time at which the event occurred. */
|
|
61402
61814
|
occurred_at: string
|
|
61815
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61816
|
+
event_description?: string | undefined
|
|
61403
61817
|
/** ID of the affected device. */
|
|
61404
61818
|
device_id: string
|
|
61405
61819
|
/** ID of the connected account associated with the event. */
|
|
@@ -61431,6 +61845,8 @@ export type Routes = {
|
|
|
61431
61845
|
created_at: string
|
|
61432
61846
|
/** Date and time at which the event occurred. */
|
|
61433
61847
|
occurred_at: string
|
|
61848
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61849
|
+
event_description?: string | undefined
|
|
61434
61850
|
/** ID of the affected device. */
|
|
61435
61851
|
device_id: string
|
|
61436
61852
|
/** ID of the connected account associated with the event. */
|
|
@@ -61470,6 +61886,8 @@ export type Routes = {
|
|
|
61470
61886
|
created_at: string
|
|
61471
61887
|
/** Date and time at which the event occurred. */
|
|
61472
61888
|
occurred_at: string
|
|
61889
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61890
|
+
event_description?: string | undefined
|
|
61473
61891
|
/** ID of the affected device. */
|
|
61474
61892
|
device_id: string
|
|
61475
61893
|
/** ID of the connected account associated with the event. */
|
|
@@ -61503,6 +61921,8 @@ export type Routes = {
|
|
|
61503
61921
|
created_at: string
|
|
61504
61922
|
/** Date and time at which the event occurred. */
|
|
61505
61923
|
occurred_at: string
|
|
61924
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61925
|
+
event_description?: string | undefined
|
|
61506
61926
|
/** ID of the affected enrollment automation. */
|
|
61507
61927
|
enrollment_automation_id: string
|
|
61508
61928
|
event_type: 'enrollment_automation.deleted'
|
|
@@ -61516,6 +61936,8 @@ export type Routes = {
|
|
|
61516
61936
|
created_at: string
|
|
61517
61937
|
/** Date and time at which the event occurred. */
|
|
61518
61938
|
occurred_at: string
|
|
61939
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61940
|
+
event_description?: string | undefined
|
|
61519
61941
|
/** ID of the affected phone device. */
|
|
61520
61942
|
device_id: string
|
|
61521
61943
|
/** Custom metadata of the device; present when device_id is provided. */
|
|
@@ -61535,6 +61957,8 @@ export type Routes = {
|
|
|
61535
61957
|
created_at: string
|
|
61536
61958
|
/** Date and time at which the event occurred. */
|
|
61537
61959
|
occurred_at: string
|
|
61960
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61961
|
+
event_description?: string | undefined
|
|
61538
61962
|
/** ID of the affected space. */
|
|
61539
61963
|
space_id: string
|
|
61540
61964
|
/** Type of the event. */
|
|
@@ -61555,6 +61979,8 @@ export type Routes = {
|
|
|
61555
61979
|
created_at: string
|
|
61556
61980
|
/** Date and time at which the event occurred. */
|
|
61557
61981
|
occurred_at: string
|
|
61982
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
61983
|
+
event_description?: string | undefined
|
|
61558
61984
|
/** ID of the affected space. */
|
|
61559
61985
|
space_id: string
|
|
61560
61986
|
/** Type of the event. */
|
|
@@ -61575,6 +62001,8 @@ export type Routes = {
|
|
|
61575
62001
|
created_at: string
|
|
61576
62002
|
/** Date and time at which the event occurred. */
|
|
61577
62003
|
occurred_at: string
|
|
62004
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
62005
|
+
event_description?: string | undefined
|
|
61578
62006
|
/** ID of the affected space. */
|
|
61579
62007
|
space_id: string
|
|
61580
62008
|
/** Type of the event. */
|
|
@@ -93366,6 +93794,8 @@ export type Routes = {
|
|
|
93366
93794
|
created_at: string
|
|
93367
93795
|
/** Date and time at which the event occurred. */
|
|
93368
93796
|
occurred_at: string
|
|
93797
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
93798
|
+
event_description?: string | undefined
|
|
93369
93799
|
/** ID of the affected access code. */
|
|
93370
93800
|
access_code_id: string
|
|
93371
93801
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93395,6 +93825,8 @@ export type Routes = {
|
|
|
93395
93825
|
created_at: string
|
|
93396
93826
|
/** Date and time at which the event occurred. */
|
|
93397
93827
|
occurred_at: string
|
|
93828
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
93829
|
+
event_description?: string | undefined
|
|
93398
93830
|
/** ID of the affected access code. */
|
|
93399
93831
|
access_code_id: string
|
|
93400
93832
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93437,6 +93869,8 @@ export type Routes = {
|
|
|
93437
93869
|
created_at: string
|
|
93438
93870
|
/** Date and time at which the event occurred. */
|
|
93439
93871
|
occurred_at: string
|
|
93872
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
93873
|
+
event_description?: string | undefined
|
|
93440
93874
|
/** ID of the affected access code. */
|
|
93441
93875
|
access_code_id: string
|
|
93442
93876
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93478,6 +93912,8 @@ export type Routes = {
|
|
|
93478
93912
|
created_at: string
|
|
93479
93913
|
/** Date and time at which the event occurred. */
|
|
93480
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
|
|
93481
93917
|
/** ID of the affected access code. */
|
|
93482
93918
|
access_code_id: string
|
|
93483
93919
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93519,6 +93955,8 @@ export type Routes = {
|
|
|
93519
93955
|
created_at: string
|
|
93520
93956
|
/** Date and time at which the event occurred. */
|
|
93521
93957
|
occurred_at: string
|
|
93958
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
93959
|
+
event_description?: string | undefined
|
|
93522
93960
|
/** ID of the affected access code. */
|
|
93523
93961
|
access_code_id: string
|
|
93524
93962
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93564,6 +94002,8 @@ export type Routes = {
|
|
|
93564
94002
|
created_at: string
|
|
93565
94003
|
/** Date and time at which the event occurred. */
|
|
93566
94004
|
occurred_at: string
|
|
94005
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94006
|
+
event_description?: string | undefined
|
|
93567
94007
|
/** ID of the affected access code. */
|
|
93568
94008
|
access_code_id: string
|
|
93569
94009
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93616,6 +94056,8 @@ export type Routes = {
|
|
|
93616
94056
|
created_at: string
|
|
93617
94057
|
/** Date and time at which the event occurred. */
|
|
93618
94058
|
occurred_at: string
|
|
94059
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94060
|
+
event_description?: string | undefined
|
|
93619
94061
|
/** ID of the affected access code. */
|
|
93620
94062
|
access_code_id: string
|
|
93621
94063
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93647,6 +94089,8 @@ export type Routes = {
|
|
|
93647
94089
|
created_at: string
|
|
93648
94090
|
/** Date and time at which the event occurred. */
|
|
93649
94091
|
occurred_at: string
|
|
94092
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94093
|
+
event_description?: string | undefined
|
|
93650
94094
|
/** ID of the affected access code. */
|
|
93651
94095
|
access_code_id: string
|
|
93652
94096
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93678,6 +94122,8 @@ export type Routes = {
|
|
|
93678
94122
|
created_at: string
|
|
93679
94123
|
/** Date and time at which the event occurred. */
|
|
93680
94124
|
occurred_at: string
|
|
94125
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94126
|
+
event_description?: string | undefined
|
|
93681
94127
|
/** ID of the affected access code. */
|
|
93682
94128
|
access_code_id: string
|
|
93683
94129
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93707,6 +94153,8 @@ export type Routes = {
|
|
|
93707
94153
|
created_at: string
|
|
93708
94154
|
/** Date and time at which the event occurred. */
|
|
93709
94155
|
occurred_at: string
|
|
94156
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94157
|
+
event_description?: string | undefined
|
|
93710
94158
|
/** ID of the affected access code. */
|
|
93711
94159
|
access_code_id: string
|
|
93712
94160
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93790,6 +94238,8 @@ export type Routes = {
|
|
|
93790
94238
|
created_at: string
|
|
93791
94239
|
/** Date and time at which the event occurred. */
|
|
93792
94240
|
occurred_at: string
|
|
94241
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94242
|
+
event_description?: string | undefined
|
|
93793
94243
|
/** ID of the affected access code. */
|
|
93794
94244
|
access_code_id: string
|
|
93795
94245
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93873,6 +94323,8 @@ export type Routes = {
|
|
|
93873
94323
|
created_at: string
|
|
93874
94324
|
/** Date and time at which the event occurred. */
|
|
93875
94325
|
occurred_at: string
|
|
94326
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94327
|
+
event_description?: string | undefined
|
|
93876
94328
|
/** ID of the affected access code. */
|
|
93877
94329
|
access_code_id: string
|
|
93878
94330
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93904,6 +94356,8 @@ export type Routes = {
|
|
|
93904
94356
|
created_at: string
|
|
93905
94357
|
/** Date and time at which the event occurred. */
|
|
93906
94358
|
occurred_at: string
|
|
94359
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94360
|
+
event_description?: string | undefined
|
|
93907
94361
|
/** ID of the affected access code. */
|
|
93908
94362
|
access_code_id: string
|
|
93909
94363
|
/** ID of the device associated with the affected access code. */
|
|
@@ -93987,6 +94441,8 @@ export type Routes = {
|
|
|
93987
94441
|
created_at: string
|
|
93988
94442
|
/** Date and time at which the event occurred. */
|
|
93989
94443
|
occurred_at: string
|
|
94444
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94445
|
+
event_description?: string | undefined
|
|
93990
94446
|
/** ID of the affected access code. */
|
|
93991
94447
|
access_code_id: string
|
|
93992
94448
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94070,6 +94526,8 @@ export type Routes = {
|
|
|
94070
94526
|
created_at: string
|
|
94071
94527
|
/** Date and time at which the event occurred. */
|
|
94072
94528
|
occurred_at: string
|
|
94529
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94530
|
+
event_description?: string | undefined
|
|
94073
94531
|
/** ID of the affected access code. */
|
|
94074
94532
|
access_code_id: string
|
|
94075
94533
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94099,6 +94557,8 @@ export type Routes = {
|
|
|
94099
94557
|
created_at: string
|
|
94100
94558
|
/** Date and time at which the event occurred. */
|
|
94101
94559
|
occurred_at: string
|
|
94560
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94561
|
+
event_description?: string | undefined
|
|
94102
94562
|
/** ID of the affected access code. */
|
|
94103
94563
|
access_code_id: string
|
|
94104
94564
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94128,6 +94588,8 @@ export type Routes = {
|
|
|
94128
94588
|
created_at: string
|
|
94129
94589
|
/** Date and time at which the event occurred. */
|
|
94130
94590
|
occurred_at: string
|
|
94591
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94592
|
+
event_description?: string | undefined
|
|
94131
94593
|
/** ID of the affected access code. */
|
|
94132
94594
|
access_code_id: string
|
|
94133
94595
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94159,6 +94621,8 @@ export type Routes = {
|
|
|
94159
94621
|
created_at: string
|
|
94160
94622
|
/** Date and time at which the event occurred. */
|
|
94161
94623
|
occurred_at: string
|
|
94624
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94625
|
+
event_description?: string | undefined
|
|
94162
94626
|
/** ID of the affected access code. */
|
|
94163
94627
|
access_code_id: string
|
|
94164
94628
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94188,6 +94652,8 @@ export type Routes = {
|
|
|
94188
94652
|
created_at: string
|
|
94189
94653
|
/** Date and time at which the event occurred. */
|
|
94190
94654
|
occurred_at: string
|
|
94655
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94656
|
+
event_description?: string | undefined
|
|
94191
94657
|
/** ID of the affected access code. */
|
|
94192
94658
|
access_code_id: string
|
|
94193
94659
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94271,6 +94737,8 @@ export type Routes = {
|
|
|
94271
94737
|
created_at: string
|
|
94272
94738
|
/** Date and time at which the event occurred. */
|
|
94273
94739
|
occurred_at: string
|
|
94740
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94741
|
+
event_description?: string | undefined
|
|
94274
94742
|
/** ID of the affected access code. */
|
|
94275
94743
|
access_code_id: string
|
|
94276
94744
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94300,6 +94768,8 @@ export type Routes = {
|
|
|
94300
94768
|
created_at: string
|
|
94301
94769
|
/** Date and time at which the event occurred. */
|
|
94302
94770
|
occurred_at: string
|
|
94771
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94772
|
+
event_description?: string | undefined
|
|
94303
94773
|
/** ID of the affected access code. */
|
|
94304
94774
|
access_code_id: string
|
|
94305
94775
|
/** ID of the device associated with the affected access code. */
|
|
@@ -94329,6 +94799,8 @@ export type Routes = {
|
|
|
94329
94799
|
created_at: string
|
|
94330
94800
|
/** Date and time at which the event occurred. */
|
|
94331
94801
|
occurred_at: string
|
|
94802
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94803
|
+
event_description?: string | undefined
|
|
94332
94804
|
/** ID of the affected Access Grant. */
|
|
94333
94805
|
access_grant_id: string
|
|
94334
94806
|
event_type: 'access_grant.created'
|
|
@@ -94342,6 +94814,8 @@ export type Routes = {
|
|
|
94342
94814
|
created_at: string
|
|
94343
94815
|
/** Date and time at which the event occurred. */
|
|
94344
94816
|
occurred_at: string
|
|
94817
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94818
|
+
event_description?: string | undefined
|
|
94345
94819
|
/** ID of the affected Access Grant. */
|
|
94346
94820
|
access_grant_id: string
|
|
94347
94821
|
event_type: 'access_grant.deleted'
|
|
@@ -94355,6 +94829,8 @@ export type Routes = {
|
|
|
94355
94829
|
created_at: string
|
|
94356
94830
|
/** Date and time at which the event occurred. */
|
|
94357
94831
|
occurred_at: string
|
|
94832
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94833
|
+
event_description?: string | undefined
|
|
94358
94834
|
/** ID of the affected Access Grant. */
|
|
94359
94835
|
access_grant_id: string
|
|
94360
94836
|
event_type: 'access_grant.access_granted_to_all_doors'
|
|
@@ -94368,6 +94844,8 @@ export type Routes = {
|
|
|
94368
94844
|
created_at: string
|
|
94369
94845
|
/** Date and time at which the event occurred. */
|
|
94370
94846
|
occurred_at: string
|
|
94847
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94848
|
+
event_description?: string | undefined
|
|
94371
94849
|
/** ID of the affected Access Grant. */
|
|
94372
94850
|
access_grant_id: string
|
|
94373
94851
|
event_type: 'access_grant.access_granted_to_door'
|
|
@@ -94383,6 +94861,8 @@ export type Routes = {
|
|
|
94383
94861
|
created_at: string
|
|
94384
94862
|
/** Date and time at which the event occurred. */
|
|
94385
94863
|
occurred_at: string
|
|
94864
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94865
|
+
event_description?: string | undefined
|
|
94386
94866
|
/** ID of the affected Access Grant. */
|
|
94387
94867
|
access_grant_id: string
|
|
94388
94868
|
event_type: 'access_grant.access_to_door_lost'
|
|
@@ -94398,6 +94878,8 @@ export type Routes = {
|
|
|
94398
94878
|
created_at: string
|
|
94399
94879
|
/** Date and time at which the event occurred. */
|
|
94400
94880
|
occurred_at: string
|
|
94881
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94882
|
+
event_description?: string | undefined
|
|
94401
94883
|
/** ID of the affected Access Grant. */
|
|
94402
94884
|
access_grant_id: string
|
|
94403
94885
|
event_type: 'access_grant.access_times_changed'
|
|
@@ -94417,6 +94899,8 @@ export type Routes = {
|
|
|
94417
94899
|
created_at: string
|
|
94418
94900
|
/** Date and time at which the event occurred. */
|
|
94419
94901
|
occurred_at: string
|
|
94902
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94903
|
+
event_description?: string | undefined
|
|
94420
94904
|
/** ID of the affected Access Grant. */
|
|
94421
94905
|
access_grant_id: string
|
|
94422
94906
|
event_type: 'access_grant.could_not_create_requested_access_methods'
|
|
@@ -94434,6 +94918,8 @@ export type Routes = {
|
|
|
94434
94918
|
created_at: string
|
|
94435
94919
|
/** Date and time at which the event occurred. */
|
|
94436
94920
|
occurred_at: string
|
|
94921
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94922
|
+
event_description?: string | undefined
|
|
94437
94923
|
/** ID of the affected access method. */
|
|
94438
94924
|
access_method_id: string
|
|
94439
94925
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -94455,6 +94941,8 @@ export type Routes = {
|
|
|
94455
94941
|
created_at: string
|
|
94456
94942
|
/** Date and time at which the event occurred. */
|
|
94457
94943
|
occurred_at: string
|
|
94944
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94945
|
+
event_description?: string | undefined
|
|
94458
94946
|
/** ID of the affected access method. */
|
|
94459
94947
|
access_method_id: string
|
|
94460
94948
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -94472,6 +94960,8 @@ export type Routes = {
|
|
|
94472
94960
|
created_at: string
|
|
94473
94961
|
/** Date and time at which the event occurred. */
|
|
94474
94962
|
occurred_at: string
|
|
94963
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94964
|
+
event_description?: string | undefined
|
|
94475
94965
|
/** ID of the affected access method. */
|
|
94476
94966
|
access_method_id: string
|
|
94477
94967
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -94489,6 +94979,8 @@ export type Routes = {
|
|
|
94489
94979
|
created_at: string
|
|
94490
94980
|
/** Date and time at which the event occurred. */
|
|
94491
94981
|
occurred_at: string
|
|
94982
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
94983
|
+
event_description?: string | undefined
|
|
94492
94984
|
/** ID of the affected access method. */
|
|
94493
94985
|
access_method_id: string
|
|
94494
94986
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -94506,6 +94998,8 @@ export type Routes = {
|
|
|
94506
94998
|
created_at: string
|
|
94507
94999
|
/** Date and time at which the event occurred. */
|
|
94508
95000
|
occurred_at: string
|
|
95001
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95002
|
+
event_description?: string | undefined
|
|
94509
95003
|
/** ID of the affected access method. */
|
|
94510
95004
|
access_method_id: string
|
|
94511
95005
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -94527,6 +95021,8 @@ export type Routes = {
|
|
|
94527
95021
|
created_at: string
|
|
94528
95022
|
/** Date and time at which the event occurred. */
|
|
94529
95023
|
occurred_at: string
|
|
95024
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95025
|
+
event_description?: string | undefined
|
|
94530
95026
|
/** ID of the affected access method. */
|
|
94531
95027
|
access_method_id: string
|
|
94532
95028
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -94544,6 +95040,8 @@ export type Routes = {
|
|
|
94544
95040
|
created_at: string
|
|
94545
95041
|
/** Date and time at which the event occurred. */
|
|
94546
95042
|
occurred_at: string
|
|
95043
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95044
|
+
event_description?: string | undefined
|
|
94547
95045
|
/** ID of the connected account. */
|
|
94548
95046
|
connected_account_id?: string | undefined
|
|
94549
95047
|
/** ID of the access system. */
|
|
@@ -94559,6 +95057,8 @@ export type Routes = {
|
|
|
94559
95057
|
created_at: string
|
|
94560
95058
|
/** Date and time at which the event occurred. */
|
|
94561
95059
|
occurred_at: string
|
|
95060
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95061
|
+
event_description?: string | undefined
|
|
94562
95062
|
/** ID of the connected account. */
|
|
94563
95063
|
connected_account_id?: string | undefined
|
|
94564
95064
|
/** ID of the access system. */
|
|
@@ -94574,6 +95074,8 @@ export type Routes = {
|
|
|
94574
95074
|
created_at: string
|
|
94575
95075
|
/** Date and time at which the event occurred. */
|
|
94576
95076
|
occurred_at: string
|
|
95077
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95078
|
+
event_description?: string | undefined
|
|
94577
95079
|
/** ID of the connected account. */
|
|
94578
95080
|
connected_account_id?: string | undefined
|
|
94579
95081
|
/** ID of the access system. */
|
|
@@ -94625,6 +95127,8 @@ export type Routes = {
|
|
|
94625
95127
|
created_at: string
|
|
94626
95128
|
/** Date and time at which the event occurred. */
|
|
94627
95129
|
occurred_at: string
|
|
95130
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95131
|
+
event_description?: string | undefined
|
|
94628
95132
|
/** ID of the connected account. */
|
|
94629
95133
|
connected_account_id?: string | undefined
|
|
94630
95134
|
/** ID of the access system. */
|
|
@@ -94642,6 +95146,8 @@ export type Routes = {
|
|
|
94642
95146
|
created_at: string
|
|
94643
95147
|
/** Date and time at which the event occurred. */
|
|
94644
95148
|
occurred_at: string
|
|
95149
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95150
|
+
event_description?: string | undefined
|
|
94645
95151
|
/** ID of the connected account. */
|
|
94646
95152
|
connected_account_id?: string | undefined
|
|
94647
95153
|
/** ID of the access system. */
|
|
@@ -94659,6 +95165,8 @@ export type Routes = {
|
|
|
94659
95165
|
created_at: string
|
|
94660
95166
|
/** Date and time at which the event occurred. */
|
|
94661
95167
|
occurred_at: string
|
|
95168
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95169
|
+
event_description?: string | undefined
|
|
94662
95170
|
/** ID of the connected account. */
|
|
94663
95171
|
connected_account_id?: string | undefined
|
|
94664
95172
|
/** ID of the access system. */
|
|
@@ -94676,6 +95184,8 @@ export type Routes = {
|
|
|
94676
95184
|
created_at: string
|
|
94677
95185
|
/** Date and time at which the event occurred. */
|
|
94678
95186
|
occurred_at: string
|
|
95187
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95188
|
+
event_description?: string | undefined
|
|
94679
95189
|
/** ID of the connected account. */
|
|
94680
95190
|
connected_account_id?: string | undefined
|
|
94681
95191
|
/** ID of the access system. */
|
|
@@ -94693,6 +95203,8 @@ export type Routes = {
|
|
|
94693
95203
|
created_at: string
|
|
94694
95204
|
/** Date and time at which the event occurred. */
|
|
94695
95205
|
occurred_at: string
|
|
95206
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95207
|
+
event_description?: string | undefined
|
|
94696
95208
|
/** ID of the connected account. */
|
|
94697
95209
|
connected_account_id?: string | undefined
|
|
94698
95210
|
/** ID of the access system. */
|
|
@@ -94710,6 +95222,8 @@ export type Routes = {
|
|
|
94710
95222
|
created_at: string
|
|
94711
95223
|
/** Date and time at which the event occurred. */
|
|
94712
95224
|
occurred_at: string
|
|
95225
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95226
|
+
event_description?: string | undefined
|
|
94713
95227
|
/** ID of the connected account. */
|
|
94714
95228
|
connected_account_id?: string | undefined
|
|
94715
95229
|
/** ID of the access system. */
|
|
@@ -94727,6 +95241,8 @@ export type Routes = {
|
|
|
94727
95241
|
created_at: string
|
|
94728
95242
|
/** Date and time at which the event occurred. */
|
|
94729
95243
|
occurred_at: string
|
|
95244
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95245
|
+
event_description?: string | undefined
|
|
94730
95246
|
/** ID of the connected account. */
|
|
94731
95247
|
connected_account_id?: string | undefined
|
|
94732
95248
|
/** ID of the access system. */
|
|
@@ -94744,6 +95260,8 @@ export type Routes = {
|
|
|
94744
95260
|
created_at: string
|
|
94745
95261
|
/** Date and time at which the event occurred. */
|
|
94746
95262
|
occurred_at: string
|
|
95263
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95264
|
+
event_description?: string | undefined
|
|
94747
95265
|
/** ID of the connected account. */
|
|
94748
95266
|
connected_account_id?: string | undefined
|
|
94749
95267
|
/** ID of the access system. */
|
|
@@ -94761,6 +95279,8 @@ export type Routes = {
|
|
|
94761
95279
|
created_at: string
|
|
94762
95280
|
/** Date and time at which the event occurred. */
|
|
94763
95281
|
occurred_at: string
|
|
95282
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95283
|
+
event_description?: string | undefined
|
|
94764
95284
|
/** ID of the connected account. */
|
|
94765
95285
|
connected_account_id?: string | undefined
|
|
94766
95286
|
/** ID of the access system. */
|
|
@@ -94778,6 +95298,8 @@ export type Routes = {
|
|
|
94778
95298
|
created_at: string
|
|
94779
95299
|
/** Date and time at which the event occurred. */
|
|
94780
95300
|
occurred_at: string
|
|
95301
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95302
|
+
event_description?: string | undefined
|
|
94781
95303
|
/** ID of the connected account. */
|
|
94782
95304
|
connected_account_id?: string | undefined
|
|
94783
95305
|
/** ID of the access system. */
|
|
@@ -94795,6 +95317,8 @@ export type Routes = {
|
|
|
94795
95317
|
created_at: string
|
|
94796
95318
|
/** Date and time at which the event occurred. */
|
|
94797
95319
|
occurred_at: string
|
|
95320
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95321
|
+
event_description?: string | undefined
|
|
94798
95322
|
/** ID of the connected account. */
|
|
94799
95323
|
connected_account_id?: string | undefined
|
|
94800
95324
|
/** ID of the access system. */
|
|
@@ -94812,6 +95336,8 @@ export type Routes = {
|
|
|
94812
95336
|
created_at: string
|
|
94813
95337
|
/** Date and time at which the event occurred. */
|
|
94814
95338
|
occurred_at: string
|
|
95339
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95340
|
+
event_description?: string | undefined
|
|
94815
95341
|
/** ID of the affected client session. */
|
|
94816
95342
|
client_session_id: string
|
|
94817
95343
|
event_type: 'client_session.deleted'
|
|
@@ -94825,6 +95351,8 @@ export type Routes = {
|
|
|
94825
95351
|
created_at: string
|
|
94826
95352
|
/** Date and time at which the event occurred. */
|
|
94827
95353
|
occurred_at: string
|
|
95354
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95355
|
+
event_description?: string | undefined
|
|
94828
95356
|
/** ID of the affected connected account. */
|
|
94829
95357
|
connected_account_id: string
|
|
94830
95358
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94848,6 +95376,8 @@ export type Routes = {
|
|
|
94848
95376
|
created_at: string
|
|
94849
95377
|
/** Date and time at which the event occurred. */
|
|
94850
95378
|
occurred_at: string
|
|
95379
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95380
|
+
event_description?: string | undefined
|
|
94851
95381
|
/** ID of the affected connected account. */
|
|
94852
95382
|
connected_account_id: string
|
|
94853
95383
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94869,6 +95399,8 @@ export type Routes = {
|
|
|
94869
95399
|
created_at: string
|
|
94870
95400
|
/** Date and time at which the event occurred. */
|
|
94871
95401
|
occurred_at: string
|
|
95402
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95403
|
+
event_description?: string | undefined
|
|
94872
95404
|
/** ID of the affected connected account. */
|
|
94873
95405
|
connected_account_id: string
|
|
94874
95406
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94890,6 +95422,8 @@ export type Routes = {
|
|
|
94890
95422
|
created_at: string
|
|
94891
95423
|
/** Date and time at which the event occurred. */
|
|
94892
95424
|
occurred_at: string
|
|
95425
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95426
|
+
event_description?: string | undefined
|
|
94893
95427
|
/** ID of the affected connected account. */
|
|
94894
95428
|
connected_account_id: string
|
|
94895
95429
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94927,6 +95461,8 @@ export type Routes = {
|
|
|
94927
95461
|
created_at: string
|
|
94928
95462
|
/** Date and time at which the event occurred. */
|
|
94929
95463
|
occurred_at: string
|
|
95464
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95465
|
+
event_description?: string | undefined
|
|
94930
95466
|
/** ID of the affected connected account. */
|
|
94931
95467
|
connected_account_id: string
|
|
94932
95468
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94946,6 +95482,8 @@ export type Routes = {
|
|
|
94946
95482
|
created_at: string
|
|
94947
95483
|
/** Date and time at which the event occurred. */
|
|
94948
95484
|
occurred_at: string
|
|
95485
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95486
|
+
event_description?: string | undefined
|
|
94949
95487
|
/** ID of the affected connected account. */
|
|
94950
95488
|
connected_account_id: string
|
|
94951
95489
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94969,6 +95507,8 @@ export type Routes = {
|
|
|
94969
95507
|
created_at: string
|
|
94970
95508
|
/** Date and time at which the event occurred. */
|
|
94971
95509
|
occurred_at: string
|
|
95510
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95511
|
+
event_description?: string | undefined
|
|
94972
95512
|
/** ID of the affected connected account. */
|
|
94973
95513
|
connected_account_id: string
|
|
94974
95514
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -94988,6 +95528,8 @@ export type Routes = {
|
|
|
94988
95528
|
created_at: string
|
|
94989
95529
|
/** Date and time at which the event occurred. */
|
|
94990
95530
|
occurred_at: string
|
|
95531
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95532
|
+
event_description?: string | undefined
|
|
94991
95533
|
/** ID of the affected connected account. */
|
|
94992
95534
|
connected_account_id: string
|
|
94993
95535
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -95025,6 +95567,8 @@ export type Routes = {
|
|
|
95025
95567
|
created_at: string
|
|
95026
95568
|
/** Date and time at which the event occurred. */
|
|
95027
95569
|
occurred_at: string
|
|
95570
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95571
|
+
event_description?: string | undefined
|
|
95028
95572
|
/** ID of the affected action attempt. */
|
|
95029
95573
|
action_attempt_id: string
|
|
95030
95574
|
/** Type of the action. */
|
|
@@ -95046,6 +95590,8 @@ export type Routes = {
|
|
|
95046
95590
|
created_at: string
|
|
95047
95591
|
/** Date and time at which the event occurred. */
|
|
95048
95592
|
occurred_at: string
|
|
95593
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95594
|
+
event_description?: string | undefined
|
|
95049
95595
|
/** ID of the affected action attempt. */
|
|
95050
95596
|
action_attempt_id: string
|
|
95051
95597
|
/** Type of the action. */
|
|
@@ -95067,6 +95613,8 @@ export type Routes = {
|
|
|
95067
95613
|
created_at: string
|
|
95068
95614
|
/** Date and time at which the event occurred. */
|
|
95069
95615
|
occurred_at: string
|
|
95616
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95617
|
+
event_description?: string | undefined
|
|
95070
95618
|
/** ID of the affected action attempt. */
|
|
95071
95619
|
action_attempt_id: string
|
|
95072
95620
|
/** Type of the action. */
|
|
@@ -95088,6 +95636,8 @@ export type Routes = {
|
|
|
95088
95636
|
created_at: string
|
|
95089
95637
|
/** Date and time at which the event occurred. */
|
|
95090
95638
|
occurred_at: string
|
|
95639
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95640
|
+
event_description?: string | undefined
|
|
95091
95641
|
/** ID of the affected action attempt. */
|
|
95092
95642
|
action_attempt_id: string
|
|
95093
95643
|
/** Type of the action. */
|
|
@@ -95109,6 +95659,8 @@ export type Routes = {
|
|
|
95109
95659
|
created_at: string
|
|
95110
95660
|
/** Date and time at which the event occurred. */
|
|
95111
95661
|
occurred_at: string
|
|
95662
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95663
|
+
event_description?: string | undefined
|
|
95112
95664
|
/** ID of the affected action attempt. */
|
|
95113
95665
|
action_attempt_id: string
|
|
95114
95666
|
/** Type of the action. */
|
|
@@ -95130,6 +95682,8 @@ export type Routes = {
|
|
|
95130
95682
|
created_at: string
|
|
95131
95683
|
/** Date and time at which the event occurred. */
|
|
95132
95684
|
occurred_at: string
|
|
95685
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95686
|
+
event_description?: string | undefined
|
|
95133
95687
|
/** ID of the affected action attempt. */
|
|
95134
95688
|
action_attempt_id: string
|
|
95135
95689
|
/** Type of the action. */
|
|
@@ -95151,6 +95705,8 @@ export type Routes = {
|
|
|
95151
95705
|
created_at: string
|
|
95152
95706
|
/** Date and time at which the event occurred. */
|
|
95153
95707
|
occurred_at: string
|
|
95708
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95709
|
+
event_description?: string | undefined
|
|
95154
95710
|
/** ID of the affected action attempt. */
|
|
95155
95711
|
action_attempt_id: string
|
|
95156
95712
|
/** Type of the action. */
|
|
@@ -95172,6 +95728,8 @@ export type Routes = {
|
|
|
95172
95728
|
created_at: string
|
|
95173
95729
|
/** Date and time at which the event occurred. */
|
|
95174
95730
|
occurred_at: string
|
|
95731
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95732
|
+
event_description?: string | undefined
|
|
95175
95733
|
/** ID of the affected action attempt. */
|
|
95176
95734
|
action_attempt_id: string
|
|
95177
95735
|
/** Type of the action. */
|
|
@@ -95193,6 +95751,8 @@ export type Routes = {
|
|
|
95193
95751
|
created_at: string
|
|
95194
95752
|
/** Date and time at which the event occurred. */
|
|
95195
95753
|
occurred_at: string
|
|
95754
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95755
|
+
event_description?: string | undefined
|
|
95196
95756
|
/** ID of the affected Connect Webview. */
|
|
95197
95757
|
connect_webview_id: string
|
|
95198
95758
|
event_type: 'connect_webview.login_succeeded'
|
|
@@ -95216,6 +95776,8 @@ export type Routes = {
|
|
|
95216
95776
|
created_at: string
|
|
95217
95777
|
/** Date and time at which the event occurred. */
|
|
95218
95778
|
occurred_at: string
|
|
95779
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95780
|
+
event_description?: string | undefined
|
|
95219
95781
|
/** ID of the affected Connect Webview. */
|
|
95220
95782
|
connect_webview_id: string
|
|
95221
95783
|
event_type: 'connect_webview.login_failed'
|
|
@@ -95229,6 +95791,8 @@ export type Routes = {
|
|
|
95229
95791
|
created_at: string
|
|
95230
95792
|
/** Date and time at which the event occurred. */
|
|
95231
95793
|
occurred_at: string
|
|
95794
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95795
|
+
event_description?: string | undefined
|
|
95232
95796
|
/** ID of the affected device. */
|
|
95233
95797
|
device_id: string
|
|
95234
95798
|
/** ID of the connected account associated with the event. */
|
|
@@ -95258,6 +95822,8 @@ export type Routes = {
|
|
|
95258
95822
|
created_at: string
|
|
95259
95823
|
/** Date and time at which the event occurred. */
|
|
95260
95824
|
occurred_at: string
|
|
95825
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95826
|
+
event_description?: string | undefined
|
|
95261
95827
|
/** ID of the affected device. */
|
|
95262
95828
|
device_id: string
|
|
95263
95829
|
/** ID of the connected account associated with the event. */
|
|
@@ -95287,6 +95853,8 @@ export type Routes = {
|
|
|
95287
95853
|
created_at: string
|
|
95288
95854
|
/** Date and time at which the event occurred. */
|
|
95289
95855
|
occurred_at: string
|
|
95856
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95857
|
+
event_description?: string | undefined
|
|
95290
95858
|
/** ID of the affected device. */
|
|
95291
95859
|
device_id: string
|
|
95292
95860
|
/** ID of the connected account associated with the event. */
|
|
@@ -95316,6 +95884,8 @@ export type Routes = {
|
|
|
95316
95884
|
created_at: string
|
|
95317
95885
|
/** Date and time at which the event occurred. */
|
|
95318
95886
|
occurred_at: string
|
|
95887
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95888
|
+
event_description?: string | undefined
|
|
95319
95889
|
/** ID of the affected device. */
|
|
95320
95890
|
device_id: string
|
|
95321
95891
|
/** ID of the connected account associated with the event. */
|
|
@@ -95345,6 +95915,8 @@ export type Routes = {
|
|
|
95345
95915
|
created_at: string
|
|
95346
95916
|
/** Date and time at which the event occurred. */
|
|
95347
95917
|
occurred_at: string
|
|
95918
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95919
|
+
event_description?: string | undefined
|
|
95348
95920
|
/** ID of the affected device. */
|
|
95349
95921
|
device_id: string
|
|
95350
95922
|
/** ID of the connected account associated with the event. */
|
|
@@ -95374,6 +95946,8 @@ export type Routes = {
|
|
|
95374
95946
|
created_at: string
|
|
95375
95947
|
/** Date and time at which the event occurred. */
|
|
95376
95948
|
occurred_at: string
|
|
95949
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
95950
|
+
event_description?: string | undefined
|
|
95377
95951
|
/** ID of the affected device. */
|
|
95378
95952
|
device_id: string
|
|
95379
95953
|
/** ID of the connected account associated with the event. */
|
|
@@ -95444,6 +96018,8 @@ export type Routes = {
|
|
|
95444
96018
|
created_at: string
|
|
95445
96019
|
/** Date and time at which the event occurred. */
|
|
95446
96020
|
occurred_at: string
|
|
96021
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96022
|
+
event_description?: string | undefined
|
|
95447
96023
|
/** ID of the affected device. */
|
|
95448
96024
|
device_id: string
|
|
95449
96025
|
/** ID of the connected account associated with the event. */
|
|
@@ -95514,6 +96090,8 @@ export type Routes = {
|
|
|
95514
96090
|
created_at: string
|
|
95515
96091
|
/** Date and time at which the event occurred. */
|
|
95516
96092
|
occurred_at: string
|
|
96093
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96094
|
+
event_description?: string | undefined
|
|
95517
96095
|
/** ID of the affected device. */
|
|
95518
96096
|
device_id: string
|
|
95519
96097
|
/** ID of the connected account associated with the event. */
|
|
@@ -95543,6 +96121,8 @@ export type Routes = {
|
|
|
95543
96121
|
created_at: string
|
|
95544
96122
|
/** Date and time at which the event occurred. */
|
|
95545
96123
|
occurred_at: string
|
|
96124
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96125
|
+
event_description?: string | undefined
|
|
95546
96126
|
/** ID of the affected device. */
|
|
95547
96127
|
device_id: string
|
|
95548
96128
|
/** ID of the connected account associated with the event. */
|
|
@@ -95574,6 +96154,8 @@ export type Routes = {
|
|
|
95574
96154
|
created_at: string
|
|
95575
96155
|
/** Date and time at which the event occurred. */
|
|
95576
96156
|
occurred_at: string
|
|
96157
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96158
|
+
event_description?: string | undefined
|
|
95577
96159
|
/** ID of the affected device. */
|
|
95578
96160
|
device_id: string
|
|
95579
96161
|
/** ID of the connected account associated with the event. */
|
|
@@ -95607,6 +96189,8 @@ export type Routes = {
|
|
|
95607
96189
|
created_at: string
|
|
95608
96190
|
/** Date and time at which the event occurred. */
|
|
95609
96191
|
occurred_at: string
|
|
96192
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96193
|
+
event_description?: string | undefined
|
|
95610
96194
|
/** ID of the affected device. */
|
|
95611
96195
|
device_id: string
|
|
95612
96196
|
/** ID of the connected account associated with the event. */
|
|
@@ -95636,6 +96220,8 @@ export type Routes = {
|
|
|
95636
96220
|
created_at: string
|
|
95637
96221
|
/** Date and time at which the event occurred. */
|
|
95638
96222
|
occurred_at: string
|
|
96223
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96224
|
+
event_description?: string | undefined
|
|
95639
96225
|
/** ID of the affected device. */
|
|
95640
96226
|
device_id: string
|
|
95641
96227
|
/** ID of the connected account associated with the event. */
|
|
@@ -95667,6 +96253,8 @@ export type Routes = {
|
|
|
95667
96253
|
created_at: string
|
|
95668
96254
|
/** Date and time at which the event occurred. */
|
|
95669
96255
|
occurred_at: string
|
|
96256
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96257
|
+
event_description?: string | undefined
|
|
95670
96258
|
/** ID of the affected device. */
|
|
95671
96259
|
device_id: string
|
|
95672
96260
|
/** ID of the connected account associated with the event. */
|
|
@@ -95696,6 +96284,8 @@ export type Routes = {
|
|
|
95696
96284
|
created_at: string
|
|
95697
96285
|
/** Date and time at which the event occurred. */
|
|
95698
96286
|
occurred_at: string
|
|
96287
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96288
|
+
event_description?: string | undefined
|
|
95699
96289
|
/** ID of the affected device. */
|
|
95700
96290
|
device_id: string
|
|
95701
96291
|
/** ID of the connected account associated with the event. */
|
|
@@ -95725,6 +96315,8 @@ export type Routes = {
|
|
|
95725
96315
|
created_at: string
|
|
95726
96316
|
/** Date and time at which the event occurred. */
|
|
95727
96317
|
occurred_at: string
|
|
96318
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96319
|
+
event_description?: string | undefined
|
|
95728
96320
|
/** ID of the affected device. */
|
|
95729
96321
|
device_id: string
|
|
95730
96322
|
/** ID of the connected account associated with the event. */
|
|
@@ -95754,6 +96346,8 @@ export type Routes = {
|
|
|
95754
96346
|
created_at: string
|
|
95755
96347
|
/** Date and time at which the event occurred. */
|
|
95756
96348
|
occurred_at: string
|
|
96349
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96350
|
+
event_description?: string | undefined
|
|
95757
96351
|
/** ID of the affected device. */
|
|
95758
96352
|
device_id: string
|
|
95759
96353
|
/** ID of the connected account associated with the event. */
|
|
@@ -95783,6 +96377,8 @@ export type Routes = {
|
|
|
95783
96377
|
created_at: string
|
|
95784
96378
|
/** Date and time at which the event occurred. */
|
|
95785
96379
|
occurred_at: string
|
|
96380
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96381
|
+
event_description?: string | undefined
|
|
95786
96382
|
/** ID of the affected device. */
|
|
95787
96383
|
device_id: string
|
|
95788
96384
|
/** ID of the connected account associated with the event. */
|
|
@@ -95848,6 +96444,8 @@ export type Routes = {
|
|
|
95848
96444
|
created_at: string
|
|
95849
96445
|
/** Date and time at which the event occurred. */
|
|
95850
96446
|
occurred_at: string
|
|
96447
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96448
|
+
event_description?: string | undefined
|
|
95851
96449
|
/** ID of the affected device. */
|
|
95852
96450
|
device_id: string
|
|
95853
96451
|
/** ID of the connected account associated with the event. */
|
|
@@ -95877,6 +96475,8 @@ export type Routes = {
|
|
|
95877
96475
|
created_at: string
|
|
95878
96476
|
/** Date and time at which the event occurred. */
|
|
95879
96477
|
occurred_at: string
|
|
96478
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96479
|
+
event_description?: string | undefined
|
|
95880
96480
|
/** ID of the affected device. */
|
|
95881
96481
|
device_id: string
|
|
95882
96482
|
/** ID of the connected account associated with the event. */
|
|
@@ -95942,6 +96542,8 @@ export type Routes = {
|
|
|
95942
96542
|
created_at: string
|
|
95943
96543
|
/** Date and time at which the event occurred. */
|
|
95944
96544
|
occurred_at: string
|
|
96545
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96546
|
+
event_description?: string | undefined
|
|
95945
96547
|
/** ID of the affected device. */
|
|
95946
96548
|
device_id: string
|
|
95947
96549
|
/** ID of the connected account associated with the event. */
|
|
@@ -95971,6 +96573,8 @@ export type Routes = {
|
|
|
95971
96573
|
created_at: string
|
|
95972
96574
|
/** Date and time at which the event occurred. */
|
|
95973
96575
|
occurred_at: string
|
|
96576
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96577
|
+
event_description?: string | undefined
|
|
95974
96578
|
/** ID of the affected device. */
|
|
95975
96579
|
device_id: string
|
|
95976
96580
|
/** ID of the connected account associated with the event. */
|
|
@@ -96000,6 +96604,8 @@ export type Routes = {
|
|
|
96000
96604
|
created_at: string
|
|
96001
96605
|
/** Date and time at which the event occurred. */
|
|
96002
96606
|
occurred_at: string
|
|
96607
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96608
|
+
event_description?: string | undefined
|
|
96003
96609
|
/** ID of the affected device. */
|
|
96004
96610
|
device_id: string
|
|
96005
96611
|
/** ID of the connected account associated with the event. */
|
|
@@ -96065,6 +96671,8 @@ export type Routes = {
|
|
|
96065
96671
|
created_at: string
|
|
96066
96672
|
/** Date and time at which the event occurred. */
|
|
96067
96673
|
occurred_at: string
|
|
96674
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96675
|
+
event_description?: string | undefined
|
|
96068
96676
|
/** ID of the affected device. */
|
|
96069
96677
|
device_id: string
|
|
96070
96678
|
/** ID of the connected account associated with the event. */
|
|
@@ -96114,6 +96722,8 @@ export type Routes = {
|
|
|
96114
96722
|
created_at: string
|
|
96115
96723
|
/** Date and time at which the event occurred. */
|
|
96116
96724
|
occurred_at: string
|
|
96725
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96726
|
+
event_description?: string | undefined
|
|
96117
96727
|
/** ID of the affected device. */
|
|
96118
96728
|
device_id: string
|
|
96119
96729
|
/** ID of the connected account associated with the event. */
|
|
@@ -96163,6 +96773,8 @@ export type Routes = {
|
|
|
96163
96773
|
created_at: string
|
|
96164
96774
|
/** Date and time at which the event occurred. */
|
|
96165
96775
|
occurred_at: string
|
|
96776
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96777
|
+
event_description?: string | undefined
|
|
96166
96778
|
/** ID of the affected device. */
|
|
96167
96779
|
device_id?: string | undefined
|
|
96168
96780
|
/** ID of the connected account associated with the event. */
|
|
@@ -96236,6 +96848,8 @@ export type Routes = {
|
|
|
96236
96848
|
created_at: string
|
|
96237
96849
|
/** Date and time at which the event occurred. */
|
|
96238
96850
|
occurred_at: string
|
|
96851
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96852
|
+
event_description?: string | undefined
|
|
96239
96853
|
/** ID of the affected device. */
|
|
96240
96854
|
device_id?: string | undefined
|
|
96241
96855
|
/** ID of the connected account associated with the event. */
|
|
@@ -96291,6 +96905,8 @@ export type Routes = {
|
|
|
96291
96905
|
created_at: string
|
|
96292
96906
|
/** Date and time at which the event occurred. */
|
|
96293
96907
|
occurred_at: string
|
|
96908
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96909
|
+
event_description?: string | undefined
|
|
96294
96910
|
/** ID of the affected device. */
|
|
96295
96911
|
device_id: string
|
|
96296
96912
|
/** ID of the connected account associated with the event. */
|
|
@@ -96326,6 +96942,8 @@ export type Routes = {
|
|
|
96326
96942
|
created_at: string
|
|
96327
96943
|
/** Date and time at which the event occurred. */
|
|
96328
96944
|
occurred_at: string
|
|
96945
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96946
|
+
event_description?: string | undefined
|
|
96329
96947
|
/** ID of the affected device. */
|
|
96330
96948
|
device_id: string
|
|
96331
96949
|
/** ID of the connected account associated with the event. */
|
|
@@ -96373,6 +96991,8 @@ export type Routes = {
|
|
|
96373
96991
|
created_at: string
|
|
96374
96992
|
/** Date and time at which the event occurred. */
|
|
96375
96993
|
occurred_at: string
|
|
96994
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
96995
|
+
event_description?: string | undefined
|
|
96376
96996
|
/** ID of the affected device. */
|
|
96377
96997
|
device_id: string
|
|
96378
96998
|
/** ID of the connected account associated with the event. */
|
|
@@ -96414,6 +97034,8 @@ export type Routes = {
|
|
|
96414
97034
|
created_at: string
|
|
96415
97035
|
/** Date and time at which the event occurred. */
|
|
96416
97036
|
occurred_at: string
|
|
97037
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97038
|
+
event_description?: string | undefined
|
|
96417
97039
|
/** ID of the affected device. */
|
|
96418
97040
|
device_id: string
|
|
96419
97041
|
/** ID of the connected account associated with the event. */
|
|
@@ -96455,6 +97077,8 @@ export type Routes = {
|
|
|
96455
97077
|
created_at: string
|
|
96456
97078
|
/** Date and time at which the event occurred. */
|
|
96457
97079
|
occurred_at: string
|
|
97080
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97081
|
+
event_description?: string | undefined
|
|
96458
97082
|
/** ID of the affected device. */
|
|
96459
97083
|
device_id: string
|
|
96460
97084
|
/** ID of the connected account associated with the event. */
|
|
@@ -96492,6 +97116,8 @@ export type Routes = {
|
|
|
96492
97116
|
created_at: string
|
|
96493
97117
|
/** Date and time at which the event occurred. */
|
|
96494
97118
|
occurred_at: string
|
|
97119
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97120
|
+
event_description?: string | undefined
|
|
96495
97121
|
/** ID of the affected device. */
|
|
96496
97122
|
device_id: string
|
|
96497
97123
|
/** ID of the connected account associated with the event. */
|
|
@@ -96525,6 +97151,8 @@ export type Routes = {
|
|
|
96525
97151
|
created_at: string
|
|
96526
97152
|
/** Date and time at which the event occurred. */
|
|
96527
97153
|
occurred_at: string
|
|
97154
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97155
|
+
event_description?: string | undefined
|
|
96528
97156
|
/** ID of the affected device. */
|
|
96529
97157
|
device_id: string
|
|
96530
97158
|
/** ID of the connected account associated with the event. */
|
|
@@ -96556,6 +97184,8 @@ export type Routes = {
|
|
|
96556
97184
|
created_at: string
|
|
96557
97185
|
/** Date and time at which the event occurred. */
|
|
96558
97186
|
occurred_at: string
|
|
97187
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97188
|
+
event_description?: string | undefined
|
|
96559
97189
|
/** ID of the affected device. */
|
|
96560
97190
|
device_id: string
|
|
96561
97191
|
/** ID of the connected account associated with the event. */
|
|
@@ -96595,6 +97225,8 @@ export type Routes = {
|
|
|
96595
97225
|
created_at: string
|
|
96596
97226
|
/** Date and time at which the event occurred. */
|
|
96597
97227
|
occurred_at: string
|
|
97228
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97229
|
+
event_description?: string | undefined
|
|
96598
97230
|
/** ID of the affected device. */
|
|
96599
97231
|
device_id: string
|
|
96600
97232
|
/** ID of the connected account associated with the event. */
|
|
@@ -96628,6 +97260,8 @@ export type Routes = {
|
|
|
96628
97260
|
created_at: string
|
|
96629
97261
|
/** Date and time at which the event occurred. */
|
|
96630
97262
|
occurred_at: string
|
|
97263
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97264
|
+
event_description?: string | undefined
|
|
96631
97265
|
/** ID of the affected enrollment automation. */
|
|
96632
97266
|
enrollment_automation_id: string
|
|
96633
97267
|
event_type: 'enrollment_automation.deleted'
|
|
@@ -96641,6 +97275,8 @@ export type Routes = {
|
|
|
96641
97275
|
created_at: string
|
|
96642
97276
|
/** Date and time at which the event occurred. */
|
|
96643
97277
|
occurred_at: string
|
|
97278
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97279
|
+
event_description?: string | undefined
|
|
96644
97280
|
/** ID of the affected phone device. */
|
|
96645
97281
|
device_id: string
|
|
96646
97282
|
/** Custom metadata of the device; present when device_id is provided. */
|
|
@@ -96660,6 +97296,8 @@ export type Routes = {
|
|
|
96660
97296
|
created_at: string
|
|
96661
97297
|
/** Date and time at which the event occurred. */
|
|
96662
97298
|
occurred_at: string
|
|
97299
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97300
|
+
event_description?: string | undefined
|
|
96663
97301
|
/** ID of the affected space. */
|
|
96664
97302
|
space_id: string
|
|
96665
97303
|
/** Type of the event. */
|
|
@@ -96680,6 +97318,8 @@ export type Routes = {
|
|
|
96680
97318
|
created_at: string
|
|
96681
97319
|
/** Date and time at which the event occurred. */
|
|
96682
97320
|
occurred_at: string
|
|
97321
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97322
|
+
event_description?: string | undefined
|
|
96683
97323
|
/** ID of the affected space. */
|
|
96684
97324
|
space_id: string
|
|
96685
97325
|
/** Type of the event. */
|
|
@@ -96700,6 +97340,8 @@ export type Routes = {
|
|
|
96700
97340
|
created_at: string
|
|
96701
97341
|
/** Date and time at which the event occurred. */
|
|
96702
97342
|
occurred_at: string
|
|
97343
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
97344
|
+
event_description?: string | undefined
|
|
96703
97345
|
/** ID of the affected space. */
|
|
96704
97346
|
space_id: string
|
|
96705
97347
|
/** Type of the event. */
|
|
@@ -137999,6 +138641,8 @@ export type Routes = {
|
|
|
137999
138641
|
created_at: string
|
|
138000
138642
|
/** Date and time at which the event occurred. */
|
|
138001
138643
|
occurred_at: string
|
|
138644
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138645
|
+
event_description?: string | undefined
|
|
138002
138646
|
/** ID of the affected access code. */
|
|
138003
138647
|
access_code_id: string
|
|
138004
138648
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138028,6 +138672,8 @@ export type Routes = {
|
|
|
138028
138672
|
created_at: string
|
|
138029
138673
|
/** Date and time at which the event occurred. */
|
|
138030
138674
|
occurred_at: string
|
|
138675
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138676
|
+
event_description?: string | undefined
|
|
138031
138677
|
/** ID of the affected access code. */
|
|
138032
138678
|
access_code_id: string
|
|
138033
138679
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138070,6 +138716,8 @@ export type Routes = {
|
|
|
138070
138716
|
created_at: string
|
|
138071
138717
|
/** Date and time at which the event occurred. */
|
|
138072
138718
|
occurred_at: string
|
|
138719
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138720
|
+
event_description?: string | undefined
|
|
138073
138721
|
/** ID of the affected access code. */
|
|
138074
138722
|
access_code_id: string
|
|
138075
138723
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138111,6 +138759,8 @@ export type Routes = {
|
|
|
138111
138759
|
created_at: string
|
|
138112
138760
|
/** Date and time at which the event occurred. */
|
|
138113
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
|
|
138114
138764
|
/** ID of the affected access code. */
|
|
138115
138765
|
access_code_id: string
|
|
138116
138766
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138152,6 +138802,8 @@ export type Routes = {
|
|
|
138152
138802
|
created_at: string
|
|
138153
138803
|
/** Date and time at which the event occurred. */
|
|
138154
138804
|
occurred_at: string
|
|
138805
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138806
|
+
event_description?: string | undefined
|
|
138155
138807
|
/** ID of the affected access code. */
|
|
138156
138808
|
access_code_id: string
|
|
138157
138809
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138197,6 +138849,8 @@ export type Routes = {
|
|
|
138197
138849
|
created_at: string
|
|
138198
138850
|
/** Date and time at which the event occurred. */
|
|
138199
138851
|
occurred_at: string
|
|
138852
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138853
|
+
event_description?: string | undefined
|
|
138200
138854
|
/** ID of the affected access code. */
|
|
138201
138855
|
access_code_id: string
|
|
138202
138856
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138249,6 +138903,8 @@ export type Routes = {
|
|
|
138249
138903
|
created_at: string
|
|
138250
138904
|
/** Date and time at which the event occurred. */
|
|
138251
138905
|
occurred_at: string
|
|
138906
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138907
|
+
event_description?: string | undefined
|
|
138252
138908
|
/** ID of the affected access code. */
|
|
138253
138909
|
access_code_id: string
|
|
138254
138910
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138280,6 +138936,8 @@ export type Routes = {
|
|
|
138280
138936
|
created_at: string
|
|
138281
138937
|
/** Date and time at which the event occurred. */
|
|
138282
138938
|
occurred_at: string
|
|
138939
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138940
|
+
event_description?: string | undefined
|
|
138283
138941
|
/** ID of the affected access code. */
|
|
138284
138942
|
access_code_id: string
|
|
138285
138943
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138311,6 +138969,8 @@ export type Routes = {
|
|
|
138311
138969
|
created_at: string
|
|
138312
138970
|
/** Date and time at which the event occurred. */
|
|
138313
138971
|
occurred_at: string
|
|
138972
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
138973
|
+
event_description?: string | undefined
|
|
138314
138974
|
/** ID of the affected access code. */
|
|
138315
138975
|
access_code_id: string
|
|
138316
138976
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138340,6 +139000,8 @@ export type Routes = {
|
|
|
138340
139000
|
created_at: string
|
|
138341
139001
|
/** Date and time at which the event occurred. */
|
|
138342
139002
|
occurred_at: string
|
|
139003
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139004
|
+
event_description?: string | undefined
|
|
138343
139005
|
/** ID of the affected access code. */
|
|
138344
139006
|
access_code_id: string
|
|
138345
139007
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138423,6 +139085,8 @@ export type Routes = {
|
|
|
138423
139085
|
created_at: string
|
|
138424
139086
|
/** Date and time at which the event occurred. */
|
|
138425
139087
|
occurred_at: string
|
|
139088
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139089
|
+
event_description?: string | undefined
|
|
138426
139090
|
/** ID of the affected access code. */
|
|
138427
139091
|
access_code_id: string
|
|
138428
139092
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138506,6 +139170,8 @@ export type Routes = {
|
|
|
138506
139170
|
created_at: string
|
|
138507
139171
|
/** Date and time at which the event occurred. */
|
|
138508
139172
|
occurred_at: string
|
|
139173
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139174
|
+
event_description?: string | undefined
|
|
138509
139175
|
/** ID of the affected access code. */
|
|
138510
139176
|
access_code_id: string
|
|
138511
139177
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138537,6 +139203,8 @@ export type Routes = {
|
|
|
138537
139203
|
created_at: string
|
|
138538
139204
|
/** Date and time at which the event occurred. */
|
|
138539
139205
|
occurred_at: string
|
|
139206
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139207
|
+
event_description?: string | undefined
|
|
138540
139208
|
/** ID of the affected access code. */
|
|
138541
139209
|
access_code_id: string
|
|
138542
139210
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138620,6 +139288,8 @@ export type Routes = {
|
|
|
138620
139288
|
created_at: string
|
|
138621
139289
|
/** Date and time at which the event occurred. */
|
|
138622
139290
|
occurred_at: string
|
|
139291
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139292
|
+
event_description?: string | undefined
|
|
138623
139293
|
/** ID of the affected access code. */
|
|
138624
139294
|
access_code_id: string
|
|
138625
139295
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138703,6 +139373,8 @@ export type Routes = {
|
|
|
138703
139373
|
created_at: string
|
|
138704
139374
|
/** Date and time at which the event occurred. */
|
|
138705
139375
|
occurred_at: string
|
|
139376
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139377
|
+
event_description?: string | undefined
|
|
138706
139378
|
/** ID of the affected access code. */
|
|
138707
139379
|
access_code_id: string
|
|
138708
139380
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138732,6 +139404,8 @@ export type Routes = {
|
|
|
138732
139404
|
created_at: string
|
|
138733
139405
|
/** Date and time at which the event occurred. */
|
|
138734
139406
|
occurred_at: string
|
|
139407
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139408
|
+
event_description?: string | undefined
|
|
138735
139409
|
/** ID of the affected access code. */
|
|
138736
139410
|
access_code_id: string
|
|
138737
139411
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138761,6 +139435,8 @@ export type Routes = {
|
|
|
138761
139435
|
created_at: string
|
|
138762
139436
|
/** Date and time at which the event occurred. */
|
|
138763
139437
|
occurred_at: string
|
|
139438
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139439
|
+
event_description?: string | undefined
|
|
138764
139440
|
/** ID of the affected access code. */
|
|
138765
139441
|
access_code_id: string
|
|
138766
139442
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138792,6 +139468,8 @@ export type Routes = {
|
|
|
138792
139468
|
created_at: string
|
|
138793
139469
|
/** Date and time at which the event occurred. */
|
|
138794
139470
|
occurred_at: string
|
|
139471
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139472
|
+
event_description?: string | undefined
|
|
138795
139473
|
/** ID of the affected access code. */
|
|
138796
139474
|
access_code_id: string
|
|
138797
139475
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138821,6 +139499,8 @@ export type Routes = {
|
|
|
138821
139499
|
created_at: string
|
|
138822
139500
|
/** Date and time at which the event occurred. */
|
|
138823
139501
|
occurred_at: string
|
|
139502
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139503
|
+
event_description?: string | undefined
|
|
138824
139504
|
/** ID of the affected access code. */
|
|
138825
139505
|
access_code_id: string
|
|
138826
139506
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138904,6 +139584,8 @@ export type Routes = {
|
|
|
138904
139584
|
created_at: string
|
|
138905
139585
|
/** Date and time at which the event occurred. */
|
|
138906
139586
|
occurred_at: string
|
|
139587
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139588
|
+
event_description?: string | undefined
|
|
138907
139589
|
/** ID of the affected access code. */
|
|
138908
139590
|
access_code_id: string
|
|
138909
139591
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138933,6 +139615,8 @@ export type Routes = {
|
|
|
138933
139615
|
created_at: string
|
|
138934
139616
|
/** Date and time at which the event occurred. */
|
|
138935
139617
|
occurred_at: string
|
|
139618
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139619
|
+
event_description?: string | undefined
|
|
138936
139620
|
/** ID of the affected access code. */
|
|
138937
139621
|
access_code_id: string
|
|
138938
139622
|
/** ID of the device associated with the affected access code. */
|
|
@@ -138962,6 +139646,8 @@ export type Routes = {
|
|
|
138962
139646
|
created_at: string
|
|
138963
139647
|
/** Date and time at which the event occurred. */
|
|
138964
139648
|
occurred_at: string
|
|
139649
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139650
|
+
event_description?: string | undefined
|
|
138965
139651
|
/** ID of the affected Access Grant. */
|
|
138966
139652
|
access_grant_id: string
|
|
138967
139653
|
event_type: 'access_grant.created'
|
|
@@ -138975,6 +139661,8 @@ export type Routes = {
|
|
|
138975
139661
|
created_at: string
|
|
138976
139662
|
/** Date and time at which the event occurred. */
|
|
138977
139663
|
occurred_at: string
|
|
139664
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139665
|
+
event_description?: string | undefined
|
|
138978
139666
|
/** ID of the affected Access Grant. */
|
|
138979
139667
|
access_grant_id: string
|
|
138980
139668
|
event_type: 'access_grant.deleted'
|
|
@@ -138988,6 +139676,8 @@ export type Routes = {
|
|
|
138988
139676
|
created_at: string
|
|
138989
139677
|
/** Date and time at which the event occurred. */
|
|
138990
139678
|
occurred_at: string
|
|
139679
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139680
|
+
event_description?: string | undefined
|
|
138991
139681
|
/** ID of the affected Access Grant. */
|
|
138992
139682
|
access_grant_id: string
|
|
138993
139683
|
event_type: 'access_grant.access_granted_to_all_doors'
|
|
@@ -139001,6 +139691,8 @@ export type Routes = {
|
|
|
139001
139691
|
created_at: string
|
|
139002
139692
|
/** Date and time at which the event occurred. */
|
|
139003
139693
|
occurred_at: string
|
|
139694
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139695
|
+
event_description?: string | undefined
|
|
139004
139696
|
/** ID of the affected Access Grant. */
|
|
139005
139697
|
access_grant_id: string
|
|
139006
139698
|
event_type: 'access_grant.access_granted_to_door'
|
|
@@ -139016,6 +139708,8 @@ export type Routes = {
|
|
|
139016
139708
|
created_at: string
|
|
139017
139709
|
/** Date and time at which the event occurred. */
|
|
139018
139710
|
occurred_at: string
|
|
139711
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139712
|
+
event_description?: string | undefined
|
|
139019
139713
|
/** ID of the affected Access Grant. */
|
|
139020
139714
|
access_grant_id: string
|
|
139021
139715
|
event_type: 'access_grant.access_to_door_lost'
|
|
@@ -139031,6 +139725,8 @@ export type Routes = {
|
|
|
139031
139725
|
created_at: string
|
|
139032
139726
|
/** Date and time at which the event occurred. */
|
|
139033
139727
|
occurred_at: string
|
|
139728
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139729
|
+
event_description?: string | undefined
|
|
139034
139730
|
/** ID of the affected Access Grant. */
|
|
139035
139731
|
access_grant_id: string
|
|
139036
139732
|
event_type: 'access_grant.access_times_changed'
|
|
@@ -139050,6 +139746,8 @@ export type Routes = {
|
|
|
139050
139746
|
created_at: string
|
|
139051
139747
|
/** Date and time at which the event occurred. */
|
|
139052
139748
|
occurred_at: string
|
|
139749
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139750
|
+
event_description?: string | undefined
|
|
139053
139751
|
/** ID of the affected Access Grant. */
|
|
139054
139752
|
access_grant_id: string
|
|
139055
139753
|
event_type: 'access_grant.could_not_create_requested_access_methods'
|
|
@@ -139067,6 +139765,8 @@ export type Routes = {
|
|
|
139067
139765
|
created_at: string
|
|
139068
139766
|
/** Date and time at which the event occurred. */
|
|
139069
139767
|
occurred_at: string
|
|
139768
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139769
|
+
event_description?: string | undefined
|
|
139070
139770
|
/** ID of the affected access method. */
|
|
139071
139771
|
access_method_id: string
|
|
139072
139772
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -139088,6 +139788,8 @@ export type Routes = {
|
|
|
139088
139788
|
created_at: string
|
|
139089
139789
|
/** Date and time at which the event occurred. */
|
|
139090
139790
|
occurred_at: string
|
|
139791
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139792
|
+
event_description?: string | undefined
|
|
139091
139793
|
/** ID of the affected access method. */
|
|
139092
139794
|
access_method_id: string
|
|
139093
139795
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -139105,6 +139807,8 @@ export type Routes = {
|
|
|
139105
139807
|
created_at: string
|
|
139106
139808
|
/** Date and time at which the event occurred. */
|
|
139107
139809
|
occurred_at: string
|
|
139810
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139811
|
+
event_description?: string | undefined
|
|
139108
139812
|
/** ID of the affected access method. */
|
|
139109
139813
|
access_method_id: string
|
|
139110
139814
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -139122,6 +139826,8 @@ export type Routes = {
|
|
|
139122
139826
|
created_at: string
|
|
139123
139827
|
/** Date and time at which the event occurred. */
|
|
139124
139828
|
occurred_at: string
|
|
139829
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139830
|
+
event_description?: string | undefined
|
|
139125
139831
|
/** ID of the affected access method. */
|
|
139126
139832
|
access_method_id: string
|
|
139127
139833
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -139139,6 +139845,8 @@ export type Routes = {
|
|
|
139139
139845
|
created_at: string
|
|
139140
139846
|
/** Date and time at which the event occurred. */
|
|
139141
139847
|
occurred_at: string
|
|
139848
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139849
|
+
event_description?: string | undefined
|
|
139142
139850
|
/** ID of the affected access method. */
|
|
139143
139851
|
access_method_id: string
|
|
139144
139852
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -139160,6 +139868,8 @@ export type Routes = {
|
|
|
139160
139868
|
created_at: string
|
|
139161
139869
|
/** Date and time at which the event occurred. */
|
|
139162
139870
|
occurred_at: string
|
|
139871
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139872
|
+
event_description?: string | undefined
|
|
139163
139873
|
/** ID of the affected access method. */
|
|
139164
139874
|
access_method_id: string
|
|
139165
139875
|
/** IDs of the access grants associated with this access method. */
|
|
@@ -139177,6 +139887,8 @@ export type Routes = {
|
|
|
139177
139887
|
created_at: string
|
|
139178
139888
|
/** Date and time at which the event occurred. */
|
|
139179
139889
|
occurred_at: string
|
|
139890
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139891
|
+
event_description?: string | undefined
|
|
139180
139892
|
/** ID of the connected account. */
|
|
139181
139893
|
connected_account_id?: string | undefined
|
|
139182
139894
|
/** ID of the access system. */
|
|
@@ -139192,6 +139904,8 @@ export type Routes = {
|
|
|
139192
139904
|
created_at: string
|
|
139193
139905
|
/** Date and time at which the event occurred. */
|
|
139194
139906
|
occurred_at: string
|
|
139907
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139908
|
+
event_description?: string | undefined
|
|
139195
139909
|
/** ID of the connected account. */
|
|
139196
139910
|
connected_account_id?: string | undefined
|
|
139197
139911
|
/** ID of the access system. */
|
|
@@ -139207,6 +139921,8 @@ export type Routes = {
|
|
|
139207
139921
|
created_at: string
|
|
139208
139922
|
/** Date and time at which the event occurred. */
|
|
139209
139923
|
occurred_at: string
|
|
139924
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139925
|
+
event_description?: string | undefined
|
|
139210
139926
|
/** ID of the connected account. */
|
|
139211
139927
|
connected_account_id?: string | undefined
|
|
139212
139928
|
/** ID of the access system. */
|
|
@@ -139258,6 +139974,8 @@ export type Routes = {
|
|
|
139258
139974
|
created_at: string
|
|
139259
139975
|
/** Date and time at which the event occurred. */
|
|
139260
139976
|
occurred_at: string
|
|
139977
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139978
|
+
event_description?: string | undefined
|
|
139261
139979
|
/** ID of the connected account. */
|
|
139262
139980
|
connected_account_id?: string | undefined
|
|
139263
139981
|
/** ID of the access system. */
|
|
@@ -139275,6 +139993,8 @@ export type Routes = {
|
|
|
139275
139993
|
created_at: string
|
|
139276
139994
|
/** Date and time at which the event occurred. */
|
|
139277
139995
|
occurred_at: string
|
|
139996
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
139997
|
+
event_description?: string | undefined
|
|
139278
139998
|
/** ID of the connected account. */
|
|
139279
139999
|
connected_account_id?: string | undefined
|
|
139280
140000
|
/** ID of the access system. */
|
|
@@ -139292,6 +140012,8 @@ export type Routes = {
|
|
|
139292
140012
|
created_at: string
|
|
139293
140013
|
/** Date and time at which the event occurred. */
|
|
139294
140014
|
occurred_at: string
|
|
140015
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140016
|
+
event_description?: string | undefined
|
|
139295
140017
|
/** ID of the connected account. */
|
|
139296
140018
|
connected_account_id?: string | undefined
|
|
139297
140019
|
/** ID of the access system. */
|
|
@@ -139309,6 +140031,8 @@ export type Routes = {
|
|
|
139309
140031
|
created_at: string
|
|
139310
140032
|
/** Date and time at which the event occurred. */
|
|
139311
140033
|
occurred_at: string
|
|
140034
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140035
|
+
event_description?: string | undefined
|
|
139312
140036
|
/** ID of the connected account. */
|
|
139313
140037
|
connected_account_id?: string | undefined
|
|
139314
140038
|
/** ID of the access system. */
|
|
@@ -139326,6 +140050,8 @@ export type Routes = {
|
|
|
139326
140050
|
created_at: string
|
|
139327
140051
|
/** Date and time at which the event occurred. */
|
|
139328
140052
|
occurred_at: string
|
|
140053
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140054
|
+
event_description?: string | undefined
|
|
139329
140055
|
/** ID of the connected account. */
|
|
139330
140056
|
connected_account_id?: string | undefined
|
|
139331
140057
|
/** ID of the access system. */
|
|
@@ -139343,6 +140069,8 @@ export type Routes = {
|
|
|
139343
140069
|
created_at: string
|
|
139344
140070
|
/** Date and time at which the event occurred. */
|
|
139345
140071
|
occurred_at: string
|
|
140072
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140073
|
+
event_description?: string | undefined
|
|
139346
140074
|
/** ID of the connected account. */
|
|
139347
140075
|
connected_account_id?: string | undefined
|
|
139348
140076
|
/** ID of the access system. */
|
|
@@ -139360,6 +140088,8 @@ export type Routes = {
|
|
|
139360
140088
|
created_at: string
|
|
139361
140089
|
/** Date and time at which the event occurred. */
|
|
139362
140090
|
occurred_at: string
|
|
140091
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140092
|
+
event_description?: string | undefined
|
|
139363
140093
|
/** ID of the connected account. */
|
|
139364
140094
|
connected_account_id?: string | undefined
|
|
139365
140095
|
/** ID of the access system. */
|
|
@@ -139377,6 +140107,8 @@ export type Routes = {
|
|
|
139377
140107
|
created_at: string
|
|
139378
140108
|
/** Date and time at which the event occurred. */
|
|
139379
140109
|
occurred_at: string
|
|
140110
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140111
|
+
event_description?: string | undefined
|
|
139380
140112
|
/** ID of the connected account. */
|
|
139381
140113
|
connected_account_id?: string | undefined
|
|
139382
140114
|
/** ID of the access system. */
|
|
@@ -139394,6 +140126,8 @@ export type Routes = {
|
|
|
139394
140126
|
created_at: string
|
|
139395
140127
|
/** Date and time at which the event occurred. */
|
|
139396
140128
|
occurred_at: string
|
|
140129
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140130
|
+
event_description?: string | undefined
|
|
139397
140131
|
/** ID of the connected account. */
|
|
139398
140132
|
connected_account_id?: string | undefined
|
|
139399
140133
|
/** ID of the access system. */
|
|
@@ -139411,6 +140145,8 @@ export type Routes = {
|
|
|
139411
140145
|
created_at: string
|
|
139412
140146
|
/** Date and time at which the event occurred. */
|
|
139413
140147
|
occurred_at: string
|
|
140148
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140149
|
+
event_description?: string | undefined
|
|
139414
140150
|
/** ID of the connected account. */
|
|
139415
140151
|
connected_account_id?: string | undefined
|
|
139416
140152
|
/** ID of the access system. */
|
|
@@ -139428,6 +140164,8 @@ export type Routes = {
|
|
|
139428
140164
|
created_at: string
|
|
139429
140165
|
/** Date and time at which the event occurred. */
|
|
139430
140166
|
occurred_at: string
|
|
140167
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140168
|
+
event_description?: string | undefined
|
|
139431
140169
|
/** ID of the connected account. */
|
|
139432
140170
|
connected_account_id?: string | undefined
|
|
139433
140171
|
/** ID of the access system. */
|
|
@@ -139445,6 +140183,8 @@ export type Routes = {
|
|
|
139445
140183
|
created_at: string
|
|
139446
140184
|
/** Date and time at which the event occurred. */
|
|
139447
140185
|
occurred_at: string
|
|
140186
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140187
|
+
event_description?: string | undefined
|
|
139448
140188
|
/** ID of the affected client session. */
|
|
139449
140189
|
client_session_id: string
|
|
139450
140190
|
event_type: 'client_session.deleted'
|
|
@@ -139458,6 +140198,8 @@ export type Routes = {
|
|
|
139458
140198
|
created_at: string
|
|
139459
140199
|
/** Date and time at which the event occurred. */
|
|
139460
140200
|
occurred_at: string
|
|
140201
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140202
|
+
event_description?: string | undefined
|
|
139461
140203
|
/** ID of the affected connected account. */
|
|
139462
140204
|
connected_account_id: string
|
|
139463
140205
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139481,6 +140223,8 @@ export type Routes = {
|
|
|
139481
140223
|
created_at: string
|
|
139482
140224
|
/** Date and time at which the event occurred. */
|
|
139483
140225
|
occurred_at: string
|
|
140226
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140227
|
+
event_description?: string | undefined
|
|
139484
140228
|
/** ID of the affected connected account. */
|
|
139485
140229
|
connected_account_id: string
|
|
139486
140230
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139502,6 +140246,8 @@ export type Routes = {
|
|
|
139502
140246
|
created_at: string
|
|
139503
140247
|
/** Date and time at which the event occurred. */
|
|
139504
140248
|
occurred_at: string
|
|
140249
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140250
|
+
event_description?: string | undefined
|
|
139505
140251
|
/** ID of the affected connected account. */
|
|
139506
140252
|
connected_account_id: string
|
|
139507
140253
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139523,6 +140269,8 @@ export type Routes = {
|
|
|
139523
140269
|
created_at: string
|
|
139524
140270
|
/** Date and time at which the event occurred. */
|
|
139525
140271
|
occurred_at: string
|
|
140272
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140273
|
+
event_description?: string | undefined
|
|
139526
140274
|
/** ID of the affected connected account. */
|
|
139527
140275
|
connected_account_id: string
|
|
139528
140276
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139560,6 +140308,8 @@ export type Routes = {
|
|
|
139560
140308
|
created_at: string
|
|
139561
140309
|
/** Date and time at which the event occurred. */
|
|
139562
140310
|
occurred_at: string
|
|
140311
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140312
|
+
event_description?: string | undefined
|
|
139563
140313
|
/** ID of the affected connected account. */
|
|
139564
140314
|
connected_account_id: string
|
|
139565
140315
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139579,6 +140329,8 @@ export type Routes = {
|
|
|
139579
140329
|
created_at: string
|
|
139580
140330
|
/** Date and time at which the event occurred. */
|
|
139581
140331
|
occurred_at: string
|
|
140332
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140333
|
+
event_description?: string | undefined
|
|
139582
140334
|
/** ID of the affected connected account. */
|
|
139583
140335
|
connected_account_id: string
|
|
139584
140336
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139602,6 +140354,8 @@ export type Routes = {
|
|
|
139602
140354
|
created_at: string
|
|
139603
140355
|
/** Date and time at which the event occurred. */
|
|
139604
140356
|
occurred_at: string
|
|
140357
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140358
|
+
event_description?: string | undefined
|
|
139605
140359
|
/** ID of the affected connected account. */
|
|
139606
140360
|
connected_account_id: string
|
|
139607
140361
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139621,6 +140375,8 @@ export type Routes = {
|
|
|
139621
140375
|
created_at: string
|
|
139622
140376
|
/** Date and time at which the event occurred. */
|
|
139623
140377
|
occurred_at: string
|
|
140378
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140379
|
+
event_description?: string | undefined
|
|
139624
140380
|
/** ID of the affected connected account. */
|
|
139625
140381
|
connected_account_id: string
|
|
139626
140382
|
/** Custom metadata of the connected account, present when connected_account_id is provided. */
|
|
@@ -139658,6 +140414,8 @@ export type Routes = {
|
|
|
139658
140414
|
created_at: string
|
|
139659
140415
|
/** Date and time at which the event occurred. */
|
|
139660
140416
|
occurred_at: string
|
|
140417
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140418
|
+
event_description?: string | undefined
|
|
139661
140419
|
/** ID of the affected action attempt. */
|
|
139662
140420
|
action_attempt_id: string
|
|
139663
140421
|
/** Type of the action. */
|
|
@@ -139679,6 +140437,8 @@ export type Routes = {
|
|
|
139679
140437
|
created_at: string
|
|
139680
140438
|
/** Date and time at which the event occurred. */
|
|
139681
140439
|
occurred_at: string
|
|
140440
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140441
|
+
event_description?: string | undefined
|
|
139682
140442
|
/** ID of the affected action attempt. */
|
|
139683
140443
|
action_attempt_id: string
|
|
139684
140444
|
/** Type of the action. */
|
|
@@ -139700,6 +140460,8 @@ export type Routes = {
|
|
|
139700
140460
|
created_at: string
|
|
139701
140461
|
/** Date and time at which the event occurred. */
|
|
139702
140462
|
occurred_at: string
|
|
140463
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140464
|
+
event_description?: string | undefined
|
|
139703
140465
|
/** ID of the affected action attempt. */
|
|
139704
140466
|
action_attempt_id: string
|
|
139705
140467
|
/** Type of the action. */
|
|
@@ -139721,6 +140483,8 @@ export type Routes = {
|
|
|
139721
140483
|
created_at: string
|
|
139722
140484
|
/** Date and time at which the event occurred. */
|
|
139723
140485
|
occurred_at: string
|
|
140486
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140487
|
+
event_description?: string | undefined
|
|
139724
140488
|
/** ID of the affected action attempt. */
|
|
139725
140489
|
action_attempt_id: string
|
|
139726
140490
|
/** Type of the action. */
|
|
@@ -139742,6 +140506,8 @@ export type Routes = {
|
|
|
139742
140506
|
created_at: string
|
|
139743
140507
|
/** Date and time at which the event occurred. */
|
|
139744
140508
|
occurred_at: string
|
|
140509
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140510
|
+
event_description?: string | undefined
|
|
139745
140511
|
/** ID of the affected action attempt. */
|
|
139746
140512
|
action_attempt_id: string
|
|
139747
140513
|
/** Type of the action. */
|
|
@@ -139763,6 +140529,8 @@ export type Routes = {
|
|
|
139763
140529
|
created_at: string
|
|
139764
140530
|
/** Date and time at which the event occurred. */
|
|
139765
140531
|
occurred_at: string
|
|
140532
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140533
|
+
event_description?: string | undefined
|
|
139766
140534
|
/** ID of the affected action attempt. */
|
|
139767
140535
|
action_attempt_id: string
|
|
139768
140536
|
/** Type of the action. */
|
|
@@ -139784,6 +140552,8 @@ export type Routes = {
|
|
|
139784
140552
|
created_at: string
|
|
139785
140553
|
/** Date and time at which the event occurred. */
|
|
139786
140554
|
occurred_at: string
|
|
140555
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140556
|
+
event_description?: string | undefined
|
|
139787
140557
|
/** ID of the affected action attempt. */
|
|
139788
140558
|
action_attempt_id: string
|
|
139789
140559
|
/** Type of the action. */
|
|
@@ -139805,6 +140575,8 @@ export type Routes = {
|
|
|
139805
140575
|
created_at: string
|
|
139806
140576
|
/** Date and time at which the event occurred. */
|
|
139807
140577
|
occurred_at: string
|
|
140578
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140579
|
+
event_description?: string | undefined
|
|
139808
140580
|
/** ID of the affected action attempt. */
|
|
139809
140581
|
action_attempt_id: string
|
|
139810
140582
|
/** Type of the action. */
|
|
@@ -139826,6 +140598,8 @@ export type Routes = {
|
|
|
139826
140598
|
created_at: string
|
|
139827
140599
|
/** Date and time at which the event occurred. */
|
|
139828
140600
|
occurred_at: string
|
|
140601
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140602
|
+
event_description?: string | undefined
|
|
139829
140603
|
/** ID of the affected Connect Webview. */
|
|
139830
140604
|
connect_webview_id: string
|
|
139831
140605
|
event_type: 'connect_webview.login_succeeded'
|
|
@@ -139849,6 +140623,8 @@ export type Routes = {
|
|
|
139849
140623
|
created_at: string
|
|
139850
140624
|
/** Date and time at which the event occurred. */
|
|
139851
140625
|
occurred_at: string
|
|
140626
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140627
|
+
event_description?: string | undefined
|
|
139852
140628
|
/** ID of the affected Connect Webview. */
|
|
139853
140629
|
connect_webview_id: string
|
|
139854
140630
|
event_type: 'connect_webview.login_failed'
|
|
@@ -139862,6 +140638,8 @@ export type Routes = {
|
|
|
139862
140638
|
created_at: string
|
|
139863
140639
|
/** Date and time at which the event occurred. */
|
|
139864
140640
|
occurred_at: string
|
|
140641
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140642
|
+
event_description?: string | undefined
|
|
139865
140643
|
/** ID of the affected device. */
|
|
139866
140644
|
device_id: string
|
|
139867
140645
|
/** ID of the connected account associated with the event. */
|
|
@@ -139891,6 +140669,8 @@ export type Routes = {
|
|
|
139891
140669
|
created_at: string
|
|
139892
140670
|
/** Date and time at which the event occurred. */
|
|
139893
140671
|
occurred_at: string
|
|
140672
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140673
|
+
event_description?: string | undefined
|
|
139894
140674
|
/** ID of the affected device. */
|
|
139895
140675
|
device_id: string
|
|
139896
140676
|
/** ID of the connected account associated with the event. */
|
|
@@ -139920,6 +140700,8 @@ export type Routes = {
|
|
|
139920
140700
|
created_at: string
|
|
139921
140701
|
/** Date and time at which the event occurred. */
|
|
139922
140702
|
occurred_at: string
|
|
140703
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140704
|
+
event_description?: string | undefined
|
|
139923
140705
|
/** ID of the affected device. */
|
|
139924
140706
|
device_id: string
|
|
139925
140707
|
/** ID of the connected account associated with the event. */
|
|
@@ -139949,6 +140731,8 @@ export type Routes = {
|
|
|
139949
140731
|
created_at: string
|
|
139950
140732
|
/** Date and time at which the event occurred. */
|
|
139951
140733
|
occurred_at: string
|
|
140734
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140735
|
+
event_description?: string | undefined
|
|
139952
140736
|
/** ID of the affected device. */
|
|
139953
140737
|
device_id: string
|
|
139954
140738
|
/** ID of the connected account associated with the event. */
|
|
@@ -139978,6 +140762,8 @@ export type Routes = {
|
|
|
139978
140762
|
created_at: string
|
|
139979
140763
|
/** Date and time at which the event occurred. */
|
|
139980
140764
|
occurred_at: string
|
|
140765
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140766
|
+
event_description?: string | undefined
|
|
139981
140767
|
/** ID of the affected device. */
|
|
139982
140768
|
device_id: string
|
|
139983
140769
|
/** ID of the connected account associated with the event. */
|
|
@@ -140007,6 +140793,8 @@ export type Routes = {
|
|
|
140007
140793
|
created_at: string
|
|
140008
140794
|
/** Date and time at which the event occurred. */
|
|
140009
140795
|
occurred_at: string
|
|
140796
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140797
|
+
event_description?: string | undefined
|
|
140010
140798
|
/** ID of the affected device. */
|
|
140011
140799
|
device_id: string
|
|
140012
140800
|
/** ID of the connected account associated with the event. */
|
|
@@ -140077,6 +140865,8 @@ export type Routes = {
|
|
|
140077
140865
|
created_at: string
|
|
140078
140866
|
/** Date and time at which the event occurred. */
|
|
140079
140867
|
occurred_at: string
|
|
140868
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140869
|
+
event_description?: string | undefined
|
|
140080
140870
|
/** ID of the affected device. */
|
|
140081
140871
|
device_id: string
|
|
140082
140872
|
/** ID of the connected account associated with the event. */
|
|
@@ -140147,6 +140937,8 @@ export type Routes = {
|
|
|
140147
140937
|
created_at: string
|
|
140148
140938
|
/** Date and time at which the event occurred. */
|
|
140149
140939
|
occurred_at: string
|
|
140940
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140941
|
+
event_description?: string | undefined
|
|
140150
140942
|
/** ID of the affected device. */
|
|
140151
140943
|
device_id: string
|
|
140152
140944
|
/** ID of the connected account associated with the event. */
|
|
@@ -140176,6 +140968,8 @@ export type Routes = {
|
|
|
140176
140968
|
created_at: string
|
|
140177
140969
|
/** Date and time at which the event occurred. */
|
|
140178
140970
|
occurred_at: string
|
|
140971
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
140972
|
+
event_description?: string | undefined
|
|
140179
140973
|
/** ID of the affected device. */
|
|
140180
140974
|
device_id: string
|
|
140181
140975
|
/** ID of the connected account associated with the event. */
|
|
@@ -140207,6 +141001,8 @@ export type Routes = {
|
|
|
140207
141001
|
created_at: string
|
|
140208
141002
|
/** Date and time at which the event occurred. */
|
|
140209
141003
|
occurred_at: string
|
|
141004
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141005
|
+
event_description?: string | undefined
|
|
140210
141006
|
/** ID of the affected device. */
|
|
140211
141007
|
device_id: string
|
|
140212
141008
|
/** ID of the connected account associated with the event. */
|
|
@@ -140240,6 +141036,8 @@ export type Routes = {
|
|
|
140240
141036
|
created_at: string
|
|
140241
141037
|
/** Date and time at which the event occurred. */
|
|
140242
141038
|
occurred_at: string
|
|
141039
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141040
|
+
event_description?: string | undefined
|
|
140243
141041
|
/** ID of the affected device. */
|
|
140244
141042
|
device_id: string
|
|
140245
141043
|
/** ID of the connected account associated with the event. */
|
|
@@ -140269,6 +141067,8 @@ export type Routes = {
|
|
|
140269
141067
|
created_at: string
|
|
140270
141068
|
/** Date and time at which the event occurred. */
|
|
140271
141069
|
occurred_at: string
|
|
141070
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141071
|
+
event_description?: string | undefined
|
|
140272
141072
|
/** ID of the affected device. */
|
|
140273
141073
|
device_id: string
|
|
140274
141074
|
/** ID of the connected account associated with the event. */
|
|
@@ -140300,6 +141100,8 @@ export type Routes = {
|
|
|
140300
141100
|
created_at: string
|
|
140301
141101
|
/** Date and time at which the event occurred. */
|
|
140302
141102
|
occurred_at: string
|
|
141103
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141104
|
+
event_description?: string | undefined
|
|
140303
141105
|
/** ID of the affected device. */
|
|
140304
141106
|
device_id: string
|
|
140305
141107
|
/** ID of the connected account associated with the event. */
|
|
@@ -140329,6 +141131,8 @@ export type Routes = {
|
|
|
140329
141131
|
created_at: string
|
|
140330
141132
|
/** Date and time at which the event occurred. */
|
|
140331
141133
|
occurred_at: string
|
|
141134
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141135
|
+
event_description?: string | undefined
|
|
140332
141136
|
/** ID of the affected device. */
|
|
140333
141137
|
device_id: string
|
|
140334
141138
|
/** ID of the connected account associated with the event. */
|
|
@@ -140358,6 +141162,8 @@ export type Routes = {
|
|
|
140358
141162
|
created_at: string
|
|
140359
141163
|
/** Date and time at which the event occurred. */
|
|
140360
141164
|
occurred_at: string
|
|
141165
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141166
|
+
event_description?: string | undefined
|
|
140361
141167
|
/** ID of the affected device. */
|
|
140362
141168
|
device_id: string
|
|
140363
141169
|
/** ID of the connected account associated with the event. */
|
|
@@ -140387,6 +141193,8 @@ export type Routes = {
|
|
|
140387
141193
|
created_at: string
|
|
140388
141194
|
/** Date and time at which the event occurred. */
|
|
140389
141195
|
occurred_at: string
|
|
141196
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141197
|
+
event_description?: string | undefined
|
|
140390
141198
|
/** ID of the affected device. */
|
|
140391
141199
|
device_id: string
|
|
140392
141200
|
/** ID of the connected account associated with the event. */
|
|
@@ -140416,6 +141224,8 @@ export type Routes = {
|
|
|
140416
141224
|
created_at: string
|
|
140417
141225
|
/** Date and time at which the event occurred. */
|
|
140418
141226
|
occurred_at: string
|
|
141227
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141228
|
+
event_description?: string | undefined
|
|
140419
141229
|
/** ID of the affected device. */
|
|
140420
141230
|
device_id: string
|
|
140421
141231
|
/** ID of the connected account associated with the event. */
|
|
@@ -140481,6 +141291,8 @@ export type Routes = {
|
|
|
140481
141291
|
created_at: string
|
|
140482
141292
|
/** Date and time at which the event occurred. */
|
|
140483
141293
|
occurred_at: string
|
|
141294
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141295
|
+
event_description?: string | undefined
|
|
140484
141296
|
/** ID of the affected device. */
|
|
140485
141297
|
device_id: string
|
|
140486
141298
|
/** ID of the connected account associated with the event. */
|
|
@@ -140510,6 +141322,8 @@ export type Routes = {
|
|
|
140510
141322
|
created_at: string
|
|
140511
141323
|
/** Date and time at which the event occurred. */
|
|
140512
141324
|
occurred_at: string
|
|
141325
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141326
|
+
event_description?: string | undefined
|
|
140513
141327
|
/** ID of the affected device. */
|
|
140514
141328
|
device_id: string
|
|
140515
141329
|
/** ID of the connected account associated with the event. */
|
|
@@ -140575,6 +141389,8 @@ export type Routes = {
|
|
|
140575
141389
|
created_at: string
|
|
140576
141390
|
/** Date and time at which the event occurred. */
|
|
140577
141391
|
occurred_at: string
|
|
141392
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141393
|
+
event_description?: string | undefined
|
|
140578
141394
|
/** ID of the affected device. */
|
|
140579
141395
|
device_id: string
|
|
140580
141396
|
/** ID of the connected account associated with the event. */
|
|
@@ -140604,6 +141420,8 @@ export type Routes = {
|
|
|
140604
141420
|
created_at: string
|
|
140605
141421
|
/** Date and time at which the event occurred. */
|
|
140606
141422
|
occurred_at: string
|
|
141423
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141424
|
+
event_description?: string | undefined
|
|
140607
141425
|
/** ID of the affected device. */
|
|
140608
141426
|
device_id: string
|
|
140609
141427
|
/** ID of the connected account associated with the event. */
|
|
@@ -140633,6 +141451,8 @@ export type Routes = {
|
|
|
140633
141451
|
created_at: string
|
|
140634
141452
|
/** Date and time at which the event occurred. */
|
|
140635
141453
|
occurred_at: string
|
|
141454
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141455
|
+
event_description?: string | undefined
|
|
140636
141456
|
/** ID of the affected device. */
|
|
140637
141457
|
device_id: string
|
|
140638
141458
|
/** ID of the connected account associated with the event. */
|
|
@@ -140698,6 +141518,8 @@ export type Routes = {
|
|
|
140698
141518
|
created_at: string
|
|
140699
141519
|
/** Date and time at which the event occurred. */
|
|
140700
141520
|
occurred_at: string
|
|
141521
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141522
|
+
event_description?: string | undefined
|
|
140701
141523
|
/** ID of the affected device. */
|
|
140702
141524
|
device_id: string
|
|
140703
141525
|
/** ID of the connected account associated with the event. */
|
|
@@ -140747,6 +141569,8 @@ export type Routes = {
|
|
|
140747
141569
|
created_at: string
|
|
140748
141570
|
/** Date and time at which the event occurred. */
|
|
140749
141571
|
occurred_at: string
|
|
141572
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141573
|
+
event_description?: string | undefined
|
|
140750
141574
|
/** ID of the affected device. */
|
|
140751
141575
|
device_id: string
|
|
140752
141576
|
/** ID of the connected account associated with the event. */
|
|
@@ -140801,6 +141625,8 @@ export type Routes = {
|
|
|
140801
141625
|
created_at: string
|
|
140802
141626
|
/** Date and time at which the event occurred. */
|
|
140803
141627
|
occurred_at: string
|
|
141628
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141629
|
+
event_description?: string | undefined
|
|
140804
141630
|
/** ID of the affected device. */
|
|
140805
141631
|
device_id?: string | undefined
|
|
140806
141632
|
/** ID of the connected account associated with the event. */
|
|
@@ -140879,6 +141705,8 @@ export type Routes = {
|
|
|
140879
141705
|
created_at: string
|
|
140880
141706
|
/** Date and time at which the event occurred. */
|
|
140881
141707
|
occurred_at: string
|
|
141708
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141709
|
+
event_description?: string | undefined
|
|
140882
141710
|
/** ID of the affected device. */
|
|
140883
141711
|
device_id?: string | undefined
|
|
140884
141712
|
/** ID of the connected account associated with the event. */
|
|
@@ -140934,6 +141762,8 @@ export type Routes = {
|
|
|
140934
141762
|
created_at: string
|
|
140935
141763
|
/** Date and time at which the event occurred. */
|
|
140936
141764
|
occurred_at: string
|
|
141765
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141766
|
+
event_description?: string | undefined
|
|
140937
141767
|
/** ID of the affected device. */
|
|
140938
141768
|
device_id: string
|
|
140939
141769
|
/** ID of the connected account associated with the event. */
|
|
@@ -140969,6 +141799,8 @@ export type Routes = {
|
|
|
140969
141799
|
created_at: string
|
|
140970
141800
|
/** Date and time at which the event occurred. */
|
|
140971
141801
|
occurred_at: string
|
|
141802
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141803
|
+
event_description?: string | undefined
|
|
140972
141804
|
/** ID of the affected device. */
|
|
140973
141805
|
device_id: string
|
|
140974
141806
|
/** ID of the connected account associated with the event. */
|
|
@@ -141023,6 +141855,8 @@ export type Routes = {
|
|
|
141023
141855
|
created_at: string
|
|
141024
141856
|
/** Date and time at which the event occurred. */
|
|
141025
141857
|
occurred_at: string
|
|
141858
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141859
|
+
event_description?: string | undefined
|
|
141026
141860
|
/** ID of the affected device. */
|
|
141027
141861
|
device_id: string
|
|
141028
141862
|
/** ID of the connected account associated with the event. */
|
|
@@ -141064,6 +141898,8 @@ export type Routes = {
|
|
|
141064
141898
|
created_at: string
|
|
141065
141899
|
/** Date and time at which the event occurred. */
|
|
141066
141900
|
occurred_at: string
|
|
141901
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141902
|
+
event_description?: string | undefined
|
|
141067
141903
|
/** ID of the affected device. */
|
|
141068
141904
|
device_id: string
|
|
141069
141905
|
/** ID of the connected account associated with the event. */
|
|
@@ -141105,6 +141941,8 @@ export type Routes = {
|
|
|
141105
141941
|
created_at: string
|
|
141106
141942
|
/** Date and time at which the event occurred. */
|
|
141107
141943
|
occurred_at: string
|
|
141944
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141945
|
+
event_description?: string | undefined
|
|
141108
141946
|
/** ID of the affected device. */
|
|
141109
141947
|
device_id: string
|
|
141110
141948
|
/** ID of the connected account associated with the event. */
|
|
@@ -141142,6 +141980,8 @@ export type Routes = {
|
|
|
141142
141980
|
created_at: string
|
|
141143
141981
|
/** Date and time at which the event occurred. */
|
|
141144
141982
|
occurred_at: string
|
|
141983
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
141984
|
+
event_description?: string | undefined
|
|
141145
141985
|
/** ID of the affected device. */
|
|
141146
141986
|
device_id: string
|
|
141147
141987
|
/** ID of the connected account associated with the event. */
|
|
@@ -141175,6 +142015,8 @@ export type Routes = {
|
|
|
141175
142015
|
created_at: string
|
|
141176
142016
|
/** Date and time at which the event occurred. */
|
|
141177
142017
|
occurred_at: string
|
|
142018
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142019
|
+
event_description?: string | undefined
|
|
141178
142020
|
/** ID of the affected device. */
|
|
141179
142021
|
device_id: string
|
|
141180
142022
|
/** ID of the connected account associated with the event. */
|
|
@@ -141206,6 +142048,8 @@ export type Routes = {
|
|
|
141206
142048
|
created_at: string
|
|
141207
142049
|
/** Date and time at which the event occurred. */
|
|
141208
142050
|
occurred_at: string
|
|
142051
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142052
|
+
event_description?: string | undefined
|
|
141209
142053
|
/** ID of the affected device. */
|
|
141210
142054
|
device_id: string
|
|
141211
142055
|
/** ID of the connected account associated with the event. */
|
|
@@ -141245,6 +142089,8 @@ export type Routes = {
|
|
|
141245
142089
|
created_at: string
|
|
141246
142090
|
/** Date and time at which the event occurred. */
|
|
141247
142091
|
occurred_at: string
|
|
142092
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142093
|
+
event_description?: string | undefined
|
|
141248
142094
|
/** ID of the affected device. */
|
|
141249
142095
|
device_id: string
|
|
141250
142096
|
/** ID of the connected account associated with the event. */
|
|
@@ -141278,6 +142124,8 @@ export type Routes = {
|
|
|
141278
142124
|
created_at: string
|
|
141279
142125
|
/** Date and time at which the event occurred. */
|
|
141280
142126
|
occurred_at: string
|
|
142127
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142128
|
+
event_description?: string | undefined
|
|
141281
142129
|
/** ID of the affected enrollment automation. */
|
|
141282
142130
|
enrollment_automation_id: string
|
|
141283
142131
|
event_type: 'enrollment_automation.deleted'
|
|
@@ -141291,6 +142139,8 @@ export type Routes = {
|
|
|
141291
142139
|
created_at: string
|
|
141292
142140
|
/** Date and time at which the event occurred. */
|
|
141293
142141
|
occurred_at: string
|
|
142142
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142143
|
+
event_description?: string | undefined
|
|
141294
142144
|
/** ID of the affected phone device. */
|
|
141295
142145
|
device_id: string
|
|
141296
142146
|
/** Custom metadata of the device; present when device_id is provided. */
|
|
@@ -141310,6 +142160,8 @@ export type Routes = {
|
|
|
141310
142160
|
created_at: string
|
|
141311
142161
|
/** Date and time at which the event occurred. */
|
|
141312
142162
|
occurred_at: string
|
|
142163
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142164
|
+
event_description?: string | undefined
|
|
141313
142165
|
/** ID of the affected space. */
|
|
141314
142166
|
space_id: string
|
|
141315
142167
|
/** Type of the event. */
|
|
@@ -141330,6 +142182,8 @@ export type Routes = {
|
|
|
141330
142182
|
created_at: string
|
|
141331
142183
|
/** Date and time at which the event occurred. */
|
|
141332
142184
|
occurred_at: string
|
|
142185
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142186
|
+
event_description?: string | undefined
|
|
141333
142187
|
/** ID of the affected space. */
|
|
141334
142188
|
space_id: string
|
|
141335
142189
|
/** Type of the event. */
|
|
@@ -141350,6 +142204,8 @@ export type Routes = {
|
|
|
141350
142204
|
created_at: string
|
|
141351
142205
|
/** Date and time at which the event occurred. */
|
|
141352
142206
|
occurred_at: string
|
|
142207
|
+
/** Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event. */
|
|
142208
|
+
event_description?: string | undefined
|
|
141353
142209
|
/** ID of the affected space. */
|
|
141354
142210
|
space_id: string
|
|
141355
142211
|
/** Type of the event. */
|