Skip to content

Commit fe22cf1

Browse files
authored
Merge pull request #44 from sendinblue/AST-6-V7.0.0
AST-6 v7.0.0 | Update Java Wrapper
2 parents d932cda + 8d85f45 commit fe22cf1

File tree

462 files changed

+27986
-8491
lines changed

Some content is hidden

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

462 files changed

+27986
-8491
lines changed

.swagger-codegen/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.26
1+
2.4.9

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
language: java
55
jdk:
66
- oraclejdk8
7+
- oraclejdk7
78
before_install:
89
# ensure gradlew has proper permission
910
- chmod a+x ./gradlew

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2020 SendinBlue
3+
Copyright (c) 2023 SendinBlue
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

README.md

+175-27
Large diffs are not rendered by default.

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.sendinblue'
5-
version = '6.0.0'
5+
version = '7.0.0'
66

77
buildscript {
88
repositories {
@@ -95,8 +95,8 @@ if(hasProperty('target') && target == 'android') {
9595

9696
dependencies {
9797
compile 'io.swagger:swagger-annotations:1.5.17'
98-
compile 'com.squareup.okhttp:okhttp:2.7.5'
99-
compile 'com.squareup.okhttp:logging-interceptor:2.7.5'
98+
compile 'okhttp3:okhttp:2.7.5'
99+
compile 'okhttp3:logging-interceptor:2.7.5'
100100
compile 'com.google.code.gson:gson:2.8.1'
101101
compile 'io.gsonfire:gson-fire:1.8.0'
102102
compile 'org.threeten:threetenbp:1.3.5'

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.sendinblue",
44
name := "sib-api-v3-sdk",
5-
version := "6.0.0",
5+
version := "7.0.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),
99
publishArtifact in (Compile, packageDoc) := false,
1010
resolvers += Resolver.mavenLocal,
1111
libraryDependencies ++= Seq(
1212
"io.swagger" % "swagger-annotations" % "1.5.17",
13-
"com.squareup.okhttp" % "okhttp" % "2.7.5",
14-
"com.squareup.okhttp" % "logging-interceptor" % "2.7.5",
13+
"okhttp3" % "okhttp" % "2.7.5",
14+
"okhttp3" % "logging-interceptor" % "2.7.5",
1515
"com.google.code.gson" % "gson" % "2.8.1",
1616
"org.threeten" % "threetenbp" % "1.3.5" % "compile",
1717
"io.gsonfire" % "gson-fire" % "1.8.0" % "compile",

docs/AbTestCampaignResult.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
1-
21
# AbTestCampaignResult
32

43
## Properties
4+
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**winningVersion** | [**WinningVersionEnum**](#WinningVersionEnum) | Winning Campaign Info. pending = Campaign has been picked for sending and winning version is yet to be decided, tie = A tie happened between both the versions, notAvailable = Campaign has not yet been picked for sending. | [optional]
8-
**winningCriteria** | [**WinningCriteriaEnum**](#WinningCriteriaEnum) | Criteria choosen for winning version (Open/Click) | [optional]
7+
**winningVersion** | [**
8+
WinningVersionEnum**](#WinningVersionEnum) | Winning Campaign Info. pending = Campaign has been picked for sending and winning version is yet to be decided, tie = A tie happened between both the versions, notAvailable = Campaign has not yet been picked for sending. | [optional]
9+
**winningCriteria** | [**
10+
WinningCriteriaEnum**](#WinningCriteriaEnum) | Criteria choosen for winning version (Open/Click) | [optional]
911
**winningSubjectLine** | **String** | Subject Line of current winning version | [optional]
1012
**openRate** | **String** | Open rate for current winning version | [optional]
1113
**clickRate** | **String** | Click rate for current winning version | [optional]
1214
**winningVersionRate** | **String** | Open/Click rate for the winner version | [optional]
1315
**statistics** | [**AbTestCampaignResultStatistics**](AbTestCampaignResultStatistics.md) | | [optional]
1416
**clickedLinks** | [**AbTestCampaignResultClickedLinks**](AbTestCampaignResultClickedLinks.md) | | [optional]
1517

16-
1718
<a name="WinningVersionEnum"></a>
19+
1820
## Enum: WinningVersionEnum
21+
1922
Name | Value
2023
---- | -----
2124
NOTAVAILABLE | &quot;notAvailable&quot;
@@ -24,9 +27,10 @@ TIE | &quot;tie&quot;
2427
A | &quot;A&quot;
2528
B | &quot;B&quot;
2629

27-
2830
<a name="WinningCriteriaEnum"></a>
31+
2932
## Enum: WinningCriteriaEnum
33+
3034
Name | Value
3135
---- | -----
3236
OPEN | &quot;Open&quot;

docs/AttributesApi.md

-251
This file was deleted.

docs/Body.md

+3-11
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,9 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**name** | **String** | Name of task |
8-
**duration** | **Long** | Duration of task | [optional]
9-
**taskTypeId** | **String** | Id for type of task e.g Call / Email / Meeting etc. |
10-
**date** | [**OffsetDateTime**] | Task date/time |
11-
**notes** | **String** | Notes added to a task | [optional]
12-
**done** | **Boolean** | Task marked as done | [optional]
13-
**assignToId** | **String** | User id to whom task is assigned | [optional]
14-
**contactsIds** | **List&lt;Integer&gt;** | Contact ids for contacts linked to this task | [optional]
15-
**dealsIds** | **List&lt;String&gt;** | Deal ids for deals a task is linked to | [optional]
16-
**companiesIds** | **List&lt;String&gt;** | Companies ids for companies a task is linked to | [optional]
17-
**reminder** | [**TaskReminder**](TaskReminder.md) | | [optional]
7+
**name** | **String** | Name of company |
8+
**attributes** | **Object** | Attributes for company creation | [optional]
9+
**countryCode** | **Long** | Country code if phone_number is passed in attributes. | [optional]
1810

1911

2012

docs/Body1.md

+3-11
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,9 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**name** | **String** | Name of task |
8-
**duration** | **Integer** | Duration of task | [optional]
9-
**taskTypeId** | **String** | Id for type of task e.g Call / Email / Meeting etc. |
10-
**date** | [**OffsetDateTime**] | Task date/time |
11-
**notes** | **String** | Notes added to a task | [optional]
12-
**done** | **Boolean** | Task marked as done | [optional]
13-
**assignToId** | **String** | User id to whom task is assigned | [optional]
14-
**contactsIds** | **List&lt;Integer&gt;** | Contact ids for contacts linked to this task | [optional]
15-
**dealsIds** | **List&lt;String&gt;** | Deal ids for deals a task is linked to | [optional]
16-
**companiesIds** | **List&lt;String&gt;** | Companies ids for companies a task is linked to | [optional]
17-
**reminder** | [**TaskReminder**](TaskReminder.md) | | [optional]
7+
**name** | **String** | Name of company | [optional]
8+
**attributes** | **Object** | Attributes for company update | [optional]
9+
**countryCode** | **Long** | Country code if phone_number is passed in attributes. | [optional]
1810

1911

2012

0 commit comments

Comments
 (0)