From 8f63cf4856467d1ced13216fa5dd0ae6620e22c8 Mon Sep 17 00:00:00 2001 From: Bohdan Perekhrest Date: Mon, 20 Jan 2025 23:01:03 +0200 Subject: [PATCH 1/4] [PR-23282] [JS Library] Add a possibility to pass sub_choise for Person with Origin --- source/partials/product_purchase_script.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/partials/product_purchase_script.rst b/source/partials/product_purchase_script.rst index e1cc7b8bc..c726ee9e8 100644 --- a/source/partials/product_purchase_script.rst +++ b/source/partials/product_purchase_script.rst @@ -31,7 +31,9 @@ }, customer: { email: '', // Required - Email of the customer who issued a purchase. Example: 'customer@example.com' - traffic_source: '' // The source of the traffic driven to the campaign. Example: 'facebook' + traffic_source: '', // The source of the traffic driven to the campaign. Example: 'facebook' + phone_optin: true, // To subscribe customer with phone number. Requires to pass phone number if value is true + sub_choice: true // To subscribe customer } }; From 0a140600af4ee1d021d0e095bf5560e8b7a1586e Mon Sep 17 00:00:00 2001 From: Bohdan Perekhrest <79131278+bohdan-perekhrest@users.noreply.github.com> Date: Wed, 22 Jan 2025 12:26:07 +0200 Subject: [PATCH 2/4] Update source/partials/product_purchase_script.rst Co-authored-by: Maksym Dzhulii --- source/partials/product_purchase_script.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/partials/product_purchase_script.rst b/source/partials/product_purchase_script.rst index c726ee9e8..bf8521d78 100644 --- a/source/partials/product_purchase_script.rst +++ b/source/partials/product_purchase_script.rst @@ -32,7 +32,7 @@ customer: { email: '', // Required - Email of the customer who issued a purchase. Example: 'customer@example.com' traffic_source: '', // The source of the traffic driven to the campaign. Example: 'facebook' - phone_optin: true, // To subscribe customer with phone number. Requires to pass phone number if value is true + phone_optin: boolean, // To subscribe customer with phone number. Requires to pass phone number if the value is true sub_choice: true // To subscribe customer } }; From 5195dfda32070efde31c472e92fe5199f35d34bd Mon Sep 17 00:00:00 2001 From: Bohdan Perekhrest Date: Fri, 24 Jan 2025 11:01:07 +0200 Subject: [PATCH 3/4] Replace sub_choice with email_optin --- source/partials/product_purchase_script.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/partials/product_purchase_script.rst b/source/partials/product_purchase_script.rst index bf8521d78..26c9fff1b 100644 --- a/source/partials/product_purchase_script.rst +++ b/source/partials/product_purchase_script.rst @@ -33,7 +33,7 @@ email: '', // Required - Email of the customer who issued a purchase. Example: 'customer@example.com' traffic_source: '', // The source of the traffic driven to the campaign. Example: 'facebook' phone_optin: boolean, // To subscribe customer with phone number. Requires to pass phone number if the value is true - sub_choice: true // To subscribe customer + email_optin: boolean // To subscribe customer with emaill. } }; From 51ce5ee297e5c7320af341b82a68157b9448f346 Mon Sep 17 00:00:00 2001 From: Bohdan Perekhrest <79131278+bohdan-perekhrest@users.noreply.github.com> Date: Mon, 27 Jan 2025 11:17:58 +0200 Subject: [PATCH 4/4] Update source/partials/product_purchase_script.rst Co-authored-by: Taras Dehtiar --- source/partials/product_purchase_script.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/partials/product_purchase_script.rst b/source/partials/product_purchase_script.rst index 26c9fff1b..4bae3e51d 100644 --- a/source/partials/product_purchase_script.rst +++ b/source/partials/product_purchase_script.rst @@ -32,8 +32,8 @@ customer: { email: '', // Required - Email of the customer who issued a purchase. Example: 'customer@example.com' traffic_source: '', // The source of the traffic driven to the campaign. Example: 'facebook' - phone_optin: boolean, // To subscribe customer with phone number. Requires to pass phone number if the value is true - email_optin: boolean // To subscribe customer with emaill. + phone_optin: false, // Indicates whether the customer has provided consent for phone opt-in. The value should be boolean. If set to true, a valid phone number must be provided. + email_optin: false // Indicates whether the customer has provided consent for email opt-in. The value should be boolean. } };