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: fb_custom_audience v1 tests #3095

Merged
merged 38 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from 37 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
7d6ea12
feat: update proxy data type for response handler input
utsabc Jan 25, 2024
b1327eb
feat: update proxy v1 test cases
utsabc Jan 25, 2024
30c4eca
Merge branch 'develop' into fix.network-handlers
utsabc Jan 25, 2024
9dd8625
feat: update proxy tests for cm360
utsabc Jan 29, 2024
650911e
fix: typo
utsabc Jan 29, 2024
84b6a5d
Update test/integrations/destinations/campaign_manager/dataDelivery/b…
utsabc Jan 29, 2024
686f524
Update test/integrations/destinations/campaign_manager/dataDelivery/b…
utsabc Jan 29, 2024
76e0284
fix: api contract for v1 proxy
utsabc Feb 1, 2024
93947db
fix: api contract for v1 proxy (#3049)
utsabc Feb 2, 2024
d2e65f4
chore: clean up zod type
Feb 5, 2024
7ce0a66
chore: update testutils
Feb 5, 2024
99f5cb2
chore: update V0 proxy request type and zod schema
Feb 5, 2024
0504ffa
feat: update proxy tests for cm360 (#3039)
utsabc Feb 7, 2024
bd6af6b
Merge branch 'develop' into fix.network-handlers
utsabc Feb 7, 2024
014bf5e
Merge branch 'develop' of github.com:rudderlabs/rudder-transformer in…
Feb 8, 2024
b57a926
Merge branch 'fix.network-handlers' of github.com:rudderlabs/rudder-t…
Feb 8, 2024
325433b
feat: adding zod validations (#3066)
utsabc Feb 8, 2024
689b0cd
chore: update delivery test cases for criteo audience
ItsSudip Feb 8, 2024
9e04774
Revert "chore: update delivery test cases for criteo audience"
ItsSudip Feb 8, 2024
7114f9b
chore: add type def for proxy v1 test
Feb 9, 2024
33d4d62
chore: fix generateMetdata func
Feb 9, 2024
455dce7
chore: criteo audience update proxy test (#3068)
ItsSudip Feb 13, 2024
c7133b3
chore: enable batch response schema check (#3083)
chandumlg Feb 13, 2024
e420b47
chore: fb_custom_audience v1 tests
sandeepdsvs Feb 15, 2024
d007059
chore: fb_custom_audience v1 tests
sandeepdsvs Feb 15, 2024
c537906
chore: fb_custom_audience v1 tests
sandeepdsvs Feb 15, 2024
a8b8f23
chore: braze proxy v1 test (#3087)
utsabc Feb 15, 2024
fe18acd
chore: resolve conflicts
Feb 15, 2024
8c3e0f8
Merge remote-tracking branch 'origin/fix.network-handlers' into fix.n…
sandeepdsvs Feb 15, 2024
ac4a163
chore: fb_custom_audience v1 tests
sandeepdsvs Feb 16, 2024
e9e27a3
chore: fb_custom_audience v1 tests
sandeepdsvs Feb 16, 2024
8877088
chore: fb_custom_audience v1 tests
sandeepdsvs Feb 16, 2024
9f8579f
chore: fb_custom_audience v1 tests
sandeepdsvs Feb 16, 2024
b13bba3
Merge branch 'develop' into fbca_proxy_tests after resolving conflicts
sandeepdsvs Feb 27, 2024
ea99210
Merge branch 'develop' into fbca_proxy_tests
sandeepdsvs Feb 27, 2024
be936ac
Merge branch 'develop' into fbca_proxy_tests
sandeepdsvs Feb 28, 2024
457b601
Merge branch 'develop' into fbca_proxy_tests
sandeepdsvs Mar 1, 2024
41dada1
chore: updated tests
sandeepdsvs Mar 1, 2024
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
6 changes: 5 additions & 1 deletion src/services/destination/nativeIntegration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,11 @@ export class NativeIntegrationDestinationService implements DestinationService {
const jobStates = (deliveryRequest as ProxyV1Request).metadata.map(
(metadata) =>
({
error: JSON.stringify(v0Response.destinationResponse?.response),
error: JSON.stringify(
v0Response.destinationResponse?.response === undefined
? v0Response.destinationResponse
: v0Response.destinationResponse?.response,
),
statusCode: v0Response.status,
metadata,
}) as DeliveryJobState,
Expand Down
Loading
Loading