Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
247 changes: 130 additions & 117 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ generation:
generateNewTests: false
skipResponseBodyAssertions: false
java:
version: 0.7.0
version: 0.8.0
additionalDependencies: []
additionalPlugins: []
artifactID: glean-api-client
Expand All @@ -31,6 +31,7 @@ java:
companyName: Glean
companyURL: https://www.glean.com
defaultErrorName: APIException
enableAsync: false
enableCustomCodeRegions: false
envVarPrefix: GLEAN
flattenGlobalSecurity: true
Expand Down
250 changes: 162 additions & 88 deletions .speakeasy/glean-merged-spec.yaml

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
speakeasyVersion: 1.580.2
speakeasyVersion: 1.603.0
sources:
Glean API:
sourceNamespace: glean-api-specs
sourceRevisionDigest: sha256:57fc6af98e6e9e98c92547985293be8fafd52d2a1d1ef88d4b24636743b9f119
sourceBlobDigest: sha256:01cf4577ff2f15ba160b16bba410571a8ba0c5fefa7e6dd7101edef7ef7c68dc
sourceRevisionDigest: sha256:8f18d79a0a7d8f51de7edd5bc8ca3ccc569b81832ffc44ce95a27a12e67b9b7d
sourceBlobDigest: sha256:bb3e5a453f03cbdecf3fb3925768ef4cb0b3119083d9d36c341e1ecd721cde8b
tags:
- latest
- speakeasy-sdk-regen-1751974088
- speakeasy-sdk-regen-1752597383
Glean-OAS:
sourceNamespace: glean-oas
sourceRevisionDigest: sha256:8841834dd58ddd4e2dcf98fc90fbd06fbf3626a29df941503cce55b9548a5317
Expand All @@ -18,10 +18,10 @@ targets:
glean:
source: Glean API
sourceNamespace: glean-api-specs
sourceRevisionDigest: sha256:57fc6af98e6e9e98c92547985293be8fafd52d2a1d1ef88d4b24636743b9f119
sourceBlobDigest: sha256:01cf4577ff2f15ba160b16bba410571a8ba0c5fefa7e6dd7101edef7ef7c68dc
sourceRevisionDigest: sha256:8f18d79a0a7d8f51de7edd5bc8ca3ccc569b81832ffc44ce95a27a12e67b9b7d
sourceBlobDigest: sha256:bb3e5a453f03cbdecf3fb3925768ef4cb0b3119083d9d36c341e1ecd721cde8b
codeSamplesNamespace: glean-api-specs-java-code-samples
codeSamplesRevisionDigest: sha256:696df3780275658d9e4fab559fceb2dc36adeff8f6055db8303641ed1f4e7d6c
codeSamplesRevisionDigest: sha256:e2f179bd27ebe8ef2e5db4899dbce44b41be5a1a46f7d62f7df45af109b6df27
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'com.glean.api-client:glean-api-client:0.7.0'
implementation 'com.glean.api-client:glean-api-client:0.8.0'
```

Maven:
```xml
<dependency>
<groupId>com.glean.api-client</groupId>
<artifactId>glean-api-client</artifactId>
<version>0.7.0</version>
<version>0.8.0</version>
</dependency>
```

Expand Down Expand Up @@ -116,6 +116,7 @@ public class Application {
.chatRequest(ChatRequest.builder()
.messages(List.of(
ChatMessage.builder()
.author(Author.USER)
.fragments(List.of(
ChatMessageFragment.builder()
.text("What are the company holidays this year?")
Expand Down Expand Up @@ -154,6 +155,7 @@ public class Application {
.chatRequest(ChatRequest.builder()
.messages(List.of(
ChatMessage.builder()
.author(Author.USER)
.fragments(List.of(
ChatMessageFragment.builder()
.text("What are the company holidays this year?")
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,4 +178,14 @@ Based on:
### Generated
- [java v0.7.0] .
### Releases
- [Maven Central v0.7.0] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.7.0 - .
- [Maven Central v0.7.0] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.7.0 - .

## 2025-08-12 20:06:24
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.603.0 (2.681.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.8.0] .
### Releases
- [Maven Central v0.8.0] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.8.0 - .
2 changes: 2 additions & 0 deletions USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class Application {
.chatRequest(ChatRequest.builder()
.messages(List.of(
ChatMessage.builder()
.author(Author.USER)
.fragments(List.of(
ChatMessageFragment.builder()
.text("What are the company holidays this year?")
Expand Down Expand Up @@ -56,6 +57,7 @@ public class Application {
.chatRequest(ChatRequest.builder()
.messages(List.of(
ChatMessage.builder()
.author(Author.USER)
.fragments(List.of(
ChatMessageFragment.builder()
.text("What are the company holidays this year?")
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
id 'maven-publish'
id 'signing'
id 'cl.franciscosolis.sonatype-central-upload' version '1.0.3'
id "com.adarshr.test-logger" version "3.2.0"
id "com.adarshr.test-logger" version "4.0.0"
}

compileJava.options.encoding = "UTF-8"
Expand Down Expand Up @@ -60,7 +60,7 @@ javadoc {
}

tasks.withType(Javadoc) {
failOnError false
failOnError = false
options.addStringOption('Xdoclint:none', '-quiet')
}

Expand Down Expand Up @@ -106,7 +106,7 @@ publishing {
// https://github.com/gradle/gradle/issues/18619
groupId = "com.glean.api-client"
artifactId = "glean-api-client"
version = "0.7.0"
version = "0.8.0"

from components.java

Expand Down Expand Up @@ -160,7 +160,7 @@ tasks.named('test') {
}

testlogger {
showStandardStreams true
showStandardStreams = true
}

test {
Expand Down
3 changes: 2 additions & 1 deletion docs/models/components/AuthConfigStatus.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ Auth status of the tool.
| Name | Value |
| --------------- | --------------- |
| `AWAITING_AUTH` | AWAITING_AUTH |
| `AUTHORIZED` | AUTHORIZED |
| `AUTHORIZED` | AUTHORIZED |
| `AUTH_DISABLED` | AUTH_DISABLED |
3 changes: 2 additions & 1 deletion docs/models/components/ChatMessageFragment.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ Represents a part of a ChatMessage that originates from a single action/tool. It
| `text` | *Optional\<String>* | :heavy_minus_sign: | N/A | |
| `querySuggestion` | [Optional\<QuerySuggestion>](../../models/components/QuerySuggestion.md) | :heavy_minus_sign: | N/A | {<br/>"query": "app:github type:pull author:mortimer",<br/>"label": "Mortimer's PRs",<br/>"datasource": "github"<br/>} |
| `file` | [Optional\<ChatFile>](../../models/components/ChatFile.md) | :heavy_minus_sign: | Structure for file uploaded by a user for Chat. | |
| `action` | [Optional\<ToolInfo>](../../models/components/ToolInfo.md) | :heavy_minus_sign: | N/A | |
| `action` | [Optional\<ToolInfo>](../../models/components/ToolInfo.md) | :heavy_minus_sign: | N/A | |
| `citation` | [Optional\<ChatMessageCitation>](../../models/components/ChatMessageCitation.md) | :heavy_minus_sign: | Information about the source for a ChatMessage. | |
Loading