Skip to content

Commit 70075f0

Browse files
committed
Updated on 2020-09-24 00:43:50. Version: 1.2.1
1 parent 1850c07 commit 70075f0

Some content is hidden

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

55 files changed

+134
-55
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.2.1 [September 24, 2020]
2+
3+
- Fixed the "include_data=true" option for the "Get Submission" API endpoint. Added the "data" property to the Submission model so that this is parsed and returned correctly when requested
4+
15
### 1.2.0 [September 21, 2020]
26

37
- Renamed some internal models for template creation API endpoints. (CreateTemplateData / CreateTemplateData1 renamed to CreateHtmlTemplateData and CreateTemplateFromUploadData)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ After the client library is installed/deployed, you can use it in your Maven pro
2626
<dependency>
2727
<groupId>com.docspring</groupId>
2828
<artifactId>DocSpring</artifactId>
29-
<version>1.2.0</version>
29+
<version>1.2.1</version>
3030
<scope>compile</scope>
3131
</dependency>
3232

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.docspring'
5-
version = '1.2.0'
5+
version = '1.2.1'
66

77
buildscript {
88
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.docspring",
44
name := "DocSpring",
5-
version := "1.2.0",
5+
version := "1.2.1",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/PdfApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ api_token_basic.setPassword("YOUR PASSWORD");
10021002

10031003
PdfApi apiInstance = new PdfApi();
10041004
String submissionId = sub_000000000000000001; // String |
1005-
Boolean includeData = false; // Boolean |
1005+
Boolean includeData = true; // Boolean |
10061006
try {
10071007
Submission result = apiInstance.getSubmission(submissionId, includeData);
10081008
System.out.println(result);

docs/Submission.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
1212
**expiresAt** | **String** | | [optional]
1313
**processedAt** | **String** | | [optional]
1414
**state** | [**StateEnum**](#StateEnum) | |
15+
**data** | **Object** | | [optional]
1516
**metadata** | **Object** | | [optional]
1617
**truncatedText** | **Object** | | [optional]
1718
**pdfHash** | **String** | | [optional]
@@ -20,6 +21,8 @@ Name | Type | Description | Notes
2021
**batchId** | **String** | | [optional]
2122
**dataRequests** | [**List&lt;SubmissionDataRequest&gt;**](SubmissionDataRequest.md) | | [optional]
2223
**actions** | [**List&lt;SubmissionAction&gt;**](SubmissionAction.md) | | [optional]
24+
**source** | **String** | | [optional]
25+
**referrer** | **String** | | [optional]
2326

2427

2528
<a name="StateEnum"></a>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>DocSpring</artifactId>
66
<packaging>jar</packaging>
77
<name>DocSpring</name>
8-
<version>1.2.0</version>
8+
<version>1.2.1</version>
99
<url>https://github.com/DocSpring/docspring-java</url>
1010
<description>Java API client for the DocSpring PDF generation service</description>
1111
<scm>

src/main/java/com/docspring/AddFieldsData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/**
3131
* AddFieldsData
3232
*/
33-
@javax.annotation.Generated(value = "com.docspring.codegen.DocSpringJavaClientCodegen", date = "2020-09-21T19:06:58.618+08:00[Asia/Kuala_Lumpur]")
33+
@javax.annotation.Generated(value = "com.docspring.codegen.DocSpringJavaClientCodegen", date = "2020-09-24T00:43:49.031+08:00[Asia/Kuala_Lumpur]")
3434
public class AddFieldsData {
3535
public static final String SERIALIZED_NAME_FIELDS = "fields";
3636
@SerializedName(SERIALIZED_NAME_FIELDS)

src/main/java/com/docspring/AddFieldsTemplateResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* AddFieldsTemplateResponse
3131
*/
32-
@javax.annotation.Generated(value = "com.docspring.codegen.DocSpringJavaClientCodegen", date = "2020-09-21T19:06:58.618+08:00[Asia/Kuala_Lumpur]")
32+
@javax.annotation.Generated(value = "com.docspring.codegen.DocSpringJavaClientCodegen", date = "2020-09-24T00:43:49.031+08:00[Asia/Kuala_Lumpur]")
3333
public class AddFieldsTemplateResponse {
3434
public static final String SERIALIZED_NAME_NEW_FIELD_IDS = "new_field_ids";
3535
@SerializedName(SERIALIZED_NAME_NEW_FIELD_IDS)

src/main/java/com/docspring/AuthenticationError.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/**
2828
* AuthenticationError
2929
*/
30-
@javax.annotation.Generated(value = "com.docspring.codegen.DocSpringJavaClientCodegen", date = "2020-09-21T19:06:58.618+08:00[Asia/Kuala_Lumpur]")
30+
@javax.annotation.Generated(value = "com.docspring.codegen.DocSpringJavaClientCodegen", date = "2020-09-24T00:43:49.031+08:00[Asia/Kuala_Lumpur]")
3131
public class AuthenticationError {
3232
/**
3333
* Gets or Sets status

0 commit comments

Comments
 (0)