Skip to content

Commit

Permalink
feat: refactor supportedMessageTypes and supportedConnectionModes
Browse files Browse the repository at this point in the history
  • Loading branch information
ujjwal-ab committed Oct 30, 2023
1 parent c90e1fd commit 831f12e
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion src/configurations/destinations/af/db-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,26 @@
"cordova",
"shopify"
],
"supportedMessageTypes": ["track", "screen", "page"],
"supportedMessageTypes": {
"cloud": ["track", "screen", "page"],
"device": {
"android": ["track", "screen", "page"],
"cordova": ["track", "screen", "page"],
"ios": ["track", "screen", "page"],
"flutter": ["track", "screen", "page"],
"unity": ["track", "screen", "page"]
}
},
"supportedConnectionModes": {
"cordova": ["cloud", "device"],
"android": ["cloud", "device"],
"ios": ["cloud", "device"],
"flutter": ["cloud", "device"],
"reactnative": ["cloud", "device"],
"web": ["cloud"],
"amp": ["cloud"],
"unity": ["cloud"]
},
"destConfig": {
"defaultConfig": [
"devKey",
Expand Down

0 comments on commit 831f12e

Please sign in to comment.