You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmpDisplayStatus:String, // possible values: hidden, visible, disabled
164
164
165
+
signalStatus :String, // possible values: not ready, ready
166
+
165
167
supportedAPIs :Arrayof string, // list of supported APIs (prefix strings), e.g. used while loading. Example: ["tcfeuv2","uspv1"]
166
168
167
169
cmpId :Number, // IAB assigned CMP ID, may be 0 during stub/loading
@@ -211,6 +213,21 @@ cmpId : Number, // IAB assigned CMP ID, may be 0 during stub/loading
211
213
</td>
212
214
</td>
213
215
</tr>
216
+
<tr>
217
+
<td><code>'ready'</code></td>
218
+
<td>signalStatus</td>
219
+
<td>Is NULL when there is no display layer. Vendors should rely solely on signalStatus.</td>
220
+
</tr>
221
+
<tr>
222
+
<td><code>'not ready'</code></td>
223
+
<td>signalStatus</td>
224
+
<td>The CMP is not ready to respond to any calling scripts with the corresponding GPP string and applicable section ids.</td>
225
+
</tr>
226
+
<tr>
227
+
<td><code>Null / not set</code></td>
228
+
<td>signalStatus</td>
229
+
<td>The CMP is ready to respond to any calling scripts with the corresponding GPP string and applicable section ids.</td>
230
+
</tr>
214
231
</table>
215
232
216
233
@@ -304,7 +321,13 @@ A call to the `addEventListener` command must always respond with a return objec
304
321
<tr>
305
322
<td><code>cmpDisplayStatus</code></td>
306
323
<td>string</td>
307
-
<td>Event is called whenever the display status of the CMP changes (e.g. the CMP shows the consent layer). The data property will contain the new display status (e.g. “visible”).</td>
324
+
<td>Event is called whenever the display status of the CMP changes (e.g. the CMP shows the consent layer). The data property will contain the new display status (e.g. “visible”). Note that this is only applicable when a consent layer is displayed.</td>
325
+
</tr>
326
+
<tr>
327
+
<td><code>signalStatus</code></td>
328
+
<td>string</td>
329
+
<td>Event is called whenever the signalStatus changes.
0 commit comments