Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): pull release/v1.55.1 into main #984

Merged
merged 12 commits into from
Oct 18, 2023
Merged
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.55.1](https://github.com/rudderlabs/rudder-config-schema/compare/v1.55.0...v1.55.1) (2023-10-16)


### Features

* onboard facebook conversions destination ([#987](https://github.com/rudderlabs/rudder-config-schema/issues/987)) ([ce5c893](https://github.com/rudderlabs/rudder-config-schema/commit/ce5c893712aeb6c67023a8c7d25ef965e21556ba))


### Bug Fixes

krishna2020 marked this conversation as resolved.
Show resolved Hide resolved
* add ortto source ([#966](https://github.com/rudderlabs/rudder-config-schema/issues/966)) ([595ffb0](https://github.com/rudderlabs/rudder-config-schema/commit/595ffb0642a5b399c33fcaeb8c35d3540077e2b8))
* improving pinterest UI ([#980](https://github.com/rudderlabs/rudder-config-schema/issues/980)) ([ebee306](https://github.com/rudderlabs/rudder-config-schema/commit/ebee30617f483c3dd2ac5b341c666f90a074a30c))

## [1.55.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.54.0...v1.55.0) (2023-10-11)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rudder-config-schema",
"version": "1.55.0",
"version": "1.55.1",
"description": "",
"main": "src/index.ts",
"private": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "FACEBOOK_CONVERSIONS",
"displayName": "Facebook Conversions",
"config": {
"transformAt": "processor",
"transformAtV1": "processor",
"saveDestinationResponse": true,
"includeKeys": [],
"excludeKeys": [],
"supportedSourceTypes": [
"android",
"ios",
"web",
"unity",
"amp",
"cloud",
"warehouse",
"reactnative",
"flutter",
"cordova",
"shopify"
],
"supportedMessageTypes": ["identify", "page", "screen", "track"],
"supportedConnectionModes": {},
"destConfig": {
"defaultConfig": [
"blacklistPiiProperties",
"categoryToContent",
"datasetId",
"eventsToEvents",
"whitelistPiiProperties",
"limitedDataUSage",
"actionSource",
"accessToken",
"testDestination",
"testEventCode",
"blacklistedEvents",
"whitelistedEvents",
"eventFilteringOption",
"removeExternalId",
"oneTrustCookieCategories",
"ketchConsentPurposes"
]
},
"secretKeys": ["accessToken"]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"metadata": {
"primaryCategory": "",
"secondaryCategory": [],
"docLink": "",
"logoPath": "",
"connectionMode": {
"cloud-mode": true,
"device-mode": ["web", "android"]
},
"supportedMethods": {
"cloud-mode": ["track", "identify"],
"device-mode": {
"web": ["track", "identify"]
}
},
"releaseStatus": "beta",
"sourceCode": {
"android": {
"github": "",
"version": "v1.0.0"
}
}
}
}
168 changes: 168 additions & 0 deletions src/configurations/destinations/facebook_conversions/schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,168 @@
{
"configSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"required": ["datasetId", "accessToken"],
"type": "object",
"properties": {
"datasetId": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{1,100})$"
},
"accessToken": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,500})$"
},
"categoryToContent": {
"type": "array",
"items": {
"type": "object",
"properties": {
"from": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$"
},
"to": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$"
}
}
}
},
"eventsToEvents": {
"type": "array",
"items": {
"type": "object",
"properties": {
"from": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$"
},
"to": {
"type": "string",
"enum": [
"ViewContent",
"Search",
"AddToCart",
"AddToWishlist",
"InitiateCheckout",
"AddPaymentInfo",
"Purchase",
"PageView",
"Lead",
"CompleteRegistration",
"Contact",
"CustomizeProduct",
"Donate",
"FindLocation",
"Schedule",
"StartTrial",
"SubmitApplication",
"Subscribe",
""
]
}
}
}
},
"actionSource": {
"type": "string",
"enum": [
"website",
"email",
"app",
"phone_call",
"chat",
"physical_store",
"system_generated",
"other"
],
"default": "website"
},
"blacklistPiiProperties": {
"type": "array",
"items": {
"type": "object",
"properties": {
"blacklistPiiProperties": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$"
},
"blacklistPiiHash": { "type": "boolean" }
}
}
},
"whitelistPiiProperties": {
"type": "array",
"items": {
"type": "object",
"properties": {
"whitelistPiiProperties": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$"
}
}
}
},
"limitedDataUSage": { "type": "boolean", "default": false },
"testDestination": { "type": "boolean", "default": false },
"testEventCode": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$"
},
"removeExternalId": { "type": "boolean", "default": false },
"eventFilteringOption": {
"type": "string",
"enum": ["disable", "whitelistedEvents", "blacklistedEvents"],
"default": "disable"
},
"whitelistedEvents": {
"type": "array",
"items": {
"type": "object",
"properties": {
"eventName": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$"
}
}
}
},
"blacklistedEvents": {
"type": "array",
"items": {
"type": "object",
"properties": {
"eventName": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$"
}
}
}
},
"oneTrustCookieCategories": {
"type": "array",
"items": {
"type": "object",
"properties": {
"oneTrustCookieCategory": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$"
}
}
}
},
"ketchConsentPurposes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"purpose": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$"
}
}
}
}
}
}
}
Loading