@flowio/api-prop-types 10.16.102 → 10.16.104
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 +17 -2
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +17 -2
- package/src/api.js +17 -0
package/lib/api.d.ts
CHANGED
|
@@ -5547,6 +5547,18 @@ declare namespace io.flow.v0.models {
|
|
|
5547
5547
|
readonly 'duty'?: io.flow.v0.models.ConsumerInvoiceLevyForm;
|
|
5548
5548
|
}
|
|
5549
5549
|
|
|
5550
|
+
interface ConsumerInvoiceLineTip {
|
|
5551
|
+
readonly 'discriminator': 'tip';
|
|
5552
|
+
readonly 'price': io.flow.v0.models.Price;
|
|
5553
|
+
readonly 'tax'?: io.flow.v0.models.ConsumerInvoiceLevy;
|
|
5554
|
+
}
|
|
5555
|
+
|
|
5556
|
+
interface ConsumerInvoiceLineTipForm {
|
|
5557
|
+
readonly 'discriminator': 'tip';
|
|
5558
|
+
readonly 'price': number;
|
|
5559
|
+
readonly 'tax'?: io.flow.v0.models.ConsumerInvoiceLevyForm;
|
|
5560
|
+
}
|
|
5561
|
+
|
|
5550
5562
|
interface ConsumerInvoiceOrderSummary {
|
|
5551
5563
|
readonly 'id': string;
|
|
5552
5564
|
readonly 'number': string;
|
|
@@ -7103,6 +7115,7 @@ declare namespace io.flow.v0.models {
|
|
|
7103
7115
|
readonly 'product_id': string;
|
|
7104
7116
|
readonly 'ge_organization_name': string;
|
|
7105
7117
|
readonly 'ge_shipping_origin_country'?: string;
|
|
7118
|
+
readonly 'product_url'?: string;
|
|
7106
7119
|
}
|
|
7107
7120
|
|
|
7108
7121
|
interface GeInputPrice {
|
|
@@ -13647,8 +13660,8 @@ declare namespace io.flow.v0.unions {
|
|
|
13647
13660
|
type CardNumber = (io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher);
|
|
13648
13661
|
type CheckoutTokenForm = (io.flow.v0.models.CheckoutTokenOrderForm | io.flow.v0.models.CheckoutTokenReferenceForm);
|
|
13649
13662
|
type ConfirmationDetails = (io.flow.v0.models.DirectDebit | io.flow.v0.models.CardConfirmationSummary);
|
|
13650
|
-
type ConsumerInvoiceLine = (io.flow.v0.models.ConsumerInvoiceLineItem | io.flow.v0.models.ConsumerInvoiceLineDiscount | io.flow.v0.models.ConsumerInvoiceLineShipping);
|
|
13651
|
-
type ConsumerInvoiceLineForm = (io.flow.v0.models.ConsumerInvoiceLineItemForm | io.flow.v0.models.ConsumerInvoiceLineDiscountForm | io.flow.v0.models.ConsumerInvoiceLineShippingForm);
|
|
13663
|
+
type ConsumerInvoiceLine = (io.flow.v0.models.ConsumerInvoiceLineItem | io.flow.v0.models.ConsumerInvoiceLineDiscount | io.flow.v0.models.ConsumerInvoiceLineShipping | io.flow.v0.models.ConsumerInvoiceLineTip);
|
|
13664
|
+
type ConsumerInvoiceLineForm = (io.flow.v0.models.ConsumerInvoiceLineItemForm | io.flow.v0.models.ConsumerInvoiceLineDiscountForm | io.flow.v0.models.ConsumerInvoiceLineShippingForm | io.flow.v0.models.ConsumerInvoiceLineTipForm);
|
|
13652
13665
|
type Delivery = (io.flow.v0.models.DigitalDelivery | io.flow.v0.models.PhysicalDelivery);
|
|
13653
13666
|
type Deminimis = (io.flow.v0.models.DeminimisSimple | io.flow.v0.models.DeminimisPerItem);
|
|
13654
13667
|
type DeviceDetails = (io.flow.v0.models.DeviceDetailsBrowser);
|
|
@@ -14243,6 +14256,8 @@ export const consumerInvoiceLineItem: PropTypes.Requireable<io.flow.v0.models.Co
|
|
|
14243
14256
|
export const consumerInvoiceLineItemForm: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceLineItemForm>;
|
|
14244
14257
|
export const consumerInvoiceLineShipping: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceLineShipping>;
|
|
14245
14258
|
export const consumerInvoiceLineShippingForm: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceLineShippingForm>;
|
|
14259
|
+
export const consumerInvoiceLineTip: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceLineTip>;
|
|
14260
|
+
export const consumerInvoiceLineTipForm: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceLineTipForm>;
|
|
14246
14261
|
export const consumerInvoiceOrderSummary: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceOrderSummary>;
|
|
14247
14262
|
export const consumerInvoicePayment: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoicePayment>;
|
|
14248
14263
|
export const consumerInvoiceReference: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceReference>;
|