Skip to content

Commit 56a6def

Browse files
committed
Generate version 2.13.0
1 parent 8e4cc06 commit 56a6def

61 files changed

Lines changed: 66 additions & 66 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

api/openapi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ openapi: 3.0.1
22
info:
33
description: ChannelEngine API for channels
44
title: ChannelEngine Channel API
5-
version: 2.11.0
5+
version: 2.13.0
66
servers:
7-
- url: https://demo.channelengine.net/api
7+
- url: https://dev.channelengine.local/api
88
security:
99
- apiKey: []
1010
paths:
@@ -3269,5 +3269,5 @@ components:
32693269
in: query
32703270
name: apikey
32713271
type: apiKey
3272-
x-version: 2.11.0
3272+
x-version: 2.13.0
32733273

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'eclipse'
33
apply plugin: 'java'
44

55
group = 'com.channelengine.channel.apiclient'
6-
version = '2.12.0'
6+
version = '2.13.0'
77

88
buildscript {
99
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 := "com.channelengine.channel.apiclient",
44
name := "channel-api-client-java",
5-
version := "2.12.0",
5+
version := "2.13.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>channel-api-client-java</artifactId>
66
<packaging>jar</packaging>
77
<name>channel-api-client-java</name>
8-
<version>2.12.0</version>
8+
<version>2.13.0</version>
99
<url>https://github.com/channelengine/channel-api-client-java</url>
1010
<description>ChannelEngine Channel API Client for java</description>
1111
<scm>

src/main/java/com/channelengine/channel/apiclient/ApiCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* ChannelEngine Channel API
33
* ChannelEngine API for channels
44
*
5-
* The version of the OpenAPI document: 2.11.0
5+
* The version of the OpenAPI document: 2.13.0
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/channelengine/channel/apiclient/ApiClient.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* ChannelEngine Channel API
33
* ChannelEngine API for channels
44
*
5-
* The version of the OpenAPI document: 2.11.0
5+
* The version of the OpenAPI document: 2.13.0
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -56,7 +56,7 @@
5656

5757
public class ApiClient {
5858

59-
private String basePath = "https://demo.channelengine.net/api";
59+
private String basePath = "https://dev.channelengine.local/api";
6060
private boolean debugging = false;
6161
private Map<String, String> defaultHeaderMap = new HashMap<String, String>();
6262
private Map<String, String> defaultCookieMap = new HashMap<String, String>();
@@ -125,7 +125,7 @@ private void init() {
125125
json = new JSON();
126126

127127
// Set default User-Agent.
128-
setUserAgent("OpenAPI-Generator/2.12.0/java");
128+
setUserAgent("OpenAPI-Generator/2.13.0/java");
129129

130130
authentications = new HashMap<String, Authentication>();
131131
}
@@ -142,7 +142,7 @@ public String getBasePath() {
142142
/**
143143
* Set base path
144144
*
145-
* @param basePath Base path of the URL (e.g https://demo.channelengine.net/api
145+
* @param basePath Base path of the URL (e.g https://dev.channelengine.local/api
146146
* @return An instance of OkHttpClient
147147
*/
148148
public ApiClient setBasePath(String basePath) {

src/main/java/com/channelengine/channel/apiclient/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* ChannelEngine Channel API
33
* ChannelEngine API for channels
44
*
5-
* The version of the OpenAPI document: 2.11.0
5+
* The version of the OpenAPI document: 2.13.0
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/channelengine/channel/apiclient/ApiResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* ChannelEngine Channel API
33
* ChannelEngine API for channels
44
*
5-
* The version of the OpenAPI document: 2.11.0
5+
* The version of the OpenAPI document: 2.13.0
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/channelengine/channel/apiclient/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* ChannelEngine Channel API
33
* ChannelEngine API for channels
44
*
5-
* The version of the OpenAPI document: 2.11.0
5+
* The version of the OpenAPI document: 2.13.0
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/channelengine/channel/apiclient/GzipRequestInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* ChannelEngine Channel API
33
* ChannelEngine API for channels
44
*
5-
* The version of the OpenAPI document: 2.11.0
5+
* The version of the OpenAPI document: 2.13.0
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)