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 +5840,21 @@ components:
5873
5840
attendees:
5874
5841
$ref: "#/components/schemas/CalendarAttendees"
5875
5842
description: The attendee list, including their response status
5843
+
isCancelled:
5844
+
type: boolean
5845
+
description: Whether the meeting has been cancelled
5846
+
location:
5847
+
type: string
5848
+
description: The location/venue of the meeting
5849
+
responseStatus:
5850
+
type: string
5851
+
description: The current user's response status (accepted, declined, tentativelyAccepted, none)
5852
+
conferenceUri:
5853
+
type: string
5854
+
description: The meeting join link (Teams, Zoom, etc.)
5855
+
conferenceProvider:
5856
+
type: string
5857
+
description: The conference provider (e.g., "Microsoft Teams", "Zoom")
5876
5858
AppResult:
5877
5859
required:
5878
5860
- datasource
@@ -6132,8 +6114,6 @@ components:
6132
6114
$ref: "#/components/schemas/AppResult"
6133
6115
collection:
6134
6116
$ref: "#/components/schemas/Collection"
6135
-
answerBoard:
6136
-
$ref: "#/components/schemas/AnswerBoard"
6137
6117
code:
6138
6118
$ref: "#/components/schemas/Code"
6139
6119
shortcut:
@@ -7617,6 +7597,9 @@ components:
7617
7597
chatId:
7618
7598
type: string
7619
7599
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.
7600
+
agentConfig:
7601
+
$ref: "#/components/schemas/AgentConfig"
7602
+
description: Describes the agent that will execute the request.
7620
7603
ChatRestrictionFilters:
7621
7604
allOf:
7622
7605
- $ref: "#/components/schemas/RestrictionFilters"
@@ -7635,9 +7618,6 @@ components:
7635
7618
- $ref: "#/components/schemas/ChatRequestBase"
7636
7619
- type: object
7637
7620
properties:
7638
-
agentConfig:
7639
-
$ref: "#/components/schemas/AgentConfig"
7640
-
description: Describes the agent that will execute the request.
0 commit comments