@flowio/api-prop-types 10.16.106 → 10.16.107
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 +1 -1
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +1 -1
- package/src/api.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-prop-types",
|
|
3
|
-
"version": "10.16.
|
|
3
|
+
"version": "10.16.107",
|
|
4
4
|
"description": "PropType validators that work with Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"prop-types": "^15.7.0"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "942e116995931225d013428a9da8237ec64c06be"
|
|
33
33
|
}
|
package/src/api.d.ts
CHANGED
|
@@ -2487,7 +2487,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
2487
2487
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
2488
2488
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
2489
2489
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
2490
|
-
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
2490
|
+
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
2491
2491
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
2492
2492
|
}
|
|
2493
2493
|
|
package/src/api.js
CHANGED
|
@@ -375,7 +375,7 @@ T['io.flow.channel.internal.v0.models.channel_organization_metadata'] = PropType
|
|
|
375
375
|
token: PropTypes.string.isRequired,
|
|
376
376
|
});
|
|
377
377
|
|
|
378
|
-
T['io.flow.channel.internal.v0.enums.channel_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability']);
|
|
378
|
+
T['io.flow.channel.internal.v0.enums.channel_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability', 'all']);
|
|
379
379
|
|
|
380
380
|
T['io.flow.channel.internal.v0.models.channel_organization_token_body'] = PropTypes.exact({
|
|
381
381
|
cleartext: PropTypes.string.isRequired,
|