We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
PurchaseObject.app_id should be optional
https://www.braze.com/docs/api/objects_filters/purchase_object/
PurchaseObject.app_id is required, therefore not letting send track user purchase without app_id
interface PurchaseObject { external_id?: string; user_alias?: UserAlias; braze_id?: string; app_id: string; product_id: string; currency: string; price: number; quantity?: number; time: string; properties?: Properties; _update_existing_only?: boolean; }
Can just change app_id to optional:
app_id
interface PurchaseObject { external_id?: string; user_alias?: UserAlias; braze_id?: string; app_id?: string; product_id: string; currency: string; price: number; quantity?: number; time: string; properties?: Properties; _update_existing_only?: boolean; }
trackUserObject, PurchaseObject, app_id
The text was updated successfully, but these errors were encountered:
fix(types): make app_id optional on PurchaseObject
PurchaseObject
1a07029
Fixes #600
Release:
Sorry, something went wrong.
remarkablemark
Successfully merging a pull request may close this issue.
Expected Behavior
PurchaseObject.app_id should be optional
https://www.braze.com/docs/api/objects_filters/purchase_object/
Actual Behavior
PurchaseObject.app_id is required, therefore not letting send track user purchase without app_id
Steps to Reproduce
Reproducible Demo
Can just change
app_id
to optional:Environment
Keywords
trackUserObject, PurchaseObject, app_id
The text was updated successfully, but these errors were encountered: