@flowio/api-internal-prop-types 9.24.47 → 9.24.49

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.
@@ -1221,11 +1221,6 @@ T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_paypal'] = Pr
1221
1221
  payer_id: PropTypes.string.isRequired,
1222
1222
  });
1223
1223
 
1224
- T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay'] = PropTypes.exact({
1225
- type: PropTypes.oneOf(['authorize_applepay']).isRequired,
1226
- token: PropTypes.string.isRequired,
1227
- });
1228
-
1229
1224
  T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_googlepay'] = PropTypes.exact({
1230
1225
  type: PropTypes.oneOf(['authorize_googlepay']).isRequired,
1231
1226
  payment_data: PropTypes.object.isRequired,
@@ -1360,6 +1355,26 @@ T['io.flow.payment.gateway.v0.unions.device_fingerprint_details'] = PropTypes.on
1360
1355
  [T['io.flow.payment.gateway.v0.models.device_fingerprint_details_browser']],
1361
1356
  );
1362
1357
 
1358
+ T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_failure'] = PropTypes.exact({
1359
+ type: PropTypes.oneOf(['failure']).isRequired,
1360
+ placeholder: PropTypes.string,
1361
+ });
1362
+
1363
+ T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_success'] = PropTypes.exact({
1364
+ type: PropTypes.oneOf(['success']).isRequired,
1365
+ token: PropTypes.string.isRequired,
1366
+ });
1367
+
1368
+ T['io.flow.payment.gateway.v0.unions.payment_method_data_authorize_applepay_result'] = PropTypes.oneOfType([
1369
+ T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_success'],
1370
+ T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_failure'],
1371
+ ]);
1372
+
1373
+ T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay'] = PropTypes.exact({
1374
+ type: PropTypes.oneOf(['authorize_applepay']).isRequired,
1375
+ result: T['io.flow.payment.gateway.v0.unions.payment_method_data_authorize_applepay_result'].isRequired,
1376
+ });
1377
+
1363
1378
  T['io.flow.payment.gateway.v0.models.payment_method_card_number_cipher'] = PropTypes.exact({
1364
1379
  type: PropTypes.oneOf(['cipher']).isRequired,
1365
1380
  cipher: PropTypes.string.isRequired,
@@ -1869,22 +1884,6 @@ T['io.flow.shopify.markets.v0.models.shopify_order_metafield_form'] = PropTypes.
1869
1884
  description: PropTypes.string,
1870
1885
  });
1871
1886
 
1872
- T['io.flow.shopify.markets.v0.models.shopify_order_origin_location'] = PropTypes.exact({
1873
- id: PropTypes.number.isRequired,
1874
- country_code: PropTypes.string.isRequired,
1875
- province_code: PropTypes.string.isRequired,
1876
- name: PropTypes.string.isRequired,
1877
- address1: PropTypes.string.isRequired,
1878
- address2: PropTypes.string.isRequired,
1879
- city: PropTypes.string.isRequired,
1880
- zip: PropTypes.string.isRequired,
1881
- });
1882
-
1883
- T['io.flow.shopify.markets.v0.models.shopify_order_property'] = PropTypes.exact({
1884
- name: PropTypes.string.isRequired,
1885
- value: PropTypes.string.isRequired,
1886
- });
1887
-
1888
1887
  T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_status'] = PropTypes.oneOf(['pending', 'open', 'success', 'cancelled', 'error', 'failure']);
1889
1888
 
1890
1889
  T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_shipment_status'] = PropTypes.oneOf([
@@ -1998,6 +1997,91 @@ T['io.flow.shopify.markets.v0.models.fulfillment_order_line_item'] = PropTypes.e
1998
1997
  variant_id: PropTypes.number,
1999
1998
  });
2000
1999
 
2000
+ T['io.flow.shopify.markets.v0.models.shopify_payment_schedules'] = PropTypes.exact({
2001
+ amount: PropTypes.number,
2002
+ currency: PropTypes.string,
2003
+ issued_at: PropTypes.string,
2004
+ due_at: PropTypes.string,
2005
+ completed_at: PropTypes.string,
2006
+ expected_payment_method: PropTypes.string,
2007
+ });
2008
+
2009
+ T['io.flow.shopify.markets.v0.models.shopify_order_origin_location'] = PropTypes.exact({
2010
+ id: PropTypes.number.isRequired,
2011
+ country_code: PropTypes.string.isRequired,
2012
+ province_code: PropTypes.string.isRequired,
2013
+ name: PropTypes.string.isRequired,
2014
+ address1: PropTypes.string.isRequired,
2015
+ address2: PropTypes.string.isRequired,
2016
+ city: PropTypes.string.isRequired,
2017
+ zip: PropTypes.string.isRequired,
2018
+ });
2019
+
2020
+ T['io.flow.shopify.markets.v0.models.shopify_order_property'] = PropTypes.exact({
2021
+ name: PropTypes.string.isRequired,
2022
+ value: PropTypes.string.isRequired,
2023
+ });
2024
+
2025
+ T['io.flow.shopify.markets.v0.enums.shopify_tax_exemptions'] = PropTypes.oneOf([
2026
+ 'EXEMPT_ALL',
2027
+ 'CA_STATUS_CARD_EXEMPTION',
2028
+ 'CA_DIPLOMAT_EXEMPTION',
2029
+ 'CA_BC_RESELLER_EXEMPTION',
2030
+ 'CA_MB_RESELLER_EXEMPTION',
2031
+ 'CA_SK_RESELLER_EXEMPTION',
2032
+ 'CA_BC_COMMERCIAL_FISHERY_EXEMPTION',
2033
+ 'CA_MB_COMMERCIAL_FISHERY_EXEMPTION',
2034
+ 'CA_NS_COMMERCIAL_FISHERY_EXEMPTION',
2035
+ 'CA_PE_COMMERCIAL_FISHERY_EXEMPTION',
2036
+ 'CA_SK_COMMERCIAL_FISHERY_EXEMPTION',
2037
+ 'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION',
2038
+ 'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION',
2039
+ 'CA_BC_SUB_CONTRACTOR_EXEMPTION',
2040
+ 'CA_SK_SUB_CONTRACTOR_EXEMPTION',
2041
+ 'CA_BC_CONTRACTOR_EXEMPTION',
2042
+ 'CA_SK_CONTRACTOR_EXEMPTION',
2043
+ 'CA_ON_PURCHASE_EXEMPTION',
2044
+ 'CA_MB_FARMER_EXEMPTION',
2045
+ 'CA_NS_FARMER_EXEMPTION',
2046
+ 'CA_SK_FARMER_EXEMPTION',
2047
+ ]);
2048
+
2049
+ T['io.flow.shopify.markets.v0.enums.shopify_draft_order_status'] = PropTypes.oneOf([
2050
+ 'open',
2051
+ 'invoice_sent',
2052
+ 'completed',
2053
+ 'pending',
2054
+ 'authorized',
2055
+ 'partially_paid',
2056
+ 'paid',
2057
+ 'partially_refunded',
2058
+ 'refunded',
2059
+ 'voided',
2060
+ ]);
2061
+
2062
+ T['io.flow.shopify.markets.v0.models.shopify_payment_terms'] = PropTypes.exact({
2063
+ amount: PropTypes.number,
2064
+ currency: PropTypes.string,
2065
+ payment_terms_name: PropTypes.string,
2066
+ payment_terms_type: PropTypes.number,
2067
+ due_in_days: PropTypes.number,
2068
+ payment_schedules: T['io.flow.shopify.markets.v0.models.shopify_payment_schedules'],
2069
+ });
2070
+
2071
+ T['io.flow.shopify.markets.v0.models.shopify_order_id'] = PropTypes.exact({
2072
+ id: PropTypes.number.isRequired,
2073
+ });
2074
+
2075
+ T['io.flow.shopify.markets.v0.enums.shopify_discount_value_type'] = PropTypes.oneOf(['fixed_amount', 'percentage']);
2076
+
2077
+ T['io.flow.shopify.markets.v0.models.shopify_applied_discount'] = PropTypes.exact({
2078
+ title: PropTypes.string,
2079
+ description: PropTypes.string,
2080
+ value: PropTypes.string,
2081
+ value_type: T['io.flow.shopify.markets.v0.enums.shopify_discount_value_type'],
2082
+ amount: PropTypes.number,
2083
+ });
2084
+
2001
2085
  T['io.flow.shopify.markets.v0.models.shop'] = PropTypes.exact({
2002
2086
  id: PropTypes.number.isRequired,
2003
2087
  name: PropTypes.string.isRequired,
@@ -6603,12 +6687,6 @@ T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'] = PropTyp
6603
6687
  shipping_notification_id: PropTypes.string.isRequired,
6604
6688
  });
6605
6689
 
6606
- T['io.flow.internal.v0.models.proof_of_posting_fully_refunded'] = PropTypes.exact({
6607
- discriminator: PropTypes.oneOf(['fully_refunded']).isRequired,
6608
- capture_id: PropTypes.string.isRequired,
6609
- refund_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
6610
- });
6611
-
6612
6690
  T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'] = PropTypes.exact({
6613
6691
  discriminator: PropTypes.oneOf(['external']).isRequired,
6614
6692
  external_fulfillment_proof_id: PropTypes.string.isRequired,
@@ -6622,7 +6700,6 @@ T['io.flow.internal.v0.models.proof_of_posting_fulfilled'] = PropTypes.exact({
6622
6700
  T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
6623
6701
  T['io.flow.internal.v0.models.proof_of_posting_fulfilled'],
6624
6702
  T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
6625
- T['io.flow.internal.v0.models.proof_of_posting_fully_refunded'],
6626
6703
  T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
6627
6704
  T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
6628
6705
  ]);
@@ -7331,6 +7408,14 @@ T['io.flow.internal.v0.unions.feature_task_data'] = PropTypes.oneOfType([
7331
7408
  T['io.flow.internal.v0.models.feature_task_data_sync_organization'],
7332
7409
  ]);
7333
7410
 
7411
+ T['io.flow.internal.v0.models.shopify_markets_shop_deleted'] = PropTypes.exact({
7412
+ discriminator: PropTypes.oneOf(['shopify_markets_shop_deleted']).isRequired,
7413
+ event_id: PropTypes.string.isRequired,
7414
+ timestamp: PropTypes.string.isRequired,
7415
+ organization: PropTypes.string.isRequired,
7416
+ id: PropTypes.string.isRequired,
7417
+ });
7418
+
7334
7419
  T['io.flow.internal.v0.models.shopify_shop_deleted'] = PropTypes.exact({
7335
7420
  discriminator: PropTypes.oneOf(['shopify_shop_deleted']).isRequired,
7336
7421
  event_id: PropTypes.string.isRequired,
@@ -8146,9 +8231,7 @@ T['io.flow.internal.v0.models.usd_spot_rate_upserted'] = PropTypes.exact({
8146
8231
  usd_spot_rate: T['io.flow.internal.v0.models.usd_spot_rate'].isRequired,
8147
8232
  });
8148
8233
 
8149
- T['io.flow.internal.v0.models.processing_transaction_reference'] = PropTypes.exact({
8150
- id: PropTypes.string.isRequired,
8151
- });
8234
+ T['io.flow.internal.v0.enums.adjustment_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal']);
8152
8235
 
8153
8236
  T['io.flow.internal.v0.models.tracking_event'] = PropTypes.exact({
8154
8237
  timestamp: PropTypes.string.isRequired,
@@ -9809,6 +9892,18 @@ T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition']
9809
9892
  started_at: PropTypes.string.isRequired,
9810
9893
  });
9811
9894
 
9895
+ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
9896
+ age: PropTypes.number.isRequired,
9897
+ compliance_approved: PropTypes.bool.isRequired,
9898
+ compliance_full_review_required: PropTypes.bool.isRequired,
9899
+ application_received: PropTypes.string.isRequired,
9900
+ legal_name: PropTypes.string.isRequired,
9901
+ shop_name: PropTypes.string.isRequired,
9902
+ organization_id: PropTypes.string.isRequired,
9903
+ onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
9904
+ gmv: PropTypes.number.isRequired,
9905
+ });
9906
+
9812
9907
  T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
9813
9908
 
9814
9909
  T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
@@ -10135,6 +10230,41 @@ T['io.flow.shopify.markets.v0.models.shopify_order_customer'] = PropTypes.exact(
10135
10230
  default_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
10136
10231
  });
10137
10232
 
10233
+ T['io.flow.shopify.markets.v0.models.shopify_draft_order'] = PropTypes.exact({
10234
+ applied_discount: T['io.flow.shopify.markets.v0.models.shopify_applied_discount'].isRequired,
10235
+ billing_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
10236
+ completed_at: PropTypes.string,
10237
+ created_at: PropTypes.string,
10238
+ currency: PropTypes.string,
10239
+ customer: T['io.flow.shopify.markets.v0.models.shopify_order_customer'],
10240
+ email: PropTypes.string,
10241
+ id: PropTypes.number,
10242
+ invoice_sent_at: PropTypes.string,
10243
+ invoice_url: PropTypes.string,
10244
+ line_items: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_line_item']).isRequired,
10245
+ name: PropTypes.string,
10246
+ note: PropTypes.string,
10247
+ note_attributes: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_attribute']).isRequired,
10248
+ order_id: T['io.flow.shopify.markets.v0.models.shopify_order_id'].isRequired,
10249
+ payment_terms: T['io.flow.shopify.markets.v0.models.shopify_payment_terms'].isRequired,
10250
+ shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
10251
+ shipping_lines: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_shipping_line']).isRequired,
10252
+ source_name: PropTypes.string,
10253
+ subtotal_price: PropTypes.string,
10254
+ status: T['io.flow.shopify.markets.v0.enums.shopify_draft_order_status'],
10255
+ tags: PropTypes.string,
10256
+ tax_exemptions: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.enums.shopify_tax_exemptions']),
10257
+ tax_lines: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_tax_line']).isRequired,
10258
+ taxes_included: PropTypes.bool.isRequired,
10259
+ total_price: PropTypes.string,
10260
+ total_tax: PropTypes.string,
10261
+ updated_at: PropTypes.string,
10262
+ });
10263
+
10264
+ T['io.flow.shopify.markets.v0.models.shopify_draft_orders_wrapper'] = PropTypes.exact({
10265
+ draft_orders: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_draft_order']).isRequired,
10266
+ });
10267
+
10138
10268
  T['io.flow.shopify.markets.v0.models.shopify_order'] = PropTypes.exact({
10139
10269
  id: PropTypes.number.isRequired,
10140
10270
  order_number: PropTypes.number.isRequired,
@@ -10209,11 +10339,6 @@ T['io.flow.shopify.markets.v0.models.shopify_order_wrapper'] = PropTypes.exact({
10209
10339
  order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
10210
10340
  });
10211
10341
 
10212
- T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review_order_details'] = PropTypes.exact({
10213
- organization: PropTypes.string.isRequired,
10214
- shopify_order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
10215
- });
10216
-
10217
10342
  T['io.flow.internal.v0.models.shopify_markets_order'] = PropTypes.exact({
10218
10343
  id: PropTypes.string.isRequired,
10219
10344
  model: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
@@ -12609,12 +12734,13 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
12609
12734
  'refund',
12610
12735
  'dispute',
12611
12736
  'adjustment',
12737
+ 'reversal',
12612
12738
  'shipping_label',
12613
12739
  'shipping_label_service',
12614
12740
  'shipping_label_revenue_share',
12615
12741
  'platform_fee',
12616
12742
  'tax',
12617
- 'duties',
12743
+ 'duty',
12618
12744
  'other_adjustment',
12619
12745
  'tax_adjustment',
12620
12746
  'channel',
@@ -17270,6 +17396,14 @@ T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
17270
17396
  access_token_masked: PropTypes.string,
17271
17397
  });
17272
17398
 
17399
+ T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
17400
+ discriminator: PropTypes.oneOf(['shopify_markets_shop_upserted']).isRequired,
17401
+ event_id: PropTypes.string.isRequired,
17402
+ timestamp: PropTypes.string.isRequired,
17403
+ organization: PropTypes.string.isRequired,
17404
+ shopify_markets_shop: T['io.flow.internal.v0.models.shopify_markets_shop'].isRequired,
17405
+ });
17406
+
17273
17407
  T['io.flow.internal.v0.models.internal_channel_rate'] = PropTypes.exact({
17274
17408
  id: PropTypes.string.isRequired,
17275
17409
  channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
@@ -18371,6 +18505,16 @@ T['io.flow.session.v0.models.organization_session_authorization'] = PropTypes.ex
18371
18505
 
18372
18506
  T['io.flow.session.v0.unions.session_authorization'] = PropTypes.oneOfType([T['io.flow.session.v0.models.organization_session_authorization']]);
18373
18507
 
18508
+ T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
18509
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
18510
+
18511
+ transitions: PropTypes.arrayOf(
18512
+ T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
18513
+ ).isRequired,
18514
+
18515
+ current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
18516
+ });
18517
+
18374
18518
  T['io.flow.checkout.v0.models.checkout_token'] = PropTypes.exact({
18375
18519
  id: PropTypes.string.isRequired,
18376
18520
  organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
@@ -18459,13 +18603,11 @@ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'] = PropTypes.exa
18459
18603
  organization_reference: T['io.flow.common.v0.models.organization_reference'].isRequired,
18460
18604
  order_number: PropTypes.string.isRequired,
18461
18605
  monitor: T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'].isRequired,
18462
- created_at: PropTypes.string.isRequired,
18463
18606
  });
18464
18607
 
18465
18608
  T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'] = PropTypes.exact({
18466
18609
  id: PropTypes.string.isRequired,
18467
18610
  order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
18468
- order_details: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review_order_details'].isRequired,
18469
18611
  status: T['io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status'].isRequired,
18470
18612
  });
18471
18613
 
@@ -18548,29 +18690,6 @@ T['io.flow.internal.v0.models.organization_boolean_value_deleted'] = PropTypes.e
18548
18690
  value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
18549
18691
  });
18550
18692
 
18551
- T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
18552
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
18553
-
18554
- transitions: PropTypes.arrayOf(
18555
- T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
18556
- ).isRequired,
18557
-
18558
- current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
18559
- });
18560
-
18561
- T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
18562
- age: PropTypes.number.isRequired,
18563
- compliance_approved: PropTypes.bool.isRequired,
18564
- compliance_full_review_required: PropTypes.bool.isRequired,
18565
- application_received: PropTypes.string.isRequired,
18566
- legal_name: PropTypes.string.isRequired,
18567
- shop_name: PropTypes.string.isRequired,
18568
- organization_id: PropTypes.string.isRequired,
18569
- onboarding_state: T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'].isRequired,
18570
- onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
18571
- gmv: PropTypes.number.isRequired,
18572
- });
18573
-
18574
18693
  T['io.flow.common.v0.models.organization'] = PropTypes.exact({
18575
18694
  discriminator: PropTypes.oneOf(['organization']).isRequired,
18576
18695
  id: PropTypes.string.isRequired,
@@ -21592,6 +21711,7 @@ T['io.flow.label.v0.unions.shipping_label_form'] = PropTypes.oneOfType([
21592
21711
  ]);
21593
21712
 
21594
21713
  T['io.flow.internal.v0.models.label_summary'] = PropTypes.exact({
21714
+ id: PropTypes.string.isRequired,
21595
21715
  commercial_invoice: PropTypes.string,
21596
21716
  pdf: PropTypes.string,
21597
21717
  png: PropTypes.string,
@@ -22087,12 +22207,13 @@ T['io.flow.internal.v0.models.transaction_adjustment_form'] = PropTypes.exact({
22087
22207
  original_transaction_id: PropTypes.string.isRequired,
22088
22208
  description: PropTypes.string.isRequired,
22089
22209
  details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
22210
+ type: T['io.flow.internal.v0.enums.adjustment_transaction_type'],
22090
22211
  });
22091
22212
 
22092
22213
  T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
22093
22214
  id: PropTypes.string.isRequired,
22094
- original_transaction: T['io.flow.internal.v0.models.processing_transaction_reference'].isRequired,
22095
- adjustment_transaction: T['io.flow.internal.v0.models.processing_transaction_reference'].isRequired,
22215
+ original_transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
22216
+ adjustment_transaction: T['io.flow.internal.v0.models.transaction_reference'],
22096
22217
  description: PropTypes.string.isRequired,
22097
22218
  details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
22098
22219
  });
@@ -22303,6 +22424,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
22303
22424
  'invoice',
22304
22425
  'transfer',
22305
22426
  'adjustment',
22427
+ 'reversal',
22306
22428
  'capture',
22307
22429
  'refund',
22308
22430
  'virtual_card_capture',
@@ -23196,20 +23318,6 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
23196
23318
  gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
23197
23319
  });
23198
23320
 
23199
- T['io.flow.internal.v0.models.fee'] = PropTypes.exact({
23200
- value: T['io.flow.common.v0.models.price'].isRequired,
23201
- description: PropTypes.string,
23202
- });
23203
-
23204
- T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
23205
- processing: T['io.flow.internal.v0.models.fee'],
23206
- rate_lock: T['io.flow.internal.v0.models.fee'].isRequired,
23207
- mor: T['io.flow.internal.v0.models.fee'],
23208
- fx: T['io.flow.internal.v0.models.fee'],
23209
- duty_guarantee: T['io.flow.internal.v0.models.fee'],
23210
- transfer: T['io.flow.internal.v0.models.fee'],
23211
- });
23212
-
23213
23321
  T['io.flow.internal.v0.models.duty_transaction'] = PropTypes.exact({
23214
23322
  discriminator: PropTypes.oneOf(['duty_transaction']).isRequired,
23215
23323
  order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
@@ -23493,9 +23601,24 @@ T['io.flow.internal.v0.unions.checkout_info'] = PropTypes.oneOfType([
23493
23601
  T['io.flow.internal.v0.models.checkout_info_translations'],
23494
23602
  ]);
23495
23603
 
23604
+ T['io.flow.internal.v0.models.fee'] = PropTypes.exact({
23605
+ value: T['io.flow.common.v0.models.price'].isRequired,
23606
+ description: PropTypes.string,
23607
+ });
23608
+
23609
+ T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
23610
+ processing: T['io.flow.internal.v0.models.fee'],
23611
+ rate_lock: T['io.flow.internal.v0.models.fee'].isRequired,
23612
+ mor: T['io.flow.internal.v0.models.fee'],
23613
+ fx: T['io.flow.internal.v0.models.fee'],
23614
+ duty_guarantee: T['io.flow.internal.v0.models.fee'],
23615
+ transfer: T['io.flow.internal.v0.models.fee'],
23616
+ });
23617
+
23496
23618
  T['io.flow.internal.v0.models.channel_transaction'] = PropTypes.exact({
23497
23619
  discriminator: PropTypes.oneOf(['channel_transaction']).isRequired,
23498
23620
  transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
23621
+ fees: PropTypes.arrayOf(T['io.flow.internal.v0.models.fee']).isRequired,
23499
23622
  id: PropTypes.string.isRequired,
23500
23623
  type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
23501
23624
  status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
@@ -23553,6 +23676,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
23553
23676
  adjustment: T['io.flow.common.v0.models.price'].isRequired,
23554
23677
  capture: T['io.flow.common.v0.models.price'].isRequired,
23555
23678
  refund: T['io.flow.common.v0.models.price'].isRequired,
23679
+ reversal: T['io.flow.common.v0.models.price'].isRequired,
23556
23680
  credit_payment: T['io.flow.common.v0.models.price'].isRequired,
23557
23681
  fully_subsidized_order: T['io.flow.common.v0.models.price'].isRequired,
23558
23682
  virtual_card_capture: T['io.flow.common.v0.models.price'].isRequired,
@@ -24927,6 +25051,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
24927
25051
  T['io.flow.internal.v0.models.shopify_experience_short_id_deleted'],
24928
25052
  T['io.flow.internal.v0.models.shopify_markets_order_upserted'],
24929
25053
  T['io.flow.internal.v0.models.shopify_markets_order_deleted'],
25054
+ T['io.flow.internal.v0.models.shopify_markets_shop_upserted'],
25055
+ T['io.flow.internal.v0.models.shopify_markets_shop_deleted'],
24930
25056
  T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
24931
25057
  T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
24932
25058
  T['io.flow.internal.v0.models.stripe_authorization_deleted'],
@@ -25170,15 +25296,15 @@ T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
25170
25296
  ]);
25171
25297
 
25172
25298
  T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
25173
- T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'channel_initiated']);
25174
- T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'processing']);
25299
+ T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
25300
+ T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
25175
25301
  T['io.flow.internal.v0.enums.compliance_type'] = PropTypes.oneOf(['weee']);
25176
25302
  T['io.flow.internal.v0.enums.content_type_cast'] = PropTypes.oneOf(['markdown_to_html', 'markdown_to_text']);
25177
25303
  T['io.flow.internal.v0.enums.crossdock_tracking_status'] = PropTypes.oneOf(['notified', 'received', 'shipped']);
25178
25304
  T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['none', 'duty', 'vat', 'vat_and_duty']);
25179
25305
  T['io.flow.internal.v0.enums.dispute_evidence'] = PropTypes.oneOf(['proof_of_delivery', 'proof_of_fulfillment', 'other']);
25180
25306
  T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_card', 'service', 'digital_item', 'personalization']);
25181
- T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'duty']);
25307
+ T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
25182
25308
 
25183
25309
  T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25184
25310
  'adyen_authorization_deleted',
@@ -25425,6 +25551,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
25425
25551
  'shopify_experience_short_id_deleted',
25426
25552
  'shopify_markets_order_upserted',
25427
25553
  'shopify_markets_order_deleted',
25554
+ 'shopify_markets_shop_upserted',
25555
+ 'shopify_markets_shop_deleted',
25428
25556
  'shopify_monitoring_order_monitor_event_upserted',
25429
25557
  'shopify_monitoring_order_monitor_event_deleted',
25430
25558
  'stripe_authorization_deleted',
@@ -25456,13 +25584,13 @@ T['io.flow.internal.v0.enums.flow_app'] = PropTypes.oneOf(['console']);
25456
25584
  T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
25457
25585
  T['io.flow.internal.v0.enums.initial_input_data_source'] = PropTypes.oneOf(['session_persistence']);
25458
25586
  T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
25459
- T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'billable_label', 'fee', 'revenue_share']);
25587
+ T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
25460
25588
  T['io.flow.internal.v0.enums.marketing_gateway_feed_download_format'] = PropTypes.oneOf(['tsv', 'csv', 'txt']);
25461
25589
  T['io.flow.internal.v0.enums.marketing_gateway_product_status'] = PropTypes.oneOf(['approved', 'not_approved', 'pending', 'not_found', 'excluded']);
25462
25590
  T['io.flow.internal.v0.enums.onboarding_automation_process_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
25463
25591
  T['io.flow.internal.v0.enums.onboarding_automation_task_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
25464
25592
  T['io.flow.internal.v0.enums.order_lifecycle_event'] = PropTypes.oneOf(['order_placed', 'ready_to_fulfill']);
25465
- T['io.flow.internal.v0.enums.order_transaction_type'] = PropTypes.oneOf(['adjustment', 'order_service']);
25593
+ T['io.flow.internal.v0.enums.order_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'order_service']);
25466
25594
  T['io.flow.internal.v0.enums.output_style'] = PropTypes.oneOf(['flow', 'shopify_p1']);
25467
25595
  T['io.flow.internal.v0.enums.preferred_billing_schedule'] = PropTypes.oneOf(['monthly', 'bi-monthly']);
25468
25596
 
@@ -25477,6 +25605,7 @@ T['io.flow.internal.v0.enums.price_selector'] = PropTypes.oneOf(['minimum', 'max
25477
25605
 
25478
25606
  T['io.flow.internal.v0.enums.processing_transaction_type'] = PropTypes.oneOf([
25479
25607
  'adjustment',
25608
+ 'reversal',
25480
25609
  'capture',
25481
25610
  'refund',
25482
25611
  'fully_subsidized_order',
@@ -25551,7 +25680,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
25551
25680
  'ratecard',
25552
25681
  ]);
25553
25682
 
25554
- T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'tax']);
25683
+ T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax']);
25555
25684
  T['io.flow.internal.v0.enums.timeseries_type'] = PropTypes.oneOf(['daily', 'weekly', 'monthly', 'yearly']);
25556
25685
  T['io.flow.internal.v0.enums.tracking_integration_type'] = PropTypes.oneOf(['api', 'bulk', 'aftership']);
25557
25686
 
@@ -25891,6 +26020,11 @@ T['io.flow.internal.v0.models.google_shopping_setting'] = PropTypes.exact({
25891
26020
  created_by_email: PropTypes.string.isRequired,
25892
26021
  });
25893
26022
 
26023
+ T['io.flow.internal.v0.models.hs6'] = PropTypes.exact({
26024
+ code: PropTypes.string.isRequired,
26025
+ description: PropTypes.string.isRequired,
26026
+ });
26027
+
25894
26028
  T['io.flow.internal.v0.models.hs6_metadata'] = PropTypes.exact({
25895
26029
  description: PropTypes.string.isRequired,
25896
26030
  });
@@ -26124,6 +26258,10 @@ T['io.flow.internal.v0.models.prioritized_center_reference'] = PropTypes.exact({
26124
26258
  position: PropTypes.number.isRequired,
26125
26259
  });
26126
26260
 
26261
+ T['io.flow.internal.v0.models.processing_transaction_reference'] = PropTypes.exact({
26262
+ id: PropTypes.string.isRequired,
26263
+ });
26264
+
26127
26265
  T['io.flow.internal.v0.models.product_detail_settings_form'] = PropTypes.exact({
26128
26266
  keys: PropTypes.arrayOf(PropTypes.string).isRequired,
26129
26267
  });
@@ -26870,6 +27008,10 @@ T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_order_status'] = P
26870
27008
 
26871
27009
  T['io.flow.shopify.markets.v0.enums.shopify_order_status_type'] = PropTypes.oneOf(['open', 'closed', 'cancelled', 'any']);
26872
27010
 
27011
+ T['io.flow.shopify.markets.v0.models.shopify_draft_order_count'] = PropTypes.exact({
27012
+ count: PropTypes.number.isRequired,
27013
+ });
27014
+
26873
27015
  T['io.flow.shopify.markets.v0.models.shopify_error'] = PropTypes.exact({
26874
27016
  errors: PropTypes.object.isRequired,
26875
27017
  });
@@ -26878,6 +27020,10 @@ T['io.flow.shopify.markets.v0.models.shopify_location_delete'] = PropTypes.exact
26878
27020
  id: PropTypes.number.isRequired,
26879
27021
  });
26880
27022
 
27023
+ T['io.flow.shopify.markets.v0.models.shopify_order_count'] = PropTypes.exact({
27024
+ count: PropTypes.number.isRequired,
27025
+ });
27026
+
26881
27027
  T['io.flow.shopify.markets.v0.models.shopify_webhook_shop_redact'] = PropTypes.exact({
26882
27028
  shop_id: PropTypes.number.isRequired,
26883
27029
  shop_domain: PropTypes.string.isRequired,
@@ -27322,6 +27468,7 @@ export const adjustmentDetailsAmountPercentage = T['io.flow.internal.v0.models.a
27322
27468
  export const adjustmentDetailsProcessingTransaction = T['io.flow.internal.v0.models.adjustment_details_processing_transaction'];
27323
27469
  export const adjustmentDetailsProcessingTransactionFee = T['io.flow.internal.v0.models.adjustment_details_processing_transaction_fee'];
27324
27470
  export const adjustmentDetailsProcessingTransactionWithholding = T['io.flow.internal.v0.models.adjustment_details_processing_transaction_withholding'];
27471
+ export const adjustmentTransactionType = T['io.flow.internal.v0.enums.adjustment_transaction_type'];
27325
27472
  export const adyenAccount = T['io.flow.internal.v0.models.adyen_account'];
27326
27473
  export const adyenAccountModificationForm = T['io.flow.internal.v0.models.adyen_account_modification_form'];
27327
27474
  export const adyenAccountPutForm = T['io.flow.internal.v0.models.adyen_account_put_form'];
@@ -28501,6 +28648,7 @@ export const heapWebsocketRequest = T['io.flow.internal.v0.models.heap_websocket
28501
28648
  export const heapWebsocketResponse = T['io.flow.internal.v0.models.heap_websocket_response'];
28502
28649
  export const heapWebsocketRetry = T['io.flow.internal.v0.models.heap_websocket_retry'];
28503
28650
  export const href = T['io.flow.internal.v0.models.href'];
28651
+ export const hs6 = T['io.flow.internal.v0.models.hs6'];
28504
28652
  export const hs6Metadata = T['io.flow.internal.v0.models.hs6_metadata'];
28505
28653
  export const httpMethod = T['io.flow.internal.v0.enums.http_method'];
28506
28654
  export const hybrisCatalogItemsImportRequest = T['io.flow.internal.v0.models.hybris_catalog_items_import_request'];
@@ -28936,7 +29084,6 @@ export const promptTarget = T['io.flow.internal.v0.enums.prompt_target'];
28936
29084
  export const proofOfPosting = T['io.flow.internal.v0.unions.proof_of_posting'];
28937
29085
  export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'];
28938
29086
  export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
28939
- export const proofOfPostingFullyRefunded = T['io.flow.internal.v0.models.proof_of_posting_fully_refunded'];
28940
29087
  export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
28941
29088
  export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
28942
29089
  export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
@@ -29082,8 +29229,10 @@ export const shopifyMarketsOrder = T['io.flow.internal.v0.models.shopify_markets
29082
29229
  export const shopifyMarketsOrderDeleted = T['io.flow.internal.v0.models.shopify_markets_order_deleted'];
29083
29230
  export const shopifyMarketsOrderUpserted = T['io.flow.internal.v0.models.shopify_markets_order_upserted'];
29084
29231
  export const shopifyMarketsShop = T['io.flow.internal.v0.models.shopify_markets_shop'];
29232
+ export const shopifyMarketsShopDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_deleted'];
29085
29233
  export const shopifyMarketsShopForm = T['io.flow.internal.v0.models.shopify_markets_shop_form'];
29086
29234
  export const shopifyMarketsShopSummary = T['io.flow.internal.v0.models.shopify_markets_shop_summary'];
29235
+ export const shopifyMarketsShopUpserted = T['io.flow.internal.v0.models.shopify_markets_shop_upserted'];
29087
29236
  export const shopifyMarketsSubsidiaryCompany = T['io.flow.internal.v0.models.shopify_markets_subsidiary_company'];
29088
29237
  export const shopifyMarketsSync = T['io.flow.internal.v0.models.shopify_markets_sync'];
29089
29238
  export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_markets_trade_sector'];
@@ -29097,7 +29246,6 @@ export const shopifyMonitoringOrderMonitor = T['io.flow.internal.v0.models.shopi
29097
29246
  export const shopifyMonitoringOrderMonitorEventDeleted = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'];
29098
29247
  export const shopifyMonitoringOrderMonitorEventUpserted = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'];
29099
29248
  export const shopifyMonitoringOrderMonitorReview = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'];
29100
- export const shopifyMonitoringOrderMonitorReviewOrderDetails = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review_order_details'];
29101
29249
  export const shopifyMonitoringOrderMonitorType = T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'];
29102
29250
  export const shopifyMonitoringTrackingField = T['io.flow.internal.v0.enums.shopify_monitoring_tracking_field'];
29103
29251
  export const shopifyMonitoringTrackingNumber = T['io.flow.internal.v0.models.shopify_monitoring_tracking_number'];