Skip to content

Commit 1850c07

Browse files
committed
Updated on 2020-09-21 19:08:43. Version: 1.2.0
1 parent affe5d9 commit 1850c07

File tree

73 files changed

+4288
-228
lines changed

Some content is hidden

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

73 files changed

+4288
-228
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.0 [September 21, 2020]
2+
3+
- Renamed some internal models for template creation API endpoints. (CreateTemplateData / CreateTemplateData1 renamed to CreateHtmlTemplateData and CreateTemplateFromUploadData)
4+
15
### 1.1.0 [September 12, 2020]
26

37
- **BREAKING CHANGE**: Renamed createTemplate operation to createPDFTemplate

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.1.0</version>
29+
<version>1.2.0</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.1.0'
5+
version = '1.2.0'
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.1.0",
5+
version := "1.2.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/AddFieldsData.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# AddFieldsData
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**fields** | [**List&lt;TemplatestemplateIdaddFieldsFields&gt;**](TemplatestemplateIdaddFieldsFields.md) | |
8+
9+
10+

docs/AddFieldsTemplateResponse.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
# AddFieldsTemplateResponse
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**newFieldIds** | **List&lt;Integer&gt;** | | [optional]
8+
**errors** | **List&lt;String&gt;** | | [optional]
9+
**status** | [**StatusEnum**](#StatusEnum) | | [optional]
10+
11+
12+
<a name="StatusEnum"></a>
13+
## Enum: StatusEnum
14+
Name | Value
15+
---- | -----
16+
SUCCESS | &quot;success&quot;
17+
ERROR | &quot;error&quot;
18+
19+
20+

docs/CreateHtmlTemplateData.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# CreateHtmlTemplateData
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**template** | [**HtmlTemplateData**](HtmlTemplateData.md) | |
8+
9+
10+

docs/CreateTemplateData.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

docs/CreateTemplateData1.md

Lines changed: 0 additions & 10 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# CreateTemplateFromUploadData
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**template** | [**UploadTemplateData**](UploadTemplateData.md) | |
8+
9+
10+

0 commit comments

Comments
 (0)