From 493557835c2a5a2d8a67232a6a001b689c919e88 Mon Sep 17 00:00:00 2001 From: congdu-kun <126609480+congdu-kun@users.noreply.github.com> Date: Tue, 6 Jun 2023 07:45:16 -0700 Subject: [PATCH] Add GVL ID for pairId userId submodule. (#10053) --- modules/pairIdSystem.js | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/modules/pairIdSystem.js b/modules/pairIdSystem.js index 082c1086267..b525364fb3a 100644 --- a/modules/pairIdSystem.js +++ b/modules/pairIdSystem.js @@ -32,11 +32,16 @@ export const pairIdSubmodule = { */ name: MODULE_NAME, /** - * decode the stored id value for passing to bid requests - * @function - * @param { string | undefined } value - * @returns {{pairId:string} | undefined } - */ + * used to specify vendor id + * @type {number} + */ + gvlid: 755, + /** + * decode the stored id value for passing to bid requests + * @function + * @param { string | undefined } value + * @returns {{pairId:string} | undefined } + */ decode(value) { return value && Array.isArray(value) ? { 'pairId': value } : undefined },