Skip to content

Commit 4ffa46f

Browse files
[WEB-3694] Custom CT-ID - Rebased
1 parent e0afddc commit 4ffa46f

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [1.14.5] 28th Apr, 2025
5+
- Added Clevertap Custom Id Support
6+
- Added Public API `getAllQualifiedCampaignDetails` for debugging purpose
7+
48
## [1.14.4] 24th Apr, 2025
59
- Updated rendering logic for Web Native Display Custom Html Template.
610

clevertap.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11616,7 +11616,7 @@
1161611616
case WVE_QUERY_PARAMS.SDK_CHECK:
1161711617
if (parentWindow) {
1161811618
logger$1.debug('SDK version check');
11619-
const sdkVersion = '1.14.4';
11619+
const sdkVersion = '1.14.5';
1162011620
parentWindow.postMessage({
1162111621
message: 'SDKVersion',
1162211622
accountId,
@@ -15341,7 +15341,7 @@
1534115341
let proto = document.location.protocol;
1534215342
proto = proto.replace(':', '');
1534315343
dataObject.af = { ...dataObject.af,
15344-
lib: 'web-sdk-v1.14.4',
15344+
lib: 'web-sdk-v1.14.5',
1534515345
protocol: proto,
1534615346
...$ct.flutterVersion
1534715347
}; // app fields
@@ -16289,7 +16289,7 @@
1628916289
_classPrivateFieldLooseBase(this, _account)[_account] = new Account((_clevertap$account = clevertap.account) === null || _clevertap$account === void 0 ? void 0 : _clevertap$account[0], clevertap.region || ((_clevertap$account2 = clevertap.account) === null || _clevertap$account2 === void 0 ? void 0 : _clevertap$account2[1]), clevertap.targetDomain || ((_clevertap$account3 = clevertap.account) === null || _clevertap$account3 === void 0 ? void 0 : _clevertap$account3[2]), clevertap.token || ((_clevertap$account4 = clevertap.account) === null || _clevertap$account4 === void 0 ? void 0 : _clevertap$account4[3]));
1629016290
encryption.key = (_clevertap$account5 = clevertap.account) === null || _clevertap$account5 === void 0 ? void 0 : _clevertap$account5[0].id; // Custom Guid will be set here
1629116291

16292-
let result = validateCustomCleverTapID(clevertap === null || clevertap === void 0 ? void 0 : (_clevertap$config = clevertap.config) === null || _clevertap$config === void 0 ? void 0 : _clevertap$config.customId);
16292+
const result = validateCustomCleverTapID(clevertap === null || clevertap === void 0 ? void 0 : (_clevertap$config = clevertap.config) === null || _clevertap$config === void 0 ? void 0 : _clevertap$config.customId);
1629316293

1629416294
if (!(result === null || result === void 0 ? void 0 : result.isValid)) {
1629516295
_classPrivateFieldLooseBase(this, _logger)[_logger].error(result === null || result === void 0 ? void 0 : result.error);
@@ -17182,7 +17182,7 @@
1718217182
}
1718317183

1718417184
getSDKVersion() {
17185-
return 'web-sdk-v1.14.4';
17185+
return 'web-sdk-v1.14.5';
1718617186
}
1718717187

1718817188
defineVariable(name, defaultValue) {

clevertap.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clevertap.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clevertap-web-sdk",
3-
"version": "1.14.4",
3+
"version": "1.14.5",
44
"description": "",
55
"main": "clevertap.js",
66
"scripts": {

0 commit comments

Comments
 (0)