@kameleoon/javascript-sdk-core 5.14.0 → 5.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/dist/browser.d.ts +25 -0
- package/dist/javascript-sdk-core-browser.cjs.js +9034 -0
- package/dist/javascript-sdk-core-browser.cjs.js.map +1 -0
- package/dist/javascript-sdk-core-browser.es.js +9005 -0
- package/dist/javascript-sdk-core-browser.es.js.map +1 -0
- package/dist/javascript-sdk-core.cjs.js +8996 -0
- package/dist/javascript-sdk-core.cjs.js.map +1 -0
- package/dist/javascript-sdk-core.es.js +8967 -0
- package/dist/javascript-sdk-core.es.js.map +1 -0
- package/package.json +24 -4
- package/dist/bundle-cjs-stats.html +0 -4949
- package/dist/bundle-es-stats.html +0 -4949
- package/dist/javascript-sdk-core.cjs.min.js +0 -2
- package/dist/javascript-sdk-core.cjs.min.js.map +0 -1
- package/dist/javascript-sdk-core.es.min.js +0 -2
- package/dist/javascript-sdk-core.es.min.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 5.14.1 (2025-07-30)
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Improved error logging when parsing [`defaultDataFile`](defaultDataFile) - now provides more informative messages for easier debugging.
|
|
8
|
+
- Optimized tree-shaking to reduce bundle size by eliminating unused code.
|
|
9
|
+
- Removed Node.js crypto dependency from the browser bundle to prevent build-time errors.
|
|
10
|
+
|
|
11
|
+
[defaultDataFile]: https://developers.kameleoon.com/feature-management-and-experimentation/web-sdks/js-sdk/#configuration-parameters
|
|
12
|
+
|
|
3
13
|
## 5.14.0 (2025-07-24)
|
|
4
14
|
|
|
5
15
|
### Features
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export { Ok, Result, Err } from 'ts-res';
|
|
2
|
+
export { KameleoonClient as KameleoonCore } from './kameleoonClient';
|
|
3
|
+
export { KameleoonUtils } from './kameleoonUtils';
|
|
4
|
+
export { IKameleoonClient as IKameleoonCore } from './kameleoonClientInterface';
|
|
5
|
+
export { KameleoonException, KameleoonError } from './kameleoonError';
|
|
6
|
+
export { Validator, VisitorDataFiltersType, IExternalPRNG } from './utilities';
|
|
7
|
+
export { FeatureFlagVariationsType, KameleoonStorageKey, IExternalStorage, StorageDataType, } from './storage';
|
|
8
|
+
export { EventCallbackType, EventDataType, EventType, EvaluationEventDataType, ConfigurationUpdateEventDataType, } from './eventManager';
|
|
9
|
+
export { VisitorCodeManager, IVisitorCodeManager, VISITOR_CODE_LENGTH, } from './visitorCodeManager';
|
|
10
|
+
export { KameleoonLogger, LogLevel, IExternalLogger } from './logging';
|
|
11
|
+
export { Parser } from './utilities/parser';
|
|
12
|
+
export { SdkLanguageType } from './constants';
|
|
13
|
+
export { JSONType, ConfigurationDataType } from './clientConfiguration';
|
|
14
|
+
export { TrackingStatus, VariableType, InternalsType, FeatureFlagType, FlushParamsType, JSONVariableType, SDKCoreParameters, NumberVariableType, StringVariableType, BooleanVariableType, SDKConfigurationType, KameleoonVariableType, KameleoonVariationType, FeatureFlagVariableType, TrackConversionParamsType, FeatureVariableResultType, RemoteVisitorDataParamsType, InternalSDKConfigurationType, IsFeatureFlagActiveParamsType, SetDataCallbackParametersType, GetFeatureFlagVariableParamsType, GetVisitorWarehouseAudienceParamsType, SimulateRequestDataType, GetVariationParamsType, GetVariationsParamsType, VariationType, Milliseconds, SetForcedVariationParametersType, } from './types';
|
|
15
|
+
export { Environment, ExternalPackageInfoType } from './sdkInfoTypes';
|
|
16
|
+
export { ApplicationVersion, CustomData, Conversion, Device, Cookie, Browser, UserAgent, DeviceType, CookieType, GeolocationData, GeolocationInfoType, OperatingSystemType, OperatingSystem, BrowserType, PageView, StaticData, KameleoonData, UniqueIdentifier, KameleoonDataType, PageViewParametersType, ConversionParametersType, ApplicationVersionDataType, IDataManager, DataManager, DataProcessor, } from './kameleoonData';
|
|
17
|
+
export { IExternalEventSource, EventSourceOpenParametersType, } from './eventSource';
|
|
18
|
+
export { Header, HeadersType, HttpMethod, IExternalRequester, RequestParametersType, RequestType, RetryCountType, KameleoonResponseType, SendRequestParametersType, NUMBER_OF_RETRIES, } from './requester';
|
|
19
|
+
export { ITracker } from './tracking';
|
|
20
|
+
export { SegmentType, TargetingDataType, Tree } from './targeting';
|
|
21
|
+
export { DataInfoType, IStorage, VISIT_DURATION, DataStorage } from './storage';
|
|
22
|
+
export { MappingIdentifierType } from './storage/types';
|
|
23
|
+
export { CustomDataConfigurationType, CustomDataScope, } from './clientConfiguration';
|
|
24
|
+
export { ListUtilities, Utilities } from './utilities';
|
|
25
|
+
export { BrowserDataType, CustomDataType, DataFilterType, DataManagerParametersType, DeviceDataType, GeolocationDataType, KameleoonVisitorDataType, MutUpdateTargetingDataParametersType, OperatingSystemDataType, PageViewDataType, ProcessCustomDataManagerParametersType, VisitDataType, VisitorsDataType, } from './kameleoonData/types';
|