Skip to content

Commit a53207f

Browse files
author
Teja Surisetty
committed
updated build
1 parent a3f3186 commit a53207f

File tree

385 files changed

+2117
-2117
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

385 files changed

+2117
-2117
lines changed

.github/workflows/sdk_publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
publish:
1717
uses: speakeasy-api/sdk-generation-action/.github/workflows/sdk-publish.yaml@v15
1818
with:
19-
target: BZClient
19+
target: bzclient
2020
secrets:
2121
github_access_token: ${{ secrets.GITHUB_TOKEN }}
22-
java_gpg_passphrase: ${{ secrets.JAVA_GPG_PASSPHRASE }}
23-
java_gpg_secret_key: ${{ secrets.JAVA_GPG_SECRET_KEY }}
22+
java_gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}
23+
java_gpg_secret_key: ${{ secrets.GPG_SECRET_KEY }}
2424
ossrh_password: ${{ secrets.OSSRH_PASSWORD }}
2525
ossrh_username: ${{ secrets.OSSRH_USERNAME }}
2626
speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }}

.speakeasy/gen.lock

Lines changed: 344 additions & 344 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ generation:
1313
oAuth2ClientCredentialsEnabled: false
1414
oAuth2PasswordEnabled: false
1515
java:
16-
version: 0.3.6
16+
version: 0.3.7
1717
additionalDependencies: []
1818
additionalPlugins: []
1919
artifactID: bzclient
@@ -24,7 +24,7 @@ java:
2424
defaultErrorName: APIException
2525
flattenGlobalSecurity: true
2626
githubURL: github.com/Benzinga/bz-java-client
27-
groupID: io.bzclient
27+
groupID: com.benzinga
2828
imports:
2929
option: openapi
3030
paths:

.speakeasy/workflow.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
speakeasyVersion: 1.456.0
1+
speakeasyVersion: 1.456.1
22
sources:
33
bz-apis:
44
sourceNamespace: bz-java-client
5-
sourceRevisionDigest: sha256:0a53032b7cad7cb3854655825bc9d96c43ecb50853b3a8299cb395622ff287ef
5+
sourceRevisionDigest: sha256:3b1aed16ff82f492d696f254ebb329efa8198b884e904e413888b07678c0f2ef
66
sourceBlobDigest: sha256:97ab45e06208ba917f406d570a086dbcebe7c4b3c50b7d12f0760e7ffad024c9
77
tags:
88
- latest
@@ -11,10 +11,10 @@ targets:
1111
bzclient:
1212
source: bz-apis
1313
sourceNamespace: bz-java-client
14-
sourceRevisionDigest: sha256:0a53032b7cad7cb3854655825bc9d96c43ecb50853b3a8299cb395622ff287ef
14+
sourceRevisionDigest: sha256:3b1aed16ff82f492d696f254ebb329efa8198b884e904e413888b07678c0f2ef
1515
sourceBlobDigest: sha256:97ab45e06208ba917f406d570a086dbcebe7c4b3c50b7d12f0760e7ffad024c9
1616
codeSamplesNamespace: bz-java-client-code-samples
17-
codeSamplesRevisionDigest: sha256:851836d88cd31d3ab6a9cfcf9329358df08f7b970b695f74dae2a6c0df1edd68
17+
codeSamplesRevisionDigest: sha256:f0399249b0751629194a857bd9138186492263dbf91129680a7ce944fa105592
1818
workflow:
1919
workflowVersion: 1.0.0
2020
speakeasyVersion: latest

README.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ The samples below show how a published SDK artifact is used:
4848

4949
Gradle:
5050
```groovy
51-
implementation 'io.bzclient:bzclient:0.3.6'
51+
implementation 'com.benzinga:bzclient:0.3.7'
5252
```
5353

5454
Maven:
5555
```xml
5656
<dependency>
57-
<groupId>io.bzclient</groupId>
57+
<groupId>com.benzinga</groupId>
5858
<artifactId>bzclient</artifactId>
59-
<version>0.3.6</version>
59+
<version>0.3.7</version>
6060
</dependency>
6161
```
6262

@@ -83,8 +83,8 @@ gradlew.bat publishToMavenLocal -Pskip.signing
8383
```java
8484
package hello.world;
8585

86-
import io.bzclient.bzclient.Bzclient;
87-
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
86+
import com.benzinga.bzclient.Bzclient;
87+
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
8888
import java.lang.Exception;
8989

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

126-
import io.bzclient.bzclient.Bzclient;
127-
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
126+
import com.benzinga.bzclient.Bzclient;
127+
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
128128
import java.lang.Exception;
129129

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

338-
import io.bzclient.bzclient.Bzclient;
339-
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
340-
import io.bzclient.bzclient.utils.BackoffStrategy;
341-
import io.bzclient.bzclient.utils.RetryConfig;
338+
import com.benzinga.bzclient.Bzclient;
339+
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
340+
import com.benzinga.bzclient.utils.BackoffStrategy;
341+
import com.benzinga.bzclient.utils.RetryConfig;
342342
import java.lang.Exception;
343343
import java.util.concurrent.TimeUnit;
344344

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

379-
import io.bzclient.bzclient.Bzclient;
380-
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
381-
import io.bzclient.bzclient.utils.BackoffStrategy;
382-
import io.bzclient.bzclient.utils.RetryConfig;
379+
import com.benzinga.bzclient.Bzclient;
380+
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
381+
import com.benzinga.bzclient.utils.BackoffStrategy;
382+
import com.benzinga.bzclient.utils.RetryConfig;
383383
import java.lang.Exception;
384384
import java.util.concurrent.TimeUnit;
385385

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

434-
import io.bzclient.bzclient.Bzclient;
435-
import io.bzclient.bzclient.models.errors.ApiErrorResponse;
436-
import io.bzclient.bzclient.models.operations.GetAnalystInsightsV1Request;
437-
import io.bzclient.bzclient.models.operations.GetAnalystInsightsV1Response;
434+
import com.benzinga.bzclient.Bzclient;
435+
import com.benzinga.bzclient.models.errors.ApiErrorResponse;
436+
import com.benzinga.bzclient.models.operations.GetAnalystInsightsV1Request;
437+
import com.benzinga.bzclient.models.operations.GetAnalystInsightsV1Response;
438438
import java.lang.Exception;
439439

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

483-
import io.bzclient.bzclient.Bzclient;
484-
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
483+
import com.benzinga.bzclient.Bzclient;
484+
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
485485
import java.lang.Exception;
486486

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

514-
import io.bzclient.bzclient.Bzclient;
515-
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
514+
import com.benzinga.bzclient.Bzclient;
515+
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
516516
import java.lang.Exception;
517517

518518
public class Application {

USAGE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
```java
33
package hello.world;
44

5-
import io.bzclient.bzclient.Bzclient;
6-
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
5+
import com.benzinga.bzclient.Bzclient;
6+
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
77
import java.lang.Exception;
88

99
public class Application {

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jar {
4343
dependsOn(":generatePomFileForMavenPublication")
4444
archiveBaseName = "bzclient"
4545

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

65-
group = "io.bzclient"
66-
version = "0.3.6"
65+
group = "com.benzinga"
66+
version = "0.3.7"
6767

6868
sourcesJar {
6969
archiveBaseName = "bzclient"
@@ -99,9 +99,9 @@ publishing {
9999

100100
publications {
101101
maven(MavenPublication) {
102-
groupId = 'io.bzclient'
102+
groupId = 'com.benzinga'
103103
artifactId = 'bzclient'
104-
version = '0.3.6'
104+
version = '0.3.7'
105105

106106
from components.java
107107

docs/sdks/analystinsights/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ Get Analyst Insights V1
1616
```java
1717
package hello.world;
1818

19-
import io.bzclient.bzclient.Bzclient;
20-
import io.bzclient.bzclient.models.errors.ApiErrorResponse;
21-
import io.bzclient.bzclient.models.operations.GetAnalystInsightsV1Request;
22-
import io.bzclient.bzclient.models.operations.GetAnalystInsightsV1Response;
19+
import com.benzinga.bzclient.Bzclient;
20+
import com.benzinga.bzclient.models.errors.ApiErrorResponse;
21+
import com.benzinga.bzclient.models.operations.GetAnalystInsightsV1Request;
22+
import com.benzinga.bzclient.models.operations.GetAnalystInsightsV1Response;
2323
import java.lang.Exception;
2424

2525
public class Application {

docs/sdks/analystreportsrawtext/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Get Analyst Reports Raw Text Data
1616
```java
1717
package hello.world;
1818

19-
import io.bzclient.bzclient.Bzclient;
20-
import io.bzclient.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
19+
import com.benzinga.bzclient.Bzclient;
20+
import com.benzinga.bzclient.models.operations.GetAnalystReportsRawTextDataResponse;
2121
import java.lang.Exception;
2222

2323
public class Application {

docs/sdks/bars/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Get Bars V2
1616
```java
1717
package hello.world;
1818

19-
import io.bzclient.bzclient.Bzclient;
20-
import io.bzclient.bzclient.models.errors.BzhttpResp;
21-
import io.bzclient.bzclient.models.operations.GetBarsV2Response;
19+
import com.benzinga.bzclient.Bzclient;
20+
import com.benzinga.bzclient.models.errors.BzhttpResp;
21+
import com.benzinga.bzclient.models.operations.GetBarsV2Response;
2222
import java.lang.Exception;
2323

2424
public class Application {

0 commit comments

Comments
 (0)