@quintype/framework 7.34.7 → 7.34.8
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [7.34.8](https://github.com/quintype/quintype-node-framework/compare/v7.34.7...v7.34.8) (2025-11-27)
|
|
6
|
+
|
|
5
7
|
### [7.34.7](https://github.com/quintype/quintype-node-framework/compare/v7.34.6...v7.34.7) (2025-11-21)
|
|
6
8
|
|
|
7
9
|
### [7.34.6](https://github.com/quintype/quintype-node-framework/compare/v7.34.4...v7.34.6) (2025-10-17)
|
package/package.json
CHANGED
|
@@ -125,7 +125,7 @@ function loadDataForPageType(
|
|
|
125
125
|
.then((result) => {
|
|
126
126
|
if (result && result.data) {
|
|
127
127
|
if (result.data[ABORT_HANDLER] || (result.data.error && result.data.error.message)) {
|
|
128
|
-
return null
|
|
128
|
+
return null;
|
|
129
129
|
}
|
|
130
130
|
}
|
|
131
131
|
return result;
|
|
@@ -195,6 +195,7 @@ exports.handleIsomorphicShell = async function handleIsomorphicShell(
|
|
|
195
195
|
|
|
196
196
|
function createStoreFromResult(url, result, opts = {}) {
|
|
197
197
|
const isBotRequest = _.get(url, "query.botrequest", false);
|
|
198
|
+
const nothirdparty = _.get(url, "query.nothirdparty", false);
|
|
198
199
|
const qt = {
|
|
199
200
|
pageType: result.pageType || opts.defaultPageType,
|
|
200
201
|
subPageType: result.subPageType,
|
|
@@ -204,6 +205,7 @@ function createStoreFromResult(url, result, opts = {}) {
|
|
|
204
205
|
primaryHostUrl: result.primaryHostUrl,
|
|
205
206
|
isBotRequest: isBotRequest,
|
|
206
207
|
lazyLoadImageMargin: opts.lazyLoadImageMargin,
|
|
208
|
+
removeThirdPartyScripts: nothirdparty,
|
|
207
209
|
};
|
|
208
210
|
return createBasicStore(result, qt, opts);
|
|
209
211
|
}
|