Skip to content

Commit

Permalink
Personalized Card Linked Offers v24.3
Browse files Browse the repository at this point in the history
* S4302608 Updated for RELEASE 24.3

* S4302608 updated yaml to match OfferFilter
  • Loading branch information
j-zan authored Oct 30, 2024
1 parent 1e5a37b commit e141737
Show file tree
Hide file tree
Showing 6 changed files with 2,785 additions and 2,788 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## Version 24.3

Released: October 30, 2024

Changes:

* Improve the API documentation

## Version 24.2

Released: July 19, 2024
Expand All @@ -25,7 +33,7 @@ Released: March 11, 2024
Changes:

* Introduce User Presentment Filter User Offers
* Change versioning to CalVer
* Changes versioning to CalVer

## Version 2.3.0

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>com.mastercard.developer</groupId>
<artifactId>pclo-offers-api-client</artifactId>
<version>24.2.0-RELEASE</version>
<version>24.3.0-RELEASE</version>
<name>offers-pclo-api-client</name>
<description>Offers PCLO API Reference Implementation</description>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.mastercard.developer.constant;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

Expand All @@ -23,11 +24,14 @@ private Offers() {
}

public static final Boolean ACTIVE = true;
public static final List<String> COUNTRY_USA_AUS = Arrays.asList("AUS", "USA");
public static final List<String> COUNTRY_USA = Collections.singletonList("USA");
public static final String EN_HYPEN_US = "en-US";
public static final String EN_US = "en_US";
public static final Integer EXPIRY_DAYS = 7;
public static final String CATEGORY_SHOP = null;
public static final Integer EXPIRY_DAYS_450 = 450;
public static final String CATEGORY_NULL = null;
public static final String CATEGORY_SHOP = "SHOP";
public static final String CATEGORY_DEPARTMENTSTORE = "DEPARTMENTSTORE";
public static final String OFFER_TYPE_POSTPAIDCREDIT = "POSTPAIDCREDIT";
public static final String MERCHANT_NAME = "Koalla";
Expand Down
Loading

0 comments on commit e141737

Please sign in to comment.