@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/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
|
@@ -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
|
}
|