Skip to content

Commit 6330faf

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.493.0
1 parent 86baeeb commit 6330faf

File tree

184 files changed

+4241
-1703
lines changed

Some content is hidden

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

184 files changed

+4241
-1703
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.speakeasy/reports
12
# Ignore Gradle project-specific cache directory
23
.gradle
34
# Ignore Gradle build output directory

.speakeasy/gen.lock

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

.speakeasy/gen.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ generation:
99
nameResolutionDec2023: true
1010
parameterOrderingFeb2024: true
1111
requestResponseComponentNamesFeb2024: true
12+
securityFeb2025: false
1213
auth:
1314
oAuth2ClientCredentialsEnabled: true
1415
oAuth2PasswordEnabled: false
1516
java:
16-
version: 1.0.0-beta
17+
version: 1.0.0-beta.1
1718
additionalDependencies: []
1819
additionalPlugins:
1920
- id 'org.jreleaser' version '1.15.0'

.speakeasy/workflow.lock

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
1-
speakeasyVersion: 1.448.2
1+
speakeasyVersion: 1.493.0
22
sources:
33
my-first-source:
44
sourceNamespace: my-first-source
5-
sourceRevisionDigest: sha256:480494c08f99f68cd119fdb481d81d31d37e4e22211cc6fd8a5197857b7580b4
6-
sourceBlobDigest: sha256:422c969f0c8ded72f1dc9d756407a9d51740270b9d16fd9c4f4a9d50f4e714ba
5+
sourceRevisionDigest: sha256:70f060c935b0654a2cbe056e04d24109e36b69f630211e32f27c928bc1979764
6+
sourceBlobDigest: sha256:75b0171742763422c056e7e3f421f9453b761cb4fd207c33c526bd560870f380
77
tags:
88
- latest
9+
- speakeasy-sdk-regen-1733703738
910
- "2018-02-08"
1011
targets:
1112
my-first-target:
1213
source: my-first-source
1314
sourceNamespace: my-first-source
14-
sourceRevisionDigest: sha256:480494c08f99f68cd119fdb481d81d31d37e4e22211cc6fd8a5197857b7580b4
15-
sourceBlobDigest: sha256:422c969f0c8ded72f1dc9d756407a9d51740270b9d16fd9c4f4a9d50f4e714ba
15+
sourceRevisionDigest: sha256:70f060c935b0654a2cbe056e04d24109e36b69f630211e32f27c928bc1979764
16+
sourceBlobDigest: sha256:75b0171742763422c056e7e3f421f9453b761cb4fd207c33c526bd560870f380
1617
codeSamplesNamespace: my-first-source-java-code-samples
17-
codeSamplesRevisionDigest: sha256:2b960672ec02abfbb6692e804ee954c218ece797c765654fab7f71084709ef08
18+
codeSamplesRevisionDigest: sha256:3d79b9786d001edc5e2ba9be12cc81110e4647b62314b0d1f089c12c59982432
1819
workflow:
1920
workflowVersion: 1.0.0
2021
speakeasyVersion: latest

.speakeasy/workflow.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ targets:
1212
source: my-first-source
1313
publish:
1414
java:
15-
useSonatypeLegacy: false
1615
ossrhUsername: $ossrh_username
1716
ossrhPassword: $ossrh_password
1817
gpgSecretKey: $java_gpg_secret_key

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ public class Application {
308308
InitiateOauth2SigninResponse res = sdk.carrierAccounts().initiateOauth2Signin()
309309
.carrierAccountObjectId("<id>")
310310
.redirectUri("https://enlightened-mortise.com/")
311-
.state("Louisiana")
311+
.state("Florida")
312312
.shippoApiVersion("2018-02-08")
313313
.call();
314314

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,14 @@ Based on:
6060
### Generated
6161
- [java v1.0.0-beta.3] .
6262
### Releases
63-
- [Maven Central v1.0.0-beta.3] https://central.sonatype.com/artifact/com.goshippo/sdk/1.0.0-beta.3 - .
63+
- [Maven Central v1.0.0-beta.3] https://central.sonatype.com/artifact/com.goshippo/sdk/1.0.0-beta.3 - .
64+
65+
## 2025-02-17 00:21:05
66+
### Changes
67+
Based on:
68+
- OpenAPI Doc
69+
- Speakeasy CLI 1.493.0 (2.512.4) https://github.com/speakeasy-api/speakeasy
70+
### Generated
71+
- [java v1.0.0-beta.1] .
72+
### Releases
73+
- [Maven Central v1.0.0-beta.1] https://central.sonatype.com/artifact/com.goshippo/shippo-sdk/1.0.0-beta.1 - .

build.gradle

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ tasks.withType(Javadoc) {
6464
}
6565

6666
group = "com.goshippo"
67-
version = "1.0.0-beta"
67+
version = "1.0.0-beta.1"
6868

6969
sourcesJar {
7070
archiveBaseName = "shippo-sdk"
@@ -102,7 +102,7 @@ publishing {
102102
maven(MavenPublication) {
103103
groupId = 'com.goshippo'
104104
artifactId = 'shippo-sdk'
105-
version = '1.0.0-beta'
105+
version = '1.0.0-beta.1'
106106

107107
from components.java
108108

@@ -145,17 +145,15 @@ if (!project.hasProperty('skip.signing')) {
145145
}
146146
}
147147

148+
149+
148150
dependencies {
149-
api 'com.fasterxml.jackson.core:jackson-annotations:2.17.2'
150-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
151-
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2'
152-
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.17.2'
151+
api 'com.fasterxml.jackson.core:jackson-annotations:2.18.2'
152+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
153+
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.2'
154+
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.18.2'
153155
api('org.openapitools:jackson-databind-nullable:0.2.6') {exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'}
154-
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
155-
implementation 'org.apache.httpcomponents:httpmime:4.5.14'
156-
implementation 'commons-io:commons-io:2.15.1'
156+
implementation 'commons-io:commons-io:2.18.0'
157157
}
158158

159-
160-
161159
apply from: 'build-extras.gradle'

docs/models/components/CarrierAccountCanadaPostCreateRequest.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
## Fields
55

6-
| Field | Type | Required | Description | Example |
7-
| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
8-
| `carrier` | *String* | :heavy_check_mark: | N/A | canada_post |
9-
| `parameters` | [CarrierAccountCanadaPostCreateParameters](../../models/components/CarrierAccountCanadaPostCreateParameters.md) | :heavy_check_mark: | N/A | |
6+
| Field | Type | Required | Description |
7+
| --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
8+
| `carrier` | *String* | :heavy_check_mark: | N/A |
9+
| `parameters` | [CarrierAccountCanadaPostCreateParameters](../../models/components/CarrierAccountCanadaPostCreateParameters.md) | :heavy_check_mark: | N/A |

docs/models/components/CarrierAccountChronopostCreateRequest.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
## Fields
55

6-
| Field | Type | Required | Description | Example |
7-
| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
8-
| `carrier` | *String* | :heavy_check_mark: | N/A | chronopost |
9-
| `parameters` | [CarrierAccountChronopostCreateRequestParameters](../../models/components/CarrierAccountChronopostCreateRequestParameters.md) | :heavy_check_mark: | N/A | |
6+
| Field | Type | Required | Description |
7+
| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
8+
| `carrier` | *String* | :heavy_check_mark: | N/A |
9+
| `parameters` | [CarrierAccountChronopostCreateRequestParameters](../../models/components/CarrierAccountChronopostCreateRequestParameters.md) | :heavy_check_mark: | N/A |

0 commit comments

Comments
 (0)