Skip to content
Open
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
319 changes: 236 additions & 83 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ generation:
generateNewTests: false
skipResponseBodyAssertions: false
java:
version: 0.14.4
version: 0.15.0
additionalDependencies: []
additionalPlugins: []
artifactID: glean-api-client
Expand All @@ -53,8 +53,10 @@ java:
generateOptionalUnionAccessors: false
generateSpringBootStarter: true
generateUnionDocs: false
getterStyle: presence-aware
githubURL: github.com/gleanwork/api-client-java
groupID: com.glean.api-client
httpClient: jdk
imports:
option: openapi
paths:
Expand Down
345 changes: 310 additions & 35 deletions .speakeasy/glean-merged-spec.yaml

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
speakeasyVersion: 1.790.3
speakeasyVersion: 1.791.0
sources:
Glean API:
sourceNamespace: glean-api-specs
sourceRevisionDigest: sha256:bb3bada7cfd1fef35eb00e096010fcd9238a6dde135ee387c782bba65dfa45fb
sourceBlobDigest: sha256:5552ea5e20187c775de44c60abbd112a31cf189b9486aafe2e303b5f71e76f0b
sourceRevisionDigest: sha256:6f973fb0517be3cd96d5f89b621186871a8eb33703aaafde1eea59b775fe33d7
sourceBlobDigest: sha256:3aad4922c14bf4c54953c179f740421a7749828059decc0b0f01b35d294ccc6f
tags:
- latest
Glean-OAS:
Expand All @@ -17,10 +17,10 @@ targets:
glean:
source: Glean API
sourceNamespace: glean-api-specs
sourceRevisionDigest: sha256:bb3bada7cfd1fef35eb00e096010fcd9238a6dde135ee387c782bba65dfa45fb
sourceBlobDigest: sha256:5552ea5e20187c775de44c60abbd112a31cf189b9486aafe2e303b5f71e76f0b
sourceRevisionDigest: sha256:6f973fb0517be3cd96d5f89b621186871a8eb33703aaafde1eea59b775fe33d7
sourceBlobDigest: sha256:3aad4922c14bf4c54953c179f740421a7749828059decc0b0f01b35d294ccc6f
codeSamplesNamespace: glean-api-specs-java-code-samples
codeSamplesRevisionDigest: sha256:e3c929dc27f770d7e9fc2453e5efcdb9b60be3e68c39fa24fc2726fb0ffd18a5
codeSamplesRevisionDigest: sha256:f22021064a001379bee5f48e19a2163d3c65ea310de75ed3efa109ceecef7a86
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
19 changes: 11 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'com.glean.api-client:glean-api-client:0.14.4'
implementation 'com.glean.api-client:glean-api-client:0.15.0'
```

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

Expand Down Expand Up @@ -602,12 +602,14 @@ For more information on obtaining the appropriate token type, please contact you
### [Search](docs/sdks/search/README.md)

* [query](docs/sdks/search/README.md#query) - Search
* [listFilters](docs/sdks/search/README.md#listfilters) - List search filters

### [Skills](docs/sdks/skills/README.md)

* [create](docs/sdks/skills/README.md#create) - Create skill
* [list](docs/sdks/skills/README.md#list) - List skills
* [validate](docs/sdks/skills/README.md#validate) - Validate skill bundle
* [update](docs/sdks/skills/README.md#update) - Update skill
* [retrieve](docs/sdks/skills/README.md#retrieve) - Retrieve skill
* [retrieveContent](docs/sdks/skills/README.md#retrievecontent) - Download skill content
* [createVersion](docs/sdks/skills/README.md#createversion) - Create skill version
Expand Down Expand Up @@ -710,7 +712,7 @@ public class Application {
**Primary error:**
* [`GleanError`](./src/main/java/models/errors/GleanError.java): The base class for HTTP error responses.

<details><summary>Less common errors (11)</summary>
<details><summary>Less common errors (12)</summary>

<br />

Expand All @@ -720,11 +722,12 @@ public class Application {
many more subclasses in the JDK platform).

**Inherit from [`GleanError`](./src/main/java/models/errors/GleanError.java)**:
* [`com.glean.api_client.glean_api_client.models.errors.PlatformProblemDetailException`](./src/main/java/models/errors/com.glean.api_client.glean_api_client.models.errors.PlatformProblemDetailException.java): Error response following RFC 9457, extended with `code` and `documentation_url` for machine-readable classification and self-service remediation. Applicable to 14 of 147 methods.*
* [`com.glean.api_client.glean_api_client.models.errors.ErrorResponse`](./src/main/java/models/errors/com.glean.api_client.glean_api_client.models.errors.ErrorResponse.java): Error response returned for failed requests. Applicable to 9 of 147 methods.*
* [`com.glean.api_client.glean_api_client.models.errors.ErrorInfoResponse`](./src/main/java/models/errors/com.glean.api_client.glean_api_client.models.errors.ErrorInfoResponse.java): Error response for custom metadata operations. Applicable to 6 of 147 methods.*
* [`com.glean.api_client.glean_api_client.models.errors.CollectionError`](./src/main/java/models/errors/com.glean.api_client.glean_api_client.models.errors.CollectionError.java): Semantic error. Status code `422`. Applicable to 3 of 147 methods.*
* [`com.glean.api_client.glean_api_client.models.errors.GleanDataError`](./src/main/java/models/errors/com.glean.api_client.glean_api_client.models.errors.GleanDataError.java): Forbidden. Applicable to 2 of 147 methods.*
* [`com.glean.api_client.glean_api_client.models.errors.PlatformProblemDetailException`](./src/main/java/models/errors/com.glean.api_client.glean_api_client.models.errors.PlatformProblemDetailException.java): Error response following RFC 9457, extended with `code` and `documentation_url` for machine-readable classification and self-service remediation. Applicable to 16 of 149 methods.*
* [`com.glean.api_client.glean_api_client.models.errors.ErrorResponse`](./src/main/java/models/errors/com.glean.api_client.glean_api_client.models.errors.ErrorResponse.java): Error response returned for failed requests. Applicable to 9 of 149 methods.*
* [`com.glean.api_client.glean_api_client.models.errors.ErrorInfoResponse`](./src/main/java/models/errors/com.glean.api_client.glean_api_client.models.errors.ErrorInfoResponse.java): Error response for custom metadata operations. Applicable to 6 of 149 methods.*
* [`com.glean.api_client.glean_api_client.models.errors.CollectionError`](./src/main/java/models/errors/com.glean.api_client.glean_api_client.models.errors.CollectionError.java): Semantic error. Status code `422`. Applicable to 3 of 149 methods.*
* [`com.glean.api_client.glean_api_client.models.errors.GleanDataError`](./src/main/java/models/errors/com.glean.api_client.glean_api_client.models.errors.GleanDataError.java): Forbidden. Applicable to 2 of 149 methods.*
* [`com.glean.api_client.glean_api_client.models.errors.AccessRequestPermissionDeniedResponseException`](./src/main/java/models/errors/com.glean.api_client.glean_api_client.models.errors.AccessRequestPermissionDeniedResponseException.java): Forbidden. Status code `403`. Applicable to 1 of 149 methods.*


</details>
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -808,4 +808,14 @@ Based on:
### Generated
- [java v0.14.4] .
### Releases
- [Maven Central v0.14.4] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.14.4 - .
- [Maven Central v0.14.4] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.14.4 - .

## 2026-07-26 03:36:21
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.791.0 (2.924.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.15.0] .
### Releases
- [Maven Central v0.15.0] https://central.sonatype.com/artifact/com.glean.api-client/glean-api-client/0.15.0 - .
4 changes: 3 additions & 1 deletion docs/models/components/DatasourceCategory.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,6 @@ DatasourceCategory custom = DatasourceCategory.of("custom_value");
| `EXTERNAL_SHORTCUT` | EXTERNAL_SHORTCUT |
| `ENTITY` | ENTITY |
| `CALENDAR` | CALENDAR |
| `AGENTS` | AGENTS |
| `AGENTS` | AGENTS |
| `AI_CONVERSATION` | AI_CONVERSATION |
| `AI_ARTIFACT` | AI_ARTIFACT |
4 changes: 3 additions & 1 deletion docs/models/components/DocCategory.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,6 @@ DocCategory custom = DocCategory.of("custom_value");
| `EXTERNAL_SHORTCUT` | EXTERNAL_SHORTCUT |
| `ENTITY` | ENTITY |
| `CALENDAR` | CALENDAR |
| `AGENTS` | AGENTS |
| `AGENTS` | AGENTS |
| `AI_CONVERSATION` | AI_CONVERSATION |
| `AI_ARTIFACT` | AI_ARTIFACT |
9 changes: 9 additions & 0 deletions docs/models/components/PlatformDatasourceFilterInfo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# PlatformDatasourceFilterInfo


## Fields

| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `datasource` | *String* | :heavy_check_mark: | Datasource identifier usable in `POST /api/search` `datasources`.<br/> | jira |
| `filters` | List\<[PlatformFilterFieldInfo](../../models/components/PlatformFilterFieldInfo.md)> | :heavy_check_mark: | Common built-in filter fields for this datasource. May be empty. A built-in omitted here can still be valid in `POST /api/search`; see `Filter.field` for the full built-in name list.<br/> | |
Loading