Skip to content

Commit

Permalink
Release 1.5.0 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtreminio-dropbox authored Aug 22, 2024
1 parent c376e6a commit 61e090e
Show file tree
Hide file tree
Showing 16 changed files with 405 additions and 86 deletions.
2 changes: 2 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ docs/AccountCreateResponse.md
docs/AccountGetResponse.md
docs/AccountResponse.md
docs/AccountResponseQuotas.md
docs/AccountResponseUsage.md
docs/AccountUpdateRequest.md
docs/AccountVerifyRequest.md
docs/AccountVerifyResponse.md
Expand Down Expand Up @@ -226,6 +227,7 @@ src/main/java/com/dropbox/sign/model/AccountCreateResponse.java
src/main/java/com/dropbox/sign/model/AccountGetResponse.java
src/main/java/com/dropbox/sign/model/AccountResponse.java
src/main/java/com/dropbox/sign/model/AccountResponseQuotas.java
src/main/java/com/dropbox/sign/model/AccountResponseUsage.java
src/main/java/com/dropbox/sign/model/AccountUpdateRequest.java
src/main/java/com/dropbox/sign/model/AccountVerifyRequest.java
src/main/java/com/dropbox/sign/model/AccountVerifyResponse.java
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.dropbox.sign</groupId>
<artifactId>dropbox-sign</artifactId>
<version>1.4.1</version>
<version>1.5.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -71,7 +71,7 @@ Add this dependency to your project's build file:
}
dependencies {
implementation "com.dropbox.sign:dropbox-sign:1.4.1"
implementation "com.dropbox.sign:dropbox-sign:1.5.0"
}
```

Expand All @@ -85,7 +85,7 @@ mvn clean package

Then manually install the following JARs:

- `target/dropbox-sign-1.4.1.jar`
- `target/dropbox-sign-1.5.0.jar`
- `target/lib/*.jar`

## Getting Started
Expand Down Expand Up @@ -231,6 +231,7 @@ Class | Method | HTTP request | Description
- [AccountGetResponse](docs/AccountGetResponse.md)
- [AccountResponse](docs/AccountResponse.md)
- [AccountResponseQuotas](docs/AccountResponseQuotas.md)
- [AccountResponseUsage](docs/AccountResponseUsage.md)
- [AccountUpdateRequest](docs/AccountUpdateRequest.md)
- [AccountVerifyRequest](docs/AccountVerifyRequest.md)
- [AccountVerifyResponse](docs/AccountVerifyResponse.md)
Expand Down Expand Up @@ -427,7 +428,7 @@ apisupport@hellosign.com
This Java package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: `3.0.0`
- Package version: `1.4.1`
- Package version: `1.5.0`
- Build package: `org.openapitools.codegen.languages.JavaClientCodegen`
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.1
1.5.0
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: 'signing'

group = 'com.dropbox.sign'
archivesBaseName = 'dropbox-sign'
version = '1.4.1'
version = '1.5.0'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.dropbox.sign",
name := "dropbox-sign",
version := "1.4.1",
version := "1.5.0",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
Compile / javacOptions ++= Seq("-Xlint:deprecation"),
Expand Down
1 change: 1 addition & 0 deletions docs/AccountResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Name | Type | Description | Notes
| `roleCode` | ```String``` | The membership role for the team. | |
| `teamId` | ```String``` | The id of the team account belongs to. | |
| `locale` | ```String``` | The locale used in this Account. Check out the list of [supported locales](/api/reference/constants/#supported-locales) to learn more about the possible values. | |
| `usage` | [```AccountResponseUsage```](AccountResponseUsage.md) | | |



1 change: 1 addition & 0 deletions docs/AccountResponseQuotas.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Name | Type | Description | Notes
| `templatesTotal` | ```Integer``` | Total API templates allowed. | |
| `templatesLeft` | ```Integer``` | API templates remaining. | |
| `smsVerificationsLeft` | ```Integer``` | SMS verifications remaining. | |
| `numFaxPagesLeft` | ```Integer``` | Number of fax pages left | |



14 changes: 14 additions & 0 deletions docs/AccountResponseUsage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@


# AccountResponseUsage

Details concerning monthly usage

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
| `faxPagesSent` | ```Integer``` | Number of fax pages sent | |



2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#target = android
GROUP=com.dropbox.sign
POM_ARTIFACT_ID=dropbox-sign
VERSION_NAME=1.4.1
VERSION_NAME=1.5.0

POM_NAME=Dropbox Sign Java SDK
POM_DESCRIPTION=Use the Dropbox Sign Java SDK to connect your Java app to the service of Dropbox Sign in microseconds!
Expand Down
2 changes: 1 addition & 1 deletion openapi-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ additionalProperties:
groupId: com.dropbox.sign
artifactId: dropbox-sign
artifactName: Dropbox Sign Java SDK
artifactVersion: "1.4.1"
artifactVersion: "1.5.0"
artifactUrl: https://github.com/hellosign/dropbox-sign-java
artifactDescription: Use the Dropbox Sign Java SDK to connect your Java app to the service of Dropbox Sign in microseconds!
scmConnection: scm:git:git://github.com/hellosign/dropbox-sign-java.git
Expand Down
Loading

0 comments on commit 61e090e

Please sign in to comment.