@24i/bigscreen-sdk 1.0.51-alpha.2791 → 1.0.51-alpha.2793
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
|
@@ -283,7 +283,9 @@ export class DeviceSmartCast extends DeviceBase {
|
|
|
283
283
|
async getAdInfo() {
|
|
284
284
|
const adId = this.IFA?.IFA ?? null;
|
|
285
285
|
const type = this.IFA?.IFA_TYPE ?? 'vida';
|
|
286
|
-
const latEnabled = this.IFA?.LMT
|
|
286
|
+
const latEnabled = (this.IFA?.LMT !== null || this.IFA?.LMT !== undefined)
|
|
287
|
+
? Boolean(this.IFA?.LMT)
|
|
288
|
+
: true;
|
|
287
289
|
return { adId, type, latEnabled };
|
|
288
290
|
}
|
|
289
291
|
|
|
@@ -61,8 +61,8 @@ export type IFA = {
|
|
|
61
61
|
IFA: string,
|
|
62
62
|
/** String value for IFA type ("vida") */
|
|
63
63
|
IFA_TYPE: string,
|
|
64
|
-
/**
|
|
65
|
-
LMT:
|
|
64
|
+
/** 0=Limited tracking not enabled, 1=Limited tracking enabled */
|
|
65
|
+
LMT: 0 | 1,
|
|
66
66
|
};
|
|
67
67
|
|
|
68
68
|
export type DevicePlaybackQuality = 'UHD' | 'HD' | 'SD';
|