@usercentrics/cmp-browser-sdk
Advanced tools
Comparing version 4.18.0 to 4.18.1
@@ -1,1 +0,1 @@ | ||
export{c as API_COMMANDS,a8 as BUTTON_ALIGNMENT,ag as CLOSE_OPTION,aw as CONSENT_ACTION,ax as CONSENT_TYPE,ah as Core,a7 as DPS_DISPLAY_FORMAT,az as FIRST_LAYER_VARIANT,aC as SECOND_LAYER_SIDE,ac as SECOND_LAYER_TRIGGER,aA as SECOND_LAYER_VARIANT,aD as TCF_DECISION_UI_LAYER,aB as THEME,ay as TRACKING_EVENT_TYPE,ai as UI_LAYER,aj as UI_VARIANT,af as default,ak as isCcpaData,al as isCcpaLabels,am as isCcpaUI,an as isDefaultData,ao as isDefaultLabels,ap as isDefaultUI,as as isNotPrivacyButtonLabels,ar as isPrivacyButtonLabels,aq as isPrivacyButtonUI,at as isTcfData,au as isTcfLabels,av as isTcfUI}from"./index-d2f154b5.js"; | ||
export{c as API_COMMANDS,al as BUTTON_ALIGNMENT,at as CLOSE_OPTION,aJ as CONSENT_ACTION,aK as CONSENT_TYPE,au as Core,ak as DPS_DISPLAY_FORMAT,aM as FIRST_LAYER_VARIANT,aP as SECOND_LAYER_SIDE,ap as SECOND_LAYER_TRIGGER,aN as SECOND_LAYER_VARIANT,aQ as TCF_DECISION_UI_LAYER,aO as THEME,aL as TRACKING_EVENT_TYPE,av as UI_LAYER,aw as UI_VARIANT,as as default,ax as isCcpaData,ay as isCcpaLabels,az as isCcpaUI,aA as isDefaultData,aB as isDefaultLabels,aC as isDefaultUI,aF as isNotPrivacyButtonLabels,aE as isPrivacyButtonLabels,aD as isPrivacyButtonUI,aG as isTcfData,aH as isTcfLabels,aI as isTcfUI}from"./index-7bf2bbf1.js"; |
@@ -47,4 +47,4 @@ import { AMP_CONSENT_ACTION, AMP_CONSENT_TYPE } from './services/AMP/enums/enums'; | ||
} | ||
declare type SettingsId = string; | ||
declare type RulesetId = string; | ||
type SettingsId = string; | ||
type RulesetId = string; | ||
declare class Usercentrics { | ||
@@ -51,0 +51,0 @@ private ampInstance; |
@@ -35,7 +35,7 @@ import { UserCountryData, UserSessionData } from './index.legacy'; | ||
} | ||
export declare type RuleSetControllerIds = { | ||
export type RuleSetControllerIds = { | ||
controllerId: string; | ||
settingsId: string; | ||
}[]; | ||
export declare type SettingsControllerId = string; | ||
export type SettingsControllerId = string; | ||
/** Additional options you can pass to the constructor */ | ||
@@ -42,0 +42,0 @@ export interface InitOptions { |
import { StorageService, StorageSettings } from '../../services/Storage/interfaces'; | ||
import { ConsentHistory } from '../../services/DataFacade/interfaces'; | ||
export declare type CompressHistory = Omit<ConsentHistory, 'language' | 'timestamp'>; | ||
export declare type CompressService = Omit<StorageService, 'history'> & { | ||
export type CompressHistory = Omit<ConsentHistory, 'language' | 'timestamp'>; | ||
export type CompressService = Omit<StorageService, 'history'> & { | ||
history: CompressHistory[]; | ||
}; | ||
export declare type CompressConsent = Omit<StorageSettings, 'services'> & { | ||
export type CompressConsent = Omit<StorageSettings, 'services'> & { | ||
services: CompressService[]; | ||
@@ -9,0 +9,0 @@ }; |
@@ -20,5 +20,5 @@ import { CONSENT_ACTION, CONSENT_TYPE } from '../../services/DataFacade/enums'; | ||
export declare const mapDataTransferObject: (dataTransferSettings: DataTransferSettings, service: DataFacadeService, consentAction: CONSENT_ACTION, consentType: CONSENT_TYPE, options?: { | ||
referrerControllerId?: string | undefined; | ||
timestamp?: number | undefined; | ||
} | undefined) => DataTransferObject; | ||
referrerControllerId?: string; | ||
timestamp?: number; | ||
}) => DataTransferObject; | ||
interface MapDataTransferObjectsV2Options { | ||
@@ -72,4 +72,4 @@ dataTransferSettings: DataTransferSettings; | ||
export declare const waitUntil: (condition: () => boolean, timeoutMessage: string, timeout?: number, interval?: number) => Promise<void>; | ||
export declare const getUcDomains: (domains?: UcDomains | undefined) => UcDomains | null; | ||
export declare const getUcDomains: (domains?: UcDomains) => UcDomains | null; | ||
export declare const compareSemanticVersions: (a: string, b: string) => number; | ||
export {}; |
@@ -5,6 +5,6 @@ import { LegacyCategory, LegacyHashService, LegacyService, LegalBasis } from '../../services/Api/interfaces'; | ||
import { StorageService } from '../../services/Storage/interfaces'; | ||
export declare const getConsent: ({ defaultConsentStatus }: LegacyService, cat?: LegacyCategory | undefined) => Consent; | ||
export declare const getConsent: ({ defaultConsentStatus }: LegacyService, cat?: LegacyCategory) => Consent; | ||
export declare const getLegalBasisFromHashService: (legalBasisList: string[], legalGround: string) => LegalBasis[]; | ||
export declare const getLegalBasis: ({ legalBasisList, legalGround }: LegacyHashService, legalBasis: string[]) => string[]; | ||
export declare const getDescription: (legacyService: LegacyService | null, legacyHashService?: LegacyHashService | null | undefined) => string; | ||
export declare const isServiceAdded: (services: Service[], storageServices?: StorageService[] | undefined) => boolean; | ||
export declare const getDescription: (legacyService: LegacyService | null, legacyHashService?: LegacyHashService | null) => string; | ||
export declare const isServiceAdded: (services: Service[], storageServices?: StorageService[]) => boolean; |
@@ -8,3 +8,3 @@ import { LegacyBaseService, LegacyService } from '../../services/Api/interfaces'; | ||
*/ | ||
export declare const mapServicesHashArray: (baseService?: LegacyBaseService[] | undefined) => ServiceHashArrayObject[]; | ||
export declare const mapServicesHashArray: (baseService?: LegacyBaseService[]) => ServiceHashArrayObject[]; | ||
export declare const removeDeactivatedServices: (consentTemplates: LegacyService[]) => LegacyService[]; |
@@ -6,6 +6,6 @@ import { HttpSuccess, RequestOptions } from './interfaces'; | ||
*/ | ||
export declare const get: (url: string, errorMessage: string, options?: RequestOptions | undefined) => Promise<HttpSuccess>; | ||
export declare const get: (url: string, errorMessage: string, options?: RequestOptions) => Promise<HttpSuccess>; | ||
/** | ||
* Our own POST wrapper. | ||
*/ | ||
export declare const post: (url: string, body: Record<string, unknown> | GraphQLQuery, errorMessage: string, options?: RequestOptions | undefined) => Promise<HttpSuccess>; | ||
export declare const post: (url: string, body: Record<string, unknown> | GraphQLQuery, errorMessage: string, options?: RequestOptions) => Promise<HttpSuccess>; |
@@ -78,3 +78,3 @@ import { CONSENT_ACTION, CONSENT_TYPE } from '../../DataFacade/enums'; | ||
} | ||
export declare type RulesetRule = { | ||
export type RulesetRule = { | ||
settingsId: string; | ||
@@ -85,3 +85,3 @@ name: string; | ||
}; | ||
export declare type DefaultRulesetRule = { | ||
export type DefaultRulesetRule = { | ||
settingsId: string; | ||
@@ -88,0 +88,0 @@ noShow: boolean; |
import { BUTTON_ALIGNMENT, DPS_DISPLAY_FORMAT, FIRST_LAYER_VARIANT, SECOND_LAYER_SIDE, SECOND_LAYER_TRIGGER, SECOND_LAYER_VARIANT } from '../../SettingsV2/enums'; | ||
import { CLOSE_OPTION, LEGACY_CCPA_REGION, LEGACY_DATA_EXCHANGE_TYPE, LEGACY_VERSION } from '../enums'; | ||
export declare type ServiceLegalBasis = LegalBasis | LegalBasisId; | ||
export type ServiceLegalBasis = LegalBasis | LegalBasisId; | ||
export interface CoreCcpa { | ||
@@ -62,4 +62,4 @@ iabAgreementExists: boolean; | ||
} | ||
export declare type LegalBasis = string; | ||
export declare type LegalBasisId = string; | ||
export type LegalBasis = string; | ||
export type LegalBasisId = string; | ||
export interface LegalBasisTranslation { | ||
@@ -97,3 +97,3 @@ [key: string]: string; | ||
} | ||
export declare type AriaLabelsTranslation = LegacyAriaLabelsTranslations; | ||
export type AriaLabelsTranslation = LegacyAriaLabelsTranslations; | ||
export interface LegacyLabelsTranslations { | ||
@@ -100,0 +100,0 @@ ALL: string; |
@@ -57,6 +57,6 @@ import { CONSENT_ACTION, CONSENT_TYPE } from '../enums'; | ||
} | ||
declare type IndexSignature<O extends object> = { | ||
type IndexSignature<O extends object> = { | ||
[P in keyof O]: O[P]; | ||
}; | ||
export declare type ConsentDTOV2Record = IndexSignature<ConsentDTOV2>; | ||
export type ConsentDTOV2Record = IndexSignature<ConsentDTOV2>; | ||
export {}; |
@@ -5,3 +5,3 @@ export interface LanguageConfig { | ||
} | ||
export declare type CornerPosition = 'tl' | 'tr' | 'bl' | 'br'; | ||
export type CornerPosition = 'tl' | 'tr' | 'bl' | 'br'; | ||
export interface PrivacyButton { | ||
@@ -8,0 +8,0 @@ iconUrl: string | null; |
@@ -11,3 +11,3 @@ import { CategoryData, ServiceData } from './interfaces'; | ||
} | ||
export declare const getServices: (legacyCategory: LegacyCategory, legacyServices: LegacyService[], legacyHashServices?: LegacyHashService[] | undefined) => Service[]; | ||
export declare const getServices: (legacyCategory: LegacyCategory, legacyServices: LegacyService[], legacyHashServices?: LegacyHashService[]) => Service[]; | ||
export default Category; |
@@ -40,4 +40,4 @@ import { Consent, DataDistribution, Language, ProcessingCompany, ResurfaceOptions, TCFChangedPurposes, URLs } from '../interfaces'; | ||
} | ||
export declare type ServiceData = BaseServiceData & ExtendedServiceData; | ||
export declare type ServiceBasic = Pick<Service, 'consent' | 'id' | 'name' | 'processorId' | 'language' | 'version'>; | ||
export type ServiceData = BaseServiceData & ExtendedServiceData; | ||
export type ServiceBasic = Pick<Service, 'consent' | 'id' | 'name' | 'processorId' | 'language' | 'version'>; | ||
export interface BaseCategoryData { | ||
@@ -107,2 +107,2 @@ isEssential: boolean; | ||
} | ||
export declare type Data = DefaultData | CcpaData | TcfData; | ||
export type Data = DefaultData | CcpaData | TcfData; |
@@ -15,3 +15,3 @@ import { BaseCategory, BaseService, Category, DataExchangeSetting, LogoPosition, Maybe, Service } from './interfaces'; | ||
export declare const getPx: (value: number | string) => string; | ||
export declare const mapLogoPosition: (legacyPosition?: FIRST_LAYER_LOGO_POSITION | undefined) => LogoPosition; | ||
export declare const mapLogoPosition: (legacyPosition?: FIRST_LAYER_LOGO_POSITION) => LogoPosition; | ||
export declare const reduceDataExchangeSettings: (dataExchangeOnPage: LegacyDataExchangeSetting[]) => DataExchangeSetting[]; | ||
@@ -18,0 +18,0 @@ export declare const getShowFirstLayerOnVersionChange: (showInitialViewForVersionChange: LEGACY_VERSION[]) => VERSION[]; |
@@ -15,4 +15,4 @@ import { API_COMMANDS } from '../../enums/Ccpa/enums.public'; | ||
} | ||
export declare type GlobalFunction = (command: API_COMMANDS, version: number, callback: GlobalCallback) => void; | ||
export declare type GlobalCallback = (data: GlobalCallbackData | null, success: boolean) => void; | ||
export type GlobalFunction = (command: API_COMMANDS, version: number, callback: GlobalCallback) => void; | ||
export type GlobalCallback = (data: GlobalCallbackData | null, success: boolean) => void; | ||
export interface GlobalCallbackData { | ||
@@ -19,0 +19,0 @@ uspString: string | null; |
@@ -40,2 +40,2 @@ import { BaseCategoryData, BaseServiceData, CategoryData, ServiceBasic, ServiceData } from '../Data/interfaces'; | ||
} | ||
export declare type Maybe<T> = T | null | undefined; | ||
export type Maybe<T> = T | null | undefined; |
@@ -9,3 +9,3 @@ import { ConsentHistory } from '../../DataFacade/interfaces'; | ||
} | ||
export declare type LogoPosition = 'center' | 'left' | 'right'; | ||
export type LogoPosition = 'center' | 'left' | 'right'; | ||
export interface DataDistribution { | ||
@@ -12,0 +12,0 @@ processingLocation: string; |
@@ -17,3 +17,3 @@ import { BaseTCFUserDecision } from './interfaces.decisions'; | ||
/** A user's consent decision for a single special feature */ | ||
export declare type TCFUserDecisionOnSpecialFeature = BaseTCFUserDecision; | ||
export type TCFUserDecisionOnSpecialFeature = BaseTCFUserDecision; | ||
/** A user's consent decision for a single vendor */ | ||
@@ -20,0 +20,0 @@ export interface TCFUserDecisionOnVendor extends BaseTCFUserDecision { |
@@ -54,5 +54,5 @@ import { ResurfaceOptions, TCFChangedPurposes } from '../interfaces'; | ||
} | ||
export declare type TCFVendorRestrictionType = RestrictionType; | ||
export type TCFVendorRestrictionType = RestrictionType; | ||
/** A TCF feature that needs to be disclosed to the end-user. */ | ||
export declare type TCFFeature = BasePurpose; | ||
export type TCFFeature = BasePurpose; | ||
/** A TCF purpose that needs to be disclosed to the end-user and requires the end-user's consent and legitimate interest consent. */ | ||
@@ -74,3 +74,3 @@ export interface TCFPurpose extends BasePurpose { | ||
/** A TCF special purpose that needs to be disclosed to the end-user. */ | ||
export declare type TCFSpecialPurpose = BasePurpose; | ||
export type TCFSpecialPurpose = BasePurpose; | ||
/** A TCF special feature that needs to be disclosed to the end-user and requires the end-user's consent. */ | ||
@@ -77,0 +77,0 @@ export interface TCFSpecialFeature extends BasePurpose { |
@@ -149,5 +149,5 @@ import { AriaLabelsTranslation, ServiceLegalBasis } from '../../Api/interfaces'; | ||
} | ||
export declare type CcpaFirstLayerLabels = FirstLayerCommonLabels; | ||
export declare type DefaultFirstLayerLabels = FirstLayerCommonLabels; | ||
export declare type PrivacyButtonFirstLayerLabels = FirstLayerCommonLabels; | ||
export type CcpaFirstLayerLabels = FirstLayerCommonLabels; | ||
export type DefaultFirstLayerLabels = FirstLayerCommonLabels; | ||
export type PrivacyButtonFirstLayerLabels = FirstLayerCommonLabels; | ||
export interface TCFFirstLayerLabels { | ||
@@ -176,4 +176,4 @@ description: { | ||
} | ||
export declare type CcpaSecondLayerLabels = SecondLayerCommonLabels; | ||
export declare type PrivacyButtonSecondLayerLabels = SecondLayerCommonLabels; | ||
export type CcpaSecondLayerLabels = SecondLayerCommonLabels; | ||
export type PrivacyButtonSecondLayerLabels = SecondLayerCommonLabels; | ||
export interface DefaultSecondLayerLabels extends SecondLayerCommonLabels { | ||
@@ -262,3 +262,3 @@ acceptButtonLabel: string; | ||
} | ||
export declare type Labels = CcpaLabels | DefaultLabels | TcfLabels | PrivacyButtonLabels; | ||
export type Labels = CcpaLabels | DefaultLabels | TcfLabels | PrivacyButtonLabels; | ||
export {}; |
@@ -5,3 +5,3 @@ import { BUTTON_ALIGNMENT, DPS_DISPLAY_FORMAT, FIRST_LAYER_VARIANT, SECOND_LAYER_SIDE, SECOND_LAYER_TRIGGER, SECOND_LAYER_VARIANT, THEME } from '../enums'; | ||
import { CornerPosition } from '../Core/interfaces'; | ||
export declare type SecondLayerUrl = string; | ||
export type SecondLayerUrl = string; | ||
export interface ButtonColor { | ||
@@ -11,3 +11,3 @@ backgroundColor: string | null; | ||
} | ||
export declare type MaybeButton = ButtonColor | null; | ||
export type MaybeButton = ButtonColor | null; | ||
export interface SaveButtonCustomization { | ||
@@ -26,3 +26,3 @@ save: ButtonColor; | ||
} | ||
export declare type TcfButtonsCustomization = CommonButtonsCustomization; | ||
export type TcfButtonsCustomization = CommonButtonsCustomization; | ||
export interface ButtonsCustomization { | ||
@@ -48,3 +48,3 @@ alignment: BUTTON_ALIGNMENT; | ||
} | ||
declare type VerticalPosition = 'left' | 'right' | 'center'; | ||
type VerticalPosition = 'left' | 'right' | 'center'; | ||
export interface LogoCustomization { | ||
@@ -79,3 +79,3 @@ altTag: string | null; | ||
} | ||
export declare type DefaultButtonsConfig = ButtonsCustomization & DefaultButtonsCustomization; | ||
export type DefaultButtonsConfig = ButtonsCustomization & DefaultButtonsCustomization; | ||
export interface TCFButtonsConfig extends ButtonsCustomization, TcfButtonsCustomization { | ||
@@ -185,3 +185,3 @@ save: MaybeButton; | ||
} | ||
export declare type UI = CcpaUI | DefaultUI | TcfUI | PrivacyButtonUI; | ||
export type UI = CcpaUI | DefaultUI | TcfUI | PrivacyButtonUI; | ||
export {}; |
@@ -10,3 +10,3 @@ import { DataTransferSettings } from '../../modules/helpers'; | ||
import { UserCountryResponse } from '../Location/interfaces'; | ||
export declare type Maybe<T> = T | null | undefined; | ||
export type Maybe<T> = T | null | undefined; | ||
export default class StorageService { | ||
@@ -13,0 +13,0 @@ localStorage: null | Storage; |
{ | ||
"name": "@usercentrics/cmp-browser-sdk", | ||
"version": "4.18.0", | ||
"version": "4.18.1", | ||
"tcfCmpVersion": "3", | ||
"author": "Usercentrics GmbH", | ||
"description": "Usercentrics CMP Browser SDK", | ||
"homepage": "https://docs.usercentrics.com/cmp_browser_sdk/4.18.0/index.html", | ||
"homepage": "https://docs.usercentrics.com/cmp_browser_sdk/4.18.1/index.html", | ||
"license": "SEE LICENSE IN LICENSE.md", | ||
@@ -33,3 +33,3 @@ "main": "dist/index.js", | ||
"start:rollup": "rollup -wc --environment BUILD:development", | ||
"test": "jest --no-cache", | ||
"test": "jest", | ||
"test:coverage": "jest --coverage", | ||
@@ -40,5 +40,5 @@ "prepare-release": "./prepare-release.sh", | ||
"dependencies": { | ||
"@iabtcf/cmpapi": "^1.4.0", | ||
"@iabtcf/core": "^1.4.0", | ||
"@iabtcf/stub": "^1.4.0", | ||
"@iabtcf/cmpapi": "1.5.5", | ||
"@iabtcf/core": "1.5.5", | ||
"@iabtcf/stub": "1.5.5", | ||
"@types/crypto-js": "^4.0.2", | ||
@@ -50,3 +50,3 @@ "@types/lz-string": "^1.3.34", | ||
"lz-string": "^1.4.4", | ||
"uuid": "^8.3.2" | ||
"uuid": "^9.0.0" | ||
}, | ||
@@ -58,4 +58,4 @@ "devDependencies": { | ||
"@babel/preset-env": "^7.16.0", | ||
"@commitlint/cli": "^14.1.0", | ||
"@commitlint/config-conventional": "^14.1.0", | ||
"@commitlint/cli": "^17.3.0", | ||
"@commitlint/config-conventional": "^17.3.0", | ||
"@rollup/plugin-commonjs": "^21.0.1", | ||
@@ -65,19 +65,20 @@ "@rollup/plugin-json": "^4.1.0", | ||
"@rollup/plugin-replace": "^4.0.0", | ||
"@types/jest": "^27.0.2", | ||
"@typescript-eslint/eslint-plugin": "^5.3.0", | ||
"@typescript-eslint/parser": "^5.3.0", | ||
"@types/jest": "^29.2.3", | ||
"@typescript-eslint/eslint-plugin": "^5.45.0", | ||
"@typescript-eslint/parser": "^5.45.0", | ||
"core-js": "^3.19.1", | ||
"cross-env": "^7.0.3", | ||
"custom-event-polyfill": "^1.0.7", | ||
"dotenv": "^10.0.0", | ||
"eslint": "^7.29.0", | ||
"eslint-config-airbnb-base": "^14.2.1", | ||
"dotenv": "^16.0.3", | ||
"eslint": "^8.28.0", | ||
"eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-import": "^2.25.2", | ||
"eslint-plugin-jest": "^25.2.2", | ||
"eslint-plugin-jest": "^27.1.6", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"eslint-plugin-tsdoc": "^0.2.14", | ||
"jest": "^27.3.1", | ||
"eslint-plugin-tsdoc": "^0.2.17", | ||
"jest": "^29.3.1", | ||
"jest-environment-jsdom": "^29.3.1", | ||
"jest-localstorage-mock": "^2.4.18", | ||
"lint-staged": "^11.2.6", | ||
"lint-staged": "^13.0.4", | ||
"prettier": "^2.4.1", | ||
@@ -91,8 +92,8 @@ "rimraf": "^3.0.2", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"rollup-plugin-typescript2": "^0.33.0", | ||
"rollup-plugin-typescript2": "^0.34.1", | ||
"rollup-plugin-visualizer": "^5.5.2", | ||
"ts-jest": "^27.0.7", | ||
"ts-jest": "^29.0.3", | ||
"tslib": "^2.3.1", | ||
"typedoc": "^0.22.7", | ||
"typescript": "^4.4.4", | ||
"typedoc": "^0.23.20", | ||
"typescript": "^4.8.4", | ||
"whatwg-fetch": "^3.6.2" | ||
@@ -99,0 +100,0 @@ }, |
@@ -44,3 +44,3 @@ # Usercentrics CMP Browser SDK | ||
The constructor also supports an optional [Options](https://docs.usercentrics.com/cmp_browser_sdk/4.18.0/interfaces/InitOptions.html) parameter. | ||
The constructor also supports an optional [Options](https://docs.usercentrics.com/cmp_browser_sdk/4.18.1/interfaces/InitOptions.html) parameter. | ||
@@ -134,3 +134,3 @@ ## Geolocation initialization | ||
The constructor also supports an optional [Options](https://docs.usercentrics.com/cmp_browser_sdk/4.18.0/interfaces/InitOptions.html) parameter. | ||
The constructor also supports an optional [Options](https://docs.usercentrics.com/cmp_browser_sdk/4.18.1/interfaces/InitOptions.html) parameter. | ||
@@ -237,3 +237,3 @@ For TCF, the `createTcfApiStub` option needs to be set to true in order for the \_\_tcfapi queue to initialize right away (we cannot wait for the settings request to finish). | ||
- `getServicesBaseInfo` retrieve all services with their base information, without fetching the aggregator. | ||
- Returns [BaseService](https://docs.usercentrics.com/cmp_browser_sdk/4.18.0/interfaces/BaseService.html)[] | ||
- Returns [BaseService](https://docs.usercentrics.com/cmp_browser_sdk/4.18.1/interfaces/BaseService.html)[] | ||
@@ -249,3 +249,3 @@ ``` | ||
- `getServicesFullInfo` retrieves all services with their complete information, fetching the aggregator if necessary. | ||
- Returns Promise<[Service](https://docs.usercentrics.com/cmp_browser_sdk/4.18.0/modules.html#service)[]> | ||
- Returns Promise<[Service](https://docs.usercentrics.com/cmp_browser_sdk/4.18.1/modules.html#service)[]> | ||
@@ -267,3 +267,3 @@ ``` | ||
- `getCategoriesBaseInfo` retrieves the categories and their base services info to display this information in your UI. | ||
- Returns [BaseCategory](https://docs.usercentrics.com/cmp_browser_sdk/4.18.0/interfaces/BaseCategory.html)[] | ||
- Returns [BaseCategory](https://docs.usercentrics.com/cmp_browser_sdk/4.18.1/interfaces/BaseCategory.html)[] | ||
@@ -279,3 +279,3 @@ ``` | ||
- `getCategoriesFullInfo` retrieves the categories and their full services info to display this information in your UI. | ||
- Returns Promise<[Category](https://docs.usercentrics.com/cmp_browser_sdk/4.18.0/interfaces/Category.html)[]> | ||
- Returns Promise<[Category](https://docs.usercentrics.com/cmp_browser_sdk/4.18.1/interfaces/Category.html)[]> | ||
@@ -346,3 +346,3 @@ ``` | ||
```html | ||
<script src="https://app.usercentrics.eu/browser-sdk/4.18.0/bundle.js"></script> | ||
<script src="https://app.usercentrics.eu/browser-sdk/4.18.1/bundle.js"></script> | ||
``` | ||
@@ -379,3 +379,3 @@ | ||
**NOTE**: If you need Internet Explorer 11 support, you can point the `src` attribute to `https://app.usercentrics.eu/browser-sdk/4.18.0/bundle_legacy.js`. | ||
**NOTE**: If you need Internet Explorer 11 support, you can point the `src` attribute to `https://app.usercentrics.eu/browser-sdk/4.18.1/bundle_legacy.js`. | ||
@@ -390,2 +390,2 @@ ## Considerations for building your custom TCF v2.0 UI | ||
Documentation can be found on our [documentation website](https://docs.usercentrics.com/cmp_browser_sdk/4.18.0/index.html). | ||
Documentation can be found on our [documentation website](https://docs.usercentrics.com/cmp_browser_sdk/4.18.1/index.html). |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1734748
43
23159
+ Added@iabtcf/cmpapi@1.5.5(transitive)
+ Added@iabtcf/core@1.5.5(transitive)
+ Added@iabtcf/stub@1.5.5(transitive)
+ Addeduuid@9.0.1(transitive)
- Removed@iabtcf/cmpapi@1.5.6(transitive)
- Removed@iabtcf/core@1.5.6(transitive)
- Removed@iabtcf/stub@1.5.6(transitive)
- Removeduuid@8.3.2(transitive)
Updated@iabtcf/cmpapi@1.5.5
Updated@iabtcf/core@1.5.5
Updated@iabtcf/stub@1.5.5
Updateduuid@^9.0.0