Skip to content

Commit fabd003

Browse files
author
BitBucketCI
committed
latest version
1 parent 2320c44 commit fabd003

29 files changed

+34
-34
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Yapily Java SDK - Deprecated :no_entry:
2-
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=1.375.0&x2=0)](http://badge.fury.io/gh/boennemann%2Fbadges)
2+
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=1.378.0&x2=0)](http://badge.fury.io/gh/boennemann%2Fbadges)
33

44
This SDK is now deprecated by our recommended approach to autogenerate client libraries from our OpenAPI Specification file. See our [yapily-openapi repo](https://github.com/yapily/yapily-openapi).
55

@@ -43,7 +43,7 @@ Dependency:
4343
<dependency>
4444
<groupId>yapily</groupId>
4545
<artifactId>yapily-sdk</artifactId>
46-
<version>1.375.0</version>
46+
<version>1.378.0</version>
4747
</dependency>
4848
</dependencies>
4949
```
@@ -64,7 +64,7 @@ repositories {
6464
Dependency:
6565

6666
```groovy
67-
compile group: 'yapily', name: 'yapily-sdk', version: '1.375.0'
67+
compile group: 'yapily', name: 'yapily-sdk', version: '1.378.0'
6868
```
6969

7070
#### Download JAR

sdk/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Add this dependency to your project's POM:
2828
<dependency>
2929
<groupId>yapily</groupId>
3030
<artifactId>yapily-sdk</artifactId>
31-
<version>1.374.0</version>
31+
<version>1.375.0</version>
3232
<scope>compile</scope>
3333
</dependency>
3434
```
@@ -38,7 +38,7 @@ Add this dependency to your project's POM:
3838
Add this dependency to your project's build file:
3939

4040
```groovy
41-
compile "yapily:yapily-sdk:1.374.0"
41+
compile "yapily:yapily-sdk:1.375.0"
4242
```
4343

4444
### Others
@@ -49,7 +49,7 @@ At first generate the JAR by executing:
4949

5050
Then manually install the following JARs:
5151

52-
* target/yapily-sdk-1.374.0.jar
52+
* target/yapily-sdk-1.375.0.jar
5353
* target/lib/*.jar
5454

5555
## Getting Started

sdk/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 = 'yapily'
5-
version = '1.374.0'
5+
version = '1.375.0'
66

77
buildscript {
88
repositories {

sdk/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 := "yapily",
44
name := "yapily-sdk",
5-
version := "1.374.0",
5+
version := "1.375.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

sdk/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>yapily-sdk</artifactId>
66
<packaging>jar</packaging>
77
<name>yapily-sdk</name>
8-
<version>1.374.0</version>
8+
<version>1.375.0</version>
99
<url>https://github.com/yapily/developer-resources</url>
1010
<description>Swagger Java</description>
1111
<scm>

sdk/src/main/java/yapily/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
import yapily.auth.ApiKeyAuth;
5151
import yapily.auth.OAuth;
5252

53-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-05-04T14:10:50.302Z")
53+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-05-04T16:27:05.526Z")
5454
public class ApiClient {
5555
protected Map<String, String> defaultHeaderMap = new HashMap<String, String>();
5656
protected String basePath = "https://api.yapily.com";
@@ -76,7 +76,7 @@ public ApiClient() {
7676
this.dateFormat = new RFC3339DateFormat();
7777

7878
// Set default User-Agent.
79-
setUserAgent("Swagger-Codegen/1.374.0/java");
79+
setUserAgent("Swagger-Codegen/1.375.0/java");
8080

8181
// Setup authentications (key: authentication name, value: authentication).
8282
authentications = new HashMap<String, Authentication>();

sdk/src/main/java/yapily/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import java.util.Map;
1717
import java.util.List;
1818

19-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-05-04T14:10:50.302Z")
19+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-05-04T16:27:05.526Z")
2020
public class ApiException extends Exception {
2121
private int code = 0;
2222
private Map<String, List<String>> responseHeaders = null;

sdk/src/main/java/yapily/Configuration.java

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

1414
package yapily;
1515

16-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-05-04T14:10:50.302Z")
16+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-05-04T16:27:05.526Z")
1717
public class Configuration {
1818
private static ApiClient defaultApiClient = new ApiClient();
1919

sdk/src/main/java/yapily/JSON.java

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

99
import javax.ws.rs.ext.ContextResolver;
1010

11-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-05-04T14:10:50.302Z")
11+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-05-04T16:27:05.526Z")
1212
public class JSON implements ContextResolver<ObjectMapper> {
1313
private ObjectMapper mapper;
1414

sdk/src/main/java/yapily/Pair.java

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

1414
package yapily;
1515

16-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-05-04T14:10:50.302Z")
16+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2022-05-04T16:27:05.526Z")
1717
public class Pair {
1818
private String name = "";
1919
private String value = "";

0 commit comments

Comments
 (0)