File tree Expand file tree Collapse file tree 11 files changed +95
-80
lines changed
src/main/java/com/glean/api_client/glean_api_client Expand file tree Collapse file tree 11 files changed +95
-80
lines changed Original file line number Diff line number Diff line change 1
1
lockVersion: 2.0.0
2
2
id: 0359d4fe-2923-46fc-aaca-cf70b48dcfa1
3
3
management:
4
- docChecksum: d74f93d052b62c1709b537bca6b5e9cb
4
+ docChecksum: 2c7958d4387029e26995250cfa9844b1
5
5
docVersion: 0.9.0
6
- speakeasyVersion: 1.555.2
6
+ speakeasyVersion: 1.555.3
7
7
generationVersion: 2.620.2
8
- releaseVersion: 0.5.0
9
- configChecksum: be2e0bf5b35126c18786a60db66502c7
8
+ releaseVersion: 0.5.1
9
+ configChecksum: ea3568caa832103b95578e36daa71ce8
10
10
repoURL: https://github.com/gleanwork/api-client-java.git
11
11
published: true
12
12
features:
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ generation:
17
17
oAuth2ClientCredentialsEnabled : true
18
18
oAuth2PasswordEnabled : true
19
19
java :
20
- version : 0.5.0
20
+ version : 0.5.1
21
21
additionalDependencies : []
22
22
additionalPlugins : []
23
23
artifactID : glean-api-client
Original file line number Diff line number Diff line change @@ -9272,11 +9272,16 @@ components:
9272
9272
runCount:
9273
9273
$ref: "#/components/schemas/CountInfo"
9274
9274
description: This tracks how many times this prompt template was run. If user runs a prompt template after modifying the original one, it still counts as a run for the original template.
9275
- WorkflowMutableProperties :
9275
+ WorkflowDraftableProperties :
9276
9276
properties:
9277
9277
name:
9278
9278
type: string
9279
9279
description: The name of the workflow.
9280
+ WorkflowMutableProperties:
9281
+ type: object
9282
+ allOf:
9283
+ - $ref: "#/components/schemas/WorkflowDraftableProperties"
9284
+ - type: object
9280
9285
WorkflowMetadata:
9281
9286
allOf:
9282
9287
- type: object
Original file line number Diff line number Diff line change 1
- speakeasyVersion: 1.555.2
1
+ speakeasyVersion: 1.555.3
2
2
sources:
3
3
Glean API:
4
4
sourceNamespace: glean-api-specs
5
- sourceRevisionDigest: sha256:8fa342ea4c0f50e32d7b0930df581e4f4ec000f1f36a429c40f6ccc3f72c0b6b
6
- sourceBlobDigest: sha256:914ea4a50d56c4ac1ef7a111f11756bfd8c21bd1c652b817b729ca8706a0afc7
5
+ sourceRevisionDigest: sha256:31f82ab8b1f1831ad2f8bae58f4e1a7fb0d760de701c43ca0868c9fc0c2dea42
6
+ sourceBlobDigest: sha256:317f3701feac64292f15f9c705d91ebacd1168fc2b2c29548a67f51b77189824
7
7
tags:
8
8
- latest
9
- - speakeasy-sdk-regen-1748397732
9
+ - speakeasy-sdk-regen-1749088970
10
10
Glean-OAS:
11
11
sourceNamespace: glean-oas
12
12
sourceRevisionDigest: sha256:8841834dd58ddd4e2dcf98fc90fbd06fbf3626a29df941503cce55b9548a5317
@@ -18,10 +18,10 @@ targets:
18
18
glean:
19
19
source: Glean API
20
20
sourceNamespace: glean-api-specs
21
- sourceRevisionDigest: sha256:8fa342ea4c0f50e32d7b0930df581e4f4ec000f1f36a429c40f6ccc3f72c0b6b
22
- sourceBlobDigest: sha256:914ea4a50d56c4ac1ef7a111f11756bfd8c21bd1c652b817b729ca8706a0afc7
21
+ sourceRevisionDigest: sha256:31f82ab8b1f1831ad2f8bae58f4e1a7fb0d760de701c43ca0868c9fc0c2dea42
22
+ sourceBlobDigest: sha256:317f3701feac64292f15f9c705d91ebacd1168fc2b2c29548a67f51b77189824
23
23
codeSamplesNamespace: glean-api-specs-java-code-samples
24
- codeSamplesRevisionDigest: sha256:25e0dc06c9cfa9a9001c39331f30c0600f04aad5dc0009e5adc6664a36a48716
24
+ codeSamplesRevisionDigest: sha256:21636f866ad31e6a517d5f9e84ce43576ac0853ff4528a5c13701ca53f305bba
25
25
workflow:
26
26
workflowVersion: 1.0.0
27
27
speakeasyVersion: latest
Original file line number Diff line number Diff line change @@ -62,15 +62,15 @@ The samples below show how a published SDK artifact is used:
62
62
63
63
Gradle:
64
64
``` groovy
65
- implementation 'com.glean.api-client:glean-api-client:0.5.0 '
65
+ implementation 'com.glean.api-client:glean-api-client:0.5.1 '
66
66
```
67
67
68
68
Maven:
69
69
``` xml
70
70
<dependency >
71
71
<groupId >com.glean.api-client</groupId >
72
72
<artifactId >glean-api-client</artifactId >
73
- <version >0.5.0 </version >
73
+ <version >0.5.1 </version >
74
74
</dependency >
75
75
```
76
76
Original file line number Diff line number Diff line change @@ -98,4 +98,14 @@ Based on:
98
98
### Generated
99
99
- [ java v0.5.0] .
100
100
### Releases
101
- - [ Maven Central v0.5.0] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.5.0 - .
101
+ - [ Maven Central v0.5.0] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.5.0 - .
102
+
103
+ ## 2025-06-05 02:02:31
104
+ ### Changes
105
+ Based on:
106
+ - OpenAPI Doc
107
+ - Speakeasy CLI 1.555.3 (2.620.2) https://github.com/speakeasy-api/speakeasy
108
+ ### Generated
109
+ - [ java v0.5.1] .
110
+ ### Releases
111
+ - [ Maven Central v0.5.1] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.5.1 - .
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ publishing {
103
103
// https://github.com/gradle/gradle/issues/18619
104
104
groupId = " com.glean.api-client"
105
105
artifactId = " glean-api-client"
106
- version = " 0.5.0 "
106
+ version = " 0.5.1 "
107
107
108
108
from components. java
109
109
Original file line number Diff line number Diff line change 5
5
6
6
| Field | Type | Required | Description | Example |
7
7
| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- |
8
+ | ` name ` | * Optional\< String>* | :heavy_minus_sign : | The name of the workflow. | |
8
9
| ` author ` | [ Optional\< Person>] ( ../../models/components/Person.md ) | :heavy_minus_sign : | N/A | {<br />"name": "George Clooney",<br />"obfuscatedId": "abc123"<br />} |
9
10
| ` createTimestamp ` | * Optional\< Long>* | :heavy_minus_sign : | Server Unix timestamp of the creation time. | |
10
11
| ` lastUpdateTimestamp ` | * Optional\< Long>* | :heavy_minus_sign : | Server Unix timestamp of the last update time. | |
11
12
| ` lastUpdatedBy ` | [ Optional\< Person>] ( ../../models/components/Person.md ) | :heavy_minus_sign : | N/A | {<br />"name": "George Clooney",<br />"obfuscatedId": "abc123"<br />} |
12
13
| ` permissions ` | [ Optional\< ObjectPermissions>] ( ../../models/components/ObjectPermissions.md ) | :heavy_minus_sign : | N/A | |
13
- | ` name ` | * Optional\< String>* | :heavy_minus_sign : | The name of the workflow. | |
14
14
| ` id ` | * Optional\< String>* | :heavy_minus_sign : | The ID of the workflow. | |
Original file line number Diff line number Diff line change 1
1
groupId =com.glean.api-client
2
2
artifactId =glean-api-client
3
- version =0.5.0
3
+ version =0.5.1
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public class SDKConfiguration {
21
21
22
22
private static final String LANGUAGE = "java" ;
23
23
public static final String OPENAPI_DOC_VERSION = "0.9.0" ;
24
- public static final String SDK_VERSION = "0.5.0 " ;
24
+ public static final String SDK_VERSION = "0.5.1 " ;
25
25
public static final String GEN_VERSION = "2.620.2" ;
26
26
private static final String BASE_PACKAGE = "com.glean.api_client.glean_api_client" ;
27
27
public static final String USER_AGENT =
You can’t perform that action at this time.
0 commit comments