@flowio/api-types 0.0.254 → 0.0.256
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/generated/io.flow.catalog.v0.catalog.d.ts +1 -0
- package/generated/io.flow.channel.internal.v0.channel-internal.d.ts +1 -0
- package/generated/io.flow.experience.v0.experience.d.ts +14 -0
- package/generated/io.flow.internal.v0.api-internal.d.ts +309 -25
- package/generated/io.flow.order.price.v0.order-price.d.ts +19 -0
- package/generated/io.flow.organization.v0.organization.d.ts +0 -13
- package/generated/io.flow.product.v0.product.d.ts +6 -0
- package/generated/io.flow.shopify.external.v0.shopify-external.d.ts +1 -0
- package/generated/io.flow.shopify.markets.internal.event.v0.shopify-markets-internal-event.d.ts +29 -1
- package/generated/io.flow.shopify.markets.internal.v0.shopify-markets-internal.d.ts +39 -0
- package/generated/io.flow.tech.onboarding.playground.v0.tech-onboarding-playground.d.ts +18 -0
- package/generated/io.flow.trueup.v0.trueup.d.ts +1 -1
- package/generated/io.flow.v0.api.d.ts +66 -5
- package/package.json +2 -2
|
@@ -222,6 +222,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
222
222
|
readonly 'amount': number;
|
|
223
223
|
readonly 'label': string;
|
|
224
224
|
readonly 'base': io.flow.common.v0.models.Price;
|
|
225
|
+
readonly 'breakdown'?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
|
|
225
226
|
}
|
|
226
227
|
|
|
227
228
|
interface Options {
|
|
@@ -44,6 +44,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
44
44
|
readonly 'channel_id': string;
|
|
45
45
|
readonly 'external_order_reference': string;
|
|
46
46
|
readonly 'payment_request_id'?: string;
|
|
47
|
+
readonly 'order_payment_request_ids'?: string[];
|
|
47
48
|
readonly 'order_edit_payment_request_ids'?: string[];
|
|
48
49
|
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
49
50
|
readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
@@ -298,6 +298,11 @@ declare namespace io.flow.experience.v0.models {
|
|
|
298
298
|
readonly 'targets': io.flow.experience.v0.enums.DiscountRuleSubsidyTarget[];
|
|
299
299
|
}
|
|
300
300
|
|
|
301
|
+
interface EditSummary {
|
|
302
|
+
readonly 'id': string;
|
|
303
|
+
readonly 'edited_at': string;
|
|
304
|
+
}
|
|
305
|
+
|
|
301
306
|
interface Experience {
|
|
302
307
|
readonly 'discriminator': 'experience';
|
|
303
308
|
readonly 'id': string;
|
|
@@ -588,6 +593,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
588
593
|
readonly 'local': io.flow.catalog.v0.models.Local;
|
|
589
594
|
readonly 'shipment_estimate'?: io.flow.common.v0.models.DatetimeRange;
|
|
590
595
|
readonly 'price_source'?: io.flow.common.v0.unions.PriceSource;
|
|
596
|
+
readonly 'breakdown'?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
|
|
591
597
|
}
|
|
592
598
|
|
|
593
599
|
interface LocalizedLineItemDiscount {
|
|
@@ -633,6 +639,8 @@ declare namespace io.flow.experience.v0.models {
|
|
|
633
639
|
readonly 'destination_contact_details'?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
634
640
|
readonly 'incoterm_summary'?: io.flow.experience.v0.models.IncotermSummary;
|
|
635
641
|
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
642
|
+
readonly 'edits'?: io.flow.experience.v0.models.EditSummary[];
|
|
643
|
+
readonly 'rates'?: io.flow.experience.v0.models.OrderRate[];
|
|
636
644
|
}
|
|
637
645
|
|
|
638
646
|
interface OrderAddress {
|
|
@@ -837,6 +845,12 @@ declare namespace io.flow.experience.v0.models {
|
|
|
837
845
|
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
838
846
|
}
|
|
839
847
|
|
|
848
|
+
interface OrderRate {
|
|
849
|
+
readonly 'from': string;
|
|
850
|
+
readonly 'to': string;
|
|
851
|
+
readonly 'rate': number;
|
|
852
|
+
}
|
|
853
|
+
|
|
840
854
|
interface OrderReference {
|
|
841
855
|
readonly 'discriminator': 'order_reference';
|
|
842
856
|
readonly 'id': string;
|