@24i/bigscreen-sdk 1.0.35-alpha.2588 → 1.0.35-alpha.2589

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@24i/bigscreen-sdk",
3
- "version": "1.0.35-alpha.2588",
3
+ "version": "1.0.35-alpha.2589",
4
4
  "description": "SmartApps BIGscreen SDK monorepo",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -66,14 +66,14 @@ export class TealiumAnalytics implements AnalyticsClient {
66
66
  console.warn(`[${this.name}] prepareDatasetPayload missing options`);
67
67
  return;
68
68
  }
69
- const { entity, language, account, profile } = options;
69
+ const { entity, language, account, profile, property_id: propertyId } = options;
70
70
  this.constantPayload = {
71
71
  tealium_account: account,
72
72
  tealium_profile: profile,
73
73
  language,
74
74
  language_service: `${entity} ${language}`,
75
75
  entity,
76
- property_id: '',
76
+ property_id: `${propertyId}`,
77
77
  short_language_service: language,
78
78
  platform_short: BIGSCREEN_PLATFORM_SHORT,
79
79
  platform_type: BIGSCREEN_PLATFORM_TYPE,
@@ -39,7 +39,7 @@ export const TEALIUM_STATIC_CORE_PAYLOAD = {
39
39
  ott_type: 'SmartTV',
40
40
  platform_short: 'o',
41
41
  platform_type: 'ott',
42
- property_id: '',
42
+ property_id: '414',
43
43
  short_language_service: 'russian',
44
44
  };
45
45