Skip to content

Commit

Permalink
Merge branch 'main' into fix-ios-lifecycleMetrics
Browse files Browse the repository at this point in the history
  • Loading branch information
cdhoffmann authored Nov 14, 2023
2 parents 2760ac2 + e889c6e commit ca78c28
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 74 deletions.
24 changes: 14 additions & 10 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,21 @@
*/
module.exports = {
siteMetadata: {
versions: [{
title: 'Latest version',
path: '/client-sdks/',
selected: true
},
{
title: 'Previous versions',
path: '/client-sdks/previous-versions/'
}
],
pages: [
{
title: "Versions",
menu: [
{
title: "Latest version",
path: "/home",
selected: true
},
{
title: "Previous versions",
path: '/previous-versions/'
}
]
},
{
title: "Home",
path: "/home"
Expand Down
13 changes: 1 addition & 12 deletions src/pages/edge/edge-network/tabs/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,11 +275,7 @@ Map<String, Object> datasets = new HashMap<>();
Map<String, Object> eventDataset = new HashMap<>();
eventDataset.put("datasetId", "SampleEventDatasetIdOverride");

Map<String, Object> profileDataset = new HashMap<>();
profileDataset.put("datasetId", "SampleProfileDatasetIdOverride");

datasets.put("event", eventDataset);
datasets.put("profile", profileDataset);

experiencePlatform.put("datasets", datasets);
configOverrides.put("com_adobe_experience_platform", experiencePlatform);
Expand Down Expand Up @@ -374,8 +370,7 @@ xdmData["sample"] = "data"
val configOverrides = mapOf(
"com_adobe_experience_platform" to mapOf(
"datasets" to mapOf(
"event" to mapOf("datasetId" to "SampleEventDatasetIdOverride"),
"profile" to mapOf("datasetId" to "SampleProfileDatasetIdOverride")
"event" to mapOf("datasetId" to "SampleEventDatasetIdOverride")
)
),
"com_adobe_analytics" to mapOf(
Expand Down Expand Up @@ -458,9 +453,6 @@ let configOverrides: [String: Any] = [
"datasets": [
"event": [
"datasetId": "SampleEventDatasetIdOverride"
],
"profile": [
"datasetId": "SampleProfileDatasetIdOverride"
]
]
],
Expand Down Expand Up @@ -537,9 +529,6 @@ NSDictionary *configOverrides = @{ @"com_adobe_experience_platform" : @{
@"datasets" : @{
@"event" : @{
@"datasetId": @"SampleEventDatasetIdOverride"
},
@"profile" : @{
@"datasetId": @"SampleProfileDatasetIdOverride"
}
}
},
Expand Down
Loading

0 comments on commit ca78c28

Please sign in to comment.