Skip to content

Commit

Permalink
updated build
Browse files Browse the repository at this point in the history
  • Loading branch information
Teja Surisetty committed Dec 19, 2024
1 parent a3f3186 commit a53207f
Show file tree
Hide file tree
Showing 385 changed files with 2,117 additions and 2,117 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/sdk_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
publish:
uses: speakeasy-api/sdk-generation-action/.github/workflows/sdk-publish.yaml@v15
with:
target: BZClient
target: bzclient
secrets:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
java_gpg_passphrase: ${{ secrets.JAVA_GPG_PASSPHRASE }}
java_gpg_secret_key: ${{ secrets.JAVA_GPG_SECRET_KEY }}
java_gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}
java_gpg_secret_key: ${{ secrets.GPG_SECRET_KEY }}
ossrh_password: ${{ secrets.OSSRH_PASSWORD }}
ossrh_username: ${{ secrets.OSSRH_USERNAME }}
speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }}
688 changes: 344 additions & 344 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ generation:
oAuth2ClientCredentialsEnabled: false
oAuth2PasswordEnabled: false
java:
version: 0.3.6
version: 0.3.7
additionalDependencies: []
additionalPlugins: []
artifactID: bzclient
Expand All @@ -24,7 +24,7 @@ java:
defaultErrorName: APIException
flattenGlobalSecurity: true
githubURL: github.com/Benzinga/bz-java-client
groupID: io.bzclient
groupID: com.benzinga
imports:
option: openapi
paths:
Expand Down
8 changes: 4 additions & 4 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
speakeasyVersion: 1.456.0
speakeasyVersion: 1.456.1
sources:
bz-apis:
sourceNamespace: bz-java-client
sourceRevisionDigest: sha256:0a53032b7cad7cb3854655825bc9d96c43ecb50853b3a8299cb395622ff287ef
sourceRevisionDigest: sha256:3b1aed16ff82f492d696f254ebb329efa8198b884e904e413888b07678c0f2ef
sourceBlobDigest: sha256:97ab45e06208ba917f406d570a086dbcebe7c4b3c50b7d12f0760e7ffad024c9
tags:
- latest
Expand All @@ -11,10 +11,10 @@ targets:
bzclient:
source: bz-apis
sourceNamespace: bz-java-client
sourceRevisionDigest: sha256:0a53032b7cad7cb3854655825bc9d96c43ecb50853b3a8299cb395622ff287ef
sourceRevisionDigest: sha256:3b1aed16ff82f492d696f254ebb329efa8198b884e904e413888b07678c0f2ef
sourceBlobDigest: sha256:97ab45e06208ba917f406d570a086dbcebe7c4b3c50b7d12f0760e7ffad024c9
codeSamplesNamespace: bz-java-client-code-samples
codeSamplesRevisionDigest: sha256:851836d88cd31d3ab6a9cfcf9329358df08f7b970b695f74dae2a6c0df1edd68
codeSamplesRevisionDigest: sha256:f0399249b0751629194a857bd9138186492263dbf91129680a7ce944fa105592
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
46 changes: 23 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'io.bzclient:bzclient:0.3.6'
implementation 'com.benzinga:bzclient:0.3.7'
```

Maven:
```xml
<dependency>
<groupId>io.bzclient</groupId>
<groupId>com.benzinga</groupId>
<artifactId>bzclient</artifactId>
<version>0.3.6</version>
<version>0.3.7</version>
</dependency>
```

Expand All @@ -83,8 +83,8 @@ gradlew.bat publishToMavenLocal -Pskip.signing
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import java.lang.Exception;

public class Application {
Expand Down Expand Up @@ -123,8 +123,8 @@ To authenticate with the API the `apiKeyAuth` parameter must be set when initial
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import java.lang.Exception;

public class Application {
Expand Down Expand Up @@ -335,10 +335,10 @@ To change the default retry strategy for a single API call, you can provide a `R
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import io.bzclient.bzclient.utils.BackoffStrategy;
import io.bzclient.bzclient.utils.RetryConfig;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import com.benzinga.bzclient.utils.BackoffStrategy;
import com.benzinga.bzclient.utils.RetryConfig;
import java.lang.Exception;
import java.util.concurrent.TimeUnit;

Expand Down Expand Up @@ -376,10 +376,10 @@ If you'd like to override the default retry strategy for all operations that sup
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import io.bzclient.bzclient.utils.BackoffStrategy;
import io.bzclient.bzclient.utils.RetryConfig;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import com.benzinga.bzclient.utils.BackoffStrategy;
import com.benzinga.bzclient.utils.RetryConfig;
import java.lang.Exception;
import java.util.concurrent.TimeUnit;

Expand Down Expand Up @@ -431,10 +431,10 @@ By default, an API error will throw a `models/errors/APIException` exception. Wh
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.errors.ApiErrorResponse;
import io.bzclient.bzclient.models.operations.GetAnalystInsightsV1Request;
import io.bzclient.bzclient.models.operations.GetAnalystInsightsV1Response;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.errors.ApiErrorResponse;
import com.benzinga.bzclient.models.operations.GetAnalystInsightsV1Request;
import com.benzinga.bzclient.models.operations.GetAnalystInsightsV1Response;
import java.lang.Exception;

public class Application {
Expand Down Expand Up @@ -480,8 +480,8 @@ You can override the default server globally using the `.serverIndex(int serverI
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import java.lang.Exception;

public class Application {
Expand Down Expand Up @@ -511,8 +511,8 @@ The default server can also be overridden globally using the `.serverURL(String
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import java.lang.Exception;

public class Application {
Expand Down
4 changes: 2 additions & 2 deletions USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import java.lang.Exception;

public class Application {
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jar {
dependsOn(":generatePomFileForMavenPublication")
archiveBaseName = "bzclient"

into("META-INF/maven/io.bzclient/bzclient") {
into("META-INF/maven/com.benzinga/bzclient") {
from("$buildDir/pom.xml")
}
}
Expand All @@ -62,8 +62,8 @@ tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}

group = "io.bzclient"
version = "0.3.6"
group = "com.benzinga"
version = "0.3.7"

sourcesJar {
archiveBaseName = "bzclient"
Expand Down Expand Up @@ -99,9 +99,9 @@ publishing {

publications {
maven(MavenPublication) {
groupId = 'io.bzclient'
groupId = 'com.benzinga'
artifactId = 'bzclient'
version = '0.3.6'
version = '0.3.7'

from components.java

Expand Down
8 changes: 4 additions & 4 deletions docs/sdks/analystinsights/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Get Analyst Insights V1
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.errors.ApiErrorResponse;
import io.bzclient.bzclient.models.operations.GetAnalystInsightsV1Request;
import io.bzclient.bzclient.models.operations.GetAnalystInsightsV1Response;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.errors.ApiErrorResponse;
import com.benzinga.bzclient.models.operations.GetAnalystInsightsV1Request;
import com.benzinga.bzclient.models.operations.GetAnalystInsightsV1Response;
import java.lang.Exception;

public class Application {
Expand Down
4 changes: 2 additions & 2 deletions docs/sdks/analystreportsrawtext/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Get Analyst Reports Raw Text Data
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
import java.lang.Exception;

public class Application {
Expand Down
6 changes: 3 additions & 3 deletions docs/sdks/bars/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Get Bars V2
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.errors.BzhttpResp;
import io.bzclient.bzclient.models.operations.GetBarsV2Response;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.errors.BzhttpResp;
import com.benzinga.bzclient.models.operations.GetBarsV2Response;
import java.lang.Exception;

public class Application {
Expand Down
6 changes: 3 additions & 3 deletions docs/sdks/bullsbearssaybearssay/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Get Bulls Say Bears Say V1
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.errors.ApiErrorResponse;
import io.bzclient.bzclient.models.operations.GetBullsSayBearsSayV1Response;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.errors.ApiErrorResponse;
import com.benzinga.bzclient.models.operations.GetBullsSayBearsSayV1Response;
import java.lang.Exception;

public class Application {
Expand Down
4 changes: 2 additions & 2 deletions docs/sdks/bzclientquotedelayed/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Get delayed quotes for a list of symbols
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetQuoteDelayedV2Response;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetQuoteDelayedV2Response;
import java.lang.Exception;

public class Application {
Expand Down
6 changes: 3 additions & 3 deletions docs/sdks/conferencecalls/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Returns Conference Calls data
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetConferenceCallsRequest;
import io.bzclient.bzclient.models.operations.GetConferenceCallsResponse;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetConferenceCallsRequest;
import com.benzinga.bzclient.models.operations.GetConferenceCallsResponse;
import java.lang.Exception;

public class Application {
Expand Down
6 changes: 3 additions & 3 deletions docs/sdks/consensusratings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Get Consensus Ratings for a given symbol
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetConsensusRatingsV1Request;
import io.bzclient.bzclient.models.operations.GetConsensusRatingsV1Response;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetConsensusRatingsV1Request;
import com.benzinga.bzclient.models.operations.GetConsensusRatingsV1Response;
import java.lang.Exception;

public class Application {
Expand Down
6 changes: 3 additions & 3 deletions docs/sdks/derivedfiguresandratios/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Get derived figures and ratios for a list of symbols
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetDerivedFiguresAndRatiosV3Response;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetDerivedFiguresAndRatiosV3Response;
import java.lang.Exception;

public class Application {
Expand All @@ -32,7 +32,7 @@ public class Application {
.symbols("<value>")
.from("<value>")
.to("<value>")
.date("2024-08-30")
.date("2024-08-31")
.call();

if (res.string().isPresent()) {
Expand Down
12 changes: 6 additions & 6 deletions docs/sdks/dividends/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Returns a list of dividends
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetDividendsV22Request;
import io.bzclient.bzclient.models.operations.GetDividendsV22Response;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetDividendsV22Request;
import com.benzinga.bzclient.models.operations.GetDividendsV22Response;
import java.lang.Exception;

public class Application {
Expand Down Expand Up @@ -69,9 +69,9 @@ Returns a list of dividends
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetDividendsRequest;
import io.bzclient.bzclient.models.operations.GetDividendsResponse;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetDividendsRequest;
import com.benzinga.bzclient.models.operations.GetDividendsResponse;
import java.lang.Exception;

public class Application {
Expand Down
4 changes: 2 additions & 2 deletions docs/sdks/earningratios/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Get earning ratios for a list of symbols, ISINs, or CIKs
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetEarningRatiosV21Response;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetEarningRatiosV21Response;
import java.lang.Exception;

public class Application {
Expand Down
6 changes: 3 additions & 3 deletions docs/sdks/earnings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Returns the earnings data
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetEarningsRequest;
import io.bzclient.bzclient.models.operations.GetEarningsResponse;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetEarningsRequest;
import com.benzinga.bzclient.models.operations.GetEarningsResponse;
import java.lang.Exception;

public class Application {
Expand Down
8 changes: 4 additions & 4 deletions docs/sdks/earningscalltranscripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Get Earnings Call Transcripts
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetEarningsCallTranscriptsResponse;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetEarningsCallTranscriptsResponse;
import java.lang.Exception;
import java.util.List;

Expand Down Expand Up @@ -74,8 +74,8 @@ Get Earnings Call Transcript Audio Files
```java
package hello.world;

import io.bzclient.bzclient.Bzclient;
import io.bzclient.bzclient.models.operations.GetEarningsCallTranscriptAudioFilesResponse;
import com.benzinga.bzclient.Bzclient;
import com.benzinga.bzclient.models.operations.GetEarningsCallTranscriptAudioFilesResponse;
import java.lang.Exception;
import java.util.List;

Expand Down
Loading

0 comments on commit a53207f

Please sign in to comment.