| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent c80cc97 commit ee2fa4b
33 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -30,7 +30,7 @@ generation: | |||
| 30 | 30 | generateNewTests: false | |
| 31 | 31 | skipResponseBodyAssertions: false | |
| 32 | 32 | java: | |
| 33 | - version: 0.14.0 | ||
| 33 | + version: 0.14.1 | ||
| 34 | 34 | additionalDependencies: [] | |
| 35 | 35 | additionalPlugins: [] | |
| 36 | 36 | artifactID: glean-api-client | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,8 +2,8 @@ openapi: 3.0.0 | |||
| 2 | 2 | info: | |
| 3 | 3 | version: "0.9.0" | |
| 4 | 4 | title: Glean API | |
| 5 | - x-source-commit-sha: 750ec3e4db6f2877f191460b47bff807273c68d8 | ||
| 6 | - x-open-api-commit-sha: 5130487252df59e5fe21a96c4e758609933045da | ||
| 5 | + x-source-commit-sha: 33bf057cf0f948a83126e81582717aebdb622bfa | ||
| 6 | + x-open-api-commit-sha: 4f3a4abf8f003a4edc5522021b22184c76d051ad | ||
| 7 | 7 | description: | | |
| 8 | 8 | # Introduction | |
| 9 | 9 | 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. | |
@@ -67,6 +67,8 @@ paths: | |||
| 67 | 67 | $ref: "#/components/responses/PlatformNotFound" | |
| 68 | 68 | "408": | |
| 69 | 69 | $ref: "#/components/responses/PlatformRequestTimeout" | |
| 70 | + "413": | ||
| 71 | + $ref: "#/components/responses/PlatformRequestTooLarge" | ||
| 70 | 72 | "429": | |
| 71 | 73 | $ref: "#/components/responses/PlatformTooManyRequests" | |
| 72 | 74 | "500": | |
@@ -236,6 +238,8 @@ paths: | |||
| 236 | 238 | $ref: "#/components/responses/PlatformRequestTimeout" | |
| 237 | 239 | "409": | |
| 238 | 240 | $ref: "#/components/responses/PlatformConflict" | |
| 241 | + "413": | ||
| 242 | + $ref: "#/components/responses/PlatformRequestTooLarge" | ||
| 239 | 243 | "429": | |
| 240 | 244 | $ref: "#/components/responses/PlatformTooManyRequests" | |
| 241 | 245 | "500": | |
@@ -282,6 +286,8 @@ paths: | |||
| 282 | 286 | $ref: "#/components/responses/PlatformNotFound" | |
| 283 | 287 | "408": | |
| 284 | 288 | $ref: "#/components/responses/PlatformRequestTimeout" | |
| 289 | + "413": | ||
| 290 | + $ref: "#/components/responses/PlatformRequestTooLarge" | ||
| 285 | 291 | "429": | |
| 286 | 292 | $ref: "#/components/responses/PlatformTooManyRequests" | |
| 287 | 293 | "500": | |
@@ -5078,6 +5084,7 @@ components: | |||
| 5078 | 5084 | - resource_not_found | |
| 5079 | 5085 | - method_not_allowed | |
| 5080 | 5086 | - request_timeout | |
| 5087 | + - request_too_large | ||
| 5081 | 5088 | - conflict | |
| 5082 | 5089 | - gone | |
| 5083 | 5090 | - unprocessable_query | |
@@ -5248,6 +5255,7 @@ components: | |||
| 5248 | 5255 | $ref: "#/components/schemas/PlatformMessageRole" | |
| 5249 | 5256 | content: | |
| 5250 | 5257 | type: array | |
| 5258 | + minItems: 1 | ||
| 5251 | 5259 | description: Content blocks in the message. | |
| 5252 | 5260 | items: | |
| 5253 | 5261 | $ref: "#/components/schemas/PlatformMessageTextBlock" | |
@@ -7260,6 +7268,44 @@ components: | |||
| 7260 | 7268 | editUrl: | |
| 7261 | 7269 | type: string | |
| 7262 | 7270 | description: The URL using which the user can access the edit page of the shortcut. | |
| 7271 | + UgcType: | ||
| 7272 | + enum: | ||
| 7273 | + - AGENT_TYPE | ||
| 7274 | + - ANNOUNCEMENTS_TYPE | ||
| 7275 | + - ANSWERS_TYPE | ||
| 7276 | + - CHATS_TYPE | ||
| 7277 | + - COLLECTIONS_TYPE | ||
| 7278 | + - EMAIL_TYPE | ||
| 7279 | + - HTML_CODE_TYPE | ||
| 7280 | + - IMAGE_TYPE | ||
| 7281 | + - MESSAGE_TYPE | ||
| 7282 | + - PAPER_TYPE | ||
| 7283 | + - PRISM_VIEWS_TYPE | ||
| 7284 | + - PROMPT_TEMPLATES_TYPE | ||
| 7285 | + - PINS_TYPE | ||
| 7286 | + - SCRIBES_TYPE | ||
| 7287 | + - SHORTCUTS_TYPE | ||
| 7288 | + - SLIDE_TYPE | ||
| 7289 | + - SPREADSHEET_TYPE | ||
| 7290 | + - INLINE_HTML_TYPE | ||
| 7291 | + - PODCAST_TYPE | ||
| 7292 | + - WORKFLOWS_TYPE | ||
| 7293 | + FavoriteInfo: | ||
| 7294 | + type: object | ||
| 7295 | + properties: | ||
| 7296 | + ugcType: | ||
| 7297 | + $ref: '#/components/schemas/UgcType' | ||
| 7298 | + id: | ||
| 7299 | + type: string | ||
| 7300 | + description: Opaque id of the UGC. | ||
| 7301 | + count: | ||
| 7302 | + type: integer | ||
| 7303 | + description: Number of users this object has been favorited by. | ||
| 7304 | + x-includeEmpty: true | ||
| 7305 | + favoritedByUser: | ||
| 7306 | + type: boolean | ||
| 7307 | + description: If the requesting user has favorited this object. | ||
| 7308 | + x-includeEmpty: true | ||
| 7263 | 7309 | Shortcut: | |
| 7264 | 7310 | allOf: | |
| 7265 | 7311 | - $ref: '#/components/schemas/UserGeneratedContentId' | |
@@ -7279,6 +7325,8 @@ components: | |||
| 7279 | 7325 | items: | |
| 7280 | 7326 | $ref: '#/components/schemas/UserRoleSpecification' | |
| 7281 | 7327 | description: A list of user roles for the Go Link. | |
| 7328 | + favoriteInfo: | ||
| 7329 | + $ref: '#/components/schemas/FavoriteInfo' | ||
| 7282 | 7330 | required: | |
| 7283 | 7331 | - inputAlias | |
| 7284 | 7332 | Collection: | |
@@ -7330,6 +7378,8 @@ components: | |||
| 7330 | 7378 | items: | |
| 7331 | 7379 | $ref: '#/components/schemas/UserRoleSpecification' | |
| 7332 | 7380 | description: A list of user roles for the Collection. | |
| 7381 | + favoriteInfo: | ||
| 7382 | + $ref: '#/components/schemas/FavoriteInfo' | ||
| 7333 | 7383 | required: | |
| 7334 | 7384 | - id | |
| 7335 | 7385 | - description | |
@@ -8144,6 +8194,8 @@ components: | |||
| 8144 | 8194 | updateTime: | |
| 8145 | 8195 | type: string | |
| 8146 | 8196 | format: date-time | |
| 8197 | + favoriteInfo: | ||
| 8198 | + $ref: '#/components/schemas/FavoriteInfo' | ||
| 8147 | 8199 | required: | |
| 8148 | 8200 | - documentId | |
| 8149 | 8201 | PersonTeam: | |
@@ -8969,6 +9021,8 @@ components: | |||
| 8969 | 9021 | isPublished: | |
| 8970 | 9022 | type: boolean | |
| 8971 | 9023 | description: Whether or not the announcement is published. | |
| 9024 | + favoriteInfo: | ||
| 9025 | + $ref: '#/components/schemas/FavoriteInfo' | ||
| 8972 | 9026 | DeleteAnnouncementRequest: | |
| 8973 | 9027 | properties: | |
| 8974 | 9028 | id: | |
@@ -9055,6 +9109,8 @@ components: | |||
| 9055 | 9109 | message: Use `answer.trackingToken` instead. | |
| 9056 | 9110 | removal: "2027-01-15" | |
| 9057 | 9111 | x-speakeasy-deprecation-message: "Deprecated on 2026-05-07, removal scheduled for 2027-01-15: Use `answer.trackingToken` instead." | |
| 9112 | + favoriteInfo: | ||
| 9113 | + $ref: '#/components/schemas/FavoriteInfo' | ||
| 9058 | 9114 | required: | |
| 9059 | 9115 | - answer | |
| 9060 | 9116 | GetAnswerError: | |
@@ -11896,6 +11952,7 @@ components: | |||
| 11896 | 11952 | - ZERO_STATE_WORKFLOW_SUGGESTION | |
| 11897 | 11953 | - PERSONALIZED_CHAT_SUGGESTION | |
| 11898 | 11954 | - DAILY_DIGEST | |
| 11955 | + - PODCAST | ||
| 11899 | 11956 | - TASK | |
| 11900 | 11957 | - PLAN_MY_DAY | |
| 11901 | 11958 | - END_MY_DAY | |
@@ -12239,44 +12296,6 @@ components: | |||
| 12239 | 12296 | items: | |
| 12240 | 12297 | $ref: '#/components/schemas/UserRoleSpecification' | |
| 12241 | 12298 | description: A list of roles for this prompt template explicitly granted. | |
| 12242 | - UgcType: | ||
| 12243 | - enum: | ||
| 12244 | - - AGENT_TYPE | ||
| 12245 | - - ANNOUNCEMENTS_TYPE | ||
| 12246 | - - ANSWERS_TYPE | ||
| 12247 | - - CHATS_TYPE | ||
| 12248 | - - COLLECTIONS_TYPE | ||
| 12249 | - - EMAIL_TYPE | ||
| 12250 | - - HTML_CODE_TYPE | ||
| 12251 | - - IMAGE_TYPE | ||
| 12252 | - - MESSAGE_TYPE | ||
| 12253 | - - PAPER_TYPE | ||
| 12254 | - - PRISM_VIEWS_TYPE | ||
| 12255 | - - PROMPT_TEMPLATES_TYPE | ||
| 12256 | - - PINS_TYPE | ||
| 12257 | - - SCRIBES_TYPE | ||
| 12258 | - - SHORTCUTS_TYPE | ||
| 12259 | - - SLIDE_TYPE | ||
| 12260 | - - SPREADSHEET_TYPE | ||
| 12261 | - - INLINE_HTML_TYPE | ||
| 12262 | - - PODCAST_TYPE | ||
| 12263 | - - WORKFLOWS_TYPE | ||
| 12264 | - FavoriteInfo: | ||
| 12265 | - type: object | ||
| 12266 | - properties: | ||
| 12267 | - ugcType: | ||
| 12268 | - $ref: '#/components/schemas/UgcType' | ||
| 12269 | - id: | ||
| 12270 | - type: string | ||
| 12271 | - description: Opaque id of the UGC. | ||
| 12272 | - count: | ||
| 12273 | - type: integer | ||
| 12274 | - description: Number of users this object has been favorited by. | ||
| 12275 | - x-includeEmpty: true | ||
| 12276 | - favoritedByUser: | ||
| 12277 | - type: boolean | ||
| 12278 | - description: If the requesting user has favorited this object. | ||
| 12279 | - x-includeEmpty: true | ||
| 12280 | 12299 | PromptTemplateResult: | |
| 12281 | 12300 | properties: | |
| 12282 | 12301 | promptTemplate: | |
@@ -12372,6 +12391,7 @@ components: | |||
| 12372 | 12391 | - ZERO_STATE_AGENT_SUGGESTION | |
| 12373 | 12392 | - PERSONALIZED_CHAT_SUGGESTION | |
| 12374 | 12393 | - DAILY_DIGEST | |
| 12394 | + - PODCAST | ||
| 12375 | 12395 | - TASK | |
| 12376 | 12396 | - PLAN_MY_DAY | |
| 12377 | 12397 | - END_MY_DAY | |
@@ -12464,6 +12484,7 @@ components: | |||
| 12464 | 12484 | - ZERO_STATE_WORKFLOW_SUGGESTION | |
| 12465 | 12485 | - PERSONALIZED_CHAT_SUGGESTION | |
| 12466 | 12486 | - DAILY_DIGEST | |
| 12487 | + - PODCAST | ||
| 12467 | 12488 | - TASK | |
| 12468 | 12489 | - PLAN_MY_DAY | |
| 12469 | 12490 | - END_MY_DAY | |
@@ -15756,6 +15777,12 @@ components: | |||
| 15756 | 15777 | application/problem+json: | |
| 15757 | 15778 | schema: | |
| 15758 | 15779 | $ref: "#/components/schemas/PlatformProblemDetail" | |
| 15780 | + PlatformRequestTooLarge: | ||
| 15781 | + description: Request body exceeds the maximum allowed size. | ||
| 15782 | + content: | ||
| 15783 | + application/problem+json: | ||
| 15784 | + schema: | ||
| 15785 | + $ref: "#/components/schemas/PlatformProblemDetail" | ||
| 15759 | 15786 | PlatformTooManyRequests: | |
| 15760 | 15787 | description: Rate limit exceeded. Includes Retry-After header. | |
| 15761 | 15788 | content: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,9 +1,9 @@ | |||
| 1 | - speakeasyVersion: 1.788.0 | ||
| 1 | + speakeasyVersion: 1.788.1 | ||
| 2 | 2 | sources: | |
| 3 | 3 | Glean API: | |
| 4 | 4 | sourceNamespace: glean-api-specs | |
| 5 | - sourceRevisionDigest: sha256:246abdd49c246fce5b73bbb889da02141eaebcb7518c0ec21dbfbb75b3a53294 | ||
| 6 | - sourceBlobDigest: sha256:def1b0c41f5ee4bd90ba40af9ce88738cd00213633e1ca6b261558b6d885ab04 | ||
| 5 | + sourceRevisionDigest: sha256:8b1b5374e6d5c2f98bc7cddfa619249cd150deba48f6c8b9f2637f723ff73fd2 | ||
| 6 | + sourceBlobDigest: sha256:3373213fc1a05b08aad1cf828d00ce46e1da651645fc1ccde24fcdf3efca5861 | ||
| 7 | 7 | tags: | |
| 8 | 8 | - latest | |
| 9 | 9 | Glean-OAS: | |
@@ -17,10 +17,10 @@ targets: | |||
| 17 | 17 | glean: | |
| 18 | 18 | source: Glean API | |
| 19 | 19 | sourceNamespace: glean-api-specs | |
| 20 | - sourceRevisionDigest: sha256:246abdd49c246fce5b73bbb889da02141eaebcb7518c0ec21dbfbb75b3a53294 | ||
| 21 | - sourceBlobDigest: sha256:def1b0c41f5ee4bd90ba40af9ce88738cd00213633e1ca6b261558b6d885ab04 | ||
| 20 | + sourceRevisionDigest: sha256:8b1b5374e6d5c2f98bc7cddfa619249cd150deba48f6c8b9f2637f723ff73fd2 | ||
| 21 | + sourceBlobDigest: sha256:3373213fc1a05b08aad1cf828d00ce46e1da651645fc1ccde24fcdf3efca5861 | ||
| 22 | 22 | codeSamplesNamespace: glean-api-specs-java-code-samples | |
| 23 | - codeSamplesRevisionDigest: sha256:b1f68e5268e9dabc699b9baaf7954b47e20d08d619891ffbd3f5a8f0a4dffac7 | ||
| 23 | + codeSamplesRevisionDigest: sha256:713711a5b88810de0879edfcecf73df581b5ea9ab28b53ae2b1200c87d0a1cdb | ||
| 24 | 24 | workflow: | |
| 25 | 25 | workflowVersion: 1.0.0 | |
| 26 | 26 | speakeasyVersion: latest | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -67,15 +67,15 @@ The samples below show how a published SDK artifact is used: | |||
| 67 | 67 | ||
| 68 | 68 | Gradle: | |
| 69 | 69 | ```groovy | |
| 70 | - implementation 'com.glean.api-client:glean-api-client:0.14.0' | ||
| 70 | + implementation 'com.glean.api-client:glean-api-client:0.14.1' | ||
| 71 | 71 | ``` | |
| 72 | 72 | ||
| 73 | 73 | Maven: | |
| 74 | 74 | ```xml | |
| 75 | 75 | <dependency> | |
| 76 | 76 | <groupId>com.glean.api-client</groupId> | |
| 77 | 77 | <artifactId>glean-api-client</artifactId> | |
| 78 | - <version>0.14.0</version> | ||
| 78 | + <version>0.14.1</version> | ||
| 79 | 79 | </dependency> | |
| 80 | 80 | ``` | |
| 81 | 81 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -768,4 +768,14 @@ Based on: | |||
| 768 | 768 | ### Generated | |
| 769 | 769 | - [java v0.14.0] . | |
| 770 | 770 | ### Releases | |
| 771 | - - [Maven Central v0.14.0] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.14.0 - . | ||
| 771 | + - [Maven Central v0.14.0] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.14.0 - . | ||
| 772 | + | ||
| 773 | + ## 2026-07-06 04:11:57 | ||
| 774 | + ### Changes | ||
| 775 | + Based on: | ||
| 776 | + - OpenAPI Doc | ||
| 777 | + - Speakeasy CLI 1.788.1 (2.915.1) https://github.com/speakeasy-api/speakeasy | ||
| 778 | + ### Generated | ||
| 779 | + - [java v0.14.1] . | ||
| 780 | + ### Releases | ||
| 781 | + - [Maven Central v0.14.1] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.14.1 - . | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -29,4 +29,5 @@ | |||
| 29 | 29 | | `updatedBy` | [Optional\<Person>](../../models/components/Person.md) | :heavy_minus_sign: | N/A | {<br/>"name": "George Clooney",<br/>"obfuscatedId": "abc123"<br/>} | | |
| 30 | 30 | | `viewerInfo` | [Optional\<AnnouncementViewerInfo>](../../models/components/AnnouncementViewerInfo.md) | :heavy_minus_sign: | N/A | | | |
| 31 | 31 | | `sourceDocument` | [Optional\<Document>](../../models/components/Document.md) | :heavy_minus_sign: | N/A | | | |
| 32 | - | `isPublished` | *Optional\<Boolean>* | :heavy_minus_sign: | Whether or not the announcement is published. | | | ||
| 32 | + | `isPublished` | *Optional\<Boolean>* | :heavy_minus_sign: | Whether or not the announcement is published. | | | ||
| 33 | + | `favoriteInfo` | [Optional\<FavoriteInfo>](../../models/components/FavoriteInfo.md) | :heavy_minus_sign: | N/A | | | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments