@delopay/sdk 0.48.0 → 0.49.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -3297,6 +3297,7 @@ function buildConditions(when = {}, raw = []) {
3297
3297
  if (when.connector != null) out.push(enumCondition("connector", when.connector));
3298
3298
  if (when.currency != null) out.push(enumCondition("currency", when.currency));
3299
3299
  if (when.cardNetwork != null) out.push(enumCondition("card_network", when.cardNetwork));
3300
+ if (when.billingCountry != null) out.push(enumCondition("billing_country", when.billingCountry));
3300
3301
  if (when.amountEquals != null) out.push(numberCondition("amount", "equal", when.amountEquals));
3301
3302
  if (when.amountGreaterThan != null) {
3302
3303
  out.push(numberCondition("amount", "greater_than", when.amountGreaterThan));