Skip to content

Commit

Permalink
Generate version 5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Smooch Bot committed Jan 16, 2019
1 parent 573e1a6 commit 15be933
Show file tree
Hide file tree
Showing 98 changed files with 181 additions and 109 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>io.smooch</groupId>
<artifactId>api</artifactId>
<version>5.1.0</version>
<version>5.2.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -48,7 +48,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "io.smooch:api:5.1.0"
compile "io.smooch:api:5.2.0"
```

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'io.smooch'
version = '5.1.0'
version = '5.2.0'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "io.smooch",
name := "api",
version := "5.1.0",
version := "5.2.0",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
8 changes: 5 additions & 3 deletions docs/ChannelEntityItem.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **String** | The type of channel. See Enums.md for available values. |
**phoneNumber** | **String** | The phone number for a *twilio*, *messageBird* integration | [optional]
**userId** | **String** | The userId for a *messenger*, *viber*, *line*, *wechat* integration | [optional]
**address** | **String** | The email address for a *frontendEmail*, *mailgun* integration | [optional]
**integrationId** | **String** | The ID of the integration. | [optional]
**phoneNumber** | **String** | The phone number for a *twilio* or *messagebird* integration | [optional]
**userId** | **String** | The userId for a *messenger*, *viber*, *line*, *wechat* or *twitter* integration | [optional]
**address** | **String** | The email address for a *mailgun* integration | [optional]
**username** | **String** | The username for a *whatsapp* integration | [optional]
**chatId** | **String** | The chat id for a *telegram* integration | [optional]


Expand Down
1 change: 1 addition & 0 deletions docs/Client.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Name | Type | Description | Notes
**active** | **Boolean** | Flag indicating if the client is active. | [optional]
**lastSeen** | **String** | The date time the client was last seen. | [optional]
**platform** | **String** | The client&#39;s platform. See Enums.md for available values. |
**integrationId** | **String** | The ID of the integration that the client was created for. | [optional]
**pushNotificationToken** | **String** | The GCM or APN token to be used for sending push notifications to the device. Applies to only *android* and *ios* clients. | [optional]
**appVersion** | **String** | A reserved string field for reporting the app version running on the device. | [optional]
**displayName** | **String** | The client&#39;s display name. | [optional]
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>api</artifactId>
<packaging>jar</packaging>
<name>api</name>
<version>5.1.0</version>
<version>5.2.0</version>
<url>https://github.com/swagger-api/swagger-codegen</url>
<description>Swagger Java</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/ApiCallback.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/smooch/client/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down Expand Up @@ -158,7 +158,7 @@ public ApiClient() {
this.lenientDatetimeFormat = true;

// Set default User-Agent.
setUserAgent("Swagger-Codegen/5.1.0/java");
setUserAgent("Swagger-Codegen/5.2.0/java");

// Setup authentications (key: authentication name, value: authentication).
authentications = new HashMap<String, Authentication>();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/ApiException.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/ApiResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/GzipRequestInterceptor.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/JSON.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/Pair.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/ProgressRequestBody.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/ProgressResponseBody.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/StringUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/api/AppApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/api/AppUserApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/api/AttachmentsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/api/ConversationApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/api/IntegrationApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/api/MenuApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/api/ServiceAccountApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/api/TemplateApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/api/WebhookApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/auth/ApiKeyAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/auth/Authentication.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/auth/HttpBasicAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/auth/OAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/auth/OAuthFlow.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/model/Action.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/model/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/model/AppCreate.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/model/AppResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/model/AppSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/model/AppUpdate.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/smooch/client/model/AppUser.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.1
* OpenAPI spec version: 5.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
Loading

0 comments on commit 15be933

Please sign in to comment.