@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/index.js +4 -4
- package/package.json +1 -1
- package/payrails.d.ts +2 -0
- package/payrails.js +4 -4
package/package.json
CHANGED
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
|
}
|