@newskit-render/core 2.18.2 → 2.18.3
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
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.18.3](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/core@2.18.3-alpha.0...@newskit-render/core@2.18.3) (2022-11-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @newskit-render/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [2.18.2](https://github.com/newscorp-ghfb/ncu-newskit-render/compare/@newskit-render/core@2.18.2-alpha.0...@newskit-render/core@2.18.2) (2022-11-14)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @newskit-render/core
|
package/config/environment.ts
CHANGED
|
@@ -31,6 +31,7 @@ export const getSanitizedConfig = () => {
|
|
|
31
31
|
experimentationWeb: process.env.EXPERIMENTATION_WEB as string,
|
|
32
32
|
sourcepointAccountId: process.env.SOURCEPOINT_ACCOUNT_ID as string,
|
|
33
33
|
sourcepointPropertyHref: process.env.SOURCEPOINT_PROPERTY_HREF as string,
|
|
34
|
+
sourcepointPropertyId: process.env.SOURCEPOINT_PROPERTY_ID as string,
|
|
34
35
|
tealiumAccountId: process.env.TEALIUM_ACCOUNT_ID as string,
|
|
35
36
|
tealiumProfileId: process.env.TEALIUM_PROFILE_ID as string,
|
|
36
37
|
tealiumEnv: process.env.TEALIUM_ENV as string,
|
|
@@ -59,6 +60,7 @@ export const {
|
|
|
59
60
|
experimentationWeb,
|
|
60
61
|
sourcepointAccountId,
|
|
61
62
|
sourcepointPropertyHref,
|
|
63
|
+
sourcepointPropertyId,
|
|
62
64
|
tealiumAccountId,
|
|
63
65
|
tealiumProfileId,
|
|
64
66
|
tealiumEnv,
|
|
@@ -233,6 +233,7 @@ commands:
|
|
|
233
233
|
|
|
234
234
|
echo 'export HELM_OPT_SET="$HELM_OPT_SET --set envs.SOURCEPOINT_ACCOUNT_ID=${SOURCEPOINT_ACCOUNT_ID}"' >> $BASH_ENV
|
|
235
235
|
echo 'export HELM_OPT_SET="$HELM_OPT_SET --set envs.SOURCEPOINT_PROPERTY_HREF=${SOURCEPOINT_PROPERTY_HREF}"' >> $BASH_ENV
|
|
236
|
+
echo 'export HELM_OPT_SET="$HELM_OPT_SET --set envs.SOURCEPOINT_PROPERTY_ID=${SOURCEPOINT_PROPERTY_ID}"' >> $BASH_ENV
|
|
236
237
|
echo 'export HELM_OPT_SET="$HELM_OPT_SET --set envs.EXPERIMENTATION_WEB=${EXPERIMENTATION_WEB}"' >> $BASH_ENV
|
|
237
238
|
echo 'export HELM_OPT_SET="$HELM_OPT_SET --set envs.TEALIUM_ACCOUNT_ID=${TEALIUM_ACCOUNT_ID}"' >> $BASH_ENV
|
|
238
239
|
echo 'export HELM_OPT_SET="$HELM_OPT_SET --set envs.TEALIUM_PROFILE_ID=${TEALIUM_PROFILE_ID}"' >> $BASH_ENV
|
package/package.json
CHANGED
package/pages/_document.tsx
CHANGED
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
experimentationWeb,
|
|
17
17
|
sourcepointAccountId,
|
|
18
18
|
sourcepointPropertyHref,
|
|
19
|
+
sourcepointPropertyId,
|
|
19
20
|
tealiumAccountId,
|
|
20
21
|
tealiumProfileId,
|
|
21
22
|
tealiumEnv,
|
|
@@ -87,6 +88,7 @@ export default class MyDocument extends Document {
|
|
|
87
88
|
sourcePointConfigUnified={{
|
|
88
89
|
accountId: Number(sourcepointAccountId),
|
|
89
90
|
propertyHref: sourcepointPropertyHref,
|
|
91
|
+
propertyId: Number(sourcepointPropertyId),
|
|
90
92
|
gdpr: {},
|
|
91
93
|
}}
|
|
92
94
|
reactHelmet={Helmet}
|