Skip to content

Commit

Permalink
LiveIntent User ID Module: Add DEFAULT_DELAY (#12334)
Browse files Browse the repository at this point in the history
* Add DEFAULT_DELAY

* Artificial change to trigger the build
  • Loading branch information
3link authored Oct 19, 2024
1 parent b8dcc7c commit 1cdbb9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/liveIntentId/idSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { submodule } from '../../src/hook.js';
import { LiveConnect } from 'live-connect-js'; // eslint-disable-line prebid/validate-imports
import { getStorageManager } from '../../src/storageManager.js';
import { MODULE_TYPE_UID } from '../../src/activities/modules.js';
import { DEFAULT_AJAX_TIMEOUT, MODULE_NAME, composeIdObject, eids, DEFAULT_DELAY, GVLID, PRIMARY_IDS, parseRequestedAttributes } from './shared.js'
import { DEFAULT_AJAX_TIMEOUT, MODULE_NAME, composeIdObject, eids, GVLID, DEFAULT_DELAY, PRIMARY_IDS, parseRequestedAttributes } from './shared.js'

/**
* @typedef {import('../modules/userId/index.js').Submodule} Submodule
Expand Down
1 change: 1 addition & 0 deletions libraries/liveIntentId/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { coppaDataHandler } from '../../src/adapterManager.js';
export const PRIMARY_IDS = ['libp'];
export const GVLID = 148;
export const DEFAULT_AJAX_TIMEOUT = 5000;
export const DEFAULT_DELAY = 500;
export const MODULE_NAME = 'liveIntentId';
export const LI_PROVIDER_DOMAIN = 'liveintent.com';
export const DEFAULT_REQUESTED_ATTRIBUTES = { 'nonId': true };
Expand Down

0 comments on commit 1cdbb9d

Please sign in to comment.