Skip to content

Commit a41281c

Browse files
committed
0.0.18 restore status field enum
1 parent 6dbe273 commit a41281c

15 files changed

+41
-37
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.14</version>
43+
<version>0.0.18</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.14"
59+
implementation "com.fastcomments:client:0.0.18"
6060
}
6161
```
6262

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

7171
Then manually install the following JARs:
7272

73-
* `target/client-0.0.14.jar`
73+
* `target/client-0.0.18.jar`
7474
* `target/lib/*.jar`
7575

7676
## Getting Started

client/api/openapi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4322,6 +4322,7 @@ components:
43224322
type: object
43234323
commentCount:
43244324
format: int32
4325+
nullable: true
43254326
type: integer
43264327
required:
43274328
- _id
@@ -4365,7 +4366,7 @@ components:
43654366
additionalProperties: false
43664367
properties:
43674368
status:
4368-
type: string
4369+
$ref: '#/components/schemas/ImportedAPIStatus.SUCCESS'
43694370
feedPosts:
43704371
items:
43714372
$ref: '#/components/schemas/FeedPost'
@@ -4377,7 +4378,6 @@ components:
43774378
required:
43784379
- feedPosts
43794380
- status
4380-
- user
43814381
type: object
43824382
TenantIdWS:
43834383
type: string
@@ -4509,7 +4509,7 @@ components:
45094509
key: true
45104510
user: ""
45114511
tenantIdWS: tenantIdWS
4512-
status: status
4512+
status: success
45134513
ReactFeedPostResponse:
45144514
additionalProperties: false
45154515
example:

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

client/docs/GetFeedPostsPublic200Response.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
|**myReacts** | **Map&lt;String, Map&lt;String, Boolean&gt;&gt;** | | [optional] |
1111
|**status** | **ImportedAPIStatusFAILED** | | |
1212
|**feedPosts** | [**List&lt;FeedPost&gt;**](FeedPost.md) | | |
13-
|**user** | [**UserSessionInfo**](UserSessionInfo.md) | | |
13+
|**user** | [**UserSessionInfo**](UserSessionInfo.md) | | [optional] |
1414
|**urlIdWS** | **String** | | [optional] |
1515
|**userIdWS** | **String** | | [optional] |
1616
|**tenantIdWS** | **String** | | [optional] |

client/docs/GetPublicFeedPostsResponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10-
|**status** | **String** | | |
10+
|**status** | **ImportedAPIStatusSUCCESS** | | |
1111
|**feedPosts** | [**List&lt;FeedPost&gt;**](FeedPost.md) | | |
12-
|**user** | [**UserSessionInfo**](UserSessionInfo.md) | | |
12+
|**user** | [**UserSessionInfo**](UserSessionInfo.md) | | [optional] |
1313

1414

1515

client/docs/PublicFeedPostsResponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10-
|**status** | **String** | | |
10+
|**status** | **ImportedAPIStatusSUCCESS** | | |
1111
|**feedPosts** | [**List&lt;FeedPost&gt;**](FeedPost.md) | | |
12-
|**user** | [**UserSessionInfo**](UserSessionInfo.md) | | |
12+
|**user** | [**UserSessionInfo**](UserSessionInfo.md) | | [optional] |
1313
|**urlIdWS** | **String** | | [optional] |
1414
|**userIdWS** | **String** | | [optional] |
1515
|**tenantIdWS** | **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.14</version>
8+
<version>0.0.18</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.14/java");
144+
setUserAgent("OpenAPI-Generator/0.0.18/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.14";
18+
public static final String VERSION = "0.0.18";
1919

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

0 commit comments

Comments
 (0)