Skip to content

Commit f9c032d

Browse files
Add artifacts for v7.0.2178
1 parent 92e6a42 commit f9c032d

3 files changed

Lines changed: 64 additions & 1 deletion

File tree

TAG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v7.0.0
1+
v7.0.2178

gql/telemetry.graphql

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,21 @@ type TelemetryQuery {
2424
"""
2525
after: String
2626
): ExportedEventsConnection!
27+
28+
"""
29+
List events that are currently queued for export. Events are removed from
30+
this result set as they are exported.
31+
"""
32+
eventsQueuedForExport(
33+
"""
34+
Returns the first n queued events.
35+
"""
36+
first: Int = 50
37+
"""
38+
Opaque pagination cursor.
39+
"""
40+
after: String
41+
): QueuedEventsConnection!
2742
}
2843

2944
"""
@@ -44,6 +59,46 @@ type ExportedEvent {
4459
payload: JSONValue!
4560
}
4661

62+
"""
63+
QueuedEvent represents a telemetry event that is queued for export. Events are
64+
removed from this result set as they are exported.
65+
"""
66+
type QueuedEvent {
67+
"""
68+
The unique id of the event queued for export.
69+
"""
70+
id: ID!
71+
"""
72+
The time this event was queued for export.
73+
"""
74+
queuedAt: DateTime!
75+
"""
76+
The raw event payload that is queued for export, rendered as JSON.
77+
"""
78+
payload: JSONValue!
79+
}
80+
81+
"""
82+
A list of telemetry events currently queued for export. Events are removed
83+
from this result set as they are exported.
84+
"""
85+
type QueuedEventsConnection {
86+
"""
87+
A list of queued events, with the most recently queued events first.
88+
"""
89+
nodes: [QueuedEvent!]!
90+
91+
"""
92+
The total number of events in the connection.
93+
"""
94+
totalCount: Int!
95+
96+
"""
97+
Pagination information.
98+
"""
99+
pageInfo: PageInfo!
100+
}
101+
47102
"""
48103
A list of recently exported telemetry event payloads.
49104
"""

schemas/settings.schema.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,14 @@
176176
"!go": {
177177
"pointer": true
178178
}
179+
},
180+
"smartHover": {
181+
"description": "Controls whether you see AI-generated summaries in hover tooltips. Set to false to opt out.",
182+
"type": "boolean",
183+
"default": true,
184+
"!go": {
185+
"pointer": true
186+
}
179187
}
180188
},
181189
"group": "Experimental"

0 commit comments

Comments
 (0)