You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In addition to the data sources that Glean has built-in support for, Glean also provides a REST API that enables customers to put arbitrary content in the search index. This is useful, for example, for doing permissions-aware search over content in internal tools that reside on-prem as well as for searching over applications that Glean does not currently support first class. In addition these APIs allow the customer to push organization data (people info, organization structure etc) into Glean.
@@ -22,7 +22,7 @@ info:
22
22
These API clients provide type-safe, idiomatic interfaces for working with Glean IndexingAPIs in your language of choice.
description: The collections to which the answer belongs.
@@ -5873,6 +5839,21 @@ components:
5873
5839
attendees:
5874
5840
$ref: "#/components/schemas/CalendarAttendees"
5875
5841
description: The attendee list, including their response status
5842
+
isCancelled:
5843
+
type: boolean
5844
+
description: Whether the meeting has been cancelled
5845
+
location:
5846
+
type: string
5847
+
description: The location/venue of the meeting
5848
+
responseStatus:
5849
+
type: string
5850
+
description: The current user's response status (accepted, declined, tentativelyAccepted, none)
5851
+
conferenceUri:
5852
+
type: string
5853
+
description: The meeting join link (Teams, Zoom, etc.)
5854
+
conferenceProvider:
5855
+
type: string
5856
+
description: The conference provider (e.g., "Microsoft Teams", "Zoom")
5876
5857
AppResult:
5877
5858
required:
5878
5859
- datasource
@@ -6132,8 +6113,6 @@ components:
6132
6113
$ref: "#/components/schemas/AppResult"
6133
6114
collection:
6134
6115
$ref: "#/components/schemas/Collection"
6135
-
answerBoard:
6136
-
$ref: "#/components/schemas/AnswerBoard"
6137
6116
code:
6138
6117
$ref: "#/components/schemas/Code"
6139
6118
shortcut:
@@ -7617,6 +7596,9 @@ components:
7617
7596
chatId:
7618
7597
type: string
7619
7598
description: The id of the Chat that context should be retrieved from and messages added to. An empty id starts a new Chat, and the Chat is saved if saveChat is true.
7599
+
agentConfig:
7600
+
$ref: "#/components/schemas/AgentConfig"
7601
+
description: Describes the agent that will execute the request.
7620
7602
ChatRestrictionFilters:
7621
7603
allOf:
7622
7604
- $ref: "#/components/schemas/RestrictionFilters"
@@ -7635,9 +7617,6 @@ components:
7635
7617
- $ref: "#/components/schemas/ChatRequestBase"
7636
7618
- type: object
7637
7619
properties:
7638
-
agentConfig:
7639
-
$ref: "#/components/schemas/AgentConfig"
7640
-
description: Describes the agent that will execute the request.
0 commit comments