From c2bce3552e7c9f63c970281243995d18bc030cb5 Mon Sep 17 00:00:00 2001 From: Arif Burak Demiray Date: Tue, 5 Nov 2024 09:56:24 +0300 Subject: [PATCH] feat: added device id types --- CHANGELOG.md | 1 + lib/countly.js | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b3c6be..27d09e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## XX.XX.XX - Added a new method `set_id(newDeviceId)` for managing device ID changes according to the device ID Type +- Added `DeviceIdType` enums to be used to evaluate the device ID type. ## 24.10.0 - Default max segmentation value count changed from 30 to 100 diff --git a/lib/countly.js b/lib/countly.js index 485d8b1..c095c03 100644 --- a/lib/countly.js +++ b/lib/countly.js @@ -30,6 +30,7 @@ var CountlyStorage = require("./countly-storage"); var Countly = {}; Countly.StorageTypes = cc.storageTypeEnums; +Countly.DeviceIdType = cc.deviceIdTypeEnums; Countly.Bulk = Bulk; (function() { var SDK_VERSION = "24.10.0";