@flowio/api-internal-prop-types 9.24.94 → 9.24.96

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.
@@ -1,5 +1,155 @@
1
1
  import PropTypes from 'prop-types';
2
2
 
3
+ declare namespace io.flow.google.pay.v0.enums {
4
+ type AuthMethod = 'PAN_ONLY' | 'CRYPTOGRAM_3DS';
5
+ type BillingAddressFormat = 'MIN' | 'FULL';
6
+ type CardGateway = 'adyen' | 'stripe';
7
+ type CardNetwork = 'AMEX' | 'DISCOVER' | 'JCB' | 'MASTERCARD' | 'VISA';
8
+ type PaymentMethodType = 'CARD';
9
+ type TokenizationType = 'PAYMENT_GATEWAY' | 'DIRECT';
10
+ type TotalPriceStatus = 'NOT_CURRENTLY_KNOWN' | 'ESTIMATED' | 'FINAL';
11
+ }
12
+
13
+ declare namespace io.flow.google.pay.v0.models {
14
+ interface Address {
15
+ readonly 'name': string;
16
+ readonly 'postalCode': string;
17
+ readonly 'countryCode': string;
18
+ readonly 'phoneNumber': string;
19
+ readonly 'companyName': string;
20
+ readonly 'address1': string;
21
+ readonly 'address2': string;
22
+ readonly 'address3': string;
23
+ readonly 'locality': string;
24
+ readonly 'administrativeArea': string;
25
+ readonly 'sortingCode': string;
26
+ }
27
+
28
+ interface BillingAddressParameters {
29
+ readonly 'format'?: io.flow.google.pay.v0.enums.BillingAddressFormat;
30
+ readonly 'phoneNumberRequired'?: boolean;
31
+ }
32
+
33
+ interface CardAdyenTokenizationParameters {
34
+ readonly 'gateway': string;
35
+ readonly 'gatewayMerchantId': string;
36
+ }
37
+
38
+ interface CardDirectTokenizationParameters {
39
+ readonly 'protocolVersion': string;
40
+ readonly 'publicKey': string;
41
+ }
42
+
43
+ interface CardPaymentMethodDataInfo {
44
+ readonly 'cardDetails': string;
45
+ readonly 'cardNetwork': string;
46
+ readonly 'billingAddress'?: io.flow.google.pay.v0.models.Address;
47
+ }
48
+
49
+ interface CardPaymentMethodParameters {
50
+ readonly 'allowedAuthMethods': io.flow.google.pay.v0.enums.AuthMethod[];
51
+ readonly 'allowedCardNetworks': io.flow.google.pay.v0.enums.CardNetwork[];
52
+ readonly 'billingAddressRequired'?: boolean;
53
+ readonly 'billingAddressParameters'?: io.flow.google.pay.v0.models.BillingAddressParameters;
54
+ }
55
+
56
+ interface DirectPaymentMethodToken {
57
+ readonly 'discriminator': 'direct_payment_method_token';
58
+ readonly 'protocolVersion': string;
59
+ readonly 'signature': string;
60
+ readonly 'signedMessage': string;
61
+ }
62
+
63
+ interface EncryptedMessage {
64
+ readonly 'messageExpiration': string;
65
+ readonly 'messageId': string;
66
+ readonly 'paymentMethod': io.flow.google.pay.v0.models.PaymentMethod;
67
+ readonly 'paymentMethodDetails': io.flow.google.pay.v0.models.PaymentMethodDetails;
68
+ }
69
+
70
+ interface MerchantInfo {
71
+ readonly 'merchantId': string;
72
+ readonly 'merchantName'?: string;
73
+ readonly 'authJwt'?: string;
74
+ }
75
+
76
+ interface PaymentData {
77
+ readonly 'apiVersion': number;
78
+ readonly 'apiVersionMinor': number;
79
+ readonly 'paymentMethodData': io.flow.google.pay.v0.models.PaymentMethodData;
80
+ readonly 'email'?: string;
81
+ readonly 'shippingAddress'?: io.flow.google.pay.v0.models.Address;
82
+ }
83
+
84
+ interface PaymentDataRequest {
85
+ readonly 'apiVersion': number;
86
+ readonly 'apiVersionMinor': number;
87
+ readonly 'merchantInfo': io.flow.google.pay.v0.models.MerchantInfo;
88
+ readonly 'allowedPaymentMethods': io.flow.google.pay.v0.models.PaymentMethod[];
89
+ readonly 'transactionInfo': io.flow.google.pay.v0.models.TransactionInfo;
90
+ readonly 'emailRequired'?: boolean;
91
+ readonly 'shippingAddressRequired'?: boolean;
92
+ readonly 'shippingAddressParameters'?: io.flow.google.pay.v0.models.ShippingAddressParameters;
93
+ }
94
+
95
+ interface PaymentMethod {
96
+ readonly 'type': io.flow.google.pay.v0.enums.PaymentMethodType;
97
+ readonly 'parameters': io.flow.google.pay.v0.models.CardPaymentMethodParameters;
98
+ readonly 'tokenizationSpecification': io.flow.google.pay.v0.models.PaymentMethodTokenizationSpecification;
99
+ }
100
+
101
+ interface PaymentMethodData {
102
+ readonly 'type': io.flow.google.pay.v0.enums.PaymentMethodType;
103
+ readonly 'description': string;
104
+ readonly 'info': io.flow.google.pay.v0.models.CardPaymentMethodDataInfo;
105
+ readonly 'tokenizationData': io.flow.google.pay.v0.models.PaymentMethodTokenizationData;
106
+ }
107
+
108
+ interface PaymentMethodDetails {
109
+ readonly 'pan': string;
110
+ readonly 'expirationMonth': number;
111
+ readonly 'expirationYear': number;
112
+ readonly 'authMethod': io.flow.google.pay.v0.enums.AuthMethod;
113
+ readonly 'cryptogram'?: string;
114
+ readonly 'eciIndicator'?: string;
115
+ }
116
+
117
+ interface PaymentMethodTokenizationData {
118
+ readonly 'type': string;
119
+ readonly 'token'?: string;
120
+ }
121
+
122
+ interface PaymentMethodTokenizationSpecification {
123
+ readonly 'type': io.flow.google.pay.v0.enums.TokenizationType;
124
+ readonly 'parameters': any/*object*/;
125
+ }
126
+
127
+ interface ShippingAddressParameters {
128
+ readonly 'allowedCountryCodes'?: string[];
129
+ }
130
+
131
+ interface SignedMessage {
132
+ readonly 'encryptedMessage': string;
133
+ readonly 'ephemeralPublicKey': string;
134
+ readonly 'tag': string;
135
+ }
136
+
137
+ interface StripePaymentMethodToken {
138
+ readonly 'discriminator': 'stripe_payment_method_token';
139
+ readonly 'token': io.flow.stripe.v0.models.Token;
140
+ }
141
+
142
+ interface TransactionInfo {
143
+ readonly 'totalPriceStatus': io.flow.google.pay.v0.enums.TotalPriceStatus;
144
+ readonly 'totalPrice'?: string;
145
+ readonly 'currencyCode'?: string;
146
+ }
147
+ }
148
+
149
+ declare namespace io.flow.google.pay.v0.unions {
150
+ type PaymentMethodToken = (io.flow.google.pay.v0.models.DirectPaymentMethodToken | io.flow.google.pay.v0.models.StripePaymentMethodToken);
151
+ }
152
+
3
153
  declare namespace io.flow.RESERVED_WORD_return.v0.enums {
4
154
  type ReturnStatus = 'open' | 'refunded';
5
155
  type ReturnTrackingStatus = 'awaiting_customs_clearance' | 'cancel_requested' | 'canceled' | 'collection_attempt_failed' | 'customs_clearance_completed' | 'delivered_to_retailer' | 'in_transit_to_local_hub' | 'in_transit_to_retailer' | 'parcel_added_to_pallet' | 'parcel_delayed' | 'parcel_extracted_from_pallet' | 'parcel_lost' | 'parcel_processed_by_retailer' | 'parcel_under_investigation' | 'processed_by_local_hub' | 'received_at_local_hub' | 'received_by_the_carrier' | 'return_registered_online';
@@ -93,7 +243,7 @@ declare namespace io.flow.payment.gateway.v0.enums {
93
243
  type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
94
244
  type PaymentMethodDataOptionType = 'ideal_issuer_option';
95
245
  type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
96
- type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies';
246
+ type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies' | 'order_missing';
97
247
  type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
98
248
  type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
99
249
  type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact';
@@ -645,6 +795,11 @@ declare namespace io.flow.payment.gateway.v0.models {
645
795
  readonly 'review'?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
646
796
  }
647
797
 
798
+ interface PaymentRequestCancellationReasonOrderMissing {
799
+ readonly 'type': 'order_missing';
800
+ readonly 'description'?: string;
801
+ }
802
+
648
803
  interface PaymentRequestForm {
649
804
  readonly 'amount': number;
650
805
  readonly 'currency': string;
@@ -725,6 +880,7 @@ declare namespace io.flow.payment.gateway.v0.unions {
725
880
  type PaymentMethodDataOptionLogo = (io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg);
726
881
  type PaymentMethodStoredDetailsCard = (io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardSubsequent);
727
882
  type PaymentMethodSummary = (io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact);
883
+ type PaymentRequestCancellationReason = (io.flow.payment.gateway.v0.models.PaymentRequestCancellationReasonOrderMissing);
728
884
  type SdkAdyenV3AuthenticationToken = (io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken);
729
885
  }
730
886
 
@@ -830,6 +986,7 @@ declare namespace io.flow.billing.accounting.v0.models {
830
986
  readonly 'order': io.flow.billing.accounting.v0.models.OrderSummary;
831
987
  readonly 'shopper': io.flow.billing.accounting.v0.models.ShopperSummary;
832
988
  readonly 'remittance': io.flow.billing.accounting.v0.models.RemittanceResponsibility;
989
+ readonly 'payment'?: io.flow.billing.accounting.v0.models.PaymentSummary;
833
990
  readonly 'merchant': io.flow.billing.accounting.v0.models.MerchantSummary;
834
991
  readonly 'sequence_number': number;
835
992
  readonly 'posting_cutoff': string;
@@ -974,11 +1131,21 @@ declare namespace io.flow.billing.accounting.v0.models {
974
1131
  readonly 'currency': string;
975
1132
  }
976
1133
 
1134
+ interface PaymentSummary {
1135
+ readonly 'psp': number;
1136
+ readonly 'credit': number;
1137
+ readonly 'subsidized': number;
1138
+ readonly 'manual': number;
1139
+ readonly 'cod': number;
1140
+ readonly 'total': number;
1141
+ }
1142
+
977
1143
  interface PendingOrder {
978
1144
  readonly 'id': string;
979
1145
  readonly 'order': io.flow.billing.accounting.v0.models.OrderSummary;
980
1146
  readonly 'shopper': io.flow.billing.accounting.v0.models.ShopperSummary;
981
1147
  readonly 'merchant': io.flow.billing.accounting.v0.models.MerchantSummary;
1148
+ readonly 'payment'?: io.flow.billing.accounting.v0.models.PaymentSummary;
982
1149
  readonly 'remittance': io.flow.billing.accounting.v0.models.RemittanceResponsibility;
983
1150
  readonly 'sequence_number': number;
984
1151
  readonly 'posting_cutoff': string;
@@ -995,6 +1162,7 @@ declare namespace io.flow.billing.accounting.v0.models {
995
1162
  readonly 'shopper': io.flow.billing.accounting.v0.models.ShopperSummary;
996
1163
  readonly 'merchant': io.flow.billing.accounting.v0.models.MerchantSummary;
997
1164
  readonly 'remittance': io.flow.billing.accounting.v0.models.RemittanceResponsibility;
1165
+ readonly 'payment'?: io.flow.billing.accounting.v0.models.PaymentSummary;
998
1166
  readonly 'sequence_number': number;
999
1167
  readonly 'posting_cutoff': string;
1000
1168
  readonly 'trigger': io.flow.billing.accounting.v0.unions.ReturnTrigger;
@@ -1047,6 +1215,7 @@ declare namespace io.flow.billing.accounting.v0.models {
1047
1215
  readonly 'product': io.flow.billing.accounting.v0.models.ShopperLines;
1048
1216
  readonly 'fees': io.flow.billing.accounting.v0.models.ShopperFees;
1049
1217
  readonly 'freight': io.flow.billing.accounting.v0.models.ShopperFreight;
1218
+ readonly 'tips'?: number;
1050
1219
  readonly 'order_discount': number;
1051
1220
  readonly 'total': number;
1052
1221
  }
@@ -2225,6 +2394,15 @@ declare namespace io.flow.payment.v0.models {
2225
2394
  readonly 'processor': string;
2226
2395
  }
2227
2396
 
2397
+ interface PaymentProcessorTransactionDetailsApm {
2398
+ readonly 'discriminator': 'apm';
2399
+ readonly 'transaction_identifier'?: string;
2400
+ readonly 'capture_identifier'?: string;
2401
+ readonly 'method_type'?: string;
2402
+ readonly 'result_status'?: string;
2403
+ readonly 'reason_code'?: string;
2404
+ }
2405
+
2228
2406
  interface PaymentProcessorTransactionDetailsCard {
2229
2407
  readonly 'discriminator': 'card';
2230
2408
  readonly 'transaction_identifier'?: string;
@@ -2254,6 +2432,7 @@ declare namespace io.flow.payment.v0.models {
2254
2432
  interface PaypalAuthorizationDetails {
2255
2433
  readonly 'discriminator': 'paypal_authorization_details';
2256
2434
  readonly 'payment_id': string;
2435
+ readonly 'internal_payment_id'?: string;
2257
2436
  readonly 'payment_method'?: string;
2258
2437
  readonly 'payment_state'?: string;
2259
2438
  readonly 'payer_id'?: string;
@@ -2567,7 +2746,7 @@ declare namespace io.flow.payment.v0.unions {
2567
2746
  type Payment = (io.flow.payment.v0.models.PaymentPaypal | io.flow.payment.v0.models.PaymentCryptopay);
2568
2747
  type PaymentForm = (io.flow.payment.v0.models.MerchantOfRecordPaymentForm);
2569
2748
  type PaymentOrderReference = (io.flow.payment.v0.models.AuthorizationOrderReference | io.flow.payment.v0.models.PaymentPaymentRequestReference);
2570
- type PaymentProcessorTransactionDetails = (io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard);
2749
+ type PaymentProcessorTransactionDetails = (io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard | io.flow.payment.v0.models.PaymentProcessorTransactionDetailsApm);
2571
2750
  type PaymentSource = (io.flow.payment.v0.models.CardPaymentSource);
2572
2751
  type PaymentSourceForm = (io.flow.payment.v0.models.CardPaymentSourceForm);
2573
2752
  type ThreedsChallengeAction = (io.flow.payment.v0.models.ThreedsTwoChallengeRequest);
@@ -2575,645 +2754,42 @@ declare namespace io.flow.payment.v0.unions {
2575
2754
  type TransactionDetails = (io.flow.payment.v0.models.TransactionDetailsCard);
2576
2755
  }
2577
2756
 
2578
- declare namespace io.flow.google.pay.v0.enums {
2579
- type AuthMethod = 'PAN_ONLY' | 'CRYPTOGRAM_3DS';
2580
- type BillingAddressFormat = 'MIN' | 'FULL';
2581
- type CardGateway = 'adyen' | 'stripe';
2582
- type CardNetwork = 'AMEX' | 'DISCOVER' | 'JCB' | 'MASTERCARD' | 'VISA';
2583
- type PaymentMethodType = 'CARD';
2584
- type TokenizationType = 'PAYMENT_GATEWAY' | 'DIRECT';
2585
- type TotalPriceStatus = 'NOT_CURRENTLY_KNOWN' | 'ESTIMATED' | 'FINAL';
2586
- }
2587
-
2588
- declare namespace io.flow.google.pay.v0.models {
2589
- interface Address {
2590
- readonly 'name': string;
2591
- readonly 'postalCode': string;
2592
- readonly 'countryCode': string;
2593
- readonly 'phoneNumber': string;
2594
- readonly 'companyName': string;
2595
- readonly 'address1': string;
2596
- readonly 'address2': string;
2597
- readonly 'address3': string;
2598
- readonly 'locality': string;
2599
- readonly 'administrativeArea': string;
2600
- readonly 'sortingCode': string;
2601
- }
2602
-
2603
- interface BillingAddressParameters {
2604
- readonly 'format'?: io.flow.google.pay.v0.enums.BillingAddressFormat;
2605
- readonly 'phoneNumberRequired'?: boolean;
2606
- }
2607
-
2608
- interface CardAdyenTokenizationParameters {
2609
- readonly 'gateway': string;
2610
- readonly 'gatewayMerchantId': string;
2611
- }
2612
-
2613
- interface CardDirectTokenizationParameters {
2614
- readonly 'protocolVersion': string;
2615
- readonly 'publicKey': string;
2616
- }
2617
-
2618
- interface CardPaymentMethodDataInfo {
2619
- readonly 'cardDetails': string;
2620
- readonly 'cardNetwork': string;
2621
- readonly 'billingAddress'?: io.flow.google.pay.v0.models.Address;
2757
+ declare namespace io.flow.field.validation.v0.models {
2758
+ interface FieldValidationMax {
2759
+ readonly 'discriminator': 'max';
2760
+ readonly 'length': number;
2622
2761
  }
2623
2762
 
2624
- interface CardPaymentMethodParameters {
2625
- readonly 'allowedAuthMethods': io.flow.google.pay.v0.enums.AuthMethod[];
2626
- readonly 'allowedCardNetworks': io.flow.google.pay.v0.enums.CardNetwork[];
2627
- readonly 'billingAddressRequired'?: boolean;
2628
- readonly 'billingAddressParameters'?: io.flow.google.pay.v0.models.BillingAddressParameters;
2763
+ interface FieldValidationMin {
2764
+ readonly 'discriminator': 'min';
2765
+ readonly 'length': number;
2629
2766
  }
2630
2767
 
2631
- interface DirectPaymentMethodToken {
2632
- readonly 'discriminator': 'direct_payment_method_token';
2633
- readonly 'protocolVersion': string;
2634
- readonly 'signature': string;
2635
- readonly 'signedMessage': string;
2768
+ interface FieldValidationPattern {
2769
+ readonly 'discriminator': 'pattern';
2770
+ readonly 'pattern': string;
2636
2771
  }
2637
2772
 
2638
- interface EncryptedMessage {
2639
- readonly 'messageExpiration': string;
2640
- readonly 'messageId': string;
2641
- readonly 'paymentMethod': io.flow.google.pay.v0.models.PaymentMethod;
2642
- readonly 'paymentMethodDetails': io.flow.google.pay.v0.models.PaymentMethodDetails;
2773
+ interface FieldValidationRequired {
2774
+ readonly 'discriminator': 'required';
2775
+ readonly 'placeholder'?: string;
2643
2776
  }
2644
2777
 
2645
- interface MerchantInfo {
2646
- readonly 'merchantId': string;
2647
- readonly 'merchantName'?: string;
2648
- readonly 'authJwt'?: string;
2778
+ interface FieldValidationRequiredIfPresent {
2779
+ readonly 'discriminator': 'required_if_present';
2780
+ readonly 'placeholder'?: string;
2649
2781
  }
2782
+ }
2650
2783
 
2651
- interface PaymentData {
2652
- readonly 'apiVersion': number;
2653
- readonly 'apiVersionMinor': number;
2654
- readonly 'paymentMethodData': io.flow.google.pay.v0.models.PaymentMethodData;
2655
- readonly 'email'?: string;
2656
- readonly 'shippingAddress'?: io.flow.google.pay.v0.models.Address;
2657
- }
2658
-
2659
- interface PaymentDataRequest {
2660
- readonly 'apiVersion': number;
2661
- readonly 'apiVersionMinor': number;
2662
- readonly 'merchantInfo': io.flow.google.pay.v0.models.MerchantInfo;
2663
- readonly 'allowedPaymentMethods': io.flow.google.pay.v0.models.PaymentMethod[];
2664
- readonly 'transactionInfo': io.flow.google.pay.v0.models.TransactionInfo;
2665
- readonly 'emailRequired'?: boolean;
2666
- readonly 'shippingAddressRequired'?: boolean;
2667
- readonly 'shippingAddressParameters'?: io.flow.google.pay.v0.models.ShippingAddressParameters;
2668
- }
2669
-
2670
- interface PaymentMethod {
2671
- readonly 'type': io.flow.google.pay.v0.enums.PaymentMethodType;
2672
- readonly 'parameters': io.flow.google.pay.v0.models.CardPaymentMethodParameters;
2673
- readonly 'tokenizationSpecification': io.flow.google.pay.v0.models.PaymentMethodTokenizationSpecification;
2674
- }
2675
-
2676
- interface PaymentMethodData {
2677
- readonly 'type': io.flow.google.pay.v0.enums.PaymentMethodType;
2678
- readonly 'description': string;
2679
- readonly 'info': io.flow.google.pay.v0.models.CardPaymentMethodDataInfo;
2680
- readonly 'tokenizationData': io.flow.google.pay.v0.models.PaymentMethodTokenizationData;
2681
- }
2682
-
2683
- interface PaymentMethodDetails {
2684
- readonly 'pan': string;
2685
- readonly 'expirationMonth': number;
2686
- readonly 'expirationYear': number;
2687
- readonly 'authMethod': io.flow.google.pay.v0.enums.AuthMethod;
2688
- readonly 'cryptogram'?: string;
2689
- readonly 'eciIndicator'?: string;
2690
- }
2691
-
2692
- interface PaymentMethodTokenizationData {
2693
- readonly 'type': string;
2694
- readonly 'token'?: string;
2695
- }
2696
-
2697
- interface PaymentMethodTokenizationSpecification {
2698
- readonly 'type': io.flow.google.pay.v0.enums.TokenizationType;
2699
- readonly 'parameters': any/*object*/;
2700
- }
2701
-
2702
- interface ShippingAddressParameters {
2703
- readonly 'allowedCountryCodes'?: string[];
2704
- }
2705
-
2706
- interface SignedMessage {
2707
- readonly 'encryptedMessage': string;
2708
- readonly 'ephemeralPublicKey': string;
2709
- readonly 'tag': string;
2710
- }
2711
-
2712
- interface StripePaymentMethodToken {
2713
- readonly 'discriminator': 'stripe_payment_method_token';
2714
- readonly 'token': io.flow.stripe.v0.models.Token;
2715
- }
2716
-
2717
- interface TransactionInfo {
2718
- readonly 'totalPriceStatus': io.flow.google.pay.v0.enums.TotalPriceStatus;
2719
- readonly 'totalPrice'?: string;
2720
- readonly 'currencyCode'?: string;
2721
- }
2722
- }
2723
-
2724
- declare namespace io.flow.google.pay.v0.unions {
2725
- type PaymentMethodToken = (io.flow.google.pay.v0.models.DirectPaymentMethodToken | io.flow.google.pay.v0.models.StripePaymentMethodToken);
2726
- }
2727
-
2728
- declare namespace io.flow.billing.csv.v0.models {
2729
- interface AccountSummary {
2730
- readonly 'id': string;
2731
- readonly 'currency': string;
2732
- }
2733
-
2734
- interface BillingChannelCsvOrder {
2735
- readonly 'number': string;
2736
- readonly 'submitted_at': string;
2737
- readonly 'local': io.flow.billing.csv.v0.models.BillingChannelCsvOrderDetail;
2738
- readonly 'deliveries': io.flow.billing.csv.v0.models.BillingChannelCsvOrderDelivery[];
2739
- }
2740
-
2741
- interface BillingChannelCsvOrderDelivery {
2742
- readonly 'carrier': io.flow.billing.csv.v0.models.BillingCsvCarrier;
2743
- readonly 'service': io.flow.billing.csv.v0.models.BillingCsvService;
2744
- readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
2745
- readonly 'ratecard_owner': io.flow.billing.internal.v0.enums.ResponsibleParty;
2746
- readonly 'tier': io.flow.billing.csv.v0.models.BillingCsvTier;
2747
- }
2748
-
2749
- interface BillingChannelCsvOrderDetail {
2750
- readonly 'currency': string;
2751
- readonly 'freight': number;
2752
- readonly 'total': number;
2753
- readonly 'subtotal': number;
2754
- readonly 'vat': number;
2755
- readonly 'duty': number;
2756
- readonly 'discount': number;
2757
- readonly 'adjustment': number;
2758
- readonly 'insurance': number;
2759
- readonly 'shipping': number;
2760
- }
2761
-
2762
- interface BillingCsvCarrier {
2763
- readonly 'id': string;
2764
- }
2765
-
2766
- interface BillingCsvCenter {
2767
- readonly 'key': string;
2768
- }
2769
-
2770
- interface BillingCsvChannelBilledTransaction {
2771
- readonly 'id': string;
2772
- readonly 'type': string;
2773
- readonly 'net': number;
2774
- readonly 'description': string;
2775
- readonly 'account': io.flow.billing.csv.v0.models.AccountSummary;
2776
- readonly 'organization'?: io.flow.common.v0.models.OrganizationReference;
2777
- readonly 'order'?: io.flow.billing.csv.v0.models.BillingCsvOrderSummary;
2778
- }
2779
-
2780
- interface BillingCsvChannelTransaction {
2781
- readonly 'id': string;
2782
- readonly 'account': io.flow.billing.csv.v0.models.AccountSummary;
2783
- readonly 'type': string;
2784
- readonly 'description'?: string;
2785
- readonly 'organization': io.flow.common.v0.models.OrganizationReference;
2786
- readonly 'order': io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary;
2787
- readonly 'processing_transaction': io.flow.billing.csv.v0.models.BillingCsvChannelTransactionProcessingTransaction;
2788
- readonly 'spot_rate': io.flow.billing.csv.v0.models.BillingCsvExchangeRate;
2789
- readonly 'processing_transaction_base_amount_in_channel_account_currency': number;
2790
- readonly 'processing_transaction_total_fees_in_channel_account_currency': number;
2791
- readonly 'processing_fee'?: io.flow.billing.csv.v0.models.BillingCsvFee;
2792
- readonly 'fraud_fee'?: io.flow.billing.csv.v0.models.BillingCsvFee;
2793
- readonly 'mor_fee'?: io.flow.billing.csv.v0.models.BillingCsvFee;
2794
- readonly 'fx_fee'?: io.flow.billing.csv.v0.models.BillingCsvFee;
2795
- readonly 'duty_guarantee_fee'?: io.flow.billing.csv.v0.models.BillingCsvFee;
2796
- readonly 'rate_lock_fee'?: io.flow.billing.csv.v0.models.BillingCsvFee;
2797
- readonly 'transfer_fee'?: io.flow.billing.csv.v0.models.BillingCsvFee;
2798
- readonly 'total_fees': number;
2799
- readonly 'amount': number;
2800
- }
2801
-
2802
- interface BillingCsvChannelTransactionProcessingTransaction {
2803
- readonly 'id': string;
2804
- readonly 'account': io.flow.billing.csv.v0.models.AccountSummary;
2805
- readonly 'local_currency': string;
2806
- readonly 'base_amount': number;
2807
- readonly 'total_fees': number;
2808
- readonly 'payment_method': string;
2809
- }
2810
-
2811
- interface BillingCsvConsumerInvoice {
2812
- readonly 'invoice': io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceSummary;
2813
- readonly 'order': io.flow.billing.internal.v0.models.BillingOrderSummary;
2814
- readonly 'lines': io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceLineDetail[];
2815
- }
2816
-
2817
- interface BillingCsvConsumerInvoiceLine {
2818
- readonly 'invoice': io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceSummary;
2819
- readonly 'order': io.flow.billing.internal.v0.models.BillingOrderSummary;
2820
- readonly 'line': io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceLineDetail;
2821
- }
2822
-
2823
- interface BillingCsvConsumerInvoiceLineDetail {
2824
- readonly 'discriminator': string;
2825
- readonly 'item_number'?: string;
2826
- readonly 'quantity': number;
2827
- readonly 'unit_price': io.flow.common.v0.models.Price;
2828
- readonly 'unit_discount'?: io.flow.common.v0.models.Price;
2829
- readonly 'unit_tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
2830
- readonly 'unit_duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
2831
- }
2832
-
2833
- interface BillingCsvConsumerInvoiceSummary {
2834
- readonly 'id': string;
2835
- readonly 'number': string;
2836
- readonly 'date': string;
2837
- readonly 'key': string;
2838
- }
2839
-
2840
- interface BillingCsvDelivery {
2841
- readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
2842
- readonly 'carrier': io.flow.billing.csv.v0.models.BillingCsvCarrier;
2843
- readonly 'center': io.flow.billing.csv.v0.models.BillingCsvCenter;
2844
- readonly 'service': io.flow.billing.csv.v0.models.BillingCsvService;
2845
- readonly 'tier': io.flow.billing.csv.v0.models.BillingCsvTier;
2846
- readonly 'cost': io.flow.billing.csv.v0.models.BillingCsvDeliveryCostDetail;
2847
- readonly 'ratecard_owner': io.flow.billing.internal.v0.enums.ResponsibleParty;
2848
- }
2849
-
2850
- interface BillingCsvDeliveryCostDetail {
2851
- readonly 'ratecard_base_cost': number;
2852
- readonly 'ratecard_ddp_fee': number;
2853
- readonly 'ratecard_emergency_situation_surcharge': number;
2854
- readonly 'ratecard_peak_surcharge': number;
2855
- readonly 'ratecard_fuel_surcharge': number;
2856
- readonly 'ratecard_oversized_shipment_fee': number;
2857
- readonly 'ratecard_rural_shipment_fee': number;
2858
- readonly 'center_commercial_invoice_fee': number;
2859
- readonly 'center_inbound_carton_fee': number;
2860
- readonly 'center_outbound_carton_fee': number;
2861
- }
2862
-
2863
- interface BillingCsvExchangeRate {
2864
- readonly 'base_currency': string;
2865
- readonly 'local_currency': string;
2866
- readonly 'rate': number;
2867
- }
2868
-
2869
- interface BillingCsvFee {
2870
- readonly 'amount': number;
2871
- readonly 'description'?: string;
2872
- }
2873
-
2874
- interface BillingCsvGenericTransaction {
2875
- readonly 'id': string;
2876
- readonly 'posted_at'?: string;
2877
- readonly 'type': io.flow.billing.internal.v0.enums.BillingTransactionType;
2878
- readonly 'amount': number;
2879
- readonly 'description': string;
2880
- }
2881
-
2882
- interface BillingCsvLabelTransaction {
2883
- readonly 'id': string;
2884
- readonly 'type': string;
2885
- readonly 'gross': number;
2886
- readonly 'net': number;
2887
- readonly 'discounts': io.flow.billing.internal.v0.models.Discount[];
2888
- readonly 'description'?: string;
2889
- readonly 'account': io.flow.billing.csv.v0.models.AccountSummary;
2890
- readonly 'label': io.flow.billing.csv.v0.models.BillingCsvLabelTransactionBillableLabelSummary;
2891
- readonly 'organization': io.flow.common.v0.models.OrganizationReference;
2892
- readonly 'order'?: io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary;
2893
- }
2894
-
2895
- interface BillingCsvLabelTransactionBillableLabelSummary {
2896
- readonly 'id': string;
2897
- readonly 'owner'?: io.flow.fulfillment.v0.enums.RatecardOwner;
2898
- readonly 'carrier_id': string;
2899
- readonly 'carrier_tracking_number': string;
2900
- readonly 'cost': io.flow.billing.csv.v0.models.BillingCsvLabelTransactionBillableLabelSummaryCost;
2901
- readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
2902
- readonly 'trigger_method'?: io.flow.label.v0.enums.LabelTriggerMethod;
2903
- readonly 'identifiers'?: Record<string, string>;
2904
- }
2905
-
2906
- interface BillingCsvLabelTransactionBillableLabelSummaryCost {
2907
- readonly 'amount': number;
2908
- readonly 'currency': string;
2909
- readonly 'source'?: io.flow.label.v0.enums.CostEstimateSource;
2910
- }
2911
-
2912
- interface BillingCsvMerchantReference {
2913
- readonly 'id': string;
2914
- }
2915
-
2916
- interface BillingCsvOrder {
2917
- readonly 'number': string;
2918
- readonly 'primary_identifier'?: string;
2919
- readonly 'submitted_at'?: string;
2920
- readonly 'timezone': string;
2921
- readonly 'local': io.flow.billing.csv.v0.models.BillingCsvOrderDetail;
2922
- readonly 'base': io.flow.billing.csv.v0.models.BillingCsvOrderDetail;
2923
- readonly 'transaction_amount': number;
2924
- readonly 'deliveries': io.flow.billing.csv.v0.models.BillingCsvDelivery[];
2925
- readonly 'exchange_rate'?: io.flow.billing.csv.v0.models.BillingCsvExchangeRate;
2926
- }
2927
-
2928
- interface BillingCsvOrderDestination {
2929
- readonly 'city'?: string;
2930
- readonly 'province'?: string;
2931
- readonly 'postal'?: string;
2932
- readonly 'country'?: string;
2933
- }
2934
-
2935
- interface BillingCsvOrderDetail {
2936
- readonly 'currency': string;
2937
- readonly 'adjustment': number;
2938
- readonly 'subtotal': number;
2939
- readonly 'vat': number;
2940
- readonly 'duty': number;
2941
- readonly 'shipping': number;
2942
- readonly 'insurance': number;
2943
- readonly 'discount': number;
2944
- readonly 'total': number;
2945
- readonly 'freight': number;
2946
- }
2947
-
2948
- interface BillingCsvOrderSummary {
2949
- readonly 'number': string;
2950
- readonly 'identifiers': Record<string, string>;
2951
- }
2952
-
2953
- interface BillingCsvOrderTransaction {
2954
- readonly 'id': string;
2955
- readonly 'type': string;
2956
- readonly 'amount': number;
2957
- readonly 'description'?: string;
2958
- readonly 'account': io.flow.billing.csv.v0.models.AccountSummary;
2959
- readonly 'organization': io.flow.common.v0.models.OrganizationReference;
2960
- readonly 'order': io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary;
2961
- }
2962
-
2963
- interface BillingCsvOrderWithMorSummary {
2964
- readonly 'number': string;
2965
- readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
2966
- readonly 'identifiers': Record<string, string>;
2967
- }
2968
-
2969
- interface BillingCsvProcessingTransaction {
2970
- readonly 'id': string;
2971
- readonly 'reference': string;
2972
- readonly 'primary_identifier'?: string;
2973
- readonly 'parent_id'?: string;
2974
- readonly 'created_at'?: string;
2975
- readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
2976
- readonly 'posted_at'?: string;
2977
- readonly 'type': io.flow.billing.internal.v0.enums.BillingTransactionType;
2978
- readonly 'timezone': string;
2979
- readonly 'order_number'?: string;
2980
- readonly 'order_primary_identifier'?: string;
2981
- readonly 'order_identifiers'?: Record<string, string>;
2982
- readonly 'order_submitted_at'?: string;
2983
- readonly 'order'?: io.flow.billing.internal.v0.models.BillingOrderSummary;
2984
- readonly 'payment_method': string;
2985
- readonly 'local_amount': number;
2986
- readonly 'local_currency': string;
2987
- readonly 'base_amount': number;
2988
- readonly 'base_currency': string;
2989
- readonly 'processing_fee'?: number;
2990
- readonly 'processing_fee_description'?: string;
2991
- readonly 'rate_lock_fee': number;
2992
- readonly 'rate_lock_fee_description'?: string;
2993
- readonly 'vat_withholding': number;
2994
- readonly 'duty_withholding': number;
2995
- readonly 'freight_withholding'?: number;
2996
- readonly 'insurance_withholding': number;
2997
- readonly 'revenue_share'?: number;
2998
- readonly 'revenue_share_currency'?: string;
2999
- readonly 'amount': number;
3000
- readonly 'order_detail'?: io.flow.billing.csv.v0.models.BillingCsvProcessingTransactionOrderDetail;
3001
- readonly 'mor_fee'?: number;
3002
- readonly 'mor_fee_description'?: string;
3003
- readonly 'fx_fee'?: number;
3004
- readonly 'fx_fee_description'?: string;
3005
- readonly 'duty_guarantee_fee'?: number;
3006
- readonly 'duty_guarantee_fee_description'?: string;
3007
- readonly 'negative_balance_fee'?: number;
3008
- readonly 'negative_balance_fee_description'?: string;
3009
- }
3010
-
3011
- interface BillingCsvProcessingTransactionDelivery {
3012
- readonly 'delivery_option_id': string;
3013
- readonly 'ratecard_owner': io.flow.billing.internal.v0.enums.ResponsibleParty;
3014
- readonly 'service': io.flow.billing.csv.v0.models.BillingCsvService;
3015
- readonly 'center': io.flow.billing.csv.v0.models.BillingCsvCenter;
3016
- readonly 'ship_from_country': string;
3017
- readonly 'delivered_duty': string;
3018
- }
3019
-
3020
- interface BillingCsvProcessingTransactionOrderDetail {
3021
- readonly 'total': number;
3022
- readonly 'subtotal': number;
3023
- readonly 'discount': number;
3024
- readonly 'vat': number;
3025
- readonly 'duty': number;
3026
- readonly 'shipping': number;
3027
- readonly 'vat_subsidy'?: number;
3028
- readonly 'duty_subsidy'?: number;
3029
- readonly 'estimated_freight': number;
3030
- readonly 'selected_deliveries': io.flow.billing.csv.v0.models.BillingCsvProcessingTransactionDelivery[];
3031
- }
3032
-
3033
- interface BillingCsvService {
3034
- readonly 'id': string;
3035
- }
3036
-
3037
- interface BillingCsvTier {
3038
- readonly 'name': string;
3039
- }
3040
-
3041
- interface BillingCsvTransaction {
3042
- readonly 'id': string;
3043
- readonly 'type': io.flow.billing.internal.v0.enums.BillingTransactionType;
3044
- readonly 'account': io.flow.billing.csv.v0.models.BillingCsvTransactionAccount;
3045
- readonly 'metadata'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadata;
3046
- readonly 'order'?: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummary;
3047
- readonly 'currency': string;
3048
- readonly 'source': io.flow.billing.v0.enums.TransactionSource;
3049
- readonly 'parent'?: io.flow.billing.v0.models.ParentTransactionSummary;
3050
- readonly 'gross': number;
3051
- readonly 'fees': io.flow.billing.csv.v0.models.BillingCsvTransactionFees;
3052
- readonly 'withholdings': io.flow.billing.csv.v0.models.BillingCsvTransactionWithholdings;
3053
- readonly 'discount': io.flow.billing.csv.v0.models.BillingCsvTransactionDiscount;
3054
- readonly 'net': number;
3055
- readonly 'identifiers': io.flow.billing.csv.v0.models.BillingCsvTransactionIdentifiers;
3056
- readonly 'created_at': string;
3057
- readonly 'updated_at': string;
3058
- }
3059
-
3060
- interface BillingCsvTransactionAccount {
3061
- readonly 'id': string;
3062
- readonly 'merchant'?: io.flow.billing.csv.v0.models.BillingCsvMerchantReference;
3063
- readonly 'environment': io.flow.common.v0.enums.Environment;
3064
- readonly 'source': io.flow.billing.csv.v0.models.BillingCsvTransactionAccountSourceSummary;
3065
- }
3066
-
3067
- interface BillingCsvTransactionAccountSourceSummary {
3068
- readonly 'id': string;
3069
- readonly 'type': io.flow.billing.internal.v0.enums.AccountType;
3070
- }
3071
-
3072
- interface BillingCsvTransactionDiscount {
3073
- readonly 'amount': number;
3074
- readonly 'description'?: string;
3075
- }
3076
-
3077
- interface BillingCsvTransactionFees {
3078
- readonly 'duty_guarantee': number;
3079
- readonly 'mor': number;
3080
- readonly 'fraud': number;
3081
- readonly 'fx': number;
3082
- readonly 'processing': number;
3083
- readonly 'rate_lock': number;
3084
- readonly 'transfer': number;
3085
- readonly 'negative_balance': number;
3086
- }
3087
-
3088
- interface BillingCsvTransactionIdentifiers {
3089
- readonly 'reference_id'?: string;
3090
- }
3091
-
3092
- interface BillingCsvTransactionMetadata {
3093
- readonly 'channel'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataChannel;
3094
- readonly 'shipping_label'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabel;
3095
- readonly 'shipping_label_revenue_share'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabelRevenueShare;
3096
- readonly 'trueup'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
3097
- readonly 'carrier_charge'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierCharge;
3098
- readonly 'manual'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
3099
- readonly 'failed_payout'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataFailedPayout;
3100
- }
3101
-
3102
- interface BillingCsvTransactionMetadataCarrierCharge {
3103
- readonly 'reason': io.flow.trueup.v0.enums.CarrierChargeReason;
3104
- readonly 'label_created_at': string;
3105
- readonly 'carrier_id': string;
3106
- readonly 'carrier_tracking_number': string;
3107
- readonly 'revenue_share_percentage': number;
3108
- readonly 'outbound_transaction_id'?: string;
3109
- }
3110
-
3111
- interface BillingCsvTransactionMetadataChannel {
3112
- readonly 'method': string;
3113
- readonly 'card'?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
3114
- }
3115
-
3116
- interface BillingCsvTransactionMetadataFailedPayout {
3117
- readonly 'failed_payment': io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
3118
- }
3119
-
3120
- interface BillingCsvTransactionMetadataManual {
3121
- readonly 'description': string;
3122
- readonly 'original'?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
3123
- readonly 'category'?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
3124
- readonly 'url'?: string;
3125
- }
3126
-
3127
- interface BillingCsvTransactionMetadataShippingLabel {
3128
- readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
3129
- }
3130
-
3131
- interface BillingCsvTransactionMetadataShippingLabelRevenueShare {
3132
- readonly 'label_id': string;
3133
- readonly 'base_amount'?: number;
3134
- readonly 'percentage'?: number;
3135
- }
3136
-
3137
- interface BillingCsvTransactionMetadataTrueup {
3138
- readonly 'original': io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
3139
- readonly 'label_transaction_id': string;
3140
- readonly 'label_invoice_request_id': string;
3141
- readonly 'carrier_charge_id': string;
3142
- }
3143
-
3144
- interface BillingCsvTransactionOrderSummary {
3145
- readonly 'organization': io.flow.common.v0.models.OrganizationReference;
3146
- readonly 'number': string;
3147
- readonly 'identifiers': io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummaryIdentifiers;
3148
- }
3149
-
3150
- interface BillingCsvTransactionOrderSummaryIdentifiers {
3151
- readonly 'shopify_order_id'?: string;
3152
- }
3153
-
3154
- interface BillingCsvTransactionWithholdings {
3155
- readonly 'tax': number;
3156
- readonly 'duty': number;
3157
- readonly 'freight': number;
3158
- readonly 'insurance': number;
3159
- }
3160
-
3161
- interface FlowFinancePaymentSummary {
3162
- readonly 'id': string;
3163
- readonly 'status': io.flow.billing.internal.v0.enums.BankPaymentStatusCode;
3164
- readonly 'amount': number;
3165
- readonly 'bank_account_last4'?: string;
3166
- }
3167
-
3168
- interface FlowFinanceStatementSummary {
3169
- readonly 'account_id': string;
3170
- readonly 'payment'?: io.flow.billing.csv.v0.models.FlowFinancePaymentSummary;
3171
- readonly 'statement_id': string;
3172
- readonly 'settlement_currency': string;
3173
- readonly 'starting_balance': number;
3174
- readonly 'balance_forward': number;
3175
- readonly 'transactions_posted': number;
3176
- readonly 'platform_fee': number;
3177
- readonly 'account_balance': number;
3178
- readonly 'dispute_balance': number;
3179
- readonly 'one_time_adjustments': Record<string, number>;
3180
- }
3181
- }
3182
-
3183
- declare namespace io.flow.field.validation.v0.models {
3184
- interface FieldValidationMax {
3185
- readonly 'discriminator': 'max';
3186
- readonly 'length': number;
3187
- }
3188
-
3189
- interface FieldValidationMin {
3190
- readonly 'discriminator': 'min';
3191
- readonly 'length': number;
3192
- }
3193
-
3194
- interface FieldValidationPattern {
3195
- readonly 'discriminator': 'pattern';
3196
- readonly 'pattern': string;
3197
- }
3198
-
3199
- interface FieldValidationRequired {
3200
- readonly 'discriminator': 'required';
3201
- readonly 'placeholder'?: string;
3202
- }
3203
-
3204
- interface FieldValidationRequiredIfPresent {
3205
- readonly 'discriminator': 'required_if_present';
3206
- readonly 'placeholder'?: string;
3207
- }
3208
- }
3209
-
3210
- declare namespace io.flow.field.validation.v0.unions {
3211
- type FieldValidationRule = (io.flow.field.validation.v0.models.FieldValidationRequired | io.flow.field.validation.v0.models.FieldValidationRequiredIfPresent | io.flow.field.validation.v0.models.FieldValidationMin | io.flow.field.validation.v0.models.FieldValidationMax | io.flow.field.validation.v0.models.FieldValidationPattern);
3212
- }
2784
+ declare namespace io.flow.field.validation.v0.unions {
2785
+ type FieldValidationRule = (io.flow.field.validation.v0.models.FieldValidationRequired | io.flow.field.validation.v0.models.FieldValidationRequiredIfPresent | io.flow.field.validation.v0.models.FieldValidationMin | io.flow.field.validation.v0.models.FieldValidationMax | io.flow.field.validation.v0.models.FieldValidationPattern);
2786
+ }
3213
2787
 
3214
2788
  declare namespace io.flow.stripe.v0.enums {
3215
2789
  type AccountType = 'platform' | 'custom' | 'standard' | 'express';
3216
2790
  type ApplePayType = 'apple_pay' | 'apple_pay_later';
2791
+ type BankIdeal = 'abn_amro' | 'asn_bank' | 'bunq' | 'handelsbanken' | 'ing' | 'knab' | 'moneyou' | 'n26' | 'nn' | 'rabobank' | 'regiobank' | 'revolut' | 'sns_bank' | 'triodos_bank' | 'van_lanschot' | 'yoursafe';
2792
+ type BicIdeal = 'ABNANL2A' | 'ASNBNL21' | 'BITSNL2A' | 'BUNQNL2A' | 'FVLBNL22' | 'HANDNL2A' | 'INGBNL2A' | 'KNABNL2H' | 'MOYONL21' | 'NNBANL2G' | 'NTSBDEB1' | 'RABONL2U' | 'RBRBNL21' | 'REVOIE23' | 'REVOLT21' | 'SNSBNL2A' | 'TRIONL2U';
3217
2793
  type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
3218
2794
  type CaptureMethod = 'automatic' | 'manual';
3219
2795
  type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
@@ -3223,9 +2799,14 @@ declare namespace io.flow.stripe.v0.enums {
3223
2799
  type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
3224
2800
  type ConfirmationMethod = 'automatic' | 'manual';
3225
2801
  type DeclineCode = 'approve_with_id' | 'call_issuer' | 'card_not_supported' | 'card_velocity_exceeded' | 'currency_not_supported' | 'do_not_honor' | 'do_not_try_again' | 'duplicate_transaction' | 'expired_card' | 'fraudulent' | 'generic_decline' | 'incorrect_number' | 'incorrect_cvc' | 'incorrect_pin' | 'incorrect_zip' | 'insufficient_funds' | 'invalid_account' | 'invalid_amount' | 'invalid_cvc' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_number' | 'invalid_pin' | 'issuer_not_available' | 'lost_card' | 'new_account_information_available' | 'no_action_taken' | 'not_permitted' | 'pickup_card' | 'pin_try_exceeded' | 'processing_error' | 'reenter_transaction' | 'restricted_card' | 'revocation_of_all_authorizations' | 'revocation_of_authorization' | 'security_violation' | 'service_not_allowed' | 'stolen_card' | 'stop_payment_order' | 'testmode_decline' | 'transaction_not_allowed' | 'try_again_later' | 'withdrawal_count_limit_exceeded' | 'previously_declined_do_not_retry' | 'highest_risk_level' | 'requested_block_on_incorrect_cvc';
2802
+ type DisputeEventType = 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated';
2803
+ type DisputePaymentMethodDetailsCardCaseType = 'chargeback' | 'inquiry';
2804
+ type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
2805
+ type DisputeReason = 'bank_cannot_process' | 'check_returned' | 'credit_not_processed' | 'customer_initiated' | 'debit_not_authorized' | 'duplicate' | 'fraudulent' | 'general' | 'incorrect_account_details' | 'insufficient_funds' | 'product_not_received' | 'product_unacceptable' | 'subscription_canceled' | 'unrecognized';
2806
+ type DisputeStatus = 'warning_needs_response' | 'warning_under_review' | 'warning_closed' | 'needs_response' | 'under_review' | 'won' | 'lost';
3226
2807
  type ErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'country_code_invalid' | 'email_invalid' | 'postal_code_invalid' | 'invalid_characters' | 'url_invalid' | 'invalid_charge_amount' | 'incorrect_number' | 'incorrect_address' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'expired_card' | 'missing' | 'processing_error' | 'account_closed' | 'amount_too_small' | 'amount_too_large' | 'api_key_expired' | 'authentication_required' | 'capture_charge_authorization_expired' | 'capture_unauthorized_payment' | 'card_decline_rate_limit_exceeded' | 'charge_already_captured' | 'charge_already_refunded' | 'charge_disputed' | 'charge_exceeds_source_limit' | 'charge_expired_for_capture' | 'charge_invalid_parameter' | 'charge_not_refundable' | 'insufficient_funds' | 'intent_invalid_state' | 'livemode_mismatch' | 'parameter_invalid_empty' | 'parameter_invalid_integer' | 'parameter_invalid_string_blank' | 'parameter_invalid_string_empty' | 'parameter_missing' | 'parameter_unknown' | 'parameters_exclusive' | 'payment_intent_action_required' | 'payment_intent_authentication_failure' | 'payment_intent_incompatible_payment_method' | 'payment_intent_payment_attempt_expired' | 'payment_intent_payment_attempt_failed' | 'payment_intent_unexpected_state' | 'payment_intent_invalid_parameter' | 'payment_method_billing_details_address_missing' | 'payment_method_customer_decline' | 'payment_method_currency_mismatch' | 'payment_method_invalid_parameter' | 'payment_method_invalid_parameter_testmode' | 'payment_method_not_available' | 'payment_method_provider_decline' | 'payment_method_provider_timeout' | 'payment_method_unactivated' | 'payment_method_unexpected_state' | 'payment_method_unsupported_type' | 'platform_api_key_expired' | 'refund_disputed_payment' | 'testmode_charges_only' | 'tls_version_unsupported' | 'setup_attempt_failed' | 'setup_intent_authentication_failure' | 'setup_intent_invalid_parameter' | 'setup_intent_setup_attempt_expired' | 'setup_intent_unexpected_state';
3227
2808
  type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
3228
- type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
2809
+ type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
3229
2810
  type ExtendedAuthorizationStatus = 'enabled' | 'disabled';
3230
2811
  type FeatureAvailability = 'available' | 'unavailable';
3231
2812
  type KlarnaPaymentMethodCategoryType = 'direct_bank_transfer' | 'direct_debit' | 'pay_later' | 'pay_now' | 'pay_over_time';
@@ -3235,9 +2816,10 @@ declare namespace io.flow.stripe.v0.enums {
3235
2816
  type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
3236
2817
  type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
3237
2818
  type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
3238
- type PaymentMethodType = 'card' | 'card_present' | 'klarna';
2819
+ type PaymentMethodType = 'card' | 'card_present' | 'ideal' | 'klarna' | 'bancontact';
3239
2820
  type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
3240
2821
  type PaymentStatus = 'succeeded' | 'pending' | 'failed';
2822
+ type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
3241
2823
  type PreferredLocaleKlarna = 'de-AT' | 'en-AT' | 'nl-BE' | 'fr-BE' | 'en-BE' | 'de-DE' | 'en-DE' | 'da-DK' | 'en-DK' | 'es-ES' | 'en-ES' | 'fi-FI' | 'sv-FI' | 'en-FI' | 'en-GB' | 'en-IE' | 'it-IT' | 'en-IT' | 'nl-NL' | 'en-NL' | 'nb-NO' | 'en-NO' | 'sv-SE' | 'en-SE' | 'en-US' | 'es-US' | 'fr-FR' | 'en-FR' | 'cs-CZ' | 'en-CZ' | 'el-GR' | 'en-GR' | 'en-AU' | 'en-NZ' | 'en-CA' | 'fr-CA' | 'pl-PL' | 'en-PL' | 'pt-PT' | 'en-PT' | 'de-CH' | 'fr-CH' | 'it-CH' | 'en-CH';
3242
2824
  type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
3243
2825
  type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
@@ -3472,6 +3054,54 @@ declare namespace io.flow.stripe.v0.models {
3472
3054
  readonly 'description'?: string;
3473
3055
  }
3474
3056
 
3057
+ interface Dispute {
3058
+ readonly 'id': string;
3059
+ readonly 'amount': number;
3060
+ readonly 'charge': string;
3061
+ readonly 'currency': string;
3062
+ readonly 'evidence': any/*object*/;
3063
+ readonly 'metadata': Record<string, string>;
3064
+ readonly 'payment_intent'?: string;
3065
+ readonly 'reason': io.flow.stripe.v0.enums.DisputeReason;
3066
+ readonly 'status': io.flow.stripe.v0.enums.DisputeStatus;
3067
+ readonly 'object': string;
3068
+ readonly 'balance_transactions': any/*object*/[];
3069
+ readonly 'created': number;
3070
+ readonly 'evidence_details': io.flow.stripe.v0.models.DisputeEvidenceDetails;
3071
+ readonly 'is_charge_refundable': boolean;
3072
+ readonly 'livemode': boolean;
3073
+ readonly 'payment_method_details'?: io.flow.stripe.v0.models.DisputePaymentMethodDetails;
3074
+ }
3075
+
3076
+ interface DisputeEvidenceDetails {
3077
+ readonly 'due_by'?: number;
3078
+ readonly 'has_evidence': boolean;
3079
+ readonly 'past_due': boolean;
3080
+ readonly 'submission_count': number;
3081
+ }
3082
+
3083
+ interface DisputePaymentMethodDetails {
3084
+ readonly 'card'?: io.flow.stripe.v0.models.DisputePaymentMethodDetailsCard;
3085
+ readonly 'klarna'?: io.flow.stripe.v0.models.DisputePaymentMethodDetailsKlarna;
3086
+ readonly 'paypal'?: io.flow.stripe.v0.models.DisputePaymentMethodDetailsPaypal;
3087
+ readonly 'type': io.flow.stripe.v0.enums.DisputePaymentMethodDetailsType;
3088
+ }
3089
+
3090
+ interface DisputePaymentMethodDetailsCard {
3091
+ readonly 'brand': string;
3092
+ readonly 'case_type'?: io.flow.stripe.v0.enums.DisputePaymentMethodDetailsCardCaseType;
3093
+ readonly 'network_reason_code'?: string;
3094
+ }
3095
+
3096
+ interface DisputePaymentMethodDetailsKlarna {
3097
+ readonly 'reason_code'?: string;
3098
+ }
3099
+
3100
+ interface DisputePaymentMethodDetailsPaypal {
3101
+ readonly 'case_id'?: string;
3102
+ readonly 'reason_code'?: string;
3103
+ }
3104
+
3475
3105
  interface Error {
3476
3106
  readonly 'error': io.flow.stripe.v0.models.StripeError;
3477
3107
  }
@@ -3728,8 +3358,10 @@ declare namespace io.flow.stripe.v0.models {
3728
3358
  readonly 'id': string;
3729
3359
  readonly 'object': string;
3730
3360
  readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
3361
+ readonly 'bancontact'?: any/*object*/;
3731
3362
  readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
3732
3363
  readonly 'card_present'?: any/*object*/;
3364
+ readonly 'ideal'?: any/*object*/;
3733
3365
  readonly 'klarna'?: any/*object*/;
3734
3366
  readonly 'created': number;
3735
3367
  readonly 'customer'?: string;
@@ -3764,6 +3396,12 @@ declare namespace io.flow.stripe.v0.models {
3764
3396
  readonly 'cvc'?: string;
3765
3397
  }
3766
3398
 
3399
+ interface PaymentMethodDataBancontact {
3400
+ readonly 'type': 'bancontact';
3401
+ readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
3402
+ readonly 'metadata'?: any/*object*/;
3403
+ }
3404
+
3767
3405
  interface PaymentMethodDataCard {
3768
3406
  readonly 'type': 'card';
3769
3407
  readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -3771,6 +3409,13 @@ declare namespace io.flow.stripe.v0.models {
3771
3409
  readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
3772
3410
  }
3773
3411
 
3412
+ interface PaymentMethodDataIdeal {
3413
+ readonly 'type': 'ideal';
3414
+ readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
3415
+ readonly 'metadata'?: any/*object*/;
3416
+ readonly 'ideal': io.flow.stripe.v0.models.PaymentMethodIdealForm;
3417
+ }
3418
+
3774
3419
  interface PaymentMethodDataKlarna {
3775
3420
  readonly 'type': 'klarna';
3776
3421
  readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -3778,6 +3423,22 @@ declare namespace io.flow.stripe.v0.models {
3778
3423
  readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
3779
3424
  }
3780
3425
 
3426
+ interface PaymentMethodDetailsBancontact {
3427
+ readonly 'type': 'bancontact';
3428
+ readonly 'bancontact': io.flow.stripe.v0.models.PaymentMethodDetailsBancontactInformation;
3429
+ }
3430
+
3431
+ interface PaymentMethodDetailsBancontactInformation {
3432
+ readonly 'bank_code'?: string;
3433
+ readonly 'bank_name'?: string;
3434
+ readonly 'bic'?: string;
3435
+ readonly 'generated_sepa_debit'?: string;
3436
+ readonly 'generated_sepa_debit_mandate'?: string;
3437
+ readonly 'iban_last4'?: string;
3438
+ readonly 'preferred_language'?: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
3439
+ readonly 'verified_name'?: string;
3440
+ }
3441
+
3781
3442
  interface PaymentMethodDetailsCard {
3782
3443
  readonly 'type': 'card';
3783
3444
  readonly 'card': io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
@@ -3809,6 +3470,20 @@ declare namespace io.flow.stripe.v0.models {
3809
3470
  readonly 'overcapture'?: io.flow.stripe.v0.models.Overcapture;
3810
3471
  }
3811
3472
 
3473
+ interface PaymentMethodDetailsIdeal {
3474
+ readonly 'type': 'ideal';
3475
+ readonly 'ideal': io.flow.stripe.v0.models.PaymentMethodDetailsIdealInformation;
3476
+ }
3477
+
3478
+ interface PaymentMethodDetailsIdealInformation {
3479
+ readonly 'bank'?: io.flow.stripe.v0.enums.BankIdeal;
3480
+ readonly 'bic'?: io.flow.stripe.v0.enums.BicIdeal;
3481
+ readonly 'generated_sepa_debit'?: string;
3482
+ readonly 'generated_sepa_debit_mandate'?: string;
3483
+ readonly 'iban_last4'?: string;
3484
+ readonly 'verified_name'?: string;
3485
+ }
3486
+
3812
3487
  interface PaymentMethodDetailsKlarna {
3813
3488
  readonly 'type': 'klarna';
3814
3489
  readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
@@ -3819,6 +3494,13 @@ declare namespace io.flow.stripe.v0.models {
3819
3494
  readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
3820
3495
  }
3821
3496
 
3497
+ interface PaymentMethodFormBancontact {
3498
+ readonly 'type': 'bancontact';
3499
+ readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
3500
+ readonly 'metadata'?: any/*object*/;
3501
+ readonly 'bancontact': any/*object*/;
3502
+ }
3503
+
3822
3504
  interface PaymentMethodFormCard {
3823
3505
  readonly 'type': 'card';
3824
3506
  readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -3826,6 +3508,13 @@ declare namespace io.flow.stripe.v0.models {
3826
3508
  readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
3827
3509
  }
3828
3510
 
3511
+ interface PaymentMethodFormIdeal {
3512
+ readonly 'type': 'ideal';
3513
+ readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
3514
+ readonly 'metadata'?: any/*object*/;
3515
+ readonly 'ideal': io.flow.stripe.v0.models.PaymentMethodIdealForm;
3516
+ }
3517
+
3829
3518
  interface PaymentMethodFormKlarna {
3830
3519
  readonly 'type': 'klarna';
3831
3520
  readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
@@ -3833,13 +3522,27 @@ declare namespace io.flow.stripe.v0.models {
3833
3522
  readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
3834
3523
  }
3835
3524
 
3525
+ interface PaymentMethodIdealForm {
3526
+ readonly 'bank'?: string;
3527
+ }
3528
+
3836
3529
  interface PaymentMethodKlarnaForm {
3837
3530
  readonly 'dob'?: io.flow.stripe.v0.models.KlarnaDobForm;
3838
3531
  }
3839
3532
 
3840
3533
  interface PaymentMethodOptions {
3841
3534
  readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
3535
+ readonly 'ideal'?: io.flow.stripe.v0.models.PaymentMethodOptionsIdeal;
3842
3536
  readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
3537
+ readonly 'bancontact'?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontact;
3538
+ }
3539
+
3540
+ interface PaymentMethodOptionsBancontact {
3541
+ readonly 'preferred_language': io.flow.stripe.v0.enums.PreferredLanguageBancontact;
3542
+ }
3543
+
3544
+ interface PaymentMethodOptionsBancontactForm {
3545
+ readonly 'preferred_language': io.flow.stripe.v0.enums.PreferredLanguageBancontact;
3843
3546
  }
3844
3547
 
3845
3548
  interface PaymentMethodOptionsCard {
@@ -3859,7 +3562,17 @@ declare namespace io.flow.stripe.v0.models {
3859
3562
 
3860
3563
  interface PaymentMethodOptionsForm {
3861
3564
  readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
3565
+ readonly 'ideal'?: io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm;
3862
3566
  readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
3567
+ readonly 'bancontact'?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontactForm;
3568
+ }
3569
+
3570
+ interface PaymentMethodOptionsIdeal {
3571
+ readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
3572
+ }
3573
+
3574
+ interface PaymentMethodOptionsIdealForm {
3575
+ readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
3863
3576
  }
3864
3577
 
3865
3578
  interface PaymentMethodOptionsKlarna {
@@ -4074,6 +3787,24 @@ declare namespace io.flow.stripe.v0.models {
4074
3787
  readonly 'directory_server_encryption'?: any/*object*/;
4075
3788
  }
4076
3789
 
3790
+ interface StripeDisputeEvent {
3791
+ readonly 'id': string;
3792
+ readonly 'api_version'?: string;
3793
+ readonly 'data': io.flow.stripe.v0.models.StripeDisputeEventData;
3794
+ readonly 'request'?: any/*object*/;
3795
+ readonly 'type': io.flow.stripe.v0.enums.DisputeEventType;
3796
+ readonly 'object': string;
3797
+ readonly 'account'?: string;
3798
+ readonly 'created': number;
3799
+ readonly 'livemode': boolean;
3800
+ readonly 'pending_webhooks': number;
3801
+ }
3802
+
3803
+ interface StripeDisputeEventData {
3804
+ readonly 'object': io.flow.stripe.v0.models.Dispute;
3805
+ readonly 'previous_attributes'?: any/*object*/;
3806
+ }
3807
+
4077
3808
  interface StripeError {
4078
3809
  readonly 'type': io.flow.stripe.v0.enums.ErrorType;
4079
3810
  readonly 'charge'?: string;
@@ -4171,9 +3902,9 @@ declare namespace io.flow.stripe.v0.models {
4171
3902
 
4172
3903
  declare namespace io.flow.stripe.v0.unions {
4173
3904
  type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
4174
- type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna);
4175
- type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
4176
- type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna);
3905
+ type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataIdeal | io.flow.stripe.v0.models.PaymentMethodDataKlarna | io.flow.stripe.v0.models.PaymentMethodDataBancontact);
3906
+ type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsIdeal | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna | io.flow.stripe.v0.models.PaymentMethodDetailsBancontact);
3907
+ type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormIdeal | io.flow.stripe.v0.models.PaymentMethodFormKlarna | io.flow.stripe.v0.models.PaymentMethodFormBancontact);
4177
3908
  }
4178
3909
 
4179
3910
  declare namespace io.flow.customer.v0.enums {
@@ -5370,6 +5101,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
5370
5101
  type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
5371
5102
  type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
5372
5103
  type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
5104
+ type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
5373
5105
  }
5374
5106
 
5375
5107
  declare namespace io.flow.shopify.markets.internal.v0.models {
@@ -5419,6 +5151,14 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5419
5151
  readonly 'id': string;
5420
5152
  }
5421
5153
 
5154
+ interface OrderTaxAndDutyInclusivitySetting {
5155
+ readonly 'id': string;
5156
+ readonly 'organization_id': string;
5157
+ readonly 'shopify_order_id': string;
5158
+ readonly 'order_number': string;
5159
+ readonly 'tax_and_duty_inclusivity_setting': io.flow.shopify.markets.internal.v0.enums.TaxAndDutyInclusivitySetting;
5160
+ }
5161
+
5422
5162
  interface OrderValidationError {
5423
5163
  readonly 'message': string;
5424
5164
  readonly 'reason': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
@@ -5505,270 +5245,67 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
5505
5245
  readonly 'shopify_plan_name'?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
5506
5246
  }
5507
5247
 
5508
- interface ShopifyMarketsShopSummary {
5509
- readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
5510
- readonly 'channel': io.flow.common.v0.models.ChannelReference;
5511
- }
5512
-
5513
- interface ShopifyMarketsShopifyOrderMetrics {
5514
- readonly 'total_order_count': number;
5515
- }
5516
-
5517
- interface ShopifyMarketsSubsidiaryCompany {
5518
- readonly 'legal_name'?: string;
5519
- readonly 'incorporation_country'?: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsIncorporationCountry;
5520
- }
5521
-
5522
- interface ShopifyMarketsSync {
5523
- readonly 'force_resync'?: boolean;
5524
- }
5525
-
5526
- interface ShopifyMarketsWebhookRegistration {
5527
- readonly 'id': string;
5528
- readonly 'response': io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
5529
- }
5530
-
5531
- interface ShopifyOrderCancelForm {
5532
- readonly 'note'?: string;
5533
- }
5534
-
5535
- interface ShopifyOrderCancelResponse {
5536
- readonly 'shopify_order_cancellation_id': string;
5537
- readonly 'shopify_order_id': number;
5538
- readonly 'message': string;
5539
- }
5540
-
5541
- interface ShopifyOrderDestinationForm {
5542
- readonly 'destination': io.flow.common.v0.models.Address;
5543
- readonly 'order_note'?: string;
5544
- }
5545
-
5546
- interface ShopifyShopStatistics {
5547
- readonly 'id': string;
5548
- readonly 'initial_catalog_synced_at'?: string;
5549
- readonly 'catalog_sync_duration'?: number;
5550
- readonly 'catalog_products_count'?: number;
5551
- readonly 'initial_product_restrictions_synced_at'?: string;
5552
- }
5553
-
5554
- interface ThirdPartyLogisticsPartner {
5555
- readonly 'warehouse_address': io.flow.common.v0.models.BillingAddress;
5556
- readonly 'warehouse_url'?: string;
5557
- }
5558
-
5559
- interface ThirdPartyLogisticsPickUpTimeWindow {
5560
- readonly 'from': string;
5561
- readonly 'to': string;
5562
- }
5563
-
5564
- interface Webhook {
5565
- readonly 'placeholder'?: any/*json*/;
5566
- }
5567
- }
5568
-
5569
- declare namespace io.flow.consumer.invoice.v0.enums {
5570
- type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
5571
- type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
5572
- type ConsumerInvoiceDocumentType = 'pdf';
5573
- type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
5574
- }
5575
-
5576
- declare namespace io.flow.consumer.invoice.v0.models {
5577
- interface B2BCreditMemo {
5578
- readonly 'id': string;
5579
- readonly 'number': string;
5580
- readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
5581
- readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
5582
- readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
5583
- readonly 'date': string;
5584
- readonly 'key': string;
5585
- readonly 'invoice': io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
5586
- readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
5587
- readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
5588
- readonly 'attributes': Record<string, string>;
5589
- readonly 'b2b_invoice_type': io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
5590
- }
5591
-
5592
- interface B2BInvoice {
5593
- readonly 'id': string;
5594
- readonly 'number': string;
5595
- readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
5596
- readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
5597
- readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
5598
- readonly 'date': string;
5599
- readonly 'key': string;
5600
- readonly 'order': io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
5601
- readonly 'economic_title_location': io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
5602
- readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
5603
- readonly 'destination'?: io.flow.experience.v0.models.OrderAddress;
5604
- readonly 'tax': io.flow.common.v0.models.Money;
5605
- readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
5606
- readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
5607
- readonly 'attributes': Record<string, string>;
5608
- readonly 'estimated_delivery_date'?: string;
5609
- readonly 'b2b_invoice_type': io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
5610
- }
5611
-
5612
- interface B2BInvoiceReference {
5613
- readonly 'id': string;
5614
- readonly 'key': string;
5615
- readonly 'number': string;
5616
- }
5617
-
5618
- interface ConsumerInvoice {
5619
- readonly 'id': string;
5620
- readonly 'number': string;
5621
- readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
5622
- readonly 'date': string;
5623
- readonly 'key': string;
5624
- readonly 'order': io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
5625
- readonly 'entity': io.flow.common.v0.models.MerchantOfRecordEntity;
5626
- readonly 'payments': io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
5627
- readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
5628
- readonly 'destination': io.flow.experience.v0.models.OrderAddress;
5629
- readonly 'billing_address'?: io.flow.common.v0.models.BillingAddress;
5630
- readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
5631
- readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
5632
- readonly 'attributes': Record<string, string>;
5633
- readonly 'tax_registration'?: io.flow.harmonization.v0.models.TaxRegistration;
5634
- readonly 'customer_type'?: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceCustomerType;
5635
- readonly 'estimated_delivery_date'?: string;
5636
- }
5637
-
5638
- interface ConsumerInvoiceCenterReference {
5639
- readonly 'id': string;
5640
- readonly 'key': string;
5641
- readonly 'name': string;
5642
- readonly 'address': io.flow.common.v0.models.Address;
5643
- }
5644
-
5645
- interface ConsumerInvoiceDocument {
5646
- readonly 'type': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceDocumentType;
5647
- readonly 'language': string;
5648
- readonly 'url': string;
5649
- }
5650
-
5651
- interface ConsumerInvoiceForm {
5652
- readonly 'order_number': string;
5653
- readonly 'attributes'?: Record<string, string>;
5654
- }
5655
-
5656
- interface ConsumerInvoiceFormByOrder {
5657
- readonly 'attributes'?: Record<string, string>;
5658
- }
5659
-
5660
- interface ConsumerInvoiceLevy {
5661
- readonly 'rate': number;
5662
- readonly 'value': io.flow.common.v0.models.Price;
5663
- }
5664
-
5665
- interface ConsumerInvoiceLevyForm {
5666
- readonly 'rate': number;
5667
- readonly 'amount': number;
5668
- }
5669
-
5670
- interface ConsumerInvoiceLineDiscount {
5671
- readonly 'discriminator': 'discount';
5672
- readonly 'price': io.flow.common.v0.models.Price;
5673
- }
5674
-
5675
- interface ConsumerInvoiceLineDiscountForm {
5676
- readonly 'discriminator': 'discount';
5677
- readonly 'price': number;
5678
- }
5679
-
5680
- interface ConsumerInvoiceLineItem {
5681
- readonly 'discriminator': 'item';
5682
- readonly 'item': io.flow.common.v0.models.ItemReference;
5683
- readonly 'description': string;
5684
- readonly 'quantity': number;
5685
- readonly 'unit_price': io.flow.common.v0.models.Price;
5686
- readonly 'unit_discount'?: io.flow.common.v0.models.Price;
5687
- readonly 'unit_tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
5688
- readonly 'unit_duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
5248
+ interface ShopifyMarketsShopSummary {
5249
+ readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
5250
+ readonly 'channel': io.flow.common.v0.models.ChannelReference;
5689
5251
  }
5690
5252
 
5691
- interface ConsumerInvoiceLineItemForm {
5692
- readonly 'discriminator': 'item';
5693
- readonly 'item_number': string;
5694
- readonly 'quantity': number;
5695
- readonly 'unit_price': number;
5696
- readonly 'unit_discount'?: number;
5697
- readonly 'unit_tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
5698
- readonly 'unit_duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
5253
+ interface ShopifyMarketsShopifyOrderMetrics {
5254
+ readonly 'total_order_count': number;
5699
5255
  }
5700
5256
 
5701
- interface ConsumerInvoiceLineShipping {
5702
- readonly 'discriminator': 'shipping';
5703
- readonly 'price': io.flow.common.v0.models.Price;
5704
- readonly 'discount'?: io.flow.common.v0.models.Price;
5705
- readonly 'tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
5706
- readonly 'duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
5257
+ interface ShopifyMarketsSubsidiaryCompany {
5258
+ readonly 'legal_name'?: string;
5259
+ readonly 'incorporation_country'?: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsIncorporationCountry;
5707
5260
  }
5708
5261
 
5709
- interface ConsumerInvoiceLineShippingForm {
5710
- readonly 'discriminator': 'shipping';
5711
- readonly 'price': number;
5712
- readonly 'discount'?: number;
5713
- readonly 'tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
5714
- readonly 'duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
5262
+ interface ShopifyMarketsSync {
5263
+ readonly 'force_resync'?: boolean;
5715
5264
  }
5716
5265
 
5717
- interface ConsumerInvoiceOrderSummary {
5266
+ interface ShopifyMarketsWebhookRegistration {
5718
5267
  readonly 'id': string;
5719
- readonly 'number': string;
5720
- readonly 'submitted_at': string;
5268
+ readonly 'response': io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
5721
5269
  }
5722
5270
 
5723
- interface ConsumerInvoicePayment {
5724
- readonly 'date': string;
5725
- readonly 'description': string;
5726
- readonly 'value': io.flow.common.v0.models.Price;
5727
- readonly 'billing_address'?: io.flow.common.v0.models.BillingAddress;
5271
+ interface ShopifyOrderCancelForm {
5272
+ readonly 'note'?: string;
5728
5273
  }
5729
5274
 
5730
- interface ConsumerInvoiceReference {
5731
- readonly 'id': string;
5732
- readonly 'key': string;
5733
- readonly 'number': string;
5275
+ interface ShopifyOrderCancelResponse {
5276
+ readonly 'shopify_order_cancellation_id': string;
5277
+ readonly 'shopify_order_id': number;
5278
+ readonly 'message': string;
5734
5279
  }
5735
5280
 
5736
- interface CreditMemo {
5737
- readonly 'id': string;
5738
- readonly 'number'?: string;
5739
- readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
5740
- readonly 'date': string;
5741
- readonly 'key': string;
5742
- readonly 'invoice': io.flow.consumer.invoice.v0.models.ConsumerInvoiceReference;
5743
- readonly 'entity': io.flow.common.v0.models.MerchantOfRecordEntity;
5744
- readonly 'payments': io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
5745
- readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
5746
- readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
5747
- readonly 'attributes': Record<string, string>;
5748
- readonly 'tax_registration'?: io.flow.harmonization.v0.models.TaxRegistration;
5281
+ interface ShopifyOrderDestinationForm {
5282
+ readonly 'destination': io.flow.common.v0.models.Address;
5283
+ readonly 'order_note'?: string;
5749
5284
  }
5750
5285
 
5751
- interface CreditMemoForm {
5752
- readonly 'refund_id'?: string;
5753
- readonly 'refund_key'?: string;
5754
- readonly 'refund_identifier'?: string;
5755
- readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLineForm[];
5756
- readonly 'attributes'?: Record<string, string>;
5286
+ interface ShopifyShopStatistics {
5287
+ readonly 'id': string;
5288
+ readonly 'initial_catalog_synced_at'?: string;
5289
+ readonly 'catalog_sync_duration'?: number;
5290
+ readonly 'restrictions_sync_duration'?: number;
5291
+ readonly 'classifications_sync_duration'?: number;
5292
+ readonly 'catalog_products_count'?: number;
5293
+ readonly 'initial_product_restrictions_synced_at'?: string;
5757
5294
  }
5758
5295
 
5759
- interface InvoiceExport {
5760
- readonly 'id': string;
5296
+ interface ThirdPartyLogisticsPartner {
5297
+ readonly 'warehouse_address': io.flow.common.v0.models.BillingAddress;
5298
+ readonly 'warehouse_url'?: string;
5761
5299
  }
5762
5300
 
5763
- interface InvoiceExportForm {
5764
- readonly 'date_from'?: string;
5765
- readonly 'date_to'?: string;
5301
+ interface ThirdPartyLogisticsPickUpTimeWindow {
5302
+ readonly 'from': string;
5303
+ readonly 'to': string;
5766
5304
  }
5767
- }
5768
5305
 
5769
- declare namespace io.flow.consumer.invoice.v0.unions {
5770
- type ConsumerInvoiceLine = (io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping);
5771
- type ConsumerInvoiceLineForm = (io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItemForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscountForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingForm);
5306
+ interface Webhook {
5307
+ readonly 'placeholder'?: any/*json*/;
5308
+ }
5772
5309
  }
5773
5310
 
5774
5311
  declare namespace io.flow.adyen.v0.enums {
@@ -6388,6 +5925,7 @@ declare namespace io.flow.shopify.external.v0.models {
6388
5925
  readonly 'published_at'?: string;
6389
5926
  readonly 'created_at': string;
6390
5927
  readonly 'updated_at': string;
5928
+ readonly 'has_variants_that_requires_components'?: boolean;
6391
5929
  }
6392
5930
 
6393
5931
  interface ProductDelete {
@@ -7159,7 +6697,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
7159
6697
  type ShopifyOrderFulfillmentStatusType = 'fulfilled' | 'null' | 'partial';
7160
6698
  type ShopifyOrderInventoryBehaviour = 'bypass' | 'decrement_ignoring_policy' | 'decrement_obeying_policy';
7161
6699
  type ShopifyOrderKindType = 'authorization' | 'capture' | 'sale' | 'void' | 'refund';
7162
- type ShopifyOrderPaymentGatewayNames = 'flow_commerce' | 'gift_card' | 'manual' | 'shopify_payments' | 'shop_cash';
6700
+ type ShopifyOrderPaymentGatewayNames = 'flow_commerce' | 'gift_card' | 'manual' | 'shopify_payments' | 'shop_cash' | 'shopify_store_credit';
7163
6701
  type ShopifyOrderProcessingMethodType = 'checkout' | 'direct' | 'manual' | 'offsite' | 'express' | 'deferred_payment';
7164
6702
  type ShopifyOrderRestockType = 'no_restock' | 'cancel' | 'return';
7165
6703
  type ShopifyOrderStatusType = 'open' | 'closed' | 'cancelled' | 'any';
@@ -7928,7 +7466,7 @@ declare namespace io.flow.order.price.v0.models {
7928
7466
  declare namespace io.flow.channel.internal.v0.enums {
7929
7467
  type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
7930
7468
  type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
7931
- type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_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';
7469
+ type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_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';
7932
7470
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
7933
7471
  }
7934
7472
 
@@ -8594,7 +8132,7 @@ declare namespace io.flow.common.v0.unions {
8594
8132
  declare namespace io.flow.billing.reporting.v0.enums {
8595
8133
  type ReportPaymentType = 'credit' | 'debit';
8596
8134
  type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
8597
- type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants';
8135
+ type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments';
8598
8136
  type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
8599
8137
  type RevenueRecordType = 'pending' | 'sales' | 'refund';
8600
8138
  }
@@ -8607,6 +8145,7 @@ declare namespace io.flow.billing.reporting.v0.models {
8607
8145
  readonly 'subtotal': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8608
8146
  readonly 'tax': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8609
8147
  readonly 'duty': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8148
+ readonly 'tips'?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8610
8149
  readonly 'discount': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8611
8150
  readonly 'total': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8612
8151
  }
@@ -8736,11 +8275,11 @@ declare namespace io.flow.billing.reporting.v0.models {
8736
8275
  readonly 'sequence_number': number;
8737
8276
  readonly 'fulfilled_at': string;
8738
8277
  readonly 'completes_order': boolean;
8739
- readonly 'payment': io.flow.billing.reporting.v0.models.ReportingPayment;
8740
8278
  readonly 'refund'?: io.flow.billing.reporting.v0.models.ReportingRefundReference;
8741
8279
  readonly 'value': io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
8742
8280
  readonly 'dispatch_country'?: io.flow.billing.reporting.v0.models.ReportingCountry;
8743
8281
  readonly 'destination'?: io.flow.billing.reporting.v0.models.ReportingDestination;
8282
+ readonly 'payment'?: io.flow.billing.reporting.v0.models.ReportingPayment;
8744
8283
  readonly 'shipment'?: io.flow.billing.reporting.v0.models.ReportingShipment;
8745
8284
  readonly 'is': io.flow.billing.reporting.v0.models.ReportingFulfillmentIs;
8746
8285
  readonly 'has': io.flow.billing.reporting.v0.models.ReportingFulfillmentHas;
@@ -8759,6 +8298,11 @@ declare namespace io.flow.billing.reporting.v0.models {
8759
8298
  readonly 'wyol': boolean;
8760
8299
  readonly 'b2b': boolean;
8761
8300
  readonly 'domestic': boolean;
8301
+ readonly 'combined_shipment'?: boolean;
8302
+ readonly 'order_cancelled'?: boolean;
8303
+ readonly 'lvg'?: boolean;
8304
+ readonly 'tax_inclusive'?: boolean;
8305
+ readonly 'duty_inclusive'?: boolean;
8762
8306
  }
8763
8307
 
8764
8308
  interface ReportingFx {
@@ -8767,6 +8311,7 @@ declare namespace io.flow.billing.reporting.v0.models {
8767
8311
  readonly 'product': io.flow.billing.reporting.v0.models.ReportingUsd;
8768
8312
  readonly 'tax': io.flow.billing.reporting.v0.models.ReportingUsd;
8769
8313
  readonly 'duty': io.flow.billing.reporting.v0.models.ReportingUsd;
8314
+ readonly 'tips'?: io.flow.billing.reporting.v0.models.ReportingUsd;
8770
8315
  readonly 'total': io.flow.billing.reporting.v0.models.ReportingUsd;
8771
8316
  }
8772
8317
 
@@ -8784,6 +8329,7 @@ declare namespace io.flow.billing.reporting.v0.models {
8784
8329
  readonly 'processing': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8785
8330
  readonly 'rate_lock': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8786
8331
  readonly 'transfer': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8332
+ readonly 'total'?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8787
8333
  }
8788
8334
 
8789
8335
  interface ReportingMerchantSubsidies {
@@ -8791,6 +8337,7 @@ declare namespace io.flow.billing.reporting.v0.models {
8791
8337
  readonly 'tax': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8792
8338
  readonly 'duty': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8793
8339
  readonly 'ccf': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8340
+ readonly 'total'?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8794
8341
  }
8795
8342
 
8796
8343
  interface ReportingMerchantTransactions {
@@ -8799,6 +8346,8 @@ declare namespace io.flow.billing.reporting.v0.models {
8799
8346
  readonly 'tax': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8800
8347
  readonly 'duty': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8801
8348
  readonly 'freight': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8349
+ readonly 'discount'?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8350
+ readonly 'total'?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8802
8351
  }
8803
8352
 
8804
8353
  interface ReportingMonetaryValue {
@@ -8821,25 +8370,14 @@ declare namespace io.flow.billing.reporting.v0.models {
8821
8370
  }
8822
8371
 
8823
8372
  interface ReportingPayment {
8824
- readonly 'metadata'?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadata;
8825
8373
  readonly 'psp': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8826
8374
  readonly 'credit': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8375
+ readonly 'subsidized': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8376
+ readonly 'manual': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8377
+ readonly 'cod': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8827
8378
  readonly 'total': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8828
8379
  }
8829
8380
 
8830
- interface ReportingPaymentMetadata {
8831
- readonly 'gateway': io.flow.payment.internal.v0.enums.Processor;
8832
- readonly 'method': string;
8833
- readonly 'psp_reference'?: string;
8834
- readonly 'authorization'?: io.flow.billing.reporting.v0.models.ReportingAuthorizationReference;
8835
- readonly 'settlement_date': string;
8836
- readonly 'additional_authorizations'?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
8837
- }
8838
-
8839
- interface ReportingPaymentMetadataAdditionalAuthorizations {
8840
- readonly 'ids': string;
8841
- }
8842
-
8843
8381
  interface ReportingProvince {
8844
8382
  readonly 'code'?: string;
8845
8383
  readonly 'name': string;
@@ -8868,6 +8406,7 @@ declare namespace io.flow.billing.reporting.v0.models {
8868
8406
  readonly 'ccf': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8869
8407
  readonly 'emergency': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8870
8408
  readonly 'peak': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8409
+ readonly 'total'?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8871
8410
  }
8872
8411
 
8873
8412
  interface ReportingUsd {
@@ -9834,7 +9373,6 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
9834
9373
  readonly 'sequence_number': number;
9835
9374
  readonly 'fulfilled_at': string;
9836
9375
  readonly 'completes_order': boolean;
9837
- readonly 'payment': io.flow.billing.reporting.v0.models.ReportingPayment;
9838
9376
  readonly 'value': io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
9839
9377
  readonly 'dispatch_country'?: io.flow.billing.reporting.v0.models.ReportingCountry;
9840
9378
  readonly 'destination': io.flow.billing.reporting.v0.models.ReportingDestination;
@@ -9956,6 +9494,21 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
9956
9494
  readonly 'channel_organization_identifier': io.flow.shopify.markets.internal.v0.models.ChannelOrganizationIdentifier;
9957
9495
  }
9958
9496
 
9497
+ interface OrderTaxAndDutyInclusivitySettingDeleted {
9498
+ readonly 'discriminator': 'order_tax_and_duty_inclusivity_setting_deleted';
9499
+ readonly 'event_id': string;
9500
+ readonly 'timestamp': string;
9501
+ readonly 'organization': string;
9502
+ readonly 'id': string;
9503
+ }
9504
+
9505
+ interface OrderTaxAndDutyInclusivitySettingUpserted {
9506
+ readonly 'discriminator': 'order_tax_and_duty_inclusivity_setting_upserted';
9507
+ readonly 'event_id': string;
9508
+ readonly 'timestamp': string;
9509
+ readonly 'order_tax_and_duty_inclusivity_setting': io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
9510
+ }
9511
+
9959
9512
  interface ShopifyMarketsMetricsDeleted {
9960
9513
  readonly 'discriminator': 'shopify_markets_metrics_deleted';
9961
9514
  readonly 'event_id': string;
@@ -10041,7 +9594,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
10041
9594
  }
10042
9595
 
10043
9596
  declare namespace io.flow.shopify.markets.internal.event.v0.unions {
10044
- type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted);
9597
+ type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted);
10045
9598
  }
10046
9599
 
10047
9600
  declare namespace io.flow.experience.v0.enums {
@@ -13217,7 +12770,7 @@ declare namespace io.flow.item.v0.models {
13217
12770
  }
13218
12771
 
13219
12772
  declare namespace io.flow.billing.internal.v0.enums {
13220
- type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
12773
+ type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
13221
12774
  type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
13222
12775
  type AccountType = 'channel' | 'organization';
13223
12776
  type AdjustmentTransactionType = 'adjustment' | 'reversal';
@@ -14658,7 +14211,7 @@ declare namespace io.flow.billing.v0.models {
14658
14211
  readonly 'discriminator': 'channel';
14659
14212
  readonly 'method': string;
14660
14213
  readonly 'card'?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
14661
- readonly 'organization_transaction': io.flow.billing.v0.models.TransactionReference;
14214
+ readonly 'organization_transaction': io.flow.billing.v0.models.TransactionMetadataChannelOrganizationTransaction;
14662
14215
  }
14663
14216
 
14664
14217
  interface TransactionMetadataChannelCardMetadata {
@@ -14671,6 +14224,11 @@ declare namespace io.flow.billing.v0.models {
14671
14224
  readonly 'country': string;
14672
14225
  }
14673
14226
 
14227
+ interface TransactionMetadataChannelOrganizationTransaction {
14228
+ readonly 'id': string;
14229
+ readonly 'metadata': io.flow.billing.v0.models.TransactionMetadataPaymentTransaction;
14230
+ }
14231
+
14674
14232
  interface TransactionMetadataFailedPayout {
14675
14233
  readonly 'discriminator': 'failed_payout';
14676
14234
  readonly 'failed_payout': io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
@@ -16032,7 +15590,7 @@ declare namespace io.flow.checkout.v0.unions {
16032
15590
  declare namespace io.flow.organization.onboarding.state.v0.enums {
16033
15591
  type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
16034
15592
  type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
16035
- type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant' | 'application_missing';
15593
+ type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant' | 'application_missing' | 'missing_logistics_contact_info';
16036
15594
  }
16037
15595
 
16038
15596
  declare namespace io.flow.organization.onboarding.state.v0.models {
@@ -16092,6 +15650,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
16092
15650
  readonly 'onboarding_started_at'?: string;
16093
15651
  }
16094
15652
 
15653
+ interface RejectionPutForm {
15654
+ readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
15655
+ readonly 'description': string;
15656
+ }
15657
+
16095
15658
  interface SetupBlocked {
16096
15659
  readonly 'discriminator': 'setup_blocked';
16097
15660
  readonly 'reasons': io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
@@ -16438,37 +16001,229 @@ declare namespace io.flow.billing.bank.account.v0.models {
16438
16001
  readonly 'account_number': string;
16439
16002
  }
16440
16003
 
16441
- interface BankAccountInfoFra {
16442
- readonly 'discriminator': 'fra';
16443
- readonly 'swift_code': string;
16444
- readonly 'iban': string;
16004
+ interface BankAccountInfoFra {
16005
+ readonly 'discriminator': 'fra';
16006
+ readonly 'swift_code': string;
16007
+ readonly 'iban': string;
16008
+ }
16009
+
16010
+ interface BankAccountInfoGbr {
16011
+ readonly 'discriminator': 'gbr';
16012
+ readonly 'swift_code': string;
16013
+ readonly 'iban': string;
16014
+ }
16015
+
16016
+ interface BankAccountInfoIta {
16017
+ readonly 'discriminator': 'ita';
16018
+ readonly 'swift_code': string;
16019
+ readonly 'iban': string;
16020
+ }
16021
+
16022
+ interface BankAccountInfoUsa {
16023
+ readonly 'discriminator': 'usa';
16024
+ readonly 'routing_number': string;
16025
+ readonly 'account_number': string;
16026
+ }
16027
+ }
16028
+
16029
+ declare namespace io.flow.billing.bank.account.v0.unions {
16030
+ type BankAccountInfo = (io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta);
16031
+ }
16032
+
16033
+ declare namespace io.flow.experiment.internal.v0.enums {
16034
+ type ExperimentDiscriminatorKey = 'experience' | 'feature';
16035
+ type Scope = 'organization' | 'global';
16036
+ type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
16037
+ type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
16038
+ type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
16039
+ }
16040
+
16041
+ declare namespace io.flow.experiment.internal.v0.models {
16042
+ interface DailyExperimentResults {
16043
+ readonly 'id': string;
16044
+ readonly 'day': string;
16045
+ readonly 'experiment_key': string;
16046
+ readonly 'experiment_variant_key': string;
16047
+ readonly 'visitor_count': number;
16048
+ readonly 'visitors_with_transactions_count': number;
16049
+ readonly 'conversion_rate': number;
16050
+ readonly 'lower_bound': number;
16051
+ readonly 'upper_bound': number;
16052
+ readonly 'probability_of_being_best'?: number;
16053
+ readonly 'currency'?: string;
16054
+ readonly 'average_order_value'?: number;
16055
+ readonly 'revenue_generated'?: number;
16056
+ readonly 'total_order_count'?: number;
16057
+ readonly 'conversion_rate_uplift'?: number;
16058
+ readonly 'average_order_value_uplift'?: number;
16059
+ readonly 'revenue_generated_uplift'?: number;
16060
+ }
16061
+
16062
+ interface ExperienceExperiment {
16063
+ readonly 'discriminator': 'experience';
16064
+ readonly 'id': string;
16065
+ readonly 'key': string;
16066
+ readonly 'name': string;
16067
+ readonly 'description'?: string;
16068
+ readonly 'status': io.flow.experiment.internal.v0.enums.Status;
16069
+ readonly 'emails': string[];
16070
+ readonly 'started_at'?: string;
16071
+ readonly 'ended_at'?: string;
16072
+ readonly 'variants': io.flow.experiment.internal.v0.models.ExperienceVariant[];
16073
+ readonly 'transitions'?: io.flow.experiment.internal.v0.enums.Status[];
16074
+ readonly 'significance_action'?: io.flow.experiment.internal.v0.enums.SignificanceAction;
16075
+ }
16076
+
16077
+ interface ExperienceVariant {
16078
+ readonly 'discriminator': 'experience_variant';
16079
+ readonly 'experience': io.flow.experiment.internal.v0.models.ExperienceVariantSummary;
16080
+ readonly 'traffic_percentage': number;
16081
+ readonly 'experiment_results'?: io.flow.experiment.internal.v0.models.ExperimentResults;
16082
+ }
16083
+
16084
+ interface ExperienceVariantForm {
16085
+ readonly 'discriminator': 'experience';
16086
+ readonly 'key': string;
16087
+ readonly 'traffic_percentage': number;
16088
+ }
16089
+
16090
+ interface ExperienceVariantSummary {
16091
+ readonly 'key': string;
16092
+ readonly 'name'?: string;
16093
+ }
16094
+
16095
+ interface ExperimentForm {
16096
+ readonly 'name': string;
16097
+ readonly 'description'?: string;
16098
+ readonly 'emails': string[];
16099
+ readonly 'variants': io.flow.experiment.internal.v0.unions.VariantForm[];
16100
+ readonly 'significance_action'?: io.flow.experiment.internal.v0.enums.SignificanceAction;
16101
+ readonly 'session_query'?: string;
16102
+ }
16103
+
16104
+ interface ExperimentFormDefault {
16105
+ readonly 'discriminator': io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator;
16106
+ readonly 'variants'?: io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant[];
16107
+ }
16108
+
16109
+ interface ExperimentFormDefaultDiscriminator {
16110
+ readonly 'key': io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey;
16111
+ readonly 'values': io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
16112
+ }
16113
+
16114
+ interface ExperimentFormDefaultDiscriminatorValue {
16115
+ readonly 'key': string;
16116
+ readonly 'name': string;
16117
+ readonly 'scope': io.flow.experiment.internal.v0.enums.Scope;
16118
+ }
16119
+
16120
+ interface ExperimentFormDefaultVariant {
16121
+ readonly 'key': string;
16122
+ readonly 'name': string;
16123
+ readonly 'traffic_percentage'?: number;
16124
+ }
16125
+
16126
+ interface ExperimentMilestone {
16127
+ readonly 'id': string;
16128
+ readonly 'experiment': io.flow.experiment.internal.v0.models.ExperimentReference;
16129
+ readonly 'timestamp': string;
16130
+ readonly 'description': string;
16131
+ }
16132
+
16133
+ interface ExperimentMilestoneForm {
16134
+ readonly 'timestamp'?: string;
16135
+ readonly 'description': string;
16136
+ }
16137
+
16138
+ interface ExperimentReference {
16139
+ readonly 'key': string;
16140
+ }
16141
+
16142
+ interface ExperimentResults {
16143
+ readonly 'id': string;
16144
+ readonly 'experiment_key': string;
16145
+ readonly 'experiment_variant_key': string;
16146
+ readonly 'visitor_count': number;
16147
+ readonly 'visitors_with_transactions_count': number;
16148
+ readonly 'conversion_rate': number;
16149
+ readonly 'lower_bound': number;
16150
+ readonly 'upper_bound': number;
16151
+ readonly 'probability_of_being_best'?: number;
16152
+ readonly 'currency'?: string;
16153
+ readonly 'average_order_value'?: number;
16154
+ readonly 'revenue_generated'?: number;
16155
+ readonly 'total_order_count'?: number;
16156
+ readonly 'conversion_rate_uplift'?: number;
16157
+ readonly 'average_order_value_uplift'?: number;
16158
+ readonly 'revenue_generated_uplift'?: number;
16159
+ }
16160
+
16161
+ interface ExperimentResultsWithTimestamp {
16162
+ readonly 'timestamp': string;
16163
+ readonly 'results': io.flow.experiment.internal.v0.models.ExperimentResults[];
16164
+ }
16165
+
16166
+ interface ExperimentSessionQueryForm {
16167
+ readonly 'session_query'?: string;
16168
+ }
16169
+
16170
+ interface ExperimentVersion {
16171
+ readonly 'id': string;
16172
+ readonly 'timestamp': string;
16173
+ readonly 'type': io.flow.common.v0.enums.ChangeType;
16174
+ readonly 'experiment': io.flow.experiment.internal.v0.unions.Experiment;
16175
+ }
16176
+
16177
+ interface FeatureExperiment {
16178
+ readonly 'discriminator': 'feature';
16179
+ readonly 'id': string;
16180
+ readonly 'key': string;
16181
+ readonly 'name': string;
16182
+ readonly 'description'?: string;
16183
+ readonly 'status': io.flow.experiment.internal.v0.enums.Status;
16184
+ readonly 'emails': string[];
16185
+ readonly 'scope': io.flow.experiment.internal.v0.enums.Scope;
16186
+ readonly 'started_at'?: string;
16187
+ readonly 'ended_at'?: string;
16188
+ readonly 'variants': io.flow.experiment.internal.v0.models.FeatureVariant[];
16189
+ readonly 'transitions'?: io.flow.experiment.internal.v0.enums.Status[];
16190
+ readonly 'significance_action'?: io.flow.experiment.internal.v0.enums.SignificanceAction;
16191
+ readonly 'session_query'?: string;
16192
+ }
16193
+
16194
+ interface FeatureValueReference {
16195
+ readonly 'feature_key': string;
16196
+ readonly 'value': string;
16445
16197
  }
16446
16198
 
16447
- interface BankAccountInfoGbr {
16448
- readonly 'discriminator': 'gbr';
16449
- readonly 'swift_code': string;
16450
- readonly 'iban': string;
16199
+ interface FeatureVariant {
16200
+ readonly 'discriminator': 'feature_variant';
16201
+ readonly 'value': io.flow.experiment.internal.v0.models.FeatureVariantSummary;
16202
+ readonly 'traffic_percentage': number;
16203
+ readonly 'experiment_results'?: io.flow.experiment.internal.v0.models.ExperimentResults;
16451
16204
  }
16452
16205
 
16453
- interface BankAccountInfoIta {
16454
- readonly 'discriminator': 'ita';
16455
- readonly 'swift_code': string;
16456
- readonly 'iban': string;
16206
+ interface FeatureVariantForm {
16207
+ readonly 'discriminator': 'feature';
16208
+ readonly 'key': string;
16209
+ readonly 'traffic_percentage': number;
16457
16210
  }
16458
16211
 
16459
- interface BankAccountInfoUsa {
16460
- readonly 'discriminator': 'usa';
16461
- readonly 'routing_number': string;
16462
- readonly 'account_number': string;
16212
+ interface FeatureVariantSummary {
16213
+ readonly 'key': string;
16214
+ readonly 'feature_value': io.flow.experiment.internal.v0.models.FeatureValueReference;
16215
+ readonly 'name'?: string;
16463
16216
  }
16464
16217
  }
16465
16218
 
16466
- declare namespace io.flow.billing.bank.account.v0.unions {
16467
- type BankAccountInfo = (io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta);
16219
+ declare namespace io.flow.experiment.internal.v0.unions {
16220
+ type Experiment = (io.flow.experiment.internal.v0.models.ExperienceExperiment | io.flow.experiment.internal.v0.models.FeatureExperiment);
16221
+ type Variant = (io.flow.experiment.internal.v0.models.ExperienceVariant | io.flow.experiment.internal.v0.models.FeatureVariant);
16222
+ type VariantForm = (io.flow.experiment.internal.v0.models.ExperienceVariantForm | io.flow.experiment.internal.v0.models.FeatureVariantForm);
16468
16223
  }
16469
16224
 
16470
16225
  declare namespace io.flow.internal.v0.enums {
16471
- type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
16226
+ type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
16472
16227
  type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
16473
16228
  type AccountType = 'channel' | 'organization';
16474
16229
  type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
@@ -16480,7 +16235,7 @@ declare namespace io.flow.internal.v0.enums {
16480
16235
  type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
16481
16236
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
16482
16237
  type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
16483
- type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction';
16238
+ type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction';
16484
16239
  type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
16485
16240
  type BillingTransactionStatus = 'pending_proof' | 'posted';
16486
16241
  type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
@@ -16495,7 +16250,7 @@ declare namespace io.flow.internal.v0.enums {
16495
16250
  type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
16496
16251
  type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
16497
16252
  type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
16498
- type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_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';
16253
+ type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_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';
16499
16254
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
16500
16255
  type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
16501
16256
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
@@ -16515,6 +16270,7 @@ declare namespace io.flow.internal.v0.enums {
16515
16270
  type ClassificationType = 'None' | 'Manual' | 'ML';
16516
16271
  type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
16517
16272
  type ColmItemType = 'physical' | 'digital';
16273
+ type Company = 'globale' | 'flow';
16518
16274
  type ComplianceType = 'weee';
16519
16275
  type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
16520
16276
  type ContentStatus = 'draft' | 'live' | 'archived';
@@ -16544,11 +16300,10 @@ declare namespace io.flow.internal.v0.enums {
16544
16300
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
16545
16301
  type EmptyAttribute = 'irrelevant';
16546
16302
  type ErpFileType = 'vendor';
16547
- type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
16303
+ type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
16548
16304
  type ExperienceImportType = 'experience_with_settings';
16549
16305
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
16550
16306
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
16551
- type ExperimentDiscriminatorKey = 'experience' | 'feature';
16552
16307
  type ExportContentType = 'item' | 'price_book_item';
16553
16308
  type FeatureScope = 'global' | 'organization';
16554
16309
  type FeatureStatus = 'draft' | 'active' | 'archived';
@@ -16563,6 +16318,8 @@ declare namespace io.flow.internal.v0.enums {
16563
16318
  type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
16564
16319
  type FtpProtocol = 'sftp' | 'ftp';
16565
16320
  type GoogleAnalyticsPlugin = 'ec';
16321
+ type HarinathItemType = 'digital' | 'physical';
16322
+ type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
16566
16323
  type HttpMethod = 'get' | 'post';
16567
16324
  type InventoryCheckService = 'sfcc' | 'gymboree';
16568
16325
  type InventoryReservation = 'synchronous-on-submit';
@@ -16572,6 +16329,7 @@ declare namespace io.flow.internal.v0.enums {
16572
16329
  type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
16573
16330
  type ItemType = 'standard' | 'multi_product';
16574
16331
  type KeywordType = 'positive' | 'negative';
16332
+ type KonstantinItemType = 'physical' | 'digital';
16575
16333
  type LabelBillingStrategy = 'quote' | 'carrier';
16576
16334
  type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
16577
16335
  type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
@@ -16579,6 +16337,7 @@ declare namespace io.flow.internal.v0.enums {
16579
16337
  type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
16580
16338
  type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
16581
16339
  type LogisticsCapability = 'logistics_address_correction';
16340
+ type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
16582
16341
  type ManualReviewRuleStatus = 'active' | 'archived';
16583
16342
  type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure';
16584
16343
  type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
@@ -16592,6 +16351,8 @@ declare namespace io.flow.internal.v0.enums {
16592
16351
  type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
16593
16352
  type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
16594
16353
  type MatiasItemType = 'physical' | 'digital';
16354
+ type MichaelyanItemType = 'physical' | 'digital';
16355
+ type MiljenkoItemType = 'physical' | 'digital';
16595
16356
  type MixedBagWeight = '0' | '1' | '2';
16596
16357
  type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
16597
16358
  type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
@@ -16600,7 +16361,7 @@ declare namespace io.flow.internal.v0.enums {
16600
16361
  type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'category_constraints' | 'miscellaneous';
16601
16362
  type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
16602
16363
  type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
16603
- type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
16364
+ type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_reject' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
16604
16365
  type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
16605
16366
  type OrderAddressValidationStatus = 'success' | 'failed';
16606
16367
  type OrderAttributeIntent = 'discount_code';
@@ -16642,7 +16403,7 @@ declare namespace io.flow.internal.v0.enums {
16642
16403
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
16643
16404
  type ReportPaymentType = 'credit' | 'debit';
16644
16405
  type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
16645
- type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants';
16406
+ type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments';
16646
16407
  type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
16647
16408
  type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
16648
16409
  type ResponsibleParty = 'flow' | 'organization';
@@ -16652,7 +16413,6 @@ declare namespace io.flow.internal.v0.enums {
16652
16413
  type RevenueRecordType = 'pending' | 'sales' | 'refund';
16653
16414
  type RiskCheck = 'three_d_secure';
16654
16415
  type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
16655
- type Scope = 'organization' | 'global';
16656
16416
  type SerialReservationError = 'duration_too_long' | 'items_not_found' | 'reservation_expired';
16657
16417
  type ServiceName = 'catalog' | 'demandware' | 'metric';
16658
16418
  type SessionCountryStatus = 'enabled' | 'disabled';
@@ -16670,24 +16430,23 @@ declare namespace io.flow.internal.v0.enums {
16670
16430
  type ShopifyPromotionStatus = 'active' | 'inactive';
16671
16431
  type ShopifyService = 'payment' | 'duty_tax_calculator';
16672
16432
  type ShrutiDemoType = 'digital' | 'physical';
16673
- type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
16674
16433
  type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
16675
16434
  type SnoozeNextActionWith = 'customer_service' | 'engineering';
16676
16435
  type SnoozeSourceType = 'task' | 'invariant';
16677
16436
  type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
16678
16437
  type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
16679
16438
  type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
16680
- type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
16681
16439
  type SubscriptionFrequency = 'yearly' | 'monthly';
16682
16440
  type SuggestionAction = 'accept' | 'validate' | 'review';
16683
16441
  type SvitlanaType = 'physical' | 'digital';
16684
16442
  type TamItemType = 'physical' | 'digital';
16685
16443
  type TariffEligibilityType = 'rex';
16686
16444
  type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
16445
+ type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
16687
16446
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
16688
16447
  type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
16689
16448
  type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
16690
- type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
16449
+ type ThiagoItemType = 'digital' | 'physical';
16691
16450
  type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
16692
16451
  type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
16693
16452
  type TransactionPostingMethod = 'time' | 'proof';
@@ -17491,17 +17250,6 @@ declare namespace io.flow.internal.v0.models {
17491
17250
  readonly 'action'?: io.flow.internal.v0.enums.RestrictionStatus;
17492
17251
  }
17493
17252
 
17494
- interface Backfill {
17495
- readonly 'days_to_backfill': string[];
17496
- }
17497
-
17498
- interface BackfillForm {
17499
- readonly 'start_date': string;
17500
- readonly 'end_date': string;
17501
- readonly 'organization_id'?: string;
17502
- readonly 'experiment_key'?: string;
17503
- }
17504
-
17505
17253
  interface BankAccountReference {
17506
17254
  readonly 'id': string;
17507
17255
  }
@@ -17622,7 +17370,7 @@ declare namespace io.flow.internal.v0.models {
17622
17370
  readonly 'discriminator': 'billing_csv_transaction_upserted';
17623
17371
  readonly 'event_id': string;
17624
17372
  readonly 'timestamp': string;
17625
- readonly 'transaction': io.flow.billing.csv.v0.models.BillingCsvTransaction;
17373
+ readonly 'transaction': io.flow.internal.v0.models.CsvTransaction;
17626
17374
  }
17627
17375
 
17628
17376
  interface BillingInvoiceSummary {
@@ -19059,28 +18807,38 @@ declare namespace io.flow.internal.v0.models {
19059
18807
  }
19060
18808
 
19061
18809
  interface ClassificationProductRequest {
19062
- readonly 'merchant_id': string;
19063
- readonly 'product_name': string;
19064
- readonly 'product_description': string;
19065
- readonly 'product_id_internal': string;
19066
- readonly 'product_id_external': string;
19067
- readonly 'product_group_code'?: string;
19068
- readonly 'product_url'?: string;
19069
- readonly 'product_image'?: string;
19070
- readonly 'product_attributes': Record<string, string>;
19071
- readonly 'categories'?: string[];
19072
- readonly 'platform_id': io.flow.internal.v0.enums.ClassificationPlatform;
18810
+ readonly 'MerchantId': string;
18811
+ readonly 'ProductName': string;
18812
+ readonly 'ProductDescription': string;
18813
+ readonly 'ProductIdInternal': string;
18814
+ readonly 'ProductIdExternal': string;
18815
+ readonly 'ProductGroupCode'?: string;
18816
+ readonly 'ProductUrl'?: string;
18817
+ readonly 'ProductImage'?: string;
18818
+ readonly 'ProductAttributes': Record<string, string>;
18819
+ readonly 'Categories'?: string[];
18820
+ readonly 'PlatformId': io.flow.internal.v0.enums.ClassificationPlatform;
18821
+ }
18822
+
18823
+ interface ClassificationProductRequestEnvelope {
18824
+ readonly 'messageType': string[];
18825
+ readonly 'message': io.flow.internal.v0.models.ClassificationProductRequest;
19073
18826
  }
19074
18827
 
19075
18828
  interface ClassificationProductResult {
19076
- readonly 'product_id': string;
19077
- readonly 'merchant_id': string;
19078
- readonly 'platform_id': io.flow.internal.v0.enums.ClassificationPlatform;
19079
- readonly 'hs_code'?: string;
18829
+ readonly 'productId': string;
18830
+ readonly 'merchantId': string;
18831
+ readonly 'platformId': io.flow.internal.v0.enums.ClassificationPlatform;
18832
+ readonly 'hsCode'?: string;
19080
18833
  readonly 'probability'?: number;
19081
- readonly 'classification_decision': io.flow.internal.v0.enums.ClassificationDecision;
19082
- readonly 'classification_type': io.flow.internal.v0.enums.ClassificationType;
19083
- readonly 'clothing_age_classification': io.flow.internal.v0.enums.ClothingAgeClassification;
18834
+ readonly 'classificationDecision': io.flow.internal.v0.enums.ClassificationDecision;
18835
+ readonly 'classificationType': io.flow.internal.v0.enums.ClassificationType;
18836
+ readonly 'clothingAgeClassification'?: io.flow.internal.v0.enums.ClothingAgeClassification;
18837
+ }
18838
+
18839
+ interface ClassificationProductResultEnvelope {
18840
+ readonly 'messageType': string[];
18841
+ readonly 'message': io.flow.internal.v0.models.ClassificationProductResult;
19084
18842
  }
19085
18843
 
19086
18844
  interface ClassificationProductSummary {
@@ -19408,6 +19166,25 @@ declare namespace io.flow.internal.v0.models {
19408
19166
  readonly 'signature_secret': string;
19409
19167
  }
19410
19168
 
19169
+ interface CsvTransaction {
19170
+ readonly 'id': string;
19171
+ readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
19172
+ readonly 'account': io.flow.internal.v0.models.OtherRecordAccount;
19173
+ readonly 'metadata'?: io.flow.internal.v0.models.OtherRecordMetadata;
19174
+ readonly 'order'?: io.flow.internal.v0.models.OtherRecordOrderSummary;
19175
+ readonly 'currency': string;
19176
+ readonly 'source': io.flow.billing.v0.enums.TransactionSource;
19177
+ readonly 'parent'?: io.flow.billing.v0.models.ParentTransactionSummary;
19178
+ readonly 'gross': number;
19179
+ readonly 'fees': io.flow.internal.v0.models.OtherRecordFees;
19180
+ readonly 'withholdings': io.flow.internal.v0.models.OtherRecordWithholdings;
19181
+ readonly 'discount': io.flow.internal.v0.models.OtherRecordDiscount;
19182
+ readonly 'net': number;
19183
+ readonly 'identifiers': io.flow.internal.v0.models.OtherRecordIdentifiers;
19184
+ readonly 'created_at': string;
19185
+ readonly 'updated_at': string;
19186
+ }
19187
+
19411
19188
  interface CurrencyInternalRate {
19412
19189
  readonly 'id': string;
19413
19190
  readonly 'organization_id': string;
@@ -19513,53 +19290,6 @@ declare namespace io.flow.internal.v0.models {
19513
19290
  readonly 'construction'?: io.flow.internal.v0.models.CustomsProductAttributeLabel;
19514
19291
  }
19515
19292
 
19516
- interface DailyExperimentEngineResults {
19517
- readonly 'day': string;
19518
- readonly 'organization_id': string;
19519
- readonly 'experiment_key': string;
19520
- readonly 'experiment_variant_key': string;
19521
- readonly 'distinct_visitors_count': number;
19522
- readonly 'visitors_with_transactions_count': number;
19523
- readonly 'total_visitors_count': number;
19524
- readonly 'total_revenue': number;
19525
- }
19526
-
19527
- interface DailyExperimentResults {
19528
- readonly 'id': string;
19529
- readonly 'day': string;
19530
- readonly 'experiment_key': string;
19531
- readonly 'experiment_variant_key': string;
19532
- readonly 'visitor_count': number;
19533
- readonly 'visitors_with_transactions_count': number;
19534
- readonly 'conversion_rate': number;
19535
- readonly 'lower_bound': number;
19536
- readonly 'upper_bound': number;
19537
- readonly 'probability_of_being_best'?: number;
19538
- readonly 'currency'?: string;
19539
- readonly 'average_order_value'?: number;
19540
- readonly 'revenue_generated'?: number;
19541
- readonly 'total_order_count'?: number;
19542
- readonly 'conversion_rate_uplift'?: number;
19543
- readonly 'average_order_value_uplift'?: number;
19544
- readonly 'revenue_generated_uplift'?: number;
19545
- }
19546
-
19547
- interface DailyExperimentResultsDeleted {
19548
- readonly 'discriminator': 'daily_experiment_results_deleted';
19549
- readonly 'event_id': string;
19550
- readonly 'timestamp': string;
19551
- readonly 'organization_id': string;
19552
- readonly 'daily_experiment_results': io.flow.internal.v0.models.DailyExperimentResults;
19553
- }
19554
-
19555
- interface DailyExperimentResultsUpserted {
19556
- readonly 'discriminator': 'daily_experiment_results_upserted';
19557
- readonly 'event_id': string;
19558
- readonly 'timestamp': string;
19559
- readonly 'organization_id': string;
19560
- readonly 'daily_experiment_results': io.flow.internal.v0.models.DailyExperimentResults;
19561
- }
19562
-
19563
19293
  interface DailyValue {
19564
19294
  readonly 'id': string;
19565
19295
  readonly 'key': io.flow.internal.v0.enums.BillingMetricKey;
@@ -20269,6 +19999,7 @@ declare namespace io.flow.internal.v0.models {
20269
19999
  }
20270
20000
 
20271
20001
  interface ErpPriorityVendorForm {
20002
+ readonly 'company'?: io.flow.internal.v0.enums.Company;
20272
20003
  readonly 'acc_des'?: string;
20273
20004
  readonly 'tax_code'?: string;
20274
20005
  readonly 'tax_code_2'?: string;
@@ -20284,292 +20015,118 @@ declare namespace io.flow.internal.v0.models {
20284
20015
  readonly 'address'?: string;
20285
20016
  readonly 'address_a'?: string;
20286
20017
  readonly 'address_2'?: string;
20287
- readonly 'address_3'?: string;
20288
- readonly 'state_name'?: string;
20289
- readonly 'code'?: string;
20290
- readonly 'zip'?: string;
20291
- readonly 'pay_account'?: string;
20292
- readonly 'comp_num'?: string;
20293
- readonly 'w_tax_num'?: string;
20294
- readonly 'vat_num'?: string;
20295
- readonly 'orig_acc_name'?: string;
20296
- readonly 'branch'?: string;
20297
- readonly 'form_1099_code'?: string;
20298
- readonly 'trial_bal_code'?: string;
20299
- readonly 'sec_name'?: string;
20300
- readonly 'state'?: string;
20301
- readonly 'state_a'?: string;
20302
- readonly 'fax'?: string;
20303
- readonly 'details'?: string;
20304
- readonly 'bank_code'?: string;
20305
- readonly 'state_code'?: string;
20306
- readonly 'tax_office_code'?: string;
20307
- readonly 'pay_code'?: string;
20308
- readonly 'eacc_des'?: string;
20309
- readonly 'acng_des'?: string;
20310
- readonly 'branch_des'?: string;
20311
- readonly 'debit_entry_code'?: string;
20312
- readonly 'credit_entry_code'?: string;
20313
- }
20314
-
20315
- interface ErpVendor {
20316
- readonly 'placeholder'?: string;
20317
- }
20318
-
20319
- interface ErpVendorStatus {
20320
- readonly 'entities': io.flow.internal.v0.models.ErpVendorStatusEntity[];
20321
- readonly 'latest_flow_file'?: io.flow.internal.v0.models.ErpVendorStatusFlowFile;
20322
- readonly 'latest_priority_file'?: io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
20323
- }
20324
-
20325
- interface ErpVendorStatusEntity {
20326
- readonly 'entity': io.flow.internal.v0.models.EntityReference;
20327
- readonly 'number_differences': number;
20328
- }
20329
-
20330
- interface ErpVendorStatusFlowFile {
20331
- readonly 'url': string;
20332
- readonly 'created_at': string;
20333
- }
20334
-
20335
- interface ErpVendorStatusPriorityFile {
20336
- readonly 'name': string;
20337
- readonly 'url': string;
20338
- readonly 'created_at': string;
20339
- readonly 'errors'?: string[];
20340
- readonly 'processed_at'?: string;
20341
- }
20342
-
20343
- interface ExclusionRuleDeleted {
20344
- readonly 'discriminator': 'exclusion_rule_deleted';
20345
- readonly 'event_id': string;
20346
- readonly 'timestamp': string;
20347
- readonly 'organization': string;
20348
- readonly 'exclusion_rule': io.flow.catalog.exclusion.v0.models.ExclusionRule;
20349
- }
20350
-
20351
- interface ExclusionRuleExportRequest {
20352
- readonly 'discriminator': 'exclusion_rule_export_request';
20353
- readonly 'event_id': string;
20354
- readonly 'timestamp': string;
20355
- readonly 'organization': string;
20356
- readonly 'internal_exclusion_rule_form': io.flow.internal.v0.models.InternalExclusionRuleForm;
20357
- }
20358
-
20359
- interface ExclusionRuleUpserted {
20360
- readonly 'discriminator': 'exclusion_rule_upserted';
20361
- readonly 'event_id': string;
20362
- readonly 'timestamp': string;
20363
- readonly 'organization': string;
20364
- readonly 'exclusion_rule': io.flow.catalog.exclusion.v0.models.ExclusionRule;
20365
- }
20366
-
20367
- interface ExpectedOrderSummary {
20368
- readonly 'total'?: io.flow.common.v0.models.Money;
20369
- }
20370
-
20371
- interface ExperienceExperiment {
20372
- readonly 'discriminator': 'experience';
20373
- readonly 'id': string;
20374
- readonly 'key': string;
20375
- readonly 'name': string;
20376
- readonly 'description'?: string;
20377
- readonly 'status': io.flow.internal.v0.enums.Status;
20378
- readonly 'emails': string[];
20379
- readonly 'started_at'?: string;
20380
- readonly 'ended_at'?: string;
20381
- readonly 'variants': io.flow.internal.v0.models.ExperienceVariant[];
20382
- readonly 'transitions'?: io.flow.internal.v0.enums.Status[];
20383
- readonly 'significance_action'?: io.flow.internal.v0.enums.SignificanceAction;
20384
- }
20385
-
20386
- interface ExperienceExportRequest {
20387
- readonly 'discriminator': 'experience_export_request';
20388
- readonly 'event_id': string;
20389
- readonly 'timestamp': string;
20390
- readonly 'organization': string;
20391
- readonly 'ids'?: string[];
20392
- readonly 'keys'?: string[];
20393
- readonly 'export_id': string;
20394
- }
20395
-
20396
- interface ExperienceImportRequest {
20397
- readonly 'discriminator': 'experience_import_request';
20398
- readonly 'event_id': string;
20399
- readonly 'timestamp': string;
20400
- readonly 'organization': string;
20401
- readonly 'import_id': string;
20402
- readonly 'type': io.flow.internal.v0.enums.ExperienceImportType;
20403
- readonly 'source_url': string;
20404
- readonly 'filename'?: string;
20405
- }
20406
-
20407
- interface ExperienceOrderActionRule {
20408
- readonly 'trigger': io.flow.internal.v0.enums.ExperienceOrderActionTrigger;
20409
- readonly 'actions': io.flow.internal.v0.enums.ExperienceOrderAction[];
20410
- }
20411
-
20412
- interface ExperienceSessionReference {
20413
- readonly 'id': string;
20414
- }
20415
-
20416
- interface ExperienceVariant {
20417
- readonly 'discriminator': 'experience_variant';
20418
- readonly 'experience': io.flow.internal.v0.models.ExperienceVariantSummary;
20419
- readonly 'traffic_percentage': number;
20420
- readonly 'experiment_results'?: io.flow.internal.v0.models.ExperimentResults;
20421
- }
20422
-
20423
- interface ExperienceVariantForm {
20424
- readonly 'discriminator': 'experience';
20425
- readonly 'key': string;
20426
- readonly 'traffic_percentage': number;
20427
- }
20428
-
20429
- interface ExperienceVariantSummary {
20430
- readonly 'key': string;
20431
- readonly 'name'?: string;
20432
- }
20433
-
20434
- interface ExperimentDeleted {
20435
- readonly 'discriminator': 'experiment_deleted';
20436
- readonly 'event_id': string;
20437
- readonly 'timestamp': string;
20438
- readonly 'organization_id': string;
20439
- readonly 'id': string;
20440
- }
20441
-
20442
- interface ExperimentEngineResults {
20443
- readonly 'organization_id': string;
20444
- readonly 'experiment_key': string;
20445
- readonly 'experiment_variant_key': string;
20446
- readonly 'distinct_visitors_count': number;
20447
- readonly 'visitors_with_transactions_count': number;
20448
- readonly 'total_visitors_count': number;
20449
- readonly 'total_revenue': number;
20450
- readonly 'day'?: string;
20018
+ readonly 'address_3'?: string;
20019
+ readonly 'state_name'?: string;
20020
+ readonly 'code'?: string;
20021
+ readonly 'zip'?: string;
20022
+ readonly 'pay_account'?: string;
20023
+ readonly 'comp_num'?: string;
20024
+ readonly 'w_tax_num'?: string;
20025
+ readonly 'vat_num'?: string;
20026
+ readonly 'orig_acc_name'?: string;
20027
+ readonly 'branch'?: string;
20028
+ readonly 'form_1099_code'?: string;
20029
+ readonly 'trial_bal_code'?: string;
20030
+ readonly 'sec_name'?: string;
20031
+ readonly 'state'?: string;
20032
+ readonly 'state_a'?: string;
20033
+ readonly 'fax'?: string;
20034
+ readonly 'details'?: string;
20035
+ readonly 'bank_code'?: string;
20036
+ readonly 'state_code'?: string;
20037
+ readonly 'tax_office_code'?: string;
20038
+ readonly 'pay_code'?: string;
20039
+ readonly 'eacc_des'?: string;
20040
+ readonly 'acng_des'?: string;
20041
+ readonly 'branch_des'?: string;
20042
+ readonly 'debit_entry_code'?: string;
20043
+ readonly 'credit_entry_code'?: string;
20451
20044
  }
20452
20045
 
20453
- interface ExperimentForm {
20454
- readonly 'name': string;
20455
- readonly 'description'?: string;
20456
- readonly 'emails': string[];
20457
- readonly 'variants': io.flow.internal.v0.unions.VariantForm[];
20458
- readonly 'significance_action'?: io.flow.internal.v0.enums.SignificanceAction;
20459
- readonly 'session_query'?: string;
20046
+ interface ErpVendor {
20047
+ readonly 'placeholder'?: string;
20460
20048
  }
20461
20049
 
20462
- interface ExperimentFormDefault {
20463
- readonly 'discriminator': io.flow.internal.v0.models.ExperimentFormDefaultDiscriminator;
20464
- readonly 'variants'?: io.flow.internal.v0.models.ExperimentFormDefaultVariant[];
20050
+ interface ErpVendorStatus {
20051
+ readonly 'entities': io.flow.internal.v0.models.ErpVendorStatusEntity[];
20052
+ readonly 'latest_flow_file'?: io.flow.internal.v0.models.ErpVendorStatusFlowFile;
20053
+ readonly 'latest_priority_file'?: io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
20465
20054
  }
20466
20055
 
20467
- interface ExperimentFormDefaultDiscriminator {
20468
- readonly 'key': io.flow.internal.v0.enums.ExperimentDiscriminatorKey;
20469
- readonly 'values': io.flow.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
20056
+ interface ErpVendorStatusEntity {
20057
+ readonly 'entity': io.flow.internal.v0.models.EntityReference;
20058
+ readonly 'number_differences': number;
20470
20059
  }
20471
20060
 
20472
- interface ExperimentFormDefaultDiscriminatorValue {
20473
- readonly 'key': string;
20474
- readonly 'name': string;
20475
- readonly 'scope': io.flow.internal.v0.enums.Scope;
20061
+ interface ErpVendorStatusFlowFile {
20062
+ readonly 'url': string;
20063
+ readonly 'created_at': string;
20476
20064
  }
20477
20065
 
20478
- interface ExperimentFormDefaultVariant {
20479
- readonly 'key': string;
20066
+ interface ErpVendorStatusPriorityFile {
20480
20067
  readonly 'name': string;
20481
- readonly 'traffic_percentage'?: number;
20068
+ readonly 'url': string;
20069
+ readonly 'created_at': string;
20070
+ readonly 'errors'?: string[];
20071
+ readonly 'processed_at'?: string;
20482
20072
  }
20483
20073
 
20484
- interface ExperimentMilestone {
20485
- readonly 'id': string;
20486
- readonly 'experiment': io.flow.internal.v0.models.ExperimentReference;
20074
+ interface ExclusionRuleDeleted {
20075
+ readonly 'discriminator': 'exclusion_rule_deleted';
20076
+ readonly 'event_id': string;
20487
20077
  readonly 'timestamp': string;
20488
- readonly 'description': string;
20078
+ readonly 'organization': string;
20079
+ readonly 'exclusion_rule': io.flow.catalog.exclusion.v0.models.ExclusionRule;
20489
20080
  }
20490
20081
 
20491
- interface ExperimentMilestoneDeleted {
20492
- readonly 'discriminator': 'experiment_milestone_deleted';
20082
+ interface ExclusionRuleExportRequest {
20083
+ readonly 'discriminator': 'exclusion_rule_export_request';
20493
20084
  readonly 'event_id': string;
20494
20085
  readonly 'timestamp': string;
20495
20086
  readonly 'organization': string;
20496
- readonly 'id': string;
20497
- }
20498
-
20499
- interface ExperimentMilestoneForm {
20500
- readonly 'timestamp'?: string;
20501
- readonly 'description': string;
20087
+ readonly 'internal_exclusion_rule_form': io.flow.internal.v0.models.InternalExclusionRuleForm;
20502
20088
  }
20503
20089
 
20504
- interface ExperimentMilestoneUpserted {
20505
- readonly 'discriminator': 'experiment_milestone_upserted';
20090
+ interface ExclusionRuleUpserted {
20091
+ readonly 'discriminator': 'exclusion_rule_upserted';
20506
20092
  readonly 'event_id': string;
20507
20093
  readonly 'timestamp': string;
20508
20094
  readonly 'organization': string;
20509
- readonly 'experiment_milestone': io.flow.internal.v0.models.ExperimentMilestone;
20510
- }
20511
-
20512
- interface ExperimentReference {
20513
- readonly 'key': string;
20095
+ readonly 'exclusion_rule': io.flow.catalog.exclusion.v0.models.ExclusionRule;
20514
20096
  }
20515
20097
 
20516
- interface ExperimentResults {
20517
- readonly 'id': string;
20518
- readonly 'experiment_key': string;
20519
- readonly 'experiment_variant_key': string;
20520
- readonly 'visitor_count': number;
20521
- readonly 'visitors_with_transactions_count': number;
20522
- readonly 'conversion_rate': number;
20523
- readonly 'lower_bound': number;
20524
- readonly 'upper_bound': number;
20525
- readonly 'probability_of_being_best'?: number;
20526
- readonly 'currency'?: string;
20527
- readonly 'average_order_value'?: number;
20528
- readonly 'revenue_generated'?: number;
20529
- readonly 'total_order_count'?: number;
20530
- readonly 'conversion_rate_uplift'?: number;
20531
- readonly 'average_order_value_uplift'?: number;
20532
- readonly 'revenue_generated_uplift'?: number;
20098
+ interface ExpectedOrderSummary {
20099
+ readonly 'total'?: io.flow.common.v0.models.Money;
20533
20100
  }
20534
20101
 
20535
- interface ExperimentResultsDeleted {
20536
- readonly 'discriminator': 'experiment_results_deleted';
20102
+ interface ExperienceExportRequest {
20103
+ readonly 'discriminator': 'experience_export_request';
20537
20104
  readonly 'event_id': string;
20538
20105
  readonly 'timestamp': string;
20539
- readonly 'organization_id': string;
20540
- readonly 'experiment_results': io.flow.internal.v0.models.ExperimentResults;
20106
+ readonly 'organization': string;
20107
+ readonly 'ids'?: string[];
20108
+ readonly 'keys'?: string[];
20109
+ readonly 'export_id': string;
20541
20110
  }
20542
20111
 
20543
- interface ExperimentResultsUpserted {
20544
- readonly 'discriminator': 'experiment_results_upserted';
20112
+ interface ExperienceImportRequest {
20113
+ readonly 'discriminator': 'experience_import_request';
20545
20114
  readonly 'event_id': string;
20546
20115
  readonly 'timestamp': string;
20547
- readonly 'organization_id': string;
20548
- readonly 'experiment_results': io.flow.internal.v0.models.ExperimentResults;
20549
- }
20550
-
20551
- interface ExperimentResultsWithTimestamp {
20552
- readonly 'timestamp': string;
20553
- readonly 'results': io.flow.internal.v0.models.ExperimentResults[];
20554
- }
20555
-
20556
- interface ExperimentSessionQueryForm {
20557
- readonly 'session_query'?: string;
20116
+ readonly 'organization': string;
20117
+ readonly 'import_id': string;
20118
+ readonly 'type': io.flow.internal.v0.enums.ExperienceImportType;
20119
+ readonly 'source_url': string;
20120
+ readonly 'filename'?: string;
20558
20121
  }
20559
20122
 
20560
- interface ExperimentUpserted {
20561
- readonly 'discriminator': 'experiment_upserted';
20562
- readonly 'event_id': string;
20563
- readonly 'timestamp': string;
20564
- readonly 'organization_id': string;
20565
- readonly 'experiment': io.flow.internal.v0.unions.Experiment;
20123
+ interface ExperienceOrderActionRule {
20124
+ readonly 'trigger': io.flow.internal.v0.enums.ExperienceOrderActionTrigger;
20125
+ readonly 'actions': io.flow.internal.v0.enums.ExperienceOrderAction[];
20566
20126
  }
20567
20127
 
20568
- interface ExperimentVersion {
20128
+ interface ExperienceSessionReference {
20569
20129
  readonly 'id': string;
20570
- readonly 'timestamp': string;
20571
- readonly 'type': io.flow.common.v0.enums.ChangeType;
20572
- readonly 'experiment': io.flow.internal.v0.unions.Experiment;
20573
20130
  }
20574
20131
 
20575
20132
  interface ExplicitStatement {
@@ -20640,6 +20197,7 @@ declare namespace io.flow.internal.v0.models {
20640
20197
  readonly 'delivery_estimate'?: string;
20641
20198
  readonly 'description'?: string;
20642
20199
  readonly 'order_number'?: string;
20200
+ readonly 'raw_carrier_event_code'?: string;
20643
20201
  }
20644
20202
 
20645
20203
  interface ExternalFulfillmentProof {
@@ -20713,23 +20271,6 @@ declare namespace io.flow.internal.v0.models {
20713
20271
  readonly 'feature': io.flow.internal.v0.models.Feature;
20714
20272
  }
20715
20273
 
20716
- interface FeatureExperiment {
20717
- readonly 'discriminator': 'feature';
20718
- readonly 'id': string;
20719
- readonly 'key': string;
20720
- readonly 'name': string;
20721
- readonly 'description'?: string;
20722
- readonly 'status': io.flow.internal.v0.enums.Status;
20723
- readonly 'emails': string[];
20724
- readonly 'scope': io.flow.internal.v0.enums.Scope;
20725
- readonly 'started_at'?: string;
20726
- readonly 'ended_at'?: string;
20727
- readonly 'variants': io.flow.internal.v0.models.FeatureVariant[];
20728
- readonly 'transitions'?: io.flow.internal.v0.enums.Status[];
20729
- readonly 'significance_action'?: io.flow.internal.v0.enums.SignificanceAction;
20730
- readonly 'session_query'?: string;
20731
- }
20732
-
20733
20274
  interface FeatureForm {
20734
20275
  readonly 'name': string;
20735
20276
  readonly 'description'?: string;
@@ -20787,34 +20328,10 @@ declare namespace io.flow.internal.v0.models {
20787
20328
  readonly 'context': io.flow.internal.v0.models.FeatureContextForm;
20788
20329
  }
20789
20330
 
20790
- interface FeatureValueReference {
20791
- readonly 'feature_key': string;
20792
- readonly 'value': string;
20793
- }
20794
-
20795
20331
  interface FeatureValueResult {
20796
20332
  readonly 'values': io.flow.internal.v0.unions.FeatureValue[];
20797
20333
  }
20798
20334
 
20799
- interface FeatureVariant {
20800
- readonly 'discriminator': 'feature_variant';
20801
- readonly 'value': io.flow.internal.v0.models.FeatureVariantSummary;
20802
- readonly 'traffic_percentage': number;
20803
- readonly 'experiment_results'?: io.flow.internal.v0.models.ExperimentResults;
20804
- }
20805
-
20806
- interface FeatureVariantForm {
20807
- readonly 'discriminator': 'feature';
20808
- readonly 'key': string;
20809
- readonly 'traffic_percentage': number;
20810
- }
20811
-
20812
- interface FeatureVariantSummary {
20813
- readonly 'key': string;
20814
- readonly 'feature_value': io.flow.internal.v0.models.FeatureValueReference;
20815
- readonly 'name'?: string;
20816
- }
20817
-
20818
20335
  interface Fedex {
20819
20336
  readonly 'discriminator': 'fedex';
20820
20337
  readonly 'key': string;
@@ -21067,8 +20584,10 @@ declare namespace io.flow.internal.v0.models {
21067
20584
  readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
21068
20585
  }
21069
20586
 
21070
- interface ForceTransitForm {
21071
- readonly 'description': string;
20587
+ interface FraudAuthorizationSummary {
20588
+ readonly 'fraud_review_authorization': io.flow.internal.v0.models.FraudReviewAuthorization;
20589
+ readonly 'fraud_pending_review_authorization'?: io.flow.internal.v0.models.FraudPendingReviewAuthorization;
20590
+ readonly 'fraud_review_authorization_decision'?: io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
21072
20591
  }
21073
20592
 
21074
20593
  interface FraudPendingReview {
@@ -21081,6 +20600,32 @@ declare namespace io.flow.internal.v0.models {
21081
20600
  readonly 'liability'?: io.flow.fraud.v0.enums.FraudLiability;
21082
20601
  }
21083
20602
 
20603
+ interface FraudPendingReviewAuthorization {
20604
+ readonly 'id': string;
20605
+ readonly 'fraud_review_authorization_id': string;
20606
+ readonly 'order': io.flow.experience.v0.models.OrderReference;
20607
+ readonly 'fraud_order_reference'?: io.flow.fraud.v0.unions.FraudOrderReference;
20608
+ readonly 'recommended_status': io.flow.fraud.v0.enums.FraudStatus;
20609
+ readonly 'apply_at'?: string;
20610
+ readonly 'liability'?: io.flow.fraud.v0.enums.FraudLiability;
20611
+ }
20612
+
20613
+ interface FraudPendingReviewAuthorizationDeleted {
20614
+ readonly 'discriminator': 'fraud_pending_review_authorization_deleted';
20615
+ readonly 'event_id': string;
20616
+ readonly 'timestamp': string;
20617
+ readonly 'organization': string;
20618
+ readonly 'id': string;
20619
+ }
20620
+
20621
+ interface FraudPendingReviewAuthorizationUpserted {
20622
+ readonly 'discriminator': 'fraud_pending_review_authorization_upserted';
20623
+ readonly 'event_id': string;
20624
+ readonly 'timestamp': string;
20625
+ readonly 'organization': string;
20626
+ readonly 'fraud_pending_review_authorization': io.flow.internal.v0.models.FraudPendingReviewAuthorization;
20627
+ }
20628
+
21084
20629
  interface FraudPendingReviewDeleted {
21085
20630
  readonly 'discriminator': 'fraud_pending_review_deleted';
21086
20631
  readonly 'event_id': string;
@@ -21161,6 +20706,67 @@ declare namespace io.flow.internal.v0.models {
21161
20706
  readonly 'created_at'?: string;
21162
20707
  }
21163
20708
 
20709
+ interface FraudReviewAuthorization {
20710
+ readonly 'id': string;
20711
+ readonly 'organization_id': string;
20712
+ readonly 'order': io.flow.experience.v0.models.OrderReference;
20713
+ readonly 'fraud_order_reference'?: io.flow.fraud.v0.unions.FraudOrderReference;
20714
+ readonly 'status': io.flow.fraud.v0.enums.FraudStatus;
20715
+ readonly 'responsible_party': io.flow.internal.v0.enums.FraudReviewResponsibleParty;
20716
+ readonly 'description'?: string;
20717
+ readonly 'risk_evaluation'?: io.flow.internal.v0.enums.RiskEvaluation;
20718
+ readonly 'liability'?: io.flow.fraud.v0.enums.FraudLiability;
20719
+ readonly 'status_updated_at'?: string;
20720
+ readonly 'attributes'?: Record<string, string>;
20721
+ readonly 'provider'?: io.flow.internal.v0.enums.FraudProvider;
20722
+ readonly 'payment_authorization_id'?: string;
20723
+ readonly 'decline_reason'?: io.flow.internal.v0.unions.DeclineReason;
20724
+ readonly 'created_at'?: string;
20725
+ }
20726
+
20727
+ interface FraudReviewAuthorizationDecision {
20728
+ readonly 'id': string;
20729
+ readonly 'fraud_review_authorization_id': string;
20730
+ readonly 'order': io.flow.experience.v0.models.OrderReference;
20731
+ readonly 'fraud_order_reference'?: io.flow.fraud.v0.unions.FraudOrderReference;
20732
+ readonly 'status': io.flow.fraud.v0.enums.FraudStatus;
20733
+ readonly 'created_at': string;
20734
+ readonly 'liability'?: io.flow.fraud.v0.enums.FraudLiability;
20735
+ readonly 'updated_by_user'?: io.flow.common.v0.models.UserReference;
20736
+ }
20737
+
20738
+ interface FraudReviewAuthorizationDecisionDeleted {
20739
+ readonly 'discriminator': 'fraud_review_authorization_decision_deleted';
20740
+ readonly 'event_id': string;
20741
+ readonly 'timestamp': string;
20742
+ readonly 'organization': string;
20743
+ readonly 'id': string;
20744
+ }
20745
+
20746
+ interface FraudReviewAuthorizationDecisionUpserted {
20747
+ readonly 'discriminator': 'fraud_review_authorization_decision_upserted';
20748
+ readonly 'event_id': string;
20749
+ readonly 'timestamp': string;
20750
+ readonly 'organization': string;
20751
+ readonly 'fraud_review_authorization_decision': io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
20752
+ }
20753
+
20754
+ interface FraudReviewAuthorizationDeleted {
20755
+ readonly 'discriminator': 'fraud_review_authorization_deleted';
20756
+ readonly 'event_id': string;
20757
+ readonly 'timestamp': string;
20758
+ readonly 'organization': string;
20759
+ readonly 'id': string;
20760
+ }
20761
+
20762
+ interface FraudReviewAuthorizationUpserted {
20763
+ readonly 'discriminator': 'fraud_review_authorization_upserted';
20764
+ readonly 'event_id': string;
20765
+ readonly 'timestamp': string;
20766
+ readonly 'organization': string;
20767
+ readonly 'fraud_review_authorization': io.flow.internal.v0.models.FraudReviewAuthorization;
20768
+ }
20769
+
21164
20770
  interface FraudReviewDecision {
21165
20771
  readonly 'id': string;
21166
20772
  readonly 'fraud_review_id': string;
@@ -21219,6 +20825,7 @@ declare namespace io.flow.internal.v0.models {
21219
20825
  readonly 'fraud_review': io.flow.internal.v0.models.FraudReview;
21220
20826
  readonly 'fraud_pending_review'?: io.flow.internal.v0.models.FraudPendingReview;
21221
20827
  readonly 'fraud_review_decision'?: io.flow.internal.v0.models.FraudReviewDecision;
20828
+ readonly 'fraud_review_authorizations'?: io.flow.internal.v0.models.FraudAuthorizationSummary[];
21222
20829
  }
21223
20830
 
21224
20831
  interface FtpFileDeleted {
@@ -21293,6 +20900,7 @@ declare namespace io.flow.internal.v0.models {
21293
20900
  readonly 'order': io.flow.internal.v0.models.OrderSummary;
21294
20901
  readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
21295
20902
  readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
20903
+ readonly 'payment'?: io.flow.internal.v0.models.PaymentSummary;
21296
20904
  readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
21297
20905
  readonly 'sequence_number': number;
21298
20906
  readonly 'posting_cutoff': string;
@@ -21411,6 +21019,7 @@ declare namespace io.flow.internal.v0.models {
21411
21019
  readonly 'subtotal': io.flow.internal.v0.models.ReportingMonetaryValue;
21412
21020
  readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
21413
21021
  readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
21022
+ readonly 'tips'?: io.flow.internal.v0.models.ReportingMonetaryValue;
21414
21023
  readonly 'discount': io.flow.internal.v0.models.ReportingMonetaryValue;
21415
21024
  readonly 'total': io.flow.internal.v0.models.ReportingMonetaryValue;
21416
21025
  }
@@ -21575,6 +21184,37 @@ declare namespace io.flow.internal.v0.models {
21575
21184
  readonly 'tracker_id': string;
21576
21185
  }
21577
21186
 
21187
+ interface HarinathItem {
21188
+ readonly 'id': string;
21189
+ readonly 'number': string;
21190
+ readonly 'amount': io.flow.common.v0.models.Price;
21191
+ readonly 'description'?: string;
21192
+ readonly 'type': io.flow.internal.v0.enums.HarinathItemType;
21193
+ readonly 'added_on': string;
21194
+ }
21195
+
21196
+ interface HarinathItemDeleted {
21197
+ readonly 'discriminator': 'harinath_item_deleted';
21198
+ readonly 'event_id': string;
21199
+ readonly 'timestamp': string;
21200
+ readonly 'id': string;
21201
+ }
21202
+
21203
+ interface HarinathItemForm {
21204
+ readonly 'number': string;
21205
+ readonly 'amount': io.flow.common.v0.models.Price;
21206
+ readonly 'description'?: string;
21207
+ readonly 'type': io.flow.internal.v0.enums.HarinathItemType;
21208
+ readonly 'added_on': string;
21209
+ }
21210
+
21211
+ interface HarinathItemUpserted {
21212
+ readonly 'discriminator': 'harinath_item_upserted';
21213
+ readonly 'event_id': string;
21214
+ readonly 'timestamp': string;
21215
+ readonly 'item': io.flow.internal.v0.models.HarinathItem;
21216
+ }
21217
+
21578
21218
  interface HarmonizationClassificationStatisticsData {
21579
21219
  readonly 'statistics': io.flow.internal.v0.models.ClassificationStatistics;
21580
21220
  }
@@ -22104,6 +21744,7 @@ declare namespace io.flow.internal.v0.models {
22104
21744
  readonly 'price_amount'?: number;
22105
21745
  readonly 'status': io.flow.internal.v0.enums.ItemHarmonizationStatus;
22106
21746
  readonly 'tariffs'?: Record<string, io.flow.internal.v0.models.TariffCodeDuty>;
21747
+ readonly 'decision_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
22107
21748
  readonly 'created_at'?: string;
22108
21749
  readonly 'updated_at'?: string;
22109
21750
  readonly 'updated_by_user_id'?: string;
@@ -22260,6 +21901,37 @@ declare namespace io.flow.internal.v0.models {
22260
21901
  readonly 'descriptive_asset_urls'?: string;
22261
21902
  }
22262
21903
 
21904
+ interface KonstantinItem {
21905
+ readonly 'id': string;
21906
+ readonly 'number': string;
21907
+ readonly 'amount': io.flow.common.v0.models.Price;
21908
+ readonly 'description'?: string;
21909
+ readonly 'type': io.flow.internal.v0.enums.KonstantinItemType;
21910
+ readonly 'added_on': string;
21911
+ }
21912
+
21913
+ interface KonstantinItemDeleted {
21914
+ readonly 'discriminator': 'konstantin_item_deleted';
21915
+ readonly 'event_id': string;
21916
+ readonly 'timestamp': string;
21917
+ readonly 'id': string;
21918
+ }
21919
+
21920
+ interface KonstantinItemForm {
21921
+ readonly 'number': string;
21922
+ readonly 'amount': io.flow.common.v0.models.Price;
21923
+ readonly 'description'?: string;
21924
+ readonly 'type': io.flow.internal.v0.enums.KonstantinItemType;
21925
+ readonly 'added_on': string;
21926
+ }
21927
+
21928
+ interface KonstantinItemUpserted {
21929
+ readonly 'discriminator': 'konstantin_item_upserted';
21930
+ readonly 'event_id': string;
21931
+ readonly 'timestamp': string;
21932
+ readonly 'item': io.flow.internal.v0.models.KonstantinItem;
21933
+ }
21934
+
22263
21935
  interface LabProjectSettings {
22264
21936
  readonly 'id': string;
22265
21937
  readonly 'flow_lab_project_key': string;
@@ -22808,6 +22480,26 @@ declare namespace io.flow.internal.v0.models {
22808
22480
  readonly 'capabilities': io.flow.internal.v0.enums.LogisticsCapability[];
22809
22481
  }
22810
22482
 
22483
+ interface LogisticsPayoutRequest {
22484
+ readonly 'organization_id': string;
22485
+ readonly 'order_number': string;
22486
+ readonly 'carrier': string;
22487
+ readonly 'carrier_tracking_number': string;
22488
+ readonly 'dry_run': boolean;
22489
+ readonly 'payout_resolution_method': io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod;
22490
+ readonly 'label_id'?: string;
22491
+ readonly 'combined_shipment_order_number'?: string;
22492
+ }
22493
+
22494
+ interface LogisticsPayoutRequestForm {
22495
+ readonly 'organization_id': string;
22496
+ readonly 'order_identifier': string;
22497
+ readonly 'carrier_id'?: string;
22498
+ readonly 'carrier_name'?: string;
22499
+ readonly 'carrier_tracking_number'?: string;
22500
+ readonly 'external_reference_number'?: string;
22501
+ }
22502
+
22811
22503
  interface Logo {
22812
22504
  readonly 'url': string;
22813
22505
  }
@@ -23378,6 +23070,68 @@ declare namespace io.flow.internal.v0.models {
23378
23070
  readonly 'proposition': io.flow.internal.v0.models.MetadataProposition;
23379
23071
  }
23380
23072
 
23073
+ interface MichaelyanItem {
23074
+ readonly 'id': string;
23075
+ readonly 'number': string;
23076
+ readonly 'amount': io.flow.common.v0.models.Price;
23077
+ readonly 'description'?: string;
23078
+ readonly 'type': io.flow.internal.v0.enums.MichaelyanItemType;
23079
+ readonly 'added_on': string;
23080
+ }
23081
+
23082
+ interface MichaelyanItemDeleted {
23083
+ readonly 'discriminator': 'michaelyan_item_deleted';
23084
+ readonly 'event_id': string;
23085
+ readonly 'timestamp': string;
23086
+ readonly 'id': string;
23087
+ }
23088
+
23089
+ interface MichaelyanItemForm {
23090
+ readonly 'number': string;
23091
+ readonly 'amount': io.flow.common.v0.models.Price;
23092
+ readonly 'description'?: string;
23093
+ readonly 'type': io.flow.internal.v0.enums.MichaelyanItemType;
23094
+ readonly 'added_on': string;
23095
+ }
23096
+
23097
+ interface MichaelyanItemUpserted {
23098
+ readonly 'discriminator': 'michaelyan_item_upserted';
23099
+ readonly 'event_id': string;
23100
+ readonly 'timestamp': string;
23101
+ readonly 'item': io.flow.internal.v0.models.MichaelyanItem;
23102
+ }
23103
+
23104
+ interface MiljenkoItem {
23105
+ readonly 'id': string;
23106
+ readonly 'number': string;
23107
+ readonly 'amount': io.flow.common.v0.models.Price;
23108
+ readonly 'description'?: string;
23109
+ readonly 'type': io.flow.internal.v0.enums.MiljenkoItemType;
23110
+ readonly 'added_on': string;
23111
+ }
23112
+
23113
+ interface MiljenkoItemDeleted {
23114
+ readonly 'discriminator': 'miljenko_item_deleted';
23115
+ readonly 'event_id': string;
23116
+ readonly 'timestamp': string;
23117
+ readonly 'id': string;
23118
+ }
23119
+
23120
+ interface MiljenkoItemForm {
23121
+ readonly 'number': string;
23122
+ readonly 'amount': io.flow.common.v0.models.Price;
23123
+ readonly 'description'?: string;
23124
+ readonly 'type': io.flow.internal.v0.enums.MiljenkoItemType;
23125
+ readonly 'added_on': string;
23126
+ }
23127
+
23128
+ interface MiljenkoItemUpserted {
23129
+ readonly 'discriminator': 'miljenko_item_upserted';
23130
+ readonly 'event_id': string;
23131
+ readonly 'timestamp': string;
23132
+ readonly 'item': io.flow.internal.v0.models.MiljenkoItem;
23133
+ }
23134
+
23381
23135
  interface NextBillingStatement {
23382
23136
  readonly 'date': string;
23383
23137
  readonly 'amount': io.flow.common.v0.models.Price;
@@ -23786,6 +23540,29 @@ declare namespace io.flow.internal.v0.models {
23786
23540
  readonly 'currency': string;
23787
23541
  }
23788
23542
 
23543
+ interface OrderTaxAndDutyInclusivitySetting {
23544
+ readonly 'id': string;
23545
+ readonly 'organization_id': string;
23546
+ readonly 'shopify_order_id': string;
23547
+ readonly 'order_number': string;
23548
+ readonly 'tax_and_duty_inclusivity_setting': io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
23549
+ }
23550
+
23551
+ interface OrderTaxAndDutyInclusivitySettingDeleted {
23552
+ readonly 'discriminator': 'order_tax_and_duty_inclusivity_setting_deleted';
23553
+ readonly 'event_id': string;
23554
+ readonly 'timestamp': string;
23555
+ readonly 'organization': string;
23556
+ readonly 'id': string;
23557
+ }
23558
+
23559
+ interface OrderTaxAndDutyInclusivitySettingUpserted {
23560
+ readonly 'discriminator': 'order_tax_and_duty_inclusivity_setting_upserted';
23561
+ readonly 'event_id': string;
23562
+ readonly 'timestamp': string;
23563
+ readonly 'order_tax_and_duty_inclusivity_setting': io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
23564
+ }
23565
+
23789
23566
  interface OrderTransaction {
23790
23567
  readonly 'discriminator': 'order_transaction';
23791
23568
  readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -24076,6 +23853,34 @@ declare namespace io.flow.internal.v0.models {
24076
23853
  readonly 'to': string;
24077
23854
  }
24078
23855
 
23856
+ interface OrganizationMetadata {
23857
+ readonly 'id': string;
23858
+ readonly 'organization_id': string;
23859
+ readonly 'pending_restriction_count': number;
23860
+ readonly 'pending_verification_count': number;
23861
+ readonly 'oldest_pending_restriction_date'?: string;
23862
+ readonly 'oldest_pending_verification_date'?: string;
23863
+ readonly 'product_count': number;
23864
+ readonly 'restricted_product_count': number;
23865
+ readonly 'last_order_submitted_at'?: string;
23866
+ }
23867
+
23868
+ interface OrganizationMetadataDeleted {
23869
+ readonly 'discriminator': 'organization_metadata_deleted';
23870
+ readonly 'event_id': string;
23871
+ readonly 'timestamp': string;
23872
+ readonly 'organization': string;
23873
+ readonly 'id': string;
23874
+ }
23875
+
23876
+ interface OrganizationMetadataUpserted {
23877
+ readonly 'discriminator': 'organization_metadata_upserted';
23878
+ readonly 'event_id': string;
23879
+ readonly 'timestamp': string;
23880
+ readonly 'organization': string;
23881
+ readonly 'organization_metadata': io.flow.internal.v0.models.OrganizationMetadata;
23882
+ }
23883
+
24079
23884
  interface OrganizationOnboardingStateAdjustmentResult {
24080
23885
  readonly 'organization_onboarding_state'?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
24081
23886
  }
@@ -24263,6 +24068,144 @@ declare namespace io.flow.internal.v0.models {
24263
24068
  readonly 'audit_result': io.flow.internal.v0.enums.OnboardingAuditResult;
24264
24069
  }
24265
24070
 
24071
+ interface OtherRecord {
24072
+ readonly 'id': string;
24073
+ readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
24074
+ readonly 'account': io.flow.internal.v0.models.OtherRecordAccount;
24075
+ readonly 'metadata'?: io.flow.internal.v0.models.OtherRecordMetadata;
24076
+ readonly 'order'?: io.flow.internal.v0.models.OtherRecordOrderSummary;
24077
+ readonly 'currency': string;
24078
+ readonly 'source': io.flow.billing.v0.enums.TransactionSource;
24079
+ readonly 'parent'?: io.flow.billing.v0.models.ParentTransactionSummary;
24080
+ readonly 'gross': number;
24081
+ readonly 'fees': io.flow.internal.v0.models.OtherRecordFees;
24082
+ readonly 'withholdings': io.flow.internal.v0.models.OtherRecordWithholdings;
24083
+ readonly 'discount': io.flow.internal.v0.models.OtherRecordDiscount;
24084
+ readonly 'net': number;
24085
+ readonly 'identifiers': io.flow.internal.v0.models.OtherRecordIdentifiers;
24086
+ readonly 'created_at': string;
24087
+ readonly 'updated_at': string;
24088
+ }
24089
+
24090
+ interface OtherRecordAccount {
24091
+ readonly 'id': string;
24092
+ readonly 'merchant'?: io.flow.internal.v0.models.OtherRecordMerchantReference;
24093
+ readonly 'environment': io.flow.common.v0.enums.Environment;
24094
+ readonly 'source': io.flow.internal.v0.models.OtherRecordAccountSourceSummary;
24095
+ }
24096
+
24097
+ interface OtherRecordAccountSourceSummary {
24098
+ readonly 'id': string;
24099
+ readonly 'type': io.flow.internal.v0.enums.AccountType;
24100
+ }
24101
+
24102
+ interface OtherRecordDeleted {
24103
+ readonly 'discriminator': 'other_record_deleted';
24104
+ readonly 'event_id': string;
24105
+ readonly 'timestamp': string;
24106
+ readonly 'id': string;
24107
+ }
24108
+
24109
+ interface OtherRecordDiscount {
24110
+ readonly 'amount': number;
24111
+ readonly 'description'?: string;
24112
+ }
24113
+
24114
+ interface OtherRecordFees {
24115
+ readonly 'duty_guarantee': number;
24116
+ readonly 'mor': number;
24117
+ readonly 'fraud': number;
24118
+ readonly 'fx': number;
24119
+ readonly 'processing': number;
24120
+ readonly 'rate_lock': number;
24121
+ readonly 'transfer': number;
24122
+ readonly 'negative_balance': number;
24123
+ }
24124
+
24125
+ interface OtherRecordIdentifiers {
24126
+ readonly 'reference_id'?: string;
24127
+ }
24128
+
24129
+ interface OtherRecordMerchantReference {
24130
+ readonly 'id': string;
24131
+ }
24132
+
24133
+ interface OtherRecordMetadata {
24134
+ readonly 'channel'?: io.flow.internal.v0.models.OtherRecordMetadataChannel;
24135
+ readonly 'shipping_label'?: io.flow.internal.v0.models.OtherRecordMetadataShippingLabel;
24136
+ readonly 'shipping_label_revenue_share'?: io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare;
24137
+ readonly 'trueup'?: io.flow.internal.v0.models.OtherRecordMetadataTrueup;
24138
+ readonly 'carrier_charge'?: io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge;
24139
+ readonly 'manual'?: io.flow.internal.v0.models.OtherRecordMetadataManual;
24140
+ readonly 'failed_payout'?: io.flow.internal.v0.models.OtherRecordMetadataFailedPayout;
24141
+ }
24142
+
24143
+ interface OtherRecordMetadataCarrierCharge {
24144
+ readonly 'reason': io.flow.trueup.v0.enums.CarrierChargeReason;
24145
+ readonly 'label_created_at': string;
24146
+ readonly 'carrier_id': string;
24147
+ readonly 'carrier_tracking_number': string;
24148
+ readonly 'revenue_share_percentage': number;
24149
+ readonly 'outbound_transaction_id'?: string;
24150
+ }
24151
+
24152
+ interface OtherRecordMetadataChannel {
24153
+ readonly 'method': string;
24154
+ readonly 'card'?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
24155
+ }
24156
+
24157
+ interface OtherRecordMetadataFailedPayout {
24158
+ readonly 'failed_payment': io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
24159
+ }
24160
+
24161
+ interface OtherRecordMetadataManual {
24162
+ readonly 'description': string;
24163
+ readonly 'original'?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
24164
+ readonly 'category'?: io.flow.internal.v0.enums.ManualTransactionCategory;
24165
+ readonly 'url'?: string;
24166
+ }
24167
+
24168
+ interface OtherRecordMetadataShippingLabel {
24169
+ readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
24170
+ }
24171
+
24172
+ interface OtherRecordMetadataShippingLabelRevenueShare {
24173
+ readonly 'label_id': string;
24174
+ readonly 'base_amount'?: number;
24175
+ readonly 'percentage'?: number;
24176
+ }
24177
+
24178
+ interface OtherRecordMetadataTrueup {
24179
+ readonly 'original': io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
24180
+ readonly 'label_transaction_id': string;
24181
+ readonly 'label_invoice_request_id': string;
24182
+ readonly 'carrier_charge_id': string;
24183
+ }
24184
+
24185
+ interface OtherRecordOrderSummary {
24186
+ readonly 'organization': io.flow.common.v0.models.OrganizationReference;
24187
+ readonly 'number': string;
24188
+ readonly 'identifiers': io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
24189
+ }
24190
+
24191
+ interface OtherRecordOrderSummaryIdentifiers {
24192
+ readonly 'shopify_order_id'?: string;
24193
+ }
24194
+
24195
+ interface OtherRecordUpserted {
24196
+ readonly 'discriminator': 'other_record_upserted';
24197
+ readonly 'event_id': string;
24198
+ readonly 'timestamp': string;
24199
+ readonly 'other_record': io.flow.internal.v0.models.OtherRecord;
24200
+ }
24201
+
24202
+ interface OtherRecordWithholdings {
24203
+ readonly 'tax': number;
24204
+ readonly 'duty': number;
24205
+ readonly 'freight': number;
24206
+ readonly 'insurance': number;
24207
+ }
24208
+
24266
24209
  interface Partner {
24267
24210
  readonly 'id': string;
24268
24211
  readonly 'name': string;
@@ -24434,6 +24377,15 @@ declare namespace io.flow.internal.v0.models {
24434
24377
  readonly 'merchant': io.flow.internal.v0.unions.ProcessorMerchant;
24435
24378
  }
24436
24379
 
24380
+ interface PaymentSummary {
24381
+ readonly 'psp': number;
24382
+ readonly 'credit': number;
24383
+ readonly 'subsidized': number;
24384
+ readonly 'manual': number;
24385
+ readonly 'cod': number;
24386
+ readonly 'total': number;
24387
+ }
24388
+
24437
24389
  interface PaymentSummaryV2 {
24438
24390
  readonly 'discriminator': 'payment_summary_v2';
24439
24391
  readonly 'id': string;
@@ -24651,6 +24603,7 @@ declare namespace io.flow.internal.v0.models {
24651
24603
  readonly 'order': io.flow.internal.v0.models.OrderSummary;
24652
24604
  readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
24653
24605
  readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
24606
+ readonly 'payment'?: io.flow.internal.v0.models.PaymentSummary;
24654
24607
  readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
24655
24608
  readonly 'sequence_number': number;
24656
24609
  readonly 'posting_cutoff': string;
@@ -25603,11 +25556,11 @@ declare namespace io.flow.internal.v0.models {
25603
25556
  readonly 'sequence_number': number;
25604
25557
  readonly 'fulfilled_at': string;
25605
25558
  readonly 'completes_order': boolean;
25606
- readonly 'payment': io.flow.internal.v0.models.ReportingPayment;
25607
25559
  readonly 'refund'?: io.flow.internal.v0.models.ReportingRefundReference;
25608
25560
  readonly 'value': io.flow.internal.v0.models.FulfillmentShopperBreakdown;
25609
25561
  readonly 'dispatch_country'?: io.flow.internal.v0.models.ReportingCountry;
25610
25562
  readonly 'destination'?: io.flow.internal.v0.models.ReportingDestination;
25563
+ readonly 'payment'?: io.flow.internal.v0.models.ReportingPayment;
25611
25564
  readonly 'shipment'?: io.flow.internal.v0.models.ReportingShipment;
25612
25565
  readonly 'is': io.flow.internal.v0.models.ReportingFulfillmentIs;
25613
25566
  readonly 'has': io.flow.internal.v0.models.ReportingFulfillmentHas;
@@ -25626,6 +25579,11 @@ declare namespace io.flow.internal.v0.models {
25626
25579
  readonly 'wyol': boolean;
25627
25580
  readonly 'b2b': boolean;
25628
25581
  readonly 'domestic': boolean;
25582
+ readonly 'combined_shipment'?: boolean;
25583
+ readonly 'order_cancelled'?: boolean;
25584
+ readonly 'lvg'?: boolean;
25585
+ readonly 'tax_inclusive'?: boolean;
25586
+ readonly 'duty_inclusive'?: boolean;
25629
25587
  }
25630
25588
 
25631
25589
  interface ReportingFx {
@@ -25634,6 +25592,7 @@ declare namespace io.flow.internal.v0.models {
25634
25592
  readonly 'product': io.flow.internal.v0.models.ReportingUsd;
25635
25593
  readonly 'tax': io.flow.internal.v0.models.ReportingUsd;
25636
25594
  readonly 'duty': io.flow.internal.v0.models.ReportingUsd;
25595
+ readonly 'tips'?: io.flow.internal.v0.models.ReportingUsd;
25637
25596
  readonly 'total': io.flow.internal.v0.models.ReportingUsd;
25638
25597
  }
25639
25598
 
@@ -25651,6 +25610,7 @@ declare namespace io.flow.internal.v0.models {
25651
25610
  readonly 'processing': io.flow.internal.v0.models.ReportingMonetaryValue;
25652
25611
  readonly 'rate_lock': io.flow.internal.v0.models.ReportingMonetaryValue;
25653
25612
  readonly 'transfer': io.flow.internal.v0.models.ReportingMonetaryValue;
25613
+ readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
25654
25614
  }
25655
25615
 
25656
25616
  interface ReportingMerchantSubsidies {
@@ -25658,6 +25618,7 @@ declare namespace io.flow.internal.v0.models {
25658
25618
  readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
25659
25619
  readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
25660
25620
  readonly 'ccf': io.flow.internal.v0.models.ReportingMonetaryValue;
25621
+ readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
25661
25622
  }
25662
25623
 
25663
25624
  interface ReportingMerchantTransactions {
@@ -25666,6 +25627,8 @@ declare namespace io.flow.internal.v0.models {
25666
25627
  readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
25667
25628
  readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
25668
25629
  readonly 'freight': io.flow.internal.v0.models.ReportingMonetaryValue;
25630
+ readonly 'discount'?: io.flow.internal.v0.models.ReportingMonetaryValue;
25631
+ readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
25669
25632
  }
25670
25633
 
25671
25634
  interface ReportingMonetaryValue {
@@ -25688,25 +25651,14 @@ declare namespace io.flow.internal.v0.models {
25688
25651
  }
25689
25652
 
25690
25653
  interface ReportingPayment {
25691
- readonly 'metadata'?: io.flow.internal.v0.models.ReportingPaymentMetadata;
25692
25654
  readonly 'psp': io.flow.internal.v0.models.ReportingMonetaryValue;
25693
25655
  readonly 'credit': io.flow.internal.v0.models.ReportingMonetaryValue;
25656
+ readonly 'subsidized': io.flow.internal.v0.models.ReportingMonetaryValue;
25657
+ readonly 'manual': io.flow.internal.v0.models.ReportingMonetaryValue;
25658
+ readonly 'cod': io.flow.internal.v0.models.ReportingMonetaryValue;
25694
25659
  readonly 'total': io.flow.internal.v0.models.ReportingMonetaryValue;
25695
25660
  }
25696
25661
 
25697
- interface ReportingPaymentMetadata {
25698
- readonly 'gateway': io.flow.internal.v0.enums.Processor;
25699
- readonly 'method': string;
25700
- readonly 'psp_reference'?: string;
25701
- readonly 'authorization'?: io.flow.internal.v0.models.ReportingAuthorizationReference;
25702
- readonly 'settlement_date': string;
25703
- readonly 'additional_authorizations'?: io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
25704
- }
25705
-
25706
- interface ReportingPaymentMetadataAdditionalAuthorizations {
25707
- readonly 'ids': string;
25708
- }
25709
-
25710
25662
  interface ReportingProvince {
25711
25663
  readonly 'code'?: string;
25712
25664
  readonly 'name': string;
@@ -25735,6 +25687,7 @@ declare namespace io.flow.internal.v0.models {
25735
25687
  readonly 'ccf': io.flow.internal.v0.models.ReportingMonetaryValue;
25736
25688
  readonly 'emergency': io.flow.internal.v0.models.ReportingMonetaryValue;
25737
25689
  readonly 'peak': io.flow.internal.v0.models.ReportingMonetaryValue;
25690
+ readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
25738
25691
  }
25739
25692
 
25740
25693
  interface ReportingUsd {
@@ -25762,6 +25715,10 @@ declare namespace io.flow.internal.v0.models {
25762
25715
  readonly 'select_mismatching_item_types': boolean;
25763
25716
  }
25764
25717
 
25718
+ interface RescreenRestrictionsProducts {
25719
+ readonly 'placeholder'?: boolean;
25720
+ }
25721
+
25765
25722
  interface RestrictionCategory {
25766
25723
  readonly 'category': string;
25767
25724
  }
@@ -26035,6 +25992,7 @@ declare namespace io.flow.internal.v0.models {
26035
25992
  readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
26036
25993
  readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
26037
25994
  readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
25995
+ readonly 'payment'?: io.flow.internal.v0.models.PaymentSummary;
26038
25996
  readonly 'sequence_number': number;
26039
25997
  readonly 'posting_cutoff': string;
26040
25998
  readonly 'trigger': io.flow.internal.v0.unions.ReturnTrigger;
@@ -26235,7 +26193,7 @@ declare namespace io.flow.internal.v0.models {
26235
26193
  readonly 'discriminator': 'search_experiment_summary';
26236
26194
  readonly 'key': string;
26237
26195
  readonly 'name': string;
26238
- readonly 'status': io.flow.internal.v0.enums.Status;
26196
+ readonly 'status': io.flow.experiment.internal.v0.enums.Status;
26239
26197
  }
26240
26198
 
26241
26199
  interface SearchItemSummary {
@@ -26880,6 +26838,8 @@ declare namespace io.flow.internal.v0.models {
26880
26838
  readonly 'id': string;
26881
26839
  readonly 'initial_catalog_synced_at'?: string;
26882
26840
  readonly 'catalog_sync_duration'?: number;
26841
+ readonly 'restrictions_sync_duration'?: number;
26842
+ readonly 'classifications_sync_duration'?: number;
26883
26843
  readonly 'catalog_products_count'?: number;
26884
26844
  readonly 'initial_product_restrictions_synced_at'?: string;
26885
26845
  }
@@ -26953,6 +26913,7 @@ declare namespace io.flow.internal.v0.models {
26953
26913
  readonly 'product': io.flow.internal.v0.models.ShopperLines;
26954
26914
  readonly 'fees': io.flow.internal.v0.models.ShopperFees;
26955
26915
  readonly 'freight': io.flow.internal.v0.models.ShopperFreight;
26916
+ readonly 'tips'?: number;
26956
26917
  readonly 'order_discount': number;
26957
26918
  readonly 'total': number;
26958
26919
  }
@@ -27665,6 +27626,23 @@ declare namespace io.flow.internal.v0.models {
27665
27626
  readonly 'name': string;
27666
27627
  }
27667
27628
 
27629
+ interface ThiagoItem {
27630
+ readonly 'id': string;
27631
+ readonly 'number': string;
27632
+ readonly 'amount': io.flow.common.v0.models.Price;
27633
+ readonly 'description'?: string;
27634
+ readonly 'type': io.flow.internal.v0.enums.ThiagoItemType;
27635
+ readonly 'added_on': string;
27636
+ }
27637
+
27638
+ interface ThiagoItemForm {
27639
+ readonly 'number': string;
27640
+ readonly 'amount': io.flow.common.v0.models.Price;
27641
+ readonly 'description'?: string;
27642
+ readonly 'type': io.flow.internal.v0.enums.ThiagoItemType;
27643
+ readonly 'added_on': string;
27644
+ }
27645
+
27668
27646
  interface ThirdPartyLogisticsPartner {
27669
27647
  readonly 'warehouse_address': io.flow.common.v0.models.BillingAddress;
27670
27648
  readonly 'warehouse_url'?: string;
@@ -27743,6 +27721,47 @@ declare namespace io.flow.internal.v0.models {
27743
27721
  readonly 'timezone': string;
27744
27722
  }
27745
27723
 
27724
+ interface TrackingAssuranceAnalysis {
27725
+ readonly 'id': string;
27726
+ readonly 'job_id': string;
27727
+ readonly 'label_id': string;
27728
+ readonly 'order_number': string;
27729
+ readonly 'carrier_tracking_number': string;
27730
+ readonly 'flow_tracking_number': string;
27731
+ readonly 'carrier_status': string;
27732
+ readonly 'aftership_status': string;
27733
+ readonly 'flow_status': string;
27734
+ readonly 'latest_carrier_event_date': string;
27735
+ readonly 'latest_aftership_event_date': string;
27736
+ readonly 'latest_flow_event_date': string;
27737
+ readonly 'label_created_at': string;
27738
+ readonly 'carrier_id': string;
27739
+ readonly 'carrier_origin_country'?: string;
27740
+ readonly 'label_origin_country': string;
27741
+ readonly 'label_destination_country': string;
27742
+ readonly 'carrier_destination_country'?: string;
27743
+ }
27744
+
27745
+ interface TrackingAssuranceAnalysisDeleted {
27746
+ readonly 'discriminator': 'tracking_assurance_analysis_deleted';
27747
+ readonly 'event_id': string;
27748
+ readonly 'timestamp': string;
27749
+ readonly 'organization': string;
27750
+ readonly 'id': string;
27751
+ }
27752
+
27753
+ interface TrackingAssuranceAnalysisUpserted {
27754
+ readonly 'discriminator': 'tracking_assurance_analysis_upserted';
27755
+ readonly 'event_id': string;
27756
+ readonly 'timestamp': string;
27757
+ readonly 'organization': string;
27758
+ readonly 'analysis': io.flow.internal.v0.models.TrackingAssuranceAnalysis;
27759
+ }
27760
+
27761
+ interface TrackingDebugForceTransitForm {
27762
+ readonly 'description': string;
27763
+ }
27764
+
27746
27765
  interface TrackingDebugLabel {
27747
27766
  readonly 'in_transit_location'?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
27748
27767
  readonly 'delivery_location'?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
@@ -28201,8 +28220,7 @@ declare namespace io.flow.internal.v0.unions {
28201
28220
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
28202
28221
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
28203
28222
  type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
28204
- type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
28205
- type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
28223
+ type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
28206
28224
  type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
28207
28225
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
28208
28226
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -28261,8 +28279,6 @@ declare namespace io.flow.internal.v0.unions {
28261
28279
  type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction);
28262
28280
  type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
28263
28281
  type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
28264
- type Variant = (io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant);
28265
- type VariantForm = (io.flow.internal.v0.models.ExperienceVariantForm | io.flow.internal.v0.models.FeatureVariantForm);
28266
28282
  }
28267
28283
 
28268
28284
  export const accountPaymentHoldReason: PropTypes.Requireable<io.flow.internal.v0.enums.AccountPaymentHoldReason>;
@@ -28312,6 +28328,7 @@ export const classificationPlatform: PropTypes.Requireable<io.flow.internal.v0.e
28312
28328
  export const classificationType: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationType>;
28313
28329
  export const clothingAgeClassification: PropTypes.Requireable<io.flow.internal.v0.enums.ClothingAgeClassification>;
28314
28330
  export const colmItemType: PropTypes.Requireable<io.flow.internal.v0.enums.ColmItemType>;
28331
+ export const company: PropTypes.Requireable<io.flow.internal.v0.enums.Company>;
28315
28332
  export const complianceType: PropTypes.Requireable<io.flow.internal.v0.enums.ComplianceType>;
28316
28333
  export const contentElementType: PropTypes.Requireable<io.flow.internal.v0.enums.ContentElementType>;
28317
28334
  export const contentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ContentStatus>;
@@ -28345,7 +28362,6 @@ export const eventType: PropTypes.Requireable<io.flow.internal.v0.enums.EventTyp
28345
28362
  export const experienceImportType: PropTypes.Requireable<io.flow.internal.v0.enums.ExperienceImportType>;
28346
28363
  export const experienceOrderAction: PropTypes.Requireable<io.flow.internal.v0.enums.ExperienceOrderAction>;
28347
28364
  export const experienceOrderActionTrigger: PropTypes.Requireable<io.flow.internal.v0.enums.ExperienceOrderActionTrigger>;
28348
- export const experimentDiscriminatorKey: PropTypes.Requireable<io.flow.internal.v0.enums.ExperimentDiscriminatorKey>;
28349
28365
  export const exportContentType: PropTypes.Requireable<io.flow.internal.v0.enums.ExportContentType>;
28350
28366
  export const featureScope: PropTypes.Requireable<io.flow.internal.v0.enums.FeatureScope>;
28351
28367
  export const featureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FeatureStatus>;
@@ -28360,6 +28376,8 @@ export const fraudReviewResponsibleParty: PropTypes.Requireable<io.flow.internal
28360
28376
  export const ftpIntent: PropTypes.Requireable<io.flow.internal.v0.enums.FtpIntent>;
28361
28377
  export const ftpProtocol: PropTypes.Requireable<io.flow.internal.v0.enums.FtpProtocol>;
28362
28378
  export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.enums.GoogleAnalyticsPlugin>;
28379
+ export const harinathItemType: PropTypes.Requireable<io.flow.internal.v0.enums.HarinathItemType>;
28380
+ export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
28363
28381
  export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
28364
28382
  export const inventoryCheckService: PropTypes.Requireable<io.flow.internal.v0.enums.InventoryCheckService>;
28365
28383
  export const inventoryReservation: PropTypes.Requireable<io.flow.internal.v0.enums.InventoryReservation>;
@@ -28369,6 +28387,7 @@ export const itemHarmonizationStatus: PropTypes.Requireable<io.flow.internal.v0.
28369
28387
  export const itemQuantityAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemQuantityAction>;
28370
28388
  export const itemType: PropTypes.Requireable<io.flow.internal.v0.enums.ItemType>;
28371
28389
  export const keywordType: PropTypes.Requireable<io.flow.internal.v0.enums.KeywordType>;
28390
+ export const konstantinItemType: PropTypes.Requireable<io.flow.internal.v0.enums.KonstantinItemType>;
28372
28391
  export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.LabelBillingStrategy>;
28373
28392
  export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
28374
28393
  export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
@@ -28376,6 +28395,7 @@ export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.f
28376
28395
  export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
28377
28396
  export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
28378
28397
  export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsCapability>;
28398
+ export const logisticsPayoutResolutionMethod: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod>;
28379
28399
  export const manualReviewRuleStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ManualReviewRuleStatus>;
28380
28400
  export const manualTransactionCategory: PropTypes.Requireable<io.flow.internal.v0.enums.ManualTransactionCategory>;
28381
28401
  export const marketingGatewayAccountConnectionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayAccountConnectionStatus>;
@@ -28389,6 +28409,8 @@ export const marketingGatewayPlatform: PropTypes.Requireable<io.flow.internal.v0
28389
28409
  export const marketingGatewayProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayProductStatus>;
28390
28410
  export const marketingGatewaySchemaCompatibility: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility>;
28391
28411
  export const matiasItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MatiasItemType>;
28412
+ export const michaelyanItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MichaelyanItemType>;
28413
+ export const miljenkoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MiljenkoItemType>;
28392
28414
  export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
28393
28415
  export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
28394
28416
  export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
@@ -28449,7 +28471,6 @@ export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.
28449
28471
  export const revenueRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueRecordType>;
28450
28472
  export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskCheck>;
28451
28473
  export const riskEvaluation: PropTypes.Requireable<io.flow.internal.v0.enums.RiskEvaluation>;
28452
- export const scope: PropTypes.Requireable<io.flow.internal.v0.enums.Scope>;
28453
28474
  export const serialReservationError: PropTypes.Requireable<io.flow.internal.v0.enums.SerialReservationError>;
28454
28475
  export const serviceName: PropTypes.Requireable<io.flow.internal.v0.enums.ServiceName>;
28455
28476
  export const sessionCountryStatus: PropTypes.Requireable<io.flow.internal.v0.enums.SessionCountryStatus>;
@@ -28467,24 +28488,23 @@ export const shopifyPromotionOrderEntitlementComponent: PropTypes.Requireable<io
28467
28488
  export const shopifyPromotionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPromotionStatus>;
28468
28489
  export const shopifyService: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyService>;
28469
28490
  export const shrutiDemoType: PropTypes.Requireable<io.flow.internal.v0.enums.ShrutiDemoType>;
28470
- export const significanceAction: PropTypes.Requireable<io.flow.internal.v0.enums.SignificanceAction>;
28471
28491
  export const simpleRoundingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.SimpleRoundingStrategy>;
28472
28492
  export const snoozeNextActionWith: PropTypes.Requireable<io.flow.internal.v0.enums.SnoozeNextActionWith>;
28473
28493
  export const snoozeSourceType: PropTypes.Requireable<io.flow.internal.v0.enums.SnoozeSourceType>;
28474
28494
  export const statementStatus: PropTypes.Requireable<io.flow.internal.v0.enums.StatementStatus>;
28475
28495
  export const statementTransferTransactionLocation: PropTypes.Requireable<io.flow.internal.v0.enums.StatementTransferTransactionLocation>;
28476
28496
  export const statisticType: PropTypes.Requireable<io.flow.internal.v0.enums.StatisticType>;
28477
- export const status: PropTypes.Requireable<io.flow.internal.v0.enums.Status>;
28478
28497
  export const subscriptionFrequency: PropTypes.Requireable<io.flow.internal.v0.enums.SubscriptionFrequency>;
28479
28498
  export const suggestionAction: PropTypes.Requireable<io.flow.internal.v0.enums.SuggestionAction>;
28480
28499
  export const svitlanaType: PropTypes.Requireable<io.flow.internal.v0.enums.SvitlanaType>;
28481
28500
  export const tamItemType: PropTypes.Requireable<io.flow.internal.v0.enums.TamItemType>;
28482
28501
  export const tariffEligibilityType: PropTypes.Requireable<io.flow.internal.v0.enums.TariffEligibilityType>;
28483
28502
  export const taskProcessorKey: PropTypes.Requireable<io.flow.internal.v0.enums.TaskProcessorKey>;
28503
+ export const taxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting>;
28484
28504
  export const taxCalculationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.TaxCalculationErrorCode>;
28485
28505
  export const taxParty: PropTypes.Requireable<io.flow.internal.v0.enums.TaxParty>;
28486
28506
  export const taxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TaxTransactionType>;
28487
- export const timeseriesType: PropTypes.Requireable<io.flow.internal.v0.enums.TimeseriesType>;
28507
+ export const thiagoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.ThiagoItemType>;
28488
28508
  export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
28489
28509
  export const trackingProcessingFailureClassification: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingProcessingFailureClassification>;
28490
28510
  export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
@@ -28598,8 +28618,6 @@ export const authorizedChargeStatus: PropTypes.Requireable<io.flow.internal.v0.m
28598
28618
  export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedLineItemCharge>;
28599
28619
  export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
28600
28620
  export const autoReviewCriteria: PropTypes.Requireable<io.flow.internal.v0.models.AutoReviewCriteria>;
28601
- export const backfill: PropTypes.Requireable<io.flow.internal.v0.models.Backfill>;
28602
- export const backfillForm: PropTypes.Requireable<io.flow.internal.v0.models.BackfillForm>;
28603
28621
  export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
28604
28622
  export const bankPayment: PropTypes.Requireable<io.flow.internal.v0.models.BankPayment>;
28605
28623
  export const bankPaymentDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentDeletedV2>;
@@ -28808,7 +28826,9 @@ export const classificationProduct: PropTypes.Requireable<io.flow.internal.v0.mo
28808
28826
  export const classificationProductHarmonization: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductHarmonization>;
28809
28827
  export const classificationProductId: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductId>;
28810
28828
  export const classificationProductRequest: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductRequest>;
28829
+ export const classificationProductRequestEnvelope: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductRequestEnvelope>;
28811
28830
  export const classificationProductResult: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductResult>;
28831
+ export const classificationProductResultEnvelope: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductResultEnvelope>;
28812
28832
  export const classificationProductSummary: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductSummary>;
28813
28833
  export const classificationProductSummaryPage: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductSummaryPage>;
28814
28834
  export const classificationRequeueRequest: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationRequeueRequest>;
@@ -28852,6 +28872,7 @@ export const cryptoAccountModificationForm: PropTypes.Requireable<io.flow.intern
28852
28872
  export const cryptoAccountPutForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccountPutForm>;
28853
28873
  export const cryptoAuthentication: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAuthentication>;
28854
28874
  export const cryptoAuthenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAuthenticationForm>;
28875
+ export const csvTransaction: PropTypes.Requireable<io.flow.internal.v0.models.CsvTransaction>;
28855
28876
  export const currencyInternalRate: PropTypes.Requireable<io.flow.internal.v0.models.CurrencyInternalRate>;
28856
28877
  export const customerPurgeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CustomerPurgeUpserted>;
28857
28878
  export const customerSecret: PropTypes.Requireable<io.flow.internal.v0.models.CustomerSecret>;
@@ -28865,10 +28886,6 @@ export const customsDetails: PropTypes.Requireable<io.flow.internal.v0.models.Cu
28865
28886
  export const customsDetailsForm: PropTypes.Requireable<io.flow.internal.v0.models.CustomsDetailsForm>;
28866
28887
  export const customsProductAttributeLabel: PropTypes.Requireable<io.flow.internal.v0.models.CustomsProductAttributeLabel>;
28867
28888
  export const customsProductLabels: PropTypes.Requireable<io.flow.internal.v0.models.CustomsProductLabels>;
28868
- export const dailyExperimentEngineResults: PropTypes.Requireable<io.flow.internal.v0.models.DailyExperimentEngineResults>;
28869
- export const dailyExperimentResults: PropTypes.Requireable<io.flow.internal.v0.models.DailyExperimentResults>;
28870
- export const dailyExperimentResultsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DailyExperimentResultsDeleted>;
28871
- export const dailyExperimentResultsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DailyExperimentResultsUpserted>;
28872
28889
  export const dailyValue: PropTypes.Requireable<io.flow.internal.v0.models.DailyValue>;
28873
28890
  export const dailyValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueDeleted>;
28874
28891
  export const dailyValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueUpserted>;
@@ -28969,33 +28986,10 @@ export const exclusionRuleDeleted: PropTypes.Requireable<io.flow.internal.v0.mod
28969
28986
  export const exclusionRuleExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleExportRequest>;
28970
28987
  export const exclusionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleUpserted>;
28971
28988
  export const expectedOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.ExpectedOrderSummary>;
28972
- export const experienceExperiment: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceExperiment>;
28973
28989
  export const experienceExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceExportRequest>;
28974
28990
  export const experienceImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceImportRequest>;
28975
28991
  export const experienceOrderActionRule: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceOrderActionRule>;
28976
28992
  export const experienceSessionReference: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceSessionReference>;
28977
- export const experienceVariant: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceVariant>;
28978
- export const experienceVariantForm: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceVariantForm>;
28979
- export const experienceVariantSummary: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceVariantSummary>;
28980
- export const experimentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentDeleted>;
28981
- export const experimentEngineResults: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentEngineResults>;
28982
- export const experimentForm: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentForm>;
28983
- export const experimentFormDefault: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentFormDefault>;
28984
- export const experimentFormDefaultDiscriminator: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentFormDefaultDiscriminator>;
28985
- export const experimentFormDefaultDiscriminatorValue: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentFormDefaultDiscriminatorValue>;
28986
- export const experimentFormDefaultVariant: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentFormDefaultVariant>;
28987
- export const experimentMilestone: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentMilestone>;
28988
- export const experimentMilestoneDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentMilestoneDeleted>;
28989
- export const experimentMilestoneForm: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentMilestoneForm>;
28990
- export const experimentMilestoneUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentMilestoneUpserted>;
28991
- export const experimentReference: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentReference>;
28992
- export const experimentResults: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentResults>;
28993
- export const experimentResultsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentResultsDeleted>;
28994
- export const experimentResultsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentResultsUpserted>;
28995
- export const experimentResultsWithTimestamp: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentResultsWithTimestamp>;
28996
- export const experimentSessionQueryForm: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentSessionQueryForm>;
28997
- export const experimentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentUpserted>;
28998
- export const experimentVersion: PropTypes.Requireable<io.flow.internal.v0.models.ExperimentVersion>;
28999
28993
  export const explicitStatement: PropTypes.Requireable<io.flow.internal.v0.models.ExplicitStatement>;
29000
28994
  export const explicitStatementFormAllPendingPostedTransactions: PropTypes.Requireable<io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions>;
29001
28995
  export const explicitStatementFormTransactionIds: PropTypes.Requireable<io.flow.internal.v0.models.ExplicitStatementFormTransactionIds>;
@@ -29014,7 +29008,6 @@ export const failedDimensionEstimateOpsInputWithReason: PropTypes.Requireable<io
29014
29008
  export const feature: PropTypes.Requireable<io.flow.internal.v0.models.Feature>;
29015
29009
  export const featureContextForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureContextForm>;
29016
29010
  export const featureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FeatureDeleted>;
29017
- export const featureExperiment: PropTypes.Requireable<io.flow.internal.v0.models.FeatureExperiment>;
29018
29011
  export const featureForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureForm>;
29019
29012
  export const featureGeoForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureGeoForm>;
29020
29013
  export const featureIdReference: PropTypes.Requireable<io.flow.internal.v0.models.FeatureIdReference>;
@@ -29025,11 +29018,7 @@ export const featureTaskDataSyncFeature: PropTypes.Requireable<io.flow.internal.
29025
29018
  export const featureTaskDataSyncOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FeatureTaskDataSyncOrganization>;
29026
29019
  export const featureUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FeatureUpserted>;
29027
29020
  export const featureValueForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureValueForm>;
29028
- export const featureValueReference: PropTypes.Requireable<io.flow.internal.v0.models.FeatureValueReference>;
29029
29021
  export const featureValueResult: PropTypes.Requireable<io.flow.internal.v0.models.FeatureValueResult>;
29030
- export const featureVariant: PropTypes.Requireable<io.flow.internal.v0.models.FeatureVariant>;
29031
- export const featureVariantForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureVariantForm>;
29032
- export const featureVariantSummary: PropTypes.Requireable<io.flow.internal.v0.models.FeatureVariantSummary>;
29033
29022
  export const fedex: PropTypes.Requireable<io.flow.internal.v0.models.Fedex>;
29034
29023
  export const fedexCrossborder: PropTypes.Requireable<io.flow.internal.v0.models.FedexCrossborder>;
29035
29024
  export const fee: PropTypes.Requireable<io.flow.internal.v0.models.Fee>;
@@ -29061,8 +29050,11 @@ export const flowLabProjectPutForm: PropTypes.Requireable<io.flow.internal.v0.mo
29061
29050
  export const flowLabelSetting: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabelSetting>;
29062
29051
  export const flowLabelSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabelSettingForm>;
29063
29052
  export const flowShopValidationError: PropTypes.Requireable<io.flow.internal.v0.models.FlowShopValidationError>;
29064
- export const forceTransitForm: PropTypes.Requireable<io.flow.internal.v0.models.ForceTransitForm>;
29053
+ export const fraudAuthorizationSummary: PropTypes.Requireable<io.flow.internal.v0.models.FraudAuthorizationSummary>;
29065
29054
  export const fraudPendingReview: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReview>;
29055
+ export const fraudPendingReviewAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewAuthorization>;
29056
+ export const fraudPendingReviewAuthorizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted>;
29057
+ export const fraudPendingReviewAuthorizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted>;
29066
29058
  export const fraudPendingReviewDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewDeleted>;
29067
29059
  export const fraudPendingReviewDetail: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewDetail>;
29068
29060
  export const fraudPendingReviewUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewUpserted>;
@@ -29071,6 +29063,12 @@ export const fraudProviderConfigurationFormRiskified: PropTypes.Requireable<io.f
29071
29063
  export const fraudProviderConfigurationRiskified: PropTypes.Requireable<io.flow.internal.v0.models.FraudProviderConfigurationRiskified>;
29072
29064
  export const fraudProviderConfigurationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FraudProviderConfigurationUpserted>;
29073
29065
  export const fraudReview: PropTypes.Requireable<io.flow.internal.v0.models.FraudReview>;
29066
+ export const fraudReviewAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewAuthorization>;
29067
+ export const fraudReviewAuthorizationDecision: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewAuthorizationDecision>;
29068
+ export const fraudReviewAuthorizationDecisionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted>;
29069
+ export const fraudReviewAuthorizationDecisionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted>;
29070
+ export const fraudReviewAuthorizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewAuthorizationDeleted>;
29071
+ export const fraudReviewAuthorizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewAuthorizationUpserted>;
29074
29072
  export const fraudReviewDecision: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewDecision>;
29075
29073
  export const fraudReviewDecisionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewDecisionDeleted>;
29076
29074
  export const fraudReviewDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewDecisionForm>;
@@ -29129,6 +29127,10 @@ export const googleLinker: PropTypes.Requireable<io.flow.internal.v0.models.Goog
29129
29127
  export const googleShoppingAccountParameters: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingAccountParameters>;
29130
29128
  export const googleShoppingSetting: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingSetting>;
29131
29129
  export const googleTagManager: PropTypes.Requireable<io.flow.internal.v0.models.GoogleTagManager>;
29130
+ export const harinathItem: PropTypes.Requireable<io.flow.internal.v0.models.HarinathItem>;
29131
+ export const harinathItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.HarinathItemDeleted>;
29132
+ export const harinathItemForm: PropTypes.Requireable<io.flow.internal.v0.models.HarinathItemForm>;
29133
+ export const harinathItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.HarinathItemUpserted>;
29132
29134
  export const harmonizationClassificationStatisticsData: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsData>;
29133
29135
  export const harmonizationClassificationStatisticsPublished: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished>;
29134
29136
  export const harmonizationCodesImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationCodesImport>;
@@ -29221,6 +29223,10 @@ export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
29221
29223
  export const keyReference: PropTypes.Requireable<io.flow.internal.v0.models.KeyReference>;
29222
29224
  export const klarnaAuthorizationParameters: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaAuthorizationParameters>;
29223
29225
  export const klarnaPaymentMethodCategory: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaPaymentMethodCategory>;
29226
+ export const konstantinItem: PropTypes.Requireable<io.flow.internal.v0.models.KonstantinItem>;
29227
+ export const konstantinItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.KonstantinItemDeleted>;
29228
+ export const konstantinItemForm: PropTypes.Requireable<io.flow.internal.v0.models.KonstantinItemForm>;
29229
+ export const konstantinItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.KonstantinItemUpserted>;
29224
29230
  export const labProjectSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettings>;
29225
29231
  export const labProjectSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsForm>;
29226
29232
  export const labProjectSettingsFormAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsFormAcceptance>;
@@ -29289,6 +29295,8 @@ export const localizedPriceBookItemUpserted: PropTypes.Requireable<io.flow.inter
29289
29295
  export const location: PropTypes.Requireable<io.flow.internal.v0.models.Location>;
29290
29296
  export const logisticsCapabilities: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsCapabilities>;
29291
29297
  export const logisticsCapabilitiesForm: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsCapabilitiesForm>;
29298
+ export const logisticsPayoutRequest: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsPayoutRequest>;
29299
+ export const logisticsPayoutRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsPayoutRequestForm>;
29292
29300
  export const logo: PropTypes.Requireable<io.flow.internal.v0.models.Logo>;
29293
29301
  export const lostChargeback: PropTypes.Requireable<io.flow.internal.v0.models.LostChargeback>;
29294
29302
  export const loyaltyProgram: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgram>;
@@ -29370,6 +29378,14 @@ export const merchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.
29370
29378
  export const messageStamp: PropTypes.Requireable<io.flow.internal.v0.models.MessageStamp>;
29371
29379
  export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
29372
29380
  export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
29381
+ export const michaelyanItem: PropTypes.Requireable<io.flow.internal.v0.models.MichaelyanItem>;
29382
+ export const michaelyanItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MichaelyanItemDeleted>;
29383
+ export const michaelyanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MichaelyanItemForm>;
29384
+ export const michaelyanItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MichaelyanItemUpserted>;
29385
+ export const miljenkoItem: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItem>;
29386
+ export const miljenkoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemDeleted>;
29387
+ export const miljenkoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemForm>;
29388
+ export const miljenkoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemUpserted>;
29373
29389
  export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
29374
29390
  export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
29375
29391
  export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
@@ -29426,6 +29442,9 @@ export const orderServiceChangeCsvForm: PropTypes.Requireable<io.flow.internal.v
29426
29442
  export const orderShipped: PropTypes.Requireable<io.flow.internal.v0.models.OrderShipped>;
29427
29443
  export const orderSubmissionForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderSubmissionForm>;
29428
29444
  export const orderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderSummary>;
29445
+ export const orderTaxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting>;
29446
+ export const orderTaxAndDutyInclusivitySettingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted>;
29447
+ export const orderTaxAndDutyInclusivitySettingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted>;
29429
29448
  export const orderTransaction: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransaction>;
29430
29449
  export const orderTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionDeleted>;
29431
29450
  export const orderTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionUpserted>;
@@ -29462,6 +29481,9 @@ export const organizationDebugTransaction: PropTypes.Requireable<io.flow.interna
29462
29481
  export const organizationInvitationAcceptForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationInvitationAcceptForm>;
29463
29482
  export const organizationMembershipCopy: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMembershipCopy>;
29464
29483
  export const organizationMembershipCopyForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMembershipCopyForm>;
29484
+ export const organizationMetadata: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMetadata>;
29485
+ export const organizationMetadataDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMetadataDeleted>;
29486
+ export const organizationMetadataUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMetadataUpserted>;
29465
29487
  export const organizationOnboardingStateAdjustmentResult: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult>;
29466
29488
  export const organizationOnboardingStateAuditResult: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationOnboardingStateAuditResult>;
29467
29489
  export const organizationPaymentSetting: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSetting>;
@@ -29484,6 +29506,26 @@ export const organizationStatusChange: PropTypes.Requireable<io.flow.internal.v0
29484
29506
  export const organizationStatusChangeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChangeDeleted>;
29485
29507
  export const organizationStatusChangeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChangeUpserted>;
29486
29508
  export const organizationsAuditCheckReport: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationsAuditCheckReport>;
29509
+ export const otherRecord: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecord>;
29510
+ export const otherRecordAccount: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordAccount>;
29511
+ export const otherRecordAccountSourceSummary: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordAccountSourceSummary>;
29512
+ export const otherRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordDeleted>;
29513
+ export const otherRecordDiscount: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordDiscount>;
29514
+ export const otherRecordFees: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordFees>;
29515
+ export const otherRecordIdentifiers: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordIdentifiers>;
29516
+ export const otherRecordMerchantReference: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMerchantReference>;
29517
+ export const otherRecordMetadata: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadata>;
29518
+ export const otherRecordMetadataCarrierCharge: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge>;
29519
+ export const otherRecordMetadataChannel: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataChannel>;
29520
+ export const otherRecordMetadataFailedPayout: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataFailedPayout>;
29521
+ export const otherRecordMetadataManual: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataManual>;
29522
+ export const otherRecordMetadataShippingLabel: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataShippingLabel>;
29523
+ export const otherRecordMetadataShippingLabelRevenueShare: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare>;
29524
+ export const otherRecordMetadataTrueup: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataTrueup>;
29525
+ export const otherRecordOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordOrderSummary>;
29526
+ export const otherRecordOrderSummaryIdentifiers: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers>;
29527
+ export const otherRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordUpserted>;
29528
+ export const otherRecordWithholdings: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordWithholdings>;
29487
29529
  export const partner: PropTypes.Requireable<io.flow.internal.v0.models.Partner>;
29488
29530
  export const partnerAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorization>;
29489
29531
  export const partnerAuthorizationForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorizationForm>;
@@ -29510,6 +29552,7 @@ export const paymentProcessorAccountDeleted: PropTypes.Requireable<io.flow.inter
29510
29552
  export const paymentProcessorAccountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorAccountUpserted>;
29511
29553
  export const paymentProcessorMerchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantDeleted>;
29512
29554
  export const paymentProcessorMerchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantUpserted>;
29555
+ export const paymentSummary: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummary>;
29513
29556
  export const paymentSummaryV2: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummaryV2>;
29514
29557
  export const payoutStatusCounts: PropTypes.Requireable<io.flow.internal.v0.models.PayoutStatusCounts>;
29515
29558
  export const paypalAccount: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAccount>;
@@ -29676,8 +29719,6 @@ export const reportingMonetaryValue: PropTypes.Requireable<io.flow.internal.v0.m
29676
29719
  export const reportingOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportingOrderSummary>;
29677
29720
  export const reportingOrganizationSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportingOrganizationSummary>;
29678
29721
  export const reportingPayment: PropTypes.Requireable<io.flow.internal.v0.models.ReportingPayment>;
29679
- export const reportingPaymentMetadata: PropTypes.Requireable<io.flow.internal.v0.models.ReportingPaymentMetadata>;
29680
- export const reportingPaymentMetadataAdditionalAuthorizations: PropTypes.Requireable<io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations>;
29681
29722
  export const reportingProvince: PropTypes.Requireable<io.flow.internal.v0.models.ReportingProvince>;
29682
29723
  export const reportingReconciliation: PropTypes.Requireable<io.flow.internal.v0.models.ReportingReconciliation>;
29683
29724
  export const reportingRefundReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportingRefundReference>;
@@ -29688,6 +29729,7 @@ export const reportingVatRemittance: PropTypes.Requireable<io.flow.internal.v0.m
29688
29729
  export const reportingVatRemittanceRate: PropTypes.Requireable<io.flow.internal.v0.models.ReportingVatRemittanceRate>;
29689
29730
  export const reportingVendor: PropTypes.Requireable<io.flow.internal.v0.models.ReportingVendor>;
29690
29731
  export const requeueRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RequeueRequestForm>;
29732
+ export const rescreenRestrictionsProducts: PropTypes.Requireable<io.flow.internal.v0.models.RescreenRestrictionsProducts>;
29691
29733
  export const restrictionCategory: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionCategory>;
29692
29734
  export const restrictionFilter: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionFilter>;
29693
29735
  export const restrictionHistoryItemReviewDecision: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision>;
@@ -29950,6 +29992,8 @@ export const taxonomyNode: PropTypes.Requireable<io.flow.internal.v0.models.Taxo
29950
29992
  export const techOnboardingDescription: PropTypes.Requireable<io.flow.internal.v0.models.TechOnboardingDescription>;
29951
29993
  export const test: PropTypes.Requireable<io.flow.internal.v0.models.Test>;
29952
29994
  export const testForm: PropTypes.Requireable<io.flow.internal.v0.models.TestForm>;
29995
+ export const thiagoItem: PropTypes.Requireable<io.flow.internal.v0.models.ThiagoItem>;
29996
+ export const thiagoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.ThiagoItemForm>;
29953
29997
  export const thirdPartyLogisticsPartner: PropTypes.Requireable<io.flow.internal.v0.models.ThirdPartyLogisticsPartner>;
29954
29998
  export const thirdPartyLogisticsPickUpTimeWindow: PropTypes.Requireable<io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow>;
29955
29999
  export const tieredFee: PropTypes.Requireable<io.flow.internal.v0.models.TieredFee>;
@@ -29961,6 +30005,10 @@ export const timeToClassifyAggregatedUpserted: PropTypes.Requireable<io.flow.int
29961
30005
  export const timeToClassifyDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TimeToClassifyDeleted>;
29962
30006
  export const timeToClassifyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TimeToClassifyUpserted>;
29963
30007
  export const timeWithTimezone: PropTypes.Requireable<io.flow.internal.v0.models.TimeWithTimezone>;
30008
+ export const trackingAssuranceAnalysis: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysis>;
30009
+ export const trackingAssuranceAnalysisDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted>;
30010
+ export const trackingAssuranceAnalysisUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted>;
30011
+ export const trackingDebugForceTransitForm: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugForceTransitForm>;
29964
30012
  export const trackingDebugLabel: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabel>;
29965
30013
  export const trackingDebugLabelEvent: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabelEvent>;
29966
30014
  export const trackingDebugLabelLocation: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabelLocation>;
@@ -30047,7 +30095,6 @@ export const discountRequestOfferForm: PropTypes.Requireable<io.flow.internal.v0
30047
30095
  export const disputeDetails: PropTypes.Requireable<io.flow.internal.v0.unions.DisputeDetails>;
30048
30096
  export const dutyExpression: PropTypes.Requireable<io.flow.internal.v0.unions.DutyExpression>;
30049
30097
  export const event: PropTypes.Requireable<io.flow.internal.v0.unions.Event>;
30050
- export const experiment: PropTypes.Requireable<io.flow.internal.v0.unions.Experiment>;
30051
30098
  export const explicitStatementForm: PropTypes.Requireable<io.flow.internal.v0.unions.ExplicitStatementForm>;
30052
30099
  export const exportSchedule: PropTypes.Requireable<io.flow.internal.v0.unions.ExportSchedule>;
30053
30100
  export const featureDefaultValue: PropTypes.Requireable<io.flow.internal.v0.unions.FeatureDefaultValue>;
@@ -30105,6 +30152,4 @@ export const taxAmount: PropTypes.Requireable<io.flow.internal.v0.unions.TaxAmou
30105
30152
  export const tracker: PropTypes.Requireable<io.flow.internal.v0.unions.Tracker>;
30106
30153
  export const transaction: PropTypes.Requireable<io.flow.internal.v0.unions.Transaction>;
30107
30154
  export const transactionSummary: PropTypes.Requireable<io.flow.internal.v0.unions.TransactionSummary>;
30108
- export const validationRule: PropTypes.Requireable<io.flow.internal.v0.unions.ValidationRule>;
30109
- export const variant: PropTypes.Requireable<io.flow.internal.v0.unions.Variant>;
30110
- export const variantForm: PropTypes.Requireable<io.flow.internal.v0.unions.VariantForm>;
30155
+ export const validationRule: PropTypes.Requireable<io.flow.internal.v0.unions.ValidationRule>;