Add missing primitive types to webhook payload validation.
Review Request #10235 — Created Oct. 17, 2018 and submitted — Latest diff uploaded
Depending on the database backend used, we ended up with
long
instead
ofint
values in webhook payloads. This wasn't explicitly supported,
and ended up breaking for some users. This change addresses this and
further future-proofs by adding the remaininglong
andfloat
types
to the validation.
Unit tests pass.