Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c784307
getting started
joe-ayoub-segment Nov 16, 2025
987630a
working on types
joe-ayoub-segment Nov 17, 2025
7212af6
adding fields file
joe-ayoub-segment Nov 17, 2025
ca6ef9d
importing fields
joe-ayoub-segment Nov 17, 2025
f10bdbd
generated types
joe-ayoub-segment Nov 17, 2025
6999d55
more progress
joe-ayoub-segment Nov 17, 2025
a085240
types look ok
joe-ayoub-segment Nov 17, 2025
c6226da
minor change - getting ready for ms status response handling
joe-ayoub-segment Nov 18, 2025
32e04ff
code looking ok - tests still to be done
joe-ayoub-segment Nov 18, 2025
b9d45fc
saving progress
joe-ayoub-segment Nov 18, 2025
7ac7c7e
first unit test passing
joe-ayoub-segment Nov 19, 2025
7983dcb
_update_existing_only
joe-ayoub-segment Nov 19, 2025
cfa9494
second test passing
joe-ayoub-segment Nov 19, 2025
89b653b
bunch more tests
joe-ayoub-segment Nov 19, 2025
4e67de8
bad import
joe-ayoub-segment Nov 19, 2025
83bda3e
description
joe-ayoub-segment Nov 19, 2025
5bad865
fixing up an annoying type thing
joe-ayoub-segment Nov 19, 2025
55f18f6
working on batch tests
joe-ayoub-segment Nov 20, 2025
ae7adfd
batch tests passing
joe-ayoub-segment Nov 20, 2025
7e0209f
updating snapshots
joe-ayoub-segment Nov 20, 2025
dac2b3c
bug fix for field mapping
joe-ayoub-segment Nov 24, 2025
6c0fa64
updating fields after stage test
joe-ayoub-segment Nov 24, 2025
2d68eef
updates port staging testing
joe-ayoub-segment Nov 24, 2025
15ddad8
updating snapshot
joe-ayoub-segment Nov 25, 2025
aac9e49
adding presets
joe-ayoub-segment Nov 25, 2025
0095efc
more annoying changes after doing testing
joe-ayoub-segment Nov 25, 2025
118c1e8
splitting into multiple actions
joe-ayoub-segment Nov 26, 2025
5609662
fixing up unit tests
joe-ayoub-segment Nov 26, 2025
1166e0d
correcting preset
joe-ayoub-segment Nov 26, 2025
f5505fd
fixing snapshots
joe-ayoub-segment Nov 26, 2025
5d16d50
updating some presets and changing metadata field
joe-ayoub-segment Nov 26, 2025
170cee7
fixing up presets and metadata field
joe-ayoub-segment Nov 26, 2025
729b10b
stupid ai added code needs to be removed
joe-ayoub-segment Nov 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Testing snapshot for Braze's ecommerce destination action: all fields 1`] = `
Object {
"events": Array [
Object {
"_update_existing_only": true,
"app_id": "tZlmdH(v3%S",
"braze_id": "tZlmdH(v3%S",
"email": "urbapwid@avo.dz",
"external_id": "tZlmdH(v3%S",
"name": "ecommerce.checkout_started",
"phone": "tZlmdH(v3%S",
"properties": Object {
"cart_id": "tZlmdH(v3%S",
"checkout_id": "tZlmdH(v3%S",
"currency": "HTG",
"metadata": Object {
"testType": "tZlmdH(v3%S",
},
"products": Array [
Object {
"image_url": "http://vaci.va/inu",
"price": -17122291498352.64,
"product_id": "tZlmdH(v3%S",
"product_name": "tZlmdH(v3%S",
"product_url": "http://vaci.va/inu",
"quantity": -17122291498352.64,
"variant_id": "tZlmdH(v3%S",
},
],
"source": "tZlmdH(v3%S",
"total_value": -17122291498352.64,
},
"time": "2052-05-22T02:09:02.458Z",
"user_alias": Object {
"alias_label": "tZlmdH(v3%S",
"alias_name": "tZlmdH(v3%S",
},
},
],
}
`;

exports[`Testing snapshot for Braze's ecommerce destination action: required fields 1`] = `
Object {
"events": Array [
Object {
"app_id": "tZlmdH(v3%S",
"braze_id": "tZlmdH(v3%S",
"external_id": "tZlmdH(v3%S",
"name": "ecommerce.checkout_started",
"properties": Object {
"cart_id": "tZlmdH(v3%S",
"checkout_id": "tZlmdH(v3%S",
"currency": "HTG",
"products": Array [
Object {
"price": -17122291498352.64,
"product_id": "tZlmdH(v3%S",
"product_name": "tZlmdH(v3%S",
"quantity": -17122291498352.64,
"variant_id": "tZlmdH(v3%S",
},
],
"source": "tZlmdH(v3%S",
"total_value": -17122291498352.64,
},
"time": "2052-05-22T02:09:02.458Z",
},
],
}
`;
Loading
Loading