File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
connections/sources/catalog/libraries/server/node Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -263,6 +263,8 @@ sections:
263
263
title : Overview
264
264
- path : /personas/audiences/account-audiences
265
265
title : Account-Level Audiences
266
+ - path : /personas/audiences/organization/
267
+ title : Organizing Audiences
266
268
- section_title : Journeys
267
269
slug : /personas/journeys
268
270
section :
@@ -286,6 +288,8 @@ sections:
286
288
title : Personas and Warehouses
287
289
- path : /personas/profile-api
288
290
title : Profile API
291
+ - path : /personas/debugger
292
+ title : Personas Space Debugger
289
293
- path : /personas/personas-gdpr
290
294
title : Personas and GDPR
291
295
- path : /personas/faqs
Original file line number Diff line number Diff line change @@ -330,7 +330,8 @@ The second argument to the `Analytics` constructor is an optional dictionary of
330
330
``` javascript
331
331
var analytics = new Analytics (' YOUR_WRITE_KEY' , {
332
332
flushAt: 20 ,
333
- flushInterval: 10000
333
+ flushInterval: 10000 ,
334
+ enable: false
334
335
});
335
336
```
336
337
@@ -343,6 +344,10 @@ var analytics = new Analytics('YOUR_WRITE_KEY', {
343
344
<td>`flushInterval` _Number_</td>
344
345
<td>The number of milliseconds to wait before flushing the queue automatically.</td>
345
346
</tr >
347
+ <tr >
348
+ <td>`enable` _Boolean_</td>
349
+ <td>Enable (default) or disable flush. Useful when writing tests and you do not want to send data to Segment Servers.</td>
350
+ </tr >
346
351
</table >
347
352
348
353
You can’t perform that action at this time.
0 commit comments