Skip to content

Commit d919ff4

Browse files
authored
Merge pull request #5 from FastComments/translatedWarning
Add translatedWarning
2 parents 944474c + 81ea70f commit d919ff4

16 files changed

+101
-11
lines changed

client/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040
<dependency>
4141
<groupId>com.fastcomments</groupId>
4242
<artifactId>client</artifactId>
43-
<version>0.0.21</version>
43+
<version>0.0.22</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
```
@@ -56,7 +56,7 @@ Add this dependency to your project's build file:
5656
}
5757
5858
dependencies {
59-
implementation "com.fastcomments:client:0.0.21"
59+
implementation "com.fastcomments:client:0.0.22"
6060
}
6161
```
6262

@@ -70,7 +70,7 @@ mvn clean package
7070

7171
Then manually install the following JARs:
7272

73-
* `target/client-0.0.21.jar`
73+
* `target/client-0.0.22.jar`
7474
* `target/lib/*.jar`
7575

7676
## Getting Started

client/api/openapi.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5755,6 +5755,8 @@ components:
57555755
type: string
57565756
reason:
57575757
type: string
5758+
translatedWarning:
5759+
type: string
57585760
comments:
57595761
items:
57605762
$ref: '#/components/schemas/PublicComment'
@@ -6038,6 +6040,7 @@ components:
60386040
isSpam: true
60396041
isByAdmin: true
60406042
notificationCount: 1
6043+
translatedWarning: translatedWarning
60416044
includesPastPages: true
60426045
moduleData:
60436046
key: ""

client/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'com.fastcomments'
7-
version = '0.0.21'
7+
version = '0.0.22'
88

99
buildscript {
1010
repositories {

client/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.fastcomments",
44
name := "client",
5-
version := "0.0.21",
5+
version := "0.0.22",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

client/docs/GetCommentsPublic200Response.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
|**status** | **ImportedAPIStatusFAILED** | | |
1212
|**code** | **String** | | |
1313
|**reason** | **String** | | |
14+
|**translatedWarning** | **String** | | [optional] |
1415
|**comments** | [**List&lt;PublicComment&gt;**](PublicComment.md) | | |
1516
|**user** | [**UserSessionInfo**](UserSessionInfo.md) | | |
1617
|**urlIdClean** | **String** | | [optional] |

client/docs/GetCommentsResponsePublicComment.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
|**status** | **String** | | |
1212
|**code** | **String** | | [optional] |
1313
|**reason** | **String** | | [optional] |
14+
|**translatedWarning** | **String** | | [optional] |
1415
|**comments** | [**List&lt;PublicComment&gt;**](PublicComment.md) | | |
1516
|**user** | [**UserSessionInfo**](UserSessionInfo.md) | | |
1617
|**urlIdClean** | **String** | | [optional] |

client/docs/GetCommentsResponseWithPresencePublicComment.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
|**status** | **String** | | |
1212
|**code** | **String** | | [optional] |
1313
|**reason** | **String** | | [optional] |
14+
|**translatedWarning** | **String** | | [optional] |
1415
|**comments** | [**List&lt;PublicComment&gt;**](PublicComment.md) | | |
1516
|**user** | [**UserSessionInfo**](UserSessionInfo.md) | | |
1617
|**urlIdClean** | **String** | | [optional] |

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>client</artifactId>
66
<packaging>jar</packaging>
77
<name>client</name>
8-
<version>0.0.21</version>
8+
<version>0.0.22</version>
99
<url>https://fastcomments.com</url>
1010
<description>FastComments API Client - A SDK for interacting with the FastComments API</description>
1111
<scm>

client/src/main/java/com/fastcomments/invoker/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private void init() {
141141
json = new JSON();
142142

143143
// Set default User-Agent.
144-
setUserAgent("OpenAPI-Generator/0.0.21/java");
144+
setUserAgent("OpenAPI-Generator/0.0.22/java");
145145

146146
authentications = new HashMap<String, Authentication>();
147147
}

client/src/main/java/com/fastcomments/invoker/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.11.0")
1717
public class Configuration {
18-
public static final String VERSION = "0.0.21";
18+
public static final String VERSION = "0.0.22";
1919

2020
private static ApiClient defaultApiClient = new ApiClient();
2121

0 commit comments

Comments
 (0)