Skip to content

Commit

Permalink
Fix types and SFCC output schema mapping (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecgeatches authored Jan 27, 2025
1 parent 0ae1d02 commit f4c6d27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inc/Integrations/SalesforceB2C/SalesforceB2CIntegration.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,18 +116,18 @@ private static function get_queries( SalesforceB2CDataSource $data_source ): arr
'type' => [
'product_id' => [
'name' => 'product id',
'path' => '$.productid',
'path' => '$.productId',
'type' => 'id',
],
'name' => [
'name' => 'product name',
'path' => '$.productname',
'path' => '$.productName',
'type' => 'string',
],
'price' => [
'name' => 'item price',
'path' => '$.price',
'type' => 'price',
'type' => 'string',
],
'image_url' => [
'name' => 'item image url',
Expand Down

0 comments on commit f4c6d27

Please sign in to comment.