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.
@@ -6747,6 +6747,8 @@ components:
6747
6747
PlatformAgentsSearchRequest:
6748
6748
type: object
6749
6749
additionalProperties: false
6750
+
example:
6751
+
name: HR Policy Agent
6750
6752
properties:
6751
6753
name:
6752
6754
type: string
@@ -7070,6 +7072,12 @@ components:
7070
7072
additionalProperties: false
7071
7073
description: |
7072
7074
Request to run an agent. A request MUST supply either `messages` (a non-empty conversation) or `input` (for input-form triggered agents).
description: Indicates whether additional pages of results are available.
8107
8134
next_cursor:
8108
-
type: string
8109
-
nullable: true
8135
+
type:
8136
+
- string
8137
+
- "null"
8110
8138
description: Opaque token to pass as `cursor` in the next request.
8111
8139
request_id:
8112
8140
type: string
@@ -8283,8 +8311,9 @@ components:
8283
8311
type: boolean
8284
8312
description: Whether additional results are available.
8285
8313
next_cursor:
8286
-
type: string
8287
-
nullable: true
8314
+
type:
8315
+
- string
8316
+
- "null"
8288
8317
description: Cursor for the next page, or null when no more results are available.
8289
8318
request_id:
8290
8319
type: string
@@ -8644,8 +8673,9 @@ components:
8644
8673
type: boolean
8645
8674
description: Whether additional results are available.
8646
8675
next_cursor:
8647
-
type: string
8648
-
nullable: true
8676
+
type:
8677
+
- string
8678
+
- "null"
8649
8679
description: Cursor for the next page, or null when no more results are available.
8650
8680
request_id:
8651
8681
type: string
@@ -12896,15 +12926,18 @@ components:
12896
12926
- EXECUTION
12897
12927
- AUTHENTICATION_SUGGESTION
12898
12928
- VOTE_SUGGESTION
12929
+
- SANDBOX_EGRESS
12899
12930
description: The type of request made to the user.
12900
12931
x-enumDescriptions:
12901
12932
EXECUTION: Request for approving execution of the tool.
12902
12933
AUTHENTICATION_SUGGESTION: Request for authenticating to a tool, provided as a (tool) suggestion.
12903
12934
VOTE_SUGGESTION: Suggestion to vote for enabling an available-but-not-enabled tool.
12935
+
SANDBOX_EGRESS: Request to approve an outbound/egress call from the sandbox.
12904
12936
x-speakeasy-enum-descriptions:
12905
12937
EXECUTION: Request for approving execution of the tool.
12906
12938
AUTHENTICATION_SUGGESTION: Request for authenticating to a tool, provided as a (tool) suggestion.
12907
12939
VOTE_SUGGESTION: Suggestion to vote for enabling an available-but-not-enabled tool.
12940
+
SANDBOX_EGRESS: Request to approve an outbound/egress call from the sandbox.
12908
12941
requestId:
12909
12942
type: string
12910
12943
description: Unique identifier for this request.
@@ -13004,6 +13037,9 @@ components:
13004
13037
13005
13038
For VOTE_SUGGESTION requests:
13006
13039
- voted: whether the user voted for this tool
13040
+
13041
+
For SANDBOX_EGRESS requests:
13042
+
- isGranted: whether the sandbox egress call is approved
13007
13043
x-visibility: Preview
13008
13044
x-glean-experimental:
13009
13045
id: 3eae3ee7-2c06-4027-be14-98260a3ce608
@@ -13590,7 +13626,7 @@ components:
13590
13626
isDraft:
13591
13627
type: boolean
13592
13628
description: |
13593
-
When true, validates and stores a draft preview without publishing (used for PR preview links). Takes precedence over `syncMode`: when `isDraft` is true, `syncMode` is ignored.
13629
+
Deprecated. Draft mutation semantics are not supported for transient previews. Use transient and parentWorkflowId instead.
0 commit comments