Skip to content

Commit 41e2d96

Browse files
Merge pull request #29 from gleanwork/speakeasy-sdk-regen-1752597383
chore: 🐝 Update SDK - Generate 0.8.0
2 parents 3e979da + 549446e commit 41e2d96

File tree

452 files changed

+23704
-19484
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

452 files changed

+23704
-19484
lines changed

.speakeasy/gen.lock

Lines changed: 130 additions & 117 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ generation:
2121
generateNewTests: false
2222
skipResponseBodyAssertions: false
2323
java:
24-
version: 0.7.0
24+
version: 0.8.0
2525
additionalDependencies: []
2626
additionalPlugins: []
2727
artifactID: glean-api-client
@@ -31,6 +31,7 @@ java:
3131
companyName: Glean
3232
companyURL: https://www.glean.com
3333
defaultErrorName: APIException
34+
enableAsync: false
3435
enableCustomCodeRegions: false
3536
envVarPrefix: GLEAN
3637
flattenGlobalSecurity: true

.speakeasy/glean-merged-spec.yaml

Lines changed: 162 additions & 88 deletions
Large diffs are not rendered by default.

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
speakeasyVersion: 1.580.2
1+
speakeasyVersion: 1.603.0
22
sources:
33
Glean API:
44
sourceNamespace: glean-api-specs
5-
sourceRevisionDigest: sha256:57fc6af98e6e9e98c92547985293be8fafd52d2a1d1ef88d4b24636743b9f119
6-
sourceBlobDigest: sha256:01cf4577ff2f15ba160b16bba410571a8ba0c5fefa7e6dd7101edef7ef7c68dc
5+
sourceRevisionDigest: sha256:8f18d79a0a7d8f51de7edd5bc8ca3ccc569b81832ffc44ce95a27a12e67b9b7d
6+
sourceBlobDigest: sha256:bb3e5a453f03cbdecf3fb3925768ef4cb0b3119083d9d36c341e1ecd721cde8b
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1751974088
9+
- speakeasy-sdk-regen-1752597383
1010
Glean-OAS:
1111
sourceNamespace: glean-oas
1212
sourceRevisionDigest: sha256:8841834dd58ddd4e2dcf98fc90fbd06fbf3626a29df941503cce55b9548a5317
@@ -18,10 +18,10 @@ targets:
1818
glean:
1919
source: Glean API
2020
sourceNamespace: glean-api-specs
21-
sourceRevisionDigest: sha256:57fc6af98e6e9e98c92547985293be8fafd52d2a1d1ef88d4b24636743b9f119
22-
sourceBlobDigest: sha256:01cf4577ff2f15ba160b16bba410571a8ba0c5fefa7e6dd7101edef7ef7c68dc
21+
sourceRevisionDigest: sha256:8f18d79a0a7d8f51de7edd5bc8ca3ccc569b81832ffc44ce95a27a12e67b9b7d
22+
sourceBlobDigest: sha256:bb3e5a453f03cbdecf3fb3925768ef4cb0b3119083d9d36c341e1ecd721cde8b
2323
codeSamplesNamespace: glean-api-specs-java-code-samples
24-
codeSamplesRevisionDigest: sha256:696df3780275658d9e4fab559fceb2dc36adeff8f6055db8303641ed1f4e7d6c
24+
codeSamplesRevisionDigest: sha256:e2f179bd27ebe8ef2e5db4899dbce44b41be5a1a46f7d62f7df45af109b6df27
2525
workflow:
2626
workflowVersion: 1.0.0
2727
speakeasyVersion: latest

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ The samples below show how a published SDK artifact is used:
6363

6464
Gradle:
6565
```groovy
66-
implementation 'com.glean.api-client:glean-api-client:0.7.0'
66+
implementation 'com.glean.api-client:glean-api-client:0.8.0'
6767
```
6868

6969
Maven:
7070
```xml
7171
<dependency>
7272
<groupId>com.glean.api-client</groupId>
7373
<artifactId>glean-api-client</artifactId>
74-
<version>0.7.0</version>
74+
<version>0.8.0</version>
7575
</dependency>
7676
```
7777

@@ -116,6 +116,7 @@ public class Application {
116116
.chatRequest(ChatRequest.builder()
117117
.messages(List.of(
118118
ChatMessage.builder()
119+
.author(Author.USER)
119120
.fragments(List.of(
120121
ChatMessageFragment.builder()
121122
.text("What are the company holidays this year?")
@@ -154,6 +155,7 @@ public class Application {
154155
.chatRequest(ChatRequest.builder()
155156
.messages(List.of(
156157
ChatMessage.builder()
158+
.author(Author.USER)
157159
.fragments(List.of(
158160
ChatMessageFragment.builder()
159161
.text("What are the company holidays this year?")

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,14 @@ Based on:
178178
### Generated
179179
- [java v0.7.0] .
180180
### Releases
181-
- [Maven Central v0.7.0] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.7.0 - .
181+
- [Maven Central v0.7.0] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.7.0 - .
182+
183+
## 2025-08-12 20:06:24
184+
### Changes
185+
Based on:
186+
- OpenAPI Doc
187+
- Speakeasy CLI 1.603.0 (2.681.1) https://github.com/speakeasy-api/speakeasy
188+
### Generated
189+
- [java v0.8.0] .
190+
### Releases
191+
- [Maven Central v0.8.0] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.8.0 - .

USAGE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public class Application {
2020
.chatRequest(ChatRequest.builder()
2121
.messages(List.of(
2222
ChatMessage.builder()
23+
.author(Author.USER)
2324
.fragments(List.of(
2425
ChatMessageFragment.builder()
2526
.text("What are the company holidays this year?")
@@ -56,6 +57,7 @@ public class Application {
5657
.chatRequest(ChatRequest.builder()
5758
.messages(List.of(
5859
ChatMessage.builder()
60+
.author(Author.USER)
5961
.fragments(List.of(
6062
ChatMessageFragment.builder()
6163
.text("What are the company holidays this year?")

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515
id 'maven-publish'
1616
id 'signing'
1717
id 'cl.franciscosolis.sonatype-central-upload' version '1.0.3'
18-
id "com.adarshr.test-logger" version "3.2.0"
18+
id "com.adarshr.test-logger" version "4.0.0"
1919
}
2020

2121
compileJava.options.encoding = "UTF-8"
@@ -60,7 +60,7 @@ javadoc {
6060
}
6161

6262
tasks.withType(Javadoc) {
63-
failOnError false
63+
failOnError = false
6464
options.addStringOption('Xdoclint:none', '-quiet')
6565
}
6666

@@ -106,7 +106,7 @@ publishing {
106106
// https://github.com/gradle/gradle/issues/18619
107107
groupId = "com.glean.api-client"
108108
artifactId = "glean-api-client"
109-
version = "0.7.0"
109+
version = "0.8.0"
110110

111111
from components.java
112112

@@ -160,7 +160,7 @@ tasks.named('test') {
160160
}
161161

162162
testlogger {
163-
showStandardStreams true
163+
showStandardStreams = true
164164
}
165165

166166
test {

docs/models/components/AuthConfigStatus.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ Auth status of the tool.
88
| Name | Value |
99
| --------------- | --------------- |
1010
| `AWAITING_AUTH` | AWAITING_AUTH |
11-
| `AUTHORIZED` | AUTHORIZED |
11+
| `AUTHORIZED` | AUTHORIZED |
12+
| `AUTH_DISABLED` | AUTH_DISABLED |

docs/models/components/ChatMessageFragment.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ Represents a part of a ChatMessage that originates from a single action/tool. It
1212
| `text` | *Optional\<String>* | :heavy_minus_sign: | N/A | |
1313
| `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/>} |
1414
| `file` | [Optional\<ChatFile>](../../models/components/ChatFile.md) | :heavy_minus_sign: | Structure for file uploaded by a user for Chat. | |
15-
| `action` | [Optional\<ToolInfo>](../../models/components/ToolInfo.md) | :heavy_minus_sign: | N/A | |
15+
| `action` | [Optional\<ToolInfo>](../../models/components/ToolInfo.md) | :heavy_minus_sign: | N/A | |
16+
| `citation` | [Optional\<ChatMessageCitation>](../../models/components/ChatMessageCitation.md) | :heavy_minus_sign: | Information about the source for a ChatMessage. | |

0 commit comments

Comments
 (0)