@payrails/web-sdk 5.29.1-RC.2 → 5.29.1-RC.3

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.29.1-RC.2",
3
+ "version": "5.29.1-RC.3",
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
@@ -133,6 +133,7 @@ declare class WorkflowExecution {
133
133
  countryCode: string;
134
134
  merchantCapabilities: ApplePayJS.ApplePayMerchantCapability[];
135
135
  requiredBillingContactFields?: ApplePayJS.ApplePayContactField[];
136
+ requiredShippingContactFields?: ApplePayJS.ApplePayContactField[];
136
137
  };
137
138
  static get url(): string;
138
139
  static get meta(): {
@@ -313,6 +314,7 @@ interface ApplePayConfig {
313
314
  countryCode: string;
314
315
  merchantCapabilities: ApplePayJS.ApplePayMerchantCapability[];
315
316
  requiredBillingContactFields?: ApplePayJS.ApplePayContactField[];
317
+ requiredShippingContactFields?: ApplePayJS.ApplePayContactField[];
316
318
  };
317
319
  type: string;
318
320
  }