Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.390.7
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Sep 6, 2024
1 parent 4eb0d15 commit 16b80f1
Show file tree
Hide file tree
Showing 24 changed files with 809 additions and 729 deletions.
10 changes: 5 additions & 5 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: b4f7f2df-6c4d-4150-a18f-8b74fe44eb22
management:
docChecksum: 59634240879b8bce1b699c21c7f4f276
docChecksum: dbab2ff06b2456d244f05a9b01369a62
docVersion: 1.0.0
speakeasyVersion: 1.377.1
generationVersion: 2.404.1
releaseVersion: 0.5.0
configChecksum: 3b33f25e938c6a67453f8e636f88064a
speakeasyVersion: 1.390.7
generationVersion: 2.409.8
releaseVersion: 0.5.1
configChecksum: fc35ae30680aa33273de880d9e8a6db9
repoURL: https://github.com/livepeer/livepeer-java.git
features:
java:
Expand Down
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.390.7
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:c8b860fdb232c8542b780411cb63acbcd89d450e3258de2e472ecd3177ea2e1a
sourceBlobDigest: sha256:ad3df7b39244e817fb05acd9fe2d4fd5e6b3e027c1f7fbdc7372a15220bc8849
tags:
- latest
- main
targets:
livepeer-java:
source: livepeer-studio-api
sourceNamespace: livepeer-studio-api
sourceRevisionDigest: sha256:9333277669bf8fb46063579d611518570aff37c2bfb20e0a90fd3b0c030ca2ad
sourceBlobDigest: sha256:1705d75b1de89f7c2e60643ed2c2aaced22b577da6f2935b1c2e09d533bb7182
sourceRevisionDigest: sha256:c8b860fdb232c8542b780411cb63acbcd89d450e3258de2e472ecd3177ea2e1a
sourceBlobDigest: sha256:ad3df7b39244e817fb05acd9fe2d4fd5e6b3e027c1f7fbdc7372a15220bc8849
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-06 00:09:36
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.390.7 (2.409.8) 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 16b80f1

Please sign in to comment.