Skip to content

Commit 4308eab

Browse files
author
Fast Reports
committed
sync 2023-10-19
1 parent 2381283 commit 4308eab

File tree

11 files changed

+37
-38
lines changed

11 files changed

+37
-38
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Add this dependency to your project's POM:
3434
<dependency>
3535
<groupId>cloud.fastreport.sdk</groupId>
3636
<artifactId>fastreport-cloud-sdk</artifactId>
37-
<version>2023.1.60</version>
37+
<version>2023.1.71</version>
3838
<scope>compile</scope>
3939
</dependency>
4040
```
@@ -44,7 +44,7 @@ Add this dependency to your project's POM:
4444
Add this dependency to your project's build file:
4545

4646
```groovy
47-
compile "cloud.fastreport.sdk:fastreport-cloud-sdk:2023.1.60"
47+
compile "cloud.fastreport.sdk:fastreport-cloud-sdk:2023.1.71"
4848
```
4949

5050
### Others
@@ -57,7 +57,7 @@ mvn clean package
5757

5858
Then manually install the following JARs:
5959

60-
- `target/fastreport-cloud-sdk-2023.1.60.jar`
60+
- `target/fastreport-cloud-sdk-2023.1.71.jar`
6161
- `target/lib/*.jar`
6262

6363
## Getting Started

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2023.1.60
1+
2023.1.71

api/openapi.yaml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ paths:
814814
get:
815815
operationId: DataSources_GetAvailableDataSources
816816
parameters:
817-
- description: subscription id
817+
- description: id of subscription where the datasources are located
818818
explode: true
819819
in: query
820820
name: subscriptionId
@@ -12213,9 +12213,9 @@ components:
1221312213
AuditActionsVM:
1221412214
additionalProperties: false
1221512215
example:
12216-
take: 1
12217-
count: 0
12218-
skip: 6
12216+
take: 6
12217+
hasMore: true
12218+
skip: 0
1221912219
items:
1222012220
- $t: $t
1222112221
creatorUserId: creatorUserId
@@ -12243,9 +12243,8 @@ components:
1224312243
$ref: '#/components/schemas/AuditActionVM'
1224412244
nullable: true
1224512245
type: array
12246-
count:
12247-
format: int64
12248-
type: integer
12246+
hasMore:
12247+
type: boolean
1224912248
skip:
1225012249
format: int32
1225112250
type: integer
@@ -14414,7 +14413,7 @@ components:
1441414413
properties:
1441514414
fileName:
1441614415
maxLength: 50
14417-
minLength: 1
14416+
minLength: 0
1441814417
nullable: true
1441914418
type: string
1442014419
folderId:

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 = 'cloud.fastreport.sdk'
5-
version = '2023.1.60'
5+
version = '2023.1.71'
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 := "cloud.fastreport.sdk",
44
name := "fastreport-cloud-sdk",
5-
version := "2023.1.60",
5+
version := "2023.1.71",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/AuditActionsVM.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
1010
|**items** | [**List&lt;AuditActionVM&gt;**](AuditActionVM.md) | | [optional] |
11-
|**count** | **Long** | | [optional] |
11+
|**hasMore** | **Boolean** | | [optional] |
1212
|**skip** | **Integer** | | [optional] |
1313
|**take** | **Integer** | | [optional] |
1414

docs/DataSourcesApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ public class Example {
362362
JWT.setBearerToken("BEARER TOKEN");
363363

364364
DataSourcesApi apiInstance = new DataSourcesApi(defaultClient);
365-
String subscriptionId = "subscriptionId_example"; // String | subscription id
365+
String subscriptionId = "subscriptionId_example"; // String | id of subscription where the datasources are located
366366
Integer skip = 0; // Integer | how many data sources will be skipped
367367
Integer take = 10; // Integer | how many data sources will be taken
368368
DataSourceSorting orderBy = DataSourceSorting.fromValue("None"); // DataSourceSorting | field to order by
@@ -386,7 +386,7 @@ public class Example {
386386

387387
| Name | Type | Description | Notes |
388388
|------------- | ------------- | ------------- | -------------|
389-
| **subscriptionId** | **String**| subscription id | [optional] |
389+
| **subscriptionId** | **String**| id of subscription where the datasources are located | [optional] |
390390
| **skip** | **Integer**| how many data sources will be skipped | [optional] [default to 0] |
391391
| **take** | **Integer**| how many data sources will be taken | [optional] [default to 10] |
392392
| **orderBy** | [**DataSourceSorting**](.md)| field to order by | [optional] [enum: None, CreatedTime, EditedTime, Name] |

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>fastreport-cloud-sdk</artifactId>
66
<packaging>jar</packaging>
77
<name>fastreport-cloud-sdk</name>
8-
<version>2023.1.60</version>
8+
<version>2023.1.71</version>
99
<url>https://github.com/FastReports/FastReport-Cloud-Java</url>
1010
<description>FastReport Cloud SDK</description>
1111
<scm>

src/main/java/cloud/fastreport/client/DataSourcesApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ public HttpResponse dataSourcesFetchDataForHttpResponse(String id, Map<String, O
401401
* <p><b>402</b> - Client Error
402402
* <p><b>403</b> - Forbidden
403403
* <p><b>404</b> - Not Found
404-
* @param subscriptionId subscription id
404+
* @param subscriptionId id of subscription where the datasources are located
405405
* @param skip how many data sources will be skipped
406406
* @param take how many data sources will be taken
407407
* @param orderBy field to order by

src/main/java/cloud/fastreport/model/AuditActionsVM.java

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*/
3636
@JsonPropertyOrder({
3737
AuditActionsVM.JSON_PROPERTY_ITEMS,
38-
AuditActionsVM.JSON_PROPERTY_COUNT,
38+
AuditActionsVM.JSON_PROPERTY_HAS_MORE,
3939
AuditActionsVM.JSON_PROPERTY_SKIP,
4040
AuditActionsVM.JSON_PROPERTY_TAKE
4141
})
@@ -44,8 +44,8 @@ public class AuditActionsVM {
4444
public static final String JSON_PROPERTY_ITEMS = "items";
4545
private JsonNullable<List<AuditActionVM>> items = JsonNullable.<List<AuditActionVM>>undefined();
4646

47-
public static final String JSON_PROPERTY_COUNT = "count";
48-
private Long count;
47+
public static final String JSON_PROPERTY_HAS_MORE = "hasMore";
48+
private Boolean hasMore;
4949

5050
public static final String JSON_PROPERTY_SKIP = "skip";
5151
private Integer skip;
@@ -102,29 +102,29 @@ public void setItems(List<AuditActionVM> items) {
102102
}
103103

104104

105-
public AuditActionsVM count(Long count) {
105+
public AuditActionsVM hasMore(Boolean hasMore) {
106106

107-
this.count = count;
107+
this.hasMore = hasMore;
108108
return this;
109109
}
110110

111111
/**
112-
* Get count
113-
* @return count
112+
* Get hasMore
113+
* @return hasMore
114114
**/
115115
@javax.annotation.Nullable
116-
@JsonProperty(JSON_PROPERTY_COUNT)
116+
@JsonProperty(JSON_PROPERTY_HAS_MORE)
117117
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
118118

119-
public Long getCount() {
120-
return count;
119+
public Boolean getHasMore() {
120+
return hasMore;
121121
}
122122

123123

124-
@JsonProperty(JSON_PROPERTY_COUNT)
124+
@JsonProperty(JSON_PROPERTY_HAS_MORE)
125125
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
126-
public void setCount(Long count) {
127-
this.count = count;
126+
public void setHasMore(Boolean hasMore) {
127+
this.hasMore = hasMore;
128128
}
129129

130130

@@ -190,7 +190,7 @@ public boolean equals(Object o) {
190190
}
191191
AuditActionsVM auditActionsVM = (AuditActionsVM) o;
192192
return equalsNullable(this.items, auditActionsVM.items) &&
193-
Objects.equals(this.count, auditActionsVM.count) &&
193+
Objects.equals(this.hasMore, auditActionsVM.hasMore) &&
194194
Objects.equals(this.skip, auditActionsVM.skip) &&
195195
Objects.equals(this.take, auditActionsVM.take);
196196
}
@@ -201,7 +201,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
201201

202202
@Override
203203
public int hashCode() {
204-
return Objects.hash(hashCodeNullable(items), count, skip, take);
204+
return Objects.hash(hashCodeNullable(items), hasMore, skip, take);
205205
}
206206

207207
private static <T> int hashCodeNullable(JsonNullable<T> a) {
@@ -216,7 +216,7 @@ public String toString() {
216216
StringBuilder sb = new StringBuilder();
217217
sb.append("class AuditActionsVM {\n");
218218
sb.append(" items: ").append(toIndentedString(items)).append("\n");
219-
sb.append(" count: ").append(toIndentedString(count)).append("\n");
219+
sb.append(" hasMore: ").append(toIndentedString(hasMore)).append("\n");
220220
sb.append(" skip: ").append(toIndentedString(skip)).append("\n");
221221
sb.append(" take: ").append(toIndentedString(take)).append("\n");
222222
sb.append("}");

0 commit comments

Comments
 (0)