@flowio/types 11.24.90 → 11.24.91

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.
@@ -331,6 +331,11 @@ declare namespace io.flow.billing.accounting.v0.models {
331
331
  readonly total: number;
332
332
  }
333
333
 
334
+ interface OrderReference {
335
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
336
+ readonly number: string;
337
+ }
338
+
334
339
  interface OrderSummary {
335
340
  readonly id: string;
336
341
  readonly organization: io.flow.common.v0.models.OrganizationReference;
@@ -341,6 +346,16 @@ declare namespace io.flow.billing.accounting.v0.models {
341
346
  readonly currency: string;
342
347
  }
343
348
 
349
+ interface PendingOrder {
350
+ readonly id: string;
351
+ readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
352
+ readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
353
+ readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
354
+ readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
355
+ readonly sequence_number: number;
356
+ readonly posting_cutoff: string;
357
+ }
358
+
344
359
  interface RemittanceResponsibility {
345
360
  readonly tax: io.flow.billing.internal.v0.enums.ResponsibleParty;
346
361
  readonly duty: io.flow.billing.internal.v0.enums.ResponsibleParty;
@@ -350,8 +365,8 @@ declare namespace io.flow.billing.accounting.v0.models {
350
365
  readonly id: string;
351
366
  readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
352
367
  readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
353
- readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
354
368
  readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
369
+ readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
355
370
  readonly sequence_number: number;
356
371
  readonly posting_cutoff: string;
357
372
  readonly trigger: io.flow.billing.accounting.v0.unions.ReturnTrigger;
@@ -2534,6 +2549,8 @@ declare namespace io.flow.billing.csv.v0.models {
2534
2549
  readonly fx_fee_description?: string;
2535
2550
  readonly duty_guarantee_fee?: number;
2536
2551
  readonly duty_guarantee_fee_description?: string;
2552
+ readonly negative_balance_fee?: number;
2553
+ readonly negative_balance_fee_description?: string;
2537
2554
  }
2538
2555
 
2539
2556
  interface BillingCsvProcessingTransactionDelivery {
@@ -4103,7 +4120,11 @@ declare namespace io.flow.label.v0.enums {
4103
4120
  | 'flow_simulation_sync'
4104
4121
  | 'autogenerated';
4105
4122
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
4106
- type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
4123
+ type PackageDimensionsSource =
4124
+ | 'provided'
4125
+ | 'item_dimensions_estimated'
4126
+ | 'dimensions_estimated'
4127
+ | 'default_item_dimensions_estimated';
4107
4128
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
4108
4129
  type TrackingNumberType = 'flow' | 'carrier';
4109
4130
  }
@@ -10232,7 +10253,7 @@ declare namespace io.flow.billing.reporting.v0.enums {
10232
10253
  | 'non_channel_payment_bank_account'
10233
10254
  | 'scheduled_payment';
10234
10255
  type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
10235
- type RevenueRecordType = 'sales' | 'refund';
10256
+ type RevenueRecordType = 'pending' | 'sales' | 'refund';
10236
10257
  }
10237
10258
 
10238
10259
  declare namespace io.flow.billing.reporting.v0.models {
@@ -13971,10 +13992,10 @@ declare namespace io.flow.trueup.v0.enums {
13971
13992
  | 'emergency'
13972
13993
  | 'peak'
13973
13994
  | 'address_correction'
13974
- | 'security_ratecard_fee'
13975
- | 'eei_filing_ratecard_fee'
13976
- | 'fixed_ddp_ratecard_fee'
13977
- | 'fixed_currency_conversion_ratecard_fee';
13995
+ | 'security'
13996
+ | 'eei_filing'
13997
+ | 'fixed_ddp'
13998
+ | 'fixed_currency_conversion';
13978
13999
  }
13979
14000
 
13980
14001
  declare namespace io.flow.trueup.v0.models {
@@ -15216,8 +15237,8 @@ declare namespace io.flow.item.v0.models {
15216
15237
  }
15217
15238
 
15218
15239
  declare namespace io.flow.billing.internal.v0.enums {
15240
+ type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
15219
15241
  type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
15220
- type AccountStatus = 'active' | 'inactive';
15221
15242
  type AccountType = 'channel' | 'organization';
15222
15243
  type AdjustmentTransactionType = 'adjustment' | 'reversal';
15223
15244
  type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
@@ -15267,7 +15288,6 @@ declare namespace io.flow.billing.internal.v0.enums {
15267
15288
  | 'trueup'
15268
15289
  | 'carrier_charge'
15269
15290
  | 'all';
15270
- type BillingStatementBatchFileKey = 'summary';
15271
15291
  type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
15272
15292
  type BillingTransactionType =
15273
15293
  | 'manual'
@@ -15374,6 +15394,17 @@ declare namespace io.flow.billing.internal.v0.models {
15374
15394
  readonly country: string;
15375
15395
  }
15376
15396
 
15397
+ interface AccountPaymentHold {
15398
+ readonly id: string;
15399
+ readonly account: io.flow.billing.internal.v0.models.SimpleAccountReference;
15400
+ readonly reason: io.flow.billing.internal.v0.enums.AccountPaymentHoldReason;
15401
+ }
15402
+
15403
+ interface AccountPaymentHoldForm {
15404
+ readonly account_id: string;
15405
+ readonly reason: io.flow.billing.internal.v0.enums.AccountPaymentHoldReason;
15406
+ }
15407
+
15377
15408
  interface AccountProcessingRateForm {
15378
15409
  readonly query: string;
15379
15410
  readonly capture: number;
@@ -15608,20 +15639,6 @@ declare namespace io.flow.billing.internal.v0.models {
15608
15639
  readonly url: string;
15609
15640
  }
15610
15641
 
15611
- interface BillingStatementBatch {
15612
- readonly id: string;
15613
- }
15614
-
15615
- interface BillingStatementBatchReference {
15616
- readonly id: string;
15617
- }
15618
-
15619
- interface BillingStatementBatchStatement {
15620
- readonly id: string;
15621
- readonly batch: io.flow.billing.internal.v0.models.BillingStatementBatchReference;
15622
- readonly statement: io.flow.billing.internal.v0.models.BillingStatementReference;
15623
- }
15624
-
15625
15642
  interface BillingStatementReference {
15626
15643
  readonly id: string;
15627
15644
  }
@@ -15695,7 +15712,6 @@ declare namespace io.flow.billing.internal.v0.models {
15695
15712
  readonly channel: io.flow.common.v0.models.ChannelReference;
15696
15713
  readonly id: string;
15697
15714
  readonly key?: string;
15698
- readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
15699
15715
  readonly origin?: io.flow.billing.internal.v0.models.AccountOrigin;
15700
15716
  readonly currency: string;
15701
15717
  readonly updated_at: string;
@@ -15886,6 +15902,7 @@ declare namespace io.flow.billing.internal.v0.models {
15886
15902
  readonly fx?: io.flow.billing.internal.v0.models.Fee;
15887
15903
  readonly duty_guarantee?: io.flow.billing.internal.v0.models.Fee;
15888
15904
  readonly transfer?: io.flow.billing.internal.v0.models.Fee;
15905
+ readonly negative_balance?: io.flow.billing.internal.v0.models.Fee;
15889
15906
  }
15890
15907
 
15891
15908
  interface FinanceBankAccount {
@@ -15912,7 +15929,6 @@ declare namespace io.flow.billing.internal.v0.models {
15912
15929
  readonly source: io.flow.billing.internal.v0.models.AccountSource;
15913
15930
  readonly id: string;
15914
15931
  readonly key?: string;
15915
- readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
15916
15932
  readonly origin?: io.flow.billing.internal.v0.models.AccountOrigin;
15917
15933
  readonly currency: string;
15918
15934
  readonly updated_at: string;
@@ -15927,10 +15943,6 @@ declare namespace io.flow.billing.internal.v0.models {
15927
15943
  readonly created_at: string;
15928
15944
  }
15929
15945
 
15930
- interface FlowAccountStatusForm {
15931
- readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
15932
- }
15933
-
15934
15946
  interface FlowBillingStatement {
15935
15947
  readonly id: string;
15936
15948
  readonly account: io.flow.billing.v0.models.AccountReference;
@@ -16109,7 +16121,6 @@ declare namespace io.flow.billing.internal.v0.models {
16109
16121
  readonly organization: io.flow.common.v0.models.OrganizationReference;
16110
16122
  readonly id: string;
16111
16123
  readonly key?: string;
16112
- readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
16113
16124
  readonly origin?: io.flow.billing.internal.v0.models.AccountOrigin;
16114
16125
  readonly currency: string;
16115
16126
  readonly updated_at: string;
@@ -18662,8 +18673,8 @@ declare namespace io.flow.billing.bank.account.v0.unions {
18662
18673
  }
18663
18674
 
18664
18675
  declare namespace io.flow.internal.v0.enums {
18676
+ type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
18665
18677
  type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
18666
- type AccountStatus = 'active' | 'inactive';
18667
18678
  type AccountType = 'channel' | 'organization';
18668
18679
  type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
18669
18680
  type AdjustmentTransactionType = 'adjustment' | 'reversal';
@@ -18754,6 +18765,8 @@ declare namespace io.flow.internal.v0.enums {
18754
18765
  | 'refund_transactions_ignored_previously_processed_count'
18755
18766
  | 'refund_queued_count'
18756
18767
  | 'refund_transactions_total'
18768
+ | 'refund_transactions_succeeded_then_failed_count'
18769
+ | 'refund_transactions_succeeded_then_failed_total'
18757
18770
  | 'reversal_order_cancellations_transactions_count'
18758
18771
  | 'reversal_order_cancellations_transactions_total'
18759
18772
  | 'reversal_external_fulfillment_transactions_count'
@@ -18780,8 +18793,8 @@ declare namespace io.flow.internal.v0.enums {
18780
18793
  | 'queued_refund_unprocessed_count'
18781
18794
  | 'queued_label_invoice_request_unprocessed_count'
18782
18795
  | 'queued_other_unprocessed_count'
18783
- | 'queued_record_snooze_count'
18784
- | 'queued_record_snooze_ending_in_48_hours_count'
18796
+ | 'task_snooze_count'
18797
+ | 'task_snooze_ending_in_48_hours_count'
18785
18798
  | 'payouts_scheduled_count'
18786
18799
  | 'payouts_scheduled_total'
18787
18800
  | 'payouts_sent_count'
@@ -18806,9 +18819,13 @@ declare namespace io.flow.internal.v0.enums {
18806
18819
  | 'negative_balance_total_with_order_in_past_30_days'
18807
18820
  | 'negative_balance_total_without_order_in_past_30_days'
18808
18821
  | 'negative_balance_single_account_max'
18809
- | 'inactive_accounts_count'
18810
- | 'inactive_account_pending_payment_promise_count'
18811
- | 'inactive_account_pending_payment_promise_total';
18822
+ | 'negative_balance_fee_total'
18823
+ | 'accounts_with_payment_holds_count'
18824
+ | 'accounts_with_payment_holds_pending_payment_promise_count'
18825
+ | 'accounts_with_payment_holds_pending_payment_promise_total'
18826
+ | 'accounts_with_final_statements_count'
18827
+ | 'accounts_with_final_statements_pending_transaction_count'
18828
+ | 'accounts_with_final_statements_pending_transaction_total';
18812
18829
  type BillingStatementAttachmentKey =
18813
18830
  | 'invoice'
18814
18831
  | 'statement'
@@ -18827,7 +18844,6 @@ declare namespace io.flow.internal.v0.enums {
18827
18844
  | 'trueup'
18828
18845
  | 'carrier_charge'
18829
18846
  | 'all';
18830
- type BillingStatementBatchFileKey = 'summary';
18831
18847
  type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
18832
18848
  type BillingTransactionType =
18833
18849
  | 'manual'
@@ -18935,7 +18951,10 @@ declare namespace io.flow.internal.v0.enums {
18935
18951
  | 'oversize_piece'
18936
18952
  | 'incoterm_dap'
18937
18953
  | 'emergency_situation'
18938
- | 'remote_area_delivery';
18954
+ | 'remote_area_delivery'
18955
+ | 'customs_clearance_surcharge'
18956
+ | 'security_surcharge'
18957
+ | 'duties_fx_surcharge';
18939
18958
  type ChargebackPaymentStatus = 'captured' | 'refunded';
18940
18959
  type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
18941
18960
  type CheckoutAddAuthorizationErrorCode =
@@ -19282,6 +19301,8 @@ declare namespace io.flow.internal.v0.enums {
19282
19301
  | 'adyen_refund_upserted'
19283
19302
  | 'index_assignment_upserted'
19284
19303
  | 'index_assignment_deleted'
19304
+ | 'fulfillment_upserted'
19305
+ | 'fulfillment_deleted'
19285
19306
  | 'merchant_upserted'
19286
19307
  | 'merchant_deleted'
19287
19308
  | 'account_upserted'
@@ -19416,10 +19437,6 @@ declare namespace io.flow.internal.v0.enums {
19416
19437
  | 'billing_organization_processing_rates_deleted'
19417
19438
  | 'billing_organization_settings_upserted'
19418
19439
  | 'billing_organization_settings_deleted'
19419
- | 'billing_statement_batch_upserted'
19420
- | 'billing_statement_batch_deleted'
19421
- | 'billing_statement_batch_statement_upserted'
19422
- | 'billing_statement_batch_statement_deleted'
19423
19440
  | 'standalone_attachment_upserted'
19424
19441
  | 'standalone_attachment_deleted'
19425
19442
  | 'platform_fee_change_upserted'
@@ -19480,6 +19497,10 @@ declare namespace io.flow.internal.v0.enums {
19480
19497
  | 'item_form_import_request'
19481
19498
  | 'label_request_error_upserted'
19482
19499
  | 'label_request_error_deleted'
19500
+ | 'order_validation_failure_upserted'
19501
+ | 'order_validation_failure_deleted'
19502
+ | 'order_validation_upserted'
19503
+ | 'order_validation_deleted'
19483
19504
  | 'label_tracking_summary_upserted'
19484
19505
  | 'label_tracking_summary_deleted'
19485
19506
  | 'localized_item_upserted_v2'
@@ -19612,6 +19633,8 @@ declare namespace io.flow.internal.v0.enums {
19612
19633
  | 'shruti_demo_item_deleted'
19613
19634
  | 'tam_item_upserted'
19614
19635
  | 'tam_item_deleted'
19636
+ | 'tracking_processing_error_upserted'
19637
+ | 'tracking_processing_error_deleted'
19615
19638
  | 'tracking_label_event_upserted_v2'
19616
19639
  | 'tracking_label_event_deleted_v2'
19617
19640
  | 'tracking_label_upserted'
@@ -19958,7 +19981,7 @@ declare namespace io.flow.internal.v0.enums {
19958
19981
  | 'escalated'
19959
19982
  | 'accepted'
19960
19983
  | 'restricted';
19961
- type RevenueRecordType = 'sales' | 'refund';
19984
+ type RevenueRecordType = 'pending' | 'sales' | 'refund';
19962
19985
  type RiskCheck = 'three_d_secure';
19963
19986
  type RiskEvaluation =
19964
19987
  | 'Pending'
@@ -20041,7 +20064,7 @@ declare namespace io.flow.internal.v0.enums {
20041
20064
  | 'do_nothing';
20042
20065
  type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
20043
20066
  type SnoozeNextActionWith = 'customer_service' | 'engineering';
20044
- type SnoozeSourceType = 'queued_record';
20067
+ type SnoozeSourceType = 'task';
20045
20068
  type StatementStatus =
20046
20069
  | 'created'
20047
20070
  | 'no_transactions'
@@ -20074,6 +20097,13 @@ declare namespace io.flow.internal.v0.enums {
20074
20097
  type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
20075
20098
  type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
20076
20099
  type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
20100
+ type TrackingProcessingFailureClassification =
20101
+ | 'tracking_expired'
20102
+ | 'expired_tracking_number_new_event'
20103
+ | 'new_tracking_number_expired_event'
20104
+ | 'origin_mismatch'
20105
+ | 'destination_mismatch'
20106
+ | 'other';
20077
20107
  type TransactionPostingMethod = 'time' | 'proof';
20078
20108
  type TransferMethod = 'ach';
20079
20109
  type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
@@ -20167,6 +20197,17 @@ declare namespace io.flow.internal.v0.models {
20167
20197
  readonly country: string;
20168
20198
  }
20169
20199
 
20200
+ interface AccountPaymentHold {
20201
+ readonly id: string;
20202
+ readonly account: io.flow.internal.v0.models.SimpleAccountReference;
20203
+ readonly reason: io.flow.internal.v0.enums.AccountPaymentHoldReason;
20204
+ }
20205
+
20206
+ interface AccountPaymentHoldForm {
20207
+ readonly account_id: string;
20208
+ readonly reason: io.flow.internal.v0.enums.AccountPaymentHoldReason;
20209
+ }
20210
+
20170
20211
  interface AccountProcessingRateForm {
20171
20212
  readonly query: string;
20172
20213
  readonly capture: number;
@@ -20306,6 +20347,12 @@ declare namespace io.flow.internal.v0.models {
20306
20347
  readonly account: io.flow.internal.v0.models.FlowAccount;
20307
20348
  }
20308
20349
 
20350
+ interface AccountingFulfillmentMetadata {
20351
+ readonly discriminator: 'accounting_fulfillment_metadata';
20352
+ readonly order: io.flow.internal.v0.models.OrderReference;
20353
+ readonly proof: io.flow.internal.v0.unions.FulfillmentProof;
20354
+ }
20355
+
20309
20356
  interface ActionQuantity {
20310
20357
  readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
20311
20358
  readonly quantity: number;
@@ -21073,48 +21120,6 @@ declare namespace io.flow.internal.v0.models {
21073
21120
  readonly url: string;
21074
21121
  }
21075
21122
 
21076
- interface BillingStatementBatch {
21077
- readonly id: string;
21078
- }
21079
-
21080
- interface BillingStatementBatchDeleted {
21081
- readonly discriminator: 'billing_statement_batch_deleted';
21082
- readonly event_id: string;
21083
- readonly timestamp: string;
21084
- readonly id: string;
21085
- }
21086
-
21087
- interface BillingStatementBatchReference {
21088
- readonly id: string;
21089
- }
21090
-
21091
- interface BillingStatementBatchStatement {
21092
- readonly id: string;
21093
- readonly batch: io.flow.internal.v0.models.BillingStatementBatchReference;
21094
- readonly statement: io.flow.internal.v0.models.BillingStatementReference;
21095
- }
21096
-
21097
- interface BillingStatementBatchStatementDeleted {
21098
- readonly discriminator: 'billing_statement_batch_statement_deleted';
21099
- readonly event_id: string;
21100
- readonly timestamp: string;
21101
- readonly id: string;
21102
- }
21103
-
21104
- interface BillingStatementBatchStatementUpserted {
21105
- readonly discriminator: 'billing_statement_batch_statement_upserted';
21106
- readonly event_id: string;
21107
- readonly timestamp: string;
21108
- readonly billing_statement_batch_statement: io.flow.internal.v0.models.BillingStatementBatchStatement;
21109
- }
21110
-
21111
- interface BillingStatementBatchUpserted {
21112
- readonly discriminator: 'billing_statement_batch_upserted';
21113
- readonly event_id: string;
21114
- readonly timestamp: string;
21115
- readonly billing_statement_batch: io.flow.internal.v0.models.BillingStatementBatch;
21116
- }
21117
-
21118
21123
  interface BillingStatementDeleted {
21119
21124
  readonly discriminator: 'billing_statement_deleted';
21120
21125
  readonly event_id: string;
@@ -21675,6 +21680,7 @@ declare namespace io.flow.internal.v0.models {
21675
21680
  interface CarrierChargeFormOther {
21676
21681
  readonly discriminator: 'other';
21677
21682
  readonly id: string;
21683
+ readonly label_invoice_request_id?: string;
21678
21684
  readonly reason: io.flow.trueup.v0.enums.CarrierChargeReason;
21679
21685
  readonly organization_id: string;
21680
21686
  readonly order_number: string;
@@ -21847,7 +21853,6 @@ declare namespace io.flow.internal.v0.models {
21847
21853
  readonly channel: io.flow.common.v0.models.ChannelReference;
21848
21854
  readonly id: string;
21849
21855
  readonly key?: string;
21850
- readonly status: io.flow.internal.v0.enums.AccountStatus;
21851
21856
  readonly origin?: io.flow.internal.v0.models.AccountOrigin;
21852
21857
  readonly currency: string;
21853
21858
  readonly updated_at: string;
@@ -26329,7 +26334,6 @@ declare namespace io.flow.internal.v0.models {
26329
26334
  readonly source: io.flow.internal.v0.models.AccountSource;
26330
26335
  readonly id: string;
26331
26336
  readonly key?: string;
26332
- readonly status: io.flow.internal.v0.enums.AccountStatus;
26333
26337
  readonly origin?: io.flow.internal.v0.models.AccountOrigin;
26334
26338
  readonly currency: string;
26335
26339
  readonly updated_at: string;
@@ -26344,10 +26348,6 @@ declare namespace io.flow.internal.v0.models {
26344
26348
  readonly created_at: string;
26345
26349
  }
26346
26350
 
26347
- interface FlowAccountStatusForm {
26348
- readonly status: io.flow.internal.v0.enums.AccountStatus;
26349
- }
26350
-
26351
26351
  interface FlowBillingStatement {
26352
26352
  readonly id: string;
26353
26353
  readonly account: io.flow.billing.v0.models.AccountReference;
@@ -26648,6 +26648,14 @@ declare namespace io.flow.internal.v0.models {
26648
26648
  readonly cancelled_lines: io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
26649
26649
  }
26650
26650
 
26651
+ interface FulfillmentDeleted {
26652
+ readonly discriminator: 'fulfillment_deleted';
26653
+ readonly event_id: string;
26654
+ readonly timestamp: string;
26655
+ readonly organization: string;
26656
+ readonly id: string;
26657
+ }
26658
+
26651
26659
  interface FulfillmentInternalExperienceReference {
26652
26660
  readonly id: string;
26653
26661
  readonly key: string;
@@ -26747,6 +26755,14 @@ declare namespace io.flow.internal.v0.models {
26747
26755
  readonly placeholder?: string;
26748
26756
  }
26749
26757
 
26758
+ interface FulfillmentUpserted {
26759
+ readonly discriminator: 'fulfillment_upserted';
26760
+ readonly event_id: string;
26761
+ readonly timestamp: string;
26762
+ readonly organization: string;
26763
+ readonly fulfillment: io.flow.internal.v0.models.Fulfillment;
26764
+ }
26765
+
26750
26766
  interface FxFee {
26751
26767
  readonly base: io.flow.common.v0.models.Money;
26752
26768
  readonly local: io.flow.common.v0.models.Money;
@@ -28407,6 +28423,10 @@ declare namespace io.flow.internal.v0.models {
28407
28423
  readonly emergency?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
28408
28424
  readonly peak?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
28409
28425
  readonly address_correction?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
28426
+ readonly security?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
28427
+ readonly eei_filing?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
28428
+ readonly fixed_ddp?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
28429
+ readonly fixed_currency_conversion?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
28410
28430
  }
28411
28431
 
28412
28432
  interface LabelSurchargeSingleForm {
@@ -29674,6 +29694,11 @@ declare namespace io.flow.internal.v0.models {
29674
29694
  readonly data: io.flow.internal.v0.models.OrderRatesDataV3;
29675
29695
  }
29676
29696
 
29697
+ interface OrderReference {
29698
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
29699
+ readonly number: string;
29700
+ }
29701
+
29677
29702
  interface OrderRevenueRegionChart {
29678
29703
  readonly total: io.flow.common.v0.models.Price;
29679
29704
  readonly period: io.flow.common.v0.models.DatetimeRange;
@@ -29764,6 +29789,16 @@ declare namespace io.flow.internal.v0.models {
29764
29789
  readonly service_id: string;
29765
29790
  readonly status: io.flow.internal.v0.enums.OrderValidationStatus;
29766
29791
  readonly updated_by_user_id: string;
29792
+ readonly created_at: string;
29793
+ readonly resolved_at?: string;
29794
+ }
29795
+
29796
+ interface OrderValidationDeleted {
29797
+ readonly discriminator: 'order_validation_deleted';
29798
+ readonly event_id: string;
29799
+ readonly timestamp: string;
29800
+ readonly organization: string;
29801
+ readonly id: string;
29767
29802
  }
29768
29803
 
29769
29804
  interface OrderValidationError {
@@ -29786,6 +29821,14 @@ declare namespace io.flow.internal.v0.models {
29786
29821
  readonly errors: string[];
29787
29822
  }
29788
29823
 
29824
+ interface OrderValidationFailureDeleted {
29825
+ readonly discriminator: 'order_validation_failure_deleted';
29826
+ readonly event_id: string;
29827
+ readonly timestamp: string;
29828
+ readonly organization: string;
29829
+ readonly id: string;
29830
+ }
29831
+
29789
29832
  interface OrderValidationFailureSummary {
29790
29833
  readonly organization_id: string;
29791
29834
  readonly order_number: string;
@@ -29796,11 +29839,26 @@ declare namespace io.flow.internal.v0.models {
29796
29839
  readonly created_at: string;
29797
29840
  }
29798
29841
 
29842
+ interface OrderValidationFailureUpserted {
29843
+ readonly discriminator: 'order_validation_failure_upserted';
29844
+ readonly event_id: string;
29845
+ readonly timestamp: string;
29846
+ readonly organization: string;
29847
+ readonly order_validation_failure: io.flow.internal.v0.models.OrderValidationFailure;
29848
+ }
29849
+
29850
+ interface OrderValidationUpserted {
29851
+ readonly discriminator: 'order_validation_upserted';
29852
+ readonly event_id: string;
29853
+ readonly timestamp: string;
29854
+ readonly organization: string;
29855
+ readonly order_validation: io.flow.internal.v0.models.OrderValidation;
29856
+ }
29857
+
29799
29858
  interface OrganizationAccount {
29800
29859
  readonly organization: io.flow.common.v0.models.OrganizationReference;
29801
29860
  readonly id: string;
29802
29861
  readonly key?: string;
29803
- readonly status: io.flow.internal.v0.enums.AccountStatus;
29804
29862
  readonly origin?: io.flow.internal.v0.models.AccountOrigin;
29805
29863
  readonly currency: string;
29806
29864
  readonly updated_at: string;
@@ -30556,6 +30614,16 @@ declare namespace io.flow.internal.v0.models {
30556
30614
  readonly statement: io.flow.internal.v0.models.BillingStatementReference;
30557
30615
  }
30558
30616
 
30617
+ interface PendingOrder {
30618
+ readonly id: string;
30619
+ readonly order: io.flow.internal.v0.models.OrderSummary;
30620
+ readonly shopper: io.flow.internal.v0.models.ShopperSummary;
30621
+ readonly merchant: io.flow.internal.v0.models.MerchantSummary;
30622
+ readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
30623
+ readonly sequence_number: number;
30624
+ readonly posting_cutoff: string;
30625
+ }
30626
+
30559
30627
  interface PhraseClassified {
30560
30628
  readonly event_id: string;
30561
30629
  readonly timestamp: string;
@@ -30890,20 +30958,6 @@ declare namespace io.flow.internal.v0.models {
30890
30958
  readonly shipping_notification_id: string;
30891
30959
  }
30892
30960
 
30893
- interface QueuedRecord {
30894
- readonly type: string;
30895
- readonly type_id: string;
30896
- readonly source_type?: string;
30897
- readonly source_id?: string;
30898
- readonly environment?: string;
30899
- readonly created_at: string;
30900
- readonly num_attempts: number;
30901
- readonly next_attempt_at: string;
30902
- readonly errors?: string[];
30903
- readonly stacktrace?: string;
30904
- readonly snooze_id?: string;
30905
- }
30906
-
30907
30961
  interface Quote {
30908
30962
  readonly id: string;
30909
30963
  readonly base: string;
@@ -31921,8 +31975,8 @@ declare namespace io.flow.internal.v0.models {
31921
31975
  readonly id: string;
31922
31976
  readonly order: io.flow.internal.v0.models.OrderSummary;
31923
31977
  readonly shopper: io.flow.internal.v0.models.ShopperSummary;
31924
- readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
31925
31978
  readonly merchant: io.flow.internal.v0.models.MerchantSummary;
31979
+ readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
31926
31980
  readonly sequence_number: number;
31927
31981
  readonly posting_cutoff: string;
31928
31982
  readonly trigger: io.flow.internal.v0.unions.ReturnTrigger;
@@ -33019,6 +33073,11 @@ declare namespace io.flow.internal.v0.models {
33019
33073
  readonly attachment: io.flow.internal.v0.models.StandaloneAttachment;
33020
33074
  }
33021
33075
 
33076
+ interface StatementCreationMetadata {
33077
+ readonly discriminator: 'statement_creation_metadata';
33078
+ readonly period: io.flow.common.v0.models.DatetimeRange;
33079
+ }
33080
+
33022
33081
  interface StoreConnection {
33023
33082
  readonly organization?: io.flow.common.v0.models.OrganizationReference;
33024
33083
  readonly id: string;
@@ -33402,6 +33461,20 @@ declare namespace io.flow.internal.v0.models {
33402
33461
  readonly data: io.flow.internal.v0.unions.TariffEligibilityData;
33403
33462
  }
33404
33463
 
33464
+ interface Task {
33465
+ readonly type: string;
33466
+ readonly type_id: string;
33467
+ readonly source_type?: string;
33468
+ readonly source_id?: string;
33469
+ readonly environment?: string;
33470
+ readonly created_at: string;
33471
+ readonly num_attempts: number;
33472
+ readonly next_attempt_at: string;
33473
+ readonly errors?: string[];
33474
+ readonly stacktrace?: string;
33475
+ readonly snooze_id?: string;
33476
+ }
33477
+
33405
33478
  interface TaskCount {
33406
33479
  readonly discriminator: string;
33407
33480
  readonly count: number;
@@ -33703,6 +33776,31 @@ declare namespace io.flow.internal.v0.models {
33703
33776
  readonly tracking_label: io.flow.internal.v0.models.ExportTrackingLabel;
33704
33777
  }
33705
33778
 
33779
+ interface TrackingProcessingError {
33780
+ readonly id: string;
33781
+ readonly aftership_webhook_id: string;
33782
+ readonly carrier_id: string;
33783
+ readonly carrier_tracking_number: string;
33784
+ readonly organization_id?: string;
33785
+ readonly tracking_label_id?: string;
33786
+ readonly errors: string[];
33787
+ readonly failure_classification: io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
33788
+ }
33789
+
33790
+ interface TrackingProcessingErrorDeleted {
33791
+ readonly discriminator: 'tracking_processing_error_deleted';
33792
+ readonly event_id: string;
33793
+ readonly timestamp: string;
33794
+ readonly id: string;
33795
+ }
33796
+
33797
+ interface TrackingProcessingErrorUpserted {
33798
+ readonly discriminator: 'tracking_processing_error_upserted';
33799
+ readonly event_id: string;
33800
+ readonly timestamp: string;
33801
+ readonly tracking_processing_error: io.flow.internal.v0.models.TrackingProcessingError;
33802
+ }
33803
+
33706
33804
  interface TrackingRequest {
33707
33805
  readonly carrier: string;
33708
33806
  readonly carrier_tracking_number: string;
@@ -34546,6 +34644,8 @@ declare namespace io.flow.internal.v0.unions {
34546
34644
  | io.flow.internal.v0.models.AdyenRefundUpserted
34547
34645
  | io.flow.internal.v0.models.IndexAssignmentUpserted
34548
34646
  | io.flow.internal.v0.models.IndexAssignmentDeleted
34647
+ | io.flow.internal.v0.models.FulfillmentUpserted
34648
+ | io.flow.internal.v0.models.FulfillmentDeleted
34549
34649
  | io.flow.internal.v0.models.MerchantUpserted
34550
34650
  | io.flow.internal.v0.models.MerchantDeleted
34551
34651
  | io.flow.internal.v0.models.AccountUpserted
@@ -34680,10 +34780,6 @@ declare namespace io.flow.internal.v0.unions {
34680
34780
  | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted
34681
34781
  | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted
34682
34782
  | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted
34683
- | io.flow.internal.v0.models.BillingStatementBatchUpserted
34684
- | io.flow.internal.v0.models.BillingStatementBatchDeleted
34685
- | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted
34686
- | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted
34687
34783
  | io.flow.internal.v0.models.StandaloneAttachmentUpserted
34688
34784
  | io.flow.internal.v0.models.StandaloneAttachmentDeleted
34689
34785
  | io.flow.internal.v0.models.PlatformFeeChangeUpserted
@@ -34744,6 +34840,10 @@ declare namespace io.flow.internal.v0.unions {
34744
34840
  | io.flow.internal.v0.models.ItemFormImportRequest
34745
34841
  | io.flow.internal.v0.models.LabelRequestErrorUpserted
34746
34842
  | io.flow.internal.v0.models.LabelRequestErrorDeleted
34843
+ | io.flow.internal.v0.models.OrderValidationFailureUpserted
34844
+ | io.flow.internal.v0.models.OrderValidationFailureDeleted
34845
+ | io.flow.internal.v0.models.OrderValidationUpserted
34846
+ | io.flow.internal.v0.models.OrderValidationDeleted
34747
34847
  | io.flow.internal.v0.models.LabelTrackingSummaryUpserted
34748
34848
  | io.flow.internal.v0.models.LabelTrackingSummaryDeleted
34749
34849
  | io.flow.internal.v0.models.LocalizedItemUpsertedV2
@@ -34876,6 +34976,8 @@ declare namespace io.flow.internal.v0.unions {
34876
34976
  | io.flow.internal.v0.models.ShrutiDemoItemDeleted
34877
34977
  | io.flow.internal.v0.models.TamItemUpserted
34878
34978
  | io.flow.internal.v0.models.TamItemDeleted
34979
+ | io.flow.internal.v0.models.TrackingProcessingErrorUpserted
34980
+ | io.flow.internal.v0.models.TrackingProcessingErrorDeleted
34879
34981
  | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
34880
34982
  | io.flow.internal.v0.models.TrackingLabelEventDeletedV2
34881
34983
  | io.flow.internal.v0.models.TrackingLabelUpserted
@@ -35125,6 +35227,9 @@ declare namespace io.flow.internal.v0.unions {
35125
35227
  | io.flow.internal.v0.models.TaskSummarizeCode
35126
35228
  | io.flow.internal.v0.models.TaskItemUpserted
35127
35229
  | io.flow.internal.v0.models.TaskImport;
35230
+ type TaskMetadata =
35231
+ | io.flow.internal.v0.models.StatementCreationMetadata
35232
+ | io.flow.internal.v0.models.AccountingFulfillmentMetadata;
35128
35233
  type TaxAmount =
35129
35234
  | io.flow.internal.v0.models.CalculatedTaxAmount
35130
35235
  | io.flow.internal.v0.models.NoCalculatedTaxAmount;
@@ -35177,6 +35282,11 @@ export type AccountDepositRuleForm =
35177
35282
  export type AccountOrdersExportRequest =
35178
35283
  io.flow.internal.v0.models.AccountOrdersExportRequest;
35179
35284
  export type AccountOrigin = io.flow.internal.v0.models.AccountOrigin;
35285
+ export type AccountPaymentHold = io.flow.internal.v0.models.AccountPaymentHold;
35286
+ export type AccountPaymentHoldForm =
35287
+ io.flow.internal.v0.models.AccountPaymentHoldForm;
35288
+ export type AccountPaymentHoldReason =
35289
+ io.flow.internal.v0.enums.AccountPaymentHoldReason;
35180
35290
  export type AccountProcessingRateForm =
35181
35291
  io.flow.internal.v0.models.AccountProcessingRateForm;
35182
35292
  export type AccountProcessingRates =
@@ -35199,13 +35309,14 @@ export type AccountSettingsUpserted =
35199
35309
  io.flow.internal.v0.models.AccountSettingsUpserted;
35200
35310
  export type AccountSource = io.flow.internal.v0.models.AccountSource;
35201
35311
  export type AccountStatistics = io.flow.internal.v0.models.AccountStatistics;
35202
- export type AccountStatus = io.flow.internal.v0.enums.AccountStatus;
35203
35312
  export type AccountSummary = io.flow.internal.v0.models.AccountSummary;
35204
35313
  export type AccountTransactionsExportRequest =
35205
35314
  io.flow.internal.v0.models.AccountTransactionsExportRequest;
35206
35315
  export type AccountType = io.flow.internal.v0.enums.AccountType;
35207
35316
  export type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
35208
35317
  export type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsertedV2;
35318
+ export type AccountingFulfillmentMetadata =
35319
+ io.flow.internal.v0.models.AccountingFulfillmentMetadata;
35209
35320
  export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
35210
35321
  export type AdditionalImportTax =
35211
35322
  io.flow.internal.v0.models.AdditionalImportTax;
@@ -35424,22 +35535,6 @@ export type BillingStatementAttachment =
35424
35535
  io.flow.internal.v0.models.BillingStatementAttachment;
35425
35536
  export type BillingStatementAttachmentKey =
35426
35537
  io.flow.internal.v0.enums.BillingStatementAttachmentKey;
35427
- export type BillingStatementBatch =
35428
- io.flow.internal.v0.models.BillingStatementBatch;
35429
- export type BillingStatementBatchDeleted =
35430
- io.flow.internal.v0.models.BillingStatementBatchDeleted;
35431
- export type BillingStatementBatchFileKey =
35432
- io.flow.internal.v0.enums.BillingStatementBatchFileKey;
35433
- export type BillingStatementBatchReference =
35434
- io.flow.internal.v0.models.BillingStatementBatchReference;
35435
- export type BillingStatementBatchStatement =
35436
- io.flow.internal.v0.models.BillingStatementBatchStatement;
35437
- export type BillingStatementBatchStatementDeleted =
35438
- io.flow.internal.v0.models.BillingStatementBatchStatementDeleted;
35439
- export type BillingStatementBatchStatementUpserted =
35440
- io.flow.internal.v0.models.BillingStatementBatchStatementUpserted;
35441
- export type BillingStatementBatchUpserted =
35442
- io.flow.internal.v0.models.BillingStatementBatchUpserted;
35443
35538
  export type BillingStatementDeleted =
35444
35539
  io.flow.internal.v0.models.BillingStatementDeleted;
35445
35540
  export type BillingStatementReference =
@@ -37257,8 +37352,6 @@ export type FiservMerchantModificationForm =
37257
37352
  export type FiservMerchantPutForm =
37258
37353
  io.flow.internal.v0.models.FiservMerchantPutForm;
37259
37354
  export type FlowAccount = io.flow.internal.v0.models.FlowAccount;
37260
- export type FlowAccountStatusForm =
37261
- io.flow.internal.v0.models.FlowAccountStatusForm;
37262
37355
  export type FlowApp = io.flow.internal.v0.enums.FlowApp;
37263
37356
  export type FlowBillingStatement =
37264
37357
  io.flow.internal.v0.models.FlowBillingStatement;
@@ -37334,6 +37427,7 @@ export type FulfillmentActionForm =
37334
37427
  export type FulfillmentBusiness =
37335
37428
  io.flow.internal.v0.models.FulfillmentBusiness;
37336
37429
  export type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
37430
+ export type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
37337
37431
  export type FulfillmentInternalExperienceReference =
37338
37432
  io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
37339
37433
  export type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
@@ -37361,6 +37455,8 @@ export type FulfillmentTriggerProof =
37361
37455
  io.flow.internal.v0.models.FulfillmentTriggerProof;
37362
37456
  export type FulfillmentTriggerTime =
37363
37457
  io.flow.internal.v0.models.FulfillmentTriggerTime;
37458
+ export type FulfillmentUpserted =
37459
+ io.flow.internal.v0.models.FulfillmentUpserted;
37364
37460
  export type FxFee = io.flow.internal.v0.models.FxFee;
37365
37461
  export type FxRevenueRecognition =
37366
37462
  io.flow.internal.v0.models.FxRevenueRecognition;
@@ -38057,6 +38153,7 @@ export type OrderPlaced = io.flow.internal.v0.models.OrderPlaced;
38057
38153
  export type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
38058
38154
  export type OrderRatesPublishedV3 =
38059
38155
  io.flow.internal.v0.models.OrderRatesPublishedV3;
38156
+ export type OrderReference = io.flow.internal.v0.models.OrderReference;
38060
38157
  export type OrderRevenueRegionChart =
38061
38158
  io.flow.internal.v0.models.OrderRevenueRegionChart;
38062
38159
  export type OrderRevenueRegionDataPoint =
@@ -38079,14 +38176,22 @@ export type OrderTransactionType =
38079
38176
  export type OrderTransactionUpserted =
38080
38177
  io.flow.internal.v0.models.OrderTransactionUpserted;
38081
38178
  export type OrderValidation = io.flow.internal.v0.models.OrderValidation;
38179
+ export type OrderValidationDeleted =
38180
+ io.flow.internal.v0.models.OrderValidationDeleted;
38082
38181
  export type OrderValidationError =
38083
38182
  io.flow.internal.v0.models.OrderValidationError;
38084
38183
  export type OrderValidationFailure =
38085
38184
  io.flow.internal.v0.models.OrderValidationFailure;
38185
+ export type OrderValidationFailureDeleted =
38186
+ io.flow.internal.v0.models.OrderValidationFailureDeleted;
38086
38187
  export type OrderValidationFailureSummary =
38087
38188
  io.flow.internal.v0.models.OrderValidationFailureSummary;
38189
+ export type OrderValidationFailureUpserted =
38190
+ io.flow.internal.v0.models.OrderValidationFailureUpserted;
38088
38191
  export type OrderValidationStatus =
38089
38192
  io.flow.internal.v0.enums.OrderValidationStatus;
38193
+ export type OrderValidationUpserted =
38194
+ io.flow.internal.v0.models.OrderValidationUpserted;
38090
38195
  export type OrganizationAccount =
38091
38196
  io.flow.internal.v0.models.OrganizationAccount;
38092
38197
  export type OrganizationAccountDeleted =
@@ -38293,6 +38398,7 @@ export type PaypalRefundUpserted =
38293
38398
  export type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
38294
38399
  export type PendingBankPaymentDetail =
38295
38400
  io.flow.internal.v0.models.PendingBankPaymentDetail;
38401
+ export type PendingOrder = io.flow.internal.v0.models.PendingOrder;
38296
38402
  export type PhraseClassified = io.flow.internal.v0.models.PhraseClassified;
38297
38403
  export type PhrasePropagated = io.flow.internal.v0.models.PhrasePropagated;
38298
38404
  export type PingRequestForm = io.flow.internal.v0.models.PingRequestForm;
@@ -38402,7 +38508,6 @@ export type ProofOfPostingOrderCombinedShipment =
38402
38508
  io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
38403
38509
  export type ProofOfPostingShippingNotification =
38404
38510
  io.flow.internal.v0.models.ProofOfPostingShippingNotification;
38405
- export type QueuedRecord = io.flow.internal.v0.models.QueuedRecord;
38406
38511
  export type Quote = io.flow.internal.v0.models.Quote;
38407
38512
  export type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
38408
38513
  export type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
@@ -38972,6 +39077,8 @@ export type StandaloneAttachmentDeleted =
38972
39077
  io.flow.internal.v0.models.StandaloneAttachmentDeleted;
38973
39078
  export type StandaloneAttachmentUpserted =
38974
39079
  io.flow.internal.v0.models.StandaloneAttachmentUpserted;
39080
+ export type StatementCreationMetadata =
39081
+ io.flow.internal.v0.models.StatementCreationMetadata;
38975
39082
  export type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
38976
39083
  export type StatementTransferTransactionLocation =
38977
39084
  io.flow.internal.v0.enums.StatementTransferTransactionLocation;
@@ -39066,10 +39173,12 @@ export type TariffEligibilityForm =
39066
39173
  io.flow.internal.v0.unions.TariffEligibilityForm;
39067
39174
  export type TariffEligibilityType =
39068
39175
  io.flow.internal.v0.enums.TariffEligibilityType;
39176
+ export type Task = io.flow.internal.v0.models.Task;
39069
39177
  export type TaskCount = io.flow.internal.v0.models.TaskCount;
39070
39178
  export type TaskData = io.flow.internal.v0.unions.TaskData;
39071
39179
  export type TaskImport = io.flow.internal.v0.models.TaskImport;
39072
39180
  export type TaskItemUpserted = io.flow.internal.v0.models.TaskItemUpserted;
39181
+ export type TaskMetadata = io.flow.internal.v0.unions.TaskMetadata;
39073
39182
  export type TaskProcessQueuedEvent =
39074
39183
  io.flow.internal.v0.models.TaskProcessQueuedEvent;
39075
39184
  export type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
@@ -39141,6 +39250,14 @@ export type TrackingLabelEventUpsertedV2 =
39141
39250
  io.flow.internal.v0.models.TrackingLabelEventUpsertedV2;
39142
39251
  export type TrackingLabelUpserted =
39143
39252
  io.flow.internal.v0.models.TrackingLabelUpserted;
39253
+ export type TrackingProcessingError =
39254
+ io.flow.internal.v0.models.TrackingProcessingError;
39255
+ export type TrackingProcessingErrorDeleted =
39256
+ io.flow.internal.v0.models.TrackingProcessingErrorDeleted;
39257
+ export type TrackingProcessingErrorUpserted =
39258
+ io.flow.internal.v0.models.TrackingProcessingErrorUpserted;
39259
+ export type TrackingProcessingFailureClassification =
39260
+ io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
39144
39261
  export type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
39145
39262
  export type TrackingRequestUpserted =
39146
39263
  io.flow.internal.v0.models.TrackingRequestUpserted;