@flowio/api-prop-types 10.16.68 → 10.16.69
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 +2 -0
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +2 -0
- package/src/api.js +2 -0
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.69",
|
|
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": "597e2435a16a5bd699023530c389a211edd61d60"
|
|
33
33
|
}
|
package/src/api.d.ts
CHANGED
|
@@ -11747,6 +11747,7 @@ declare namespace io.flow.v0.models {
|
|
|
11747
11747
|
readonly 'currency': string;
|
|
11748
11748
|
readonly 'lines': io.flow.v0.models.TaxDutyQuoteLineItemForm[];
|
|
11749
11749
|
readonly 'shipping': io.flow.v0.models.TaxDutyQuoteSimpleShippingForm[];
|
|
11750
|
+
readonly 'includes'?: io.flow.v0.enums.LevyInclusion[];
|
|
11750
11751
|
}
|
|
11751
11752
|
|
|
11752
11753
|
interface TaxDutyQuoteLineItem {
|
|
@@ -12222,6 +12223,7 @@ declare namespace io.flow.v0.models {
|
|
|
12222
12223
|
readonly 'discriminator': 'shipping_label';
|
|
12223
12224
|
readonly 'request_method'?: io.flow.v0.enums.LabelRequestMethod;
|
|
12224
12225
|
readonly 'carrier': io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
12226
|
+
readonly 'revenue_share_percentage'?: number;
|
|
12225
12227
|
}
|
|
12226
12228
|
|
|
12227
12229
|
interface TransactionMetadataShippingLabelCarrier {
|
package/src/api.js
CHANGED
|
@@ -6732,6 +6732,7 @@ T['io.flow.v0.models.tax_duty_quote_form'] = PropTypes.exact({
|
|
|
6732
6732
|
currency: PropTypes.string.isRequired,
|
|
6733
6733
|
lines: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_line_item_form']).isRequired,
|
|
6734
6734
|
shipping: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_simple_shipping_form']).isRequired,
|
|
6735
|
+
includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']),
|
|
6735
6736
|
});
|
|
6736
6737
|
|
|
6737
6738
|
T['io.flow.v0.models.ratecard_lane_import_form'] = PropTypes.exact({
|
|
@@ -6990,6 +6991,7 @@ T['io.flow.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
|
6990
6991
|
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
6991
6992
|
request_method: T['io.flow.v0.enums.label_request_method'],
|
|
6992
6993
|
carrier: T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'].isRequired,
|
|
6994
|
+
revenue_share_percentage: PropTypes.number,
|
|
6993
6995
|
});
|
|
6994
6996
|
|
|
6995
6997
|
T['io.flow.v0.models.billing_discount'] = PropTypes.exact({
|