@kameleoon/javascript-sdk-core 5.17.1 → 5.17.3

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.
@@ -194,6 +194,7 @@ export type RequestParametersType = {
194
194
  method: HttpMethod.Post;
195
195
  };
196
196
  [RequestType.RemoteData]: {
197
+ headers?: HeadersType;
197
198
  signal: AbortSignal | null;
198
199
  method: HttpMethod.Get;
199
200
  };
@@ -2,4 +2,4 @@ export { KameleoonStorageKey, VISIT_DURATION } from './constants';
2
2
  export { DataStorage } from './storage';
3
3
  export { IntegrityChecker } from './integrityChecker';
4
4
  export { StorageCleanupManager } from './storageCleanupManager';
5
- export { ClientDataType, TrackingDataType, VariationDataType, StorageConsentDataType, DataInfoType, StorageDataType, FeatureFlagVariationsType, IStorage, IExternalStorage, } from './types';
5
+ export { ClientDataType, TrackingDataType, VariationDataType, StorageConsentDataType, DataInfoType, StorageDataType, FeatureFlagVariationsType, IStorage, IExternalStorage, LegalConsent, } from './types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kameleoon/javascript-sdk-core",
3
- "version": "5.17.1",
3
+ "version": "5.17.3",
4
4
  "description": "Kameleoon JS SDK Core",
5
5
  "main": "dist/javascript-sdk-core.cjs.js",
6
6
  "module": "dist/javascript-sdk-core.es.js",
@@ -11,8 +11,8 @@
11
11
  "types": "./dist/index.d.ts"
12
12
  },
13
13
  "./browser": {
14
- "require": "./dist/javascript-sdk-core-browser.cjs.js",
15
- "import": "./dist/javascript-sdk-core-browser.es.js",
14
+ "require": "./dist/javascript-sdk-core.browser.cjs.js",
15
+ "import": "./dist/javascript-sdk-core.browser.es.js",
16
16
  "types": "./dist/browser.d.ts"
17
17
  }
18
18
  },