@flowio/api-prop-types 10.16.49 → 10.16.50
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/lib/api.d.ts +4 -4
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +4 -4
- package/src/api.js +4 -4
package/lib/api.d.ts
CHANGED
|
@@ -1769,10 +1769,10 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1769
1769
|
}
|
|
1770
1770
|
|
|
1771
1771
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
1772
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
1772
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
1773
1773
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
1774
1774
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
1775
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
1775
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
|
|
1776
1776
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
1777
1777
|
}
|
|
1778
1778
|
|
|
@@ -1780,7 +1780,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
1780
1780
|
interface ApplePayLineItem {
|
|
1781
1781
|
readonly 'label': string;
|
|
1782
1782
|
readonly 'type': io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
1783
|
-
readonly 'amount':
|
|
1783
|
+
readonly 'amount': string;
|
|
1784
1784
|
}
|
|
1785
1785
|
|
|
1786
1786
|
interface ApplePayPaymentContact {
|
|
@@ -1831,7 +1831,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
1831
1831
|
interface ApplePayShippingMethod {
|
|
1832
1832
|
readonly 'label': string;
|
|
1833
1833
|
readonly 'detail': string;
|
|
1834
|
-
readonly 'amount':
|
|
1834
|
+
readonly 'amount': string;
|
|
1835
1835
|
readonly 'identifier': string;
|
|
1836
1836
|
}
|
|
1837
1837
|
}
|