-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: onboarding intercom v2 destination (#1655)
- Loading branch information
1 parent
c6c2124
commit 11494f2
Showing
4 changed files
with
1,366 additions
and
0 deletions.
There are no files selected for viewing
105 changes: 105 additions & 0 deletions
105
src/configurations/destinations/intercom_v2/db-config.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,105 @@ | ||
{ | ||
"name": "INTERCOM_V2", | ||
"displayName": "Intercom V2", | ||
"config": { | ||
"transformAtV1": "router", | ||
"saveDestinationResponse": true, | ||
"throttlingCost": { "eventType": { "group": 3, "identify": 3 } }, | ||
"auth": { | ||
"type": "OAuth", | ||
"role": "intercom", | ||
"rudderScopes": ["delivery"] | ||
}, | ||
"excludeKeys": [], | ||
"supportedSourceTypes": [ | ||
"android", | ||
"ios", | ||
"web", | ||
"unity", | ||
"amp", | ||
"cloud", | ||
"reactnative", | ||
"flutter", | ||
"cordova" | ||
], | ||
"supportedMessageTypes": { | ||
"cloud": ["identify", "track", "group"] | ||
}, | ||
"supportedConnectionModes": { | ||
"web": ["cloud"], | ||
"android": ["cloud"], | ||
"ios": ["cloud"], | ||
"unity": ["cloud"], | ||
"amp": ["cloud"], | ||
"reactnative": ["cloud"], | ||
"flutter": ["cloud"], | ||
"cordova": ["cloud"], | ||
"cloud": ["cloud"] | ||
}, | ||
"destConfig": { | ||
"defaultConfig": ["rudderAccountId", "apiServer", "sendAnonymousId"], | ||
"android": [ | ||
"connectionMode", | ||
"consentManagement", | ||
"oneTrustCookieCategories", | ||
"ketchConsentPurposes" | ||
], | ||
"ios": [ | ||
"connectionMode", | ||
"consentManagement", | ||
"oneTrustCookieCategories", | ||
"ketchConsentPurposes" | ||
], | ||
"web": [ | ||
"connectionMode", | ||
"consentManagement", | ||
"oneTrustCookieCategories", | ||
"ketchConsentPurposes" | ||
], | ||
"unity": [ | ||
"connectionMode", | ||
"consentManagement", | ||
"oneTrustCookieCategories", | ||
"ketchConsentPurposes" | ||
], | ||
"amp": [ | ||
"connectionMode", | ||
"consentManagement", | ||
"oneTrustCookieCategories", | ||
"ketchConsentPurposes" | ||
], | ||
"cloud": [ | ||
"connectionMode", | ||
"consentManagement", | ||
"oneTrustCookieCategories", | ||
"ketchConsentPurposes" | ||
], | ||
"reactnative": [ | ||
"connectionMode", | ||
"consentManagement", | ||
"oneTrustCookieCategories", | ||
"ketchConsentPurposes" | ||
], | ||
"flutter": [ | ||
"connectionMode", | ||
"consentManagement", | ||
"oneTrustCookieCategories", | ||
"ketchConsentPurposes" | ||
], | ||
"cordova": [ | ||
"connectionMode", | ||
"consentManagement", | ||
"oneTrustCookieCategories", | ||
"ketchConsentPurposes" | ||
] | ||
}, | ||
"secretKeys": [] | ||
}, | ||
"options": { | ||
"isBeta": true, | ||
"hidden": { | ||
"featureFlagName": "AMP_intercom_v2", | ||
"featureFlagValue": false | ||
} | ||
} | ||
} |
Oops, something went wrong.