Skip to content

Commit a7f35d4

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.481.1
1 parent 86baeeb commit a7f35d4

File tree

178 files changed

+3657
-1561
lines changed

Some content is hidden

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

178 files changed

+3657
-1561
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: 123 additions & 86 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ generation:
1313
oAuth2ClientCredentialsEnabled: true
1414
oAuth2PasswordEnabled: false
1515
java:
16-
version: 1.0.0-beta
16+
version: 1.0.0-beta.1
1717
additionalDependencies: []
1818
additionalPlugins:
1919
- 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.481.1
22
sources:
33
my-first-source:
44
sourceNamespace: my-first-source
5-
sourceRevisionDigest: sha256:480494c08f99f68cd119fdb481d81d31d37e4e22211cc6fd8a5197857b7580b4
6-
sourceBlobDigest: sha256:422c969f0c8ded72f1dc9d756407a9d51740270b9d16fd9c4f4a9d50f4e714ba
5+
sourceRevisionDigest: sha256:34bd285ddf6d4c3e3998a4216228598d6046e917d3c7567e205838debf4cf481
6+
sourceBlobDigest: sha256:9331910575a380f9073bf9d31fb81996067da3d0ee449b0513dbe10790790b37
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:34bd285ddf6d4c3e3998a4216228598d6046e917d3c7567e205838debf4cf481
16+
sourceBlobDigest: sha256:9331910575a380f9073bf9d31fb81996067da3d0ee449b0513dbe10790790b37
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-03 00:20:01
66+
### Changes
67+
Based on:
68+
- OpenAPI Doc
69+
- Speakeasy CLI 1.481.1 (2.500.5) 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: 10 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,16 @@ 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 'org.apache.httpcomponents.client5:httpclient5:5.4.1'
157+
implementation 'commons-io:commons-io:2.18.0'
157158
}
158159

159-
160-
161160
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)