@segment/public-api-sdk-typescript 72.1.0-b18248 → 72.1.0-b18309
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iDSyncConfigurationInput.js","sourceRoot":"","sources":["../../model/iDSyncConfigurationInput.ts"],"names":[],"mappings":";;;AAiBA;IAAA;
|
|
1
|
+
{"version":3,"file":"iDSyncConfigurationInput.js","sourceRoot":"","sources":["../../model/iDSyncConfigurationInput.ts"],"names":[],"mappings":";;;AAiBA;IAAA;IAyCA,CAAC;IAHU,4CAAmB,GAA1B;QACI,OAAO,wBAAwB,CAAC,gBAAgB,CAAC;IACrD,CAAC;IA1BM,sCAAa,GAAuB,SAAS,CAAC;IAE9C,yCAAgB,GAIlB;QACD;YACI,IAAI,EAAE,YAAY;YAClB,QAAQ,EAAE,YAAY;YACtB,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,UAAU;YAChB,QAAQ,EAAE,UAAU;YACpB,IAAI,EAAE,QAAQ;SACjB;QACD;YACI,IAAI,EAAE,OAAO;YACb,QAAQ,EAAE,OAAO;YACjB,IAAI,EAAE,QAAQ;SACjB;KACJ,CAAC;IAKN,+BAAC;CAAA,AAzCD,IAyCC;AAzCY,4DAAwB"}
|
|
@@ -24,6 +24,10 @@ export class IDSyncConfigurationInput {
|
|
|
24
24
|
* The rule for selecting which identifiers to sync from a profile. Possible values: first: Syncs only the oldest recorded value. last: Syncs only the most recently updated value. all: Syncs every value found on the profile (sends multiple events).
|
|
25
25
|
*/
|
|
26
26
|
'strategy': string;
|
|
27
|
+
/**
|
|
28
|
+
* Optional destination-specific identifier to map to (for example, \"Email_Address_c\").
|
|
29
|
+
*/
|
|
30
|
+
'mapTo'?: string;
|
|
27
31
|
|
|
28
32
|
static discriminator: string | undefined = undefined;
|
|
29
33
|
|
|
@@ -42,6 +46,11 @@ export class IDSyncConfigurationInput {
|
|
|
42
46
|
baseName: 'strategy',
|
|
43
47
|
type: 'string',
|
|
44
48
|
},
|
|
49
|
+
{
|
|
50
|
+
name: 'mapTo',
|
|
51
|
+
baseName: 'mapTo',
|
|
52
|
+
type: 'string',
|
|
53
|
+
},
|
|
45
54
|
];
|
|
46
55
|
|
|
47
56
|
static getAttributeTypeMap() {
|