@flowio/api-prop-types 10.16.68 → 10.16.70
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 +3 -0
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +3 -0
- package/src/api.js +3 -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.70",
|
|
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": "2bd18d938f840ec2fa147fa4651350a1bb75b33a"
|
|
33
33
|
}
|
package/src/api.d.ts
CHANGED
|
@@ -7274,6 +7274,7 @@ declare namespace io.flow.v0.models {
|
|
|
7274
7274
|
readonly 'discriminator': 'merchant_rejected';
|
|
7275
7275
|
readonly 'reason': io.flow.v0.enums.MerchantRejectedReason;
|
|
7276
7276
|
readonly 'description'?: string;
|
|
7277
|
+
readonly 'deactivate_at'?: string;
|
|
7277
7278
|
}
|
|
7278
7279
|
|
|
7279
7280
|
interface Money {
|
|
@@ -11747,6 +11748,7 @@ declare namespace io.flow.v0.models {
|
|
|
11747
11748
|
readonly 'currency': string;
|
|
11748
11749
|
readonly 'lines': io.flow.v0.models.TaxDutyQuoteLineItemForm[];
|
|
11749
11750
|
readonly 'shipping': io.flow.v0.models.TaxDutyQuoteSimpleShippingForm[];
|
|
11751
|
+
readonly 'includes'?: io.flow.v0.enums.LevyInclusion[];
|
|
11750
11752
|
}
|
|
11751
11753
|
|
|
11752
11754
|
interface TaxDutyQuoteLineItem {
|
|
@@ -12222,6 +12224,7 @@ declare namespace io.flow.v0.models {
|
|
|
12222
12224
|
readonly 'discriminator': 'shipping_label';
|
|
12223
12225
|
readonly 'request_method'?: io.flow.v0.enums.LabelRequestMethod;
|
|
12224
12226
|
readonly 'carrier': io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
12227
|
+
readonly 'revenue_share_percentage'?: number;
|
|
12225
12228
|
}
|
|
12226
12229
|
|
|
12227
12230
|
interface TransactionMetadataShippingLabelCarrier {
|
package/src/api.js
CHANGED
|
@@ -4810,6 +4810,7 @@ T['io.flow.v0.models.merchant_rejected'] = PropTypes.exact({
|
|
|
4810
4810
|
discriminator: PropTypes.oneOf(['merchant_rejected']).isRequired,
|
|
4811
4811
|
reason: T['io.flow.v0.enums.merchant_rejected_reason'].isRequired,
|
|
4812
4812
|
description: PropTypes.string,
|
|
4813
|
+
deactivate_at: PropTypes.string,
|
|
4813
4814
|
});
|
|
4814
4815
|
|
|
4815
4816
|
T['io.flow.v0.unions.onboarding_state'] = PropTypes.oneOfType([
|
|
@@ -6732,6 +6733,7 @@ T['io.flow.v0.models.tax_duty_quote_form'] = PropTypes.exact({
|
|
|
6732
6733
|
currency: PropTypes.string.isRequired,
|
|
6733
6734
|
lines: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_line_item_form']).isRequired,
|
|
6734
6735
|
shipping: PropTypes.arrayOf(T['io.flow.v0.models.tax_duty_quote_simple_shipping_form']).isRequired,
|
|
6736
|
+
includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']),
|
|
6735
6737
|
});
|
|
6736
6738
|
|
|
6737
6739
|
T['io.flow.v0.models.ratecard_lane_import_form'] = PropTypes.exact({
|
|
@@ -6990,6 +6992,7 @@ T['io.flow.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
|
6990
6992
|
discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
|
|
6991
6993
|
request_method: T['io.flow.v0.enums.label_request_method'],
|
|
6992
6994
|
carrier: T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'].isRequired,
|
|
6995
|
+
revenue_share_percentage: PropTypes.number,
|
|
6993
6996
|
});
|
|
6994
6997
|
|
|
6995
6998
|
T['io.flow.v0.models.billing_discount'] = PropTypes.exact({
|