Skip to content

Commit d7228d2

Browse files
authored
v3.2.2: Remove Application Storages (#8)
- Remove `ApplicationStorages` deprecation - `LoyaltyMemberships` of Profile entity are optional
1 parent a10c0ca commit d7228d2

20 files changed

+31
-834
lines changed

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Add this dependency to your project's POM:
3939
<dependency>
4040
<groupId>one.talon</groupId>
4141
<artifactId>talon-one-client</artifactId>
42-
<version>3.2.1</version>
42+
<version>3.2.2</version>
4343
<scope>compile</scope>
4444
</dependency>
4545
```
@@ -49,7 +49,7 @@ Add this dependency to your project's POM:
4949
Add this dependency to your project's build file:
5050

5151
```groovy
52-
compile "one.talon:talon-one-client:3.2.1"
52+
compile "one.talon:talon-one-client:3.2.2"
5353
```
5454

5555
### Others
@@ -62,13 +62,14 @@ mvn clean package
6262

6363
Then manually install the following JARs:
6464

65-
* `target/talon-one-client-3.2.1.jar`
65+
* `target/talon-one-client-3.2.2.jar`
6666
* `target/lib/*.jar`
6767

6868
## Getting Started
6969

7070
Please follow the [installation](#installation) instruction and execute the following Java code:
7171

72+
7273
### Integration API
7374

7475
```java
@@ -258,8 +259,6 @@ Class | Method | HTTP request | Description
258259
- [ApplicationEvent](docs/ApplicationEvent.md)
259260
- [ApplicationSession](docs/ApplicationSession.md)
260261
- [ApplicationSessionEntity](docs/ApplicationSessionEntity.md)
261-
- [ApplicationStorage](docs/ApplicationStorage.md)
262-
- [ApplicationStorageTuple](docs/ApplicationStorageTuple.md)
263262
- [Attribute](docs/Attribute.md)
264263
- [AttributeQuery](docs/AttributeQuery.md)
265264
- [Binding](docs/Binding.md)
@@ -357,8 +356,6 @@ Class | Method | HTTP request | Description
357356
- [NewAccountSignUp](docs/NewAccountSignUp.md)
358357
- [NewApplication](docs/NewApplication.md)
359358
- [NewApplicationAPIKey](docs/NewApplicationAPIKey.md)
360-
- [NewApplicationStorage](docs/NewApplicationStorage.md)
361-
- [NewApplicationStorageTuple](docs/NewApplicationStorageTuple.md)
362359
- [NewAttribute](docs/NewAttribute.md)
363360
- [NewCampaign](docs/NewCampaign.md)
364361
- [NewCampaignSet](docs/NewCampaignSet.md)

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 = 'one.talon'
5-
version = '3.2.1'
5+
version = '3.2.2'
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 := "one.talon",
44
name := "talon-one-client",
5-
version := "3.2.1",
5+
version := "3.2.2",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/ApplicationCustomer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
1111
**accountId** | **Integer** | The ID of the Talon.One account that owns this profile. The ID of the Talon.One account that owns this profile. |
1212
**closedSessions** | **Integer** | The total amount of closed sessions by a customer. A closed session is a successful purchase. |
1313
**totalSales** | [**BigDecimal**](BigDecimal.md) | Sum of all purchases made by this customer |
14-
**loyaltyMemberships** | [**List&lt;LoyaltyMembership&gt;**](LoyaltyMembership.md) | A list of loyalty programs joined by the customer |
14+
**loyaltyMemberships** | [**List&lt;LoyaltyMembership&gt;**](LoyaltyMembership.md) | A list of loyalty programs joined by the customer | [optional]
1515
**lastActivity** | [**OffsetDateTime**](OffsetDateTime.md) | Timestamp of the most recent event received from this customer |
1616

1717

docs/ApplicationStorage.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

docs/ApplicationStorageTuple.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

docs/CustomerProfile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
1010
**accountId** | **Integer** | The ID of the Talon.One account that owns this profile. |
1111
**closedSessions** | **Integer** | The total amount of closed sessions by a customer. A closed session is a successful purchase. |
1212
**totalSales** | [**BigDecimal**](BigDecimal.md) | Sum of all purchases made by this customer |
13-
**loyaltyMemberships** | [**List&lt;LoyaltyMembership&gt;**](LoyaltyMembership.md) | A list of loyalty programs joined by the customer |
13+
**loyaltyMemberships** | [**List&lt;LoyaltyMembership&gt;**](LoyaltyMembership.md) | A list of loyalty programs joined by the customer | [optional]
1414
**lastActivity** | [**OffsetDateTime**](OffsetDateTime.md) | Timestamp of the most recent event received from this customer |
1515

1616

docs/ManagementApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2014,7 +2014,7 @@ manager_auth.setApiKey("YOUR API KEY");
20142014
//manager_auth.setApiKeyPrefix("Token");
20152015

20162016
ManagementApi apiInstance = new ManagementApi();
2017-
Integer applicationId = 56; // Integer | The identifier for the application
2017+
Integer applicationId = 56; // Integer |
20182018
Integer campaignId = 56; // Integer |
20192019
OffsetDateTime rangeStart = new OffsetDateTime(); // OffsetDateTime | Only return results from after this timestamp, must be an RFC3339 timestamp string
20202020
OffsetDateTime rangeEnd = new OffsetDateTime(); // OffsetDateTime | Only return results from before this timestamp, must be an RFC3339 timestamp string
@@ -2032,7 +2032,7 @@ try {
20322032

20332033
Name | Type | Description | Notes
20342034
------------- | ------------- | ------------- | -------------
2035-
**applicationId** | **Integer**| The identifier for the application |
2035+
**applicationId** | **Integer**| |
20362036
**campaignId** | **Integer**| |
20372037
**rangeStart** | **OffsetDateTime**| Only return results from after this timestamp, must be an RFC3339 timestamp string |
20382038
**rangeEnd** | **OffsetDateTime**| Only return results from before this timestamp, must be an RFC3339 timestamp string |
@@ -4602,7 +4602,7 @@ Name | Type | Description | Notes
46024602
46034603
Set account limits
46044604

4605-
sets account limits
4605+
sets account limits
46064606

46074607
### Example
46084608
```java

docs/NewApplicationStorage.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/NewApplicationStorageTuple.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)