@payrails/web-sdk 5.43.2-RC.1 → 5.43.2-rc.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@payrails/web-sdk",
3
- "version": "5.43.2-RC.1",
3
+ "version": "5.43.2-rc.0",
4
4
  "description": "SDK providing tokenization options on the client for merchants",
5
5
  "main": "index.js",
6
6
  "types": "payrails.d.ts",
package/payrails.d.ts CHANGED
@@ -2114,6 +2114,7 @@ interface GenericElementActionEvents {
2114
2114
  onRequestStart?: (action: PayrailsElementAction) => Promise<boolean>;
2115
2115
  onSuccess?: (action: PayrailsElementAction, e?: any) => void;
2116
2116
  onFailed?: (action: PayrailsElementAction, e?: any) => void;
2117
+ onCancelled?: (action: PayrailsElementAction) => void;
2117
2118
  onButtonClicked?: (action: PayrailsElementAction, e?: {
2118
2119
  bin?: string;
2119
2120
  }) => Promise<boolean>;