@flowio/types 11.24.57 → 11.24.58
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/dist/api-internal.d.ts +1 -1
- package/dist/api.d.ts +1 -1
- package/package.json +2 -2
- package/src/api-internal.ts +2 -2
- package/src/api.ts +2 -2
package/dist/api-internal.d.ts
CHANGED
|
@@ -10034,7 +10034,7 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
10034
10034
|
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
10035
10035
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
10036
10036
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
10037
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
10037
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
|
|
10038
10038
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
10039
10039
|
}
|
|
10040
10040
|
declare namespace io.flow.apple.pay.v0.models {
|
package/dist/api.d.ts
CHANGED
|
@@ -1581,7 +1581,7 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
1581
1581
|
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
1582
1582
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
1583
1583
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
1584
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
1584
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
|
|
1585
1585
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
1586
1586
|
}
|
|
1587
1587
|
declare namespace io.flow.apple.pay.v0.models {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.58",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "90cb83a0f0ad5fc6cb0d732c27d1f5e1389e1645"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -13140,8 +13140,8 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
13140
13140
|
type ApplePayShippingType =
|
|
13141
13141
|
| 'shipping'
|
|
13142
13142
|
| 'delivery'
|
|
13143
|
-
| '
|
|
13144
|
-
| '
|
|
13143
|
+
| 'storePickup'
|
|
13144
|
+
| 'servicePickup';
|
|
13145
13145
|
type ApplePaySupportedNetworks =
|
|
13146
13146
|
| 'amex'
|
|
13147
13147
|
| 'chinaUnionPay'
|
package/src/api.ts
CHANGED
|
@@ -2014,8 +2014,8 @@ declare namespace io.flow.apple.pay.v0.enums {
|
|
|
2014
2014
|
type ApplePayShippingType =
|
|
2015
2015
|
| 'shipping'
|
|
2016
2016
|
| 'delivery'
|
|
2017
|
-
| '
|
|
2018
|
-
| '
|
|
2017
|
+
| 'storePickup'
|
|
2018
|
+
| 'servicePickup';
|
|
2019
2019
|
type ApplePaySupportedNetworks =
|
|
2020
2020
|
| 'amex'
|
|
2021
2021
|
| 'chinaUnionPay'
|