@querypanel/node-sdk 1.0.54 → 1.0.55
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/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1489,6 +1489,9 @@ function buildModifiedQuestion(originalQuestion, modifications, pipeline) {
|
|
|
1489
1489
|
if (hints.length === 0) {
|
|
1490
1490
|
return originalQuestion;
|
|
1491
1491
|
}
|
|
1492
|
+
if (pipeline === "v2") {
|
|
1493
|
+
return hints.join(", ");
|
|
1494
|
+
}
|
|
1492
1495
|
return `${originalQuestion} (${hints.join(", ")})`;
|
|
1493
1496
|
}
|
|
1494
1497
|
var START_PARAM_KEY_REGEX = /(^|_)(start|from)(_|$)/i;
|