@flowio/api-internal-prop-types 9.24.72 → 9.24.74

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.
@@ -87,38 +87,14 @@ declare namespace io.flow.RESERVED_WORD_return.v0.unions {
87
87
  type ReturnSource = (io.flow.RESERVED_WORD_return.v0.models.ReturnSourceFlow | io.flow.RESERVED_WORD_return.v0.models.ReturnSourceExternalVendor);
88
88
  }
89
89
 
90
- declare namespace io.flow.units.v0.enums {
91
- type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
92
- type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
93
- type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
94
- }
95
-
96
- declare namespace io.flow.order.price.v0.enums {
97
- type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge';
98
- type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
90
+ declare namespace io.flow.error.v0.enums {
91
+ type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
99
92
  }
100
93
 
101
- declare namespace io.flow.order.price.v0.models {
102
- interface OrderPriceDetail {
103
- readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
104
- readonly 'currency': string;
105
- readonly 'amount': number;
106
- readonly 'label': string;
107
- readonly 'base': io.flow.common.v0.models.Price;
108
- readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
109
- readonly 'name'?: string;
110
- readonly 'rate'?: number;
111
- readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
112
- readonly 'rate_label'?: string;
113
- }
114
-
115
- interface OrderPriceDetailComponent {
116
- readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
117
- readonly 'currency': string;
118
- readonly 'amount': number;
119
- readonly 'label': string;
120
- readonly 'base': io.flow.common.v0.models.Price;
121
- readonly 'name'?: string;
94
+ declare namespace io.flow.error.v0.models {
95
+ interface GenericError {
96
+ readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
97
+ readonly 'messages': string[];
122
98
  }
123
99
  }
124
100
 
@@ -185,121 +161,6 @@ declare namespace io.flow.channel.v0.models {
185
161
  }
186
162
  }
187
163
 
188
- declare namespace io.flow.reference.v0.enums {
189
- type PaymentMethodCapability = 'credit' | 'debit';
190
- type PaymentMethodType = 'card' | 'online' | 'offline';
191
- type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
192
- type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
193
- }
194
-
195
- declare namespace io.flow.reference.v0.models {
196
- interface Carrier {
197
- readonly 'id': string;
198
- readonly 'name': string;
199
- readonly 'tracking_url': string;
200
- }
201
-
202
- interface CarrierService {
203
- readonly 'id': string;
204
- readonly 'carrier': io.flow.reference.v0.models.Carrier;
205
- readonly 'name': string;
206
- }
207
-
208
- interface Country {
209
- readonly 'name': string;
210
- readonly 'iso_3166_2': string;
211
- readonly 'iso_3166_3': string;
212
- readonly 'languages': string[];
213
- readonly 'measurement_system': string;
214
- readonly 'default_currency'?: string;
215
- readonly 'default_language'?: string;
216
- readonly 'timezones': string[];
217
- readonly 'default_delivered_duty'?: string;
218
- }
219
-
220
- interface Currency {
221
- readonly 'name': string;
222
- readonly 'iso_4217_3': string;
223
- readonly 'number_decimals': number;
224
- readonly 'symbols'?: io.flow.reference.v0.models.CurrencySymbols;
225
- readonly 'default_locale'?: string;
226
- }
227
-
228
- interface CurrencySymbols {
229
- readonly 'primary': string;
230
- readonly 'narrow'?: string;
231
- }
232
-
233
- interface Language {
234
- readonly 'name': string;
235
- readonly 'iso_639_2': string;
236
- }
237
-
238
- interface Locale {
239
- readonly 'id': string;
240
- readonly 'name': string;
241
- readonly 'country': string;
242
- readonly 'language': string;
243
- readonly 'numbers': io.flow.reference.v0.models.LocaleNumbers;
244
- }
245
-
246
- interface LocaleNumbers {
247
- readonly 'decimal': string;
248
- readonly 'group': string;
249
- }
250
-
251
- interface LocalizedTranslation {
252
- readonly 'locale': io.flow.reference.v0.models.Locale;
253
- readonly 'name': string;
254
- }
255
-
256
- interface PaymentMethod {
257
- readonly 'id': string;
258
- readonly 'type': io.flow.reference.v0.enums.PaymentMethodType;
259
- readonly 'name': string;
260
- readonly 'images': io.flow.reference.v0.models.PaymentMethodImages;
261
- readonly 'regions': string[];
262
- readonly 'capabilities'?: io.flow.reference.v0.enums.PaymentMethodCapability[];
263
- }
264
-
265
- interface PaymentMethodImage {
266
- readonly 'url': string;
267
- readonly 'width': number;
268
- readonly 'height': number;
269
- }
270
-
271
- interface PaymentMethodImages {
272
- readonly 'small': io.flow.reference.v0.models.PaymentMethodImage;
273
- readonly 'medium': io.flow.reference.v0.models.PaymentMethodImage;
274
- readonly 'large': io.flow.reference.v0.models.PaymentMethodImage;
275
- }
276
-
277
- interface Province {
278
- readonly 'id': string;
279
- readonly 'iso_3166_2': string;
280
- readonly 'name': string;
281
- readonly 'country': string;
282
- readonly 'province_type': io.flow.reference.v0.enums.ProvinceType;
283
- readonly 'translations'?: io.flow.reference.v0.models.LocalizedTranslation[];
284
- }
285
-
286
- interface Region {
287
- readonly 'id': string;
288
- readonly 'name': string;
289
- readonly 'countries': string[];
290
- readonly 'currencies': string[];
291
- readonly 'languages': string[];
292
- readonly 'measurement_systems': string[];
293
- readonly 'timezones': string[];
294
- }
295
-
296
- interface Timezone {
297
- readonly 'name': string;
298
- readonly 'description': string;
299
- readonly 'offset': number;
300
- }
301
- }
302
-
303
164
  declare namespace io.flow.invoice.v0.enums {
304
165
  type PaymentTerm = 'net7' | 'net15' | 'net30';
305
166
  }
@@ -1464,6 +1325,7 @@ declare namespace io.flow.payment.v0.models {
1464
1325
  readonly 'processor': string;
1465
1326
  readonly 'operation_identifier'?: io.flow.payment.v0.models.PaymentProcessorIdentifier;
1466
1327
  readonly 'account'?: io.flow.payment.v0.models.PaymentProcessorAccount;
1328
+ readonly 'transaction_details'?: io.flow.payment.v0.unions.PaymentProcessorTransactionDetails;
1467
1329
  }
1468
1330
 
1469
1331
  interface PaymentProcessorAccount {
@@ -1488,6 +1350,17 @@ declare namespace io.flow.payment.v0.models {
1488
1350
  readonly 'processor': string;
1489
1351
  }
1490
1352
 
1353
+ interface PaymentProcessorTransactionDetailsCard {
1354
+ readonly 'discriminator': 'card';
1355
+ readonly 'transaction_identifier'?: string;
1356
+ readonly 'method_type'?: string;
1357
+ readonly 'result_status'?: string;
1358
+ readonly 'reason_code'?: string;
1359
+ readonly 'avs_result_code'?: string;
1360
+ readonly 'cvv_result_code'?: string;
1361
+ readonly 'threeds_result_code'?: string;
1362
+ }
1363
+
1491
1364
  interface PaymentReference {
1492
1365
  readonly 'id': string;
1493
1366
  }
@@ -1824,6 +1697,7 @@ declare namespace io.flow.payment.v0.unions {
1824
1697
  type Payment = (io.flow.payment.v0.models.PaymentPaypal | io.flow.payment.v0.models.PaymentCryptopay);
1825
1698
  type PaymentForm = (io.flow.payment.v0.models.MerchantOfRecordPaymentForm);
1826
1699
  type PaymentOrderReference = (io.flow.payment.v0.models.AuthorizationOrderReference | io.flow.payment.v0.models.PaymentPaymentRequestReference);
1700
+ type PaymentProcessorTransactionDetails = (io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard);
1827
1701
  type PaymentSource = (io.flow.payment.v0.models.CardPaymentSource);
1828
1702
  type PaymentSourceForm = (io.flow.payment.v0.models.CardPaymentSourceForm);
1829
1703
  type ThreedsChallengeAction = (io.flow.payment.v0.models.ThreedsTwoChallengeRequest);
@@ -2292,9 +2166,8 @@ declare namespace io.flow.billing.csv.v0.models {
2292
2166
  readonly 'id': string;
2293
2167
  readonly 'type': io.flow.billing.internal.v0.enums.BillingTransactionType;
2294
2168
  readonly 'account': io.flow.billing.csv.v0.models.BillingCsvTransactionAccount;
2295
- readonly 'metadata'?: io.flow.billing.v0.unions.TransactionMetadata;
2296
- readonly 'order'?: io.flow.billing.v0.models.BillingChannelOrderSummary;
2297
- readonly 'payment_request'?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
2169
+ readonly 'metadata'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadata;
2170
+ readonly 'order'?: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummary;
2298
2171
  readonly 'currency': string;
2299
2172
  readonly 'source': io.flow.billing.v0.enums.TransactionSource;
2300
2173
  readonly 'parent'?: io.flow.billing.v0.models.ParentTransactionSummary;
@@ -2303,7 +2176,7 @@ declare namespace io.flow.billing.csv.v0.models {
2303
2176
  readonly 'withholdings': io.flow.billing.csv.v0.models.BillingCsvTransactionWithholdings;
2304
2177
  readonly 'discount': io.flow.billing.csv.v0.models.BillingCsvTransactionDiscount;
2305
2178
  readonly 'net': number;
2306
- readonly 'identifiers': Record<string, string>;
2179
+ readonly 'identifiers': io.flow.billing.csv.v0.models.BillingCsvTransactionIdentifiers;
2307
2180
  readonly 'created_at': string;
2308
2181
  readonly 'updated_at': string;
2309
2182
  }
@@ -2334,6 +2207,45 @@ declare namespace io.flow.billing.csv.v0.models {
2334
2207
  readonly 'transfer': number;
2335
2208
  }
2336
2209
 
2210
+ interface BillingCsvTransactionIdentifiers {
2211
+ readonly 'reference_id'?: string;
2212
+ }
2213
+
2214
+ interface BillingCsvTransactionMetadata {
2215
+ readonly 'channel'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataChannel;
2216
+ readonly 'shipping_label'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabel;
2217
+ readonly 'trueup'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
2218
+ readonly 'manual'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
2219
+ }
2220
+
2221
+ interface BillingCsvTransactionMetadataChannel {
2222
+ readonly 'method': string;
2223
+ readonly 'card'?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
2224
+ }
2225
+
2226
+ interface BillingCsvTransactionMetadataManual {
2227
+ readonly 'original'?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
2228
+ readonly 'url'?: string;
2229
+ }
2230
+
2231
+ interface BillingCsvTransactionMetadataShippingLabel {
2232
+ readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
2233
+ }
2234
+
2235
+ interface BillingCsvTransactionMetadataTrueup {
2236
+ readonly 'original': io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
2237
+ }
2238
+
2239
+ interface BillingCsvTransactionOrderSummary {
2240
+ readonly 'organization': io.flow.common.v0.models.OrganizationReference;
2241
+ readonly 'number': string;
2242
+ readonly 'identifiers': io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummaryIdentifiers;
2243
+ }
2244
+
2245
+ interface BillingCsvTransactionOrderSummaryIdentifiers {
2246
+ readonly 'shopify_order_id'?: string;
2247
+ }
2248
+
2337
2249
  interface BillingCsvTransactionWithholdings {
2338
2250
  readonly 'tax': number;
2339
2251
  readonly 'duty': number;
@@ -2797,6 +2709,7 @@ declare namespace io.flow.stripe.v0.models {
2797
2709
  readonly 'status': io.flow.stripe.v0.enums.PaymentIntentStatus;
2798
2710
  readonly 'transfer_data'?: io.flow.stripe.v0.models.TransferData;
2799
2711
  readonly 'transfer_group'?: string;
2712
+ readonly 'shipping'?: io.flow.stripe.v0.models.PaymentIntentShipping;
2800
2713
  }
2801
2714
 
2802
2715
  interface PaymentIntentCancellationForm {
@@ -2853,6 +2766,13 @@ declare namespace io.flow.stripe.v0.models {
2853
2766
  readonly 'statement_descriptor_suffix'?: string;
2854
2767
  readonly 'transfer_data'?: io.flow.stripe.v0.models.TransferData;
2855
2768
  readonly 'transfer_group'?: string;
2769
+ readonly 'shipping'?: io.flow.stripe.v0.models.PaymentIntentShipping;
2770
+ }
2771
+
2772
+ interface PaymentIntentShipping {
2773
+ readonly 'address': io.flow.stripe.v0.models.Address;
2774
+ readonly 'name': string;
2775
+ readonly 'phone'?: string;
2856
2776
  }
2857
2777
 
2858
2778
  interface PaymentIntentUpdateForm {
@@ -2969,6 +2889,7 @@ declare namespace io.flow.stripe.v0.models {
2969
2889
  readonly 'network'?: string;
2970
2890
  readonly 'request_three_d_secure'?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
2971
2891
  readonly 'stored_credential_transaction_type'?: io.flow.stripe.v0.enums.StoredCredentialTransactionType;
2892
+ readonly 'mcc'?: string;
2972
2893
  }
2973
2894
 
2974
2895
  interface PaymentOutcome {
@@ -3492,9 +3413,9 @@ declare namespace io.flow.label.v0.models {
3492
3413
  }
3493
3414
 
3494
3415
  interface ShippingLabelHopCostItemizedEstimate {
3495
- readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
3496
- readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
3497
- readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
3416
+ readonly 'units': io.flow.trueup.v0.models.LabelUnits;
3417
+ readonly 'base': io.flow.trueup.v0.models.LabelBase;
3418
+ readonly 'surcharges': io.flow.trueup.v0.models.LabelSurcharge[];
3498
3419
  }
3499
3420
 
3500
3421
  interface ShippingLabelHopSummary {
@@ -3506,6 +3427,7 @@ declare namespace io.flow.label.v0.models {
3506
3427
  interface ShippingLabelLaneSummary {
3507
3428
  readonly 'id'?: string;
3508
3429
  readonly 'ratecard': io.flow.label.v0.models.ShippingLabelRatecardSummary;
3430
+ readonly 'weight_break'?: number;
3509
3431
  }
3510
3432
 
3511
3433
  interface ShippingLabelPackage {
@@ -3609,6 +3531,7 @@ declare namespace io.flow.external.paypal.v1.enums {
3609
3531
  type DisputeOutcomeCode = 'RESOLVED_BUYER_FAVOUR' | 'RESOLVED_SELLER_FAVOUR' | 'RESOLVED_WITH_PAYOUT' | 'CANCELED_BY_BUYER' | 'ACCEPTED' | 'DENIED' | 'NONE';
3610
3532
  type DisputeReason = 'MERCHANDISE_OR_SERVICE_NOT_RECEIVED' | 'MERCHANDISE_OR_SERVICE_NOT_AS_DESCRIBED' | 'UNAUTHORISED' | 'CREDIT_NOT_PROCESSED' | 'DUPLICATE_TRANSACTION' | 'INCORRECT_AMOUNT' | 'PAYMENT_BY_OTHER_MEANS' | 'CANCELED_RECURRING_BILLING' | 'PROBLEM_WITH_REMITTANCE' | 'OTHER';
3611
3533
  type DisputeStatus = 'OPEN' | 'WAITING_FOR_BUYER_RESPONSE' | 'WAITING_FOR_SELLER_RESPONSE' | 'UNDER_REVIEW' | 'RESOLVED' | 'OTHER';
3534
+ type EventType = 'PAYMENT.AUTHORIZATION.CREATED' | 'PAYMENT.AUTHORIZATION.VOIDED' | 'PAYMENT.CAPTURE.DECLINED' | 'PAYMENT.CAPTURE.COMPLETED' | 'PAYMENT.CAPTURE.PENDING' | 'PAYMENT.CAPTURE.REVERSED' | 'PAYMENT.CAPTURE.DENIED' | 'PAYMENT.ORDER.CANCELLED' | 'PAYMENT.ORDER.CREATED' | 'PAYMENT.SALE.COMPLETED' | 'PAYMENT.SALE.DENIED' | 'PAYMENT.SALE.PENDING' | 'PAYMENT.SALE.REFUNDED' | 'PAYMENT.SALE.REVERSED' | 'PAYMENTS.PAYMENT.CREATED' | 'CHECKOUT.ORDER.APPROVED' | 'CHECKOUT.CHECKOUT.BUYER-APPROVED' | 'CHECKOUT.ORDER.COMPLETED' | 'CUSTOMER.DISPUTE.CREATED' | 'CUSTOMER.DISPUTE.RESOLVED' | 'CUSTOMER.DISPUTE.UPDATED' | 'CHECKOUT.PAYMENT-APPROVAL.REVERSED';
3612
3535
  type EvidenceType = 'PROOF_OF_FULFILLMENT' | 'PROOF_OF_REFUND' | 'PROOF_OF_DELIVERY_SIGNATURE' | 'PROOF_OF_RECEIPT_COPY' | 'RETURN_POLICY' | 'BILLING_AGREEMENT' | 'PROOF_OF_RESHIPMENT' | 'ITEM_DESCRIPTION' | 'POLICE_REPORT' | 'AFFIDAVIT' | 'PAID_WITH_OTHER_METHOD' | 'COPY_OF_CONTRACT' | 'TERMINAL_ATM_RECEIPT' | 'PRICE_DIFFERENCE_REASON' | 'SOURCE_CONVERSION_RATE' | 'BANK_STATEMENT' | 'CREDIT_DUE_REASON' | 'REQUEST_CREDIT_RECEIPT' | 'PROOF_OF_RETURN' | 'CREATE' | 'CHANGE_REASON' | 'PROOF_OF_REFUND_OUTSIDE_PAYPAL' | 'RECEIPT_OF_MERCHANDISE' | 'CUSTOMS_DOCUMENT' | 'CUSTOMS_FEE_RECEIPT' | 'INFORMATION_ON_RESOLUTION' | 'ADDITIONAL_INFORMATION_OF_ITEM' | 'DETAILS_OF_PURCHASE' | 'PROOF_OF_SIGNIFICANT_DIFFERENCE' | 'PROOF_OF_SOFTWARE_OR_SERVICE_NOT_AS_DESCRIBED' | 'PROOF_OF_CONFISCATION' | 'PROOF_OF_DAMAGE' | 'COPY_OF_LAW_ENFORCEMENT_AGENCY_REPORT' | 'ADDITIONAL_PROOF_OF_SHIPMENT' | 'PROOF_OF_DENIAL_BY_CARRIER' | 'THIRDPARTY_PROOF_FOR_DAMAGE_OR_SIGNIFICANT_DIFFERENCE' | 'VALID_SUPPORTING_DOCUMENT' | 'LEGIBLE_SUPPORTING_DOCUMENT' | 'RETURN_TRACKING_INFORMATION' | 'DELIVERY_RECEIPT' | 'PROOF_OF_INSTORE_RECEIPT' | 'ADDITIONAL_TRACKING_INFORMATION' | 'PROOF_OF_SHIPMENT_POSTAGE' | 'ONLINE_TRACKING_INFORMATION' | 'PROOF_OF_INSTORE_REFUND' | 'PROOF_FOR_SOFTWARE_OR_SERVICE_DELIVERED' | 'RETURN_ADDRESS_FOR_SHIPPING' | 'COPY_OF_THE_EPARCEL_MANIFEST' | 'COPY_OF_SHIPPING_MANIFEST' | 'APPEAL_AFFIDAVIT' | 'RECEIPT_OF_REPLACEMENT' | 'COPY_OF_DRIVERS_LICENSE' | 'ACCOUNT_CHANGE_INFORMATION' | 'DELIVERY_ADDRESS' | 'CONFIRMATION_OF_RESOLUTION' | 'MERCHANT_RESPONSE' | 'PERMISSION_DESCRIPTION' | 'STATUS_OF_MERCHANDISE' | 'LOST_CARD_DETAILS' | 'LAST_VALID_TRANSACTION_DETAILS' | 'ADDITIONAL_PROOF_OF_RETURN' | 'OTHER';
3613
3536
  type FailureReason = 'UNABLE_TO_COMPLETE_TRANSACTION' | 'INVALID_PAYMENT_METHOD' | 'PAYER_CANNOT_PAY' | 'CANNOT_PAY_THIS_PAYEE' | 'REDIRECT_REQUIRED' | 'PAYEE_FILTER_RESTRICTIONS';
3614
3537
  type GrantType = 'client_credentials';
@@ -3627,6 +3550,7 @@ declare namespace io.flow.external.paypal.v1.enums {
3627
3550
  type RefundState = 'pending' | 'completed' | 'cancelled' | 'failed';
3628
3551
  type ReturnAcknowledgementType = 'ITEM_RECEIVED' | 'ITEM_NOT_RECEIVED' | 'DAMAGED' | 'EMPTY_PACKAGE_OR_DIFFERENT' | 'MISSING_ITEMS';
3629
3552
  type ReturnMode = 'SHIPPED' | 'IN_PERSON';
3553
+ type SaleState = 'pending' | 'completed' | 'denied' | 'partially_refunded' | 'refunded';
3630
3554
  type ServiceStarted = 'YES' | 'NO' | 'RETURNED';
3631
3555
  type ShippingDisplayPreference = 'NO_SHIPPING' | 'GET_FROM_FILE' | 'SET_PROVIDED_ADDRESS';
3632
3556
  type State = 'created' | 'approved' | 'failed';
@@ -3973,24 +3897,24 @@ declare namespace io.flow.external.paypal.v1.models {
3973
3897
 
3974
3898
  interface Refund {
3975
3899
  readonly 'id': string;
3976
- readonly 'amount': io.flow.external.paypal.v1.models.RefundAmount;
3900
+ readonly 'amount'?: io.flow.external.paypal.v1.models.SimpleAmount;
3977
3901
  readonly 'state': io.flow.external.paypal.v1.enums.RefundState;
3978
3902
  readonly 'sale_id': string;
3979
- readonly 'invoice_number': string;
3903
+ readonly 'invoice_number'?: string;
3980
3904
  readonly 'capture_id'?: string;
3981
3905
  readonly 'parent_payment'?: string;
3982
3906
  readonly 'reason_code'?: string;
3983
3907
  readonly 'refund_reason_code'?: string;
3984
3908
  readonly 'refund_funding_type'?: string;
3985
- readonly 'create_time': string;
3909
+ readonly 'refund_from_received_amount'?: io.flow.external.paypal.v1.models.Money;
3910
+ readonly 'refund_from_transaction_fee'?: io.flow.external.paypal.v1.models.Money;
3911
+ readonly 'total_refunded_amount'?: io.flow.external.paypal.v1.models.Money;
3912
+ readonly 'refund_to_payer'?: io.flow.external.paypal.v1.models.Money;
3913
+ readonly 'custom'?: string;
3914
+ readonly 'create_time'?: string;
3986
3915
  readonly 'update_time'?: string;
3987
3916
  }
3988
3917
 
3989
- interface RefundAmount {
3990
- readonly 'total': string;
3991
- readonly 'currency': string;
3992
- }
3993
-
3994
3918
  interface RefundDetails {
3995
3919
  readonly 'allowed_refund_amount'?: io.flow.external.paypal.v1.models.Money;
3996
3920
  }
@@ -4000,7 +3924,7 @@ declare namespace io.flow.external.paypal.v1.models {
4000
3924
  }
4001
3925
 
4002
3926
  interface RefundRequest {
4003
- readonly 'amount': io.flow.external.paypal.v1.models.RefundAmount;
3927
+ readonly 'amount': io.flow.external.paypal.v1.models.SimpleAmount;
4004
3928
  readonly 'invoice_number': string;
4005
3929
  }
4006
3930
 
@@ -4012,6 +3936,28 @@ declare namespace io.flow.external.paypal.v1.models {
4012
3936
  readonly 'returned'?: boolean;
4013
3937
  }
4014
3938
 
3939
+ interface Sale {
3940
+ readonly 'id': string;
3941
+ readonly 'state': io.flow.external.paypal.v1.enums.SaleState;
3942
+ readonly 'parent_payment': string;
3943
+ readonly 'invoice_number'?: string;
3944
+ readonly 'amount'?: io.flow.external.paypal.v1.models.SimpleAmount;
3945
+ readonly 'payment_mode'?: string;
3946
+ readonly 'reason_code'?: string;
3947
+ readonly 'protection_eligibility'?: string;
3948
+ readonly 'protection_eligibility_type'?: string;
3949
+ readonly 'receipt_id'?: string;
3950
+ readonly 'soft_descriptor'?: string;
3951
+ readonly 'exchange_rate'?: string;
3952
+ readonly 'payment_hold_status'?: string;
3953
+ readonly 'payment_hold_reasons'?: string[];
3954
+ readonly 'transaction_fee'?: io.flow.external.paypal.v1.models.Money;
3955
+ readonly 'receivable_amount'?: io.flow.external.paypal.v1.models.Money;
3956
+ readonly 'custom'?: string;
3957
+ readonly 'create_time'?: string;
3958
+ readonly 'update_time'?: string;
3959
+ }
3960
+
4015
3961
  interface Seller {
4016
3962
  readonly 'email'?: string;
4017
3963
  readonly 'merchant_id'?: string;
@@ -4037,6 +3983,11 @@ declare namespace io.flow.external.paypal.v1.models {
4037
3983
  readonly 'state'?: string;
4038
3984
  }
4039
3985
 
3986
+ interface SimpleAmount {
3987
+ readonly 'total': string;
3988
+ readonly 'currency': string;
3989
+ }
3990
+
4040
3991
  interface SupportingInfo {
4041
3992
  readonly 'notes'?: string;
4042
3993
  readonly 'source'?: io.flow.external.paypal.v1.enums.SupportingInfoSource;
@@ -4404,40 +4355,236 @@ declare namespace io.flow.brickftp.v0.unions {
4404
4355
  type Node = (io.flow.brickftp.v0.models.Directory | io.flow.brickftp.v0.models.FileSummary);
4405
4356
  }
4406
4357
 
4407
- declare namespace io.flow.consumer.invoice.v0.enums {
4408
- type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
4409
- type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
4410
- type ConsumerInvoiceDocumentType = 'pdf';
4411
- type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
4358
+ declare namespace io.flow.units.v0.enums {
4359
+ type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
4360
+ type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
4361
+ type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
4412
4362
  }
4413
4363
 
4414
- declare namespace io.flow.consumer.invoice.v0.models {
4415
- interface B2BCreditMemo {
4416
- readonly 'id': string;
4417
- readonly 'number': string;
4418
- readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
4419
- readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
4420
- readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
4421
- readonly 'date': string;
4422
- readonly 'key': string;
4423
- readonly 'invoice': io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
4424
- readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
4425
- readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
4426
- readonly 'attributes': Record<string, string>;
4427
- readonly 'b2b_invoice_type': io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
4364
+ declare namespace io.flow.shopify.markets.internal.v0.enums {
4365
+ type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
4366
+ type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
4367
+ type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
4368
+ type ProductStatus = 'active' | 'archived' | 'draft';
4369
+ 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';
4370
+ type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
4371
+ 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';
4372
+ }
4373
+
4374
+ declare namespace io.flow.shopify.markets.internal.v0.models {
4375
+ interface CatalogPublicationSyncValidationError {
4376
+ readonly 'message': string;
4377
+ readonly 'reason': string;
4378
+ readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
4428
4379
  }
4429
4380
 
4430
- interface B2BInvoice {
4381
+ interface ChannelOrderSummary {
4431
4382
  readonly 'id': string;
4432
- readonly 'number': string;
4433
- readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
4434
- readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
4435
- readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
4436
- readonly 'date': string;
4437
- readonly 'key': string;
4438
- readonly 'order': io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
4439
- readonly 'economic_title_location': io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
4440
- readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
4383
+ readonly 'organization': io.flow.common.v0.models.OrganizationReference;
4384
+ readonly 'external_order_reference': string;
4385
+ readonly 'order_number': string;
4386
+ readonly 'fulfullment_details': io.flow.shopify.markets.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
4387
+ }
4388
+
4389
+ interface ChannelOrderSummaryFulfillmentDetails {
4390
+ readonly 'fulfillment_status': io.flow.shopify.markets.internal.v0.enums.ChannelOrderFulfillmentStatusCode;
4391
+ readonly 'timestamp': string;
4392
+ }
4393
+
4394
+ interface FlowShopValidationError {
4395
+ readonly 'message': string;
4396
+ readonly 'reason': string;
4397
+ readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
4398
+ }
4399
+
4400
+ interface GenericValidationError {
4401
+ readonly 'message': string;
4402
+ readonly 'reason': string;
4403
+ readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
4404
+ }
4405
+
4406
+ interface MarketsOrder {
4407
+ readonly 'shopify_order': io.flow.shopify.markets.v0.models.ShopifyOrder;
4408
+ readonly 'flow_authorization'?: io.flow.payment.v0.unions.Authorization;
4409
+ }
4410
+
4411
+ interface OrderValidationError {
4412
+ readonly 'message': string;
4413
+ readonly 'reason': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
4414
+ readonly 'action'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
4415
+ readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
4416
+ }
4417
+
4418
+ interface ProductRestrictionResultValidationError {
4419
+ readonly 'message': string;
4420
+ readonly 'reason': string;
4421
+ readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
4422
+ }
4423
+
4424
+ interface ShippingLane {
4425
+ readonly 'origin': string;
4426
+ readonly 'destination': string;
4427
+ }
4428
+
4429
+ interface ShopifyMarketsDiscrepancy {
4430
+ readonly 'organization_id': string;
4431
+ readonly 'count': number;
4432
+ }
4433
+
4434
+ interface ShopifyMarketsDiscrepancyData {
4435
+ readonly 'total_count': number;
4436
+ readonly 'discrepancies': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancy[];
4437
+ }
4438
+
4439
+ interface ShopifyMarketsIncorporationCountry {
4440
+ readonly 'country': string;
4441
+ readonly 'state'?: string;
4442
+ readonly 'province'?: string;
4443
+ readonly 'jurisdiction'?: string;
4444
+ }
4445
+
4446
+ interface ShopifyMarketsInternalOrderMetrics {
4447
+ readonly 'total_order_count': number;
4448
+ }
4449
+
4450
+ interface ShopifyMarketsOrdersMetrics {
4451
+ readonly 'id': string;
4452
+ readonly 'range': io.flow.common.v0.models.DatetimeRange;
4453
+ readonly 'shopify': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
4454
+ readonly 'internal': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
4455
+ readonly 'discrepancy_data': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancyData;
4456
+ }
4457
+
4458
+ interface ShopifyMarketsQueuedRecord {
4459
+ readonly 'id': string;
4460
+ readonly 'type': string;
4461
+ readonly 'type_id': string;
4462
+ readonly 'organization_id': string;
4463
+ readonly 'environment'?: string;
4464
+ readonly 'num_attempts': number;
4465
+ readonly 'next_attempt_at': string;
4466
+ readonly 'errors'?: string[];
4467
+ readonly 'stacktrace'?: string;
4468
+ }
4469
+
4470
+ interface ShopifyMarketsShop {
4471
+ readonly 'id': string;
4472
+ readonly 'shopify_shop_id'?: string;
4473
+ readonly 'channel': io.flow.common.v0.models.ChannelReference;
4474
+ readonly 'domain': string;
4475
+ readonly 'myshopify_domain': string;
4476
+ readonly 'organization_id': string;
4477
+ readonly 'shop': string;
4478
+ readonly 'created_at': string;
4479
+ readonly 'shared_secret_masked': string;
4480
+ readonly 'api_key_masked'?: string;
4481
+ readonly 'api_password_masked'?: string;
4482
+ readonly 'access_token_masked'?: string;
4483
+ }
4484
+
4485
+ interface ShopifyMarketsShopForm {
4486
+ readonly 'shop': string;
4487
+ readonly 'domain': string;
4488
+ readonly 'myshopify_domain': string;
4489
+ readonly 'shared_secret': string;
4490
+ readonly 'api_key'?: string;
4491
+ readonly 'api_password'?: string;
4492
+ readonly 'access_token'?: string;
4493
+ }
4494
+
4495
+ interface ShopifyMarketsShopSummary {
4496
+ readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
4497
+ readonly 'channel': io.flow.common.v0.models.ChannelReference;
4498
+ }
4499
+
4500
+ interface ShopifyMarketsShopifyOrderMetrics {
4501
+ readonly 'total_order_count': number;
4502
+ }
4503
+
4504
+ interface ShopifyMarketsSubsidiaryCompany {
4505
+ readonly 'legal_name'?: string;
4506
+ readonly 'incorporation_country'?: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsIncorporationCountry;
4507
+ }
4508
+
4509
+ interface ShopifyMarketsSync {
4510
+ readonly 'force_resync'?: boolean;
4511
+ }
4512
+
4513
+ interface ShopifyMarketsWebhookRegistration {
4514
+ readonly 'id': string;
4515
+ readonly 'response': io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
4516
+ }
4517
+
4518
+ interface ShopifyOrderCancelForm {
4519
+ readonly 'note'?: string;
4520
+ }
4521
+
4522
+ interface ShopifyOrderCancelResponse {
4523
+ readonly 'shopify_order_cancellation_id': string;
4524
+ readonly 'shopify_order_id': number;
4525
+ readonly 'message': string;
4526
+ }
4527
+
4528
+ interface ShopifyOrderDestinationForm {
4529
+ readonly 'destination': io.flow.common.v0.models.Address;
4530
+ }
4531
+
4532
+ interface ShopifyShopStatistics {
4533
+ readonly 'id': string;
4534
+ readonly 'initial_catalog_synced_at'?: string;
4535
+ readonly 'catalog_sync_duration'?: number;
4536
+ readonly 'catalog_products_count'?: number;
4537
+ }
4538
+
4539
+ interface ThirdPartyLogisticsPartner {
4540
+ readonly 'warehouse_address': io.flow.common.v0.models.BillingAddress;
4541
+ readonly 'warehouse_url'?: string;
4542
+ }
4543
+
4544
+ interface ThirdPartyLogisticsPickUpTimeWindow {
4545
+ readonly 'from': string;
4546
+ readonly 'to': string;
4547
+ }
4548
+
4549
+ interface Webhook {
4550
+ readonly 'placeholder'?: any/*json*/;
4551
+ }
4552
+ }
4553
+
4554
+ declare namespace io.flow.consumer.invoice.v0.enums {
4555
+ type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
4556
+ type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
4557
+ type ConsumerInvoiceDocumentType = 'pdf';
4558
+ type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
4559
+ }
4560
+
4561
+ declare namespace io.flow.consumer.invoice.v0.models {
4562
+ interface B2BCreditMemo {
4563
+ readonly 'id': string;
4564
+ readonly 'number': string;
4565
+ readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
4566
+ readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
4567
+ readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
4568
+ readonly 'date': string;
4569
+ readonly 'key': string;
4570
+ readonly 'invoice': io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
4571
+ readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
4572
+ readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
4573
+ readonly 'attributes': Record<string, string>;
4574
+ readonly 'b2b_invoice_type': io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
4575
+ }
4576
+
4577
+ interface B2BInvoice {
4578
+ readonly 'id': string;
4579
+ readonly 'number': string;
4580
+ readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
4581
+ readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
4582
+ readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
4583
+ readonly 'date': string;
4584
+ readonly 'key': string;
4585
+ readonly 'order': io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
4586
+ readonly 'economic_title_location': io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
4587
+ readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
4441
4588
  readonly 'destination'?: io.flow.experience.v0.models.OrderAddress;
4442
4589
  readonly 'tax': io.flow.common.v0.models.Money;
4443
4590
  readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
@@ -5988,7 +6135,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
5988
6135
  type ShopifyOrderInventoryBehaviour = 'bypass' | 'decrement_ignoring_policy' | 'decrement_obeying_policy';
5989
6136
  type ShopifyOrderKindType = 'authorization' | 'capture' | 'sale' | 'void' | 'refund';
5990
6137
  type ShopifyOrderPaymentGatewayNames = 'flow_commerce' | 'gift_card' | 'manual' | 'shopify_payments';
5991
- type ShopifyOrderProcessingMethodType = 'checkout' | 'direct' | 'manual' | 'offsite' | 'express';
6138
+ type ShopifyOrderProcessingMethodType = 'checkout' | 'direct' | 'manual' | 'offsite' | 'express' | 'deferred_payment';
5992
6139
  type ShopifyOrderRestockType = 'no_restock' | 'cancel' | 'return';
5993
6140
  type ShopifyOrderStatusType = 'open' | 'closed' | 'cancelled' | 'any';
5994
6141
  type ShopifyOrderTransactionErrorCode = 'incorrect_number' | 'invalid_number' | 'invalid_expiry_date' | 'invalid_cvc' | 'expired_card' | 'incorrect_cvc' | 'incorrect_zip' | 'incorrect_address' | 'card_declined' | 'processing_error' | 'call_issuer' | 'pick_up_card';
@@ -7502,55 +7649,149 @@ declare namespace io.flow.payment.gateway.v0.unions {
7502
7649
  type SdkAdyenV3AuthenticationToken = (io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken);
7503
7650
  }
7504
7651
 
7505
- declare namespace io.flow.payment.internal.v0.enums {
7506
- type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
7507
- type ChargebackPaymentStatus = 'captured' | 'refunded';
7508
- type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
7509
- type HttpMethod = 'get' | 'post';
7510
- type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
7511
- type OrganizationPaymentStatus = 'active' | 'archived';
7512
- type Owner = 'flow' | 'organization';
7513
- type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
7514
- type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
7515
- type RedirectReason = 'three_d_secure';
7516
- type RiskCheck = 'three_d_secure';
7652
+ declare namespace io.flow.order.price.v0.enums {
7653
+ type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge';
7654
+ type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
7517
7655
  }
7518
7656
 
7519
- declare namespace io.flow.payment.internal.v0.models {
7520
- interface AdyenAccount {
7521
- readonly 'discriminator': 'adyen_account';
7522
- readonly 'id': string;
7523
- readonly 'organization_id': string;
7524
- readonly 'key': string;
7525
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
7526
- readonly 'name': string;
7527
- readonly 'ui_reference': string;
7528
- readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthentication;
7529
- readonly 'country': string;
7530
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7531
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
7532
- readonly 'created_at': string;
7533
- readonly 'updated_at': string;
7657
+ declare namespace io.flow.order.price.v0.models {
7658
+ interface OrderPriceDetail {
7659
+ readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
7660
+ readonly 'currency': string;
7661
+ readonly 'amount': number;
7662
+ readonly 'label': string;
7663
+ readonly 'base': io.flow.common.v0.models.Price;
7664
+ readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
7665
+ readonly 'name'?: string;
7666
+ readonly 'rate'?: number;
7667
+ readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
7668
+ readonly 'rate_label'?: string;
7534
7669
  }
7535
7670
 
7536
- interface AdyenAccountModificationForm {
7537
- readonly 'discriminator': 'adyen_account_modification_form';
7538
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
7539
- readonly 'name': string;
7540
- readonly 'ui_reference': string;
7541
- readonly 'country': string;
7542
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7671
+ interface OrderPriceDetailComponent {
7672
+ readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
7673
+ readonly 'currency': string;
7674
+ readonly 'amount': number;
7675
+ readonly 'label': string;
7676
+ readonly 'base': io.flow.common.v0.models.Price;
7677
+ readonly 'name'?: string;
7543
7678
  }
7679
+ }
7544
7680
 
7545
- interface AdyenAccountPutForm {
7546
- readonly 'discriminator': 'adyen_account_put_form';
7547
- readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
7548
- readonly 'name': string;
7549
- readonly 'ui_reference': string;
7550
- readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthenticationForm;
7551
- readonly 'country': string;
7552
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7553
- readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
7681
+ declare namespace io.flow.channel.internal.v0.enums {
7682
+ type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
7683
+ type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
7684
+ 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';
7685
+ type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
7686
+ }
7687
+
7688
+ declare namespace io.flow.channel.internal.v0.models {
7689
+ interface ChannelCurrencyForm {
7690
+ readonly 'currency': string;
7691
+ readonly 'channel_id': string;
7692
+ readonly 'capabilities': io.flow.channel.v0.enums.ChannelCurrencyCapability[];
7693
+ }
7694
+
7695
+ interface ChannelForm {
7696
+ readonly 'name': string;
7697
+ readonly 'environment': io.flow.common.v0.enums.Environment;
7698
+ readonly 'organization_id_prefix'?: string;
7699
+ }
7700
+
7701
+ interface ChannelMembership {
7702
+ readonly 'id': string;
7703
+ readonly 'channel': io.flow.common.v0.models.ChannelReference;
7704
+ readonly 'user': io.flow.common.v0.unions.ExpandableUser;
7705
+ readonly 'role'?: io.flow.common.v0.enums.Role;
7706
+ }
7707
+
7708
+ interface ChannelMembershipForm {
7709
+ readonly 'channel_id': string;
7710
+ readonly 'user_id': string;
7711
+ readonly 'role'?: io.flow.common.v0.enums.Role;
7712
+ }
7713
+
7714
+ interface ChannelMembershipPutForm {
7715
+ readonly 'role'?: io.flow.common.v0.enums.Role;
7716
+ }
7717
+
7718
+ interface ChannelOrderAcceptance {
7719
+ readonly 'id': string;
7720
+ readonly 'organization_id': string;
7721
+ readonly 'order_number': string;
7722
+ readonly 'channel_id': string;
7723
+ readonly 'external_order_reference': string;
7724
+ readonly 'payment_request_id'?: string;
7725
+ readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
7726
+ readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
7727
+ readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
7728
+ readonly 'order_created_at'?: string;
7729
+ readonly 'order_updated_at'?: string;
7730
+ }
7731
+
7732
+ interface ChannelOrderAcceptanceForm {
7733
+ readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
7734
+ }
7735
+
7736
+ interface ChannelOrderAcceptanceReason {
7737
+ readonly 'description': string;
7738
+ readonly 'rejection_reason'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
7739
+ }
7740
+
7741
+ interface FlowChannelOrganization {
7742
+ readonly 'placeholder'?: string;
7743
+ }
7744
+ }
7745
+
7746
+ declare namespace io.flow.payment.internal.v0.enums {
7747
+ type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
7748
+ type ChargebackPaymentStatus = 'captured' | 'refunded';
7749
+ type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
7750
+ type HttpMethod = 'get' | 'post';
7751
+ type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
7752
+ type OrganizationPaymentStatus = 'active' | 'archived';
7753
+ type Owner = 'flow' | 'organization';
7754
+ type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
7755
+ type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
7756
+ type RedirectReason = 'three_d_secure';
7757
+ type RiskCheck = 'three_d_secure';
7758
+ }
7759
+
7760
+ declare namespace io.flow.payment.internal.v0.models {
7761
+ interface AdyenAccount {
7762
+ readonly 'discriminator': 'adyen_account';
7763
+ readonly 'id': string;
7764
+ readonly 'organization_id': string;
7765
+ readonly 'key': string;
7766
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
7767
+ readonly 'name': string;
7768
+ readonly 'ui_reference': string;
7769
+ readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthentication;
7770
+ readonly 'country': string;
7771
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7772
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
7773
+ readonly 'created_at': string;
7774
+ readonly 'updated_at': string;
7775
+ }
7776
+
7777
+ interface AdyenAccountModificationForm {
7778
+ readonly 'discriminator': 'adyen_account_modification_form';
7779
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
7780
+ readonly 'name': string;
7781
+ readonly 'ui_reference': string;
7782
+ readonly 'country': string;
7783
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7784
+ }
7785
+
7786
+ interface AdyenAccountPutForm {
7787
+ readonly 'discriminator': 'adyen_account_put_form';
7788
+ readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
7789
+ readonly 'name': string;
7790
+ readonly 'ui_reference': string;
7791
+ readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthenticationForm;
7792
+ readonly 'country': string;
7793
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7794
+ readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
7554
7795
  }
7555
7796
 
7556
7797
  interface AdyenAuthentication {
@@ -9097,11 +9338,6 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
9097
9338
  readonly 'debug_console_order_link': string;
9098
9339
  }
9099
9340
 
9100
- interface ReportingAddenda {
9101
- readonly 'allocation_order_totals_delta'?: number;
9102
- readonly 'allocation_order_item_discount_delta'?: number;
9103
- }
9104
-
9105
9341
  interface ReportingAuthorizationReference {
9106
9342
  readonly 'id': string;
9107
9343
  }
@@ -9131,7 +9367,16 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
9131
9367
 
9132
9368
  interface ReportingDebug {
9133
9369
  readonly 'console_order_link': string;
9134
- readonly 'addenda'?: io.flow.billing.reporting.csv.v0.models.ReportingAddenda;
9370
+ readonly 'allocation_order_totals_delta'?: number;
9371
+ readonly 'allocation_order_item_discount_delta'?: number;
9372
+ readonly 'missing_item_subsidies'?: io.flow.billing.reporting.csv.v0.models.ReportingDebugMissingSubsidies;
9373
+ readonly 'missing_shipping_subsidies'?: io.flow.billing.reporting.csv.v0.models.ReportingDebugMissingSubsidies;
9374
+ }
9375
+
9376
+ interface ReportingDebugMissingSubsidies {
9377
+ readonly 'price'?: boolean;
9378
+ readonly 'tax'?: boolean;
9379
+ readonly 'duty'?: boolean;
9135
9380
  }
9136
9381
 
9137
9382
  interface ReportingDestination {
@@ -9218,6 +9463,14 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
9218
9463
  readonly 'ccf': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9219
9464
  }
9220
9465
 
9466
+ interface ReportingMerchantTransactions {
9467
+ readonly 'adjustment': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9468
+ readonly 'reversal': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9469
+ readonly 'tax': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9470
+ readonly 'duty': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9471
+ readonly 'freight': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9472
+ }
9473
+
9221
9474
  interface ReportingMonetaryValue {
9222
9475
  readonly 'transaction': number;
9223
9476
  readonly 'merchant': number;
@@ -9288,6 +9541,7 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
9288
9541
  readonly 'marked_as_final': io.flow.billing.reporting.csv.v0.models.MarkedAsFinal;
9289
9542
  readonly 'merchant_subsidies': io.flow.billing.reporting.csv.v0.models.ReportingMerchantSubsidies;
9290
9543
  readonly 'merchant_fees': io.flow.billing.reporting.csv.v0.models.ReportingMerchantFees;
9544
+ readonly 'merchant_transactions': io.flow.billing.reporting.csv.v0.models.ReportingMerchantTransactions;
9291
9545
  readonly 'vat_remittance': io.flow.billing.reporting.csv.v0.models.ReportingVatRemittance;
9292
9546
  readonly 'debug': io.flow.billing.reporting.csv.v0.models.ReportingDebug;
9293
9547
  }
@@ -9355,6 +9609,111 @@ declare namespace io.flow.order.management.event.v0.unions {
9355
9609
  type OrderManagementEvent = (io.flow.order.management.event.v0.models.OrderPlaced | io.flow.order.management.event.v0.models.OrderPlacedV2 | io.flow.order.management.event.v0.models.ReadyToFulfill | io.flow.order.management.event.v0.models.ReadyToFulfillV2);
9356
9610
  }
9357
9611
 
9612
+ declare namespace io.flow.shopify.markets.internal.event.v0.models {
9613
+ interface ChannelOrderSummaryDeleted {
9614
+ readonly 'discriminator': 'channel_order_summary_deleted';
9615
+ readonly 'event_id': string;
9616
+ readonly 'timestamp': string;
9617
+ readonly 'channel_id': string;
9618
+ readonly 'id': string;
9619
+ }
9620
+
9621
+ interface ChannelOrderSummaryUpserted {
9622
+ readonly 'discriminator': 'channel_order_summary_upserted';
9623
+ readonly 'event_id': string;
9624
+ readonly 'timestamp': string;
9625
+ readonly 'channel_id': string;
9626
+ readonly 'channel_order_summary': io.flow.shopify.markets.internal.v0.models.ChannelOrderSummary;
9627
+ }
9628
+
9629
+ interface ShopifyMarketsMetricsDeleted {
9630
+ readonly 'discriminator': 'shopify_markets_metrics_deleted';
9631
+ readonly 'event_id': string;
9632
+ readonly 'timestamp': string;
9633
+ readonly 'id': string;
9634
+ }
9635
+
9636
+ interface ShopifyMarketsMetricsUpserted {
9637
+ readonly 'discriminator': 'shopify_markets_metrics_upserted';
9638
+ readonly 'event_id': string;
9639
+ readonly 'timestamp': string;
9640
+ readonly 'shopify_markets_metrics': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsOrdersMetrics;
9641
+ }
9642
+
9643
+ interface ShopifyMarketsOrder {
9644
+ readonly 'id': string;
9645
+ readonly 'model': io.flow.shopify.markets.v0.models.ShopifyOrder;
9646
+ }
9647
+
9648
+ interface ShopifyMarketsOrderDeleted {
9649
+ readonly 'discriminator': 'shopify_markets_order_deleted';
9650
+ readonly 'event_id': string;
9651
+ readonly 'timestamp': string;
9652
+ readonly 'organization': string;
9653
+ readonly 'shopify_markets_order': io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
9654
+ }
9655
+
9656
+ interface ShopifyMarketsOrderUpserted {
9657
+ readonly 'discriminator': 'shopify_markets_order_upserted';
9658
+ readonly 'event_id': string;
9659
+ readonly 'timestamp': string;
9660
+ readonly 'organization': string;
9661
+ readonly 'shopify_markets_order': io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
9662
+ }
9663
+
9664
+ interface ShopifyMarketsShopDeleted {
9665
+ readonly 'discriminator': 'shopify_markets_shop_deleted';
9666
+ readonly 'event_id': string;
9667
+ readonly 'timestamp': string;
9668
+ readonly 'organization': string;
9669
+ readonly 'id': string;
9670
+ }
9671
+
9672
+ interface ShopifyMarketsShopStatisticsDeleted {
9673
+ readonly 'discriminator': 'shopify_markets_shop_statistics_deleted';
9674
+ readonly 'event_id': string;
9675
+ readonly 'timestamp': string;
9676
+ readonly 'organization': string;
9677
+ readonly 'id': string;
9678
+ }
9679
+
9680
+ interface ShopifyMarketsShopStatisticsUpserted {
9681
+ readonly 'discriminator': 'shopify_markets_shop_statistics_upserted';
9682
+ readonly 'event_id': string;
9683
+ readonly 'timestamp': string;
9684
+ readonly 'organization': string;
9685
+ readonly 'shopify_markets_shop_statistics': io.flow.shopify.markets.internal.v0.models.ShopifyShopStatistics;
9686
+ }
9687
+
9688
+ interface ShopifyMarketsShopUpserted {
9689
+ readonly 'discriminator': 'shopify_markets_shop_upserted';
9690
+ readonly 'event_id': string;
9691
+ readonly 'timestamp': string;
9692
+ readonly 'organization': string;
9693
+ readonly 'shopify_markets_shop': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShop;
9694
+ }
9695
+
9696
+ interface ShopifyMarketsWebhookRegistrationDeleted {
9697
+ readonly 'discriminator': 'shopify_markets_webhook_registration_deleted';
9698
+ readonly 'event_id': string;
9699
+ readonly 'timestamp': string;
9700
+ readonly 'organization': string;
9701
+ readonly 'id': string;
9702
+ }
9703
+
9704
+ interface ShopifyMarketsWebhookRegistrationUpserted {
9705
+ readonly 'discriminator': 'shopify_markets_webhook_registration_upserted';
9706
+ readonly 'event_id': string;
9707
+ readonly 'timestamp': string;
9708
+ readonly 'organization': string;
9709
+ readonly 'registration': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
9710
+ }
9711
+ }
9712
+
9713
+ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
9714
+ 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);
9715
+ }
9716
+
9358
9717
  declare namespace io.flow.experience.v0.enums {
9359
9718
  type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
9360
9719
  type CreditPaymentErrorCode = 'generic_error' | 'invalid_order_number' | 'invalid_currency' | 'invalid_description' | 'duplicate' | 'amount_must_be_positive' | 'amount_exceeds_balance' | 'insufficient_amount';
@@ -10514,9 +10873,21 @@ declare namespace io.flow.ratecard.v0.models {
10514
10873
  readonly 'ends_at'?: string;
10515
10874
  }
10516
10875
 
10876
+ interface FuelSurchargeByWeight {
10877
+ readonly 'discriminator': 'fuel_surcharge_by_weight';
10878
+ readonly 'amount': number;
10879
+ readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
10880
+ }
10881
+
10882
+ interface FuelSurchargePercent {
10883
+ readonly 'discriminator': 'fuel_surcharge_percent';
10884
+ readonly 'percent': number;
10885
+ }
10886
+
10517
10887
  interface FuelSurchargeRatecardFee {
10518
10888
  readonly 'discriminator': 'fuel_surcharge_ratecard_fee';
10519
10889
  readonly 'amount': io.flow.common.v0.models.Money;
10890
+ readonly 'fuel_surcharge_rate'?: io.flow.ratecard.v0.unions.FuelSurchargeRate;
10520
10891
  }
10521
10892
 
10522
10893
  interface FuelSurchargeServiceFee {
@@ -10548,6 +10919,7 @@ declare namespace io.flow.ratecard.v0.models {
10548
10919
  readonly 'currency': string;
10549
10920
  readonly 'amount': number;
10550
10921
  readonly 'fees': io.flow.ratecard.v0.unions.RatecardFee[];
10922
+ readonly 'weight_break'?: number;
10551
10923
  readonly 'total': number;
10552
10924
  readonly 'lane': io.flow.ratecard.v0.models.LaneSummary;
10553
10925
  }
@@ -10833,6 +11205,7 @@ declare namespace io.flow.ratecard.v0.models {
10833
11205
  }
10834
11206
 
10835
11207
  declare namespace io.flow.ratecard.v0.unions {
11208
+ type FuelSurchargeRate = (io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight);
10836
11209
  type RatecardEstimate = (io.flow.ratecard.v0.models.RatecardEstimateV1 | io.flow.ratecard.v0.models.RatecardEstimateV2 | io.flow.ratecard.v0.models.RatecardEstimateV3 | io.flow.ratecard.v0.models.RatecardEstimateV4);
10837
11210
  type RatecardFee = (io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee | io.flow.ratecard.v0.models.ReturnPackageRatecardFee | io.flow.ratecard.v0.models.CrossdockRatecardFee | io.flow.ratecard.v0.models.RemoteAreaRatecardFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.ratecard.v0.models.PeakSurchargeRatecardFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee);
10838
11211
  type ServiceFee = (io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee);
@@ -11112,182 +11485,6 @@ declare namespace io.flow.crypto.v0.models {
11112
11485
  }
11113
11486
  }
11114
11487
 
11115
- declare namespace io.flow.error.v0.enums {
11116
- type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
11117
- }
11118
-
11119
- declare namespace io.flow.error.v0.models {
11120
- interface GenericError {
11121
- readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
11122
- readonly 'messages': string[];
11123
- }
11124
- }
11125
-
11126
- declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
11127
- type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
11128
- }
11129
-
11130
- declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
11131
- interface CarrierChargeFile {
11132
- readonly 'id': string;
11133
- readonly 'url': string;
11134
- readonly 'created_at': string;
11135
- readonly 'result'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeFileResult;
11136
- }
11137
-
11138
- interface CarrierChargeFileForm {
11139
- readonly 'url': string;
11140
- }
11141
-
11142
- interface CarrierChargeFileResult {
11143
- readonly 'processed_at': string;
11144
- readonly 'number_lines_successful': number;
11145
- readonly 'number_lines_with_errors': number;
11146
- readonly 'errors_url'?: string;
11147
- }
11148
-
11149
- interface CarrierChargeFormLabel {
11150
- readonly 'discriminator': 'label';
11151
- readonly 'id': string;
11152
- readonly 'label_invoice_request_id': string;
11153
- readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeUnits;
11154
- readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
11155
- readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
11156
- readonly 'total': number;
11157
- readonly 'attributes'?: Record<string, string>;
11158
- }
11159
-
11160
- interface CarrierChargeFormReturnToOrigin {
11161
- readonly 'discriminator': 'return_to_origin';
11162
- readonly 'id': string;
11163
- readonly 'carrier_id': string;
11164
- readonly 'carrier_tracking_number': string;
11165
- readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeUnits;
11166
- readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
11167
- readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
11168
- readonly 'total': number;
11169
- readonly 'attributes'?: Record<string, string>;
11170
- }
11171
-
11172
- interface CarrierChargeUnits {
11173
- readonly 'currency': string;
11174
- readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
11175
- readonly 'length'?: io.flow.units.v0.enums.UnitOfLength;
11176
- }
11177
-
11178
- interface LabelBase {
11179
- readonly 'amount': number;
11180
- readonly 'weight': number;
11181
- }
11182
-
11183
- interface LabelDestination {
11184
- readonly 'country': string;
11185
- }
11186
-
11187
- interface LabelInvoiceRequest {
11188
- readonly 'id': string;
11189
- readonly 'label': io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
11190
- readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
11191
- readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
11192
- readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
11193
- readonly 'total': number;
11194
- readonly 'destination': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
11195
- readonly 'metadata': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
11196
- }
11197
-
11198
- interface LabelMetadata {
11199
- readonly 'ratecard': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
11200
- readonly 'weights': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
11201
- }
11202
-
11203
- interface LabelSurcharge {
11204
- readonly 'amount': number;
11205
- readonly 'type': io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
11206
- readonly 'detail': io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
11207
- }
11208
-
11209
- interface LabelSurchargeDetailFlat {
11210
- readonly 'discriminator': 'flat';
11211
- readonly 'placeholder'?: string;
11212
- }
11213
-
11214
- interface LabelSurchargeDetailPerWeightUnit {
11215
- readonly 'discriminator': 'per_weight_unit';
11216
- readonly 'fee': number;
11217
- }
11218
-
11219
- interface LabelSurchargeDetailPercentage {
11220
- readonly 'discriminator': 'percentage';
11221
- readonly 'percentage': number;
11222
- }
11223
-
11224
- interface LabelSurchargeForm {
11225
- readonly 'fuel'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
11226
- readonly 'remote_area'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
11227
- readonly 'oversize'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
11228
- readonly 'duties_paid'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
11229
- readonly 'emergency'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
11230
- readonly 'peak'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
11231
- readonly 'address_correction'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
11232
- }
11233
-
11234
- interface LabelSurchargeSingleForm {
11235
- readonly 'amount': number;
11236
- readonly 'percentage'?: number;
11237
- readonly 'fee_per_weight_unit'?: number;
11238
- }
11239
-
11240
- interface LabelUnits {
11241
- readonly 'currency': string;
11242
- readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
11243
- readonly 'length': io.flow.units.v0.enums.UnitOfLength;
11244
- }
11245
-
11246
- interface MetadataProposition {
11247
- readonly 'shipping_method': io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
11248
- readonly 'name': string;
11249
- }
11250
-
11251
- interface MetadataRatecard {
11252
- readonly 'id': string;
11253
- readonly 'proposition': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
11254
- }
11255
-
11256
- interface MetadataWeights {
11257
- readonly 'dead'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
11258
- readonly 'dimensional'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
11259
- }
11260
-
11261
- interface ShippingMethodReference {
11262
- readonly 'id': string;
11263
- }
11264
-
11265
- interface TrueUpLabelSummary {
11266
- readonly 'id': string;
11267
- readonly 'carrier_service_id': string;
11268
- readonly 'carrier_tracking_number': string;
11269
- readonly 'flow_tracking_number': string;
11270
- readonly 'source': io.flow.label.v0.enums.CostEstimateSource;
11271
- readonly 'created_at': string;
11272
- }
11273
-
11274
- interface WeightsDead {
11275
- readonly 'weight': number;
11276
- }
11277
-
11278
- interface WeightsDimensional {
11279
- readonly 'weight': number;
11280
- readonly 'length': number;
11281
- readonly 'width': number;
11282
- readonly 'height': number;
11283
- }
11284
- }
11285
-
11286
- declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
11287
- type CarrierChargeForm = (io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeFormLabel | io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeFormReturnToOrigin);
11288
- type LabelSurchargeDetail = (io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailFlat | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPercentage | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPerWeightUnit);
11289
- }
11290
-
11291
11488
  declare namespace io.flow.shopify.merchant.config.v0.models {
11292
11489
  interface Company {
11293
11490
  readonly 'discriminator': 'company';
@@ -11500,18 +11697,186 @@ declare namespace io.flow.price.v0.models {
11500
11697
  readonly 'rounding'?: io.flow.common.v0.models.Rounding;
11501
11698
  }
11502
11699
 
11503
- interface Tax {
11700
+ interface Tax {
11701
+ readonly 'name': string;
11702
+ readonly 'rate': number;
11703
+ readonly 'components': io.flow.price.v0.enums.LevyComponent[];
11704
+ readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
11705
+ }
11706
+ }
11707
+
11708
+ declare namespace io.flow.price.v0.unions {
11709
+ type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
11710
+ }
11711
+
11712
+ declare namespace io.flow.trueup.v0.enums {
11713
+ type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
11714
+ }
11715
+
11716
+ declare namespace io.flow.trueup.v0.models {
11717
+ interface DeadWeight {
11718
+ readonly 'weight': number;
11719
+ }
11720
+
11721
+ interface DimensionalWeight {
11722
+ readonly 'weight': number;
11723
+ readonly 'length'?: number;
11724
+ readonly 'width'?: number;
11725
+ readonly 'height'?: number;
11726
+ }
11727
+
11728
+ interface LabelBase {
11729
+ readonly 'amount': number;
11730
+ readonly 'weight': number;
11731
+ }
11732
+
11733
+ interface LabelSurcharge {
11734
+ readonly 'amount': number;
11735
+ readonly 'type': io.flow.trueup.v0.enums.TrueupSurchargeType;
11736
+ readonly 'detail': io.flow.trueup.v0.unions.LabelSurchargeDetail;
11737
+ }
11738
+
11739
+ interface LabelSurchargeDetailFlat {
11740
+ readonly 'discriminator': 'flat';
11741
+ readonly 'placeholder'?: string;
11742
+ }
11743
+
11744
+ interface LabelSurchargeDetailPerWeightUnit {
11745
+ readonly 'discriminator': 'per_weight_unit';
11746
+ readonly 'fee': number;
11747
+ }
11748
+
11749
+ interface LabelSurchargeDetailPercentage {
11750
+ readonly 'discriminator': 'percentage';
11751
+ readonly 'percentage': number;
11752
+ }
11753
+
11754
+ interface LabelUnits {
11755
+ readonly 'currency': string;
11756
+ readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
11757
+ readonly 'length': io.flow.units.v0.enums.UnitOfLength;
11758
+ }
11759
+ }
11760
+
11761
+ declare namespace io.flow.trueup.v0.unions {
11762
+ type LabelSurchargeDetail = (io.flow.trueup.v0.models.LabelSurchargeDetailFlat | io.flow.trueup.v0.models.LabelSurchargeDetailPercentage | io.flow.trueup.v0.models.LabelSurchargeDetailPerWeightUnit);
11763
+ }
11764
+
11765
+ declare namespace io.flow.reference.v0.enums {
11766
+ type PaymentMethodCapability = 'credit' | 'debit';
11767
+ type PaymentMethodType = 'card' | 'online' | 'offline';
11768
+ type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
11769
+ type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
11770
+ }
11771
+
11772
+ declare namespace io.flow.reference.v0.models {
11773
+ interface Carrier {
11774
+ readonly 'id': string;
11775
+ readonly 'name': string;
11776
+ readonly 'tracking_url': string;
11777
+ }
11778
+
11779
+ interface CarrierService {
11780
+ readonly 'id': string;
11781
+ readonly 'carrier': io.flow.reference.v0.models.Carrier;
11782
+ readonly 'name': string;
11783
+ }
11784
+
11785
+ interface Country {
11786
+ readonly 'name': string;
11787
+ readonly 'iso_3166_2': string;
11788
+ readonly 'iso_3166_3': string;
11789
+ readonly 'languages': string[];
11790
+ readonly 'measurement_system': string;
11791
+ readonly 'default_currency'?: string;
11792
+ readonly 'default_language'?: string;
11793
+ readonly 'timezones': string[];
11794
+ readonly 'default_delivered_duty'?: string;
11795
+ }
11796
+
11797
+ interface Currency {
11798
+ readonly 'name': string;
11799
+ readonly 'iso_4217_3': string;
11800
+ readonly 'number_decimals': number;
11801
+ readonly 'symbols'?: io.flow.reference.v0.models.CurrencySymbols;
11802
+ readonly 'default_locale'?: string;
11803
+ }
11804
+
11805
+ interface CurrencySymbols {
11806
+ readonly 'primary': string;
11807
+ readonly 'narrow'?: string;
11808
+ }
11809
+
11810
+ interface Language {
11811
+ readonly 'name': string;
11812
+ readonly 'iso_639_2': string;
11813
+ }
11814
+
11815
+ interface Locale {
11816
+ readonly 'id': string;
11817
+ readonly 'name': string;
11818
+ readonly 'country': string;
11819
+ readonly 'language': string;
11820
+ readonly 'numbers': io.flow.reference.v0.models.LocaleNumbers;
11821
+ }
11822
+
11823
+ interface LocaleNumbers {
11824
+ readonly 'decimal': string;
11825
+ readonly 'group': string;
11826
+ }
11827
+
11828
+ interface LocalizedTranslation {
11829
+ readonly 'locale': io.flow.reference.v0.models.Locale;
11830
+ readonly 'name': string;
11831
+ }
11832
+
11833
+ interface PaymentMethod {
11834
+ readonly 'id': string;
11835
+ readonly 'type': io.flow.reference.v0.enums.PaymentMethodType;
11836
+ readonly 'name': string;
11837
+ readonly 'images': io.flow.reference.v0.models.PaymentMethodImages;
11838
+ readonly 'regions': string[];
11839
+ readonly 'capabilities'?: io.flow.reference.v0.enums.PaymentMethodCapability[];
11840
+ }
11841
+
11842
+ interface PaymentMethodImage {
11843
+ readonly 'url': string;
11844
+ readonly 'width': number;
11845
+ readonly 'height': number;
11846
+ }
11847
+
11848
+ interface PaymentMethodImages {
11849
+ readonly 'small': io.flow.reference.v0.models.PaymentMethodImage;
11850
+ readonly 'medium': io.flow.reference.v0.models.PaymentMethodImage;
11851
+ readonly 'large': io.flow.reference.v0.models.PaymentMethodImage;
11852
+ }
11853
+
11854
+ interface Province {
11855
+ readonly 'id': string;
11856
+ readonly 'iso_3166_2': string;
11857
+ readonly 'name': string;
11858
+ readonly 'country': string;
11859
+ readonly 'province_type': io.flow.reference.v0.enums.ProvinceType;
11860
+ readonly 'translations'?: io.flow.reference.v0.models.LocalizedTranslation[];
11861
+ }
11862
+
11863
+ interface Region {
11864
+ readonly 'id': string;
11865
+ readonly 'name': string;
11866
+ readonly 'countries': string[];
11867
+ readonly 'currencies': string[];
11868
+ readonly 'languages': string[];
11869
+ readonly 'measurement_systems': string[];
11870
+ readonly 'timezones': string[];
11871
+ }
11872
+
11873
+ interface Timezone {
11504
11874
  readonly 'name': string;
11505
- readonly 'rate': number;
11506
- readonly 'components': io.flow.price.v0.enums.LevyComponent[];
11507
- readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
11875
+ readonly 'description': string;
11876
+ readonly 'offset': number;
11508
11877
  }
11509
11878
  }
11510
11879
 
11511
- declare namespace io.flow.price.v0.unions {
11512
- type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
11513
- }
11514
-
11515
11880
  declare namespace io.flow.tracking.v0.enums {
11516
11881
  type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
11517
11882
  }
@@ -12455,12 +12820,12 @@ declare namespace io.flow.billing.internal.v0.enums {
12455
12820
  type FeesSource = 'settings' | 'authorization_bundle';
12456
12821
  type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
12457
12822
  type MainTransactionStatus = 'scheduled' | 'pending_proof';
12458
- type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit';
12823
+ type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee';
12459
12824
  type OrderCancellationInitiatedBy = 'flow' | 'organization';
12460
12825
  type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
12461
12826
  type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
12462
12827
  type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
12463
- type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_cancellation' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'label_origin' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email';
12828
+ type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event' | 'credit_and_subsidy' | 'negative_balance_guarantee';
12464
12829
  type ResponsibleParty = 'flow' | 'organization';
12465
12830
  type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
12466
12831
  type SubscriptionFrequency = 'yearly' | 'monthly';
@@ -12540,6 +12905,7 @@ declare namespace io.flow.billing.internal.v0.models {
12540
12905
  readonly 'merchant_of_record_fee'?: number;
12541
12906
  readonly 'duty_guarantee_fee'?: number;
12542
12907
  readonly 'transfer_fee'?: number;
12908
+ readonly 'negative_balance_guarantee_fee'?: number;
12543
12909
  readonly 'order_service_fee'?: io.flow.billing.internal.v0.models.TieredFee;
12544
12910
  readonly 'label_fees'?: io.flow.billing.internal.v0.models.AccountSettingLabelFees;
12545
12911
  readonly 'charge_label_cost_directly': boolean;
@@ -13094,6 +13460,7 @@ declare namespace io.flow.billing.internal.v0.models {
13094
13460
  interface ManualTransaction {
13095
13461
  readonly 'discriminator': 'manual_transaction';
13096
13462
  readonly 'category'?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
13463
+ readonly 'original_transaction'?: io.flow.billing.internal.v0.models.TransactionReference;
13097
13464
  readonly 'order'?: io.flow.billing.internal.v0.models.BillingOrderTransactionOrderReference;
13098
13465
  readonly 'attributes'?: Record<string, string>;
13099
13466
  readonly 'id': string;
@@ -13113,6 +13480,7 @@ declare namespace io.flow.billing.internal.v0.models {
13113
13480
  readonly 'category'?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
13114
13481
  readonly 'posted_at'?: string;
13115
13482
  readonly 'order'?: io.flow.billing.internal.v0.models.ManualTransactionFormOrder;
13483
+ readonly 'original_transaction_id'?: string;
13116
13484
  readonly 'attributes'?: Record<string, string>;
13117
13485
  }
13118
13486
 
@@ -13299,6 +13667,11 @@ declare namespace io.flow.billing.internal.v0.models {
13299
13667
  readonly 'order_cancellation_id': string;
13300
13668
  }
13301
13669
 
13670
+ interface ProofOfPostingOrderCombinedShipment {
13671
+ readonly 'discriminator': 'order_combined_shipment';
13672
+ readonly 'order_combined_shipment_id': string;
13673
+ }
13674
+
13302
13675
  interface ProofOfPostingShippingNotification {
13303
13676
  readonly 'discriminator': 'shipping_notification';
13304
13677
  readonly 'shipping_notification_id': string;
@@ -13464,7 +13837,7 @@ declare namespace io.flow.billing.internal.v0.unions {
13464
13837
  type ChannelRateMetadata = (io.flow.billing.internal.v0.models.ChannelRateMetadataIdentity | io.flow.billing.internal.v0.models.ChannelRateMetadataRate);
13465
13838
  type OrderCancellationEvidence = (io.flow.billing.internal.v0.models.OrderCancellationEvidenceManual | io.flow.billing.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.billing.internal.v0.models.OrderCancellationEvidenceReturnToSender);
13466
13839
  type PlatformFee = (io.flow.billing.internal.v0.models.PlatformFeePause | io.flow.billing.internal.v0.models.PlatformFeeFlat | io.flow.billing.internal.v0.models.PlatformFeePercentage | io.flow.billing.internal.v0.models.PlatformFeeDisabled);
13467
- type ProofOfPosting = (io.flow.billing.internal.v0.models.ProofOfPostingFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingShippingNotification | io.flow.billing.internal.v0.models.ProofOfPostingOrderCancellation);
13840
+ type ProofOfPosting = (io.flow.billing.internal.v0.models.ProofOfPostingFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingShippingNotification | io.flow.billing.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.billing.internal.v0.models.ProofOfPostingOrderCombinedShipment);
13468
13841
  type SpotRateMetadata = (io.flow.billing.internal.v0.models.SpotRateMetadataIdentity | io.flow.billing.internal.v0.models.SpotRateMetadataRate);
13469
13842
  type Transaction = (io.flow.billing.internal.v0.models.InvoiceTransaction | io.flow.billing.internal.v0.models.ManualTransaction | io.flow.billing.internal.v0.models.ProcessingTransaction | io.flow.billing.internal.v0.models.SubscriptionTransaction | io.flow.billing.internal.v0.models.TaxRemittanceTransaction | io.flow.billing.internal.v0.models.TransferTransaction | io.flow.billing.internal.v0.models.VirtualCardTransaction | io.flow.billing.internal.v0.models.DisputeTransaction | io.flow.billing.internal.v0.models.ChannelTransaction | io.flow.billing.internal.v0.models.LabelTransaction | io.flow.billing.internal.v0.models.OrderTransaction | io.flow.billing.internal.v0.models.ChannelBilledTransaction | io.flow.billing.internal.v0.models.TaxTransaction | io.flow.billing.internal.v0.models.DutyTransaction | io.flow.billing.internal.v0.models.TrueupTransaction);
13470
13843
  }
@@ -13473,11 +13846,10 @@ declare namespace io.flow.billing.v0.enums {
13473
13846
  type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
13474
13847
  type PayoutAttachmentType = 'transactions';
13475
13848
  type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
13476
- type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
13849
+ type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
13477
13850
  type StatementAttachmentType = 'csv';
13478
13851
  type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
13479
13852
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
13480
- type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
13481
13853
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
13482
13854
  }
13483
13855
 
@@ -13561,6 +13933,9 @@ declare namespace io.flow.billing.v0.models {
13561
13933
  readonly 'id': string;
13562
13934
  readonly 'reason': io.flow.billing.v0.models.PendingPayoutTransactionReason;
13563
13935
  readonly 'timeout'?: io.flow.billing.v0.models.PendingPayoutTransactionTimeout;
13936
+ readonly 'created_at': string;
13937
+ readonly 'updated_at': string;
13938
+ readonly 'deleted_at'?: string;
13564
13939
  }
13565
13940
 
13566
13941
  interface ChannelStatement {
@@ -13627,6 +14002,9 @@ declare namespace io.flow.billing.v0.models {
13627
14002
  readonly 'id': string;
13628
14003
  readonly 'reason': io.flow.billing.v0.models.PendingPayoutTransactionReason;
13629
14004
  readonly 'timeout'?: io.flow.billing.v0.models.PendingPayoutTransactionTimeout;
14005
+ readonly 'created_at': string;
14006
+ readonly 'updated_at': string;
14007
+ readonly 'deleted_at'?: string;
13630
14008
  }
13631
14009
 
13632
14010
  interface ParentTransactionSummary {
@@ -13742,14 +14120,30 @@ declare namespace io.flow.billing.v0.models {
13742
14120
  readonly 'country': string;
13743
14121
  }
13744
14122
 
14123
+ interface TransactionMetadataManual {
14124
+ readonly 'discriminator': 'manual';
14125
+ readonly 'original'?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
14126
+ readonly 'url'?: string;
14127
+ }
14128
+
14129
+ interface TransactionMetadataOriginalTransaction {
14130
+ readonly 'id': string;
14131
+ }
14132
+
13745
14133
  interface TransactionMetadataShippingLabel {
13746
14134
  readonly 'discriminator': 'shipping_label';
13747
14135
  readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
14136
+ readonly 'carrier': io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
14137
+ }
14138
+
14139
+ interface TransactionMetadataShippingLabelCarrier {
14140
+ readonly 'id': string;
14141
+ readonly 'tracking_number': string;
13748
14142
  }
13749
14143
 
13750
14144
  interface TransactionMetadataTrueup {
13751
14145
  readonly 'discriminator': 'trueup';
13752
- readonly 'original': io.flow.billing.v0.models.TransactionMetadataTrueupOriginalTransaction;
14146
+ readonly 'original': io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
13753
14147
  readonly 'estimate': io.flow.billing.v0.models.TransactionMetadataTrueupData;
13754
14148
  readonly 'actual': io.flow.billing.v0.models.TransactionMetadataTrueupData;
13755
14149
  }
@@ -13760,10 +14154,8 @@ declare namespace io.flow.billing.v0.models {
13760
14154
  readonly 'base': io.flow.billing.v0.models.TrueupLabelBase;
13761
14155
  readonly 'surcharges': io.flow.billing.v0.models.TrueupLabelSurcharge[];
13762
14156
  readonly 'total': number;
13763
- }
13764
-
13765
- interface TransactionMetadataTrueupOriginalTransaction {
13766
- readonly 'id': string;
14157
+ readonly 'dead'?: io.flow.trueup.v0.models.DeadWeight;
14158
+ readonly 'dimensional'?: io.flow.trueup.v0.models.DimensionalWeight;
13767
14159
  }
13768
14160
 
13769
14161
  interface TransactionReference {
@@ -13777,7 +14169,7 @@ declare namespace io.flow.billing.v0.models {
13777
14169
 
13778
14170
  interface TrueupLabelSurcharge {
13779
14171
  readonly 'amount': number;
13780
- readonly 'type': io.flow.billing.v0.enums.TrueupSurchargeType;
14172
+ readonly 'type': io.flow.trueup.v0.enums.TrueupSurchargeType;
13781
14173
  readonly 'percentage'?: number;
13782
14174
  readonly 'per_weight_unit'?: number;
13783
14175
  }
@@ -13798,7 +14190,7 @@ declare namespace io.flow.billing.v0.unions {
13798
14190
  type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
13799
14191
  type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
13800
14192
  type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
13801
- type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup);
14193
+ type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataManual);
13802
14194
  }
13803
14195
 
13804
14196
  declare namespace io.flow.harmonization.v0.enums {
@@ -15457,7 +15849,7 @@ declare namespace io.flow.internal.v0.enums {
15457
15849
  type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
15458
15850
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
15459
15851
  type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
15460
- type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count';
15852
+ type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days';
15461
15853
  type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'all';
15462
15854
  type BillingStatementBatchFileKey = 'summary';
15463
15855
  type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
@@ -15466,6 +15858,7 @@ declare namespace io.flow.internal.v0.enums {
15466
15858
  type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
15467
15859
  type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
15468
15860
  type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
15861
+ type CarrierChargeOtherReason = 'return_to_origin' | 'other';
15469
15862
  type CarrierLabelGenerationMethod = 'direct' | 'easypost';
15470
15863
  type CarrierValidationStatus = 'success' | 'error';
15471
15864
  type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
@@ -15474,6 +15867,7 @@ declare namespace io.flow.internal.v0.enums {
15474
15867
  type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
15475
15868
  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';
15476
15869
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
15870
+ type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
15477
15871
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
15478
15872
  type ChargebackPaymentStatus = 'captured' | 'refunded';
15479
15873
  type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
@@ -15557,6 +15951,7 @@ declare namespace io.flow.internal.v0.enums {
15557
15951
  type ContentType = 'text' | 'html';
15558
15952
  type ContentTypeCast = 'markdown_to_html' | 'markdown_to_text';
15559
15953
  type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
15954
+ type DebugAccountingTransactionType = 'fulfillment';
15560
15955
  type DeliveredDutyOptionMessageType = 'warning' | 'notification';
15561
15956
  type DeminimisAdjustmentType = 'none' | 'duty' | 'vat' | 'vat_and_duty';
15562
15957
  type DiscountRequestOrderEntitlementKey = 'subtotal';
@@ -15579,7 +15974,7 @@ declare namespace io.flow.internal.v0.enums {
15579
15974
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
15580
15975
  type EmptyAttribute = 'irrelevant';
15581
15976
  type ErpFileType = 'vendor';
15582
- 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' | '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_deleted' | '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' | 'label_invoice_request_upserted' | 'label_invoice_request_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' | '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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_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' | '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' | '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' | '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' | 'virtual_card_provider_upserted' | 'virtual_card_provider_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' | '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' | '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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_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';
15977
+ 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' | '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_deleted' | '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' | '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' | '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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_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' | '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' | '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' | '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' | 'virtual_card_provider_upserted' | 'virtual_card_provider_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' | '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' | '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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_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';
15583
15978
  type ExperienceImportType = 'experience_with_settings';
15584
15979
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
15585
15980
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -15615,9 +16010,10 @@ declare namespace io.flow.internal.v0.enums {
15615
16010
  type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
15616
16011
  type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
15617
16012
  type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
16013
+ type LogisticsResponsibility = 'organization' | 'flow';
15618
16014
  type MainTransactionStatus = 'scheduled' | 'pending_proof';
15619
16015
  type ManualReviewRuleStatus = 'active' | 'archived';
15620
- type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit';
16016
+ type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee';
15621
16017
  type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
15622
16018
  type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
15623
16019
  type MarketingGatewayChannelStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected' | 'unavailable';
@@ -15636,7 +16032,7 @@ declare namespace io.flow.internal.v0.enums {
15636
16032
  type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
15637
16033
  type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
15638
16034
  type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
15639
- type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
16035
+ 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';
15640
16036
  type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
15641
16037
  type OrderAttributeIntent = 'discount_code';
15642
16038
  type OrderCancellationInitiatedBy = 'flow' | 'organization';
@@ -15667,7 +16063,7 @@ declare namespace io.flow.internal.v0.enums {
15667
16063
  type PromptCheckoutDisplayPosition = 'email' | 'submission';
15668
16064
  type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
15669
16065
  type PromptTarget = 'browse' | 'checkout';
15670
- type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_cancellation' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'label_origin' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email';
16066
+ type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event' | 'credit_and_subsidy' | 'negative_balance_guarantee';
15671
16067
  type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
15672
16068
  type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
15673
16069
  type RateSource = 'calculated' | 'market';
@@ -15676,6 +16072,7 @@ declare namespace io.flow.internal.v0.enums {
15676
16072
  type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
15677
16073
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
15678
16074
  type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
16075
+ type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account';
15679
16076
  type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
15680
16077
  type ResponsibleParty = 'flow' | 'organization';
15681
16078
  type RestrictionAction = 'prohibited' | 'restricted';
@@ -15719,7 +16116,6 @@ declare namespace io.flow.internal.v0.enums {
15719
16116
  type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
15720
16117
  type TransactionPostingMethod = 'time' | 'proof';
15721
16118
  type TransferMethod = 'ach';
15722
- type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
15723
16119
  type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
15724
16120
  type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
15725
16121
  }
@@ -15839,6 +16235,10 @@ declare namespace io.flow.internal.v0.models {
15839
16235
  readonly 'rates': io.flow.internal.v0.models.AccountProcessingRates;
15840
16236
  }
15841
16237
 
16238
+ interface AccountReference {
16239
+ readonly 'id': string;
16240
+ }
16241
+
15842
16242
  interface AccountSettingLabelFees {
15843
16243
  readonly 'flow'?: io.flow.internal.v0.models.TieredFee;
15844
16244
  readonly 'organization'?: io.flow.internal.v0.models.TieredFee;
@@ -15858,6 +16258,7 @@ declare namespace io.flow.internal.v0.models {
15858
16258
  readonly 'merchant_of_record_fee'?: number;
15859
16259
  readonly 'duty_guarantee_fee'?: number;
15860
16260
  readonly 'transfer_fee'?: number;
16261
+ readonly 'negative_balance_guarantee_fee'?: number;
15861
16262
  readonly 'order_service_fee'?: io.flow.internal.v0.models.TieredFee;
15862
16263
  readonly 'label_fees'?: io.flow.internal.v0.models.AccountSettingLabelFees;
15863
16264
  readonly 'charge_label_cost_directly': boolean;
@@ -17189,21 +17590,29 @@ declare namespace io.flow.internal.v0.models {
17189
17590
  readonly 'id': string;
17190
17591
  readonly 'label_invoice_request_id': string;
17191
17592
  readonly 'units': io.flow.internal.v0.models.CarrierChargeUnits;
17192
- readonly 'base': io.flow.internal.v0.models.LabelBase;
17593
+ readonly 'base': io.flow.trueup.v0.models.LabelBase;
17193
17594
  readonly 'surcharges': io.flow.internal.v0.models.LabelSurchargeForm;
17194
17595
  readonly 'total': number;
17596
+ readonly 'dead'?: io.flow.trueup.v0.models.DeadWeight;
17597
+ readonly 'dimensional'?: io.flow.trueup.v0.models.DimensionalWeight;
17195
17598
  readonly 'attributes'?: Record<string, string>;
17196
17599
  }
17197
17600
 
17198
- interface CarrierChargeFormReturnToOrigin {
17199
- readonly 'discriminator': 'return_to_origin';
17601
+ interface CarrierChargeFormOther {
17602
+ readonly 'discriminator': 'other';
17200
17603
  readonly 'id': string;
17604
+ readonly 'reason': io.flow.internal.v0.enums.CarrierChargeOtherReason;
17605
+ readonly 'organization_id': string;
17606
+ readonly 'order_number': string;
17201
17607
  readonly 'carrier_id': string;
17202
17608
  readonly 'carrier_tracking_number': string;
17609
+ readonly 'label_created_at': string;
17203
17610
  readonly 'units': io.flow.internal.v0.models.CarrierChargeUnits;
17204
- readonly 'base': io.flow.internal.v0.models.LabelBase;
17611
+ readonly 'base': io.flow.trueup.v0.models.LabelBase;
17205
17612
  readonly 'surcharges': io.flow.internal.v0.models.LabelSurchargeForm;
17206
17613
  readonly 'total': number;
17614
+ readonly 'dead'?: io.flow.trueup.v0.models.DeadWeight;
17615
+ readonly 'dimensional'?: io.flow.trueup.v0.models.DimensionalWeight;
17207
17616
  readonly 'attributes'?: Record<string, string>;
17208
17617
  }
17209
17618
 
@@ -17485,6 +17894,19 @@ declare namespace io.flow.internal.v0.models {
17485
17894
  readonly 'role'?: io.flow.common.v0.enums.Role;
17486
17895
  }
17487
17896
 
17897
+ interface ChannelOrder {
17898
+ readonly 'org_id': string;
17899
+ readonly 'flow_order_number': string;
17900
+ readonly 'shopify_order_number': string;
17901
+ readonly 'order_submission_date'?: string;
17902
+ readonly 'order_item_count': number;
17903
+ readonly 'total': io.flow.catalog.v0.models.LocalizedTotal;
17904
+ readonly 'merchant_total': number;
17905
+ readonly 'tracking_numbers'?: string[];
17906
+ readonly 'carrier'?: io.flow.reference.v0.models.CarrierService;
17907
+ readonly 'duty_paid': boolean;
17908
+ }
17909
+
17488
17910
  interface ChannelOrderAcceptance {
17489
17911
  readonly 'id': string;
17490
17912
  readonly 'organization_id': string;
@@ -17496,6 +17918,7 @@ declare namespace io.flow.internal.v0.models {
17496
17918
  readonly 'reasons': io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
17497
17919
  readonly 'next_action_from'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
17498
17920
  readonly 'order_created_at'?: string;
17921
+ readonly 'order_updated_at'?: string;
17499
17922
  }
17500
17923
 
17501
17924
  interface ChannelOrderAcceptanceDeleted {
@@ -17525,6 +17948,35 @@ declare namespace io.flow.internal.v0.models {
17525
17948
  readonly 'channel_order_acceptance': io.flow.internal.v0.models.ChannelOrderAcceptance;
17526
17949
  }
17527
17950
 
17951
+ interface ChannelOrderSummary {
17952
+ readonly 'id': string;
17953
+ readonly 'organization': io.flow.common.v0.models.OrganizationReference;
17954
+ readonly 'external_order_reference': string;
17955
+ readonly 'order_number': string;
17956
+ readonly 'fulfullment_details': io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
17957
+ }
17958
+
17959
+ interface ChannelOrderSummaryDeleted {
17960
+ readonly 'discriminator': 'channel_order_summary_deleted';
17961
+ readonly 'event_id': string;
17962
+ readonly 'timestamp': string;
17963
+ readonly 'channel_id': string;
17964
+ readonly 'id': string;
17965
+ }
17966
+
17967
+ interface ChannelOrderSummaryFulfillmentDetails {
17968
+ readonly 'fulfillment_status': io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode;
17969
+ readonly 'timestamp': string;
17970
+ }
17971
+
17972
+ interface ChannelOrderSummaryUpserted {
17973
+ readonly 'discriminator': 'channel_order_summary_upserted';
17974
+ readonly 'event_id': string;
17975
+ readonly 'timestamp': string;
17976
+ readonly 'channel_id': string;
17977
+ readonly 'channel_order_summary': io.flow.internal.v0.models.ChannelOrderSummary;
17978
+ }
17979
+
17528
17980
  interface ChannelOrganizationShopify {
17529
17981
  readonly 'organization': io.flow.channel.v0.models.ChannelOrganization;
17530
17982
  readonly 'tokens': io.flow.internal.v0.models.ShopifyChannelOrganizationTokens[];
@@ -20233,12 +20685,25 @@ declare namespace io.flow.internal.v0.models {
20233
20685
  readonly 'daily_value': io.flow.internal.v0.models.DailyValue;
20234
20686
  }
20235
20687
 
20688
+ interface DebugAccountingTransaction {
20689
+ readonly 'type': io.flow.internal.v0.enums.DebugAccountingTransactionType;
20690
+ readonly 'type_id': string;
20691
+ readonly 'transaction_id': string;
20692
+ }
20693
+
20236
20694
  interface DebugDetails {
20237
20695
  readonly 'labels': io.flow.internal.v0.models.DebugLabel[];
20238
20696
  readonly 'captures': io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
20239
20697
  readonly 'refunds': io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
20240
20698
  }
20241
20699
 
20700
+ interface DebugFulfillmentDelta {
20701
+ readonly 'posted_transactions_net': number;
20702
+ readonly 'fulfillments_net': number;
20703
+ readonly 'delta_amount': number;
20704
+ readonly 'delta_percent': number;
20705
+ }
20706
+
20242
20707
  interface DebugLabel {
20243
20708
  readonly 'carrier_id': string;
20244
20709
  readonly 'carrier_tracking_number': string;
@@ -20279,6 +20744,7 @@ declare namespace io.flow.internal.v0.models {
20279
20744
  readonly 'label_tracking_summary_id'?: string;
20280
20745
  readonly 'shipping_notification_id'?: string;
20281
20746
  readonly 'external_fulfillment_proof_id'?: string;
20747
+ readonly 'order_cancellation_id'?: string;
20282
20748
  }
20283
20749
 
20284
20750
  interface DebugOrderTransactionFormOrderIdentifier {
@@ -21870,14 +22336,13 @@ declare namespace io.flow.internal.v0.models {
21870
22336
  interface Fulfillment {
21871
22337
  readonly 'id': string;
21872
22338
  readonly 'fulfilled_at': string;
22339
+ readonly 'owner': io.flow.internal.v0.enums.LogisticsResponsibility;
21873
22340
  readonly 'currency': string;
21874
22341
  readonly 'order': io.flow.internal.v0.models.OrderSummary;
21875
22342
  readonly 'origin'?: io.flow.internal.v0.models.FulfillmentOrigin;
21876
- readonly 'lines': io.flow.internal.v0.models.FulfillmentLine[];
21877
22343
  readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
21878
22344
  readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
21879
- readonly 'proof': io.flow.internal.v0.unions.FulfillmentProof;
21880
- readonly 'responsible_party': io.flow.internal.v0.enums.ResponsibleParty;
22345
+ readonly 'trigger': io.flow.internal.v0.unions.FulfillmentTrigger;
21881
22346
  readonly 'completes_order': boolean;
21882
22347
  readonly 'sequence_number': number;
21883
22348
  readonly 'posting_cutoff': string;
@@ -21912,17 +22377,6 @@ declare namespace io.flow.internal.v0.models {
21912
22377
  readonly 'key': string;
21913
22378
  }
21914
22379
 
21915
- interface FulfillmentLine {
21916
- readonly 'item': io.flow.internal.v0.models.ItemSummary;
21917
- readonly 'quantity': number;
21918
- readonly 'unit_price': number;
21919
- readonly 'price': number;
21920
- readonly 'discount': number;
21921
- readonly 'tax': number;
21922
- readonly 'duty': number;
21923
- readonly 'subsidies': io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
21924
- }
21925
-
21926
22380
  interface FulfillmentOrigin {
21927
22381
  readonly 'country': string;
21928
22382
  readonly 'province_code'?: string;
@@ -21935,6 +22389,7 @@ declare namespace io.flow.internal.v0.models {
21935
22389
  readonly 'carrier_service_id'?: string;
21936
22390
  readonly 'carrier_tracking_number'?: string;
21937
22391
  readonly 'label_id'?: string;
22392
+ readonly 'created_at'?: string;
21938
22393
  }
21939
22394
 
21940
22395
  interface FulfillmentProofLabelTrackingReference {
@@ -21944,6 +22399,17 @@ declare namespace io.flow.internal.v0.models {
21944
22399
  readonly 'carrier_service_id'?: string;
21945
22400
  readonly 'carrier_tracking_number'?: string;
21946
22401
  readonly 'label_id'?: string;
22402
+ readonly 'created_at'?: string;
22403
+ }
22404
+
22405
+ interface FulfillmentProofOrderCombinedShipmentReference {
22406
+ readonly 'discriminator': 'order_combined_shipment';
22407
+ readonly 'id': string;
22408
+ readonly 'carrier_id'?: string;
22409
+ readonly 'carrier_service_id'?: string;
22410
+ readonly 'carrier_tracking_number'?: string;
22411
+ readonly 'label_id'?: string;
22412
+ readonly 'created_at'?: string;
21947
22413
  }
21948
22414
 
21949
22415
  interface FulfillmentProofShippingNotificationReference {
@@ -21953,6 +22419,7 @@ declare namespace io.flow.internal.v0.models {
21953
22419
  readonly 'carrier_service_id'?: string;
21954
22420
  readonly 'carrier_tracking_number'?: string;
21955
22421
  readonly 'label_id'?: string;
22422
+ readonly 'created_at'?: string;
21956
22423
  }
21957
22424
 
21958
22425
  interface FulfillmentReference {
@@ -21980,6 +22447,17 @@ declare namespace io.flow.internal.v0.models {
21980
22447
  interface FulfillmentSubsidyBreakdown {
21981
22448
  readonly 'tax': number;
21982
22449
  readonly 'duty': number;
22450
+ readonly 'total': number;
22451
+ }
22452
+
22453
+ interface FulfillmentTriggerProof {
22454
+ readonly 'discriminator': 'by_proof';
22455
+ readonly 'proof': io.flow.internal.v0.unions.FulfillmentProof;
22456
+ }
22457
+
22458
+ interface FulfillmentTriggerTime {
22459
+ readonly 'discriminator': 'by_time';
22460
+ readonly 'placeholder'?: string;
21983
22461
  }
21984
22462
 
21985
22463
  interface FxFee {
@@ -23465,11 +23943,6 @@ declare namespace io.flow.internal.v0.models {
23465
23943
  readonly 'constructions': Record<string, string[]>;
23466
23944
  }
23467
23945
 
23468
- interface LabelBase {
23469
- readonly 'amount': number;
23470
- readonly 'weight': number;
23471
- }
23472
-
23473
23946
  interface LabelCancellationError {
23474
23947
  readonly 'code': io.flow.internal.v0.enums.LabelCancellationErrorCode;
23475
23948
  readonly 'messages': string[];
@@ -23501,6 +23974,7 @@ declare namespace io.flow.internal.v0.models {
23501
23974
 
23502
23975
  interface LabelDestination {
23503
23976
  readonly 'country': string;
23977
+ readonly 'postal'?: string;
23504
23978
  }
23505
23979
 
23506
23980
  interface LabelGenerationAddressFailureStatusUpdateForm {
@@ -23548,13 +24022,14 @@ declare namespace io.flow.internal.v0.models {
23548
24022
 
23549
24023
  interface LabelInvoiceRequest {
23550
24024
  readonly 'id': string;
23551
- readonly 'label': io.flow.internal.v0.models.TrueUpLabelSummary;
23552
- readonly 'units': io.flow.internal.v0.models.LabelUnits;
23553
- readonly 'base': io.flow.internal.v0.models.LabelBase;
23554
- readonly 'surcharges': io.flow.internal.v0.models.LabelSurcharge[];
24025
+ readonly 'label': io.flow.internal.v0.models.TrueupLabelSummary;
24026
+ readonly 'units': io.flow.trueup.v0.models.LabelUnits;
24027
+ readonly 'base': io.flow.trueup.v0.models.LabelBase;
24028
+ readonly 'surcharges': io.flow.trueup.v0.models.LabelSurcharge[];
23555
24029
  readonly 'total': number;
23556
24030
  readonly 'destination': io.flow.internal.v0.models.LabelDestination;
23557
24031
  readonly 'metadata': io.flow.internal.v0.models.LabelMetadata;
24032
+ readonly 'created_at': string;
23558
24033
  }
23559
24034
 
23560
24035
  interface LabelInvoiceRequestDeleted {
@@ -23575,7 +24050,8 @@ declare namespace io.flow.internal.v0.models {
23575
24050
 
23576
24051
  interface LabelMetadata {
23577
24052
  readonly 'ratecard': io.flow.internal.v0.models.MetadataRatecard;
23578
- readonly 'weights': io.flow.internal.v0.models.MetadataWeights;
24053
+ readonly 'dead'?: io.flow.trueup.v0.models.DeadWeight;
24054
+ readonly 'dimensional'?: io.flow.trueup.v0.models.DimensionalWeight;
23579
24055
  }
23580
24056
 
23581
24057
  interface LabelRequestError {
@@ -23622,27 +24098,6 @@ declare namespace io.flow.internal.v0.models {
23622
24098
  readonly 'service'?: io.flow.reference.v0.models.CarrierService;
23623
24099
  }
23624
24100
 
23625
- interface LabelSurcharge {
23626
- readonly 'amount': number;
23627
- readonly 'type': io.flow.internal.v0.enums.TrueUpSurchargeType;
23628
- readonly 'detail': io.flow.internal.v0.unions.LabelSurchargeDetail;
23629
- }
23630
-
23631
- interface LabelSurchargeDetailFlat {
23632
- readonly 'discriminator': 'flat';
23633
- readonly 'placeholder'?: string;
23634
- }
23635
-
23636
- interface LabelSurchargeDetailPerWeightUnit {
23637
- readonly 'discriminator': 'per_weight_unit';
23638
- readonly 'fee': number;
23639
- }
23640
-
23641
- interface LabelSurchargeDetailPercentage {
23642
- readonly 'discriminator': 'percentage';
23643
- readonly 'percentage': number;
23644
- }
23645
-
23646
24101
  interface LabelSurchargeForm {
23647
24102
  readonly 'fuel'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
23648
24103
  readonly 'remote_area'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
@@ -23715,12 +24170,6 @@ declare namespace io.flow.internal.v0.models {
23715
24170
  readonly 'label_transaction': io.flow.internal.v0.models.LabelTransaction;
23716
24171
  }
23717
24172
 
23718
- interface LabelUnits {
23719
- readonly 'currency': string;
23720
- readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
23721
- readonly 'length': io.flow.units.v0.enums.UnitOfLength;
23722
- }
23723
-
23724
24173
  interface LabeledContent {
23725
24174
  readonly 'label': io.flow.internal.v0.models.ContentLabel;
23726
24175
  readonly 'contents': io.flow.internal.v0.unions.ContentItem[];
@@ -24112,6 +24561,7 @@ declare namespace io.flow.internal.v0.models {
24112
24561
  interface ManualTransaction {
24113
24562
  readonly 'discriminator': 'manual_transaction';
24114
24563
  readonly 'category'?: io.flow.internal.v0.enums.ManualTransactionCategory;
24564
+ readonly 'original_transaction'?: io.flow.internal.v0.models.TransactionReference;
24115
24565
  readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
24116
24566
  readonly 'attributes'?: Record<string, string>;
24117
24567
  readonly 'id': string;
@@ -24131,6 +24581,7 @@ declare namespace io.flow.internal.v0.models {
24131
24581
  readonly 'category'?: io.flow.internal.v0.enums.ManualTransactionCategory;
24132
24582
  readonly 'posted_at'?: string;
24133
24583
  readonly 'order'?: io.flow.internal.v0.models.ManualTransactionFormOrder;
24584
+ readonly 'original_transaction_id'?: string;
24134
24585
  readonly 'attributes'?: Record<string, string>;
24135
24586
  }
24136
24587
 
@@ -24399,6 +24850,11 @@ declare namespace io.flow.internal.v0.models {
24399
24850
  readonly 'flow_authorization'?: io.flow.payment.v0.unions.Authorization;
24400
24851
  }
24401
24852
 
24853
+ interface Merchant {
24854
+ readonly 'id': string;
24855
+ readonly 'account': io.flow.internal.v0.models.AccountReference;
24856
+ }
24857
+
24402
24858
  interface MerchantApplicationSummaries {
24403
24859
  readonly 'summaries': io.flow.internal.v0.models.MerchantApplicationSummary[];
24404
24860
  readonly 'total': number;
@@ -24409,6 +24865,13 @@ declare namespace io.flow.internal.v0.models {
24409
24865
  readonly 'organization_reference': io.flow.common.v0.models.Organization;
24410
24866
  }
24411
24867
 
24868
+ interface MerchantDeleted {
24869
+ readonly 'discriminator': 'merchant_deleted';
24870
+ readonly 'event_id': string;
24871
+ readonly 'timestamp': string;
24872
+ readonly 'id': string;
24873
+ }
24874
+
24412
24875
  interface MerchantFees {
24413
24876
  readonly 'duty_guarantee': number;
24414
24877
  readonly 'mor': number;
@@ -24470,6 +24933,7 @@ declare namespace io.flow.internal.v0.models {
24470
24933
  interface MerchantSearchResult {
24471
24934
  readonly 'organization_id': string;
24472
24935
  readonly 'shop_name'?: string;
24936
+ readonly 'shop_id'?: string;
24473
24937
  readonly 'legal_name': string;
24474
24938
  readonly 'onboarding_current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
24475
24939
  }
@@ -24478,7 +24942,6 @@ declare namespace io.flow.internal.v0.models {
24478
24942
  readonly 'fees': io.flow.internal.v0.models.ShopperFees;
24479
24943
  readonly 'tax': number;
24480
24944
  readonly 'duty': number;
24481
- readonly 'freight': number;
24482
24945
  readonly 'total': number;
24483
24946
  }
24484
24947
 
@@ -24486,7 +24949,7 @@ declare namespace io.flow.internal.v0.models {
24486
24949
  readonly 'subsidies': io.flow.internal.v0.models.MerchantSubsidies;
24487
24950
  readonly 'fees': io.flow.internal.v0.models.MerchantFees;
24488
24951
  readonly 'transactions': io.flow.internal.v0.models.MerchantTransactions;
24489
- readonly 'discounts': number;
24952
+ readonly 'total': number;
24490
24953
  }
24491
24954
 
24492
24955
  interface MerchantTransactions {
@@ -24498,6 +24961,13 @@ declare namespace io.flow.internal.v0.models {
24498
24961
  readonly 'total': number;
24499
24962
  }
24500
24963
 
24964
+ interface MerchantUpserted {
24965
+ readonly 'discriminator': 'merchant_upserted';
24966
+ readonly 'event_id': string;
24967
+ readonly 'timestamp': string;
24968
+ readonly 'merchant': io.flow.internal.v0.models.Merchant;
24969
+ }
24970
+
24501
24971
  interface MetadataProposition {
24502
24972
  readonly 'shipping_method': io.flow.internal.v0.models.ShippingMethodReference;
24503
24973
  readonly 'name': string;
@@ -24508,11 +24978,6 @@ declare namespace io.flow.internal.v0.models {
24508
24978
  readonly 'proposition': io.flow.internal.v0.models.MetadataProposition;
24509
24979
  }
24510
24980
 
24511
- interface MetadataWeights {
24512
- readonly 'dead'?: io.flow.internal.v0.models.WeightsDead;
24513
- readonly 'dimensional'?: io.flow.internal.v0.models.WeightsDimensional;
24514
- }
24515
-
24516
24981
  interface NextBillingStatement {
24517
24982
  readonly 'date': string;
24518
24983
  readonly 'amount': io.flow.common.v0.models.Price;
@@ -24529,6 +24994,12 @@ declare namespace io.flow.internal.v0.models {
24529
24994
  readonly 'harmonization_status': io.flow.internal.v0.enums.ItemHarmonizationStatus;
24530
24995
  }
24531
24996
 
24997
+ interface NonChannelPaymentBankAccount {
24998
+ readonly 'payment': io.flow.internal.v0.models.ReportPayment;
24999
+ readonly 'bank_account': io.flow.internal.v0.models.ReportBankAccount;
25000
+ readonly 'account': io.flow.internal.v0.models.ReportAccount;
25001
+ }
25002
+
24532
25003
  interface Notification {
24533
25004
  readonly 'order': io.flow.internal.v0.models.Decision;
24534
25005
  }
@@ -25070,6 +25541,7 @@ declare namespace io.flow.internal.v0.models {
25070
25541
  readonly 'deactivate_at': string;
25071
25542
  readonly 'created_at': string;
25072
25543
  readonly 'reason'?: string;
25544
+ readonly 'processed_at'?: string;
25073
25545
  }
25074
25546
 
25075
25547
  interface OrganizationDeactivationDeleted {
@@ -26003,6 +26475,11 @@ declare namespace io.flow.internal.v0.models {
26003
26475
  readonly 'order_cancellation_id': string;
26004
26476
  }
26005
26477
 
26478
+ interface ProofOfPostingOrderCombinedShipment {
26479
+ readonly 'discriminator': 'order_combined_shipment';
26480
+ readonly 'order_combined_shipment_id': string;
26481
+ }
26482
+
26006
26483
  interface ProofOfPostingShippingNotification {
26007
26484
  readonly 'discriminator': 'shipping_notification';
26008
26485
  readonly 'shipping_notification_id': string;
@@ -26470,20 +26947,34 @@ declare namespace io.flow.internal.v0.models {
26470
26947
  }
26471
26948
 
26472
26949
  interface Report {
26473
- readonly 'key': string;
26950
+ readonly 'id': string;
26474
26951
  readonly 'status': io.flow.internal.v0.enums.ReportStatus;
26952
+ readonly 'type': io.flow.internal.v0.enums.ReportType;
26475
26953
  readonly 'from': string;
26476
26954
  readonly 'to': string;
26477
- readonly 'organization_id'?: string;
26478
- readonly 'sales_url'?: string;
26479
- readonly 'refunds_url'?: string;
26955
+ readonly 'url'?: string;
26956
+ readonly 'processed_at'?: string;
26957
+ }
26958
+
26959
+ interface ReportAccount {
26960
+ readonly 'id': string;
26961
+ readonly 'source': io.flow.internal.v0.models.AccountSource;
26962
+ }
26963
+
26964
+ interface ReportBankAccount {
26965
+ readonly 'id'?: string;
26966
+ readonly 'last4'?: string;
26480
26967
  }
26481
26968
 
26482
26969
  interface ReportForm {
26483
- readonly 'key'?: string;
26484
26970
  readonly 'from': string;
26485
26971
  readonly 'to': string;
26486
- readonly 'organization_id'?: string;
26972
+ readonly 'type': io.flow.internal.v0.enums.ReportType;
26973
+ }
26974
+
26975
+ interface ReportPayment {
26976
+ readonly 'id': string;
26977
+ readonly 'created_at': string;
26487
26978
  }
26488
26979
 
26489
26980
  interface ReportRuleDecision {
@@ -26498,6 +26989,9 @@ declare namespace io.flow.internal.v0.models {
26498
26989
  }
26499
26990
 
26500
26991
  interface ReportingDetails {
26992
+ readonly 'accounting_transactions'?: any/*object*/[];
26993
+ readonly 'fulfillments'?: any/*object*/[];
26994
+ readonly 'fulfillment_delta'?: io.flow.internal.v0.models.DebugFulfillmentDelta;
26501
26995
  readonly 'sales_records'?: any/*object*/[];
26502
26996
  readonly 'refund_records'?: any/*object*/[];
26503
26997
  }
@@ -26576,6 +27070,12 @@ declare namespace io.flow.internal.v0.models {
26576
27070
  readonly 'decision': io.flow.internal.v0.enums.RestrictionDecision;
26577
27071
  }
26578
27072
 
27073
+ interface RestrictionItemReviewSummary {
27074
+ readonly 'rule': io.flow.internal.v0.models.RestrictionRuleSummary;
27075
+ readonly 'status': io.flow.internal.v0.enums.RestrictionStatus;
27076
+ readonly 'updated_at': string;
27077
+ }
27078
+
26579
27079
  interface RestrictionKeywordMetadata {
26580
27080
  readonly 'keyword': string;
26581
27081
  readonly 'type': io.flow.internal.v0.enums.KeywordType;
@@ -26652,6 +27152,7 @@ declare namespace io.flow.internal.v0.models {
26652
27152
  readonly 'name': string;
26653
27153
  readonly 'price': io.flow.common.v0.models.Price;
26654
27154
  readonly 'item_numbers': string[];
27155
+ readonly 'primary_item_number'?: string;
26655
27156
  readonly 'description': string;
26656
27157
  readonly 'categories': string[];
26657
27158
  readonly 'images': io.flow.catalog.v0.models.Image[];
@@ -26676,6 +27177,11 @@ declare namespace io.flow.internal.v0.models {
26676
27177
  readonly 'product_name_query'?: string;
26677
27178
  }
26678
27179
 
27180
+ interface RestrictionProductSummary {
27181
+ readonly 'name': string;
27182
+ readonly 'restrictions': io.flow.internal.v0.models.RestrictionItemReviewSummary[];
27183
+ }
27184
+
26679
27185
  interface RestrictionRule {
26680
27186
  readonly 'id': string;
26681
27187
  readonly 'name': string;
@@ -26949,14 +27455,6 @@ declare namespace io.flow.internal.v0.models {
26949
27455
  readonly 'total': io.flow.common.v0.models.PriceWithBase;
26950
27456
  }
26951
27457
 
26952
- interface ShipperAccountInfoForm {
26953
- readonly 'account_name'?: string;
26954
- readonly 'account_number': string;
26955
- readonly 'postal': string;
26956
- readonly 'country': string;
26957
- readonly 'invoice_info'?: io.flow.internal.v0.models.InvoiceInfoForm;
26958
- }
26959
-
26960
27458
  interface ShippingLane {
26961
27459
  readonly 'origin': string;
26962
27460
  readonly 'destination': string;
@@ -27130,6 +27628,13 @@ declare namespace io.flow.internal.v0.models {
27130
27628
  readonly 'shopify_markets_order': io.flow.internal.v0.models.ShopifyMarketsOrder;
27131
27629
  }
27132
27630
 
27631
+ interface ShopifyMarketsOrderVersion {
27632
+ readonly 'id': string;
27633
+ readonly 'timestamp': string;
27634
+ readonly 'type': io.flow.common.v0.enums.ChangeType;
27635
+ readonly 'shopify_markets_order': io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
27636
+ }
27637
+
27133
27638
  interface ShopifyMarketsOrdersMetrics {
27134
27639
  readonly 'id': string;
27135
27640
  readonly 'range': io.flow.common.v0.models.DatetimeRange;
@@ -27138,6 +27643,18 @@ declare namespace io.flow.internal.v0.models {
27138
27643
  readonly 'discrepancy_data': io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
27139
27644
  }
27140
27645
 
27646
+ interface ShopifyMarketsQueuedRecord {
27647
+ readonly 'id': string;
27648
+ readonly 'type': string;
27649
+ readonly 'type_id': string;
27650
+ readonly 'organization_id': string;
27651
+ readonly 'environment'?: string;
27652
+ readonly 'num_attempts': number;
27653
+ readonly 'next_attempt_at': string;
27654
+ readonly 'errors'?: string[];
27655
+ readonly 'stacktrace'?: string;
27656
+ }
27657
+
27141
27658
  interface ShopifyMarketsShop {
27142
27659
  readonly 'id': string;
27143
27660
  readonly 'shopify_shop_id'?: string;
@@ -27549,11 +28066,32 @@ declare namespace io.flow.internal.v0.models {
27549
28066
  readonly 'tax': number;
27550
28067
  readonly 'duty': number;
27551
28068
  readonly 'subsidies': io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
28069
+ readonly 'total': number;
28070
+ }
28071
+
28072
+ interface ShopperLine {
28073
+ readonly 'item': io.flow.internal.v0.models.ItemSummary;
28074
+ readonly 'quantity': number;
28075
+ readonly 'unit_price': number;
28076
+ readonly 'price': number;
28077
+ readonly 'discount': number;
28078
+ readonly 'tax': number;
28079
+ readonly 'duty': number;
28080
+ readonly 'subsidies': io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
28081
+ readonly 'total': number;
28082
+ }
28083
+
28084
+ interface ShopperLines {
28085
+ readonly 'lines': io.flow.internal.v0.models.ShopperLine[];
28086
+ readonly 'total': number;
27552
28087
  }
27553
28088
 
27554
28089
  interface ShopperSummary {
28090
+ readonly 'fulfilled': io.flow.internal.v0.models.ShopperLines;
27555
28091
  readonly 'fees': io.flow.internal.v0.models.ShopperFees;
27556
28092
  readonly 'freight': io.flow.internal.v0.models.ShopperFreight;
28093
+ readonly 'order_discount': number;
28094
+ readonly 'total': number;
27557
28095
  }
27558
28096
 
27559
28097
  interface SimpleAccountReference {
@@ -28427,8 +28965,11 @@ declare namespace io.flow.internal.v0.models {
28427
28965
  readonly 'description': string;
28428
28966
  }
28429
28967
 
28430
- interface TrueUpLabelSummary {
28968
+ interface TrueupLabelSummary {
28431
28969
  readonly 'id': string;
28970
+ readonly 'organization': io.flow.common.v0.models.OrganizationReference;
28971
+ readonly 'order_number': string;
28972
+ readonly 'carrier_id': string;
28432
28973
  readonly 'carrier_service_id': string;
28433
28974
  readonly 'carrier_tracking_number': string;
28434
28975
  readonly 'flow_tracking_number': string;
@@ -28497,45 +29038,9 @@ declare namespace io.flow.internal.v0.models {
28497
29038
 
28498
29039
  interface Ups {
28499
29040
  readonly 'discriminator': 'ups';
28500
- readonly 'username': string;
28501
- readonly 'password': string;
28502
- readonly 'access_license_number': string;
28503
- readonly 'account_number': string;
28504
- readonly 'direct_feed_location_code'?: string;
28505
- }
28506
-
28507
- interface UpsLicense {
28508
- readonly 'access_license_number': string;
28509
- readonly 'address': io.flow.common.v0.models.BillingAddress;
28510
- readonly 'contact': io.flow.common.v0.models.Contact;
28511
- readonly 'secondary_contact'?: io.flow.common.v0.models.Contact;
28512
- readonly 'company_url': string;
28513
- }
28514
-
28515
- interface UpsLicenseForm {
28516
- readonly 'address': io.flow.common.v0.models.BillingAddress;
28517
- readonly 'contact': io.flow.common.v0.models.Contact;
28518
- readonly 'secondary_contact'?: io.flow.common.v0.models.Contact;
28519
- readonly 'developer_license_number': string;
28520
- readonly 'company_url': string;
28521
- }
28522
-
28523
- interface UpsRegistration {
28524
- readonly 'username': string;
28525
- readonly 'address': io.flow.common.v0.models.BillingAddress;
28526
- readonly 'contact': io.flow.common.v0.models.Contact;
28527
- readonly 'suggest_username_indicator'?: string;
28528
- readonly 'shipper_account_status'?: string;
28529
- }
28530
-
28531
- interface UpsRegistrationForm {
28532
- readonly 'username': string;
28533
- readonly 'password': string;
28534
- readonly 'access_license_number': string;
29041
+ readonly 'client_id': string;
29042
+ readonly 'client_secret': string;
28535
29043
  readonly 'account_number': string;
28536
- readonly 'address': io.flow.common.v0.models.BillingAddress;
28537
- readonly 'contact': io.flow.common.v0.models.Contact;
28538
- readonly 'shipper_account'?: io.flow.internal.v0.models.ShipperAccountInfoForm;
28539
29044
  }
28540
29045
 
28541
29046
  interface UsdSpotRate {
@@ -28706,17 +29211,6 @@ declare namespace io.flow.internal.v0.models {
28706
29211
  readonly 'placeholder'?: any/*json*/;
28707
29212
  }
28708
29213
 
28709
- interface WeightsDead {
28710
- readonly 'weight': number;
28711
- }
28712
-
28713
- interface WeightsDimensional {
28714
- readonly 'weight': number;
28715
- readonly 'length': number;
28716
- readonly 'width': number;
28717
- readonly 'height': number;
28718
- }
28719
-
28720
29214
  interface WholeOrderActionForm {
28721
29215
  readonly 'discriminator': 'whole_order_action_form';
28722
29216
  readonly 'action': io.flow.internal.v0.enums.OrderAction;
@@ -28730,7 +29224,7 @@ declare namespace io.flow.internal.v0.unions {
28730
29224
  type AuthorizedOrderCharge = (io.flow.internal.v0.models.AuthorizedShippingCharge);
28731
29225
  type BlazeConsumerMessage = (io.flow.internal.v0.models.BlazeAddOrderAttributesMessage | io.flow.internal.v0.models.BlazeAddToCartMessage | io.flow.internal.v0.models.BlazeCreateByCartToken | io.flow.internal.v0.models.BlazeInitializeByOrderQuoteMessage | io.flow.internal.v0.models.BlazeInitializeBySessionMessage | io.flow.internal.v0.models.BlazeInitializeMessage | io.flow.internal.v0.models.BlazeSetCartItemsMessage | io.flow.internal.v0.models.BlazeSetCheckoutIdMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeUpdateCartItemsMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityResponse | io.flow.internal.v0.models.BlazeSetPromotionCodeMessage);
28732
29226
  type BlazeProviderMessage = (io.flow.internal.v0.models.BlazeCheckoutCompleteMessage | io.flow.internal.v0.models.BlazeCheckoutProgressMessage | io.flow.internal.v0.models.BlazeCheckoutEventMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeExitCheckoutMessage | io.flow.internal.v0.models.BlazeExitCheckoutConfirmationMessage | io.flow.internal.v0.models.BlazeRedirectConfirmationMessage | io.flow.internal.v0.models.BlazeSynInitializeMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityRequest | io.flow.internal.v0.models.BlazePaymentAuthStartMessage | io.flow.internal.v0.models.BlazePaymentAuthCompleteMessage);
28733
- type CarrierChargeForm = (io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormReturnToOrigin);
29227
+ type CarrierChargeForm = (io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther);
28734
29228
  type CarrierCredentials = (io.flow.internal.v0.models.SfExpress | io.flow.internal.v0.models.DhlEcommerce | io.flow.internal.v0.models.Landmark | io.flow.internal.v0.models.Dhl | io.flow.internal.v0.models.FedexCrossborder | io.flow.internal.v0.models.Ups | io.flow.internal.v0.models.Fedex);
28735
29229
  type ChannelRateMetadata = (io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate);
28736
29230
  type CheckoutAddressBookEdit = (io.flow.internal.v0.models.CheckoutAddressBookContactRemoved);
@@ -28827,7 +29321,7 @@ declare namespace io.flow.internal.v0.unions {
28827
29321
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
28828
29322
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
28829
29323
  type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
28830
- 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.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.BankPaymentDeleted | 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.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | 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.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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | 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.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.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.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.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | 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.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.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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | 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);
29324
+ 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.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.BankPaymentDeleted | 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.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.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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | 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.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.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.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.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | 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.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.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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | 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);
28831
29325
  type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
28832
29326
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
28833
29327
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -28838,7 +29332,8 @@ declare namespace io.flow.internal.v0.unions {
28838
29332
  type FraudProviderConfiguration = (io.flow.internal.v0.models.FraudProviderConfigurationRiskified);
28839
29333
  type FraudProviderConfigurationForm = (io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified);
28840
29334
  type FuelSurchargeServiceFeePutForm = (io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm);
28841
- type FulfillmentProof = (io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference);
29335
+ type FulfillmentProof = (io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference | io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference);
29336
+ type FulfillmentTrigger = (io.flow.internal.v0.models.FulfillmentTriggerProof | io.flow.internal.v0.models.FulfillmentTriggerTime);
28842
29337
  type GenerateLoad = (io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs);
28843
29338
  type GlobalSearchResult = (io.flow.internal.v0.models.SearchExperienceSummary | io.flow.internal.v0.models.SearchExperimentSummary | io.flow.internal.v0.models.SearchOrderSummary | io.flow.internal.v0.models.SearchItemSummary);
28844
29339
  type HeapEvent = (io.flow.internal.v0.models.HeapAddressPredictionClick | io.flow.internal.v0.models.HeapAfterpayPopupOpened | io.flow.internal.v0.models.HeapAfterpayPopupClosed | io.flow.internal.v0.models.HeapAuthorizationDeclined | io.flow.internal.v0.models.HeapAuthorizationError | io.flow.internal.v0.models.HeapCardError | io.flow.internal.v0.models.HeapCheckoutEvent | io.flow.internal.v0.models.HeapCheckoutProgress | io.flow.internal.v0.models.HeapCheckoutStarted | io.flow.internal.v0.models.HeapContinueClick | io.flow.internal.v0.models.HeapDeliveryFormDataReceived | io.flow.internal.v0.models.HeapDeliveryFormDataTimeout | io.flow.internal.v0.models.HeapDeliveryOptionCount | io.flow.internal.v0.models.HeapDeliveryOptionSelected | io.flow.internal.v0.models.HeapExitCheckout | io.flow.internal.v0.models.HeapFieldBlur | io.flow.internal.v0.models.HeapFieldErrorTooltipShown | io.flow.internal.v0.models.HeapFieldFocus | io.flow.internal.v0.models.HeapFieldValidation | io.flow.internal.v0.models.HeapGiftCardApply | io.flow.internal.v0.models.HeapGiftCardOpen | io.flow.internal.v0.models.HeapGiftCardWithPin | io.flow.internal.v0.models.HeapOptinPromptDeselected | io.flow.internal.v0.models.HeapOptinPromptSelected | io.flow.internal.v0.models.HeapOrderSummaryClose | io.flow.internal.v0.models.HeapOrderSummaryOpen | io.flow.internal.v0.models.HeapPayClick | io.flow.internal.v0.models.HeapPaymentFormDataReceived | io.flow.internal.v0.models.HeapPaymentFormDataTimeout | io.flow.internal.v0.models.HeapPaymentMethodSelected | io.flow.internal.v0.models.HeapPerformance | io.flow.internal.v0.models.HeapPromoCodeApply | io.flow.internal.v0.models.HeapPromoCodeError | io.flow.internal.v0.models.HeapPromoCodeOpen | io.flow.internal.v0.models.HeapPurchase | io.flow.internal.v0.models.HeapRageClick | io.flow.internal.v0.models.HeapScriptError | io.flow.internal.v0.models.HeapSequencedError | io.flow.internal.v0.models.HeapSequencedTiming | io.flow.internal.v0.models.HeapSplitLoaded | io.flow.internal.v0.models.HeapSplitTimeout | io.flow.internal.v0.models.HeapStartCheckout | io.flow.internal.v0.models.HeapStreamError | io.flow.internal.v0.models.HeapSubmitError | io.flow.internal.v0.models.HeapWebsocketClose | io.flow.internal.v0.models.HeapWebsocketConnectionLost | io.flow.internal.v0.models.HeapWebsocketError | io.flow.internal.v0.models.HeapWebsocketGiveUp | io.flow.internal.v0.models.HeapWebsocketOpen | io.flow.internal.v0.models.HeapWebsocketRequest | io.flow.internal.v0.models.HeapWebsocketResponse | io.flow.internal.v0.models.HeapWebsocketRetry);
@@ -28848,7 +29343,6 @@ declare namespace io.flow.internal.v0.unions {
28848
29343
  type InternalHarmonizationStatistic = (io.flow.internal.v0.models.TimeToClassify | io.flow.internal.v0.models.TimeToClassifyAggregated | io.flow.internal.v0.models.RateSourceSummary | io.flow.internal.v0.models.RateFreshnessSummary);
28849
29344
  type InternalRefundForm = (io.flow.internal.v0.models.AdyenRefundForm);
28850
29345
  type InternalTransactionDetails = (io.flow.internal.v0.models.InternalTransactionDetailsCard);
28851
- type LabelSurchargeDetail = (io.flow.internal.v0.models.LabelSurchargeDetailFlat | io.flow.internal.v0.models.LabelSurchargeDetailPercentage | io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit);
28852
29346
  type LocalizableContent = (io.flow.internal.v0.models.LocalizableContentReference | io.flow.internal.v0.models.Localization);
28853
29347
  type MarketingGatewayChannelDetails = (io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails);
28854
29348
  type MarketingGatewayDistributionChannel = (io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook);
@@ -28868,7 +29362,7 @@ declare namespace io.flow.internal.v0.unions {
28868
29362
  type ProcessorMerchantForm = (io.flow.internal.v0.models.StripeMerchantForm);
28869
29363
  type ProcessorMerchantModificationForm = (io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm);
28870
29364
  type ProcessorMerchantPutForm = (io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm);
28871
- type ProofOfPosting = (io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation);
29365
+ type ProofOfPosting = (io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment);
28872
29366
  type RoutingEntity = (io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant);
28873
29367
  type ShopifyMonitoringOrderMonitorType = (io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails);
28874
29368
  type ShopifyPromotionOfferDiscount = (io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent);
@@ -28908,6 +29402,7 @@ export const blazeCheckoutEvent: PropTypes.Requireable<io.flow.internal.v0.enums
28908
29402
  export const blazeCheckoutStep: PropTypes.Requireable<io.flow.internal.v0.enums.BlazeCheckoutStep>;
28909
29403
  export const browserBundleErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.BrowserBundleErrorCode>;
28910
29404
  export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.CalculatorEngine>;
29405
+ export const carrierChargeOtherReason: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeOtherReason>;
28911
29406
  export const carrierLabelGenerationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierLabelGenerationMethod>;
28912
29407
  export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierValidationStatus>;
28913
29408
  export const catalogImportType: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogImportType>;
@@ -28916,6 +29411,7 @@ export const channelOrderAcceptanceErrorAction: PropTypes.Requireable<io.flow.in
28916
29411
  export const channelOrderAcceptanceNextActionFrom: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom>;
28917
29412
  export const channelOrderAcceptanceRejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason>;
28918
29413
  export const channelOrderAcceptanceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus>;
29414
+ export const channelOrderFulfillmentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode>;
28919
29415
  export const channelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelTransactionType>;
28920
29416
  export const chargebackPaymentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChargebackPaymentStatus>;
28921
29417
  export const chargebackProcessStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChargebackProcessStatus>;
@@ -28999,6 +29495,7 @@ export const contentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.Cont
28999
29495
  export const contentType: PropTypes.Requireable<io.flow.internal.v0.enums.ContentType>;
29000
29496
  export const contentTypeCast: PropTypes.Requireable<io.flow.internal.v0.enums.ContentTypeCast>;
29001
29497
  export const crossdockTrackingStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CrossdockTrackingStatus>;
29498
+ export const debugAccountingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DebugAccountingTransactionType>;
29002
29499
  export const deliveredDutyOptionMessageType: PropTypes.Requireable<io.flow.internal.v0.enums.DeliveredDutyOptionMessageType>;
29003
29500
  export const deminimisAdjustmentType: PropTypes.Requireable<io.flow.internal.v0.enums.DeminimisAdjustmentType>;
29004
29501
  export const discountRequestOrderEntitlementKey: PropTypes.Requireable<io.flow.internal.v0.enums.DiscountRequestOrderEntitlementKey>;
@@ -29057,6 +29554,7 @@ export const labelGenerationAddressFailureStatus: PropTypes.Requireable<io.flow.
29057
29554
  export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility>;
29058
29555
  export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
29059
29556
  export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
29557
+ export const logisticsResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsResponsibility>;
29060
29558
  export const mainTransactionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MainTransactionStatus>;
29061
29559
  export const manualReviewRuleStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ManualReviewRuleStatus>;
29062
29560
  export const manualTransactionCategory: PropTypes.Requireable<io.flow.internal.v0.enums.ManualTransactionCategory>;
@@ -29118,6 +29616,7 @@ export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.Red
29118
29616
  export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
29119
29617
  export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
29120
29618
  export const reportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportStatus>;
29619
+ export const reportType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportType>;
29121
29620
  export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingScheme>;
29122
29621
  export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
29123
29622
  export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAction>;
@@ -29161,7 +29660,6 @@ export const timeseriesType: PropTypes.Requireable<io.flow.internal.v0.enums.Tim
29161
29660
  export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
29162
29661
  export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
29163
29662
  export const transferMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransferMethod>;
29164
- export const trueUpSurchargeType: PropTypes.Requireable<io.flow.internal.v0.enums.TrueUpSurchargeType>;
29165
29663
  export const trueupTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TrueupTransactionType>;
29166
29664
  export const unclassifiedProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.UnclassifiedProductStatus>;
29167
29665
  export const acceptance: PropTypes.Requireable<io.flow.internal.v0.models.Acceptance>;
@@ -29179,6 +29677,7 @@ export const accountProcessingRates: PropTypes.Requireable<io.flow.internal.v0.m
29179
29677
  export const accountProcessingRatesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRatesDeleted>;
29180
29678
  export const accountProcessingRatesForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRatesForm>;
29181
29679
  export const accountProcessingRatesUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRatesUpserted>;
29680
+ export const accountReference: PropTypes.Requireable<io.flow.internal.v0.models.AccountReference>;
29182
29681
  export const accountSettingLabelFees: PropTypes.Requireable<io.flow.internal.v0.models.AccountSettingLabelFees>;
29183
29682
  export const accountSettings: PropTypes.Requireable<io.flow.internal.v0.models.AccountSettings>;
29184
29683
  export const accountSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountSettingsDeleted>;
@@ -29367,7 +29866,7 @@ export const carrierChargeFile: PropTypes.Requireable<io.flow.internal.v0.models
29367
29866
  export const carrierChargeFileForm: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFileForm>;
29368
29867
  export const carrierChargeFileResult: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFileResult>;
29369
29868
  export const carrierChargeFormLabel: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFormLabel>;
29370
- export const carrierChargeFormReturnToOrigin: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFormReturnToOrigin>;
29869
+ export const carrierChargeFormOther: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFormOther>;
29371
29870
  export const carrierChargeUnits: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeUnits>;
29372
29871
  export const carrierInvoice: PropTypes.Requireable<io.flow.internal.v0.models.CarrierInvoice>;
29373
29872
  export const catalogImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.CatalogImportRequest>;
@@ -29408,11 +29907,16 @@ export const channelForm: PropTypes.Requireable<io.flow.internal.v0.models.Chann
29408
29907
  export const channelMembership: PropTypes.Requireable<io.flow.internal.v0.models.ChannelMembership>;
29409
29908
  export const channelMembershipForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelMembershipForm>;
29410
29909
  export const channelMembershipPutForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelMembershipPutForm>;
29910
+ export const channelOrder: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrder>;
29411
29911
  export const channelOrderAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptance>;
29412
29912
  export const channelOrderAcceptanceDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted>;
29413
29913
  export const channelOrderAcceptanceForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceForm>;
29414
29914
  export const channelOrderAcceptanceReason: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceReason>;
29415
29915
  export const channelOrderAcceptanceUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted>;
29916
+ export const channelOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummary>;
29917
+ export const channelOrderSummaryDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryDeleted>;
29918
+ export const channelOrderSummaryFulfillmentDetails: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails>;
29919
+ export const channelOrderSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryUpserted>;
29416
29920
  export const channelOrganizationShopify: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationShopify>;
29417
29921
  export const channelOrganizationShopifyForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationShopifyForm>;
29418
29922
  export const channelOrganizationShopifyPostForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationShopifyPostForm>;
@@ -29872,7 +30376,9 @@ export const dailyExperimentResultsUpserted: PropTypes.Requireable<io.flow.inter
29872
30376
  export const dailyValue: PropTypes.Requireable<io.flow.internal.v0.models.DailyValue>;
29873
30377
  export const dailyValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueDeleted>;
29874
30378
  export const dailyValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DailyValueUpserted>;
30379
+ export const debugAccountingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DebugAccountingTransaction>;
29875
30380
  export const debugDetails: PropTypes.Requireable<io.flow.internal.v0.models.DebugDetails>;
30381
+ export const debugFulfillmentDelta: PropTypes.Requireable<io.flow.internal.v0.models.DebugFulfillmentDelta>;
29876
30382
  export const debugLabel: PropTypes.Requireable<io.flow.internal.v0.models.DebugLabel>;
29877
30383
  export const debugLabelTransactionSummary: PropTypes.Requireable<io.flow.internal.v0.models.DebugLabelTransactionSummary>;
29878
30384
  export const debugOrder: PropTypes.Requireable<io.flow.internal.v0.models.DebugOrder>;
@@ -30086,15 +30592,17 @@ export const fulfillmentActionForm: PropTypes.Requireable<io.flow.internal.v0.mo
30086
30592
  export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentBusiness>;
30087
30593
  export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
30088
30594
  export const fulfillmentInternalExperienceReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentInternalExperienceReference>;
30089
- export const fulfillmentLine: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentLine>;
30090
30595
  export const fulfillmentOrigin: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentOrigin>;
30091
30596
  export const fulfillmentProofExternalFulfillmentProofReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference>;
30092
30597
  export const fulfillmentProofLabelTrackingReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference>;
30598
+ export const fulfillmentProofOrderCombinedShipmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference>;
30093
30599
  export const fulfillmentProofShippingNotificationReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference>;
30094
30600
  export const fulfillmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentReference>;
30095
30601
  export const fulfillmentShipmentTracking: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipmentTracking>;
30096
30602
  export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSnapshot>;
30097
30603
  export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
30604
+ export const fulfillmentTriggerProof: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentTriggerProof>;
30605
+ export const fulfillmentTriggerTime: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentTriggerTime>;
30098
30606
  export const fxFee: PropTypes.Requireable<io.flow.internal.v0.models.FxFee>;
30099
30607
  export const fxRevenueRecognition: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognition>;
30100
30608
  export const fxRevenueRecognitionAccount: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionAccount>;
@@ -30261,7 +30769,6 @@ export const labProjectSettingsForm: PropTypes.Requireable<io.flow.internal.v0.m
30261
30769
  export const labProjectSettingsFormAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsFormAcceptance>;
30262
30770
  export const labelAliases: PropTypes.Requireable<io.flow.internal.v0.models.LabelAliases>;
30263
30771
  export const labelAssociation: PropTypes.Requireable<io.flow.internal.v0.models.LabelAssociation>;
30264
- export const labelBase: PropTypes.Requireable<io.flow.internal.v0.models.LabelBase>;
30265
30772
  export const labelCancellationError: PropTypes.Requireable<io.flow.internal.v0.models.LabelCancellationError>;
30266
30773
  export const labelCreationJob: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJob>;
30267
30774
  export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobSummary>;
@@ -30281,10 +30788,6 @@ export const labelRequestError: PropTypes.Requireable<io.flow.internal.v0.models
30281
30788
  export const labelRequestErrorDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorDeleted>;
30282
30789
  export const labelRequestErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorUpserted>;
30283
30790
  export const labelSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelSummary>;
30284
- export const labelSurcharge: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurcharge>;
30285
- export const labelSurchargeDetailFlat: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailFlat>;
30286
- export const labelSurchargeDetailPerWeightUnit: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit>;
30287
- export const labelSurchargeDetailPercentage: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeDetailPercentage>;
30288
30791
  export const labelSurchargeForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeForm>;
30289
30792
  export const labelSurchargeSingleForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeSingleForm>;
30290
30793
  export const labelTaxonomy: PropTypes.Requireable<io.flow.internal.v0.models.LabelTaxonomy>;
@@ -30293,7 +30796,6 @@ export const labelTrackingSummaryUpserted: PropTypes.Requireable<io.flow.interna
30293
30796
  export const labelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransaction>;
30294
30797
  export const labelTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransactionDeleted>;
30295
30798
  export const labelTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTransactionUpserted>;
30296
- export const labelUnits: PropTypes.Requireable<io.flow.internal.v0.models.LabelUnits>;
30297
30799
  export const labeledContent: PropTypes.Requireable<io.flow.internal.v0.models.LabeledContent>;
30298
30800
  export const labelsPrediction: PropTypes.Requireable<io.flow.internal.v0.models.LabelsPrediction>;
30299
30801
  export const landedCostItem: PropTypes.Requireable<io.flow.internal.v0.models.LandedCostItem>;
@@ -30386,8 +30888,10 @@ export const marketingGatewayProductDatasourceSummary: PropTypes.Requireable<io.
30386
30888
  export const marketingGatewaySchemaSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySchemaSummary>;
30387
30889
  export const marketingGatewaySupportedChannelDetails: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails>;
30388
30890
  export const marketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrder>;
30891
+ export const merchant: PropTypes.Requireable<io.flow.internal.v0.models.Merchant>;
30389
30892
  export const merchantApplicationSummaries: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummaries>;
30390
30893
  export const merchantApplicationSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantApplicationSummary>;
30894
+ export const merchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantDeleted>;
30391
30895
  export const merchantFees: PropTypes.Requireable<io.flow.internal.v0.models.MerchantFees>;
30392
30896
  export const merchantGuidAssignment: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignment>;
30393
30897
  export const merchantGuidAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentDeleted>;
@@ -30398,12 +30902,13 @@ export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.mod
30398
30902
  export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSubsidies>;
30399
30903
  export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
30400
30904
  export const merchantTransactions: PropTypes.Requireable<io.flow.internal.v0.models.MerchantTransactions>;
30905
+ export const merchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantUpserted>;
30401
30906
  export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
30402
30907
  export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
30403
- export const metadataWeights: PropTypes.Requireable<io.flow.internal.v0.models.MetadataWeights>;
30404
30908
  export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
30405
30909
  export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
30406
30910
  export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
30911
+ export const nonChannelPaymentBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.NonChannelPaymentBankAccount>;
30407
30912
  export const notification: PropTypes.Requireable<io.flow.internal.v0.models.Notification>;
30408
30913
  export const onboardingAuditMessage: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditMessage>;
30409
30914
  export const onboardingAuditReport: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditReport>;
@@ -30596,6 +31101,7 @@ export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.mod
30596
31101
  export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
30597
31102
  export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
30598
31103
  export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
31104
+ export const proofOfPostingOrderCombinedShipment: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment>;
30599
31105
  export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
30600
31106
  export const queuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.QueuedRecord>;
30601
31107
  export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
@@ -30659,7 +31165,10 @@ export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.
30659
31165
  export const registeredExporterTariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData>;
30660
31166
  export const registeredExporterTariffEligibilityForm: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm>;
30661
31167
  export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
31168
+ export const reportAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportAccount>;
31169
+ export const reportBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccount>;
30662
31170
  export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.ReportForm>;
31171
+ export const reportPayment: PropTypes.Requireable<io.flow.internal.v0.models.ReportPayment>;
30663
31172
  export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
30664
31173
  export const reportSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportSummary>;
30665
31174
  export const reportingDetails: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDetails>;
@@ -30671,6 +31180,7 @@ export const restrictionItem: PropTypes.Requireable<io.flow.internal.v0.models.R
30671
31180
  export const restrictionItemRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionItemRequestForm>;
30672
31181
  export const restrictionItemReview: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionItemReview>;
30673
31182
  export const restrictionItemReviewDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionItemReviewDecisionForm>;
31183
+ export const restrictionItemReviewSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionItemReviewSummary>;
30674
31184
  export const restrictionKeywordMetadata: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionKeywordMetadata>;
30675
31185
  export const restrictionKeywords: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionKeywords>;
30676
31186
  export const restrictionOrganization: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionOrganization>;
@@ -30682,6 +31192,7 @@ export const restrictionPending: PropTypes.Requireable<io.flow.internal.v0.model
30682
31192
  export const restrictionProduct: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionProduct>;
30683
31193
  export const restrictionProductDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionProductDecisionForm>;
30684
31194
  export const restrictionProductRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionProductRequestForm>;
31195
+ export const restrictionProductSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionProductSummary>;
30685
31196
  export const restrictionRule: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRule>;
30686
31197
  export const restrictionRuleDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleDecisionForm>;
30687
31198
  export const restrictionRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleForm>;
@@ -30725,7 +31236,6 @@ export const sessionRolloutForm: PropTypes.Requireable<io.flow.internal.v0.model
30725
31236
  export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
30726
31237
  export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
30727
31238
  export const shippedItemValue: PropTypes.Requireable<io.flow.internal.v0.models.ShippedItemValue>;
30728
- export const shipperAccountInfoForm: PropTypes.Requireable<io.flow.internal.v0.models.ShipperAccountInfoForm>;
30729
31239
  export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
30730
31240
  export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
30731
31241
  export const shop: PropTypes.Requireable<io.flow.internal.v0.models.Shop>;
@@ -30755,7 +31265,9 @@ export const shopifyMarketsMetricsUpserted: PropTypes.Requireable<io.flow.intern
30755
31265
  export const shopifyMarketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrder>;
30756
31266
  export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderDeleted>;
30757
31267
  export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
31268
+ export const shopifyMarketsOrderVersion: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderVersion>;
30758
31269
  export const shopifyMarketsOrdersMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics>;
31270
+ export const shopifyMarketsQueuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsQueuedRecord>;
30759
31271
  export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
30760
31272
  export const shopifyMarketsShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopDeleted>;
30761
31273
  export const shopifyMarketsShopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopForm>;
@@ -30818,6 +31330,8 @@ export const shopifyWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.mode
30818
31330
  export const shopifyWebhookForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyWebhookForm>;
30819
31331
  export const shopperFees: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFees>;
30820
31332
  export const shopperFreight: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFreight>;
31333
+ export const shopperLine: PropTypes.Requireable<io.flow.internal.v0.models.ShopperLine>;
31334
+ export const shopperLines: PropTypes.Requireable<io.flow.internal.v0.models.ShopperLines>;
30821
31335
  export const shopperSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopperSummary>;
30822
31336
  export const simpleAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.SimpleAccountReference>;
30823
31337
  export const simplifiedItemLabel: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedItemLabel>;
@@ -30932,7 +31446,7 @@ export const transferTransactionDeletedV2: PropTypes.Requireable<io.flow.interna
30932
31446
  export const transferTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionUpserted>;
30933
31447
  export const transferTransactionUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionUpsertedV2>;
30934
31448
  export const tribe: PropTypes.Requireable<io.flow.internal.v0.models.Tribe>;
30935
- export const trueUpLabelSummary: PropTypes.Requireable<io.flow.internal.v0.models.TrueUpLabelSummary>;
31449
+ export const trueupLabelSummary: PropTypes.Requireable<io.flow.internal.v0.models.TrueupLabelSummary>;
30936
31450
  export const trueupTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TrueupTransaction>;
30937
31451
  export const unassignedMerchantGuid: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuid>;
30938
31452
  export const unassignedMerchantGuidDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuidDeleted>;
@@ -30943,10 +31457,6 @@ export const unclassifiedProductsSummary: PropTypes.Requireable<io.flow.internal
30943
31457
  export const unharmonizedItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.UnharmonizedItemsExport>;
30944
31458
  export const unphrasedProductsExport: PropTypes.Requireable<io.flow.internal.v0.models.UnphrasedProductsExport>;
30945
31459
  export const ups: PropTypes.Requireable<io.flow.internal.v0.models.Ups>;
30946
- export const upsLicense: PropTypes.Requireable<io.flow.internal.v0.models.UpsLicense>;
30947
- export const upsLicenseForm: PropTypes.Requireable<io.flow.internal.v0.models.UpsLicenseForm>;
30948
- export const upsRegistration: PropTypes.Requireable<io.flow.internal.v0.models.UpsRegistration>;
30949
- export const upsRegistrationForm: PropTypes.Requireable<io.flow.internal.v0.models.UpsRegistrationForm>;
30950
31460
  export const usdSpotRate: PropTypes.Requireable<io.flow.internal.v0.models.UsdSpotRate>;
30951
31461
  export const usdSpotRateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UsdSpotRateDeleted>;
30952
31462
  export const usdSpotRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.UsdSpotRateUpserted>;
@@ -30970,8 +31480,6 @@ export const virtualCardTransaction: PropTypes.Requireable<io.flow.internal.v0.m
30970
31480
  export const wasteElectricalAndElectronicEquipmentComplianceData: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData>;
30971
31481
  export const wasteElectricalAndElectronicEquipmentComplianceForm: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm>;
30972
31482
  export const webhook: PropTypes.Requireable<io.flow.internal.v0.models.Webhook>;
30973
- export const weightsDead: PropTypes.Requireable<io.flow.internal.v0.models.WeightsDead>;
30974
- export const weightsDimensional: PropTypes.Requireable<io.flow.internal.v0.models.WeightsDimensional>;
30975
31483
  export const wholeOrderActionForm: PropTypes.Requireable<io.flow.internal.v0.models.WholeOrderActionForm>;
30976
31484
  export const adjustmentAmount: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentAmount>;
30977
31485
  export const adjustmentDetails: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentDetails>;
@@ -31083,6 +31591,7 @@ export const fraudProviderConfiguration: PropTypes.Requireable<io.flow.internal.
31083
31591
  export const fraudProviderConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.unions.FraudProviderConfigurationForm>;
31084
31592
  export const fuelSurchargeServiceFeePutForm: PropTypes.Requireable<io.flow.internal.v0.unions.FuelSurchargeServiceFeePutForm>;
31085
31593
  export const fulfillmentProof: PropTypes.Requireable<io.flow.internal.v0.unions.FulfillmentProof>;
31594
+ export const fulfillmentTrigger: PropTypes.Requireable<io.flow.internal.v0.unions.FulfillmentTrigger>;
31086
31595
  export const generateLoad: PropTypes.Requireable<io.flow.internal.v0.unions.GenerateLoad>;
31087
31596
  export const globalSearchResult: PropTypes.Requireable<io.flow.internal.v0.unions.GlobalSearchResult>;
31088
31597
  export const heapEvent: PropTypes.Requireable<io.flow.internal.v0.unions.HeapEvent>;
@@ -31092,7 +31601,6 @@ export const internalAuthorizationDetails: PropTypes.Requireable<io.flow.interna
31092
31601
  export const internalHarmonizationStatistic: PropTypes.Requireable<io.flow.internal.v0.unions.InternalHarmonizationStatistic>;
31093
31602
  export const internalRefundForm: PropTypes.Requireable<io.flow.internal.v0.unions.InternalRefundForm>;
31094
31603
  export const internalTransactionDetails: PropTypes.Requireable<io.flow.internal.v0.unions.InternalTransactionDetails>;
31095
- export const labelSurchargeDetail: PropTypes.Requireable<io.flow.internal.v0.unions.LabelSurchargeDetail>;
31096
31604
  export const localizableContent: PropTypes.Requireable<io.flow.internal.v0.unions.LocalizableContent>;
31097
31605
  export const marketingGatewayChannelDetails: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayChannelDetails>;
31098
31606
  export const marketingGatewayDistributionChannel: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayDistributionChannel>;