@segment/public-api-sdk-typescript 59.6.0-b14129 → 59.6.0-b14131
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.
|
@@ -14,7 +14,7 @@ import { RequestFile } from './models';
|
|
|
14
14
|
|
|
15
15
|
export class AudienceDefinition {
|
|
16
16
|
/**
|
|
17
|
-
* The target entity slug, required in
|
|
17
|
+
* The target entity relationship slug, required in a linked audience, default to profile if not specified.
|
|
18
18
|
*/
|
|
19
19
|
'targetEntity'?: string;
|
|
20
20
|
/**
|
package/model/audienceOptions.ts
CHANGED
|
@@ -22,7 +22,7 @@ export class AudienceOptions {
|
|
|
22
22
|
*/
|
|
23
23
|
'filterByExternalIds'?: Array<string>;
|
|
24
24
|
/**
|
|
25
|
-
* If specified, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of `includeHistoricalData` to determine whether historical data is either entirely included or entirely excluded when determining audience membership.
|
|
25
|
+
* If specified and positive, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of `includeHistoricalData` to determine whether historical data is either entirely included or entirely excluded when determining audience membership.
|
|
26
26
|
*/
|
|
27
27
|
'backfillEventDataDays'?: number;
|
|
28
28
|
|
|
@@ -22,7 +22,7 @@ export class AudienceOptionsWithLookback {
|
|
|
22
22
|
*/
|
|
23
23
|
'includeHistoricalData'?: boolean;
|
|
24
24
|
/**
|
|
25
|
-
* If specified, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of `includeHistoricalData` to determine whether historical data is either entirely included or entirely excluded when determining audience membership.
|
|
25
|
+
* If specified and positive, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of `includeHistoricalData` to determine whether historical data is either entirely included or entirely excluded when determining audience membership.
|
|
26
26
|
*/
|
|
27
27
|
'backfillEventDataDays'?: number;
|
|
28
28
|
|