-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): pull release/v1.22.0 into main (#2046)
- Loading branch information
Showing
75 changed files
with
32,770 additions
and
1,945 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
.../destinations/google_adwords_offline_conversions/data/TrackAddStoreConversionsConfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
[ | ||
{ | ||
"destKey": "operations.create.transaction_attribute.store_attribute.store_code", | ||
"sourceKeys": [ | ||
"properties.store_code", | ||
"properties.storeCode" | ||
], | ||
"required": false, | ||
"metadata": { | ||
"type": "toString" | ||
} | ||
}, | ||
{ | ||
"destKey": "operations.create.transaction_attribute.transaction_amount_micros", | ||
"sourceKeys": [ | ||
"properties.conversionValue", | ||
"properties.total", | ||
"properties.value", | ||
"properties.revenue" | ||
], | ||
"required": true, | ||
"metadata": { | ||
"type": "toNumber" | ||
} | ||
}, | ||
{ | ||
"destKey": "operations.create.transaction_attribute.order_id", | ||
"sourceKeys": [ | ||
"properties.order_id", | ||
"properties.orderId" | ||
], | ||
"required": false, | ||
"metadata": { | ||
"type": "toString" | ||
} | ||
}, | ||
{ | ||
"destKey": "operations.create.transaction_attribute.currency_code", | ||
"sourceKeys": "properties.currency", | ||
"required": true, | ||
"metadata": { | ||
"type": "toString" | ||
} | ||
}, | ||
{ | ||
"destKey": "operations.create.transaction_attribute.transaction_date_time", | ||
"sourceKeys": [ | ||
"properties.transaction_date_time", | ||
"originalTimestamp" | ||
], | ||
"required": true, | ||
"metadata": { | ||
"type": "toString" | ||
} | ||
} | ||
] |
24 changes: 24 additions & 0 deletions
24
...nations/google_adwords_offline_conversions/data/TrackCreateJobStoreConversionsConfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[ | ||
{ | ||
"destKey": "enable_match_rate_range_preview", | ||
"sourceKeys": "properties.enable_match_rate_range_preview", | ||
"required": false | ||
}, | ||
{ | ||
"destKey": "job.storeSalesMetadata.loyaltyFraction", | ||
"sourceKeys": "properties.loyaltyFraction", | ||
"required": false, | ||
"defaultValue":"1" | ||
}, | ||
{ | ||
"destKey": "job.storeSalesMetadata.transaction_upload_fraction", | ||
"sourceKeys": "properties.transaction_upload_fraction", | ||
"required": false, | ||
"defaultValue":"1" | ||
}, | ||
{ | ||
"destKey": "job.storeSalesMetadata.custom_key", | ||
"sourceKeys": "properties.custom_key", | ||
"required": false | ||
} | ||
] |
66 changes: 66 additions & 0 deletions
66
src/v0/destinations/google_adwords_offline_conversions/data/storeAddoperationAddressMap.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
[ | ||
{ | ||
"sourceKeys": "city", | ||
"destKey": "city", | ||
"sourceFromGenericMap": true | ||
}, | ||
{ | ||
"sourceKeys": "state", | ||
"destKey": "state", | ||
"sourceFromGenericMap": true | ||
}, | ||
{ | ||
"sourceKeys": [ | ||
"context.traits.country_code", | ||
"properties.country_code", | ||
"context.traits.countryCode", | ||
"properties.countryCode" | ||
], | ||
"destKey": "country_code" | ||
}, | ||
{ | ||
"sourceKeys": [ | ||
"context.traits.postal_code", | ||
"properties.postal_code", | ||
"context.traits.postalCode", | ||
"properties.postalCode", | ||
"context.traits.zipCode", | ||
"properties.zipCode" | ||
], | ||
"destKey": "postal_code" | ||
}, | ||
{ | ||
"sourceKeys": "firstName", | ||
"destKey": "hashed_first_name", | ||
"sourceFromGenericMap": true, | ||
"metadata": { | ||
"type": [ | ||
"toLower" | ||
] | ||
} | ||
}, | ||
{ | ||
"destKey": "hashed_street_address", | ||
"sourceKeys": [ | ||
"properties.streetAddress", | ||
"context.traits.streetAddress", | ||
"traits.street", | ||
"context.traits.street" | ||
], | ||
"metadata": { | ||
"type": [ | ||
"toLower" | ||
] | ||
} | ||
}, | ||
{ | ||
"sourceKeys": "lastName", | ||
"destKey": "hashed_last_name", | ||
"metadata": { | ||
"type": [ | ||
"toLower" | ||
] | ||
}, | ||
"sourceFromGenericMap": true | ||
} | ||
] |
Oops, something went wrong.