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

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,9 @@ 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;
8762
8304
  }
8763
8305
 
8764
8306
  interface ReportingFx {
@@ -8767,6 +8309,7 @@ declare namespace io.flow.billing.reporting.v0.models {
8767
8309
  readonly 'product': io.flow.billing.reporting.v0.models.ReportingUsd;
8768
8310
  readonly 'tax': io.flow.billing.reporting.v0.models.ReportingUsd;
8769
8311
  readonly 'duty': io.flow.billing.reporting.v0.models.ReportingUsd;
8312
+ readonly 'tips'?: io.flow.billing.reporting.v0.models.ReportingUsd;
8770
8313
  readonly 'total': io.flow.billing.reporting.v0.models.ReportingUsd;
8771
8314
  }
8772
8315
 
@@ -8784,6 +8327,7 @@ declare namespace io.flow.billing.reporting.v0.models {
8784
8327
  readonly 'processing': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8785
8328
  readonly 'rate_lock': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8786
8329
  readonly 'transfer': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8330
+ readonly 'total'?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8787
8331
  }
8788
8332
 
8789
8333
  interface ReportingMerchantSubsidies {
@@ -8791,6 +8335,7 @@ declare namespace io.flow.billing.reporting.v0.models {
8791
8335
  readonly 'tax': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8792
8336
  readonly 'duty': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8793
8337
  readonly 'ccf': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8338
+ readonly 'total'?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8794
8339
  }
8795
8340
 
8796
8341
  interface ReportingMerchantTransactions {
@@ -8799,6 +8344,8 @@ declare namespace io.flow.billing.reporting.v0.models {
8799
8344
  readonly 'tax': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8800
8345
  readonly 'duty': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8801
8346
  readonly 'freight': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8347
+ readonly 'discount'?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8348
+ readonly 'total'?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8802
8349
  }
8803
8350
 
8804
8351
  interface ReportingMonetaryValue {
@@ -8821,25 +8368,14 @@ declare namespace io.flow.billing.reporting.v0.models {
8821
8368
  }
8822
8369
 
8823
8370
  interface ReportingPayment {
8824
- readonly 'metadata'?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadata;
8825
8371
  readonly 'psp': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8826
8372
  readonly 'credit': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8373
+ readonly 'subsidized': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8374
+ readonly 'manual': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8375
+ readonly 'cod': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8827
8376
  readonly 'total': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8828
8377
  }
8829
8378
 
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
8379
  interface ReportingProvince {
8844
8380
  readonly 'code'?: string;
8845
8381
  readonly 'name': string;
@@ -8868,6 +8404,7 @@ declare namespace io.flow.billing.reporting.v0.models {
8868
8404
  readonly 'ccf': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8869
8405
  readonly 'emergency': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8870
8406
  readonly 'peak': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8407
+ readonly 'total'?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8871
8408
  }
8872
8409
 
8873
8410
  interface ReportingUsd {
@@ -9834,7 +9371,6 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
9834
9371
  readonly 'sequence_number': number;
9835
9372
  readonly 'fulfilled_at': string;
9836
9373
  readonly 'completes_order': boolean;
9837
- readonly 'payment': io.flow.billing.reporting.v0.models.ReportingPayment;
9838
9374
  readonly 'value': io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
9839
9375
  readonly 'dispatch_country'?: io.flow.billing.reporting.v0.models.ReportingCountry;
9840
9376
  readonly 'destination': io.flow.billing.reporting.v0.models.ReportingDestination;
@@ -9956,6 +9492,21 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
9956
9492
  readonly 'channel_organization_identifier': io.flow.shopify.markets.internal.v0.models.ChannelOrganizationIdentifier;
9957
9493
  }
9958
9494
 
9495
+ interface OrderTaxAndDutyInclusivitySettingDeleted {
9496
+ readonly 'discriminator': 'order_tax_and_duty_inclusivity_setting_deleted';
9497
+ readonly 'event_id': string;
9498
+ readonly 'timestamp': string;
9499
+ readonly 'organization': string;
9500
+ readonly 'id': string;
9501
+ }
9502
+
9503
+ interface OrderTaxAndDutyInclusivitySettingUpserted {
9504
+ readonly 'discriminator': 'order_tax_and_duty_inclusivity_setting_upserted';
9505
+ readonly 'event_id': string;
9506
+ readonly 'timestamp': string;
9507
+ readonly 'order_tax_and_duty_inclusivity_setting': io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
9508
+ }
9509
+
9959
9510
  interface ShopifyMarketsMetricsDeleted {
9960
9511
  readonly 'discriminator': 'shopify_markets_metrics_deleted';
9961
9512
  readonly 'event_id': string;
@@ -10041,7 +9592,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
10041
9592
  }
10042
9593
 
10043
9594
  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);
9595
+ 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
9596
  }
10046
9597
 
10047
9598
  declare namespace io.flow.experience.v0.enums {
@@ -13217,7 +12768,7 @@ declare namespace io.flow.item.v0.models {
13217
12768
  }
13218
12769
 
13219
12770
  declare namespace io.flow.billing.internal.v0.enums {
13220
- type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
12771
+ type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
13221
12772
  type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
13222
12773
  type AccountType = 'channel' | 'organization';
13223
12774
  type AdjustmentTransactionType = 'adjustment' | 'reversal';
@@ -14658,7 +14209,7 @@ declare namespace io.flow.billing.v0.models {
14658
14209
  readonly 'discriminator': 'channel';
14659
14210
  readonly 'method': string;
14660
14211
  readonly 'card'?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
14661
- readonly 'organization_transaction': io.flow.billing.v0.models.TransactionReference;
14212
+ readonly 'organization_transaction': io.flow.billing.v0.models.TransactionMetadataChannelOrganizationTransaction;
14662
14213
  }
14663
14214
 
14664
14215
  interface TransactionMetadataChannelCardMetadata {
@@ -14671,6 +14222,11 @@ declare namespace io.flow.billing.v0.models {
14671
14222
  readonly 'country': string;
14672
14223
  }
14673
14224
 
14225
+ interface TransactionMetadataChannelOrganizationTransaction {
14226
+ readonly 'id': string;
14227
+ readonly 'metadata': io.flow.billing.v0.models.TransactionMetadataPaymentTransaction;
14228
+ }
14229
+
14674
14230
  interface TransactionMetadataFailedPayout {
14675
14231
  readonly 'discriminator': 'failed_payout';
14676
14232
  readonly 'failed_payout': io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
@@ -16032,7 +15588,7 @@ declare namespace io.flow.checkout.v0.unions {
16032
15588
  declare namespace io.flow.organization.onboarding.state.v0.enums {
16033
15589
  type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
16034
15590
  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';
15591
+ 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
15592
  }
16037
15593
 
16038
15594
  declare namespace io.flow.organization.onboarding.state.v0.models {
@@ -16092,6 +15648,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
16092
15648
  readonly 'onboarding_started_at'?: string;
16093
15649
  }
16094
15650
 
15651
+ interface RejectionPutForm {
15652
+ readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
15653
+ readonly 'description': string;
15654
+ }
15655
+
16095
15656
  interface SetupBlocked {
16096
15657
  readonly 'discriminator': 'setup_blocked';
16097
15658
  readonly 'reasons': io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
@@ -16438,37 +15999,229 @@ declare namespace io.flow.billing.bank.account.v0.models {
16438
15999
  readonly 'account_number': string;
16439
16000
  }
16440
16001
 
16441
- interface BankAccountInfoFra {
16442
- readonly 'discriminator': 'fra';
16443
- readonly 'swift_code': string;
16444
- readonly 'iban': string;
16002
+ interface BankAccountInfoFra {
16003
+ readonly 'discriminator': 'fra';
16004
+ readonly 'swift_code': string;
16005
+ readonly 'iban': string;
16006
+ }
16007
+
16008
+ interface BankAccountInfoGbr {
16009
+ readonly 'discriminator': 'gbr';
16010
+ readonly 'swift_code': string;
16011
+ readonly 'iban': string;
16012
+ }
16013
+
16014
+ interface BankAccountInfoIta {
16015
+ readonly 'discriminator': 'ita';
16016
+ readonly 'swift_code': string;
16017
+ readonly 'iban': string;
16018
+ }
16019
+
16020
+ interface BankAccountInfoUsa {
16021
+ readonly 'discriminator': 'usa';
16022
+ readonly 'routing_number': string;
16023
+ readonly 'account_number': string;
16024
+ }
16025
+ }
16026
+
16027
+ declare namespace io.flow.billing.bank.account.v0.unions {
16028
+ 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);
16029
+ }
16030
+
16031
+ declare namespace io.flow.experiment.internal.v0.enums {
16032
+ type ExperimentDiscriminatorKey = 'experience' | 'feature';
16033
+ type Scope = 'organization' | 'global';
16034
+ type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
16035
+ type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
16036
+ type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
16037
+ }
16038
+
16039
+ declare namespace io.flow.experiment.internal.v0.models {
16040
+ interface DailyExperimentResults {
16041
+ readonly 'id': string;
16042
+ readonly 'day': string;
16043
+ readonly 'experiment_key': string;
16044
+ readonly 'experiment_variant_key': string;
16045
+ readonly 'visitor_count': number;
16046
+ readonly 'visitors_with_transactions_count': number;
16047
+ readonly 'conversion_rate': number;
16048
+ readonly 'lower_bound': number;
16049
+ readonly 'upper_bound': number;
16050
+ readonly 'probability_of_being_best'?: number;
16051
+ readonly 'currency'?: string;
16052
+ readonly 'average_order_value'?: number;
16053
+ readonly 'revenue_generated'?: number;
16054
+ readonly 'total_order_count'?: number;
16055
+ readonly 'conversion_rate_uplift'?: number;
16056
+ readonly 'average_order_value_uplift'?: number;
16057
+ readonly 'revenue_generated_uplift'?: number;
16058
+ }
16059
+
16060
+ interface ExperienceExperiment {
16061
+ readonly 'discriminator': 'experience';
16062
+ readonly 'id': string;
16063
+ readonly 'key': string;
16064
+ readonly 'name': string;
16065
+ readonly 'description'?: string;
16066
+ readonly 'status': io.flow.experiment.internal.v0.enums.Status;
16067
+ readonly 'emails': string[];
16068
+ readonly 'started_at'?: string;
16069
+ readonly 'ended_at'?: string;
16070
+ readonly 'variants': io.flow.experiment.internal.v0.models.ExperienceVariant[];
16071
+ readonly 'transitions'?: io.flow.experiment.internal.v0.enums.Status[];
16072
+ readonly 'significance_action'?: io.flow.experiment.internal.v0.enums.SignificanceAction;
16073
+ }
16074
+
16075
+ interface ExperienceVariant {
16076
+ readonly 'discriminator': 'experience_variant';
16077
+ readonly 'experience': io.flow.experiment.internal.v0.models.ExperienceVariantSummary;
16078
+ readonly 'traffic_percentage': number;
16079
+ readonly 'experiment_results'?: io.flow.experiment.internal.v0.models.ExperimentResults;
16080
+ }
16081
+
16082
+ interface ExperienceVariantForm {
16083
+ readonly 'discriminator': 'experience';
16084
+ readonly 'key': string;
16085
+ readonly 'traffic_percentage': number;
16086
+ }
16087
+
16088
+ interface ExperienceVariantSummary {
16089
+ readonly 'key': string;
16090
+ readonly 'name'?: string;
16091
+ }
16092
+
16093
+ interface ExperimentForm {
16094
+ readonly 'name': string;
16095
+ readonly 'description'?: string;
16096
+ readonly 'emails': string[];
16097
+ readonly 'variants': io.flow.experiment.internal.v0.unions.VariantForm[];
16098
+ readonly 'significance_action'?: io.flow.experiment.internal.v0.enums.SignificanceAction;
16099
+ readonly 'session_query'?: string;
16100
+ }
16101
+
16102
+ interface ExperimentFormDefault {
16103
+ readonly 'discriminator': io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator;
16104
+ readonly 'variants'?: io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant[];
16105
+ }
16106
+
16107
+ interface ExperimentFormDefaultDiscriminator {
16108
+ readonly 'key': io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey;
16109
+ readonly 'values': io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
16110
+ }
16111
+
16112
+ interface ExperimentFormDefaultDiscriminatorValue {
16113
+ readonly 'key': string;
16114
+ readonly 'name': string;
16115
+ readonly 'scope': io.flow.experiment.internal.v0.enums.Scope;
16116
+ }
16117
+
16118
+ interface ExperimentFormDefaultVariant {
16119
+ readonly 'key': string;
16120
+ readonly 'name': string;
16121
+ readonly 'traffic_percentage'?: number;
16122
+ }
16123
+
16124
+ interface ExperimentMilestone {
16125
+ readonly 'id': string;
16126
+ readonly 'experiment': io.flow.experiment.internal.v0.models.ExperimentReference;
16127
+ readonly 'timestamp': string;
16128
+ readonly 'description': string;
16129
+ }
16130
+
16131
+ interface ExperimentMilestoneForm {
16132
+ readonly 'timestamp'?: string;
16133
+ readonly 'description': string;
16134
+ }
16135
+
16136
+ interface ExperimentReference {
16137
+ readonly 'key': string;
16138
+ }
16139
+
16140
+ interface ExperimentResults {
16141
+ readonly 'id': string;
16142
+ readonly 'experiment_key': string;
16143
+ readonly 'experiment_variant_key': string;
16144
+ readonly 'visitor_count': number;
16145
+ readonly 'visitors_with_transactions_count': number;
16146
+ readonly 'conversion_rate': number;
16147
+ readonly 'lower_bound': number;
16148
+ readonly 'upper_bound': number;
16149
+ readonly 'probability_of_being_best'?: number;
16150
+ readonly 'currency'?: string;
16151
+ readonly 'average_order_value'?: number;
16152
+ readonly 'revenue_generated'?: number;
16153
+ readonly 'total_order_count'?: number;
16154
+ readonly 'conversion_rate_uplift'?: number;
16155
+ readonly 'average_order_value_uplift'?: number;
16156
+ readonly 'revenue_generated_uplift'?: number;
16157
+ }
16158
+
16159
+ interface ExperimentResultsWithTimestamp {
16160
+ readonly 'timestamp': string;
16161
+ readonly 'results': io.flow.experiment.internal.v0.models.ExperimentResults[];
16162
+ }
16163
+
16164
+ interface ExperimentSessionQueryForm {
16165
+ readonly 'session_query'?: string;
16166
+ }
16167
+
16168
+ interface ExperimentVersion {
16169
+ readonly 'id': string;
16170
+ readonly 'timestamp': string;
16171
+ readonly 'type': io.flow.common.v0.enums.ChangeType;
16172
+ readonly 'experiment': io.flow.experiment.internal.v0.unions.Experiment;
16173
+ }
16174
+
16175
+ interface FeatureExperiment {
16176
+ readonly 'discriminator': 'feature';
16177
+ readonly 'id': string;
16178
+ readonly 'key': string;
16179
+ readonly 'name': string;
16180
+ readonly 'description'?: string;
16181
+ readonly 'status': io.flow.experiment.internal.v0.enums.Status;
16182
+ readonly 'emails': string[];
16183
+ readonly 'scope': io.flow.experiment.internal.v0.enums.Scope;
16184
+ readonly 'started_at'?: string;
16185
+ readonly 'ended_at'?: string;
16186
+ readonly 'variants': io.flow.experiment.internal.v0.models.FeatureVariant[];
16187
+ readonly 'transitions'?: io.flow.experiment.internal.v0.enums.Status[];
16188
+ readonly 'significance_action'?: io.flow.experiment.internal.v0.enums.SignificanceAction;
16189
+ readonly 'session_query'?: string;
16190
+ }
16191
+
16192
+ interface FeatureValueReference {
16193
+ readonly 'feature_key': string;
16194
+ readonly 'value': string;
16445
16195
  }
16446
16196
 
16447
- interface BankAccountInfoGbr {
16448
- readonly 'discriminator': 'gbr';
16449
- readonly 'swift_code': string;
16450
- readonly 'iban': string;
16197
+ interface FeatureVariant {
16198
+ readonly 'discriminator': 'feature_variant';
16199
+ readonly 'value': io.flow.experiment.internal.v0.models.FeatureVariantSummary;
16200
+ readonly 'traffic_percentage': number;
16201
+ readonly 'experiment_results'?: io.flow.experiment.internal.v0.models.ExperimentResults;
16451
16202
  }
16452
16203
 
16453
- interface BankAccountInfoIta {
16454
- readonly 'discriminator': 'ita';
16455
- readonly 'swift_code': string;
16456
- readonly 'iban': string;
16204
+ interface FeatureVariantForm {
16205
+ readonly 'discriminator': 'feature';
16206
+ readonly 'key': string;
16207
+ readonly 'traffic_percentage': number;
16457
16208
  }
16458
16209
 
16459
- interface BankAccountInfoUsa {
16460
- readonly 'discriminator': 'usa';
16461
- readonly 'routing_number': string;
16462
- readonly 'account_number': string;
16210
+ interface FeatureVariantSummary {
16211
+ readonly 'key': string;
16212
+ readonly 'feature_value': io.flow.experiment.internal.v0.models.FeatureValueReference;
16213
+ readonly 'name'?: string;
16463
16214
  }
16464
16215
  }
16465
16216
 
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);
16217
+ declare namespace io.flow.experiment.internal.v0.unions {
16218
+ type Experiment = (io.flow.experiment.internal.v0.models.ExperienceExperiment | io.flow.experiment.internal.v0.models.FeatureExperiment);
16219
+ type Variant = (io.flow.experiment.internal.v0.models.ExperienceVariant | io.flow.experiment.internal.v0.models.FeatureVariant);
16220
+ type VariantForm = (io.flow.experiment.internal.v0.models.ExperienceVariantForm | io.flow.experiment.internal.v0.models.FeatureVariantForm);
16468
16221
  }
16469
16222
 
16470
16223
  declare namespace io.flow.internal.v0.enums {
16471
- type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
16224
+ type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
16472
16225
  type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
16473
16226
  type AccountType = 'channel' | 'organization';
16474
16227
  type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
@@ -16495,7 +16248,7 @@ declare namespace io.flow.internal.v0.enums {
16495
16248
  type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
16496
16249
  type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
16497
16250
  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';
16251
+ 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
16252
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
16500
16253
  type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
16501
16254
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
@@ -16515,6 +16268,7 @@ declare namespace io.flow.internal.v0.enums {
16515
16268
  type ClassificationType = 'None' | 'Manual' | 'ML';
16516
16269
  type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
16517
16270
  type ColmItemType = 'physical' | 'digital';
16271
+ type Company = 'globale' | 'flow';
16518
16272
  type ComplianceType = 'weee';
16519
16273
  type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
16520
16274
  type ContentStatus = 'draft' | 'live' | 'archived';
@@ -16544,11 +16298,10 @@ declare namespace io.flow.internal.v0.enums {
16544
16298
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
16545
16299
  type EmptyAttribute = 'irrelevant';
16546
16300
  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';
16301
+ 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
16302
  type ExperienceImportType = 'experience_with_settings';
16549
16303
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
16550
16304
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
16551
- type ExperimentDiscriminatorKey = 'experience' | 'feature';
16552
16305
  type ExportContentType = 'item' | 'price_book_item';
16553
16306
  type FeatureScope = 'global' | 'organization';
16554
16307
  type FeatureStatus = 'draft' | 'active' | 'archived';
@@ -16563,6 +16316,8 @@ declare namespace io.flow.internal.v0.enums {
16563
16316
  type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
16564
16317
  type FtpProtocol = 'sftp' | 'ftp';
16565
16318
  type GoogleAnalyticsPlugin = 'ec';
16319
+ type HarinathItemType = 'digital' | 'physical';
16320
+ type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
16566
16321
  type HttpMethod = 'get' | 'post';
16567
16322
  type InventoryCheckService = 'sfcc' | 'gymboree';
16568
16323
  type InventoryReservation = 'synchronous-on-submit';
@@ -16572,6 +16327,7 @@ declare namespace io.flow.internal.v0.enums {
16572
16327
  type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
16573
16328
  type ItemType = 'standard' | 'multi_product';
16574
16329
  type KeywordType = 'positive' | 'negative';
16330
+ type KonstantinItemType = 'physical' | 'digital';
16575
16331
  type LabelBillingStrategy = 'quote' | 'carrier';
16576
16332
  type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
16577
16333
  type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
@@ -16579,6 +16335,7 @@ declare namespace io.flow.internal.v0.enums {
16579
16335
  type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
16580
16336
  type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
16581
16337
  type LogisticsCapability = 'logistics_address_correction';
16338
+ type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
16582
16339
  type ManualReviewRuleStatus = 'active' | 'archived';
16583
16340
  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
16341
  type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
@@ -16592,6 +16349,8 @@ declare namespace io.flow.internal.v0.enums {
16592
16349
  type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
16593
16350
  type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
16594
16351
  type MatiasItemType = 'physical' | 'digital';
16352
+ type MichaelyanItemType = 'physical' | 'digital';
16353
+ type MiljenkoItemType = 'physical' | 'digital';
16595
16354
  type MixedBagWeight = '0' | '1' | '2';
16596
16355
  type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
16597
16356
  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 +16359,7 @@ declare namespace io.flow.internal.v0.enums {
16600
16359
  type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'category_constraints' | 'miscellaneous';
16601
16360
  type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
16602
16361
  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';
16362
+ 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
16363
  type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
16605
16364
  type OrderAddressValidationStatus = 'success' | 'failed';
16606
16365
  type OrderAttributeIntent = 'discount_code';
@@ -16642,7 +16401,7 @@ declare namespace io.flow.internal.v0.enums {
16642
16401
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
16643
16402
  type ReportPaymentType = 'credit' | 'debit';
16644
16403
  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';
16404
+ 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
16405
  type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
16647
16406
  type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
16648
16407
  type ResponsibleParty = 'flow' | 'organization';
@@ -16652,7 +16411,6 @@ declare namespace io.flow.internal.v0.enums {
16652
16411
  type RevenueRecordType = 'pending' | 'sales' | 'refund';
16653
16412
  type RiskCheck = 'three_d_secure';
16654
16413
  type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
16655
- type Scope = 'organization' | 'global';
16656
16414
  type SerialReservationError = 'duration_too_long' | 'items_not_found' | 'reservation_expired';
16657
16415
  type ServiceName = 'catalog' | 'demandware' | 'metric';
16658
16416
  type SessionCountryStatus = 'enabled' | 'disabled';
@@ -16670,24 +16428,23 @@ declare namespace io.flow.internal.v0.enums {
16670
16428
  type ShopifyPromotionStatus = 'active' | 'inactive';
16671
16429
  type ShopifyService = 'payment' | 'duty_tax_calculator';
16672
16430
  type ShrutiDemoType = 'digital' | 'physical';
16673
- type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
16674
16431
  type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
16675
16432
  type SnoozeNextActionWith = 'customer_service' | 'engineering';
16676
16433
  type SnoozeSourceType = 'task' | 'invariant';
16677
16434
  type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
16678
16435
  type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
16679
16436
  type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
16680
- type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
16681
16437
  type SubscriptionFrequency = 'yearly' | 'monthly';
16682
16438
  type SuggestionAction = 'accept' | 'validate' | 'review';
16683
16439
  type SvitlanaType = 'physical' | 'digital';
16684
16440
  type TamItemType = 'physical' | 'digital';
16685
16441
  type TariffEligibilityType = 'rex';
16686
16442
  type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
16443
+ type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
16687
16444
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
16688
16445
  type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
16689
16446
  type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
16690
- type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
16447
+ type ThiagoItemType = 'digital' | 'physical';
16691
16448
  type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
16692
16449
  type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
16693
16450
  type TransactionPostingMethod = 'time' | 'proof';
@@ -17491,17 +17248,6 @@ declare namespace io.flow.internal.v0.models {
17491
17248
  readonly 'action'?: io.flow.internal.v0.enums.RestrictionStatus;
17492
17249
  }
17493
17250
 
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
17251
  interface BankAccountReference {
17506
17252
  readonly 'id': string;
17507
17253
  }
@@ -17622,7 +17368,7 @@ declare namespace io.flow.internal.v0.models {
17622
17368
  readonly 'discriminator': 'billing_csv_transaction_upserted';
17623
17369
  readonly 'event_id': string;
17624
17370
  readonly 'timestamp': string;
17625
- readonly 'transaction': io.flow.billing.csv.v0.models.BillingCsvTransaction;
17371
+ readonly 'transaction': io.flow.internal.v0.models.CsvTransaction;
17626
17372
  }
17627
17373
 
17628
17374
  interface BillingInvoiceSummary {
@@ -19059,28 +18805,38 @@ declare namespace io.flow.internal.v0.models {
19059
18805
  }
19060
18806
 
19061
18807
  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;
18808
+ readonly 'MerchantId': string;
18809
+ readonly 'ProductName': string;
18810
+ readonly 'ProductDescription': string;
18811
+ readonly 'ProductIdInternal': string;
18812
+ readonly 'ProductIdExternal': string;
18813
+ readonly 'ProductGroupCode'?: string;
18814
+ readonly 'ProductUrl'?: string;
18815
+ readonly 'ProductImage'?: string;
18816
+ readonly 'ProductAttributes': Record<string, string>;
18817
+ readonly 'Categories'?: string[];
18818
+ readonly 'PlatformId': io.flow.internal.v0.enums.ClassificationPlatform;
18819
+ }
18820
+
18821
+ interface ClassificationProductRequestEnvelope {
18822
+ readonly 'messageType': string[];
18823
+ readonly 'message': io.flow.internal.v0.models.ClassificationProductRequest;
19073
18824
  }
19074
18825
 
19075
18826
  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;
18827
+ readonly 'productId': string;
18828
+ readonly 'merchantId': string;
18829
+ readonly 'platformId': io.flow.internal.v0.enums.ClassificationPlatform;
18830
+ readonly 'hsCode'?: string;
19080
18831
  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;
18832
+ readonly 'classificationDecision': io.flow.internal.v0.enums.ClassificationDecision;
18833
+ readonly 'classificationType': io.flow.internal.v0.enums.ClassificationType;
18834
+ readonly 'clothingAgeClassification'?: io.flow.internal.v0.enums.ClothingAgeClassification;
18835
+ }
18836
+
18837
+ interface ClassificationProductResultEnvelope {
18838
+ readonly 'messageType': string[];
18839
+ readonly 'message': io.flow.internal.v0.models.ClassificationProductResult;
19084
18840
  }
19085
18841
 
19086
18842
  interface ClassificationProductSummary {
@@ -19408,6 +19164,25 @@ declare namespace io.flow.internal.v0.models {
19408
19164
  readonly 'signature_secret': string;
19409
19165
  }
19410
19166
 
19167
+ interface CsvTransaction {
19168
+ readonly 'id': string;
19169
+ readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
19170
+ readonly 'account': io.flow.internal.v0.models.OtherRecordAccount;
19171
+ readonly 'metadata'?: io.flow.internal.v0.models.OtherRecordMetadata;
19172
+ readonly 'order'?: io.flow.internal.v0.models.OtherRecordOrderSummary;
19173
+ readonly 'currency': string;
19174
+ readonly 'source': io.flow.billing.v0.enums.TransactionSource;
19175
+ readonly 'parent'?: io.flow.billing.v0.models.ParentTransactionSummary;
19176
+ readonly 'gross': number;
19177
+ readonly 'fees': io.flow.internal.v0.models.OtherRecordFees;
19178
+ readonly 'withholdings': io.flow.internal.v0.models.OtherRecordWithholdings;
19179
+ readonly 'discount': io.flow.internal.v0.models.OtherRecordDiscount;
19180
+ readonly 'net': number;
19181
+ readonly 'identifiers': io.flow.internal.v0.models.OtherRecordIdentifiers;
19182
+ readonly 'created_at': string;
19183
+ readonly 'updated_at': string;
19184
+ }
19185
+
19411
19186
  interface CurrencyInternalRate {
19412
19187
  readonly 'id': string;
19413
19188
  readonly 'organization_id': string;
@@ -19513,53 +19288,6 @@ declare namespace io.flow.internal.v0.models {
19513
19288
  readonly 'construction'?: io.flow.internal.v0.models.CustomsProductAttributeLabel;
19514
19289
  }
19515
19290
 
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
19291
  interface DailyValue {
19564
19292
  readonly 'id': string;
19565
19293
  readonly 'key': io.flow.internal.v0.enums.BillingMetricKey;
@@ -20269,6 +19997,7 @@ declare namespace io.flow.internal.v0.models {
20269
19997
  }
20270
19998
 
20271
19999
  interface ErpPriorityVendorForm {
20000
+ readonly 'company'?: io.flow.internal.v0.enums.Company;
20272
20001
  readonly 'acc_des'?: string;
20273
20002
  readonly 'tax_code'?: string;
20274
20003
  readonly 'tax_code_2'?: string;
@@ -20284,292 +20013,118 @@ declare namespace io.flow.internal.v0.models {
20284
20013
  readonly 'address'?: string;
20285
20014
  readonly 'address_a'?: string;
20286
20015
  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;
20016
+ readonly 'address_3'?: string;
20017
+ readonly 'state_name'?: string;
20018
+ readonly 'code'?: string;
20019
+ readonly 'zip'?: string;
20020
+ readonly 'pay_account'?: string;
20021
+ readonly 'comp_num'?: string;
20022
+ readonly 'w_tax_num'?: string;
20023
+ readonly 'vat_num'?: string;
20024
+ readonly 'orig_acc_name'?: string;
20025
+ readonly 'branch'?: string;
20026
+ readonly 'form_1099_code'?: string;
20027
+ readonly 'trial_bal_code'?: string;
20028
+ readonly 'sec_name'?: string;
20029
+ readonly 'state'?: string;
20030
+ readonly 'state_a'?: string;
20031
+ readonly 'fax'?: string;
20032
+ readonly 'details'?: string;
20033
+ readonly 'bank_code'?: string;
20034
+ readonly 'state_code'?: string;
20035
+ readonly 'tax_office_code'?: string;
20036
+ readonly 'pay_code'?: string;
20037
+ readonly 'eacc_des'?: string;
20038
+ readonly 'acng_des'?: string;
20039
+ readonly 'branch_des'?: string;
20040
+ readonly 'debit_entry_code'?: string;
20041
+ readonly 'credit_entry_code'?: string;
20451
20042
  }
20452
20043
 
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;
20044
+ interface ErpVendor {
20045
+ readonly 'placeholder'?: string;
20460
20046
  }
20461
20047
 
20462
- interface ExperimentFormDefault {
20463
- readonly 'discriminator': io.flow.internal.v0.models.ExperimentFormDefaultDiscriminator;
20464
- readonly 'variants'?: io.flow.internal.v0.models.ExperimentFormDefaultVariant[];
20048
+ interface ErpVendorStatus {
20049
+ readonly 'entities': io.flow.internal.v0.models.ErpVendorStatusEntity[];
20050
+ readonly 'latest_flow_file'?: io.flow.internal.v0.models.ErpVendorStatusFlowFile;
20051
+ readonly 'latest_priority_file'?: io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
20465
20052
  }
20466
20053
 
20467
- interface ExperimentFormDefaultDiscriminator {
20468
- readonly 'key': io.flow.internal.v0.enums.ExperimentDiscriminatorKey;
20469
- readonly 'values': io.flow.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
20054
+ interface ErpVendorStatusEntity {
20055
+ readonly 'entity': io.flow.internal.v0.models.EntityReference;
20056
+ readonly 'number_differences': number;
20470
20057
  }
20471
20058
 
20472
- interface ExperimentFormDefaultDiscriminatorValue {
20473
- readonly 'key': string;
20474
- readonly 'name': string;
20475
- readonly 'scope': io.flow.internal.v0.enums.Scope;
20059
+ interface ErpVendorStatusFlowFile {
20060
+ readonly 'url': string;
20061
+ readonly 'created_at': string;
20476
20062
  }
20477
20063
 
20478
- interface ExperimentFormDefaultVariant {
20479
- readonly 'key': string;
20064
+ interface ErpVendorStatusPriorityFile {
20480
20065
  readonly 'name': string;
20481
- readonly 'traffic_percentage'?: number;
20066
+ readonly 'url': string;
20067
+ readonly 'created_at': string;
20068
+ readonly 'errors'?: string[];
20069
+ readonly 'processed_at'?: string;
20482
20070
  }
20483
20071
 
20484
- interface ExperimentMilestone {
20485
- readonly 'id': string;
20486
- readonly 'experiment': io.flow.internal.v0.models.ExperimentReference;
20072
+ interface ExclusionRuleDeleted {
20073
+ readonly 'discriminator': 'exclusion_rule_deleted';
20074
+ readonly 'event_id': string;
20487
20075
  readonly 'timestamp': string;
20488
- readonly 'description': string;
20076
+ readonly 'organization': string;
20077
+ readonly 'exclusion_rule': io.flow.catalog.exclusion.v0.models.ExclusionRule;
20489
20078
  }
20490
20079
 
20491
- interface ExperimentMilestoneDeleted {
20492
- readonly 'discriminator': 'experiment_milestone_deleted';
20080
+ interface ExclusionRuleExportRequest {
20081
+ readonly 'discriminator': 'exclusion_rule_export_request';
20493
20082
  readonly 'event_id': string;
20494
20083
  readonly 'timestamp': string;
20495
20084
  readonly 'organization': string;
20496
- readonly 'id': string;
20497
- }
20498
-
20499
- interface ExperimentMilestoneForm {
20500
- readonly 'timestamp'?: string;
20501
- readonly 'description': string;
20085
+ readonly 'internal_exclusion_rule_form': io.flow.internal.v0.models.InternalExclusionRuleForm;
20502
20086
  }
20503
20087
 
20504
- interface ExperimentMilestoneUpserted {
20505
- readonly 'discriminator': 'experiment_milestone_upserted';
20088
+ interface ExclusionRuleUpserted {
20089
+ readonly 'discriminator': 'exclusion_rule_upserted';
20506
20090
  readonly 'event_id': string;
20507
20091
  readonly 'timestamp': string;
20508
20092
  readonly 'organization': string;
20509
- readonly 'experiment_milestone': io.flow.internal.v0.models.ExperimentMilestone;
20510
- }
20511
-
20512
- interface ExperimentReference {
20513
- readonly 'key': string;
20093
+ readonly 'exclusion_rule': io.flow.catalog.exclusion.v0.models.ExclusionRule;
20514
20094
  }
20515
20095
 
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;
20096
+ interface ExpectedOrderSummary {
20097
+ readonly 'total'?: io.flow.common.v0.models.Money;
20533
20098
  }
20534
20099
 
20535
- interface ExperimentResultsDeleted {
20536
- readonly 'discriminator': 'experiment_results_deleted';
20100
+ interface ExperienceExportRequest {
20101
+ readonly 'discriminator': 'experience_export_request';
20537
20102
  readonly 'event_id': string;
20538
20103
  readonly 'timestamp': string;
20539
- readonly 'organization_id': string;
20540
- readonly 'experiment_results': io.flow.internal.v0.models.ExperimentResults;
20104
+ readonly 'organization': string;
20105
+ readonly 'ids'?: string[];
20106
+ readonly 'keys'?: string[];
20107
+ readonly 'export_id': string;
20541
20108
  }
20542
20109
 
20543
- interface ExperimentResultsUpserted {
20544
- readonly 'discriminator': 'experiment_results_upserted';
20110
+ interface ExperienceImportRequest {
20111
+ readonly 'discriminator': 'experience_import_request';
20545
20112
  readonly 'event_id': string;
20546
20113
  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;
20114
+ readonly 'organization': string;
20115
+ readonly 'import_id': string;
20116
+ readonly 'type': io.flow.internal.v0.enums.ExperienceImportType;
20117
+ readonly 'source_url': string;
20118
+ readonly 'filename'?: string;
20558
20119
  }
20559
20120
 
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;
20121
+ interface ExperienceOrderActionRule {
20122
+ readonly 'trigger': io.flow.internal.v0.enums.ExperienceOrderActionTrigger;
20123
+ readonly 'actions': io.flow.internal.v0.enums.ExperienceOrderAction[];
20566
20124
  }
20567
20125
 
20568
- interface ExperimentVersion {
20126
+ interface ExperienceSessionReference {
20569
20127
  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
20128
  }
20574
20129
 
20575
20130
  interface ExplicitStatement {
@@ -20640,6 +20195,7 @@ declare namespace io.flow.internal.v0.models {
20640
20195
  readonly 'delivery_estimate'?: string;
20641
20196
  readonly 'description'?: string;
20642
20197
  readonly 'order_number'?: string;
20198
+ readonly 'raw_carrier_event_code'?: string;
20643
20199
  }
20644
20200
 
20645
20201
  interface ExternalFulfillmentProof {
@@ -20713,23 +20269,6 @@ declare namespace io.flow.internal.v0.models {
20713
20269
  readonly 'feature': io.flow.internal.v0.models.Feature;
20714
20270
  }
20715
20271
 
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
20272
  interface FeatureForm {
20734
20273
  readonly 'name': string;
20735
20274
  readonly 'description'?: string;
@@ -20787,34 +20326,10 @@ declare namespace io.flow.internal.v0.models {
20787
20326
  readonly 'context': io.flow.internal.v0.models.FeatureContextForm;
20788
20327
  }
20789
20328
 
20790
- interface FeatureValueReference {
20791
- readonly 'feature_key': string;
20792
- readonly 'value': string;
20793
- }
20794
-
20795
20329
  interface FeatureValueResult {
20796
20330
  readonly 'values': io.flow.internal.v0.unions.FeatureValue[];
20797
20331
  }
20798
20332
 
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
20333
  interface Fedex {
20819
20334
  readonly 'discriminator': 'fedex';
20820
20335
  readonly 'key': string;
@@ -21067,8 +20582,10 @@ declare namespace io.flow.internal.v0.models {
21067
20582
  readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
21068
20583
  }
21069
20584
 
21070
- interface ForceTransitForm {
21071
- readonly 'description': string;
20585
+ interface FraudAuthorizationSummary {
20586
+ readonly 'fraud_review_authorization': io.flow.internal.v0.models.FraudReviewAuthorization;
20587
+ readonly 'fraud_pending_review_authorization'?: io.flow.internal.v0.models.FraudPendingReviewAuthorization;
20588
+ readonly 'fraud_review_authorization_decision'?: io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
21072
20589
  }
21073
20590
 
21074
20591
  interface FraudPendingReview {
@@ -21081,6 +20598,32 @@ declare namespace io.flow.internal.v0.models {
21081
20598
  readonly 'liability'?: io.flow.fraud.v0.enums.FraudLiability;
21082
20599
  }
21083
20600
 
20601
+ interface FraudPendingReviewAuthorization {
20602
+ readonly 'id': string;
20603
+ readonly 'fraud_review_authorization_id': string;
20604
+ readonly 'order': io.flow.experience.v0.models.OrderReference;
20605
+ readonly 'fraud_order_reference'?: io.flow.fraud.v0.unions.FraudOrderReference;
20606
+ readonly 'recommended_status': io.flow.fraud.v0.enums.FraudStatus;
20607
+ readonly 'apply_at'?: string;
20608
+ readonly 'liability'?: io.flow.fraud.v0.enums.FraudLiability;
20609
+ }
20610
+
20611
+ interface FraudPendingReviewAuthorizationDeleted {
20612
+ readonly 'discriminator': 'fraud_pending_review_authorization_deleted';
20613
+ readonly 'event_id': string;
20614
+ readonly 'timestamp': string;
20615
+ readonly 'organization': string;
20616
+ readonly 'id': string;
20617
+ }
20618
+
20619
+ interface FraudPendingReviewAuthorizationUpserted {
20620
+ readonly 'discriminator': 'fraud_pending_review_authorization_upserted';
20621
+ readonly 'event_id': string;
20622
+ readonly 'timestamp': string;
20623
+ readonly 'organization': string;
20624
+ readonly 'fraud_pending_review_authorization': io.flow.internal.v0.models.FraudPendingReviewAuthorization;
20625
+ }
20626
+
21084
20627
  interface FraudPendingReviewDeleted {
21085
20628
  readonly 'discriminator': 'fraud_pending_review_deleted';
21086
20629
  readonly 'event_id': string;
@@ -21161,6 +20704,67 @@ declare namespace io.flow.internal.v0.models {
21161
20704
  readonly 'created_at'?: string;
21162
20705
  }
21163
20706
 
20707
+ interface FraudReviewAuthorization {
20708
+ readonly 'id': string;
20709
+ readonly 'organization_id': string;
20710
+ readonly 'order': io.flow.experience.v0.models.OrderReference;
20711
+ readonly 'fraud_order_reference'?: io.flow.fraud.v0.unions.FraudOrderReference;
20712
+ readonly 'status': io.flow.fraud.v0.enums.FraudStatus;
20713
+ readonly 'responsible_party': io.flow.internal.v0.enums.FraudReviewResponsibleParty;
20714
+ readonly 'description'?: string;
20715
+ readonly 'risk_evaluation'?: io.flow.internal.v0.enums.RiskEvaluation;
20716
+ readonly 'liability'?: io.flow.fraud.v0.enums.FraudLiability;
20717
+ readonly 'status_updated_at'?: string;
20718
+ readonly 'attributes'?: Record<string, string>;
20719
+ readonly 'provider'?: io.flow.internal.v0.enums.FraudProvider;
20720
+ readonly 'payment_authorization_id'?: string;
20721
+ readonly 'decline_reason'?: io.flow.internal.v0.unions.DeclineReason;
20722
+ readonly 'created_at'?: string;
20723
+ }
20724
+
20725
+ interface FraudReviewAuthorizationDecision {
20726
+ readonly 'id': string;
20727
+ readonly 'fraud_review_authorization_id': string;
20728
+ readonly 'order': io.flow.experience.v0.models.OrderReference;
20729
+ readonly 'fraud_order_reference'?: io.flow.fraud.v0.unions.FraudOrderReference;
20730
+ readonly 'status': io.flow.fraud.v0.enums.FraudStatus;
20731
+ readonly 'created_at': string;
20732
+ readonly 'liability'?: io.flow.fraud.v0.enums.FraudLiability;
20733
+ readonly 'updated_by_user'?: io.flow.common.v0.models.UserReference;
20734
+ }
20735
+
20736
+ interface FraudReviewAuthorizationDecisionDeleted {
20737
+ readonly 'discriminator': 'fraud_review_authorization_decision_deleted';
20738
+ readonly 'event_id': string;
20739
+ readonly 'timestamp': string;
20740
+ readonly 'organization': string;
20741
+ readonly 'id': string;
20742
+ }
20743
+
20744
+ interface FraudReviewAuthorizationDecisionUpserted {
20745
+ readonly 'discriminator': 'fraud_review_authorization_decision_upserted';
20746
+ readonly 'event_id': string;
20747
+ readonly 'timestamp': string;
20748
+ readonly 'organization': string;
20749
+ readonly 'fraud_review_authorization_decision': io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
20750
+ }
20751
+
20752
+ interface FraudReviewAuthorizationDeleted {
20753
+ readonly 'discriminator': 'fraud_review_authorization_deleted';
20754
+ readonly 'event_id': string;
20755
+ readonly 'timestamp': string;
20756
+ readonly 'organization': string;
20757
+ readonly 'id': string;
20758
+ }
20759
+
20760
+ interface FraudReviewAuthorizationUpserted {
20761
+ readonly 'discriminator': 'fraud_review_authorization_upserted';
20762
+ readonly 'event_id': string;
20763
+ readonly 'timestamp': string;
20764
+ readonly 'organization': string;
20765
+ readonly 'fraud_review_authorization': io.flow.internal.v0.models.FraudReviewAuthorization;
20766
+ }
20767
+
21164
20768
  interface FraudReviewDecision {
21165
20769
  readonly 'id': string;
21166
20770
  readonly 'fraud_review_id': string;
@@ -21219,6 +20823,7 @@ declare namespace io.flow.internal.v0.models {
21219
20823
  readonly 'fraud_review': io.flow.internal.v0.models.FraudReview;
21220
20824
  readonly 'fraud_pending_review'?: io.flow.internal.v0.models.FraudPendingReview;
21221
20825
  readonly 'fraud_review_decision'?: io.flow.internal.v0.models.FraudReviewDecision;
20826
+ readonly 'fraud_review_authorizations'?: io.flow.internal.v0.models.FraudAuthorizationSummary[];
21222
20827
  }
21223
20828
 
21224
20829
  interface FtpFileDeleted {
@@ -21293,6 +20898,7 @@ declare namespace io.flow.internal.v0.models {
21293
20898
  readonly 'order': io.flow.internal.v0.models.OrderSummary;
21294
20899
  readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
21295
20900
  readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
20901
+ readonly 'payment'?: io.flow.internal.v0.models.PaymentSummary;
21296
20902
  readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
21297
20903
  readonly 'sequence_number': number;
21298
20904
  readonly 'posting_cutoff': string;
@@ -21411,6 +21017,7 @@ declare namespace io.flow.internal.v0.models {
21411
21017
  readonly 'subtotal': io.flow.internal.v0.models.ReportingMonetaryValue;
21412
21018
  readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
21413
21019
  readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
21020
+ readonly 'tips'?: io.flow.internal.v0.models.ReportingMonetaryValue;
21414
21021
  readonly 'discount': io.flow.internal.v0.models.ReportingMonetaryValue;
21415
21022
  readonly 'total': io.flow.internal.v0.models.ReportingMonetaryValue;
21416
21023
  }
@@ -21575,6 +21182,37 @@ declare namespace io.flow.internal.v0.models {
21575
21182
  readonly 'tracker_id': string;
21576
21183
  }
21577
21184
 
21185
+ interface HarinathItem {
21186
+ readonly 'id': string;
21187
+ readonly 'number': string;
21188
+ readonly 'amount': io.flow.common.v0.models.Price;
21189
+ readonly 'description'?: string;
21190
+ readonly 'type': io.flow.internal.v0.enums.HarinathItemType;
21191
+ readonly 'added_on': string;
21192
+ }
21193
+
21194
+ interface HarinathItemDeleted {
21195
+ readonly 'discriminator': 'harinath_item_deleted';
21196
+ readonly 'event_id': string;
21197
+ readonly 'timestamp': string;
21198
+ readonly 'id': string;
21199
+ }
21200
+
21201
+ interface HarinathItemForm {
21202
+ readonly 'number': string;
21203
+ readonly 'amount': io.flow.common.v0.models.Price;
21204
+ readonly 'description'?: string;
21205
+ readonly 'type': io.flow.internal.v0.enums.HarinathItemType;
21206
+ readonly 'added_on': string;
21207
+ }
21208
+
21209
+ interface HarinathItemUpserted {
21210
+ readonly 'discriminator': 'harinath_item_upserted';
21211
+ readonly 'event_id': string;
21212
+ readonly 'timestamp': string;
21213
+ readonly 'item': io.flow.internal.v0.models.HarinathItem;
21214
+ }
21215
+
21578
21216
  interface HarmonizationClassificationStatisticsData {
21579
21217
  readonly 'statistics': io.flow.internal.v0.models.ClassificationStatistics;
21580
21218
  }
@@ -22104,6 +21742,7 @@ declare namespace io.flow.internal.v0.models {
22104
21742
  readonly 'price_amount'?: number;
22105
21743
  readonly 'status': io.flow.internal.v0.enums.ItemHarmonizationStatus;
22106
21744
  readonly 'tariffs'?: Record<string, io.flow.internal.v0.models.TariffCodeDuty>;
21745
+ readonly 'decision_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
22107
21746
  readonly 'created_at'?: string;
22108
21747
  readonly 'updated_at'?: string;
22109
21748
  readonly 'updated_by_user_id'?: string;
@@ -22260,6 +21899,37 @@ declare namespace io.flow.internal.v0.models {
22260
21899
  readonly 'descriptive_asset_urls'?: string;
22261
21900
  }
22262
21901
 
21902
+ interface KonstantinItem {
21903
+ readonly 'id': string;
21904
+ readonly 'number': string;
21905
+ readonly 'amount': io.flow.common.v0.models.Price;
21906
+ readonly 'description'?: string;
21907
+ readonly 'type': io.flow.internal.v0.enums.KonstantinItemType;
21908
+ readonly 'added_on': string;
21909
+ }
21910
+
21911
+ interface KonstantinItemDeleted {
21912
+ readonly 'discriminator': 'konstantin_item_deleted';
21913
+ readonly 'event_id': string;
21914
+ readonly 'timestamp': string;
21915
+ readonly 'id': string;
21916
+ }
21917
+
21918
+ interface KonstantinItemForm {
21919
+ readonly 'number': string;
21920
+ readonly 'amount': io.flow.common.v0.models.Price;
21921
+ readonly 'description'?: string;
21922
+ readonly 'type': io.flow.internal.v0.enums.KonstantinItemType;
21923
+ readonly 'added_on': string;
21924
+ }
21925
+
21926
+ interface KonstantinItemUpserted {
21927
+ readonly 'discriminator': 'konstantin_item_upserted';
21928
+ readonly 'event_id': string;
21929
+ readonly 'timestamp': string;
21930
+ readonly 'item': io.flow.internal.v0.models.KonstantinItem;
21931
+ }
21932
+
22263
21933
  interface LabProjectSettings {
22264
21934
  readonly 'id': string;
22265
21935
  readonly 'flow_lab_project_key': string;
@@ -22808,6 +22478,26 @@ declare namespace io.flow.internal.v0.models {
22808
22478
  readonly 'capabilities': io.flow.internal.v0.enums.LogisticsCapability[];
22809
22479
  }
22810
22480
 
22481
+ interface LogisticsPayoutRequest {
22482
+ readonly 'organization_id': string;
22483
+ readonly 'order_number': string;
22484
+ readonly 'carrier': string;
22485
+ readonly 'carrier_tracking_number': string;
22486
+ readonly 'dry_run': boolean;
22487
+ readonly 'payout_resolution_method': io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod;
22488
+ readonly 'label_id'?: string;
22489
+ readonly 'combined_shipment_order_number'?: string;
22490
+ }
22491
+
22492
+ interface LogisticsPayoutRequestForm {
22493
+ readonly 'organization_id': string;
22494
+ readonly 'order_identifier': string;
22495
+ readonly 'carrier_id'?: string;
22496
+ readonly 'carrier_name'?: string;
22497
+ readonly 'carrier_tracking_number'?: string;
22498
+ readonly 'external_reference_number'?: string;
22499
+ }
22500
+
22811
22501
  interface Logo {
22812
22502
  readonly 'url': string;
22813
22503
  }
@@ -23378,6 +23068,68 @@ declare namespace io.flow.internal.v0.models {
23378
23068
  readonly 'proposition': io.flow.internal.v0.models.MetadataProposition;
23379
23069
  }
23380
23070
 
23071
+ interface MichaelyanItem {
23072
+ readonly 'id': string;
23073
+ readonly 'number': string;
23074
+ readonly 'amount': io.flow.common.v0.models.Price;
23075
+ readonly 'description'?: string;
23076
+ readonly 'type': io.flow.internal.v0.enums.MichaelyanItemType;
23077
+ readonly 'added_on': string;
23078
+ }
23079
+
23080
+ interface MichaelyanItemDeleted {
23081
+ readonly 'discriminator': 'michaelyan_item_deleted';
23082
+ readonly 'event_id': string;
23083
+ readonly 'timestamp': string;
23084
+ readonly 'id': string;
23085
+ }
23086
+
23087
+ interface MichaelyanItemForm {
23088
+ readonly 'number': string;
23089
+ readonly 'amount': io.flow.common.v0.models.Price;
23090
+ readonly 'description'?: string;
23091
+ readonly 'type': io.flow.internal.v0.enums.MichaelyanItemType;
23092
+ readonly 'added_on': string;
23093
+ }
23094
+
23095
+ interface MichaelyanItemUpserted {
23096
+ readonly 'discriminator': 'michaelyan_item_upserted';
23097
+ readonly 'event_id': string;
23098
+ readonly 'timestamp': string;
23099
+ readonly 'item': io.flow.internal.v0.models.MichaelyanItem;
23100
+ }
23101
+
23102
+ interface MiljenkoItem {
23103
+ readonly 'id': string;
23104
+ readonly 'number': string;
23105
+ readonly 'amount': io.flow.common.v0.models.Price;
23106
+ readonly 'description'?: string;
23107
+ readonly 'type': io.flow.internal.v0.enums.MiljenkoItemType;
23108
+ readonly 'added_on': string;
23109
+ }
23110
+
23111
+ interface MiljenkoItemDeleted {
23112
+ readonly 'discriminator': 'miljenko_item_deleted';
23113
+ readonly 'event_id': string;
23114
+ readonly 'timestamp': string;
23115
+ readonly 'id': string;
23116
+ }
23117
+
23118
+ interface MiljenkoItemForm {
23119
+ readonly 'number': string;
23120
+ readonly 'amount': io.flow.common.v0.models.Price;
23121
+ readonly 'description'?: string;
23122
+ readonly 'type': io.flow.internal.v0.enums.MiljenkoItemType;
23123
+ readonly 'added_on': string;
23124
+ }
23125
+
23126
+ interface MiljenkoItemUpserted {
23127
+ readonly 'discriminator': 'miljenko_item_upserted';
23128
+ readonly 'event_id': string;
23129
+ readonly 'timestamp': string;
23130
+ readonly 'item': io.flow.internal.v0.models.MiljenkoItem;
23131
+ }
23132
+
23381
23133
  interface NextBillingStatement {
23382
23134
  readonly 'date': string;
23383
23135
  readonly 'amount': io.flow.common.v0.models.Price;
@@ -23786,6 +23538,29 @@ declare namespace io.flow.internal.v0.models {
23786
23538
  readonly 'currency': string;
23787
23539
  }
23788
23540
 
23541
+ interface OrderTaxAndDutyInclusivitySetting {
23542
+ readonly 'id': string;
23543
+ readonly 'organization_id': string;
23544
+ readonly 'shopify_order_id': string;
23545
+ readonly 'order_number': string;
23546
+ readonly 'tax_and_duty_inclusivity_setting': io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
23547
+ }
23548
+
23549
+ interface OrderTaxAndDutyInclusivitySettingDeleted {
23550
+ readonly 'discriminator': 'order_tax_and_duty_inclusivity_setting_deleted';
23551
+ readonly 'event_id': string;
23552
+ readonly 'timestamp': string;
23553
+ readonly 'organization': string;
23554
+ readonly 'id': string;
23555
+ }
23556
+
23557
+ interface OrderTaxAndDutyInclusivitySettingUpserted {
23558
+ readonly 'discriminator': 'order_tax_and_duty_inclusivity_setting_upserted';
23559
+ readonly 'event_id': string;
23560
+ readonly 'timestamp': string;
23561
+ readonly 'order_tax_and_duty_inclusivity_setting': io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
23562
+ }
23563
+
23789
23564
  interface OrderTransaction {
23790
23565
  readonly 'discriminator': 'order_transaction';
23791
23566
  readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
@@ -24076,6 +23851,34 @@ declare namespace io.flow.internal.v0.models {
24076
23851
  readonly 'to': string;
24077
23852
  }
24078
23853
 
23854
+ interface OrganizationMetadata {
23855
+ readonly 'id': string;
23856
+ readonly 'organization_id': string;
23857
+ readonly 'pending_restriction_count': number;
23858
+ readonly 'pending_verification_count': number;
23859
+ readonly 'oldest_pending_restriction_date'?: string;
23860
+ readonly 'oldest_pending_verification_date'?: string;
23861
+ readonly 'product_count': number;
23862
+ readonly 'restricted_product_count': number;
23863
+ readonly 'last_order_submitted_at'?: string;
23864
+ }
23865
+
23866
+ interface OrganizationMetadataDeleted {
23867
+ readonly 'discriminator': 'organization_metadata_deleted';
23868
+ readonly 'event_id': string;
23869
+ readonly 'timestamp': string;
23870
+ readonly 'organization': string;
23871
+ readonly 'id': string;
23872
+ }
23873
+
23874
+ interface OrganizationMetadataUpserted {
23875
+ readonly 'discriminator': 'organization_metadata_upserted';
23876
+ readonly 'event_id': string;
23877
+ readonly 'timestamp': string;
23878
+ readonly 'organization': string;
23879
+ readonly 'organization_metadata': io.flow.internal.v0.models.OrganizationMetadata;
23880
+ }
23881
+
24079
23882
  interface OrganizationOnboardingStateAdjustmentResult {
24080
23883
  readonly 'organization_onboarding_state'?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
24081
23884
  }
@@ -24263,6 +24066,144 @@ declare namespace io.flow.internal.v0.models {
24263
24066
  readonly 'audit_result': io.flow.internal.v0.enums.OnboardingAuditResult;
24264
24067
  }
24265
24068
 
24069
+ interface OtherRecord {
24070
+ readonly 'id': string;
24071
+ readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
24072
+ readonly 'account': io.flow.internal.v0.models.OtherRecordAccount;
24073
+ readonly 'metadata'?: io.flow.internal.v0.models.OtherRecordMetadata;
24074
+ readonly 'order'?: io.flow.internal.v0.models.OtherRecordOrderSummary;
24075
+ readonly 'currency': string;
24076
+ readonly 'source': io.flow.billing.v0.enums.TransactionSource;
24077
+ readonly 'parent'?: io.flow.billing.v0.models.ParentTransactionSummary;
24078
+ readonly 'gross': number;
24079
+ readonly 'fees': io.flow.internal.v0.models.OtherRecordFees;
24080
+ readonly 'withholdings': io.flow.internal.v0.models.OtherRecordWithholdings;
24081
+ readonly 'discount': io.flow.internal.v0.models.OtherRecordDiscount;
24082
+ readonly 'net': number;
24083
+ readonly 'identifiers': io.flow.internal.v0.models.OtherRecordIdentifiers;
24084
+ readonly 'created_at': string;
24085
+ readonly 'updated_at': string;
24086
+ }
24087
+
24088
+ interface OtherRecordAccount {
24089
+ readonly 'id': string;
24090
+ readonly 'merchant'?: io.flow.internal.v0.models.OtherRecordMerchantReference;
24091
+ readonly 'environment': io.flow.common.v0.enums.Environment;
24092
+ readonly 'source': io.flow.internal.v0.models.OtherRecordAccountSourceSummary;
24093
+ }
24094
+
24095
+ interface OtherRecordAccountSourceSummary {
24096
+ readonly 'id': string;
24097
+ readonly 'type': io.flow.internal.v0.enums.AccountType;
24098
+ }
24099
+
24100
+ interface OtherRecordDeleted {
24101
+ readonly 'discriminator': 'other_record_deleted';
24102
+ readonly 'event_id': string;
24103
+ readonly 'timestamp': string;
24104
+ readonly 'id': string;
24105
+ }
24106
+
24107
+ interface OtherRecordDiscount {
24108
+ readonly 'amount': number;
24109
+ readonly 'description'?: string;
24110
+ }
24111
+
24112
+ interface OtherRecordFees {
24113
+ readonly 'duty_guarantee': number;
24114
+ readonly 'mor': number;
24115
+ readonly 'fraud': number;
24116
+ readonly 'fx': number;
24117
+ readonly 'processing': number;
24118
+ readonly 'rate_lock': number;
24119
+ readonly 'transfer': number;
24120
+ readonly 'negative_balance': number;
24121
+ }
24122
+
24123
+ interface OtherRecordIdentifiers {
24124
+ readonly 'reference_id'?: string;
24125
+ }
24126
+
24127
+ interface OtherRecordMerchantReference {
24128
+ readonly 'id': string;
24129
+ }
24130
+
24131
+ interface OtherRecordMetadata {
24132
+ readonly 'channel'?: io.flow.internal.v0.models.OtherRecordMetadataChannel;
24133
+ readonly 'shipping_label'?: io.flow.internal.v0.models.OtherRecordMetadataShippingLabel;
24134
+ readonly 'shipping_label_revenue_share'?: io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare;
24135
+ readonly 'trueup'?: io.flow.internal.v0.models.OtherRecordMetadataTrueup;
24136
+ readonly 'carrier_charge'?: io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge;
24137
+ readonly 'manual'?: io.flow.internal.v0.models.OtherRecordMetadataManual;
24138
+ readonly 'failed_payout'?: io.flow.internal.v0.models.OtherRecordMetadataFailedPayout;
24139
+ }
24140
+
24141
+ interface OtherRecordMetadataCarrierCharge {
24142
+ readonly 'reason': io.flow.trueup.v0.enums.CarrierChargeReason;
24143
+ readonly 'label_created_at': string;
24144
+ readonly 'carrier_id': string;
24145
+ readonly 'carrier_tracking_number': string;
24146
+ readonly 'revenue_share_percentage': number;
24147
+ readonly 'outbound_transaction_id'?: string;
24148
+ }
24149
+
24150
+ interface OtherRecordMetadataChannel {
24151
+ readonly 'method': string;
24152
+ readonly 'card'?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
24153
+ }
24154
+
24155
+ interface OtherRecordMetadataFailedPayout {
24156
+ readonly 'failed_payment': io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
24157
+ }
24158
+
24159
+ interface OtherRecordMetadataManual {
24160
+ readonly 'description': string;
24161
+ readonly 'original'?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
24162
+ readonly 'category'?: io.flow.internal.v0.enums.ManualTransactionCategory;
24163
+ readonly 'url'?: string;
24164
+ }
24165
+
24166
+ interface OtherRecordMetadataShippingLabel {
24167
+ readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
24168
+ }
24169
+
24170
+ interface OtherRecordMetadataShippingLabelRevenueShare {
24171
+ readonly 'label_id': string;
24172
+ readonly 'base_amount'?: number;
24173
+ readonly 'percentage'?: number;
24174
+ }
24175
+
24176
+ interface OtherRecordMetadataTrueup {
24177
+ readonly 'original': io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
24178
+ readonly 'label_transaction_id': string;
24179
+ readonly 'label_invoice_request_id': string;
24180
+ readonly 'carrier_charge_id': string;
24181
+ }
24182
+
24183
+ interface OtherRecordOrderSummary {
24184
+ readonly 'organization': io.flow.common.v0.models.OrganizationReference;
24185
+ readonly 'number': string;
24186
+ readonly 'identifiers': io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
24187
+ }
24188
+
24189
+ interface OtherRecordOrderSummaryIdentifiers {
24190
+ readonly 'shopify_order_id'?: string;
24191
+ }
24192
+
24193
+ interface OtherRecordUpserted {
24194
+ readonly 'discriminator': 'other_record_upserted';
24195
+ readonly 'event_id': string;
24196
+ readonly 'timestamp': string;
24197
+ readonly 'other_record': io.flow.internal.v0.models.OtherRecord;
24198
+ }
24199
+
24200
+ interface OtherRecordWithholdings {
24201
+ readonly 'tax': number;
24202
+ readonly 'duty': number;
24203
+ readonly 'freight': number;
24204
+ readonly 'insurance': number;
24205
+ }
24206
+
24266
24207
  interface Partner {
24267
24208
  readonly 'id': string;
24268
24209
  readonly 'name': string;
@@ -24434,6 +24375,15 @@ declare namespace io.flow.internal.v0.models {
24434
24375
  readonly 'merchant': io.flow.internal.v0.unions.ProcessorMerchant;
24435
24376
  }
24436
24377
 
24378
+ interface PaymentSummary {
24379
+ readonly 'psp': number;
24380
+ readonly 'credit': number;
24381
+ readonly 'subsidized': number;
24382
+ readonly 'manual': number;
24383
+ readonly 'cod': number;
24384
+ readonly 'total': number;
24385
+ }
24386
+
24437
24387
  interface PaymentSummaryV2 {
24438
24388
  readonly 'discriminator': 'payment_summary_v2';
24439
24389
  readonly 'id': string;
@@ -24651,6 +24601,7 @@ declare namespace io.flow.internal.v0.models {
24651
24601
  readonly 'order': io.flow.internal.v0.models.OrderSummary;
24652
24602
  readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
24653
24603
  readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
24604
+ readonly 'payment'?: io.flow.internal.v0.models.PaymentSummary;
24654
24605
  readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
24655
24606
  readonly 'sequence_number': number;
24656
24607
  readonly 'posting_cutoff': string;
@@ -25603,11 +25554,11 @@ declare namespace io.flow.internal.v0.models {
25603
25554
  readonly 'sequence_number': number;
25604
25555
  readonly 'fulfilled_at': string;
25605
25556
  readonly 'completes_order': boolean;
25606
- readonly 'payment': io.flow.internal.v0.models.ReportingPayment;
25607
25557
  readonly 'refund'?: io.flow.internal.v0.models.ReportingRefundReference;
25608
25558
  readonly 'value': io.flow.internal.v0.models.FulfillmentShopperBreakdown;
25609
25559
  readonly 'dispatch_country'?: io.flow.internal.v0.models.ReportingCountry;
25610
25560
  readonly 'destination'?: io.flow.internal.v0.models.ReportingDestination;
25561
+ readonly 'payment'?: io.flow.internal.v0.models.ReportingPayment;
25611
25562
  readonly 'shipment'?: io.flow.internal.v0.models.ReportingShipment;
25612
25563
  readonly 'is': io.flow.internal.v0.models.ReportingFulfillmentIs;
25613
25564
  readonly 'has': io.flow.internal.v0.models.ReportingFulfillmentHas;
@@ -25626,6 +25577,11 @@ declare namespace io.flow.internal.v0.models {
25626
25577
  readonly 'wyol': boolean;
25627
25578
  readonly 'b2b': boolean;
25628
25579
  readonly 'domestic': boolean;
25580
+ readonly 'combined_shipment'?: boolean;
25581
+ readonly 'order_cancelled'?: boolean;
25582
+ readonly 'lvg'?: boolean;
25583
+ readonly 'tax_inclusive'?: boolean;
25584
+ readonly 'duty_inclusive'?: boolean;
25629
25585
  }
25630
25586
 
25631
25587
  interface ReportingFx {
@@ -25634,6 +25590,7 @@ declare namespace io.flow.internal.v0.models {
25634
25590
  readonly 'product': io.flow.internal.v0.models.ReportingUsd;
25635
25591
  readonly 'tax': io.flow.internal.v0.models.ReportingUsd;
25636
25592
  readonly 'duty': io.flow.internal.v0.models.ReportingUsd;
25593
+ readonly 'tips'?: io.flow.internal.v0.models.ReportingUsd;
25637
25594
  readonly 'total': io.flow.internal.v0.models.ReportingUsd;
25638
25595
  }
25639
25596
 
@@ -25651,6 +25608,7 @@ declare namespace io.flow.internal.v0.models {
25651
25608
  readonly 'processing': io.flow.internal.v0.models.ReportingMonetaryValue;
25652
25609
  readonly 'rate_lock': io.flow.internal.v0.models.ReportingMonetaryValue;
25653
25610
  readonly 'transfer': io.flow.internal.v0.models.ReportingMonetaryValue;
25611
+ readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
25654
25612
  }
25655
25613
 
25656
25614
  interface ReportingMerchantSubsidies {
@@ -25658,6 +25616,7 @@ declare namespace io.flow.internal.v0.models {
25658
25616
  readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
25659
25617
  readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
25660
25618
  readonly 'ccf': io.flow.internal.v0.models.ReportingMonetaryValue;
25619
+ readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
25661
25620
  }
25662
25621
 
25663
25622
  interface ReportingMerchantTransactions {
@@ -25666,6 +25625,8 @@ declare namespace io.flow.internal.v0.models {
25666
25625
  readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
25667
25626
  readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
25668
25627
  readonly 'freight': io.flow.internal.v0.models.ReportingMonetaryValue;
25628
+ readonly 'discount'?: io.flow.internal.v0.models.ReportingMonetaryValue;
25629
+ readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
25669
25630
  }
25670
25631
 
25671
25632
  interface ReportingMonetaryValue {
@@ -25688,25 +25649,14 @@ declare namespace io.flow.internal.v0.models {
25688
25649
  }
25689
25650
 
25690
25651
  interface ReportingPayment {
25691
- readonly 'metadata'?: io.flow.internal.v0.models.ReportingPaymentMetadata;
25692
25652
  readonly 'psp': io.flow.internal.v0.models.ReportingMonetaryValue;
25693
25653
  readonly 'credit': io.flow.internal.v0.models.ReportingMonetaryValue;
25654
+ readonly 'subsidized': io.flow.internal.v0.models.ReportingMonetaryValue;
25655
+ readonly 'manual': io.flow.internal.v0.models.ReportingMonetaryValue;
25656
+ readonly 'cod': io.flow.internal.v0.models.ReportingMonetaryValue;
25694
25657
  readonly 'total': io.flow.internal.v0.models.ReportingMonetaryValue;
25695
25658
  }
25696
25659
 
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
25660
  interface ReportingProvince {
25711
25661
  readonly 'code'?: string;
25712
25662
  readonly 'name': string;
@@ -25735,6 +25685,7 @@ declare namespace io.flow.internal.v0.models {
25735
25685
  readonly 'ccf': io.flow.internal.v0.models.ReportingMonetaryValue;
25736
25686
  readonly 'emergency': io.flow.internal.v0.models.ReportingMonetaryValue;
25737
25687
  readonly 'peak': io.flow.internal.v0.models.ReportingMonetaryValue;
25688
+ readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
25738
25689
  }
25739
25690
 
25740
25691
  interface ReportingUsd {
@@ -25762,6 +25713,10 @@ declare namespace io.flow.internal.v0.models {
25762
25713
  readonly 'select_mismatching_item_types': boolean;
25763
25714
  }
25764
25715
 
25716
+ interface RescreenRestrictionsProducts {
25717
+ readonly 'placeholder'?: boolean;
25718
+ }
25719
+
25765
25720
  interface RestrictionCategory {
25766
25721
  readonly 'category': string;
25767
25722
  }
@@ -26035,6 +25990,7 @@ declare namespace io.flow.internal.v0.models {
26035
25990
  readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
26036
25991
  readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
26037
25992
  readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
25993
+ readonly 'payment'?: io.flow.internal.v0.models.PaymentSummary;
26038
25994
  readonly 'sequence_number': number;
26039
25995
  readonly 'posting_cutoff': string;
26040
25996
  readonly 'trigger': io.flow.internal.v0.unions.ReturnTrigger;
@@ -26235,7 +26191,7 @@ declare namespace io.flow.internal.v0.models {
26235
26191
  readonly 'discriminator': 'search_experiment_summary';
26236
26192
  readonly 'key': string;
26237
26193
  readonly 'name': string;
26238
- readonly 'status': io.flow.internal.v0.enums.Status;
26194
+ readonly 'status': io.flow.experiment.internal.v0.enums.Status;
26239
26195
  }
26240
26196
 
26241
26197
  interface SearchItemSummary {
@@ -26880,6 +26836,8 @@ declare namespace io.flow.internal.v0.models {
26880
26836
  readonly 'id': string;
26881
26837
  readonly 'initial_catalog_synced_at'?: string;
26882
26838
  readonly 'catalog_sync_duration'?: number;
26839
+ readonly 'restrictions_sync_duration'?: number;
26840
+ readonly 'classifications_sync_duration'?: number;
26883
26841
  readonly 'catalog_products_count'?: number;
26884
26842
  readonly 'initial_product_restrictions_synced_at'?: string;
26885
26843
  }
@@ -26953,6 +26911,7 @@ declare namespace io.flow.internal.v0.models {
26953
26911
  readonly 'product': io.flow.internal.v0.models.ShopperLines;
26954
26912
  readonly 'fees': io.flow.internal.v0.models.ShopperFees;
26955
26913
  readonly 'freight': io.flow.internal.v0.models.ShopperFreight;
26914
+ readonly 'tips'?: number;
26956
26915
  readonly 'order_discount': number;
26957
26916
  readonly 'total': number;
26958
26917
  }
@@ -27665,6 +27624,23 @@ declare namespace io.flow.internal.v0.models {
27665
27624
  readonly 'name': string;
27666
27625
  }
27667
27626
 
27627
+ interface ThiagoItem {
27628
+ readonly 'id': string;
27629
+ readonly 'number': string;
27630
+ readonly 'amount': io.flow.common.v0.models.Price;
27631
+ readonly 'description'?: string;
27632
+ readonly 'type': io.flow.internal.v0.enums.ThiagoItemType;
27633
+ readonly 'added_on': string;
27634
+ }
27635
+
27636
+ interface ThiagoItemForm {
27637
+ readonly 'number': string;
27638
+ readonly 'amount': io.flow.common.v0.models.Price;
27639
+ readonly 'description'?: string;
27640
+ readonly 'type': io.flow.internal.v0.enums.ThiagoItemType;
27641
+ readonly 'added_on': string;
27642
+ }
27643
+
27668
27644
  interface ThirdPartyLogisticsPartner {
27669
27645
  readonly 'warehouse_address': io.flow.common.v0.models.BillingAddress;
27670
27646
  readonly 'warehouse_url'?: string;
@@ -27743,6 +27719,47 @@ declare namespace io.flow.internal.v0.models {
27743
27719
  readonly 'timezone': string;
27744
27720
  }
27745
27721
 
27722
+ interface TrackingAssuranceAnalysis {
27723
+ readonly 'id': string;
27724
+ readonly 'job_id': string;
27725
+ readonly 'label_id': string;
27726
+ readonly 'order_number': string;
27727
+ readonly 'carrier_tracking_number': string;
27728
+ readonly 'flow_tracking_number': string;
27729
+ readonly 'carrier_status': string;
27730
+ readonly 'aftership_status': string;
27731
+ readonly 'flow_status': string;
27732
+ readonly 'latest_carrier_event_date': string;
27733
+ readonly 'latest_aftership_event_date': string;
27734
+ readonly 'latest_flow_event_date': string;
27735
+ readonly 'label_created_at': string;
27736
+ readonly 'carrier_id': string;
27737
+ readonly 'carrier_origin_country'?: string;
27738
+ readonly 'label_origin_country': string;
27739
+ readonly 'label_destination_country': string;
27740
+ readonly 'carrier_destination_country'?: string;
27741
+ }
27742
+
27743
+ interface TrackingAssuranceAnalysisDeleted {
27744
+ readonly 'discriminator': 'tracking_assurance_analysis_deleted';
27745
+ readonly 'event_id': string;
27746
+ readonly 'timestamp': string;
27747
+ readonly 'organization': string;
27748
+ readonly 'id': string;
27749
+ }
27750
+
27751
+ interface TrackingAssuranceAnalysisUpserted {
27752
+ readonly 'discriminator': 'tracking_assurance_analysis_upserted';
27753
+ readonly 'event_id': string;
27754
+ readonly 'timestamp': string;
27755
+ readonly 'organization': string;
27756
+ readonly 'analysis': io.flow.internal.v0.models.TrackingAssuranceAnalysis;
27757
+ }
27758
+
27759
+ interface TrackingDebugForceTransitForm {
27760
+ readonly 'description': string;
27761
+ }
27762
+
27746
27763
  interface TrackingDebugLabel {
27747
27764
  readonly 'in_transit_location'?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
27748
27765
  readonly 'delivery_location'?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
@@ -28201,8 +28218,7 @@ declare namespace io.flow.internal.v0.unions {
28201
28218
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
28202
28219
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
28203
28220
  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);
28221
+ 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
28222
  type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
28207
28223
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
28208
28224
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -28261,8 +28277,6 @@ declare namespace io.flow.internal.v0.unions {
28261
28277
  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
28278
  type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
28263
28279
  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
28280
  }
28267
28281
 
28268
28282
  export const accountPaymentHoldReason: PropTypes.Requireable<io.flow.internal.v0.enums.AccountPaymentHoldReason>;
@@ -28312,6 +28326,7 @@ export const classificationPlatform: PropTypes.Requireable<io.flow.internal.v0.e
28312
28326
  export const classificationType: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationType>;
28313
28327
  export const clothingAgeClassification: PropTypes.Requireable<io.flow.internal.v0.enums.ClothingAgeClassification>;
28314
28328
  export const colmItemType: PropTypes.Requireable<io.flow.internal.v0.enums.ColmItemType>;
28329
+ export const company: PropTypes.Requireable<io.flow.internal.v0.enums.Company>;
28315
28330
  export const complianceType: PropTypes.Requireable<io.flow.internal.v0.enums.ComplianceType>;
28316
28331
  export const contentElementType: PropTypes.Requireable<io.flow.internal.v0.enums.ContentElementType>;
28317
28332
  export const contentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ContentStatus>;
@@ -28345,7 +28360,6 @@ export const eventType: PropTypes.Requireable<io.flow.internal.v0.enums.EventTyp
28345
28360
  export const experienceImportType: PropTypes.Requireable<io.flow.internal.v0.enums.ExperienceImportType>;
28346
28361
  export const experienceOrderAction: PropTypes.Requireable<io.flow.internal.v0.enums.ExperienceOrderAction>;
28347
28362
  export const experienceOrderActionTrigger: PropTypes.Requireable<io.flow.internal.v0.enums.ExperienceOrderActionTrigger>;
28348
- export const experimentDiscriminatorKey: PropTypes.Requireable<io.flow.internal.v0.enums.ExperimentDiscriminatorKey>;
28349
28363
  export const exportContentType: PropTypes.Requireable<io.flow.internal.v0.enums.ExportContentType>;
28350
28364
  export const featureScope: PropTypes.Requireable<io.flow.internal.v0.enums.FeatureScope>;
28351
28365
  export const featureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FeatureStatus>;
@@ -28360,6 +28374,8 @@ export const fraudReviewResponsibleParty: PropTypes.Requireable<io.flow.internal
28360
28374
  export const ftpIntent: PropTypes.Requireable<io.flow.internal.v0.enums.FtpIntent>;
28361
28375
  export const ftpProtocol: PropTypes.Requireable<io.flow.internal.v0.enums.FtpProtocol>;
28362
28376
  export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.enums.GoogleAnalyticsPlugin>;
28377
+ export const harinathItemType: PropTypes.Requireable<io.flow.internal.v0.enums.HarinathItemType>;
28378
+ export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
28363
28379
  export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
28364
28380
  export const inventoryCheckService: PropTypes.Requireable<io.flow.internal.v0.enums.InventoryCheckService>;
28365
28381
  export const inventoryReservation: PropTypes.Requireable<io.flow.internal.v0.enums.InventoryReservation>;
@@ -28369,6 +28385,7 @@ export const itemHarmonizationStatus: PropTypes.Requireable<io.flow.internal.v0.
28369
28385
  export const itemQuantityAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemQuantityAction>;
28370
28386
  export const itemType: PropTypes.Requireable<io.flow.internal.v0.enums.ItemType>;
28371
28387
  export const keywordType: PropTypes.Requireable<io.flow.internal.v0.enums.KeywordType>;
28388
+ export const konstantinItemType: PropTypes.Requireable<io.flow.internal.v0.enums.KonstantinItemType>;
28372
28389
  export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.LabelBillingStrategy>;
28373
28390
  export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
28374
28391
  export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
@@ -28376,6 +28393,7 @@ export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.f
28376
28393
  export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
28377
28394
  export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
28378
28395
  export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsCapability>;
28396
+ export const logisticsPayoutResolutionMethod: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod>;
28379
28397
  export const manualReviewRuleStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ManualReviewRuleStatus>;
28380
28398
  export const manualTransactionCategory: PropTypes.Requireable<io.flow.internal.v0.enums.ManualTransactionCategory>;
28381
28399
  export const marketingGatewayAccountConnectionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayAccountConnectionStatus>;
@@ -28389,6 +28407,8 @@ export const marketingGatewayPlatform: PropTypes.Requireable<io.flow.internal.v0
28389
28407
  export const marketingGatewayProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayProductStatus>;
28390
28408
  export const marketingGatewaySchemaCompatibility: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility>;
28391
28409
  export const matiasItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MatiasItemType>;
28410
+ export const michaelyanItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MichaelyanItemType>;
28411
+ export const miljenkoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MiljenkoItemType>;
28392
28412
  export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
28393
28413
  export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
28394
28414
  export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
@@ -28449,7 +28469,6 @@ export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.
28449
28469
  export const revenueRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueRecordType>;
28450
28470
  export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskCheck>;
28451
28471
  export const riskEvaluation: PropTypes.Requireable<io.flow.internal.v0.enums.RiskEvaluation>;
28452
- export const scope: PropTypes.Requireable<io.flow.internal.v0.enums.Scope>;
28453
28472
  export const serialReservationError: PropTypes.Requireable<io.flow.internal.v0.enums.SerialReservationError>;
28454
28473
  export const serviceName: PropTypes.Requireable<io.flow.internal.v0.enums.ServiceName>;
28455
28474
  export const sessionCountryStatus: PropTypes.Requireable<io.flow.internal.v0.enums.SessionCountryStatus>;
@@ -28467,24 +28486,23 @@ export const shopifyPromotionOrderEntitlementComponent: PropTypes.Requireable<io
28467
28486
  export const shopifyPromotionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPromotionStatus>;
28468
28487
  export const shopifyService: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyService>;
28469
28488
  export const shrutiDemoType: PropTypes.Requireable<io.flow.internal.v0.enums.ShrutiDemoType>;
28470
- export const significanceAction: PropTypes.Requireable<io.flow.internal.v0.enums.SignificanceAction>;
28471
28489
  export const simpleRoundingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.SimpleRoundingStrategy>;
28472
28490
  export const snoozeNextActionWith: PropTypes.Requireable<io.flow.internal.v0.enums.SnoozeNextActionWith>;
28473
28491
  export const snoozeSourceType: PropTypes.Requireable<io.flow.internal.v0.enums.SnoozeSourceType>;
28474
28492
  export const statementStatus: PropTypes.Requireable<io.flow.internal.v0.enums.StatementStatus>;
28475
28493
  export const statementTransferTransactionLocation: PropTypes.Requireable<io.flow.internal.v0.enums.StatementTransferTransactionLocation>;
28476
28494
  export const statisticType: PropTypes.Requireable<io.flow.internal.v0.enums.StatisticType>;
28477
- export const status: PropTypes.Requireable<io.flow.internal.v0.enums.Status>;
28478
28495
  export const subscriptionFrequency: PropTypes.Requireable<io.flow.internal.v0.enums.SubscriptionFrequency>;
28479
28496
  export const suggestionAction: PropTypes.Requireable<io.flow.internal.v0.enums.SuggestionAction>;
28480
28497
  export const svitlanaType: PropTypes.Requireable<io.flow.internal.v0.enums.SvitlanaType>;
28481
28498
  export const tamItemType: PropTypes.Requireable<io.flow.internal.v0.enums.TamItemType>;
28482
28499
  export const tariffEligibilityType: PropTypes.Requireable<io.flow.internal.v0.enums.TariffEligibilityType>;
28483
28500
  export const taskProcessorKey: PropTypes.Requireable<io.flow.internal.v0.enums.TaskProcessorKey>;
28501
+ export const taxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting>;
28484
28502
  export const taxCalculationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.TaxCalculationErrorCode>;
28485
28503
  export const taxParty: PropTypes.Requireable<io.flow.internal.v0.enums.TaxParty>;
28486
28504
  export const taxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TaxTransactionType>;
28487
- export const timeseriesType: PropTypes.Requireable<io.flow.internal.v0.enums.TimeseriesType>;
28505
+ export const thiagoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.ThiagoItemType>;
28488
28506
  export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
28489
28507
  export const trackingProcessingFailureClassification: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingProcessingFailureClassification>;
28490
28508
  export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
@@ -28598,8 +28616,6 @@ export const authorizedChargeStatus: PropTypes.Requireable<io.flow.internal.v0.m
28598
28616
  export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedLineItemCharge>;
28599
28617
  export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
28600
28618
  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
28619
  export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
28604
28620
  export const bankPayment: PropTypes.Requireable<io.flow.internal.v0.models.BankPayment>;
28605
28621
  export const bankPaymentDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentDeletedV2>;
@@ -28808,7 +28824,9 @@ export const classificationProduct: PropTypes.Requireable<io.flow.internal.v0.mo
28808
28824
  export const classificationProductHarmonization: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductHarmonization>;
28809
28825
  export const classificationProductId: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductId>;
28810
28826
  export const classificationProductRequest: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductRequest>;
28827
+ export const classificationProductRequestEnvelope: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductRequestEnvelope>;
28811
28828
  export const classificationProductResult: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductResult>;
28829
+ export const classificationProductResultEnvelope: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductResultEnvelope>;
28812
28830
  export const classificationProductSummary: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductSummary>;
28813
28831
  export const classificationProductSummaryPage: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductSummaryPage>;
28814
28832
  export const classificationRequeueRequest: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationRequeueRequest>;
@@ -28852,6 +28870,7 @@ export const cryptoAccountModificationForm: PropTypes.Requireable<io.flow.intern
28852
28870
  export const cryptoAccountPutForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccountPutForm>;
28853
28871
  export const cryptoAuthentication: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAuthentication>;
28854
28872
  export const cryptoAuthenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAuthenticationForm>;
28873
+ export const csvTransaction: PropTypes.Requireable<io.flow.internal.v0.models.CsvTransaction>;
28855
28874
  export const currencyInternalRate: PropTypes.Requireable<io.flow.internal.v0.models.CurrencyInternalRate>;
28856
28875
  export const customerPurgeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CustomerPurgeUpserted>;
28857
28876
  export const customerSecret: PropTypes.Requireable<io.flow.internal.v0.models.CustomerSecret>;
@@ -28865,10 +28884,6 @@ export const customsDetails: PropTypes.Requireable<io.flow.internal.v0.models.Cu
28865
28884
  export const customsDetailsForm: PropTypes.Requireable<io.flow.internal.v0.models.CustomsDetailsForm>;
28866
28885
  export const customsProductAttributeLabel: PropTypes.Requireable<io.flow.internal.v0.models.CustomsProductAttributeLabel>;
28867
28886
  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
28887
  export const dailyValue: PropTypes.Requireable<io.flow.internal.v0.models.DailyValue>;
28873
28888
  export const dailyValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueDeleted>;
28874
28889
  export const dailyValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueUpserted>;
@@ -28969,33 +28984,10 @@ export const exclusionRuleDeleted: PropTypes.Requireable<io.flow.internal.v0.mod
28969
28984
  export const exclusionRuleExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleExportRequest>;
28970
28985
  export const exclusionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleUpserted>;
28971
28986
  export const expectedOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.ExpectedOrderSummary>;
28972
- export const experienceExperiment: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceExperiment>;
28973
28987
  export const experienceExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceExportRequest>;
28974
28988
  export const experienceImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceImportRequest>;
28975
28989
  export const experienceOrderActionRule: PropTypes.Requireable<io.flow.internal.v0.models.ExperienceOrderActionRule>;
28976
28990
  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
28991
  export const explicitStatement: PropTypes.Requireable<io.flow.internal.v0.models.ExplicitStatement>;
29000
28992
  export const explicitStatementFormAllPendingPostedTransactions: PropTypes.Requireable<io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions>;
29001
28993
  export const explicitStatementFormTransactionIds: PropTypes.Requireable<io.flow.internal.v0.models.ExplicitStatementFormTransactionIds>;
@@ -29014,7 +29006,6 @@ export const failedDimensionEstimateOpsInputWithReason: PropTypes.Requireable<io
29014
29006
  export const feature: PropTypes.Requireable<io.flow.internal.v0.models.Feature>;
29015
29007
  export const featureContextForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureContextForm>;
29016
29008
  export const featureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FeatureDeleted>;
29017
- export const featureExperiment: PropTypes.Requireable<io.flow.internal.v0.models.FeatureExperiment>;
29018
29009
  export const featureForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureForm>;
29019
29010
  export const featureGeoForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureGeoForm>;
29020
29011
  export const featureIdReference: PropTypes.Requireable<io.flow.internal.v0.models.FeatureIdReference>;
@@ -29025,11 +29016,7 @@ export const featureTaskDataSyncFeature: PropTypes.Requireable<io.flow.internal.
29025
29016
  export const featureTaskDataSyncOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FeatureTaskDataSyncOrganization>;
29026
29017
  export const featureUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FeatureUpserted>;
29027
29018
  export const featureValueForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureValueForm>;
29028
- export const featureValueReference: PropTypes.Requireable<io.flow.internal.v0.models.FeatureValueReference>;
29029
29019
  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
29020
  export const fedex: PropTypes.Requireable<io.flow.internal.v0.models.Fedex>;
29034
29021
  export const fedexCrossborder: PropTypes.Requireable<io.flow.internal.v0.models.FedexCrossborder>;
29035
29022
  export const fee: PropTypes.Requireable<io.flow.internal.v0.models.Fee>;
@@ -29061,8 +29048,11 @@ export const flowLabProjectPutForm: PropTypes.Requireable<io.flow.internal.v0.mo
29061
29048
  export const flowLabelSetting: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabelSetting>;
29062
29049
  export const flowLabelSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabelSettingForm>;
29063
29050
  export const flowShopValidationError: PropTypes.Requireable<io.flow.internal.v0.models.FlowShopValidationError>;
29064
- export const forceTransitForm: PropTypes.Requireable<io.flow.internal.v0.models.ForceTransitForm>;
29051
+ export const fraudAuthorizationSummary: PropTypes.Requireable<io.flow.internal.v0.models.FraudAuthorizationSummary>;
29065
29052
  export const fraudPendingReview: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReview>;
29053
+ export const fraudPendingReviewAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewAuthorization>;
29054
+ export const fraudPendingReviewAuthorizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted>;
29055
+ export const fraudPendingReviewAuthorizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted>;
29066
29056
  export const fraudPendingReviewDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewDeleted>;
29067
29057
  export const fraudPendingReviewDetail: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewDetail>;
29068
29058
  export const fraudPendingReviewUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FraudPendingReviewUpserted>;
@@ -29071,6 +29061,12 @@ export const fraudProviderConfigurationFormRiskified: PropTypes.Requireable<io.f
29071
29061
  export const fraudProviderConfigurationRiskified: PropTypes.Requireable<io.flow.internal.v0.models.FraudProviderConfigurationRiskified>;
29072
29062
  export const fraudProviderConfigurationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FraudProviderConfigurationUpserted>;
29073
29063
  export const fraudReview: PropTypes.Requireable<io.flow.internal.v0.models.FraudReview>;
29064
+ export const fraudReviewAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewAuthorization>;
29065
+ export const fraudReviewAuthorizationDecision: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewAuthorizationDecision>;
29066
+ export const fraudReviewAuthorizationDecisionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted>;
29067
+ export const fraudReviewAuthorizationDecisionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted>;
29068
+ export const fraudReviewAuthorizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewAuthorizationDeleted>;
29069
+ export const fraudReviewAuthorizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewAuthorizationUpserted>;
29074
29070
  export const fraudReviewDecision: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewDecision>;
29075
29071
  export const fraudReviewDecisionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewDecisionDeleted>;
29076
29072
  export const fraudReviewDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.FraudReviewDecisionForm>;
@@ -29129,6 +29125,10 @@ export const googleLinker: PropTypes.Requireable<io.flow.internal.v0.models.Goog
29129
29125
  export const googleShoppingAccountParameters: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingAccountParameters>;
29130
29126
  export const googleShoppingSetting: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingSetting>;
29131
29127
  export const googleTagManager: PropTypes.Requireable<io.flow.internal.v0.models.GoogleTagManager>;
29128
+ export const harinathItem: PropTypes.Requireable<io.flow.internal.v0.models.HarinathItem>;
29129
+ export const harinathItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.HarinathItemDeleted>;
29130
+ export const harinathItemForm: PropTypes.Requireable<io.flow.internal.v0.models.HarinathItemForm>;
29131
+ export const harinathItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.HarinathItemUpserted>;
29132
29132
  export const harmonizationClassificationStatisticsData: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsData>;
29133
29133
  export const harmonizationClassificationStatisticsPublished: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished>;
29134
29134
  export const harmonizationCodesImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationCodesImport>;
@@ -29221,6 +29221,10 @@ export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
29221
29221
  export const keyReference: PropTypes.Requireable<io.flow.internal.v0.models.KeyReference>;
29222
29222
  export const klarnaAuthorizationParameters: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaAuthorizationParameters>;
29223
29223
  export const klarnaPaymentMethodCategory: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaPaymentMethodCategory>;
29224
+ export const konstantinItem: PropTypes.Requireable<io.flow.internal.v0.models.KonstantinItem>;
29225
+ export const konstantinItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.KonstantinItemDeleted>;
29226
+ export const konstantinItemForm: PropTypes.Requireable<io.flow.internal.v0.models.KonstantinItemForm>;
29227
+ export const konstantinItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.KonstantinItemUpserted>;
29224
29228
  export const labProjectSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettings>;
29225
29229
  export const labProjectSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsForm>;
29226
29230
  export const labProjectSettingsFormAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsFormAcceptance>;
@@ -29289,6 +29293,8 @@ export const localizedPriceBookItemUpserted: PropTypes.Requireable<io.flow.inter
29289
29293
  export const location: PropTypes.Requireable<io.flow.internal.v0.models.Location>;
29290
29294
  export const logisticsCapabilities: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsCapabilities>;
29291
29295
  export const logisticsCapabilitiesForm: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsCapabilitiesForm>;
29296
+ export const logisticsPayoutRequest: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsPayoutRequest>;
29297
+ export const logisticsPayoutRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsPayoutRequestForm>;
29292
29298
  export const logo: PropTypes.Requireable<io.flow.internal.v0.models.Logo>;
29293
29299
  export const lostChargeback: PropTypes.Requireable<io.flow.internal.v0.models.LostChargeback>;
29294
29300
  export const loyaltyProgram: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgram>;
@@ -29370,6 +29376,14 @@ export const merchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.
29370
29376
  export const messageStamp: PropTypes.Requireable<io.flow.internal.v0.models.MessageStamp>;
29371
29377
  export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
29372
29378
  export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
29379
+ export const michaelyanItem: PropTypes.Requireable<io.flow.internal.v0.models.MichaelyanItem>;
29380
+ export const michaelyanItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MichaelyanItemDeleted>;
29381
+ export const michaelyanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MichaelyanItemForm>;
29382
+ export const michaelyanItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MichaelyanItemUpserted>;
29383
+ export const miljenkoItem: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItem>;
29384
+ export const miljenkoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemDeleted>;
29385
+ export const miljenkoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemForm>;
29386
+ export const miljenkoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemUpserted>;
29373
29387
  export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
29374
29388
  export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
29375
29389
  export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
@@ -29426,6 +29440,9 @@ export const orderServiceChangeCsvForm: PropTypes.Requireable<io.flow.internal.v
29426
29440
  export const orderShipped: PropTypes.Requireable<io.flow.internal.v0.models.OrderShipped>;
29427
29441
  export const orderSubmissionForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderSubmissionForm>;
29428
29442
  export const orderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderSummary>;
29443
+ export const orderTaxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting>;
29444
+ export const orderTaxAndDutyInclusivitySettingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted>;
29445
+ export const orderTaxAndDutyInclusivitySettingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted>;
29429
29446
  export const orderTransaction: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransaction>;
29430
29447
  export const orderTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionDeleted>;
29431
29448
  export const orderTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionUpserted>;
@@ -29462,6 +29479,9 @@ export const organizationDebugTransaction: PropTypes.Requireable<io.flow.interna
29462
29479
  export const organizationInvitationAcceptForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationInvitationAcceptForm>;
29463
29480
  export const organizationMembershipCopy: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMembershipCopy>;
29464
29481
  export const organizationMembershipCopyForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMembershipCopyForm>;
29482
+ export const organizationMetadata: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMetadata>;
29483
+ export const organizationMetadataDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMetadataDeleted>;
29484
+ export const organizationMetadataUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationMetadataUpserted>;
29465
29485
  export const organizationOnboardingStateAdjustmentResult: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult>;
29466
29486
  export const organizationOnboardingStateAuditResult: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationOnboardingStateAuditResult>;
29467
29487
  export const organizationPaymentSetting: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSetting>;
@@ -29484,6 +29504,26 @@ export const organizationStatusChange: PropTypes.Requireable<io.flow.internal.v0
29484
29504
  export const organizationStatusChangeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChangeDeleted>;
29485
29505
  export const organizationStatusChangeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChangeUpserted>;
29486
29506
  export const organizationsAuditCheckReport: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationsAuditCheckReport>;
29507
+ export const otherRecord: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecord>;
29508
+ export const otherRecordAccount: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordAccount>;
29509
+ export const otherRecordAccountSourceSummary: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordAccountSourceSummary>;
29510
+ export const otherRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordDeleted>;
29511
+ export const otherRecordDiscount: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordDiscount>;
29512
+ export const otherRecordFees: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordFees>;
29513
+ export const otherRecordIdentifiers: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordIdentifiers>;
29514
+ export const otherRecordMerchantReference: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMerchantReference>;
29515
+ export const otherRecordMetadata: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadata>;
29516
+ export const otherRecordMetadataCarrierCharge: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge>;
29517
+ export const otherRecordMetadataChannel: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataChannel>;
29518
+ export const otherRecordMetadataFailedPayout: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataFailedPayout>;
29519
+ export const otherRecordMetadataManual: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataManual>;
29520
+ export const otherRecordMetadataShippingLabel: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataShippingLabel>;
29521
+ export const otherRecordMetadataShippingLabelRevenueShare: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare>;
29522
+ export const otherRecordMetadataTrueup: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordMetadataTrueup>;
29523
+ export const otherRecordOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordOrderSummary>;
29524
+ export const otherRecordOrderSummaryIdentifiers: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers>;
29525
+ export const otherRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordUpserted>;
29526
+ export const otherRecordWithholdings: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordWithholdings>;
29487
29527
  export const partner: PropTypes.Requireable<io.flow.internal.v0.models.Partner>;
29488
29528
  export const partnerAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorization>;
29489
29529
  export const partnerAuthorizationForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorizationForm>;
@@ -29510,6 +29550,7 @@ export const paymentProcessorAccountDeleted: PropTypes.Requireable<io.flow.inter
29510
29550
  export const paymentProcessorAccountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorAccountUpserted>;
29511
29551
  export const paymentProcessorMerchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantDeleted>;
29512
29552
  export const paymentProcessorMerchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantUpserted>;
29553
+ export const paymentSummary: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummary>;
29513
29554
  export const paymentSummaryV2: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummaryV2>;
29514
29555
  export const payoutStatusCounts: PropTypes.Requireable<io.flow.internal.v0.models.PayoutStatusCounts>;
29515
29556
  export const paypalAccount: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAccount>;
@@ -29676,8 +29717,6 @@ export const reportingMonetaryValue: PropTypes.Requireable<io.flow.internal.v0.m
29676
29717
  export const reportingOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportingOrderSummary>;
29677
29718
  export const reportingOrganizationSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportingOrganizationSummary>;
29678
29719
  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
29720
  export const reportingProvince: PropTypes.Requireable<io.flow.internal.v0.models.ReportingProvince>;
29682
29721
  export const reportingReconciliation: PropTypes.Requireable<io.flow.internal.v0.models.ReportingReconciliation>;
29683
29722
  export const reportingRefundReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportingRefundReference>;
@@ -29688,6 +29727,7 @@ export const reportingVatRemittance: PropTypes.Requireable<io.flow.internal.v0.m
29688
29727
  export const reportingVatRemittanceRate: PropTypes.Requireable<io.flow.internal.v0.models.ReportingVatRemittanceRate>;
29689
29728
  export const reportingVendor: PropTypes.Requireable<io.flow.internal.v0.models.ReportingVendor>;
29690
29729
  export const requeueRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RequeueRequestForm>;
29730
+ export const rescreenRestrictionsProducts: PropTypes.Requireable<io.flow.internal.v0.models.RescreenRestrictionsProducts>;
29691
29731
  export const restrictionCategory: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionCategory>;
29692
29732
  export const restrictionFilter: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionFilter>;
29693
29733
  export const restrictionHistoryItemReviewDecision: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision>;
@@ -29950,6 +29990,8 @@ export const taxonomyNode: PropTypes.Requireable<io.flow.internal.v0.models.Taxo
29950
29990
  export const techOnboardingDescription: PropTypes.Requireable<io.flow.internal.v0.models.TechOnboardingDescription>;
29951
29991
  export const test: PropTypes.Requireable<io.flow.internal.v0.models.Test>;
29952
29992
  export const testForm: PropTypes.Requireable<io.flow.internal.v0.models.TestForm>;
29993
+ export const thiagoItem: PropTypes.Requireable<io.flow.internal.v0.models.ThiagoItem>;
29994
+ export const thiagoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.ThiagoItemForm>;
29953
29995
  export const thirdPartyLogisticsPartner: PropTypes.Requireable<io.flow.internal.v0.models.ThirdPartyLogisticsPartner>;
29954
29996
  export const thirdPartyLogisticsPickUpTimeWindow: PropTypes.Requireable<io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow>;
29955
29997
  export const tieredFee: PropTypes.Requireable<io.flow.internal.v0.models.TieredFee>;
@@ -29961,6 +30003,10 @@ export const timeToClassifyAggregatedUpserted: PropTypes.Requireable<io.flow.int
29961
30003
  export const timeToClassifyDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TimeToClassifyDeleted>;
29962
30004
  export const timeToClassifyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TimeToClassifyUpserted>;
29963
30005
  export const timeWithTimezone: PropTypes.Requireable<io.flow.internal.v0.models.TimeWithTimezone>;
30006
+ export const trackingAssuranceAnalysis: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysis>;
30007
+ export const trackingAssuranceAnalysisDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted>;
30008
+ export const trackingAssuranceAnalysisUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted>;
30009
+ export const trackingDebugForceTransitForm: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugForceTransitForm>;
29964
30010
  export const trackingDebugLabel: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabel>;
29965
30011
  export const trackingDebugLabelEvent: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabelEvent>;
29966
30012
  export const trackingDebugLabelLocation: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabelLocation>;
@@ -30047,7 +30093,6 @@ export const discountRequestOfferForm: PropTypes.Requireable<io.flow.internal.v0
30047
30093
  export const disputeDetails: PropTypes.Requireable<io.flow.internal.v0.unions.DisputeDetails>;
30048
30094
  export const dutyExpression: PropTypes.Requireable<io.flow.internal.v0.unions.DutyExpression>;
30049
30095
  export const event: PropTypes.Requireable<io.flow.internal.v0.unions.Event>;
30050
- export const experiment: PropTypes.Requireable<io.flow.internal.v0.unions.Experiment>;
30051
30096
  export const explicitStatementForm: PropTypes.Requireable<io.flow.internal.v0.unions.ExplicitStatementForm>;
30052
30097
  export const exportSchedule: PropTypes.Requireable<io.flow.internal.v0.unions.ExportSchedule>;
30053
30098
  export const featureDefaultValue: PropTypes.Requireable<io.flow.internal.v0.unions.FeatureDefaultValue>;
@@ -30105,6 +30150,4 @@ export const taxAmount: PropTypes.Requireable<io.flow.internal.v0.unions.TaxAmou
30105
30150
  export const tracker: PropTypes.Requireable<io.flow.internal.v0.unions.Tracker>;
30106
30151
  export const transaction: PropTypes.Requireable<io.flow.internal.v0.unions.Transaction>;
30107
30152
  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>;
30153
+ export const validationRule: PropTypes.Requireable<io.flow.internal.v0.unions.ValidationRule>;