-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedgee-component.toml
38 lines (32 loc) · 1.34 KB
/
edgee-component.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
manifest-version = 1
[component]
name = "Meta Capi"
version = "0.8.1"
category = "data-collection"
subcategory = "conversion-api"
description = """
Meta Conversions API is designed to create a connection between an advertiser’s marketing data (such as website events) and Meta systems that optimize ad targeting, decrease cost per result and measure outcomes.
Each event you send to Meta CAPI must have a user property (at least one of the following: email, phone_number), otherwise the event will be ignored.
"""
documentation = "https://www.edgee.cloud/docs/components/data-collection/meta-capi"
repository = "https://github.com/edgee-cloud/meta-capi-component"
wit-world-version = "0.5.0"
icon-path = "meta.png"
[component.build]
command = "cargo build --target wasm32-wasip2 --release && cp ./target/wasm32-wasip2/release/meta_capi_component.wasm meta_capi.wasm"
output_path = "meta_capi.wasm"
[component.settings.meta_pixel_id]
title = "Meta Pixel ID"
type = "string"
required = true
description = "The pixel ID for your Meta account"
[component.settings.meta_access_token]
title = "Meta Access Token"
type = "string"
required = true
description = "The access token for your Meta account"
[component.settings.meta_test_event_code]
title = "Meta Test Event Code (optional)"
type = "string"
required = false
description = "The test event code for your Meta account"