Skip to content

Commit

Permalink
feat: adding cloud source and web source for lytics bulk (#1685)
Browse files Browse the repository at this point in the history
  • Loading branch information
shrouti1507 authored Sep 17, 2024
1 parent eae00a1 commit b2a433b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@
"saveDestinationResponse": true,
"includeKeys": ["oneTrustCookieCategories"],
"excludeKeys": [],
"supportedSourceTypes": ["warehouse"],
"supportedSourceTypes": ["warehouse", "web", "cloud"],
"supportedMessageTypes": { "cloud": ["track"] },
"syncBehaviours": ["upsert"],
"disableJsonMapper": false,
"supportedConnectionModes": {
"warehouse": ["cloud"]
"warehouse": ["cloud"],
"web": ["cloud"],
"cloud": ["cloud"]
},
"destConfig": {
"defaultConfig": [
Expand All @@ -23,7 +25,8 @@
"oneTrustCookieCategories"
],
"cloud": ["connectionMode"],
"warehouse": ["connectionMode"]
"warehouse": ["connectionMode"],
"web": ["connectionMode"]
}
},
"options": { "isBeta": true }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
"connectionMode": {
"type": "object",
"properties": {
"shopify": { "type": "string", "enum": ["cloud"] },
"cloud": { "type": "string", "enum": ["cloud"] },
"warehouse": { "type": "string", "enum": ["cloud"] }
"warehouse": { "type": "string", "enum": ["cloud"] },
"web": { "type": "string", "enum": ["cloud"] }
}
}
}
Expand Down

0 comments on commit b2a433b

Please sign in to comment.