@payrails/web-sdk 5.15.0 → 5.16.0-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.15.0",
3
+ "version": "5.16.0-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
@@ -48,6 +48,7 @@ declare class WorkflowExecution {
48
48
  supportedNetworks: string[];
49
49
  countryCode: string;
50
50
  merchantCapabilities: ApplePayJS.ApplePayMerchantCapability[];
51
+ requiredBillingContactFields?: ApplePayJS.ApplePayContactField[];
51
52
  };
52
53
  get url(): string;
53
54
  get response(): WorkflowExecutionResponse;
@@ -203,6 +204,7 @@ interface ApplePayConfig {
203
204
  supportedNetworks: string[];
204
205
  countryCode: string;
205
206
  merchantCapabilities: ApplePayJS.ApplePayMerchantCapability[];
207
+ requiredBillingContactFields?: ApplePayJS.ApplePayContactField[];
206
208
  };
207
209
  type: string;
208
210
  }