Skip to content

Commit 39d04dc

Browse files
author
Fast Reports
committed
sync 2024-01-24
1 parent 3e6631d commit 39d04dc

File tree

9 files changed

+56
-12
lines changed

9 files changed

+56
-12
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Fast Reports Inc.
3+
Copyright (c) 2024 Fast Reports Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

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>2024.1.0</version>
37+
<version>2024.1.8</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:2024.1.0"
47+
compile "cloud.fastreport.sdk:fastreport-cloud-sdk:2024.1.8"
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-2024.1.0.jar`
60+
- `target/fastreport-cloud-sdk-2024.1.8.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-
2024.1.0
1+
2024.1.8

api/openapi.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12599,6 +12599,9 @@ components:
1259912599
messageId:
1260012600
nullable: true
1260112601
type: string
12602+
fileName:
12603+
nullable: true
12604+
type: string
1260212605
type: object
1260312606
AuditType:
1260412607
enum:
@@ -16960,7 +16963,7 @@ components:
1696016963
properties:
1696116964
body:
1696216965
maxLength: 384000
16963-
minLength: 1
16966+
minLength: 0
1696416967
nullable: true
1696516968
type: string
1696616969
enableSsl:
@@ -16989,7 +16992,7 @@ components:
1698916992
type: string
1699016993
subject:
1699116994
maxLength: 1000
16992-
minLength: 1
16995+
minLength: 0
1699316996
nullable: true
1699416997
type: string
1699516998
to:

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

docs/AuditTaskActionVM.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
1010
|**messageId** | **String** | | [optional] |
11+
|**fileName** | **String** | | [optional] |
1112

1213

1314

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>2024.1.0</version>
8+
<version>2024.1.8</version>
99
<url>https://github.com/FastReports/FastReport-Cloud-Java</url>
1010
<description>FastReport Cloud SDK</description>
1111
<scm>

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

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
* AuditTaskActionVM
4141
*/
4242
@JsonPropertyOrder({
43-
AuditTaskActionVM.JSON_PROPERTY_MESSAGE_ID
43+
AuditTaskActionVM.JSON_PROPERTY_MESSAGE_ID,
44+
AuditTaskActionVM.JSON_PROPERTY_FILE_NAME
4445
})
4546
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
4647
@JsonIgnoreProperties(
@@ -58,6 +59,9 @@ public class AuditTaskActionVM extends AuditActionVM {
5859
public static final String JSON_PROPERTY_MESSAGE_ID = "messageId";
5960
private JsonNullable<String> messageId = JsonNullable.<String>undefined();
6061

62+
public static final String JSON_PROPERTY_FILE_NAME = "fileName";
63+
private JsonNullable<String> fileName = JsonNullable.<String>undefined();
64+
6165
public AuditTaskActionVM() {
6266

6367
}
@@ -96,6 +100,40 @@ public void setMessageId(String messageId) {
96100
}
97101

98102

103+
public AuditTaskActionVM fileName(String fileName) {
104+
this.fileName = JsonNullable.<String>of(fileName);
105+
106+
return this;
107+
}
108+
109+
/**
110+
* Get fileName
111+
* @return fileName
112+
**/
113+
@javax.annotation.Nullable
114+
@JsonIgnore
115+
116+
public String getFileName() {
117+
return fileName.orElse(null);
118+
}
119+
120+
@JsonProperty(JSON_PROPERTY_FILE_NAME)
121+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
122+
123+
public JsonNullable<String> getFileName_JsonNullable() {
124+
return fileName;
125+
}
126+
127+
@JsonProperty(JSON_PROPERTY_FILE_NAME)
128+
public void setFileName_JsonNullable(JsonNullable<String> fileName) {
129+
this.fileName = fileName;
130+
}
131+
132+
public void setFileName(String fileName) {
133+
this.fileName = JsonNullable.<String>of(fileName);
134+
}
135+
136+
99137
@Override
100138
public boolean equals(Object o) {
101139
if (this == o) {
@@ -106,6 +144,7 @@ public boolean equals(Object o) {
106144
}
107145
AuditTaskActionVM auditTaskActionVM = (AuditTaskActionVM) o;
108146
return equalsNullable(this.messageId, auditTaskActionVM.messageId) &&
147+
equalsNullable(this.fileName, auditTaskActionVM.fileName) &&
109148
super.equals(o);
110149
}
111150

@@ -115,7 +154,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
115154

116155
@Override
117156
public int hashCode() {
118-
return Objects.hash(hashCodeNullable(messageId), super.hashCode());
157+
return Objects.hash(hashCodeNullable(messageId), hashCodeNullable(fileName), super.hashCode());
119158
}
120159

121160
private static <T> int hashCodeNullable(JsonNullable<T> a) {
@@ -131,6 +170,7 @@ public String toString() {
131170
sb.append("class AuditTaskActionVM {\n");
132171
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
133172
sb.append(" messageId: ").append(toIndentedString(messageId)).append("\n");
173+
sb.append(" fileName: ").append(toIndentedString(fileName)).append("\n");
134174
sb.append("}");
135175
return sb.toString();
136176
}

0 commit comments

Comments
 (0)