@flowio/api-internal-prop-types 9.24.84 → 9.24.86

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.
@@ -774,6 +774,19 @@ T['io.flow.billing.internal.v0.models.billing_statement_attachment'] = PropTypes
774
774
  url: PropTypes.string.isRequired,
775
775
  });
776
776
 
777
+ T['io.flow.billing.internal.v0.models.bank_payment_status_import_result'] = PropTypes.exact({
778
+ processed_at: PropTypes.string.isRequired,
779
+ number_lines_successful: PropTypes.number.isRequired,
780
+ number_lines_with_errors: PropTypes.number.isRequired,
781
+ errors_url: PropTypes.string,
782
+ });
783
+
784
+ T['io.flow.billing.internal.v0.models.bank_payment_status_import'] = PropTypes.exact({
785
+ id: PropTypes.string.isRequired,
786
+ created_at: PropTypes.string.isRequired,
787
+ result: T['io.flow.billing.internal.v0.models.bank_payment_status_import_result'],
788
+ });
789
+
777
790
  T['io.flow.billing.internal.v0.models.adjustment_amount_percentage'] = PropTypes.exact({
778
791
  discriminator: PropTypes.oneOf(['percentage']).isRequired,
779
792
  percentage: PropTypes.number.isRequired,
@@ -2278,6 +2291,16 @@ T['io.flow.payment.internal.v0.unions.processor_account'] = PropTypes.oneOfType(
2278
2291
  T['io.flow.payment.internal.v0.models.crypto_account'],
2279
2292
  ]);
2280
2293
 
2294
+ T['io.flow.billing.reporting.v0.models.report_owner'] = PropTypes.exact({
2295
+ name: PropTypes.string.isRequired,
2296
+ });
2297
+
2298
+ T['io.flow.billing.reporting.v0.models.report_bank_account_cleartext'] = PropTypes.exact({
2299
+ type: PropTypes.string.isRequired,
2300
+ routing_number: PropTypes.string.isRequired,
2301
+ account_number: PropTypes.string.isRequired,
2302
+ });
2303
+
2281
2304
  T['io.flow.billing.reporting.v0.enums.revenue_record_type'] = PropTypes.oneOf(['sales', 'refund']);
2282
2305
 
2283
2306
  T['io.flow.billing.reporting.v0.models.reporting_vat_remittance_rate'] = PropTypes.exact({
@@ -2464,7 +2487,12 @@ T['io.flow.billing.reporting.v0.models.reporting_debug_missing_subsidies'] = Pro
2464
2487
  duty: PropTypes.bool,
2465
2488
  });
2466
2489
 
2467
- T['io.flow.billing.reporting.v0.enums.report_type'] = PropTypes.oneOf(['sales_record', 'trueup_overview', 'non_channel_payment_bank_account']);
2490
+ T['io.flow.billing.reporting.v0.enums.report_type'] = PropTypes.oneOf([
2491
+ 'sales_record',
2492
+ 'trueup_overview',
2493
+ 'non_channel_payment_bank_account',
2494
+ 'scheduled_payment',
2495
+ ]);
2468
2496
 
2469
2497
  T['io.flow.billing.reporting.v0.models.report_form'] = PropTypes.exact({
2470
2498
  from: PropTypes.string.isRequired,
@@ -2491,6 +2519,7 @@ T['io.flow.billing.reporting.v0.models.report_bank_account'] = PropTypes.exact({
2491
2519
 
2492
2520
  T['io.flow.billing.reporting.v0.models.report_payment'] = PropTypes.exact({
2493
2521
  id: PropTypes.string.isRequired,
2522
+ amount: PropTypes.number.isRequired,
2494
2523
  created_at: PropTypes.string.isRequired,
2495
2524
  });
2496
2525
 
@@ -2667,6 +2696,7 @@ T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.o
2667
2696
  'emergency_situation_surcharge',
2668
2697
  'peak_surcharge',
2669
2698
  'duties_taxes_paid_surcharge',
2699
+ 'tip',
2670
2700
  ]);
2671
2701
 
2672
2702
  T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
@@ -2678,6 +2708,7 @@ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
2678
2708
  'insurance',
2679
2709
  'discount',
2680
2710
  'surcharges',
2711
+ 'tip',
2681
2712
  ]);
2682
2713
 
2683
2714
  T['io.flow.payment.gateway.v0.enums.payment_request_review_check_status'] = PropTypes.oneOf(['passed', 'failed']);
@@ -5066,6 +5097,7 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason']
5066
5097
  'unsupported_subsidized_order',
5067
5098
  'unsupported_virtual_goods',
5068
5099
  'non_matching_currencies',
5100
+ 'unsupported_order_edit',
5069
5101
  ]);
5070
5102
 
5071
5103
  T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
@@ -7378,9 +7410,18 @@ T['io.flow.billing.internal.v0.models.account_summary'] = PropTypes.exact({
7378
7410
 
7379
7411
  T['io.flow.billing.reporting.v0.models.report_account'] = PropTypes.exact({
7380
7412
  id: PropTypes.string.isRequired,
7413
+ currency: PropTypes.string.isRequired,
7381
7414
  source: T['io.flow.billing.internal.v0.models.account_source'].isRequired,
7382
7415
  });
7383
7416
 
7417
+ T['io.flow.billing.reporting.v0.models.scheduled_payment'] = PropTypes.exact({
7418
+ payment: T['io.flow.billing.reporting.v0.models.report_payment'].isRequired,
7419
+ bank_account: T['io.flow.billing.reporting.v0.models.report_bank_account_cleartext'].isRequired,
7420
+ account: T['io.flow.billing.reporting.v0.models.report_account'].isRequired,
7421
+ owner: T['io.flow.billing.reporting.v0.models.report_owner'].isRequired,
7422
+ description: PropTypes.string.isRequired,
7423
+ });
7424
+
7384
7425
  T['io.flow.billing.reporting.v0.models.non_channel_payment_bank_account'] = PropTypes.exact({
7385
7426
  payment: T['io.flow.billing.reporting.v0.models.report_payment'].isRequired,
7386
7427
  bank_account: T['io.flow.billing.reporting.v0.models.report_bank_account'].isRequired,
@@ -9678,6 +9719,14 @@ T['io.flow.internal.v0.models.shopify_shop_deleted'] = PropTypes.exact({
9678
9719
  id: PropTypes.string.isRequired,
9679
9720
  });
9680
9721
 
9722
+ T['io.flow.internal.v0.models.screening_status_change_deleted'] = PropTypes.exact({
9723
+ discriminator: PropTypes.oneOf(['screening_status_change_deleted']).isRequired,
9724
+ event_id: PropTypes.string.isRequired,
9725
+ timestamp: PropTypes.string.isRequired,
9726
+ organization: PropTypes.string.isRequired,
9727
+ id: PropTypes.string.isRequired,
9728
+ });
9729
+
9681
9730
  T['io.flow.internal.v0.models.organization_restriction_status_deleted'] = PropTypes.exact({
9682
9731
  discriminator: PropTypes.oneOf(['organization_restriction_status_deleted']).isRequired,
9683
9732
  event_id: PropTypes.string.isRequired,
@@ -9990,6 +10039,14 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
9990
10039
  id: PropTypes.string.isRequired,
9991
10040
  });
9992
10041
 
10042
+ T['io.flow.internal.v0.models.carrier_charge_deleted'] = PropTypes.exact({
10043
+ discriminator: PropTypes.oneOf(['carrier_charge_deleted']).isRequired,
10044
+ event_id: PropTypes.string.isRequired,
10045
+ timestamp: PropTypes.string.isRequired,
10046
+ organization: PropTypes.string.isRequired,
10047
+ id: PropTypes.string.isRequired,
10048
+ });
10049
+
9993
10050
  T['io.flow.internal.v0.models.label_invoice_request_deleted'] = PropTypes.exact({
9994
10051
  discriminator: PropTypes.oneOf(['label_invoice_request_deleted']).isRequired,
9995
10052
  event_id: PropTypes.string.isRequired,
@@ -10449,6 +10506,13 @@ T['io.flow.internal.v0.models.index_assignment_deleted'] = PropTypes.exact({
10449
10506
  id: PropTypes.string.isRequired,
10450
10507
  });
10451
10508
 
10509
+ T['io.flow.internal.v0.models.console_mark_unresolvable_form'] = PropTypes.exact({
10510
+ discriminator: PropTypes.oneOf(['console_mark_unresolvable_form']).isRequired,
10511
+ order_number: PropTypes.string.isRequired,
10512
+ service: PropTypes.string,
10513
+ note: PropTypes.string,
10514
+ });
10515
+
10452
10516
  T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'] = PropTypes.exact({
10453
10517
  discriminator: PropTypes.oneOf(['weee']).isRequired,
10454
10518
  label: PropTypes.string.isRequired,
@@ -10714,6 +10778,10 @@ T['io.flow.internal.v0.models.tracking_response_upserted'] = PropTypes.exact({
10714
10778
  tracking_response: T['io.flow.internal.v0.models.tracking_response'].isRequired,
10715
10779
  });
10716
10780
 
10781
+ T['io.flow.internal.v0.models.tracking_debug_label_location'] = PropTypes.exact({
10782
+ country: PropTypes.string.isRequired,
10783
+ });
10784
+
10717
10785
  T['io.flow.internal.v0.models.time_to_classify'] = PropTypes.exact({
10718
10786
  discriminator: PropTypes.oneOf(['time-to-classify']).isRequired,
10719
10787
  key: PropTypes.string.isRequired,
@@ -10784,6 +10852,7 @@ T['io.flow.internal.v0.models.tax_calculation_error'] = PropTypes.exact({
10784
10852
  messages: PropTypes.arrayOf(PropTypes.string).isRequired,
10785
10853
  });
10786
10854
 
10855
+ T['io.flow.internal.v0.enums.tam_item_type'] = PropTypes.oneOf(['physical', 'digital']);
10787
10856
  T['io.flow.internal.v0.enums.svitlana_type'] = PropTypes.oneOf(['physical', 'digital']);
10788
10857
 
10789
10858
  T['io.flow.internal.v0.models.svitlana_item_form'] = PropTypes.exact({
@@ -11700,6 +11769,16 @@ T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfTyp
11700
11769
  T['io.flow.payment.v0.models.payment_processor_reference'],
11701
11770
  ]);
11702
11771
 
11772
+ T['io.flow.internal.v0.models.report_owner'] = PropTypes.exact({
11773
+ name: PropTypes.string.isRequired,
11774
+ });
11775
+
11776
+ T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact({
11777
+ type: PropTypes.string.isRequired,
11778
+ routing_number: PropTypes.string.isRequired,
11779
+ account_number: PropTypes.string.isRequired,
11780
+ });
11781
+
11703
11782
  T['io.flow.billing.reporting.v0.models.marked_as_final'] = PropTypes.exact({
11704
11783
  products: PropTypes.bool.isRequired,
11705
11784
  shipping: PropTypes.bool.isRequired,
@@ -12070,7 +12149,12 @@ T['io.flow.internal.v0.models.reporting_debug'] = PropTypes.exact({
12070
12149
  missing_shipping_subsidies: T['io.flow.internal.v0.models.reporting_debug_missing_subsidies'],
12071
12150
  });
12072
12151
 
12073
- T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf(['sales_record', 'trueup_overview', 'non_channel_payment_bank_account']);
12152
+ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
12153
+ 'sales_record',
12154
+ 'trueup_overview',
12155
+ 'non_channel_payment_bank_account',
12156
+ 'scheduled_payment',
12157
+ ]);
12074
12158
 
12075
12159
  T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
12076
12160
  from: PropTypes.string.isRequired,
@@ -12713,6 +12797,23 @@ T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'] = Prop
12713
12797
  T['io.flow.internal.v0.enums.organization_restriction_risk_level'] = PropTypes.oneOf(['5', '15']);
12714
12798
  T['io.flow.internal.v0.enums.organization_restriction_review_type'] = PropTypes.oneOf(['all_pending', 'pending_verification']);
12715
12799
  T['io.flow.internal.v0.enums.organization_restriction_screening_status'] = PropTypes.oneOf(['in_review', 'fully_reviewed', 'rejected', 'unscreened']);
12800
+
12801
+ T['io.flow.internal.v0.models.screening_status_change'] = PropTypes.exact({
12802
+ id: PropTypes.string.isRequired,
12803
+ previous_status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'],
12804
+ status: T['io.flow.internal.v0.enums.organization_restriction_screening_status'].isRequired,
12805
+ reason: PropTypes.string,
12806
+ status_set_at: PropTypes.string.isRequired,
12807
+ });
12808
+
12809
+ T['io.flow.internal.v0.models.screening_status_change_upserted'] = PropTypes.exact({
12810
+ discriminator: PropTypes.oneOf(['screening_status_change_upserted']).isRequired,
12811
+ event_id: PropTypes.string.isRequired,
12812
+ timestamp: PropTypes.string.isRequired,
12813
+ organization: PropTypes.string.isRequired,
12814
+ screening_status_change: T['io.flow.internal.v0.models.screening_status_change'].isRequired,
12815
+ });
12816
+
12716
12817
  T['io.flow.internal.v0.enums.organization_restriction_approval_status'] = PropTypes.oneOf(['ready', 'not-ready']);
12717
12818
 
12718
12819
  T['io.flow.internal.v0.models.restriction_organization_status'] = PropTypes.exact({
@@ -12861,6 +12962,15 @@ T['io.flow.internal.v0.models.organization_bank_account_upserted'] = PropTypes.e
12861
12962
  });
12862
12963
 
12863
12964
  T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject', 'auto_accept']);
12965
+ T['io.flow.internal.v0.enums.order_validation_status'] = PropTypes.oneOf(['success', 'failed', 'unresolvable']);
12966
+
12967
+ T['io.flow.internal.v0.models.order_validation'] = PropTypes.exact({
12968
+ id: PropTypes.string.isRequired,
12969
+ organization_id: PropTypes.string.isRequired,
12970
+ order_number: PropTypes.string.isRequired,
12971
+ service_id: PropTypes.string.isRequired,
12972
+ status: T['io.flow.internal.v0.enums.order_validation_status'].isRequired,
12973
+ });
12864
12974
 
12865
12975
  T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
12866
12976
  id: PropTypes.string.isRequired,
@@ -12973,6 +13083,22 @@ T['io.flow.internal.v0.models.order_attribute_upserted'] = PropTypes.exact({
12973
13083
  attribute: T['io.flow.internal.v0.models.order_attribute'].isRequired,
12974
13084
  });
12975
13085
 
13086
+ T['io.flow.internal.v0.enums.order_address_validation_status'] = PropTypes.oneOf(['success', 'failed']);
13087
+
13088
+ T['io.flow.internal.v0.models.order_address_validation'] = PropTypes.exact({
13089
+ id: PropTypes.string.isRequired,
13090
+ organization_id: PropTypes.string.isRequired,
13091
+ order_number: PropTypes.string.isRequired,
13092
+ service_id: PropTypes.string.isRequired,
13093
+ status: T['io.flow.internal.v0.enums.order_address_validation_status'].isRequired,
13094
+ destination_street1: PropTypes.string,
13095
+ destination_street2: PropTypes.string,
13096
+ destination_city: PropTypes.string,
13097
+ destination_postal: PropTypes.string,
13098
+ destination_state: PropTypes.string,
13099
+ destination_country: PropTypes.string.isRequired,
13100
+ });
13101
+
12976
13102
  T['io.flow.internal.v0.enums.order_action'] = PropTypes.oneOf([
12977
13103
  'consumer_submit',
12978
13104
  'fraud_review_accept',
@@ -13076,6 +13202,7 @@ T['io.flow.internal.v0.models.report_bank_account'] = PropTypes.exact({
13076
13202
 
13077
13203
  T['io.flow.internal.v0.models.report_payment'] = PropTypes.exact({
13078
13204
  id: PropTypes.string.isRequired,
13205
+ amount: PropTypes.number.isRequired,
13079
13206
  created_at: PropTypes.string.isRequired,
13080
13207
  });
13081
13208
 
@@ -13450,6 +13577,7 @@ T['io.flow.shopify.markets.v0.models.shopify_update_order'] = PropTypes.exact({
13450
13577
  shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
13451
13578
  note_attributes: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_attribute']),
13452
13579
  metafields: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_metafield_form']),
13580
+ note: PropTypes.string,
13453
13581
  });
13454
13582
 
13455
13583
  T['io.flow.shopify.markets.v0.models.shopify_order_update_form'] = PropTypes.exact({
@@ -14192,6 +14320,7 @@ T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.e
14192
14320
  discriminator: PropTypes.oneOf(['shipping_label']).isRequired,
14193
14321
  request_method: T['io.flow.label.v0.enums.label_request_method'],
14194
14322
  carrier: T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'].isRequired,
14323
+ revenue_share_percentage: PropTypes.number,
14195
14324
  });
14196
14325
 
14197
14326
  T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label'] = PropTypes.exact({
@@ -14298,12 +14427,6 @@ T['io.flow.internal.v0.models.label_generation_settings_upserted'] = PropTypes.e
14298
14427
  label_generation_settings: T['io.flow.internal.v0.models.label_generation_settings'].isRequired,
14299
14428
  });
14300
14429
 
14301
- T['io.flow.internal.v0.enums.label_generation_address_failure_status'] = PropTypes.oneOf(['in_review', 'resolved', 'unresolved']);
14302
-
14303
- T['io.flow.internal.v0.models.label_generation_address_failure_status_update_form'] = PropTypes.exact({
14304
- status: T['io.flow.internal.v0.enums.label_generation_address_failure_status'].isRequired,
14305
- });
14306
-
14307
14430
  T['io.flow.internal.v0.enums.label_creation_status'] = PropTypes.oneOf(['success', 'error', 'pending', 'cancelled']);
14308
14431
 
14309
14432
  T['io.flow.internal.v0.models.label_creation_job_summary'] = PropTypes.exact({
@@ -14357,6 +14480,8 @@ T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digit
14357
14480
  T['io.flow.internal.v0.models.item_summary'] = PropTypes.exact({
14358
14481
  number: PropTypes.string.isRequired,
14359
14482
  fulfillment_method: T['io.flow.catalog.v0.enums.fulfillment_method_value'].isRequired,
14483
+ country_of_origin: PropTypes.string,
14484
+ inferred: PropTypes.bool,
14360
14485
  });
14361
14486
 
14362
14487
  T['io.flow.internal.v0.models.shopper_line'] = PropTypes.exact({
@@ -16734,10 +16859,6 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
16734
16859
  'queued_other_unprocessed_count',
16735
16860
  'queued_record_snooze_count',
16736
16861
  'queued_record_snooze_ending_in_48_hours_count',
16737
- 'statements_no_payout_count',
16738
- 'statements_no_payout_total',
16739
- 'statements_pending_payout_count',
16740
- 'statements_pending_payout_total',
16741
16862
  'payouts_scheduled_count',
16742
16863
  'payouts_scheduled_total',
16743
16864
  'payouts_sent_count',
@@ -16751,8 +16872,10 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
16751
16872
  'percentage_billable_label_transactions_with_carrier_charge_30_days',
16752
16873
  'percentage_billable_label_transactions_with_carrier_charge_60_days',
16753
16874
  'percentage_billable_label_transactions_with_carrier_charge_90_days',
16875
+ 'percentage_bank_account_inserts',
16754
16876
  'percentage_bank_account_updates',
16755
16877
  'percentage_bank_account_unique_updates',
16878
+ 'percentage_bank_account_deletes',
16756
16879
  'negative_balance_number_accounts',
16757
16880
  'negative_balance_number_accounts_with_order_in_past_30_days',
16758
16881
  'negative_balance_number_accounts_without_order_in_past_30_days',
@@ -17099,6 +17222,7 @@ T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'] = Prop
17099
17222
 
17100
17223
  T['io.flow.shopify.markets.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
17101
17224
  destination: T['io.flow.common.v0.models.address'].isRequired,
17225
+ order_note: PropTypes.string,
17102
17226
  });
17103
17227
 
17104
17228
  T['io.flow.internal.v0.models.tax_calculation_line_item_form'] = PropTypes.exact({
@@ -17168,6 +17292,7 @@ T['io.flow.internal.v0.models.smp_tax_calculation'] = PropTypes.exact({
17168
17292
 
17169
17293
  T['io.flow.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
17170
17294
  destination: T['io.flow.common.v0.models.address'].isRequired,
17295
+ order_note: PropTypes.string,
17171
17296
  });
17172
17297
 
17173
17298
  T['io.flow.internal.v0.models.rate_and_rule_item_form'] = PropTypes.exact({
@@ -17218,16 +17343,6 @@ T['io.flow.internal.v0.models.destination_error'] = PropTypes.exact({
17218
17343
  destination: T['io.flow.common.v0.models.address'].isRequired,
17219
17344
  });
17220
17345
 
17221
- T['io.flow.internal.v0.models.label_generation_address_failures'] = PropTypes.exact({
17222
- id: PropTypes.string.isRequired,
17223
- organization_id: PropTypes.string.isRequired,
17224
- status: T['io.flow.internal.v0.enums.label_generation_address_failure_status'].isRequired,
17225
- order_number: PropTypes.string.isRequired,
17226
- order_submitted_at: PropTypes.string.isRequired,
17227
- carrier_id: PropTypes.string.isRequired,
17228
- destination_errors: PropTypes.arrayOf(T['io.flow.internal.v0.models.destination_error']).isRequired,
17229
- });
17230
-
17231
17346
  T['io.flow.internal.v0.models.customs_details_form'] = PropTypes.exact({
17232
17347
  destination: T['io.flow.common.v0.models.address'].isRequired,
17233
17348
  item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -21077,6 +21192,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
21077
21192
  'unsupported_subsidized_order',
21078
21193
  'unsupported_virtual_goods',
21079
21194
  'non_matching_currencies',
21195
+ 'unsupported_order_edit',
21080
21196
  ]);
21081
21197
 
21082
21198
  T['io.flow.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
@@ -21204,6 +21320,18 @@ T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
21204
21320
  description: PropTypes.string,
21205
21321
  });
21206
21322
 
21323
+ T['io.flow.internal.v0.models.tracking_debug_label_event'] = PropTypes.exact({
21324
+ status: T['io.flow.tracking.v0.enums.tracking_status'].isRequired,
21325
+ raw_carrier_event_code: PropTypes.string,
21326
+ location: T['io.flow.internal.v0.models.tracking_debug_label_location'],
21327
+ });
21328
+
21329
+ T['io.flow.internal.v0.models.tracking_debug_label'] = PropTypes.exact({
21330
+ in_transit_location: T['io.flow.internal.v0.models.tracking_debug_label_location'],
21331
+ delivery_location: T['io.flow.internal.v0.models.tracking_debug_label_location'],
21332
+ events: PropTypes.arrayOf(T['io.flow.internal.v0.models.tracking_debug_label_event']).isRequired,
21333
+ });
21334
+
21207
21335
  T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
21208
21336
  id: PropTypes.string.isRequired,
21209
21337
  address: T['io.flow.common.v0.models.address'],
@@ -22032,23 +22160,19 @@ T['io.flow.internal.v0.models.carrier_charge_reference'] = PropTypes.exact({
22032
22160
  id: PropTypes.string.isRequired,
22033
22161
  });
22034
22162
 
22035
- T['io.flow.trueup.v0.enums.carrier_charge_reason'] = PropTypes.oneOf(['return_to_origin', 'rejection', 'other']);
22036
-
22037
- T['io.flow.billing.v0.models.transaction_metadata_carrier_charge'] = PropTypes.exact({
22038
- discriminator: PropTypes.oneOf(['carrier_charge']).isRequired,
22039
- reason: T['io.flow.trueup.v0.enums.carrier_charge_reason'].isRequired,
22040
- label_created_at: PropTypes.string.isRequired,
22041
- carrier_id: PropTypes.string.isRequired,
22042
- carrier_tracking_number: PropTypes.string.isRequired,
22043
- outbound: T['io.flow.billing.v0.models.transaction_metadata_carrier_charge_outbound'],
22163
+ T['io.flow.internal.v0.models.carrier_charge_file_result'] = PropTypes.exact({
22164
+ processed_at: PropTypes.string.isRequired,
22165
+ number_lines_successful: PropTypes.number.isRequired,
22166
+ number_lines_with_errors: PropTypes.number.isRequired,
22167
+ errors_url: PropTypes.string,
22044
22168
  });
22045
22169
 
22046
- T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_charge'] = PropTypes.exact({
22047
- reason: T['io.flow.trueup.v0.enums.carrier_charge_reason'].isRequired,
22048
- label_created_at: PropTypes.string.isRequired,
22049
- carrier_id: PropTypes.string.isRequired,
22050
- carrier_tracking_number: PropTypes.string.isRequired,
22051
- outbound_transaction_id: PropTypes.string,
22170
+ T['io.flow.internal.v0.models.carrier_charge_file'] = PropTypes.exact({
22171
+ id: PropTypes.string.isRequired,
22172
+ url: PropTypes.string.isRequired,
22173
+ attributes: PropTypes.objectOf(PropTypes.string),
22174
+ created_at: PropTypes.string.isRequired,
22175
+ result: T['io.flow.internal.v0.models.carrier_charge_file_result'],
22052
22176
  });
22053
22177
 
22054
22178
  T['io.flow.internal.v0.models.label_surcharge_single_form'] = PropTypes.exact({
@@ -22071,6 +22195,25 @@ T['io.flow.trueup.v0.models.label_units'] = PropTypes.exact({
22071
22195
  length: T['io.flow.units.v0.enums.unit_of_length'].isRequired,
22072
22196
  });
22073
22197
 
22198
+ T['io.flow.trueup.v0.enums.carrier_charge_reason'] = PropTypes.oneOf(['return_to_origin', 'rejection', 'other']);
22199
+
22200
+ T['io.flow.billing.v0.models.transaction_metadata_carrier_charge'] = PropTypes.exact({
22201
+ discriminator: PropTypes.oneOf(['carrier_charge']).isRequired,
22202
+ reason: T['io.flow.trueup.v0.enums.carrier_charge_reason'].isRequired,
22203
+ label_created_at: PropTypes.string.isRequired,
22204
+ carrier_id: PropTypes.string.isRequired,
22205
+ carrier_tracking_number: PropTypes.string.isRequired,
22206
+ outbound: T['io.flow.billing.v0.models.transaction_metadata_carrier_charge_outbound'],
22207
+ });
22208
+
22209
+ T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_charge'] = PropTypes.exact({
22210
+ reason: T['io.flow.trueup.v0.enums.carrier_charge_reason'].isRequired,
22211
+ label_created_at: PropTypes.string.isRequired,
22212
+ carrier_id: PropTypes.string.isRequired,
22213
+ carrier_tracking_number: PropTypes.string.isRequired,
22214
+ outbound_transaction_id: PropTypes.string,
22215
+ });
22216
+
22074
22217
  T['io.flow.trueup.v0.models.dimensional_weight'] = PropTypes.exact({
22075
22218
  weight: PropTypes.number.isRequired,
22076
22219
  length: PropTypes.number,
@@ -22177,18 +22320,34 @@ T['io.flow.internal.v0.unions.carrier_charge_form'] = PropTypes.oneOfType([
22177
22320
  T['io.flow.internal.v0.models.carrier_charge_form_other'],
22178
22321
  ]);
22179
22322
 
22180
- T['io.flow.internal.v0.models.carrier_charge_file_result'] = PropTypes.exact({
22181
- processed_at: PropTypes.string.isRequired,
22182
- number_lines_successful: PropTypes.number.isRequired,
22183
- number_lines_with_errors: PropTypes.number.isRequired,
22184
- errors_url: PropTypes.string,
22185
- });
22323
+ T['io.flow.internal.v0.enums.carrier_charge_type'] = PropTypes.oneOf(['label', 'other']);
22186
22324
 
22187
- T['io.flow.internal.v0.models.carrier_charge_file'] = PropTypes.exact({
22325
+ T['io.flow.internal.v0.models.carrier_charge'] = PropTypes.exact({
22188
22326
  id: PropTypes.string.isRequired,
22189
- url: PropTypes.string.isRequired,
22190
- created_at: PropTypes.string.isRequired,
22191
- result: T['io.flow.internal.v0.models.carrier_charge_file_result'],
22327
+ type: T['io.flow.internal.v0.enums.carrier_charge_type'].isRequired,
22328
+ label_invoice_request_id: PropTypes.string,
22329
+ organization_id: PropTypes.string.isRequired,
22330
+ order_number: PropTypes.string.isRequired,
22331
+ carrier_id: PropTypes.string.isRequired,
22332
+ carrier_tracking_number: PropTypes.string.isRequired,
22333
+ label_created_at: PropTypes.string.isRequired,
22334
+ units: T['io.flow.internal.v0.models.carrier_charge_units'].isRequired,
22335
+ base: T['io.flow.trueup.v0.models.label_base'].isRequired,
22336
+ surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
22337
+ total: PropTypes.number.isRequired,
22338
+ dead: T['io.flow.trueup.v0.models.dead_weight'],
22339
+ dimensional: T['io.flow.trueup.v0.models.dimensional_weight'],
22340
+ attributes: PropTypes.objectOf(PropTypes.string),
22341
+ outbound_carrier_charge_id: PropTypes.string,
22342
+ reason: T['io.flow.trueup.v0.enums.carrier_charge_reason'],
22343
+ });
22344
+
22345
+ T['io.flow.internal.v0.models.carrier_charge_upserted'] = PropTypes.exact({
22346
+ discriminator: PropTypes.oneOf(['carrier_charge_upserted']).isRequired,
22347
+ event_id: PropTypes.string.isRequired,
22348
+ timestamp: PropTypes.string.isRequired,
22349
+ organization: PropTypes.string.isRequired,
22350
+ carrier_charge: T['io.flow.internal.v0.models.carrier_charge'].isRequired,
22192
22351
  });
22193
22352
 
22194
22353
  T['io.flow.internal.v0.enums.carrier_validation_status'] = PropTypes.oneOf(['success', 'error']);
@@ -23385,8 +23544,31 @@ T['io.flow.billing.csv.v0.models.billing_csv_generic_transaction'] = PropTypes.e
23385
23544
  description: PropTypes.string.isRequired,
23386
23545
  });
23387
23546
 
23547
+ T['io.flow.internal.v0.models.bank_payment_status_import_result'] = PropTypes.exact({
23548
+ processed_at: PropTypes.string.isRequired,
23549
+ number_lines_successful: PropTypes.number.isRequired,
23550
+ number_lines_with_errors: PropTypes.number.isRequired,
23551
+ errors_url: PropTypes.string,
23552
+ });
23553
+
23554
+ T['io.flow.internal.v0.models.bank_payment_status_import'] = PropTypes.exact({
23555
+ id: PropTypes.string.isRequired,
23556
+ created_at: PropTypes.string.isRequired,
23557
+ result: T['io.flow.internal.v0.models.bank_payment_status_import_result'],
23558
+ });
23559
+
23388
23560
  T['io.flow.billing.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
23389
23561
 
23562
+ T['io.flow.billing.internal.v0.models.bank_payment_status_single_form'] = PropTypes.exact({
23563
+ payment_id: PropTypes.string.isRequired,
23564
+ code: T['io.flow.billing.internal.v0.enums.bank_payment_status_code'].isRequired,
23565
+ failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
23566
+ });
23567
+
23568
+ T['io.flow.billing.internal.v0.models.bank_payment_status_import_form'] = PropTypes.exact({
23569
+ forms: PropTypes.arrayOf(T['io.flow.billing.internal.v0.models.bank_payment_status_single_form']).isRequired,
23570
+ });
23571
+
23390
23572
  T['io.flow.billing.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
23391
23573
  code: T['io.flow.billing.internal.v0.enums.bank_payment_status_code'].isRequired,
23392
23574
  failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
@@ -23394,6 +23576,16 @@ T['io.flow.billing.internal.v0.models.bank_payment_status_form'] = PropTypes.exa
23394
23576
 
23395
23577
  T['io.flow.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
23396
23578
 
23579
+ T['io.flow.internal.v0.models.bank_payment_status_single_form'] = PropTypes.exact({
23580
+ payment_id: PropTypes.string.isRequired,
23581
+ code: T['io.flow.internal.v0.enums.bank_payment_status_code'].isRequired,
23582
+ failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
23583
+ });
23584
+
23585
+ T['io.flow.internal.v0.models.bank_payment_status_import_form'] = PropTypes.exact({
23586
+ forms: PropTypes.arrayOf(T['io.flow.internal.v0.models.bank_payment_status_single_form']).isRequired,
23587
+ });
23588
+
23397
23589
  T['io.flow.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
23398
23590
  code: T['io.flow.internal.v0.enums.bank_payment_status_code'].isRequired,
23399
23591
  failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
@@ -23632,6 +23824,7 @@ T['io.flow.internal.v0.models.restriction_item_review'] = PropTypes.exact({
23632
23824
  id: PropTypes.string.isRequired,
23633
23825
  rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
23634
23826
  status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
23827
+ cause_rule_id: PropTypes.string,
23635
23828
  keywords: T['io.flow.internal.v0.models.restriction_keywords'].isRequired,
23636
23829
  date: PropTypes.string,
23637
23830
  updated_by: T['io.flow.common.v0.models.user'],
@@ -23653,6 +23846,7 @@ T['io.flow.internal.v0.models.restriction_history_item_review_decision'] = PropT
23653
23846
  rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
23654
23847
  keywords: T['io.flow.internal.v0.models.restriction_keywords'].isRequired,
23655
23848
  status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
23849
+ cause_rule_id: PropTypes.string,
23656
23850
  created_at: PropTypes.string.isRequired,
23657
23851
  updated_at: PropTypes.string.isRequired,
23658
23852
  updated_by: T['io.flow.common.v0.models.user'],
@@ -23810,6 +24004,19 @@ T['io.flow.return.v0.models.return_form'] = PropTypes.exact({
23810
24004
  carrier_tracking_number: PropTypes.string,
23811
24005
  });
23812
24006
 
24007
+ T['io.flow.internal.v0.models.order_validation_attempt'] = PropTypes.exact({
24008
+ id: PropTypes.string.isRequired,
24009
+ organization_id: PropTypes.string.isRequired,
24010
+ order_number: PropTypes.string.isRequired,
24011
+ service_id: PropTypes.string.isRequired,
24012
+ origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
24013
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
24014
+ label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
24015
+ label_trigger_method: T['io.flow.label.v0.enums.label_trigger_method'].isRequired,
24016
+ suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'].isRequired,
24017
+ errors: PropTypes.arrayOf(PropTypes.string).isRequired,
24018
+ });
24019
+
23813
24020
  T['io.flow.fulfillment.v0.models.center_summary'] = PropTypes.exact({
23814
24021
  id: PropTypes.string.isRequired,
23815
24022
  key: PropTypes.string.isRequired,
@@ -23843,6 +24050,18 @@ T['io.flow.order.management.v0.models.fulfillment'] = PropTypes.exact({
23843
24050
  center: T['io.flow.fulfillment.v0.models.center_summary'],
23844
24051
  });
23845
24052
 
24053
+ T['io.flow.internal.v0.models.console_label_request_form'] = PropTypes.exact({
24054
+ discriminator: PropTypes.oneOf(['console_label_request_form']).isRequired,
24055
+ order_number: PropTypes.string.isRequired,
24056
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
24057
+ service: PropTypes.string,
24058
+ });
24059
+
24060
+ T['io.flow.internal.v0.unions.console_label_validation_form'] = PropTypes.oneOfType([
24061
+ T['io.flow.internal.v0.models.console_label_request_form'],
24062
+ T['io.flow.internal.v0.models.console_mark_unresolvable_form'],
24063
+ ]);
24064
+
23846
24065
  T['io.flow.internal.v0.models.center_defaults_form'] = PropTypes.exact({
23847
24066
  packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
23848
24067
  shipping_address_contact: T['io.flow.common.v0.models.contact'].isRequired,
@@ -25473,6 +25692,7 @@ T['io.flow.billing.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
25473
25692
  'processing',
25474
25693
  'rate_lock',
25475
25694
  'transfer',
25695
+ 'negative_balance_guarantee',
25476
25696
  ]);
25477
25697
 
25478
25698
  T['io.flow.billing.v0.models.fee_deduction'] = PropTypes.exact({
@@ -26411,9 +26631,9 @@ T['io.flow.label.v0.models.shipping_notification'] = PropTypes.exact({
26411
26631
  key: PropTypes.string.isRequired,
26412
26632
  attributes: PropTypes.objectOf(PropTypes.string).isRequired,
26413
26633
  carrier_tracking_number: PropTypes.string.isRequired,
26414
- destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
26634
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'],
26415
26635
  flow_tracking_number: PropTypes.string.isRequired,
26416
- origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
26636
+ origin: T['io.flow.fulfillment.v0.models.shipping_address'],
26417
26637
  'package': T['io.flow.label.v0.models.shipping_label_package'],
26418
26638
  service: T['io.flow.fulfillment.v0.unions.service_description'].isRequired,
26419
26639
  window: T['io.flow.common.v0.models.datetime_range'],
@@ -28385,6 +28605,7 @@ T['io.flow.billing.internal.v0.models.bank_payment'] = PropTypes.exact({
28385
28605
  sent_on: PropTypes.string,
28386
28606
  status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
28387
28607
  expected_delivery_by: PropTypes.string,
28608
+ attributes: PropTypes.objectOf(PropTypes.string),
28388
28609
  total: T['io.flow.common.v0.models.price'].isRequired,
28389
28610
  });
28390
28611
 
@@ -28900,6 +29121,22 @@ T['io.flow.return.v0.models.return_version'] = PropTypes.exact({
28900
29121
  'return': T['io.flow.return.v0.models.return'].isRequired,
28901
29122
  });
28902
29123
 
29124
+ T['io.flow.internal.v0.models.tam_item_form'] = PropTypes.exact({
29125
+ number: PropTypes.string.isRequired,
29126
+ amount: T['io.flow.common.v0.models.price'].isRequired,
29127
+ description: PropTypes.string,
29128
+ type: T['io.flow.internal.v0.enums.tam_item_type'].isRequired,
29129
+ });
29130
+
29131
+ T['io.flow.internal.v0.models.tam_item'] = PropTypes.exact({
29132
+ id: PropTypes.string.isRequired,
29133
+ number: PropTypes.string.isRequired,
29134
+ amount: T['io.flow.common.v0.models.price'].isRequired,
29135
+ description: PropTypes.string,
29136
+ type: T['io.flow.internal.v0.enums.tam_item_type'].isRequired,
29137
+ added_on: PropTypes.string.isRequired,
29138
+ });
29139
+
28903
29140
  T['io.flow.internal.v0.models.subscription'] = PropTypes.exact({
28904
29141
  id: PropTypes.string.isRequired,
28905
29142
  organization: PropTypes.string.isRequired,
@@ -29486,6 +29723,7 @@ T['io.flow.internal.v0.models.bank_payment'] = PropTypes.exact({
29486
29723
  sent_on: PropTypes.string,
29487
29724
  status: T['io.flow.billing.v0.unions.payout_status'].isRequired,
29488
29725
  expected_delivery_by: PropTypes.string,
29726
+ attributes: PropTypes.objectOf(PropTypes.string),
29489
29727
  total: T['io.flow.common.v0.models.price'].isRequired,
29490
29728
  });
29491
29729
 
@@ -30485,9 +30723,18 @@ T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
30485
30723
 
30486
30724
  T['io.flow.internal.v0.models.report_account'] = PropTypes.exact({
30487
30725
  id: PropTypes.string.isRequired,
30726
+ currency: PropTypes.string.isRequired,
30488
30727
  source: T['io.flow.internal.v0.models.account_source'].isRequired,
30489
30728
  });
30490
30729
 
30730
+ T['io.flow.internal.v0.models.scheduled_payment'] = PropTypes.exact({
30731
+ payment: T['io.flow.internal.v0.models.report_payment'].isRequired,
30732
+ bank_account: T['io.flow.internal.v0.models.report_bank_account_cleartext'].isRequired,
30733
+ account: T['io.flow.internal.v0.models.report_account'].isRequired,
30734
+ owner: T['io.flow.internal.v0.models.report_owner'].isRequired,
30735
+ description: PropTypes.string.isRequired,
30736
+ });
30737
+
30491
30738
  T['io.flow.internal.v0.models.non_channel_payment_bank_account'] = PropTypes.exact({
30492
30739
  payment: T['io.flow.internal.v0.models.report_payment'].isRequired,
30493
30740
  bank_account: T['io.flow.internal.v0.models.report_bank_account'].isRequired,
@@ -31488,6 +31735,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
31488
31735
  T['io.flow.internal.v0.models.billing_csv_transaction_deleted'],
31489
31736
  T['io.flow.internal.v0.models.label_invoice_request_upserted'],
31490
31737
  T['io.flow.internal.v0.models.label_invoice_request_deleted'],
31738
+ T['io.flow.internal.v0.models.carrier_charge_upserted'],
31739
+ T['io.flow.internal.v0.models.carrier_charge_deleted'],
31491
31740
  T['io.flow.internal.v0.models.fraud_review_upserted'],
31492
31741
  T['io.flow.internal.v0.models.fraud_review_deleted'],
31493
31742
  T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
@@ -31624,6 +31873,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
31624
31873
  T['io.flow.internal.v0.models.restriction_organization_status_deleted'],
31625
31874
  T['io.flow.internal.v0.models.organization_restriction_status_upserted'],
31626
31875
  T['io.flow.internal.v0.models.organization_restriction_status_deleted'],
31876
+ T['io.flow.internal.v0.models.screening_status_change_upserted'],
31877
+ T['io.flow.internal.v0.models.screening_status_change_deleted'],
31627
31878
  T['io.flow.internal.v0.models.shopify_shop_upserted'],
31628
31879
  T['io.flow.internal.v0.models.shopify_shop_deleted'],
31629
31880
  T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'],
@@ -31959,6 +32210,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
31959
32210
  'billing_csv_transaction_deleted',
31960
32211
  'label_invoice_request_upserted',
31961
32212
  'label_invoice_request_deleted',
32213
+ 'carrier_charge_upserted',
32214
+ 'carrier_charge_deleted',
31962
32215
  'fraud_review_upserted',
31963
32216
  'fraud_review_deleted',
31964
32217
  'fraud_pending_review_upserted',
@@ -32095,6 +32348,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
32095
32348
  'restriction_organization_status_deleted',
32096
32349
  'organization_restriction_status_upserted',
32097
32350
  'organization_restriction_status_deleted',
32351
+ 'screening_status_change_upserted',
32352
+ 'screening_status_change_deleted',
32098
32353
  'shopify_shop_upserted',
32099
32354
  'shopify_shop_deleted',
32100
32355
  'shopify_experience_short_id_upserted',
@@ -32246,6 +32501,7 @@ T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'] = PropTypes.on
32246
32501
  'flow_shop',
32247
32502
  'online_payment',
32248
32503
  'order_update',
32504
+ 'order_edit',
32249
32505
  'product_restriction_result',
32250
32506
  'product_sync',
32251
32507
  'webhook_registrations',
@@ -32362,6 +32618,11 @@ T['io.flow.internal.v0.models.bank_payment_form'] = PropTypes.exact({
32362
32618
  amount: PropTypes.number.isRequired,
32363
32619
  currency: PropTypes.string.isRequired,
32364
32620
  transfer_transaction_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
32621
+ attributes: PropTypes.objectOf(PropTypes.string),
32622
+ });
32623
+
32624
+ T['io.flow.internal.v0.models.bank_payment_status_sent_import_form'] = PropTypes.exact({
32625
+ payment_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
32365
32626
  });
32366
32627
 
32367
32628
  T['io.flow.internal.v0.models.billing_authorization_reference'] = PropTypes.exact({
@@ -32379,6 +32640,7 @@ T['io.flow.internal.v0.models.calculator_organization_settings_form'] = PropType
32379
32640
 
32380
32641
  T['io.flow.internal.v0.models.carrier_charge_file_form'] = PropTypes.exact({
32381
32642
  url: PropTypes.string.isRequired,
32643
+ attributes: PropTypes.objectOf(PropTypes.string),
32382
32644
  });
32383
32645
 
32384
32646
  T['io.flow.internal.v0.models.carrier_invoice'] = PropTypes.exact({
@@ -32599,6 +32861,7 @@ T['io.flow.internal.v0.models.erp_priority_vendor'] = PropTypes.exact({
32599
32861
  T['io.flow.internal.v0.models.erp_priority_vendor_form'] = PropTypes.exact({
32600
32862
  acc_des: PropTypes.string,
32601
32863
  tax_code: PropTypes.string,
32864
+ tax_code_2: PropTypes.string,
32602
32865
  vat_flag: PropTypes.string,
32603
32866
  country_name: PropTypes.string,
32604
32867
  w_tax_percent: PropTypes.string,
@@ -32635,6 +32898,8 @@ T['io.flow.internal.v0.models.erp_priority_vendor_form'] = PropTypes.exact({
32635
32898
  eacc_des: PropTypes.string,
32636
32899
  acng_des: PropTypes.string,
32637
32900
  branch_des: PropTypes.string,
32901
+ debit_entry_code: PropTypes.string,
32902
+ credit_entry_code: PropTypes.string,
32638
32903
  });
32639
32904
 
32640
32905
  T['io.flow.internal.v0.models.erp_vendor'] = PropTypes.exact({
@@ -33286,6 +33551,10 @@ T['io.flow.internal.v0.models.subcatalog_item_count'] = PropTypes.exact({
33286
33551
  count: PropTypes.number.isRequired,
33287
33552
  });
33288
33553
 
33554
+ T['io.flow.internal.v0.models.svitlana_test'] = PropTypes.exact({
33555
+ name: PropTypes.string.isRequired,
33556
+ });
33557
+
33289
33558
  T['io.flow.internal.v0.models.task_count'] = PropTypes.exact({
33290
33559
  discriminator: PropTypes.string.isRequired,
33291
33560
  count: PropTypes.number.isRequired,
@@ -34507,6 +34776,11 @@ T['io.flow.billing.internal.v0.models.bank_payment_form'] = PropTypes.exact({
34507
34776
  amount: PropTypes.number.isRequired,
34508
34777
  currency: PropTypes.string.isRequired,
34509
34778
  transfer_transaction_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
34779
+ attributes: PropTypes.objectOf(PropTypes.string),
34780
+ });
34781
+
34782
+ T['io.flow.billing.internal.v0.models.bank_payment_status_sent_import_form'] = PropTypes.exact({
34783
+ payment_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
34510
34784
  });
34511
34785
 
34512
34786
  T['io.flow.billing.internal.v0.models.billing_authorization_reference'] = PropTypes.exact({
@@ -34866,6 +35140,11 @@ export const bankPaymentForm = T['io.flow.internal.v0.models.bank_payment_form']
34866
35140
  export const bankPaymentPromiseCompletedMethod = T['io.flow.internal.v0.enums.bank_payment_promise_completed_method'];
34867
35141
  export const bankPaymentStatusCode = T['io.flow.internal.v0.enums.bank_payment_status_code'];
34868
35142
  export const bankPaymentStatusForm = T['io.flow.internal.v0.models.bank_payment_status_form'];
35143
+ export const bankPaymentStatusImport = T['io.flow.internal.v0.models.bank_payment_status_import'];
35144
+ export const bankPaymentStatusImportForm = T['io.flow.internal.v0.models.bank_payment_status_import_form'];
35145
+ export const bankPaymentStatusImportResult = T['io.flow.internal.v0.models.bank_payment_status_import_result'];
35146
+ export const bankPaymentStatusSentImportForm = T['io.flow.internal.v0.models.bank_payment_status_sent_import_form'];
35147
+ export const bankPaymentStatusSingleForm = T['io.flow.internal.v0.models.bank_payment_status_single_form'];
34869
35148
  export const bankPaymentUpserted = T['io.flow.internal.v0.models.bank_payment_upserted'];
34870
35149
  export const bankPaymentUpsertedV2 = T['io.flow.internal.v0.models.bank_payment_upserted_v2'];
34871
35150
  export const billingAllocationKey = T['io.flow.internal.v0.enums.billing_allocation_key'];
@@ -34968,6 +35247,8 @@ export const carrierAccountDeleted = T['io.flow.internal.v0.models.carrier_accou
34968
35247
  export const carrierAccountForm = T['io.flow.internal.v0.models.carrier_account_form'];
34969
35248
  export const carrierAccountUpsertedV2 = T['io.flow.internal.v0.models.carrier_account_upserted_v2'];
34970
35249
  export const carrierAccountValidation = T['io.flow.internal.v0.models.carrier_account_validation'];
35250
+ export const carrierCharge = T['io.flow.internal.v0.models.carrier_charge'];
35251
+ export const carrierChargeDeleted = T['io.flow.internal.v0.models.carrier_charge_deleted'];
34971
35252
  export const carrierChargeFile = T['io.flow.internal.v0.models.carrier_charge_file'];
34972
35253
  export const carrierChargeFileForm = T['io.flow.internal.v0.models.carrier_charge_file_form'];
34973
35254
  export const carrierChargeFileResult = T['io.flow.internal.v0.models.carrier_charge_file_result'];
@@ -34977,7 +35258,9 @@ export const carrierChargeFormOther = T['io.flow.internal.v0.models.carrier_char
34977
35258
  export const carrierChargeReference = T['io.flow.internal.v0.models.carrier_charge_reference'];
34978
35259
  export const carrierChargeTransaction = T['io.flow.internal.v0.models.carrier_charge_transaction'];
34979
35260
  export const carrierChargeTransactionType = T['io.flow.internal.v0.enums.carrier_charge_transaction_type'];
35261
+ export const carrierChargeType = T['io.flow.internal.v0.enums.carrier_charge_type'];
34980
35262
  export const carrierChargeUnits = T['io.flow.internal.v0.models.carrier_charge_units'];
35263
+ export const carrierChargeUpserted = T['io.flow.internal.v0.models.carrier_charge_upserted'];
34981
35264
  export const carrierCredentials = T['io.flow.internal.v0.unions.carrier_credentials'];
34982
35265
  export const carrierInvoice = T['io.flow.internal.v0.models.carrier_invoice'];
34983
35266
  export const carrierLabelGenerationMethod = T['io.flow.internal.v0.enums.carrier_label_generation_method'];
@@ -35633,6 +35916,9 @@ export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
35633
35916
  export const complianceForm = T['io.flow.internal.v0.unions.compliance_form'];
35634
35917
  export const complianceType = T['io.flow.internal.v0.enums.compliance_type'];
35635
35918
  export const components = T['io.flow.internal.v0.models.components'];
35919
+ export const consoleLabelRequestForm = T['io.flow.internal.v0.models.console_label_request_form'];
35920
+ export const consoleLabelValidationForm = T['io.flow.internal.v0.unions.console_label_validation_form'];
35921
+ export const consoleMarkUnresolvableForm = T['io.flow.internal.v0.models.console_mark_unresolvable_form'];
35636
35922
  export const consumerOptinActivity = T['io.flow.internal.v0.models.consumer_optin_activity'];
35637
35923
  export const contentElementType = T['io.flow.internal.v0.enums.content_element_type'];
35638
35924
  export const contentItem = T['io.flow.internal.v0.unions.content_item'];
@@ -36161,9 +36447,6 @@ export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creat
36161
36447
  export const labelCreationRequestForm = T['io.flow.internal.v0.models.label_creation_request_form'];
36162
36448
  export const labelCreationStatus = T['io.flow.internal.v0.enums.label_creation_status'];
36163
36449
  export const labelDestination = T['io.flow.internal.v0.models.label_destination'];
36164
- export const labelGenerationAddressFailureStatus = T['io.flow.internal.v0.enums.label_generation_address_failure_status'];
36165
- export const labelGenerationAddressFailureStatusUpdateForm = T['io.flow.internal.v0.models.label_generation_address_failure_status_update_form'];
36166
- export const labelGenerationAddressFailures = T['io.flow.internal.v0.models.label_generation_address_failures'];
36167
36450
  export const labelGenerationSettings = T['io.flow.internal.v0.models.label_generation_settings'];
36168
36451
  export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.label_generation_settings_deleted'];
36169
36452
  export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
@@ -36353,6 +36636,8 @@ export const optinPromptUpserted = T['io.flow.internal.v0.models.optin_prompt_up
36353
36636
  export const orderAction = T['io.flow.internal.v0.enums.order_action'];
36354
36637
  export const orderActionForm = T['io.flow.internal.v0.unions.order_action_form'];
36355
36638
  export const orderActionability = T['io.flow.internal.v0.models.order_actionability'];
36639
+ export const orderAddressValidation = T['io.flow.internal.v0.models.order_address_validation'];
36640
+ export const orderAddressValidationStatus = T['io.flow.internal.v0.enums.order_address_validation_status'];
36356
36641
  export const orderAttribute = T['io.flow.internal.v0.models.order_attribute'];
36357
36642
  export const orderAttributeDeleted = T['io.flow.internal.v0.models.order_attribute_deleted'];
36358
36643
  export const orderAttributeIntent = T['io.flow.internal.v0.enums.order_attribute_intent'];
@@ -36392,7 +36677,10 @@ export const orderTransaction = T['io.flow.internal.v0.models.order_transaction'
36392
36677
  export const orderTransactionDeleted = T['io.flow.internal.v0.models.order_transaction_deleted'];
36393
36678
  export const orderTransactionType = T['io.flow.internal.v0.enums.order_transaction_type'];
36394
36679
  export const orderTransactionUpserted = T['io.flow.internal.v0.models.order_transaction_upserted'];
36680
+ export const orderValidation = T['io.flow.internal.v0.models.order_validation'];
36681
+ export const orderValidationAttempt = T['io.flow.internal.v0.models.order_validation_attempt'];
36395
36682
  export const orderValidationError = T['io.flow.internal.v0.models.order_validation_error'];
36683
+ export const orderValidationStatus = T['io.flow.internal.v0.enums.order_validation_status'];
36396
36684
  export const organizationAccount = T['io.flow.internal.v0.models.organization_account'];
36397
36685
  export const organizationAccountDeleted = T['io.flow.internal.v0.models.organization_account_deleted'];
36398
36686
  export const organizationAccountUpsertedV2 = T['io.flow.internal.v0.models.organization_account_upserted_v2'];
@@ -36643,8 +36931,10 @@ export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
36643
36931
  export const report = T['io.flow.internal.v0.models.report'];
36644
36932
  export const reportAccount = T['io.flow.internal.v0.models.report_account'];
36645
36933
  export const reportBankAccount = T['io.flow.internal.v0.models.report_bank_account'];
36934
+ export const reportBankAccountCleartext = T['io.flow.internal.v0.models.report_bank_account_cleartext'];
36646
36935
  export const reportForm = T['io.flow.internal.v0.models.report_form'];
36647
36936
  export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
36937
+ export const reportOwner = T['io.flow.internal.v0.models.report_owner'];
36648
36938
  export const reportPayment = T['io.flow.internal.v0.models.report_payment'];
36649
36939
  export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
36650
36940
  export const reportStatus = T['io.flow.internal.v0.enums.report_status'];
@@ -36744,9 +37034,13 @@ export const salesRecordDeleted = T['io.flow.internal.v0.models.sales_record_del
36744
37034
  export const salesRecordUpserted = T['io.flow.internal.v0.models.sales_record_upserted'];
36745
37035
  export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
36746
37036
  export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
37037
+ export const scheduledPayment = T['io.flow.internal.v0.models.scheduled_payment'];
36747
37038
  export const scope = T['io.flow.internal.v0.enums.scope'];
36748
37039
  export const screen = T['io.flow.internal.v0.models.screen'];
36749
37040
  export const screenForm = T['io.flow.internal.v0.models.screen_form'];
37041
+ export const screeningStatusChange = T['io.flow.internal.v0.models.screening_status_change'];
37042
+ export const screeningStatusChangeDeleted = T['io.flow.internal.v0.models.screening_status_change_deleted'];
37043
+ export const screeningStatusChangeUpserted = T['io.flow.internal.v0.models.screening_status_change_upserted'];
36750
37044
  export const searchAuthorization = T['io.flow.internal.v0.models.search_authorization'];
36751
37045
  export const searchCustomerSummary = T['io.flow.internal.v0.models.search_customer_summary'];
36752
37046
  export const searchExperienceSummary = T['io.flow.internal.v0.models.search_experience_summary'];
@@ -36959,7 +37253,11 @@ export const svitlanaItem = T['io.flow.internal.v0.models.svitlana_item'];
36959
37253
  export const svitlanaItemDeleted = T['io.flow.internal.v0.models.svitlana_item_deleted'];
36960
37254
  export const svitlanaItemForm = T['io.flow.internal.v0.models.svitlana_item_form'];
36961
37255
  export const svitlanaItemUpserted = T['io.flow.internal.v0.models.svitlana_item_upserted'];
37256
+ export const svitlanaTest = T['io.flow.internal.v0.models.svitlana_test'];
36962
37257
  export const svitlanaType = T['io.flow.internal.v0.enums.svitlana_type'];
37258
+ export const tamItem = T['io.flow.internal.v0.models.tam_item'];
37259
+ export const tamItemForm = T['io.flow.internal.v0.models.tam_item_form'];
37260
+ export const tamItemType = T['io.flow.internal.v0.enums.tam_item_type'];
36963
37261
  export const tariffCodeDuty = T['io.flow.internal.v0.models.tariff_code_duty'];
36964
37262
  export const tariffCodesExport = T['io.flow.internal.v0.models.tariff_codes_export'];
36965
37263
  export const tariffEligibility = T['io.flow.internal.v0.models.tariff_eligibility'];
@@ -37006,6 +37304,9 @@ export const timeToClassifyUpserted = T['io.flow.internal.v0.models.time_to_clas
37006
37304
  export const timeWithTimezone = T['io.flow.internal.v0.models.time_with_timezone'];
37007
37305
  export const timeseriesType = T['io.flow.internal.v0.enums.timeseries_type'];
37008
37306
  export const tracker = T['io.flow.internal.v0.unions.tracker'];
37307
+ export const trackingDebugLabel = T['io.flow.internal.v0.models.tracking_debug_label'];
37308
+ export const trackingDebugLabelEvent = T['io.flow.internal.v0.models.tracking_debug_label_event'];
37309
+ export const trackingDebugLabelLocation = T['io.flow.internal.v0.models.tracking_debug_label_location'];
37009
37310
  export const trackingDeleted = T['io.flow.internal.v0.models.tracking_deleted'];
37010
37311
  export const trackingEvent = T['io.flow.internal.v0.models.tracking_event'];
37011
37312
  export const trackingIntegrationType = T['io.flow.internal.v0.enums.tracking_integration_type'];