Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.396.2
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Sep 12, 2024
1 parent 4eb0d15 commit 41efc37
Show file tree
Hide file tree
Showing 26 changed files with 1,992 additions and 1,393 deletions.
1,903 changes: 1,210 additions & 693 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: true
java:
version: 0.5.0
version: 0.5.1
additionalDependencies: []
additionalPlugins: []
artifactID: livepeer
Expand Down
10 changes: 5 additions & 5 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
speakeasyVersion: 1.377.1
speakeasyVersion: 1.396.2
sources:
Livepeer:
sourceNamespace: livepeer
Expand All @@ -8,17 +8,17 @@ sources:
- latest
livepeer-studio-api:
sourceNamespace: livepeer-studio-api
sourceRevisionDigest: sha256:9333277669bf8fb46063579d611518570aff37c2bfb20e0a90fd3b0c030ca2ad
sourceBlobDigest: sha256:1705d75b1de89f7c2e60643ed2c2aaced22b577da6f2935b1c2e09d533bb7182
sourceRevisionDigest: sha256:b89600c92753a668407ec4a9752d0e8343e6ad1383f547807265c9893304dc19
sourceBlobDigest: sha256:b661bfd2732daa8d2f11e1940e5e1ef4b7c5206c307856e5591aa8b09011f898
tags:
- latest
- main
targets:
livepeer-java:
source: livepeer-studio-api
sourceNamespace: livepeer-studio-api
sourceRevisionDigest: sha256:9333277669bf8fb46063579d611518570aff37c2bfb20e0a90fd3b0c030ca2ad
sourceBlobDigest: sha256:1705d75b1de89f7c2e60643ed2c2aaced22b577da6f2935b1c2e09d533bb7182
sourceRevisionDigest: sha256:b89600c92753a668407ec4a9752d0e8343e6ad1383f547807265c9893304dc19
sourceBlobDigest: sha256:b661bfd2732daa8d2f11e1940e5e1ef4b7c5206c307856e5591aa8b09011f898
outLocation: /github/workspace/repo
my-first-target:
source: Livepeer
Expand Down
25 changes: 22 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ applications written in Java.

For full documentation and examples, please visit [docs.livepeer.org](https://docs.livepeer.org/sdks/javascript/).

<!-- Start Summary [summary] -->
## Summary

Livepeer API Reference: Welcome to the Livepeer API reference docs. Here you will find all the
endpoints exposed on the standard Livepeer API, learn how to use them and
what they return.
<!-- End Summary [summary] -->

<!-- Start Table of Contents [toc] -->
## Table of Contents

* [SDK Installation](#sdk-installation)
* [SDK Example Usage](#sdk-example-usage)
* [Available Resources and Operations](#available-resources-and-operations)
* [Error Handling](#error-handling)
* [Server Selection](#server-selection)
* [Authentication](#authentication)
<!-- End Table of Contents [toc] -->

<!-- Start SDK Installation [installation] -->
## SDK Installation

Expand All @@ -18,15 +37,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'studio.livepeer:livepeer:0.5.0'
implementation 'studio.livepeer:livepeer:0.5.1'
```

Maven:
```xml
<dependency>
<groupId>studio.livepeer</groupId>
<artifactId>livepeer</artifactId>
<version>0.5.0</version>
<version>0.5.1</version>
</dependency>
```

Expand Down Expand Up @@ -285,7 +304,7 @@ public class Application {
.build();

GetPlaybackInfoResponse res = sdk.playback().get()
.id("<value>")
.id("<id>")
.call();

if (res.playbackInfo().isPresent()) {
Expand Down
10 changes: 9 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,12 @@ Based on:
- OpenAPI Doc
- Speakeasy CLI 1.377.1 (2.404.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.5.0] .
- [java v0.5.0] .

## 2024-09-12 00:09:49
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.396.2 (2.415.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v0.5.1] .
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ tasks.withType(Javadoc) {
}

group = "studio.livepeer"
version = "0.5.0"
version = "0.5.1"

sourcesJar {
archiveBaseName = "livepeer"
Expand All @@ -78,7 +78,7 @@ publishing {
maven(MavenPublication) {
groupId = 'studio.livepeer'
artifactId = 'livepeer'
version = '0.5.0'
version = '0.5.1'

from components.java

Expand Down
Loading

0 comments on commit 41efc37

Please sign in to comment.