@flowio/api-internal-prop-types 9.24.131 → 9.24.135

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.
@@ -70,11 +70,13 @@ T['io.flow.sellability.v0.enums.sellability_screening_mode'] = PropTypes.oneOf([
70
70
  T['io.flow.sellability.v0.models.sellability_reason_with_regions'] = PropTypes.exact({
71
71
  reason: PropTypes.string.isRequired,
72
72
  regions: PropTypes.arrayOf(PropTypes.string).isRequired,
73
+ review_status: PropTypes.string,
73
74
  });
74
75
 
75
76
  T['io.flow.sellability.v0.models.sellability_needs_action_attributes'] = PropTypes.exact({
76
77
  reason_code: PropTypes.string.isRequired,
77
78
  category_metafield_handles: PropTypes.arrayOf(PropTypes.string).isRequired,
79
+ category_metafield_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
78
80
  require_msds: PropTypes.bool,
79
81
  });
80
82
 
@@ -106,6 +108,18 @@ T['io.flow.organization.onboarding.state.v0.enums.merchant_disabled_reason'] = P
106
108
  T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
107
109
  T['io.flow.catalog.return.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
108
110
 
111
+ T['io.flow.harmonization.v0.models.harmonization_tariff_code'] = PropTypes.exact({
112
+ tariff_code: PropTypes.string.isRequired,
113
+ destination: PropTypes.string.isRequired,
114
+ });
115
+
116
+ T['io.flow.harmonization.v0.models.tariff_codes'] = PropTypes.exact({
117
+ item_number: PropTypes.string.isRequired,
118
+ product_id: PropTypes.string.isRequired,
119
+ hs6_code: PropTypes.string.isRequired,
120
+ codes: PropTypes.arrayOf(T['io.flow.harmonization.v0.models.harmonization_tariff_code']).isRequired,
121
+ });
122
+
109
123
  T['io.flow.billing.v0.models.bank_account_form_simple'] = PropTypes.exact({
110
124
  discriminator: PropTypes.oneOf(['simple']).isRequired,
111
125
  routing_number: PropTypes.string.isRequired,
@@ -154,12 +168,30 @@ T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = Pro
154
168
  tracking_number: PropTypes.string.isRequired,
155
169
  });
156
170
 
171
+ T['io.flow.billing.v0.models.transaction_metadata_merchant_fee_item'] = PropTypes.exact({
172
+ type: PropTypes.string.isRequired,
173
+ amount: PropTypes.number.isRequired,
174
+ local_amount: PropTypes.number,
175
+ description: PropTypes.string,
176
+ });
177
+
157
178
  T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropTypes.exact({
158
179
  transaction_id: PropTypes.string.isRequired,
159
180
  });
160
181
 
161
182
  T['io.flow.billing.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
162
183
 
184
+ T['io.flow.billing.v0.models.transaction_metadata_flat_rate_label'] = PropTypes.exact({
185
+ discriminator: PropTypes.oneOf(['flat_rate_label']).isRequired,
186
+ flat_rate: PropTypes.number,
187
+ coefficient: PropTypes.number,
188
+ });
189
+
190
+ T['io.flow.billing.v0.models.transaction_metadata_merchant_fee'] = PropTypes.exact({
191
+ discriminator: PropTypes.oneOf(['merchant_fee']).isRequired,
192
+ items: PropTypes.arrayOf(T['io.flow.billing.v0.models.transaction_metadata_merchant_fee_item']).isRequired,
193
+ });
194
+
163
195
  T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
164
196
  discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
165
197
  id: PropTypes.string,
@@ -407,7 +439,7 @@ T['io.flow.inventory.v0.models.inventory_follow_ecommerce_platform'] = PropTypes
407
439
 
408
440
  T['io.flow.inventory.v0.models.inventory_unlimited'] = PropTypes.exact({
409
441
  discriminator: PropTypes.oneOf(['inventory_unlimited']).isRequired,
410
- placeholder: PropTypes.string,
442
+ placeholder: PropTypes.string.isRequired,
411
443
  });
412
444
 
413
445
  T['io.flow.inventory.v0.models.inventory_stock'] = PropTypes.exact({
@@ -812,6 +844,12 @@ T['io.flow.ratecard.v0.models.ratecard_rate'] = PropTypes.exact({
812
844
  weight: PropTypes.number.isRequired,
813
845
  });
814
846
 
847
+ T['io.flow.ratecard.v0.models.ratecard_data'] = PropTypes.exact({
848
+ dhlParcelDistributionCenter: PropTypes.string,
849
+ glbeRatecardMetadataLaneIdentifier: PropTypes.string,
850
+ pickupCenter: PropTypes.string,
851
+ });
852
+
815
853
  T['io.flow.label.v0.enums.commercial_invoice_mode'] = PropTypes.oneOf(['direct', 'indirect']);
816
854
 
817
855
  T['io.flow.ratecard.v0.models.fuel_surcharge_percent'] = PropTypes.exact({
@@ -1353,6 +1391,7 @@ T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_deleted
1353
1391
 
1354
1392
  T['io.flow.shopify.markets.internal.v0.models.shopify_test_order'] = PropTypes.exact({
1355
1393
  id: PropTypes.string.isRequired,
1394
+ submitted_at: PropTypes.string.isRequired,
1356
1395
  });
1357
1396
 
1358
1397
  T['io.flow.shopify.markets.internal.event.v0.models.shopify_test_order_upserted'] = PropTypes.exact({
@@ -1569,7 +1608,7 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance_failure'] = PropT
1569
1608
  reason: PropTypes.string.isRequired,
1570
1609
  });
1571
1610
 
1572
- T['io.flow.order.price.v0.enums.order_price_fee_type'] = PropTypes.oneOf(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product']);
1611
+ T['io.flow.order.price.v0.enums.order_price_fee_type'] = PropTypes.oneOf(['service', 'fx', 'tax', 'duties', 'tax_and_duties', 'product', 'mor_tax']);
1573
1612
 
1574
1613
  T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
1575
1614
  'adjustment',
@@ -3378,6 +3417,7 @@ T['io.flow.adyen.v0.models.adyen_dispute_event'] = PropTypes.exact({
3378
3417
  });
3379
3418
 
3380
3419
  T['io.flow.consumer.invoice.v0.enums.tax_jurisdiction_type'] = PropTypes.oneOf(['country', 'province']);
3420
+ T['io.flow.consumer.invoice.v0.enums.fee_invoice_type'] = PropTypes.oneOf(['mor_invoice', 'label_invoice', 'mor_credit_memo', 'label_credit_memo']);
3381
3421
 
3382
3422
  T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount_form'] = PropTypes.exact({
3383
3423
  discriminator: PropTypes.oneOf(['discount']).isRequired,
@@ -3561,6 +3601,7 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason']
3561
3601
  'unsupported_order_edit',
3562
3602
  'order_allocation_duties_mismatch',
3563
3603
  'order_missing',
3604
+ 'organization_deactivated',
3564
3605
  ]);
3565
3606
 
3566
3607
  T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
@@ -3568,28 +3609,6 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTy
3568
3609
  rejection_reason: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'],
3569
3610
  });
3570
3611
 
3571
- T['io.flow.shopify.markets.internal.v0.enums.tax_and_duty_inclusivity_setting'] = PropTypes.oneOf([
3572
- 'duty_exclusive_tax_exclusive',
3573
- 'duty_inclusive_tax_exclusive',
3574
- 'duty_exclusive_tax_inclusive',
3575
- 'duty_inclusive_tax_inclusive',
3576
- ]);
3577
-
3578
- T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
3579
- id: PropTypes.string.isRequired,
3580
- organization_id: PropTypes.string.isRequired,
3581
- shopify_order_id: PropTypes.string.isRequired,
3582
- order_number: PropTypes.string.isRequired,
3583
- tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
3584
- });
3585
-
3586
- T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
3587
- discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
3588
- event_id: PropTypes.string.isRequired,
3589
- timestamp: PropTypes.string.isRequired,
3590
- order_tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
3591
- });
3592
-
3593
3612
  T['io.flow.shopify.markets.internal.v0.enums.sellability_status'] = PropTypes.oneOf(['complete', 'incomplete']);
3594
3613
 
3595
3614
  T['io.flow.shopify.markets.internal.v0.models.channel_organization_sellability_status_put_form'] = PropTypes.exact({
@@ -7203,9 +7222,16 @@ T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'] = PropTyp
7203
7222
  selection_stratey: T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'].isRequired,
7204
7223
  });
7205
7224
 
7206
- T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(
7207
- ['flow-usa', 'flow-irl', 'flow-can', 'ge-usa', 'ge-can', 'ge-gbr', 'ge-irl'],
7208
- );
7225
+ T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf([
7226
+ 'flow-usa',
7227
+ 'flow-irl',
7228
+ 'flow-can',
7229
+ 'ge-usa',
7230
+ 'ge-can',
7231
+ 'ge-can-ship',
7232
+ 'ge-gbr',
7233
+ 'ge-irl',
7234
+ ]);
7209
7235
 
7210
7236
  T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
7211
7237
  T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
@@ -8275,25 +8301,6 @@ T['io.flow.merchant.onboarding.v0.models.monthly_average'] = PropTypes.exact({
8275
8301
  number_transactions: PropTypes.number,
8276
8302
  });
8277
8303
 
8278
- T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
8279
- company: PropTypes.string,
8280
- email: PropTypes.string,
8281
- phone: PropTypes.string,
8282
- });
8283
-
8284
- T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner'] = PropTypes.exact({
8285
- warehouse_address: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'].isRequired,
8286
- warehouse_url: PropTypes.string,
8287
- location: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'],
8288
-
8289
- scheduled_pickups: PropTypes.arrayOf(
8290
- T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_scheduled_pickup'],
8291
- ),
8292
-
8293
- operations_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'].isRequired,
8294
- center_id: PropTypes.string,
8295
- });
8296
-
8297
8304
  T['io.flow.merchant.onboarding.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
8298
8305
  name: PropTypes.string.isRequired,
8299
8306
  dob: PropTypes.string.isRequired,
@@ -8512,11 +8519,6 @@ T['io.flow.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
8512
8519
  T['io.flow.internal.v0.models.generate_load_multiple_orgs'],
8513
8520
  ]);
8514
8521
 
8515
- T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'] = PropTypes.exact({
8516
- discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_percent_put_form']).isRequired,
8517
- percent: PropTypes.number.isRequired,
8518
- });
8519
-
8520
8522
  T['io.flow.internal.v0.models.feature_task_data_sync_organization'] = PropTypes.exact({
8521
8523
  discriminator: PropTypes.oneOf(['feature_task_data_sync_organization']).isRequired,
8522
8524
  organization_id: PropTypes.string.isRequired,
@@ -8594,59 +8596,32 @@ T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.ex
8594
8596
  id: PropTypes.string.isRequired,
8595
8597
  });
8596
8598
 
8597
- T['io.flow.internal.v0.models.gabriel_item_deleted'] = PropTypes.exact({
8598
- discriminator: PropTypes.oneOf(['gabriel_item_deleted']).isRequired,
8599
- event_id: PropTypes.string.isRequired,
8600
- timestamp: PropTypes.string.isRequired,
8601
- id: PropTypes.string.isRequired,
8602
- });
8603
-
8604
- T['io.flow.internal.v0.models.ansh_item_deleted'] = PropTypes.exact({
8605
- discriminator: PropTypes.oneOf(['ansh_item_deleted']).isRequired,
8606
- event_id: PropTypes.string.isRequired,
8607
- timestamp: PropTypes.string.isRequired,
8608
- id: PropTypes.string.isRequired,
8609
- });
8610
-
8611
- T['io.flow.internal.v0.models.aldo_item_deleted'] = PropTypes.exact({
8612
- discriminator: PropTypes.oneOf(['aldo_item_deleted']).isRequired,
8613
- event_id: PropTypes.string.isRequired,
8614
- timestamp: PropTypes.string.isRequired,
8615
- id: PropTypes.string.isRequired,
8616
- });
8617
-
8618
- T['io.flow.internal.v0.models.rohan_item_deleted'] = PropTypes.exact({
8619
- discriminator: PropTypes.oneOf(['rohan_item_deleted']).isRequired,
8620
- event_id: PropTypes.string.isRequired,
8621
- timestamp: PropTypes.string.isRequired,
8622
- id: PropTypes.string.isRequired,
8623
- });
8624
-
8625
- T['io.flow.internal.v0.models.niall_item_deleted'] = PropTypes.exact({
8626
- discriminator: PropTypes.oneOf(['niall_item_deleted']).isRequired,
8599
+ T['io.flow.internal.v0.models.bojana_item_deleted'] = PropTypes.exact({
8600
+ discriminator: PropTypes.oneOf(['bojana_item_deleted']).isRequired,
8627
8601
  event_id: PropTypes.string.isRequired,
8628
8602
  timestamp: PropTypes.string.isRequired,
8629
8603
  id: PropTypes.string.isRequired,
8630
8604
  });
8631
8605
 
8632
- T['io.flow.internal.v0.models.hosein_item_deleted'] = PropTypes.exact({
8633
- discriminator: PropTypes.oneOf(['hosein_item_deleted']).isRequired,
8606
+ T['io.flow.internal.v0.models.chenglin_item_deleted'] = PropTypes.exact({
8607
+ discriminator: PropTypes.oneOf(['chenglin_item_deleted']).isRequired,
8634
8608
  event_id: PropTypes.string.isRequired,
8635
8609
  timestamp: PropTypes.string.isRequired,
8636
8610
  id: PropTypes.string.isRequired,
8637
8611
  });
8638
8612
 
8639
- T['io.flow.internal.v0.models.sarvesh_item_deleted'] = PropTypes.exact({
8640
- discriminator: PropTypes.oneOf(['sarvesh_item_deleted']).isRequired,
8613
+ T['io.flow.internal.v0.models.gabriel_item_deleted'] = PropTypes.exact({
8614
+ discriminator: PropTypes.oneOf(['gabriel_item_deleted']).isRequired,
8641
8615
  event_id: PropTypes.string.isRequired,
8642
8616
  timestamp: PropTypes.string.isRequired,
8643
8617
  id: PropTypes.string.isRequired,
8644
8618
  });
8645
8619
 
8646
- T['io.flow.internal.v0.models.anirban_item_deleted'] = PropTypes.exact({
8647
- discriminator: PropTypes.oneOf(['anirban_item_deleted']).isRequired,
8620
+ T['io.flow.internal.v0.models.b2b_tax_transaction_deleted'] = PropTypes.exact({
8621
+ discriminator: PropTypes.oneOf(['b2b_tax_transaction_deleted']).isRequired,
8648
8622
  event_id: PropTypes.string.isRequired,
8649
8623
  timestamp: PropTypes.string.isRequired,
8624
+ organization: PropTypes.string.isRequired,
8650
8625
  id: PropTypes.string.isRequired,
8651
8626
  });
8652
8627
 
@@ -8902,11 +8877,10 @@ T['io.flow.internal.v0.models.organization_restriction_status_deleted'] = PropTy
8902
8877
  id: PropTypes.string.isRequired,
8903
8878
  });
8904
8879
 
8905
- T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'] = PropTypes.exact({
8906
- discriminator: PropTypes.oneOf(['ratecard_standard_configuration_deleted']).isRequired,
8880
+ T['io.flow.internal.v0.models.product_sellability_result_deleted'] = PropTypes.exact({
8881
+ discriminator: PropTypes.oneOf(['product_sellability_result_deleted']).isRequired,
8907
8882
  event_id: PropTypes.string.isRequired,
8908
8883
  timestamp: PropTypes.string.isRequired,
8909
- organization: PropTypes.string.isRequired,
8910
8884
  id: PropTypes.string.isRequired,
8911
8885
  });
8912
8886
 
@@ -8918,6 +8892,13 @@ T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'] = Prop
8918
8892
  id: PropTypes.string.isRequired,
8919
8893
  });
8920
8894
 
8895
+ T['io.flow.internal.v0.models.preonboarding_sellability_result_deleted'] = PropTypes.exact({
8896
+ discriminator: PropTypes.oneOf(['preonboarding_sellability_result_deleted']).isRequired,
8897
+ event_id: PropTypes.string.isRequired,
8898
+ timestamp: PropTypes.string.isRequired,
8899
+ id: PropTypes.string.isRequired,
8900
+ });
8901
+
8921
8902
  T['io.flow.internal.v0.models.paypal_dispute_deleted'] = PropTypes.exact({
8922
8903
  discriminator: PropTypes.oneOf(['paypal_dispute_deleted']).isRequired,
8923
8904
  event_id: PropTypes.string.isRequired,
@@ -9257,6 +9238,22 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
9257
9238
  id: PropTypes.string.isRequired,
9258
9239
  });
9259
9240
 
9241
+ T['io.flow.internal.v0.models.mor_cost_deleted'] = PropTypes.exact({
9242
+ discriminator: PropTypes.oneOf(['mor_cost_deleted']).isRequired,
9243
+ event_id: PropTypes.string.isRequired,
9244
+ timestamp: PropTypes.string.isRequired,
9245
+ organization: PropTypes.string.isRequired,
9246
+ id: PropTypes.string.isRequired,
9247
+ });
9248
+
9249
+ T['io.flow.internal.v0.models.shipping_cost_deleted'] = PropTypes.exact({
9250
+ discriminator: PropTypes.oneOf(['shipping_cost_deleted']).isRequired,
9251
+ event_id: PropTypes.string.isRequired,
9252
+ timestamp: PropTypes.string.isRequired,
9253
+ organization: PropTypes.string.isRequired,
9254
+ id: PropTypes.string.isRequired,
9255
+ });
9256
+
9260
9257
  T['io.flow.internal.v0.models.bank_payment_order_deleted'] = PropTypes.exact({
9261
9258
  discriminator: PropTypes.oneOf(['bank_payment_order_deleted']).isRequired,
9262
9259
  event_id: PropTypes.string.isRequired,
@@ -9500,14 +9497,6 @@ T['io.flow.internal.v0.models.catalog_settings_deleted'] = PropTypes.exact({
9500
9497
  id: PropTypes.string.isRequired,
9501
9498
  });
9502
9499
 
9503
- T['io.flow.internal.v0.models.label_generation_settings_deleted'] = PropTypes.exact({
9504
- discriminator: PropTypes.oneOf(['label_generation_settings_deleted']).isRequired,
9505
- event_id: PropTypes.string.isRequired,
9506
- timestamp: PropTypes.string.isRequired,
9507
- organization: PropTypes.string.isRequired,
9508
- id: PropTypes.string.isRequired,
9509
- });
9510
-
9511
9500
  T['io.flow.internal.v0.models.carrier_account_deleted'] = PropTypes.exact({
9512
9501
  discriminator: PropTypes.oneOf(['carrier_account_deleted']).isRequired,
9513
9502
  event_id: PropTypes.string.isRequired,
@@ -9689,6 +9678,14 @@ T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
9689
9678
  id: PropTypes.string.isRequired,
9690
9679
  });
9691
9680
 
9681
+ T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'] = PropTypes.exact({
9682
+ discriminator: PropTypes.oneOf(['adaptive_shipping_rate_deleted']).isRequired,
9683
+ event_id: PropTypes.string.isRequired,
9684
+ timestamp: PropTypes.string.isRequired,
9685
+ organization: PropTypes.string.isRequired,
9686
+ id: PropTypes.string.isRequired,
9687
+ });
9688
+
9692
9689
  T['io.flow.internal.v0.models.console_mark_unresolvable_form'] = PropTypes.exact({
9693
9690
  discriminator: PropTypes.oneOf(['console_mark_unresolvable_form']).isRequired,
9694
9691
  order_number: PropTypes.string.isRequired,
@@ -10029,6 +10026,7 @@ T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf
10029
10026
  'wyol_shipment_above_de_min',
10030
10027
  'full_refund_without_shipment',
10031
10028
  'unfulfilled_order_above_de_min',
10029
+ 'order_cancellation_without_capture',
10032
10030
  ]);
10033
10031
 
10034
10032
  T['io.flow.billing.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
@@ -10416,6 +10414,7 @@ T['io.flow.internal.v0.models.fulfillment_subsidy_breakdown'] = PropTypes.exact(
10416
10414
 
10417
10415
  T['io.flow.internal.v0.models.shopify_test_order'] = PropTypes.exact({
10418
10416
  id: PropTypes.string.isRequired,
10417
+ submitted_at: PropTypes.string.isRequired,
10419
10418
  });
10420
10419
 
10421
10420
  T['io.flow.internal.v0.models.shopify_test_order_upserted'] = PropTypes.exact({
@@ -10426,6 +10425,174 @@ T['io.flow.internal.v0.models.shopify_test_order_upserted'] = PropTypes.exact({
10426
10425
  shopify_test_order: T['io.flow.internal.v0.models.shopify_test_order'].isRequired,
10427
10426
  });
10428
10427
 
10428
+ T['io.flow.internal.v0.models.shopify_contact_details'] = PropTypes.exact({
10429
+ company: PropTypes.string,
10430
+ email: PropTypes.string,
10431
+ name: PropTypes.string,
10432
+ phone: PropTypes.string,
10433
+ });
10434
+
10435
+ T['io.flow.internal.v0.models.shopify_address'] = PropTypes.exact({
10436
+ address1: PropTypes.string.isRequired,
10437
+ city: PropTypes.string.isRequired,
10438
+ country_code: PropTypes.string.isRequired,
10439
+ address2: PropTypes.string,
10440
+ postal_code: PropTypes.string,
10441
+ province: PropTypes.string,
10442
+ });
10443
+
10444
+ T['io.flow.internal.v0.models.shopify_rate_pickup_point'] = PropTypes.exact({
10445
+ partner_reference_id: PropTypes.string.isRequired,
10446
+ });
10447
+
10448
+ T['io.flow.internal.v0.models.shopify_shipping_location'] = PropTypes.exact({
10449
+ address: T['io.flow.internal.v0.models.shopify_address'].isRequired,
10450
+ contact_details: T['io.flow.internal.v0.models.shopify_contact_details'].isRequired,
10451
+ });
10452
+
10453
+ T['io.flow.internal.v0.enums.shopify_delivery_method_type'] = PropTypes.oneOf(['SHIPPING', 'PICKUP_POINT']);
10454
+
10455
+ T['io.flow.internal.v0.models.shopify_shipment_rate_shipper'] = PropTypes.exact({
10456
+ account_id: PropTypes.string.isRequired,
10457
+ carrier_account_reference_id: PropTypes.string.isRequired,
10458
+ byoa: PropTypes.bool.isRequired,
10459
+ });
10460
+
10461
+ T['io.flow.internal.v0.enums.shopify_unavailable_rate_reason_code'] = PropTypes.oneOf([
10462
+ 'SERVICE_NOT_AVAILABLE',
10463
+ 'TEMPORARILY_UNAVAILABLE',
10464
+ 'TIMEOUT',
10465
+ 'RATE_LIMIT_EXCEEDED',
10466
+ 'SYSTEM_ERROR',
10467
+ 'THIRD_PARTY_SYSTEM_ERROR',
10468
+ 'FAILED_VALIDATION',
10469
+ 'INVALID_FORMAT',
10470
+ 'MISSING_VALUE',
10471
+ 'OUT_OF_RANGE',
10472
+ ]);
10473
+
10474
+ T['io.flow.internal.v0.models.shopify_shipment_rate_reason'] = PropTypes.exact({
10475
+ code: T['io.flow.internal.v0.enums.shopify_unavailable_rate_reason_code'].isRequired,
10476
+ field: PropTypes.string,
10477
+ message: PropTypes.string,
10478
+ });
10479
+
10480
+ T['io.flow.internal.v0.models.shopify_shipment_rate_unavailable'] = PropTypes.exact({
10481
+ carrier_service_id: PropTypes.string.isRequired,
10482
+ reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_reason']).isRequired,
10483
+ });
10484
+
10485
+ T['io.flow.internal.v0.enums.shopify_package_type'] = PropTypes.oneOf(['BOX', 'ENVELOPE', 'SOFT_PACK', 'TUBE', 'CARRIER_PACKAGING']);
10486
+
10487
+ T['io.flow.internal.v0.enums.shopify_shipment_option_code'] = PropTypes.oneOf([
10488
+ 'adult_signature_required',
10489
+ 'delivery_confirmation',
10490
+ 'insurance',
10491
+ 'named_person_only',
10492
+ 'no_neighbour_delivery',
10493
+ 'pickup',
10494
+ 'package_pickup',
10495
+ 'signature_required',
10496
+ 'proof_of_age',
10497
+ 'proof_of_age_16',
10498
+ 'proof_of_age_18',
10499
+ 'proof_of_age_19',
10500
+ 'proof_of_age_21',
10501
+ 'incoterm_ddp',
10502
+ 'incoterm_dap',
10503
+ 'usps_first_mile',
10504
+ ]);
10505
+
10506
+ T['io.flow.internal.v0.enums.shopify_charge_code'] = PropTypes.oneOf([
10507
+ 'transport_cost',
10508
+ 'above_threshold',
10509
+ 'additional_handling',
10510
+ 'customs_additional_fees',
10511
+ 'customs_clearance',
10512
+ 'customs_duties',
10513
+ 'customs_regulatory_fee',
10514
+ 'customs_duty',
10515
+ 'customs_taxes',
10516
+ 'dangerous_goods',
10517
+ 'delivery_area_surcharge',
10518
+ 'duties_fx_surcharge',
10519
+ 'discount',
10520
+ 'eei_filing',
10521
+ 'elevated_risk_area_surcharge',
10522
+ 'emergency_situation_surcharge',
10523
+ 'environmental_surcharge',
10524
+ 'fuel_surcharge',
10525
+ 'oversize_piece_surcharge',
10526
+ 'packaging',
10527
+ 'pickup_area_surcharge',
10528
+ 'peak_surcharge',
10529
+ 'remote_delivery_area_surcharge',
10530
+ 'residential_surcharge',
10531
+ 'security_surcharge',
10532
+ 'shipper_intercept',
10533
+ 'address_correction',
10534
+ 'undeliverable',
10535
+ 'unknown',
10536
+ 'prohibited_item',
10537
+ 'trade_restriction_surcharge',
10538
+ 'processing',
10539
+ 'delivery',
10540
+ 'notification',
10541
+ 'broker_notification',
10542
+ 'delivery_confirmation',
10543
+ 'signature_required',
10544
+ 'tax_gst',
10545
+ 'tax_hst',
10546
+ 'tax_pst',
10547
+ 'tax_vat',
10548
+ 'discount_tax',
10549
+ 'incoterm_ddp',
10550
+ ]);
10551
+
10552
+ T['io.flow.internal.v0.models.shopify_money'] = PropTypes.exact({
10553
+ amount: PropTypes.number.isRequired,
10554
+ currency_code: PropTypes.string.isRequired,
10555
+ });
10556
+
10557
+ T['io.flow.internal.v0.models.shopify_shipment_rate_option'] = PropTypes.exact({
10558
+ code: T['io.flow.internal.v0.enums.shopify_shipment_option_code'].isRequired,
10559
+ cost: T['io.flow.internal.v0.models.shopify_money'].isRequired,
10560
+ optional: PropTypes.bool,
10561
+ });
10562
+
10563
+ T['io.flow.internal.v0.models.shopify_shipment_rate_charge'] = PropTypes.exact({
10564
+ code: T['io.flow.internal.v0.enums.shopify_charge_code'].isRequired,
10565
+ cost: T['io.flow.internal.v0.models.shopify_money'].isRequired,
10566
+ });
10567
+
10568
+ T['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'] = PropTypes.exact({
10569
+ subtotal: T['io.flow.internal.v0.models.shopify_money'].isRequired,
10570
+ tax: T['io.flow.internal.v0.models.shopify_money'].isRequired,
10571
+ total: T['io.flow.internal.v0.models.shopify_money'].isRequired,
10572
+ });
10573
+
10574
+ T['io.flow.internal.v0.enums.shopify_incoterm'] = PropTypes.oneOf(['DAP', 'DDP']);
10575
+
10576
+ T['io.flow.internal.v0.models.shopify_shipment_rate_available'] = PropTypes.exact({
10577
+ carrier_service_id: PropTypes.string.isRequired,
10578
+ total_charges: T['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'].isRequired,
10579
+ charges: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_charge']).isRequired,
10580
+ shipment_options: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_option']).isRequired,
10581
+ expected_delivery_date: PropTypes.string,
10582
+ guaranteed_delivery_date: PropTypes.string,
10583
+ incoterm: T['io.flow.internal.v0.enums.shopify_incoterm'],
10584
+ });
10585
+
10586
+ T['io.flow.internal.v0.models.shopify_shipment_rate_response'] = PropTypes.exact({
10587
+ rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_available']).isRequired,
10588
+ unavailable_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_shipment_rate_unavailable']).isRequired,
10589
+ });
10590
+
10591
+ T['io.flow.internal.v0.models.shopify_rate_customs_detail'] = PropTypes.exact({
10592
+ incoterm: T['io.flow.internal.v0.enums.shopify_incoterm'].isRequired,
10593
+ net_value: T['io.flow.internal.v0.models.shopify_money'].isRequired,
10594
+ });
10595
+
10429
10596
  T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_value'] = PropTypes.exact({
10430
10597
  id: PropTypes.string.isRequired,
10431
10598
  attribute_id: PropTypes.string.isRequired,
@@ -10710,6 +10877,43 @@ T['io.flow.internal.v0.models.stripe_connect_report_record_upserted'] = PropType
10710
10877
  record: T['io.flow.internal.v0.models.stripe_connect_report_record'].isRequired,
10711
10878
  });
10712
10879
 
10880
+ T['io.flow.internal.v0.enums.shopify_weight_unit'] = PropTypes.oneOf(['g', 'kg', 'lb', 'oz']);
10881
+ T['io.flow.internal.v0.enums.shopify_dimension_unit'] = PropTypes.oneOf(['cm', 'ft', 'in', 'm', 'mm']);
10882
+
10883
+ T['io.flow.internal.v0.models.shopify_measurements'] = PropTypes.exact({
10884
+ dimension_unit: T['io.flow.internal.v0.enums.shopify_dimension_unit'].isRequired,
10885
+ height: PropTypes.number.isRequired,
10886
+ length: PropTypes.number.isRequired,
10887
+ width: PropTypes.number.isRequired,
10888
+ weight: PropTypes.number.isRequired,
10889
+ weight_unit: T['io.flow.internal.v0.enums.shopify_weight_unit'].isRequired,
10890
+ });
10891
+
10892
+ T['io.flow.internal.v0.models.shopify_shipment_rate_package'] = PropTypes.exact({
10893
+ type: T['io.flow.internal.v0.enums.shopify_package_type'].isRequired,
10894
+ measurements: T['io.flow.internal.v0.models.shopify_measurements'].isRequired,
10895
+ });
10896
+
10897
+ T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'] = PropTypes.exact({
10898
+ carrier_id: PropTypes.string.isRequired,
10899
+ delivery_method_type: T['io.flow.internal.v0.enums.shopify_delivery_method_type'].isRequired,
10900
+ shipping_date_time: PropTypes.string.isRequired,
10901
+ 'return': PropTypes.bool.isRequired,
10902
+ origin: T['io.flow.internal.v0.models.shopify_shipping_location'].isRequired,
10903
+ destination: T['io.flow.internal.v0.models.shopify_shipping_location'].isRequired,
10904
+ 'package': T['io.flow.internal.v0.models.shopify_shipment_rate_package'].isRequired,
10905
+ pickup_point: T['io.flow.internal.v0.models.shopify_rate_pickup_point'],
10906
+ customs_detail: T['io.flow.internal.v0.models.shopify_rate_customs_detail'],
10907
+ });
10908
+
10909
+ T['io.flow.internal.v0.models.shopify_shipment_rate_request'] = PropTypes.exact({
10910
+ idempotency_key: PropTypes.string.isRequired,
10911
+ webhook_id: PropTypes.string.isRequired,
10912
+ test: PropTypes.bool.isRequired,
10913
+ shipper: T['io.flow.internal.v0.models.shopify_shipment_rate_shipper'].isRequired,
10914
+ shipment: T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'].isRequired,
10915
+ });
10916
+
10713
10917
  T['io.flow.shopify.markets.v0.enums.shopify_webhook_format'] = PropTypes.oneOf(['json', 'xml']);
10714
10918
 
10715
10919
  T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
@@ -11072,6 +11276,36 @@ T['io.flow.internal.v0.models.shopify_dispute_upserted'] = PropTypes.exact({
11072
11276
  dispute: T['io.flow.internal.v0.models.shopify_dispute'].isRequired,
11073
11277
  });
11074
11278
 
11279
+ T['io.flow.internal.v0.enums.shopify_callback_error_code'] = PropTypes.oneOf([
11280
+ 'UNKNOWN',
11281
+ 'SYSTEM_ERROR',
11282
+ 'THIRD_PARTY_SYSTEM_ERROR',
11283
+ 'TIMEOUT',
11284
+ 'VERSION_MISMATCH',
11285
+ 'INVALID_AUTHENTICATION',
11286
+ 'RATE_LIMIT_EXCEEDED',
11287
+ 'TEMPORARILY_UNAVAILABLE',
11288
+ 'FAILED_VALIDATION',
11289
+ 'INVALID_FORMAT',
11290
+ 'MISSING_VALUE',
11291
+ 'OUT_OF_RANGE',
11292
+ 'OVER_LIMIT',
11293
+ 'UNDER_LIMIT',
11294
+ 'UNAUTHORIZED',
11295
+ 'NOT_FOUND',
11296
+ 'EXPIRED',
11297
+ ]);
11298
+
11299
+ T['io.flow.internal.v0.models.shopify_callback_error_item'] = PropTypes.exact({
11300
+ code: T['io.flow.internal.v0.enums.shopify_callback_error_code'].isRequired,
11301
+ message: PropTypes.string.isRequired,
11302
+ field: PropTypes.string,
11303
+ });
11304
+
11305
+ T['io.flow.internal.v0.models.shopify_callback_error'] = PropTypes.exact({
11306
+ errors: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_callback_error_item']).isRequired,
11307
+ });
11308
+
11075
11309
  T['io.flow.ratecard.v0.models.ratecard_carrier_summary'] = PropTypes.exact({
11076
11310
  id: PropTypes.string.isRequired,
11077
11311
  name: PropTypes.string.isRequired,
@@ -11260,8 +11494,6 @@ T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact(
11260
11494
  account_number: PropTypes.string.isRequired,
11261
11495
  });
11262
11496
 
11263
- T['io.flow.internal.v0.enums.sarvesh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
11264
-
11265
11497
  T['io.flow.internal.v0.models.price_inclusivity'] = PropTypes.exact({
11266
11498
  tax: PropTypes.bool,
11267
11499
  duty: PropTypes.bool,
@@ -11273,8 +11505,6 @@ T['io.flow.internal.v0.models.payment_is'] = PropTypes.exact({
11273
11505
  managed_pricing: PropTypes.bool,
11274
11506
  });
11275
11507
 
11276
- T['io.flow.internal.v0.enums.rohan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
11277
-
11278
11508
  T['io.flow.internal.v0.models.marked_as_final'] = PropTypes.exact({
11279
11509
  products: PropTypes.bool.isRequired,
11280
11510
  shipping: PropTypes.bool.isRequired,
@@ -11399,6 +11629,17 @@ T['io.flow.internal.v0.models.keyword_cancelling'] = PropTypes.exact({
11399
11629
 
11400
11630
  T['io.flow.internal.v0.enums.restriction_rule_community_exemption'] = PropTypes.oneOf(['domestic_exemption', 'intra_eu_exemption']);
11401
11631
 
11632
+ T['io.flow.internal.v0.models.restriction_rule_organization_exemption_form'] = PropTypes.exact({
11633
+ organization_id: PropTypes.string.isRequired,
11634
+ rule_id: PropTypes.string.isRequired,
11635
+ description: PropTypes.string.isRequired,
11636
+ exempt_regions: PropTypes.arrayOf(PropTypes.string),
11637
+ ignored_keywords: PropTypes.arrayOf(PropTypes.string),
11638
+ additional_keywords: PropTypes.arrayOf(PropTypes.string),
11639
+ community_exemption_override: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_rule_community_exemption']),
11640
+ is_rule_active: PropTypes.bool,
11641
+ });
11642
+
11402
11643
  T['io.flow.internal.v0.models.restriction_rule_organization_exemption'] = PropTypes.exact({
11403
11644
  id: PropTypes.string.isRequired,
11404
11645
  organization_id: PropTypes.string.isRequired,
@@ -11573,6 +11814,8 @@ T['io.flow.internal.v0.models.report_organization_reference'] = PropTypes.exact(
11573
11814
  organization_id: PropTypes.string.isRequired,
11574
11815
  });
11575
11816
 
11817
+ T['io.flow.internal.v0.enums.account_currency_filter'] = PropTypes.oneOf(['GBP', 'CAD', 'USD']);
11818
+
11576
11819
  T['io.flow.internal.v0.models.report_amount_range'] = PropTypes.exact({
11577
11820
  min: PropTypes.number,
11578
11821
  max: PropTypes.number,
@@ -11730,16 +11973,14 @@ T['io.flow.internal.v0.models.redirect'] = PropTypes.exact({
11730
11973
  reason: T['io.flow.internal.v0.enums.redirect_reason'].isRequired,
11731
11974
  });
11732
11975
 
11976
+ T['io.flow.internal.v0.enums.raveena_item_type'] = PropTypes.oneOf(['physical', 'digital']);
11977
+
11733
11978
  T['io.flow.internal.v0.models.rate_name_summary'] = PropTypes.exact({
11734
11979
  name: PropTypes.string.isRequired,
11735
11980
  long_name: PropTypes.string,
11736
11981
  matching_rates_percentage: PropTypes.number.isRequired,
11737
11982
  });
11738
11983
 
11739
- T['io.flow.internal.v0.models.ratecard_standard_settings'] = PropTypes.exact({
11740
- margin: PropTypes.number.isRequired,
11741
- });
11742
-
11743
11984
  T['io.flow.internal.v0.models.rate_level_ratecard'] = PropTypes.exact({
11744
11985
  id: PropTypes.string.isRequired,
11745
11986
  ratecard_id: PropTypes.string.isRequired,
@@ -11896,6 +12137,13 @@ T['io.flow.internal.v0.models.quote_upserted'] = PropTypes.exact({
11896
12137
  quote: T['io.flow.internal.v0.models.quote'].isRequired,
11897
12138
  });
11898
12139
 
12140
+ T['io.flow.internal.v0.enums.sellability_internal_match_type'] = PropTypes.oneOf(['positive_keyword', 'auto_restricted']);
12141
+
12142
+ T['io.flow.internal.v0.models.product_sellability_internal_rule_match'] = PropTypes.exact({
12143
+ rule_id: PropTypes.string.isRequired,
12144
+ match_types: PropTypes.arrayOf(T['io.flow.internal.v0.enums.sellability_internal_match_type']).isRequired,
12145
+ });
12146
+
11899
12147
  T['io.flow.internal.v0.models.restriction_keywords'] = PropTypes.exact({
11900
12148
  positive_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
11901
12149
  negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -12021,7 +12269,7 @@ T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exa
12021
12269
  restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
12022
12270
  });
12023
12271
 
12024
- T['io.flow.internal.v0.enums.classification_failure_reason'] = PropTypes.oneOf(['low_confidence', 'timeout']);
12272
+ T['io.flow.internal.v0.enums.classification_failure_reason'] = PropTypes.oneOf(['low_confidence', 'timeout', 'missing_hs6_code', 'invalid_price']);
12025
12273
 
12026
12274
  T['io.flow.sellability.v0.models.sellability_restricted_region'] = PropTypes.exact({
12027
12275
  type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
@@ -12029,6 +12277,7 @@ T['io.flow.sellability.v0.models.sellability_restricted_region'] = PropTypes.exa
12029
12277
  });
12030
12278
 
12031
12279
  T['io.flow.sellability.v0.models.product_sellability_result'] = PropTypes.exact({
12280
+ id: PropTypes.string.isRequired,
12032
12281
  merchant_id: PropTypes.string,
12033
12282
  product_id: PropTypes.string.isRequired,
12034
12283
  restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_region']).isRequired,
@@ -12039,7 +12288,16 @@ T['io.flow.sellability.v0.models.product_sellability_result'] = PropTypes.exact(
12039
12288
  });
12040
12289
 
12041
12290
  T['io.flow.internal.v0.enums.hs6_code_source'] = PropTypes.oneOf(['sellability', 'classification', 'human']);
12042
- T['io.flow.sellability.v0.enums.sellability_result_error_code'] = PropTypes.oneOf(['insufficient_details', 'generic_error']);
12291
+
12292
+ T['io.flow.sellability.v0.enums.sellability_result_error_code'] = PropTypes.oneOf([
12293
+ 'insufficient_details',
12294
+ 'ineligible_category',
12295
+ 'wait_for_high_fidelity',
12296
+ 'external_service_unavailable',
12297
+ 'generic_error',
12298
+ 'catalog_processing_threshold',
12299
+ ]);
12300
+
12043
12301
  T['io.flow.sellability.v0.enums.sellability_result_status'] = PropTypes.oneOf(['in_review', 'succeeded', 'failed']);
12044
12302
 
12045
12303
  T['io.flow.sellability.v0.models.sellability_screening'] = PropTypes.exact({
@@ -12150,6 +12408,7 @@ T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exac
12150
12408
  });
12151
12409
 
12152
12410
  T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exact({
12411
+ id: PropTypes.string,
12153
12412
  merchant_id: PropTypes.string.isRequired,
12154
12413
  product_id: PropTypes.string.isRequired,
12155
12414
  channel: PropTypes.string.isRequired,
@@ -12161,16 +12420,32 @@ T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exa
12161
12420
  restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_region']),
12162
12421
  rule_ids: PropTypes.arrayOf(PropTypes.string),
12163
12422
  matching_positive_keywords: PropTypes.arrayOf(PropTypes.string),
12423
+ matching_sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
12164
12424
  classification_failure_reason: T['io.flow.internal.v0.enums.classification_failure_reason'],
12165
12425
  taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
12166
12426
  fingerprint: PropTypes.string.isRequired,
12167
12427
  });
12168
12428
 
12169
- T['io.flow.internal.v0.enums.preonboarding_request_status'] = PropTypes.oneOf(['pending', 'completed', 'failed', 'discarded']);
12170
- T['io.flow.internal.v0.enums.preonboarding_classification_platform'] = PropTypes.oneOf(['FlowOnboarding']);
12429
+ T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'] = PropTypes.exact({
12430
+ discriminator: PropTypes.oneOf(['preonboarding_sellability_result_updated']).isRequired,
12431
+ event_id: PropTypes.string.isRequired,
12432
+ timestamp: PropTypes.string.isRequired,
12433
+ previous_preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
12434
+ preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
12435
+ });
12171
12436
 
12172
- T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_message'] = PropTypes.exact({
12173
- MerchantId: PropTypes.string.isRequired,
12437
+ T['io.flow.internal.v0.models.preonboarding_sellability_result_inserted'] = PropTypes.exact({
12438
+ discriminator: PropTypes.oneOf(['preonboarding_sellability_result_inserted']).isRequired,
12439
+ event_id: PropTypes.string.isRequired,
12440
+ timestamp: PropTypes.string.isRequired,
12441
+ preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
12442
+ });
12443
+
12444
+ T['io.flow.internal.v0.enums.preonboarding_request_status'] = PropTypes.oneOf(['pending', 'completed', 'failed', 'discarded']);
12445
+ T['io.flow.internal.v0.enums.preonboarding_classification_platform'] = PropTypes.oneOf(['FlowOnboarding']);
12446
+
12447
+ T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_message'] = PropTypes.exact({
12448
+ MerchantId: PropTypes.string.isRequired,
12174
12449
  ProductName: PropTypes.string.isRequired,
12175
12450
  ProductDescription: PropTypes.string.isRequired,
12176
12451
  ProductIdInternal: PropTypes.string.isRequired,
@@ -12188,8 +12463,6 @@ T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_envelope'] =
12188
12463
  message: T['io.flow.internal.v0.models.preonboarding_classification_rabbitmq_message'].isRequired,
12189
12464
  });
12190
12465
 
12191
- T['io.flow.internal.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
12192
-
12193
12466
  T['io.flow.internal.v0.models.platform_fee_percentage_tier'] = PropTypes.exact({
12194
12467
  minimum_amount_base: PropTypes.number.isRequired,
12195
12468
  rate: PropTypes.number.isRequired,
@@ -12559,6 +12832,7 @@ T['io.flow.billing.v0.models.transaction_metadata_manual'] = PropTypes.exact({
12559
12832
  description: PropTypes.string.isRequired,
12560
12833
  original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'],
12561
12834
  url: PropTypes.string,
12835
+ recoup: PropTypes.bool,
12562
12836
  });
12563
12837
 
12564
12838
  T['io.flow.common.v0.enums.currency_label_formatter'] = PropTypes.oneOf(['strip_trailing_zeros', 'symbol_prefix', 'symbol_suffix']);
@@ -12673,6 +12947,13 @@ T['io.flow.internal.v0.models.organization_restriction_screening_decision_form']
12673
12947
  onboarding_first_viewed_at: PropTypes.string,
12674
12948
  });
12675
12949
 
12950
+ T['io.flow.internal.v0.enums.organization_promotion_status'] = PropTypes.oneOf(['in_progress', 'completed', 'failed']);
12951
+
12952
+ T['io.flow.internal.v0.models.organization_promotion'] = PropTypes.exact({
12953
+ status: T['io.flow.internal.v0.enums.organization_promotion_status'].isRequired,
12954
+ prod_org: PropTypes.string.isRequired,
12955
+ });
12956
+
12676
12957
  T['io.flow.payment.gateway.v0.models.payment_capture_option_manual'] = PropTypes.exact({
12677
12958
  type: PropTypes.oneOf(['manual']).isRequired,
12678
12959
  placeholder: PropTypes.string,
@@ -12775,19 +13056,34 @@ T['io.flow.internal.v0.enums.order_validation_status'] = PropTypes.oneOf([
12775
13056
  'breached',
12776
13057
  ]);
12777
13058
 
12778
- T['io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting'] = PropTypes.oneOf([
13059
+ T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'] = PropTypes.oneOf([
12779
13060
  'duty_exclusive_tax_exclusive',
12780
13061
  'duty_inclusive_tax_exclusive',
12781
13062
  'duty_exclusive_tax_inclusive',
12782
13063
  'duty_inclusive_tax_inclusive',
12783
13064
  ]);
12784
13065
 
13066
+ T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
13067
+ id: PropTypes.string.isRequired,
13068
+ organization_id: PropTypes.string.isRequired,
13069
+ shopify_order_id: PropTypes.string.isRequired,
13070
+ order_number: PropTypes.string.isRequired,
13071
+ tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
13072
+ });
13073
+
13074
+ T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
13075
+ discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
13076
+ event_id: PropTypes.string.isRequired,
13077
+ timestamp: PropTypes.string.isRequired,
13078
+ order_tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
13079
+ });
13080
+
12785
13081
  T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
12786
13082
  id: PropTypes.string.isRequired,
12787
13083
  organization_id: PropTypes.string.isRequired,
12788
13084
  shopify_order_id: PropTypes.string.isRequired,
12789
13085
  order_number: PropTypes.string.isRequired,
12790
- tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
13086
+ tax_and_duty_inclusivity_setting: T['io.flow.experience.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
12791
13087
  });
12792
13088
 
12793
13089
  T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
@@ -13021,8 +13317,6 @@ T['io.flow.internal.v0.models.report_payment'] = PropTypes.exact({
13021
13317
  created_at: PropTypes.string.isRequired,
13022
13318
  });
13023
13319
 
13024
- T['io.flow.internal.v0.enums.niall_item_type'] = PropTypes.oneOf(['physical', 'digital']);
13025
-
13026
13320
  T['io.flow.internal.v0.models.attempt_statistics'] = PropTypes.exact({
13027
13321
  merchant_count: PropTypes.number.isRequired,
13028
13322
  amount: PropTypes.number.isRequired,
@@ -13128,6 +13422,7 @@ T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
13128
13422
  audit_result: T['io.flow.internal.v0.enums.onboarding_audit_result'],
13129
13423
  blocked_since: PropTypes.string,
13130
13424
  onboarding_segment: PropTypes.string,
13425
+ country: PropTypes.string,
13131
13426
  });
13132
13427
 
13133
13428
  T['io.flow.internal.v0.models.merchant_search_result'] = PropTypes.exact({
@@ -13653,6 +13948,7 @@ T['io.flow.internal.v0.enums.manual_transaction_category'] = PropTypes.oneOf([
13653
13948
  'negative_balance_guarantee',
13654
13949
  'bank_payment_failure',
13655
13950
  'non_fraud_chargeback',
13951
+ 'v1_migration_neg_balance_settlement',
13656
13952
  ]);
13657
13953
 
13658
13954
  T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
@@ -13662,6 +13958,7 @@ T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
13662
13958
  category: T['io.flow.internal.v0.enums.manual_transaction_category'],
13663
13959
  order: T['io.flow.internal.v0.models.manual_transaction_form_order'],
13664
13960
  original_transaction_id: PropTypes.string,
13961
+ recoup: PropTypes.bool,
13665
13962
  attributes: PropTypes.objectOf(PropTypes.string),
13666
13963
  });
13667
13964
 
@@ -13797,7 +14094,10 @@ T['io.flow.internal.v0.models.ledger_report_url'] = PropTypes.exact({
13797
14094
  type: T['io.flow.internal.v0.enums.ledger_report_url_type'].isRequired,
13798
14095
  });
13799
14096
 
13800
- T['io.flow.internal.v0.enums.ledger_report_type'] = PropTypes.oneOf(['periodic_mor_jurisdiction_report']);
14097
+ T['io.flow.internal.v0.enums.ledger_report_type'] = PropTypes.oneOf([
14098
+ 'periodic_mor_jurisdiction_report',
14099
+ 'periodic_mor_jurisdiction_sandbox_report',
14100
+ ]);
13801
14101
 
13802
14102
  T['io.flow.internal.v0.models.ledger_report'] = PropTypes.exact({
13803
14103
  id: PropTypes.string.isRequired,
@@ -13938,7 +14238,7 @@ T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
13938
14238
  glbe_shipping_method_id: PropTypes.string,
13939
14239
  glbe_proposition_name: PropTypes.string,
13940
14240
  channel_revenue_share_percentage: PropTypes.number,
13941
- data: PropTypes.objectOf(PropTypes.string),
14241
+ data: T['io.flow.ratecard.v0.models.ratecard_data'],
13942
14242
  });
13943
14243
 
13944
14244
  T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
@@ -13979,6 +14279,7 @@ T['io.flow.label.v0.enums.label_request_method'] = PropTypes.oneOf([
13979
14279
  'notification_requiring_crossdock',
13980
14280
  'flow_simulation_sync',
13981
14281
  'autogenerated',
14282
+ 'legacy_shopify_graphql_server',
13982
14283
  ]);
13983
14284
 
13984
14285
  T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.exact({
@@ -14075,6 +14376,11 @@ T['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge'] = PropTypes
14075
14376
  actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge_data'].isRequired,
14076
14377
  });
14077
14378
 
14379
+ T['io.flow.internal.v0.models.merchant_surcharge'] = PropTypes.exact({
14380
+ type: T['io.flow.trueup.v0.enums.trueup_surcharge_type'].isRequired,
14381
+ amount: PropTypes.number.isRequired,
14382
+ });
14383
+
14078
14384
  T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
14079
14385
 
14080
14386
  T['io.flow.internal.v0.models.label_destination'] = PropTypes.exact({
@@ -14088,20 +14394,6 @@ T['io.flow.trueup.v0.models.label_surcharge'] = PropTypes.exact({
14088
14394
  detail: T['io.flow.trueup.v0.unions.label_surcharge_detail'].isRequired,
14089
14395
  });
14090
14396
 
14091
- T['io.flow.internal.v0.models.label_generation_settings'] = PropTypes.exact({
14092
- id: PropTypes.string.isRequired,
14093
- auto_generate_query: PropTypes.string,
14094
- commercial_invoice_only_query: PropTypes.string,
14095
- });
14096
-
14097
- T['io.flow.internal.v0.models.label_generation_settings_upserted'] = PropTypes.exact({
14098
- discriminator: PropTypes.oneOf(['label_generation_settings_upserted']).isRequired,
14099
- event_id: PropTypes.string.isRequired,
14100
- timestamp: PropTypes.string.isRequired,
14101
- organization: PropTypes.string.isRequired,
14102
- label_generation_settings: T['io.flow.internal.v0.models.label_generation_settings'].isRequired,
14103
- });
14104
-
14105
14397
  T['io.flow.internal.v0.enums.label_creation_status'] = PropTypes.oneOf(['success', 'error', 'pending', 'cancelled']);
14106
14398
 
14107
14399
  T['io.flow.internal.v0.models.label_creation_job_summary'] = PropTypes.exact({
@@ -14760,7 +15052,12 @@ T['io.flow.internal.v0.models.internal_afterpay_authorization_details'] = PropTy
14760
15052
  afterpay_authentication_data: T['io.flow.internal.v0.models.afterpay_authentication_data_reference'].isRequired,
14761
15053
  });
14762
15054
 
14763
- T['io.flow.internal.v0.enums.hosein_item_type'] = PropTypes.oneOf(['physical', 'digital']);
15055
+ T['io.flow.internal.v0.enums.classification_source'] = PropTypes.oneOf(['sellability']);
15056
+
15057
+ T['io.flow.internal.v0.models.hs6_metadata'] = PropTypes.exact({
15058
+ description: PropTypes.string,
15059
+ classification_source: T['io.flow.internal.v0.enums.classification_source'],
15060
+ });
14764
15061
 
14765
15062
  T['io.flow.internal.v0.models.harmonization_ml_model_summary'] = PropTypes.exact({
14766
15063
  id: PropTypes.string,
@@ -14815,8 +15112,6 @@ T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
14815
15112
  messages: PropTypes.arrayOf(PropTypes.string).isRequired,
14816
15113
  });
14817
15114
 
14818
- T['io.flow.internal.v0.enums.gabriel_item_type'] = PropTypes.oneOf(['physical', 'digital']);
14819
-
14820
15115
  T['io.flow.internal.v0.models.fx_revenue_recognition_account_rate'] = PropTypes.exact({
14821
15116
  value: PropTypes.number.isRequired,
14822
15117
  });
@@ -15025,15 +15320,28 @@ T['io.flow.internal.v0.models.shopper_breakdown'] = PropTypes.exact({
15025
15320
  tax: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
15026
15321
  duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
15027
15322
  discount: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
15323
+ subtotal: T['io.flow.internal.v0.models.reporting_monetary_value'],
15028
15324
  total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
15029
15325
  });
15030
15326
 
15327
+ T['io.flow.internal.v0.models.reporting_merchant_freight_surcharges'] = PropTypes.exact({
15328
+ duties_paid: T['io.flow.internal.v0.models.reporting_monetary_value'],
15329
+ fixed_ddp: T['io.flow.internal.v0.models.reporting_monetary_value'],
15330
+ fixed_currency_conversion: T['io.flow.internal.v0.models.reporting_monetary_value'],
15331
+ });
15332
+
15333
+ T['io.flow.internal.v0.models.reporting_merchant_freight'] = PropTypes.exact({
15334
+ base_amount: T['io.flow.internal.v0.models.reporting_monetary_value'],
15335
+ surcharges: T['io.flow.internal.v0.models.reporting_merchant_freight_surcharges'],
15336
+ });
15337
+
15031
15338
  T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exact({
15032
15339
  adjustment: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
15033
15340
  reversal: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
15034
15341
  tax: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
15035
15342
  duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
15036
15343
  freight: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
15344
+ freight_breakdown: T['io.flow.internal.v0.models.reporting_merchant_freight'],
15037
15345
  discount: T['io.flow.internal.v0.models.reporting_monetary_value'],
15038
15346
  total: T['io.flow.internal.v0.models.reporting_monetary_value'],
15039
15347
  tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
@@ -15132,6 +15440,8 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
15132
15440
  tax: PropTypes.number.isRequired,
15133
15441
  duty: PropTypes.number.isRequired,
15134
15442
  freight: PropTypes.number.isRequired,
15443
+ base_amount: PropTypes.number,
15444
+ surcharges: PropTypes.arrayOf(T['io.flow.internal.v0.models.merchant_surcharge']),
15135
15445
  total: PropTypes.number.isRequired,
15136
15446
  tax_refund: PropTypes.number,
15137
15447
  tax_reversal: PropTypes.number,
@@ -15362,6 +15672,14 @@ T['io.flow.internal.v0.models.fiserv_authentication'] = PropTypes.exact({
15362
15672
  secret_key_reference: PropTypes.string.isRequired,
15363
15673
  });
15364
15674
 
15675
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
15676
+ discriminator: PropTypes.oneOf(['kor']).isRequired,
15677
+ name: PropTypes.string.isRequired,
15678
+ bank_account_number: PropTypes.string.isRequired,
15679
+ bank_routing_number: PropTypes.string.isRequired,
15680
+ bank_name: PropTypes.string.isRequired,
15681
+ });
15682
+
15365
15683
  T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'] = PropTypes.exact({
15366
15684
  discriminator: PropTypes.oneOf(['ita']).isRequired,
15367
15685
  swift_code: PropTypes.string.isRequired,
@@ -15396,6 +15714,25 @@ T['io.flow.internal.v0.models.finance_bank_account_owner'] = PropTypes.exact({
15396
15714
  name: PropTypes.string.isRequired,
15397
15715
  });
15398
15716
 
15717
+ T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
15718
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
15719
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
15720
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
15721
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
15722
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
15723
+ T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
15724
+ ]);
15725
+
15726
+ T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
15727
+ discriminator: PropTypes.oneOf(['info']).isRequired,
15728
+ info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
15729
+ });
15730
+
15731
+ T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
15732
+ T['io.flow.billing.v0.models.bank_account_form_info'],
15733
+ T['io.flow.billing.v0.models.bank_account_form_simple'],
15734
+ ]);
15735
+
15399
15736
  T['io.flow.internal.v0.models.string_feature_rule_form'] = PropTypes.exact({
15400
15737
  discriminator: PropTypes.oneOf(['string']).isRequired,
15401
15738
  query: PropTypes.string.isRequired,
@@ -15714,9 +16051,14 @@ T['io.flow.restrictions.v0.models.product_restriction_result'] = PropTypes.exact
15714
16051
  hs_code: PropTypes.string,
15715
16052
  restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']),
15716
16053
  needs_action_attributes: PropTypes.arrayOf(T['io.flow.restrictions.v0.models.needs_action_attributes']),
16054
+ fingerprint: PropTypes.string,
16055
+ restriction_created_at: PropTypes.string,
16056
+ first_reviewed_at: PropTypes.string,
16057
+ seconds_to_first_review: PropTypes.number,
15717
16058
  });
15718
16059
 
15719
16060
  T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
16061
+ id: PropTypes.string,
15720
16062
  shop_id: PropTypes.string.isRequired,
15721
16063
  product_number: PropTypes.string.isRequired,
15722
16064
  request_id: PropTypes.string.isRequired,
@@ -15725,11 +16067,30 @@ T['io.flow.internal.v0.models.product_sellability_result'] = PropTypes.exact({
15725
16067
  restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']),
15726
16068
  rule_ids: PropTypes.arrayOf(PropTypes.string),
15727
16069
  taxonomy_category: PropTypes.string,
16070
+ fingerprint: PropTypes.string,
16071
+ processed_at: PropTypes.string,
16072
+ });
16073
+
16074
+ T['io.flow.internal.v0.models.product_sellability_result_updated'] = PropTypes.exact({
16075
+ discriminator: PropTypes.oneOf(['product_sellability_result_updated']).isRequired,
16076
+ event_id: PropTypes.string.isRequired,
16077
+ timestamp: PropTypes.string.isRequired,
16078
+ previous_product_sellability_result: T['io.flow.internal.v0.models.product_sellability_result'].isRequired,
16079
+ product_sellability_result: T['io.flow.internal.v0.models.product_sellability_result'].isRequired,
16080
+ });
16081
+
16082
+ T['io.flow.internal.v0.models.product_sellability_result_inserted'] = PropTypes.exact({
16083
+ discriminator: PropTypes.oneOf(['product_sellability_result_inserted']).isRequired,
16084
+ event_id: PropTypes.string.isRequired,
16085
+ timestamp: PropTypes.string.isRequired,
16086
+ product_sellability_result: T['io.flow.internal.v0.models.product_sellability_result'].isRequired,
15728
16087
  });
15729
16088
 
15730
16089
  T['io.flow.internal.v0.models.product_sellability_internal_result'] = PropTypes.exact({
15731
16090
  restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_region_result']).isRequired,
15732
- rule_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
16091
+ rule_matches: PropTypes.arrayOf(T['io.flow.internal.v0.models.product_sellability_internal_rule_match']).isRequired,
16092
+ matching_positive_keywords: PropTypes.arrayOf(PropTypes.string),
16093
+ matching_sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
15733
16094
  });
15734
16095
 
15735
16096
  T['io.flow.internal.v0.models.product_sellability_internal'] = PropTypes.exact({
@@ -16366,6 +16727,11 @@ T['io.flow.ratecard.v0.unions.fuel_surcharge_rate'] = PropTypes.oneOfType([
16366
16727
  T['io.flow.ratecard.v0.models.fuel_surcharge_by_weight'],
16367
16728
  ]);
16368
16729
 
16730
+ T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
16731
+ weight: PropTypes.number.isRequired,
16732
+ unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
16733
+ });
16734
+
16369
16735
  T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
16370
16736
  value: PropTypes.string.isRequired,
16371
16737
  units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
@@ -16446,11 +16812,6 @@ T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTyp
16446
16812
  shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
16447
16813
  });
16448
16814
 
16449
- T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
16450
- weight: PropTypes.number.isRequired,
16451
- unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
16452
- });
16453
-
16454
16815
  T['io.flow.internal.v0.models.failed_dimension_estimate_ops_input_with_reason'] = PropTypes.exact({
16455
16816
  organization_id: PropTypes.string.isRequired,
16456
16817
  length_units: T['io.flow.common.v0.enums.unit_of_measurement'],
@@ -16702,6 +17063,8 @@ T['io.flow.internal.v0.models.report_filter'] = PropTypes.exact({
16702
17063
  source_type: T['io.flow.internal.v0.enums.source_type_filter'],
16703
17064
  order_payment_source: T['io.flow.experience.v0.enums.order_payment_source_type'],
16704
17065
  amount_range: T['io.flow.internal.v0.models.report_amount_range'],
17066
+ account_currency: T['io.flow.internal.v0.enums.account_currency_filter'],
17067
+ channel_id: PropTypes.string,
16705
17068
  });
16706
17069
 
16707
17070
  T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
@@ -16739,6 +17102,9 @@ T['io.flow.internal.v0.models.sales_payment_record'] = PropTypes.exact({
16739
17102
  price_inclusivity: T['io.flow.internal.v0.models.price_inclusivity'],
16740
17103
  destination_country: PropTypes.string.isRequired,
16741
17104
  fulfilled_at: PropTypes.string,
17105
+ reconciliation: T['io.flow.internal.v0.models.reporting_reconciliation'],
17106
+ is_eu_destination: PropTypes.bool,
17107
+ debug_url: PropTypes.string,
16742
17108
  });
16743
17109
 
16744
17110
  T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
@@ -17112,6 +17478,7 @@ T['io.flow.internal.v0.models.other_record_metadata_trueup'] = PropTypes.exact({
17112
17478
  label_transaction_id: PropTypes.string.isRequired,
17113
17479
  label_invoice_request_id: PropTypes.string.isRequired,
17114
17480
  carrier_charge_id: PropTypes.string.isRequired,
17481
+ subtype: PropTypes.string,
17115
17482
  });
17116
17483
 
17117
17484
  T['io.flow.internal.v0.models.other_record_metadata_shipping_label_revenue_share'] = PropTypes.exact({
@@ -17167,35 +17534,6 @@ T['io.flow.internal.v0.models.compliance'] = PropTypes.exact({
17167
17534
  data: T['io.flow.internal.v0.unions.compliance_data'].isRequired,
17168
17535
  });
17169
17536
 
17170
- T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
17171
- name: T['io.flow.common.v0.enums.entity_identifier_type'].isRequired,
17172
- number: PropTypes.string.isRequired,
17173
- issuing_country: PropTypes.string,
17174
- });
17175
-
17176
- T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
17177
- number: PropTypes.string.isRequired,
17178
- country: PropTypes.string.isRequired,
17179
- province_number: PropTypes.string,
17180
- province: PropTypes.string,
17181
- });
17182
-
17183
- T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'] = PropTypes.exact({
17184
- name: PropTypes.string.isRequired,
17185
- vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
17186
- streets: PropTypes.arrayOf(PropTypes.string).isRequired,
17187
- city: PropTypes.string.isRequired,
17188
- province: PropTypes.string,
17189
- postal: PropTypes.string,
17190
- country: PropTypes.string.isRequired,
17191
- phone: PropTypes.string,
17192
- email: PropTypes.string,
17193
- starts_at: PropTypes.string.isRequired,
17194
- ends_at: PropTypes.string,
17195
- center: PropTypes.string,
17196
- currency: PropTypes.string,
17197
- });
17198
-
17199
17537
  T['io.flow.fulfillment.v0.models.center_reference'] = PropTypes.exact({
17200
17538
  discriminator: PropTypes.oneOf(['center_reference']).isRequired,
17201
17539
  organization_id: PropTypes.string.isRequired,
@@ -17470,6 +17808,7 @@ T['io.flow.internal.v0.models.item_classification_summary'] = PropTypes.exact({
17470
17808
  customs_description: PropTypes.string,
17471
17809
  });
17472
17810
 
17811
+ T['io.flow.internal.v0.enums.gabriel_item_type'] = PropTypes.oneOf(['physical', 'digital']);
17473
17812
  T['io.flow.internal.v0.enums.checkout_url_type'] = PropTypes.oneOf(['continue_shopping', 'confirmation', 'invalid_checkout']);
17474
17813
 
17475
17814
  T['io.flow.internal.v0.models.checkout_url'] = PropTypes.exact({
@@ -17995,6 +18334,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
17995
18334
  'unsupported_order_edit',
17996
18335
  'order_allocation_duties_mismatch',
17997
18336
  'order_missing',
18337
+ 'organization_deactivated',
17998
18338
  ]);
17999
18339
 
18000
18340
  T['io.flow.channel.shopify.v0.models.external_order_summary'] = PropTypes.exact({
@@ -18061,6 +18401,49 @@ T['io.flow.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact(
18061
18401
  status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
18062
18402
  });
18063
18403
 
18404
+ T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
18405
+
18406
+ T['io.flow.organization.v0.models.membership_put_form'] = PropTypes.exact({
18407
+ role: T['io.flow.common.v0.enums.role'],
18408
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
18409
+ });
18410
+
18411
+ T['io.flow.organization.v0.models.membership_form'] = PropTypes.exact({
18412
+ organization: PropTypes.string.isRequired,
18413
+ user: PropTypes.string.isRequired,
18414
+ role: T['io.flow.common.v0.enums.role'],
18415
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
18416
+ });
18417
+
18418
+ T['io.flow.channel.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
18419
+ role: T['io.flow.common.v0.enums.role'],
18420
+ });
18421
+
18422
+ T['io.flow.channel.internal.v0.models.channel_membership_form'] = PropTypes.exact({
18423
+ channel_id: PropTypes.string.isRequired,
18424
+ user_id: PropTypes.string.isRequired,
18425
+ role: T['io.flow.common.v0.enums.role'],
18426
+ });
18427
+
18428
+ T['io.flow.internal.v0.models.partner_membership_put_form'] = PropTypes.exact({
18429
+ role: T['io.flow.common.v0.enums.role'].isRequired,
18430
+ });
18431
+
18432
+ T['io.flow.internal.v0.models.partner_membership_form'] = PropTypes.exact({
18433
+ user: PropTypes.string.isRequired,
18434
+ role: T['io.flow.common.v0.enums.role'].isRequired,
18435
+ });
18436
+
18437
+ T['io.flow.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
18438
+ role: T['io.flow.common.v0.enums.role'],
18439
+ });
18440
+
18441
+ T['io.flow.internal.v0.models.channel_membership_form'] = PropTypes.exact({
18442
+ channel_id: PropTypes.string.isRequired,
18443
+ user_id: PropTypes.string.isRequired,
18444
+ role: T['io.flow.common.v0.enums.role'],
18445
+ });
18446
+
18064
18447
  T['io.flow.reference.v0.models.carrier'] = PropTypes.exact({
18065
18448
  id: PropTypes.string.isRequired,
18066
18449
  name: PropTypes.string.isRequired,
@@ -18211,6 +18594,11 @@ T['io.flow.organization.v0.models.organization_authorization_form'] = PropTypes.
18211
18594
  environment: T['io.flow.common.v0.enums.environment'].isRequired,
18212
18595
  });
18213
18596
 
18597
+ T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
18598
+ role: T['io.flow.common.v0.enums.role'],
18599
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
18600
+ });
18601
+
18214
18602
  T['io.flow.token.v0.models.partner_token_form'] = PropTypes.exact({
18215
18603
  environment: T['io.flow.common.v0.enums.environment'].isRequired,
18216
18604
  description: PropTypes.string,
@@ -18260,6 +18648,11 @@ T['io.flow.internal.v0.models.partner_authorization_form'] = PropTypes.exact({
18260
18648
  environment: T['io.flow.common.v0.enums.environment'].isRequired,
18261
18649
  });
18262
18650
 
18651
+ T['io.flow.internal.v0.models.partner_authorization'] = PropTypes.exact({
18652
+ role: T['io.flow.common.v0.enums.role'].isRequired,
18653
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
18654
+ });
18655
+
18263
18656
  T['io.flow.internal.v0.models.partner'] = PropTypes.exact({
18264
18657
  id: PropTypes.string.isRequired,
18265
18658
  name: PropTypes.string.isRequired,
@@ -18541,6 +18934,7 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'] = PropTypes
18541
18934
  access_token_masked: PropTypes.string,
18542
18935
  shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
18543
18936
  catalog_publication_owner: T['io.flow.channel.shopify.internal.v0.enums.catalog_publication_owner'],
18937
+ fast_sellability_completed_at: PropTypes.string,
18544
18938
  });
18545
18939
 
18546
18940
  T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
@@ -18578,6 +18972,7 @@ T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
18578
18972
  access_token_masked: PropTypes.string,
18579
18973
  shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
18580
18974
  catalog_publication_owner: T['io.flow.internal.v0.enums.catalog_publication_owner'],
18975
+ fast_sellability_completed_at: PropTypes.string,
18581
18976
  });
18582
18977
 
18583
18978
  T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
@@ -18681,36 +19076,25 @@ T['io.flow.common.v0.models.address'] = PropTypes.exact({
18681
19076
  longitude: PropTypes.string,
18682
19077
  });
18683
19078
 
18684
- T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'] = PropTypes.exact({
18685
- discriminator: PropTypes.oneOf(['kor']).isRequired,
18686
- name: PropTypes.string,
18687
- address: T['io.flow.common.v0.models.address'],
18688
- phone: PropTypes.string,
19079
+ T['io.flow.merchant.onboarding.v0.models.operations_contact'] = PropTypes.exact({
19080
+ company: PropTypes.string,
18689
19081
  email: PropTypes.string,
18690
- bank_account_number: PropTypes.string.isRequired,
18691
- bank_routing_number: PropTypes.string,
18692
- bank_name: PropTypes.string,
18693
- bank_address: T['io.flow.common.v0.models.address'],
19082
+ phone: PropTypes.string,
19083
+ address: T['io.flow.common.v0.models.address'],
18694
19084
  });
18695
19085
 
18696
- T['io.flow.billing.bank.account.v0.unions.bank_account_info'] = PropTypes.oneOfType([
18697
- T['io.flow.billing.bank.account.v0.models.bank_account_info_usa'],
18698
- T['io.flow.billing.bank.account.v0.models.bank_account_info_can'],
18699
- T['io.flow.billing.bank.account.v0.models.bank_account_info_gbr'],
18700
- T['io.flow.billing.bank.account.v0.models.bank_account_info_fra'],
18701
- T['io.flow.billing.bank.account.v0.models.bank_account_info_ita'],
18702
- T['io.flow.billing.bank.account.v0.models.bank_account_info_kor'],
18703
- ]);
19086
+ T['io.flow.merchant.onboarding.v0.models.third_party_logistics_partner'] = PropTypes.exact({
19087
+ warehouse_address: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'].isRequired,
19088
+ warehouse_url: PropTypes.string,
19089
+ location: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_address'],
18704
19090
 
18705
- T['io.flow.billing.v0.models.bank_account_form_info'] = PropTypes.exact({
18706
- discriminator: PropTypes.oneOf(['info']).isRequired,
18707
- info: T['io.flow.billing.bank.account.v0.unions.bank_account_info'].isRequired,
18708
- });
19091
+ scheduled_pickups: PropTypes.arrayOf(
19092
+ T['io.flow.merchant.onboarding.v0.models.onboarding_merchant_scheduled_pickup'],
19093
+ ),
18709
19094
 
18710
- T['io.flow.billing.v0.unions.bank_account_form'] = PropTypes.oneOfType([
18711
- T['io.flow.billing.v0.models.bank_account_form_info'],
18712
- T['io.flow.billing.v0.models.bank_account_form_simple'],
18713
- ]);
19095
+ operations_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'].isRequired,
19096
+ center_id: PropTypes.string,
19097
+ });
18714
19098
 
18715
19099
  T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'] = PropTypes.exact({
18716
19100
  name: PropTypes.string,
@@ -19129,7 +19513,7 @@ T['io.flow.billing.v0.models.transaction_metadata_carrier_charge'] = PropTypes.e
19129
19513
  label_created_at: PropTypes.string.isRequired,
19130
19514
  carrier_id: PropTypes.string.isRequired,
19131
19515
  carrier_tracking_number: PropTypes.string.isRequired,
19132
- revenue_share_percentage: PropTypes.number.isRequired,
19516
+ revenue_share_percentage: PropTypes.number,
19133
19517
  outbound: T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'],
19134
19518
  });
19135
19519
 
@@ -19138,7 +19522,7 @@ T['io.flow.internal.v0.models.other_record_metadata_carrier_charge'] = PropTypes
19138
19522
  label_created_at: PropTypes.string.isRequired,
19139
19523
  carrier_id: PropTypes.string.isRequired,
19140
19524
  carrier_tracking_number: PropTypes.string.isRequired,
19141
- revenue_share_percentage: PropTypes.number.isRequired,
19525
+ revenue_share_percentage: PropTypes.number,
19142
19526
  outbound_transaction_id: PropTypes.string,
19143
19527
  });
19144
19528
 
@@ -19203,6 +19587,8 @@ T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
19203
19587
  T['io.flow.billing.v0.models.transaction_metadata_failed_payout'],
19204
19588
  T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'],
19205
19589
  T['io.flow.billing.v0.models.transaction_metadata_tax_duty'],
19590
+ T['io.flow.billing.v0.models.transaction_metadata_merchant_fee'],
19591
+ T['io.flow.billing.v0.models.transaction_metadata_flat_rate_label'],
19206
19592
  ]);
19207
19593
 
19208
19594
  T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
@@ -19832,6 +20218,8 @@ T['io.flow.internal.v0.models.feature_value_result'] = PropTypes.exact({
19832
20218
  values: PropTypes.arrayOf(T['io.flow.internal.v0.unions.feature_value']).isRequired,
19833
20219
  });
19834
20220
 
20221
+ T['io.flow.internal.v0.enums.bojana_item_type'] = PropTypes.oneOf(['physical', 'digital']);
20222
+
19835
20223
  T['io.flow.internal.v0.models.bitpay_authentication_form'] = PropTypes.exact({
19836
20224
  api_token: PropTypes.string.isRequired,
19837
20225
  public_key: PropTypes.string.isRequired,
@@ -20056,6 +20444,9 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
20056
20444
  'merchant_fee',
20057
20445
  'b2b_tax',
20058
20446
  'b2b_tax_refund',
20447
+ 'b2b_fee_mor_tax',
20448
+ 'b2b_fee_shipping_tax',
20449
+ 'flat_rate_label',
20059
20450
  ]);
20060
20451
 
20061
20452
  T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
@@ -20282,31 +20673,82 @@ T['io.flow.internal.v0.models.debug_banking_details'] = PropTypes.exact({
20282
20673
  account: T['io.flow.internal.v0.models.bank_account'].isRequired,
20283
20674
  });
20284
20675
 
20285
- T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'] = PropTypes.oneOf(['b2b_invoice', 'b2b_credit_memo']);
20286
- T['io.flow.internal.v0.enums.b2b_tax_rate_type'] = PropTypes.oneOf(['basic', 'preferential', 'exempt']);
20287
- T['io.flow.consumer.invoice.v0.enums.tax_type'] = PropTypes.oneOf(['vat', 'gst', 'hst', 'pst', 'qst', 'sales_tax']);
20288
- T['io.flow.internal.v0.enums.restriction_status'] = PropTypes.oneOf(['pending', 'in_review', 'escalated', 'accepted', 'restricted']);
20289
-
20290
- T['io.flow.internal.v0.models.restriction_item_review_summary'] = PropTypes.exact({
20291
- rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
20292
- status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
20293
- updated_at: PropTypes.string.isRequired,
20676
+ T['io.flow.common.v0.models.entity_identifier'] = PropTypes.exact({
20677
+ name: T['io.flow.common.v0.enums.entity_identifier_type'].isRequired,
20678
+ number: PropTypes.string.isRequired,
20679
+ issuing_country: PropTypes.string,
20294
20680
  });
20295
20681
 
20296
- T['io.flow.internal.v0.models.restriction_product_summary'] = PropTypes.exact({
20297
- name: PropTypes.string.isRequired,
20298
- restrictions: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review_summary']).isRequired,
20299
- prohibited_regions: PropTypes.arrayOf(PropTypes.string),
20682
+ T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
20683
+ number: PropTypes.string.isRequired,
20684
+ country: PropTypes.string.isRequired,
20685
+ province_number: PropTypes.string,
20686
+ province: PropTypes.string,
20300
20687
  });
20301
20688
 
20302
- T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact({
20303
- status: T['io.flow.internal.v0.enums.restriction_status'],
20304
- statuses: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_status']),
20305
- rule_ids: PropTypes.arrayOf(PropTypes.string),
20306
- user_ids: PropTypes.arrayOf(PropTypes.string),
20307
- exclude_items_with_pc: PropTypes.bool,
20308
- category: PropTypes.string,
20309
- product_name_query: PropTypes.string,
20689
+ T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'] = PropTypes.exact({
20690
+ name: PropTypes.string.isRequired,
20691
+ vat: T['io.flow.common.v0.models.merchant_of_record_entity_registration'],
20692
+ streets: PropTypes.arrayOf(PropTypes.string).isRequired,
20693
+ city: PropTypes.string.isRequired,
20694
+ province: PropTypes.string,
20695
+ postal: PropTypes.string,
20696
+ country: PropTypes.string.isRequired,
20697
+ phone: PropTypes.string,
20698
+ email: PropTypes.string,
20699
+ starts_at: PropTypes.string.isRequired,
20700
+ ends_at: PropTypes.string,
20701
+ center: PropTypes.string,
20702
+ currency: PropTypes.string,
20703
+ });
20704
+
20705
+ T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'] = PropTypes.oneOf([
20706
+ 'b2b_invoice',
20707
+ 'b2b_credit_memo',
20708
+ 'mor_invoice',
20709
+ 'mor_credit_memo',
20710
+ 'label_invoice',
20711
+ 'label_credit_memo',
20712
+ ]);
20713
+
20714
+ T['io.flow.internal.v0.enums.b2b_tax_rate_type'] = PropTypes.oneOf(['basic', 'preferential', 'exempt']);
20715
+ T['io.flow.consumer.invoice.v0.enums.tax_type'] = PropTypes.oneOf(['vat', 'gst', 'hst', 'pst', 'qst', 'sales_tax']);
20716
+ T['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'] = PropTypes.oneOf(['label', 'trueup']);
20717
+
20718
+ T['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'] = PropTypes.exact({
20719
+ discriminator: PropTypes.oneOf(['b2b_fee_shipping_tax_trigger_metadata']).isRequired,
20720
+ trigger_type: T['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'].isRequired,
20721
+ });
20722
+
20723
+ T['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'] = PropTypes.oneOf(['capture', 'order']);
20724
+
20725
+ T['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'] = PropTypes.exact({
20726
+ discriminator: PropTypes.oneOf(['b2b_fee_mor_tax_trigger_metadata']).isRequired,
20727
+ trigger_type: T['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'].isRequired,
20728
+ });
20729
+
20730
+ T['io.flow.internal.v0.enums.restriction_status'] = PropTypes.oneOf(['pending', 'in_review', 'escalated', 'accepted', 'restricted']);
20731
+
20732
+ T['io.flow.internal.v0.models.restriction_item_review_summary'] = PropTypes.exact({
20733
+ rule: T['io.flow.internal.v0.models.restriction_rule_summary'].isRequired,
20734
+ status: T['io.flow.internal.v0.enums.restriction_status'].isRequired,
20735
+ updated_at: PropTypes.string.isRequired,
20736
+ });
20737
+
20738
+ T['io.flow.internal.v0.models.restriction_product_summary'] = PropTypes.exact({
20739
+ name: PropTypes.string.isRequired,
20740
+ restrictions: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review_summary']).isRequired,
20741
+ prohibited_regions: PropTypes.arrayOf(PropTypes.string),
20742
+ });
20743
+
20744
+ T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact({
20745
+ status: T['io.flow.internal.v0.enums.restriction_status'],
20746
+ statuses: PropTypes.arrayOf(T['io.flow.internal.v0.enums.restriction_status']),
20747
+ rule_ids: PropTypes.arrayOf(PropTypes.string),
20748
+ user_ids: PropTypes.arrayOf(PropTypes.string),
20749
+ exclude_items_with_pc: PropTypes.bool,
20750
+ category: PropTypes.string,
20751
+ product_name_query: PropTypes.string,
20310
20752
  hs6: PropTypes.string,
20311
20753
  positive_keywords: PropTypes.arrayOf(PropTypes.string),
20312
20754
  negative_keywords: PropTypes.arrayOf(PropTypes.string),
@@ -20364,6 +20806,14 @@ T['io.flow.common.v0.models.name'] = PropTypes.exact({
20364
20806
  last: PropTypes.string,
20365
20807
  });
20366
20808
 
20809
+ T['io.flow.organization.v0.models.invitation_form'] = PropTypes.exact({
20810
+ organization: PropTypes.string.isRequired,
20811
+ email: PropTypes.string.isRequired,
20812
+ name: T['io.flow.common.v0.models.name'],
20813
+ role: T['io.flow.common.v0.enums.role'],
20814
+ roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
20815
+ });
20816
+
20367
20817
  T['io.flow.internal.v0.models.search_customer_summary'] = PropTypes.exact({
20368
20818
  name: T['io.flow.common.v0.models.name'].isRequired,
20369
20819
  email: PropTypes.string,
@@ -21308,76 +21758,7 @@ T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
21308
21758
  restriction_rule: T['io.flow.internal.v0.models.restriction_rule'].isRequired,
21309
21759
  });
21310
21760
 
21311
- T['io.flow.internal.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
21312
- T['io.flow.internal.v0.enums.anirban_item_type'] = PropTypes.oneOf(['physical', 'digital']);
21313
21761
  T['io.flow.internal.v0.enums.amrutha_item_type'] = PropTypes.oneOf(['physical', 'digital']);
21314
- T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
21315
-
21316
- T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
21317
- role: T['io.flow.common.v0.enums.role'],
21318
- environment: T['io.flow.common.v0.enums.environment'].isRequired,
21319
- });
21320
-
21321
- T['io.flow.organization.v0.models.membership_put_form'] = PropTypes.exact({
21322
- role: T['io.flow.common.v0.enums.role'],
21323
- roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
21324
- });
21325
-
21326
- T['io.flow.organization.v0.models.membership_form'] = PropTypes.exact({
21327
- organization: PropTypes.string.isRequired,
21328
- user: PropTypes.string.isRequired,
21329
- role: T['io.flow.common.v0.enums.role'],
21330
- roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
21331
- });
21332
-
21333
- T['io.flow.organization.v0.models.invitation_form'] = PropTypes.exact({
21334
- organization: PropTypes.string.isRequired,
21335
- email: PropTypes.string.isRequired,
21336
- name: T['io.flow.common.v0.models.name'],
21337
- role: T['io.flow.common.v0.enums.role'],
21338
- roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
21339
- });
21340
-
21341
- T['io.flow.channel.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
21342
- role: T['io.flow.common.v0.enums.role'],
21343
- });
21344
-
21345
- T['io.flow.channel.internal.v0.models.channel_membership_form'] = PropTypes.exact({
21346
- channel_id: PropTypes.string.isRequired,
21347
- user_id: PropTypes.string.isRequired,
21348
- role: T['io.flow.common.v0.enums.role'],
21349
- });
21350
-
21351
- T['io.flow.internal.v0.models.partner_membership_put_form'] = PropTypes.exact({
21352
- role: T['io.flow.common.v0.enums.role'].isRequired,
21353
- });
21354
-
21355
- T['io.flow.internal.v0.models.partner_membership_form'] = PropTypes.exact({
21356
- user: PropTypes.string.isRequired,
21357
- role: T['io.flow.common.v0.enums.role'].isRequired,
21358
- });
21359
-
21360
- T['io.flow.internal.v0.models.partner_authorization'] = PropTypes.exact({
21361
- role: T['io.flow.common.v0.enums.role'].isRequired,
21362
- environment: T['io.flow.common.v0.enums.environment'].isRequired,
21363
- });
21364
-
21365
- T['io.flow.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
21366
- role: T['io.flow.common.v0.enums.role'],
21367
- });
21368
-
21369
- T['io.flow.internal.v0.models.channel_membership_form'] = PropTypes.exact({
21370
- channel_id: PropTypes.string.isRequired,
21371
- user_id: PropTypes.string.isRequired,
21372
- role: T['io.flow.common.v0.enums.role'],
21373
- });
21374
-
21375
- T['io.flow.internal.v0.models.all_organizations_membership'] = PropTypes.exact({
21376
- user_id: PropTypes.string.isRequired,
21377
- role: T['io.flow.common.v0.enums.role'].isRequired,
21378
- });
21379
-
21380
- T['io.flow.internal.v0.enums.aldo_item_type'] = PropTypes.oneOf(['physical', 'digital']);
21381
21762
 
21382
21763
  T['io.flow.internal.v0.models.afterpay_refund'] = PropTypes.exact({
21383
21764
  id: PropTypes.string.isRequired,
@@ -22252,6 +22633,7 @@ T['io.flow.billing.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
22252
22633
  'transfer',
22253
22634
  'negative_balance_guarantee',
22254
22635
  'sp',
22636
+ 'rev_share',
22255
22637
  ]);
22256
22638
 
22257
22639
  T['io.flow.billing.v0.models.fee_deduction'] = PropTypes.exact({
@@ -22433,7 +22815,6 @@ T['io.flow.merchant.onboarding.v0.models.common_merchant_application_form'] = Pr
22433
22815
  beneficiary_details: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'],
22434
22816
  other_trade_sector: PropTypes.string,
22435
22817
  center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
22436
- center_address: T['io.flow.common.v0.models.address'],
22437
22818
  average_order_weight: PropTypes.number,
22438
22819
  average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
22439
22820
  package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
@@ -22471,7 +22852,6 @@ T['io.flow.merchant.onboarding.v0.models.common_merchant_application'] = PropTyp
22471
22852
  beneficiary_details: T['io.flow.merchant.onboarding.v0.models.merchant_onboarding_beneficiary_details'],
22472
22853
  other_trade_sector: PropTypes.string,
22473
22854
  center_contact: T['io.flow.merchant.onboarding.v0.models.operations_contact'],
22474
- center_address: T['io.flow.common.v0.models.address'],
22475
22855
  average_order_weight: PropTypes.number,
22476
22856
  average_order_weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
22477
22857
  package_dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']),
@@ -23336,6 +23716,26 @@ T['io.flow.internal.v0.models.shipping_rate_estimate_internal'] = PropTypes.exac
23336
23716
  available: PropTypes.arrayOf(T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal']).isRequired,
23337
23717
  });
23338
23718
 
23719
+ T['io.flow.internal.v0.models.shipping_cost_summary'] = PropTypes.exact({
23720
+ id: PropTypes.string.isRequired,
23721
+ source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
23722
+ organization_id: PropTypes.string.isRequired,
23723
+ order_number: PropTypes.string.isRequired,
23724
+ amount: T['io.flow.common.v0.models.money'].isRequired,
23725
+ tax: T['io.flow.common.v0.models.money'].isRequired,
23726
+ label_id: PropTypes.string,
23727
+ base: T['io.flow.trueup.v0.models.label_base'],
23728
+ surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']),
23729
+ });
23730
+
23731
+ T['io.flow.internal.v0.models.shipping_cost_upserted'] = PropTypes.exact({
23732
+ discriminator: PropTypes.oneOf(['shipping_cost_upserted']).isRequired,
23733
+ event_id: PropTypes.string.isRequired,
23734
+ timestamp: PropTypes.string.isRequired,
23735
+ organization: PropTypes.string.isRequired,
23736
+ shipping_cost: T['io.flow.internal.v0.models.shipping_cost_summary'].isRequired,
23737
+ });
23738
+
23339
23739
  T['io.flow.internal.v0.models.shipment_cost_summary'] = PropTypes.exact({
23340
23740
  lane_id: PropTypes.string,
23341
23741
  ratecard_id: PropTypes.string,
@@ -23395,6 +23795,22 @@ T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes
23395
23795
  fingerprint: PropTypes.string.isRequired,
23396
23796
  });
23397
23797
 
23798
+ T['io.flow.internal.v0.models.mor_cost_summary'] = PropTypes.exact({
23799
+ id: PropTypes.string.isRequired,
23800
+ organization_id: PropTypes.string.isRequired,
23801
+ order_number: PropTypes.string.isRequired,
23802
+ amount: T['io.flow.common.v0.models.money'].isRequired,
23803
+ tax: T['io.flow.common.v0.models.money'].isRequired,
23804
+ });
23805
+
23806
+ T['io.flow.internal.v0.models.mor_cost_upserted'] = PropTypes.exact({
23807
+ discriminator: PropTypes.oneOf(['mor_cost_upserted']).isRequired,
23808
+ event_id: PropTypes.string.isRequired,
23809
+ timestamp: PropTypes.string.isRequired,
23810
+ organization: PropTypes.string.isRequired,
23811
+ mor_cost: T['io.flow.internal.v0.models.mor_cost_summary'].isRequired,
23812
+ });
23813
+
23398
23814
  T['io.flow.internal.v0.models.liability_money'] = PropTypes.exact({
23399
23815
  local: T['io.flow.common.v0.models.money'].isRequired,
23400
23816
  base: T['io.flow.common.v0.models.money'].isRequired,
@@ -23442,20 +23858,10 @@ T['io.flow.internal.v0.models.fx_revenue_recognition'] = PropTypes.exact({
23442
23858
  reporting_date: PropTypes.string,
23443
23859
  });
23444
23860
 
23445
- T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'] = PropTypes.exact({
23446
- discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee_amount_by_weight_put_form']).isRequired,
23447
- amount: T['io.flow.common.v0.models.money'].isRequired,
23448
- weight: T['io.flow.ratecard.v0.models.fee_weight'].isRequired,
23449
- });
23450
-
23451
- T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'] = PropTypes.oneOfType([
23452
- T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'],
23453
- T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'],
23454
- ]);
23455
-
23456
23861
  T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
23457
23862
  number: PropTypes.string.isRequired,
23458
23863
  quantity: PropTypes.number.isRequired,
23864
+ line_item_identifier: PropTypes.string,
23459
23865
  shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
23460
23866
  price: T['io.flow.common.v0.models.money'],
23461
23867
  attributes: PropTypes.objectOf(PropTypes.string),
@@ -23465,6 +23871,7 @@ T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
23465
23871
  });
23466
23872
 
23467
23873
  T['io.flow.ratecard.v0.models.shipping_rate_estimate_request'] = PropTypes.exact({
23874
+ carrier_id: PropTypes.string.isRequired,
23468
23875
  origin_address: T['io.flow.common.v0.models.address'].isRequired,
23469
23876
  destination_address: T['io.flow.common.v0.models.address'].isRequired,
23470
23877
  package_dimensions: T['io.flow.common.v0.models.dimension'].isRequired,
@@ -24019,6 +24426,21 @@ T['io.flow.internal.v0.models.calculation_stamping_line_item'] = PropTypes.exact
24019
24426
  total: T['io.flow.common.v0.models.money'].isRequired,
24020
24427
  });
24021
24428
 
24429
+ T['io.flow.internal.v0.models.b2b_transaction_tax_line'] = PropTypes.exact({
24430
+ tax_type: T['io.flow.consumer.invoice.v0.enums.tax_type'].isRequired,
24431
+ tax_rate: PropTypes.number.isRequired,
24432
+ tax_amount: T['io.flow.common.v0.models.money'].isRequired,
24433
+ tax_rate_type: T['io.flow.internal.v0.enums.b2b_tax_rate_type'].isRequired,
24434
+ });
24435
+
24436
+ T['io.flow.internal.v0.models.b2b_transaction_taxable_item'] = PropTypes.exact({
24437
+ line_item_reference: PropTypes.string.isRequired,
24438
+ label: PropTypes.string.isRequired,
24439
+ taxable_amount: T['io.flow.common.v0.models.money'].isRequired,
24440
+ total: T['io.flow.common.v0.models.money'].isRequired,
24441
+ taxes: PropTypes.arrayOf(T['io.flow.internal.v0.models.b2b_transaction_tax_line']).isRequired,
24442
+ });
24443
+
24022
24444
  T['io.flow.internal.v0.models.tax_type_total'] = PropTypes.exact({
24023
24445
  value: T['io.flow.common.v0.models.money'].isRequired,
24024
24446
  });
@@ -24039,6 +24461,8 @@ T['io.flow.internal.v0.models.b2b_tax_ledger_form'] = PropTypes.exact({
24039
24461
  document_type: T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'].isRequired,
24040
24462
  document_date: PropTypes.string.isRequired,
24041
24463
  ledger_report_id: PropTypes.string,
24464
+ voids_invoice_number: PropTypes.string,
24465
+ document_number: PropTypes.string,
24042
24466
  });
24043
24467
 
24044
24468
  T['io.flow.internal.v0.models.b2b_tax_ledger'] = PropTypes.exact({
@@ -24058,6 +24482,8 @@ T['io.flow.internal.v0.models.b2b_tax_ledger'] = PropTypes.exact({
24058
24482
  document_type: T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'].isRequired,
24059
24483
  document_date: PropTypes.string.isRequired,
24060
24484
  ledger_report_id: PropTypes.string,
24485
+ voids_invoice_number: PropTypes.string,
24486
+ document_number: PropTypes.string,
24061
24487
  });
24062
24488
 
24063
24489
  T['io.flow.internal.v0.models.adjustment_details_amount_fixed'] = PropTypes.exact({
@@ -24141,6 +24567,37 @@ T['io.flow.internal.v0.unions.calculator_stamp'] = PropTypes.oneOfType([
24141
24567
  T['io.flow.internal.v0.models.calculation_step'],
24142
24568
  ]);
24143
24569
 
24570
+ T['io.flow.internal.v0.enums.mail_class'] = PropTypes.oneOf(['standard', 'express']);
24571
+
24572
+ T['io.flow.internal.v0.models.flat_rate'] = PropTypes.exact({
24573
+ mail_class: T['io.flow.internal.v0.enums.mail_class'].isRequired,
24574
+ carrier_id: PropTypes.string.isRequired,
24575
+ service_id: PropTypes.string.isRequired,
24576
+ price: T['io.flow.common.v0.models.money'].isRequired,
24577
+ free_shipping_threshold: T['io.flow.common.v0.models.money'],
24578
+ min_delivery_days: PropTypes.number,
24579
+ max_delivery_days: PropTypes.number,
24580
+ });
24581
+
24582
+ T['io.flow.internal.v0.models.adaptive_shipping_rate'] = PropTypes.exact({
24583
+ id: PropTypes.string.isRequired,
24584
+ organization_id: PropTypes.string.isRequired,
24585
+ destination_country: PropTypes.string.isRequired,
24586
+ coefficient: PropTypes.number.isRequired,
24587
+ flat_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.flat_rate']).isRequired,
24588
+ version_id: PropTypes.string,
24589
+ effective_at: PropTypes.string.isRequired,
24590
+ effective_until: PropTypes.string,
24591
+ });
24592
+
24593
+ T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'] = PropTypes.exact({
24594
+ discriminator: PropTypes.oneOf(['adaptive_shipping_rate_upserted']).isRequired,
24595
+ event_id: PropTypes.string.isRequired,
24596
+ timestamp: PropTypes.string.isRequired,
24597
+ organization: PropTypes.string.isRequired,
24598
+ adaptive_shipping_rate: T['io.flow.internal.v0.models.adaptive_shipping_rate'].isRequired,
24599
+ });
24600
+
24144
24601
  T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
24145
24602
 
24146
24603
  T['io.flow.internal.v0.models.action_quantity'] = PropTypes.exact({
@@ -24432,21 +24889,6 @@ T['io.flow.internal.v0.models.ratecard_internal_summary'] = PropTypes.exact({
24432
24889
  number: PropTypes.string.isRequired,
24433
24890
  });
24434
24891
 
24435
- T['io.flow.internal.v0.models.ratecard_standard_configuration'] = PropTypes.exact({
24436
- id: PropTypes.string.isRequired,
24437
- key: PropTypes.string.isRequired,
24438
- source_ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
24439
- settings: T['io.flow.internal.v0.models.ratecard_standard_settings'].isRequired,
24440
- });
24441
-
24442
- T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'] = PropTypes.exact({
24443
- discriminator: PropTypes.oneOf(['ratecard_standard_configuration_upserted']).isRequired,
24444
- event_id: PropTypes.string.isRequired,
24445
- timestamp: PropTypes.string.isRequired,
24446
- organization: PropTypes.string.isRequired,
24447
- configuration: T['io.flow.internal.v0.models.ratecard_standard_configuration'].isRequired,
24448
- });
24449
-
24450
24892
  T['io.flow.internal.v0.models.ratecard_service_fees_override'] = PropTypes.exact({
24451
24893
  ratecard: T['io.flow.internal.v0.models.ratecard_internal_summary'].isRequired,
24452
24894
  service_fees: PropTypes.arrayOf(T['io.flow.ratecard.v0.unions.service_fee']).isRequired,
@@ -24572,6 +25014,130 @@ T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
24572
25014
  currency: PropTypes.string.isRequired,
24573
25015
  });
24574
25016
 
25017
+ T['io.flow.internal.v0.models.channel_shop'] = PropTypes.exact({
25018
+ id: PropTypes.string.isRequired,
25019
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
25020
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
25021
+ external_id: PropTypes.string.isRequired,
25022
+ name: PropTypes.string.isRequired,
25023
+ domains: T['io.flow.internal.v0.models.channel_organization_domains'].isRequired,
25024
+ });
25025
+
25026
+ T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
25027
+ id: PropTypes.string.isRequired,
25028
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
25029
+ key: PropTypes.string.isRequired,
25030
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
25031
+ name: PropTypes.string.isRequired,
25032
+ slug: PropTypes.string,
25033
+ defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
25034
+ attributes: PropTypes.objectOf(PropTypes.string),
25035
+ });
25036
+
25037
+ T['io.flow.channel.internal.v0.models.channel_organization_installation'] = PropTypes.exact({
25038
+ organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
25039
+ tokens: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_organization_token']).isRequired,
25040
+ });
25041
+
25042
+ T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
25043
+ organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
25044
+
25045
+ tokens: PropTypes.arrayOf(
25046
+ T['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_tokens'],
25047
+ ).isRequired,
25048
+ });
25049
+
25050
+ T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
25051
+ organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
25052
+ tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
25053
+ });
25054
+
25055
+ T['io.flow.internal.v0.models.channel_organization_installation'] = PropTypes.exact({
25056
+ organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
25057
+ tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_organization_token']).isRequired,
25058
+ });
25059
+
25060
+ T['io.flow.internal.v0.models.channel_organization_identifier'] = PropTypes.exact({
25061
+ id: PropTypes.string.isRequired,
25062
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
25063
+ identifier: PropTypes.string.isRequired,
25064
+ });
25065
+
25066
+ T['io.flow.internal.v0.models.channel_organization_identifier_upserted'] = PropTypes.exact({
25067
+ discriminator: PropTypes.oneOf(['channel_organization_identifier_upserted']).isRequired,
25068
+ event_id: PropTypes.string.isRequired,
25069
+ timestamp: PropTypes.string.isRequired,
25070
+ channel_id: PropTypes.string.isRequired,
25071
+ channel_organization_identifier: T['io.flow.internal.v0.models.channel_organization_identifier'].isRequired,
25072
+ });
25073
+
25074
+ T['io.flow.internal.v0.models.channel_order_summary'] = PropTypes.exact({
25075
+ id: PropTypes.string.isRequired,
25076
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
25077
+ external_order_reference: PropTypes.string.isRequired,
25078
+ order_number: PropTypes.string.isRequired,
25079
+ fulfullment_details: T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'].isRequired,
25080
+ });
25081
+
25082
+ T['io.flow.internal.v0.models.channel_order_summary_upserted'] = PropTypes.exact({
25083
+ discriminator: PropTypes.oneOf(['channel_order_summary_upserted']).isRequired,
25084
+ event_id: PropTypes.string.isRequired,
25085
+ timestamp: PropTypes.string.isRequired,
25086
+ channel_id: PropTypes.string.isRequired,
25087
+ channel_order_summary: T['io.flow.internal.v0.models.channel_order_summary'].isRequired,
25088
+ });
25089
+
25090
+ T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = PropTypes.exact({
25091
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
25092
+ number: PropTypes.string.isRequired,
25093
+ });
25094
+
25095
+ T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'] = PropTypes.exact({
25096
+ discriminator: PropTypes.oneOf(['time_elapsed']).isRequired,
25097
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
25098
+ created_at: PropTypes.string.isRequired,
25099
+ });
25100
+
25101
+ T['io.flow.internal.v0.models.proof_of_posting_synthetic'] = PropTypes.exact({
25102
+ discriminator: PropTypes.oneOf(['synthetic']).isRequired,
25103
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
25104
+ created_at: PropTypes.string.isRequired,
25105
+ });
25106
+
25107
+ T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
25108
+ T['io.flow.internal.v0.models.proof_of_posting_fulfilled'],
25109
+ T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
25110
+ T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
25111
+ T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
25112
+ T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'],
25113
+ T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'],
25114
+ T['io.flow.internal.v0.models.proof_of_posting_synthetic'],
25115
+ ]);
25116
+
25117
+ T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
25118
+ id: PropTypes.string.isRequired,
25119
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
25120
+ evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
25121
+ });
25122
+
25123
+ T['io.flow.internal.v0.models.lost_chargeback'] = PropTypes.exact({
25124
+ id: PropTypes.string.isRequired,
25125
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
25126
+ });
25127
+
25128
+ T['io.flow.internal.v0.models.bank_payment_order'] = PropTypes.exact({
25129
+ id: PropTypes.string.isRequired,
25130
+ payment: T['io.flow.internal.v0.models.bank_payment_reference'].isRequired,
25131
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
25132
+ });
25133
+
25134
+ T['io.flow.internal.v0.models.bank_payment_order_upserted'] = PropTypes.exact({
25135
+ discriminator: PropTypes.oneOf(['bank_payment_order_upserted']).isRequired,
25136
+ event_id: PropTypes.string.isRequired,
25137
+ timestamp: PropTypes.string.isRequired,
25138
+ bank_payment_order: T['io.flow.internal.v0.models.bank_payment_order'].isRequired,
25139
+ });
25140
+
24575
25141
  T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
24576
25142
  organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
24577
25143
  name: PropTypes.string.isRequired,
@@ -24660,6 +25226,7 @@ T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
24660
25226
  reference_id: PropTypes.string,
24661
25227
  logistics_integration_provider: PropTypes.string,
24662
25228
  tax_lrp_liabilities: PropTypes.arrayOf(T['io.flow.internal.v0.models.liability']),
25229
+ channel_id: PropTypes.string,
24663
25230
  });
24664
25231
 
24665
25232
  T['io.flow.internal.v0.models.invoice_data'] = PropTypes.exact({
@@ -24732,157 +25299,58 @@ T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
24732
25299
  vat_name: PropTypes.string.isRequired,
24733
25300
  shipping_price: PropTypes.string.isRequired,
24734
25301
  shipment_recipient: PropTypes.string,
24735
- eu_preferential_origin: PropTypes.string,
24736
- customs_master_file_number: PropTypes.string,
24737
- merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'],
24738
- notes_export_declaration: PropTypes.string,
24739
- notes_import_duty_taxes_due: PropTypes.string,
24740
- invoice_date: PropTypes.string.isRequired,
24741
- goods_value: PropTypes.number.isRequired,
24742
- total_taxes: PropTypes.number.isRequired,
24743
- total_duties: PropTypes.number.isRequired,
24744
- customs_value: PropTypes.number.isRequired,
24745
- total_value: PropTypes.number.isRequired,
24746
- show_gst_exemption_column: PropTypes.bool.isRequired,
24747
- show_eccn: PropTypes.bool.isRequired,
24748
- show_manufacturer_id: PropTypes.bool.isRequired,
24749
- show_us_out_verbiage: PropTypes.bool.isRequired,
24750
- commercial_invoice_mode: PropTypes.string.isRequired,
24751
- show_us_outbound_signature: PropTypes.bool.isRequired,
24752
- show_us_outbound_stamp: PropTypes.bool.isRequired,
24753
- invoice_url: PropTypes.string,
24754
- invoice_number: PropTypes.string,
24755
- });
24756
-
24757
- T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'] = PropTypes.exact({
24758
- discriminator: PropTypes.oneOf(['commercial_invoice_internal_upserted']).isRequired,
24759
- event_id: PropTypes.string.isRequired,
24760
- timestamp: PropTypes.string.isRequired,
24761
- invoice: T['io.flow.internal.v0.models.commercial_invoice_internal'].isRequired,
24762
- });
24763
-
24764
- T['io.flow.internal.v0.models.channel_shop'] = PropTypes.exact({
24765
- id: PropTypes.string.isRequired,
24766
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
24767
- channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
24768
- external_id: PropTypes.string.isRequired,
24769
- name: PropTypes.string.isRequired,
24770
- domains: T['io.flow.internal.v0.models.channel_organization_domains'].isRequired,
24771
- });
24772
-
24773
- T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
24774
- id: PropTypes.string.isRequired,
24775
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
24776
- key: PropTypes.string.isRequired,
24777
- channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
24778
- name: PropTypes.string.isRequired,
24779
- slug: PropTypes.string,
24780
- defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
24781
- attributes: PropTypes.objectOf(PropTypes.string),
24782
- });
24783
-
24784
- T['io.flow.channel.internal.v0.models.channel_organization_installation'] = PropTypes.exact({
24785
- organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
24786
- tokens: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_organization_token']).isRequired,
24787
- });
24788
-
24789
- T['io.flow.channel.shopify.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
24790
- organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
24791
-
24792
- tokens: PropTypes.arrayOf(
24793
- T['io.flow.channel.shopify.internal.v0.models.shopify_channel_organization_tokens'],
24794
- ).isRequired,
24795
- });
24796
-
24797
- T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
24798
- organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
24799
- tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
24800
- });
24801
-
24802
- T['io.flow.internal.v0.models.channel_organization_installation'] = PropTypes.exact({
24803
- organization: T['io.flow.channel.v0.models.channel_organization'].isRequired,
24804
- tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_organization_token']).isRequired,
24805
- });
24806
-
24807
- T['io.flow.internal.v0.models.channel_organization_identifier'] = PropTypes.exact({
24808
- id: PropTypes.string.isRequired,
24809
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
24810
- identifier: PropTypes.string.isRequired,
24811
- });
24812
-
24813
- T['io.flow.internal.v0.models.channel_organization_identifier_upserted'] = PropTypes.exact({
24814
- discriminator: PropTypes.oneOf(['channel_organization_identifier_upserted']).isRequired,
24815
- event_id: PropTypes.string.isRequired,
24816
- timestamp: PropTypes.string.isRequired,
24817
- channel_id: PropTypes.string.isRequired,
24818
- channel_organization_identifier: T['io.flow.internal.v0.models.channel_organization_identifier'].isRequired,
24819
- });
24820
-
24821
- T['io.flow.internal.v0.models.channel_order_summary'] = PropTypes.exact({
24822
- id: PropTypes.string.isRequired,
24823
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
24824
- external_order_reference: PropTypes.string.isRequired,
24825
- order_number: PropTypes.string.isRequired,
24826
- fulfullment_details: T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'].isRequired,
24827
- });
24828
-
24829
- T['io.flow.internal.v0.models.channel_order_summary_upserted'] = PropTypes.exact({
24830
- discriminator: PropTypes.oneOf(['channel_order_summary_upserted']).isRequired,
24831
- event_id: PropTypes.string.isRequired,
24832
- timestamp: PropTypes.string.isRequired,
24833
- channel_id: PropTypes.string.isRequired,
24834
- channel_order_summary: T['io.flow.internal.v0.models.channel_order_summary'].isRequired,
24835
- });
24836
-
24837
- T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = PropTypes.exact({
24838
- organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
24839
- number: PropTypes.string.isRequired,
24840
- });
24841
-
24842
- T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'] = PropTypes.exact({
24843
- discriminator: PropTypes.oneOf(['time_elapsed']).isRequired,
24844
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
24845
- created_at: PropTypes.string.isRequired,
24846
- });
24847
-
24848
- T['io.flow.internal.v0.models.proof_of_posting_synthetic'] = PropTypes.exact({
24849
- discriminator: PropTypes.oneOf(['synthetic']).isRequired,
24850
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
24851
- created_at: PropTypes.string.isRequired,
24852
- });
24853
-
24854
- T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
24855
- T['io.flow.internal.v0.models.proof_of_posting_fulfilled'],
24856
- T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
24857
- T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
24858
- T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
24859
- T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'],
24860
- T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'],
24861
- T['io.flow.internal.v0.models.proof_of_posting_synthetic'],
24862
- ]);
24863
-
24864
- T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
24865
- id: PropTypes.string.isRequired,
24866
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
24867
- evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
25302
+ eu_preferential_origin: PropTypes.string,
25303
+ customs_master_file_number: PropTypes.string,
25304
+ merchant_of_record_entity: T['io.flow.common.v0.models.merchant_of_record_entity'],
25305
+ notes_export_declaration: PropTypes.string,
25306
+ notes_import_duty_taxes_due: PropTypes.string,
25307
+ invoice_date: PropTypes.string.isRequired,
25308
+ goods_value: PropTypes.number.isRequired,
25309
+ total_taxes: PropTypes.number.isRequired,
25310
+ total_duties: PropTypes.number.isRequired,
25311
+ customs_value: PropTypes.number.isRequired,
25312
+ total_value: PropTypes.number.isRequired,
25313
+ show_gst_exemption_column: PropTypes.bool.isRequired,
25314
+ show_eccn: PropTypes.bool.isRequired,
25315
+ show_manufacturer_id: PropTypes.bool.isRequired,
25316
+ show_us_out_verbiage: PropTypes.bool.isRequired,
25317
+ commercial_invoice_mode: PropTypes.string.isRequired,
25318
+ show_us_outbound_signature: PropTypes.bool.isRequired,
25319
+ show_us_outbound_stamp: PropTypes.bool.isRequired,
25320
+ invoice_url: PropTypes.string,
25321
+ invoice_number: PropTypes.string,
24868
25322
  });
24869
25323
 
24870
- T['io.flow.internal.v0.models.lost_chargeback'] = PropTypes.exact({
24871
- id: PropTypes.string.isRequired,
24872
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
25324
+ T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'] = PropTypes.exact({
25325
+ discriminator: PropTypes.oneOf(['commercial_invoice_internal_upserted']).isRequired,
25326
+ event_id: PropTypes.string.isRequired,
25327
+ timestamp: PropTypes.string.isRequired,
25328
+ invoice: T['io.flow.internal.v0.models.commercial_invoice_internal'].isRequired,
24873
25329
  });
24874
25330
 
24875
- T['io.flow.internal.v0.models.bank_payment_order'] = PropTypes.exact({
25331
+ T['io.flow.internal.v0.models.b2b_tax_transaction'] = PropTypes.exact({
24876
25332
  id: PropTypes.string.isRequired,
24877
- payment: T['io.flow.internal.v0.models.bank_payment_reference'].isRequired,
24878
- order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
25333
+ organization_id: PropTypes.string.isRequired,
25334
+ order_number: PropTypes.string.isRequired,
25335
+ transaction_source_id: PropTypes.string.isRequired,
25336
+ transaction_type: T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'].isRequired,
25337
+ transaction_date: PropTypes.string.isRequired,
25338
+ currency: PropTypes.string.isRequired,
25339
+ buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
25340
+ seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
25341
+ taxable_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.b2b_transaction_taxable_item']).isRequired,
25342
+ taxable_amount_total: T['io.flow.common.v0.models.money'].isRequired,
25343
+ tax_total: T['io.flow.common.v0.models.money'].isRequired,
25344
+ total: T['io.flow.common.v0.models.money'].isRequired,
25345
+ document_number: PropTypes.string,
24879
25346
  });
24880
25347
 
24881
- T['io.flow.internal.v0.models.bank_payment_order_upserted'] = PropTypes.exact({
24882
- discriminator: PropTypes.oneOf(['bank_payment_order_upserted']).isRequired,
25348
+ T['io.flow.internal.v0.models.b2b_tax_transaction_upserted'] = PropTypes.exact({
25349
+ discriminator: PropTypes.oneOf(['b2b_tax_transaction_upserted']).isRequired,
24883
25350
  event_id: PropTypes.string.isRequired,
24884
25351
  timestamp: PropTypes.string.isRequired,
24885
- bank_payment_order: T['io.flow.internal.v0.models.bank_payment_order'].isRequired,
25352
+ organization: PropTypes.string.isRequired,
25353
+ b2b_tax_transaction: T['io.flow.internal.v0.models.b2b_tax_transaction'].isRequired,
24886
25354
  });
24887
25355
 
24888
25356
  T['io.flow.internal.v0.models.order_reference'] = PropTypes.exact({
@@ -24903,6 +25371,8 @@ T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
24903
25371
  T['io.flow.internal.v0.models.accounting_return_metadata'],
24904
25372
  T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'],
24905
25373
  T['io.flow.internal.v0.models.channel_transaction_trigger_metadata'],
25374
+ T['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'],
25375
+ T['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'],
24906
25376
  ]);
24907
25377
 
24908
25378
  T['io.flow.common.v0.models.price'] = PropTypes.exact({
@@ -25157,6 +25627,21 @@ T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line'] = PropTypes.oneOfT
25157
25627
  T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip'],
25158
25628
  ]);
25159
25629
 
25630
+ T['io.flow.consumer.invoice.v0.models.fee_invoice'] = PropTypes.exact({
25631
+ id: PropTypes.string.isRequired,
25632
+ number: PropTypes.string.isRequired,
25633
+ invoice_type: T['io.flow.consumer.invoice.v0.enums.fee_invoice_type'].isRequired,
25634
+ buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
25635
+ seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
25636
+ date: PropTypes.string.isRequired,
25637
+ b2b_tax_transaction_id: PropTypes.string.isRequired,
25638
+ order_number: PropTypes.string.isRequired,
25639
+ tax: T['io.flow.common.v0.models.money'].isRequired,
25640
+ tax_lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.invoice_tax_line']),
25641
+ lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
25642
+ documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
25643
+ });
25644
+
25160
25645
  T['io.flow.consumer.invoice.v0.models.b2b_invoice'] = PropTypes.exact({
25161
25646
  id: PropTypes.string.isRequired,
25162
25647
  number: PropTypes.string.isRequired,
@@ -25195,6 +25680,7 @@ T['io.flow.consumer.invoice.v0.models.b2b_credit_memo'] = PropTypes.exact({
25195
25680
  b2b_invoice_type: T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'].isRequired,
25196
25681
  center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
25197
25682
  order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'],
25683
+ voids_b2b_invoice: PropTypes.bool,
25198
25684
  });
25199
25685
 
25200
25686
  T['io.flow.consumer.invoice.v0.models.consumer_invoice_payment'] = PropTypes.exact({
@@ -25527,54 +26013,6 @@ T['io.flow.internal.v0.models.subscription'] = PropTypes.exact({
25527
26013
  created_at: PropTypes.string.isRequired,
25528
26014
  });
25529
26015
 
25530
- T['io.flow.internal.v0.models.sarvesh_item_form'] = PropTypes.exact({
25531
- number: PropTypes.string.isRequired,
25532
- amount: T['io.flow.common.v0.models.price'].isRequired,
25533
- description: PropTypes.string,
25534
- type: T['io.flow.internal.v0.enums.sarvesh_item_type'].isRequired,
25535
- added_on: PropTypes.string.isRequired,
25536
- });
25537
-
25538
- T['io.flow.internal.v0.models.sarvesh_item'] = PropTypes.exact({
25539
- id: PropTypes.string.isRequired,
25540
- number: PropTypes.string.isRequired,
25541
- amount: T['io.flow.common.v0.models.price'].isRequired,
25542
- description: PropTypes.string,
25543
- type: T['io.flow.internal.v0.enums.sarvesh_item_type'].isRequired,
25544
- added_on: PropTypes.string.isRequired,
25545
- });
25546
-
25547
- T['io.flow.internal.v0.models.sarvesh_item_upserted'] = PropTypes.exact({
25548
- discriminator: PropTypes.oneOf(['sarvesh_item_upserted']).isRequired,
25549
- event_id: PropTypes.string.isRequired,
25550
- timestamp: PropTypes.string.isRequired,
25551
- item: T['io.flow.internal.v0.models.sarvesh_item'].isRequired,
25552
- });
25553
-
25554
- T['io.flow.internal.v0.models.rohan_item_form'] = PropTypes.exact({
25555
- number: PropTypes.string.isRequired,
25556
- amount: T['io.flow.common.v0.models.price'].isRequired,
25557
- description: PropTypes.string,
25558
- type: T['io.flow.internal.v0.enums.rohan_item_type'].isRequired,
25559
- added_on: PropTypes.string.isRequired,
25560
- });
25561
-
25562
- T['io.flow.internal.v0.models.rohan_item'] = PropTypes.exact({
25563
- id: PropTypes.string.isRequired,
25564
- number: PropTypes.string.isRequired,
25565
- amount: T['io.flow.common.v0.models.price'].isRequired,
25566
- description: PropTypes.string,
25567
- type: T['io.flow.internal.v0.enums.rohan_item_type'].isRequired,
25568
- added_on: PropTypes.string.isRequired,
25569
- });
25570
-
25571
- T['io.flow.internal.v0.models.rohan_item_upserted'] = PropTypes.exact({
25572
- discriminator: PropTypes.oneOf(['rohan_item_upserted']).isRequired,
25573
- event_id: PropTypes.string.isRequired,
25574
- timestamp: PropTypes.string.isRequired,
25575
- item: T['io.flow.internal.v0.models.rohan_item'].isRequired,
25576
- });
25577
-
25578
26016
  T['io.flow.internal.v0.models.restriction_product'] = PropTypes.exact({
25579
26017
  id: PropTypes.string.isRequired,
25580
26018
  organization_id: PropTypes.string.isRequired,
@@ -25624,20 +26062,20 @@ T['io.flow.internal.v0.models.restriction_item'] = PropTypes.exact({
25624
26062
  channel: PropTypes.string,
25625
26063
  });
25626
26064
 
25627
- T['io.flow.internal.v0.models.prateek_item_form'] = PropTypes.exact({
26065
+ T['io.flow.internal.v0.models.raveena_item_form'] = PropTypes.exact({
25628
26066
  number: PropTypes.string.isRequired,
25629
26067
  amount: T['io.flow.common.v0.models.price'].isRequired,
25630
26068
  description: PropTypes.string,
25631
- type: T['io.flow.internal.v0.enums.prateek_item_type'].isRequired,
26069
+ type: T['io.flow.internal.v0.enums.raveena_item_type'].isRequired,
25632
26070
  added_on: PropTypes.string.isRequired,
25633
26071
  });
25634
26072
 
25635
- T['io.flow.internal.v0.models.prateek_item'] = PropTypes.exact({
26073
+ T['io.flow.internal.v0.models.raveena_item'] = PropTypes.exact({
25636
26074
  id: PropTypes.string.isRequired,
25637
26075
  number: PropTypes.string.isRequired,
25638
26076
  amount: T['io.flow.common.v0.models.price'].isRequired,
25639
26077
  description: PropTypes.string,
25640
- type: T['io.flow.internal.v0.enums.prateek_item_type'].isRequired,
26078
+ type: T['io.flow.internal.v0.enums.raveena_item_type'].isRequired,
25641
26079
  added_on: PropTypes.string.isRequired,
25642
26080
  });
25643
26081
 
@@ -25679,60 +26117,12 @@ T['io.flow.internal.v0.models.order_revenue_region_chart'] = PropTypes.exact({
25679
26117
  data: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_revenue_region_data_point']).isRequired,
25680
26118
  });
25681
26119
 
25682
- T['io.flow.internal.v0.models.niall_item_form'] = PropTypes.exact({
25683
- number: PropTypes.string.isRequired,
25684
- amount: T['io.flow.common.v0.models.price'].isRequired,
25685
- description: PropTypes.string,
25686
- type: T['io.flow.internal.v0.enums.niall_item_type'].isRequired,
25687
- added_on: PropTypes.string.isRequired,
25688
- });
25689
-
25690
- T['io.flow.internal.v0.models.niall_item'] = PropTypes.exact({
25691
- id: PropTypes.string.isRequired,
25692
- number: PropTypes.string.isRequired,
25693
- amount: T['io.flow.common.v0.models.price'].isRequired,
25694
- description: PropTypes.string,
25695
- type: T['io.flow.internal.v0.enums.niall_item_type'].isRequired,
25696
- added_on: PropTypes.string.isRequired,
25697
- });
25698
-
25699
- T['io.flow.internal.v0.models.niall_item_upserted'] = PropTypes.exact({
25700
- discriminator: PropTypes.oneOf(['niall_item_upserted']).isRequired,
25701
- event_id: PropTypes.string.isRequired,
25702
- timestamp: PropTypes.string.isRequired,
25703
- item: T['io.flow.internal.v0.models.niall_item'].isRequired,
25704
- });
25705
-
25706
26120
  T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
25707
26121
  id: PropTypes.string.isRequired,
25708
26122
  description: PropTypes.string.isRequired,
25709
26123
  value: T['io.flow.common.v0.models.price'].isRequired,
25710
26124
  });
25711
26125
 
25712
- T['io.flow.internal.v0.models.hosein_item_form'] = PropTypes.exact({
25713
- number: PropTypes.string.isRequired,
25714
- amount: T['io.flow.common.v0.models.price'].isRequired,
25715
- description: PropTypes.string,
25716
- type: T['io.flow.internal.v0.enums.hosein_item_type'].isRequired,
25717
- added_on: PropTypes.string.isRequired,
25718
- });
25719
-
25720
- T['io.flow.internal.v0.models.hosein_item'] = PropTypes.exact({
25721
- id: PropTypes.string.isRequired,
25722
- number: PropTypes.string.isRequired,
25723
- amount: T['io.flow.common.v0.models.price'].isRequired,
25724
- description: PropTypes.string,
25725
- type: T['io.flow.internal.v0.enums.hosein_item_type'].isRequired,
25726
- added_on: PropTypes.string.isRequired,
25727
- });
25728
-
25729
- T['io.flow.internal.v0.models.hosein_item_upserted'] = PropTypes.exact({
25730
- discriminator: PropTypes.oneOf(['hosein_item_upserted']).isRequired,
25731
- event_id: PropTypes.string.isRequired,
25732
- timestamp: PropTypes.string.isRequired,
25733
- item: T['io.flow.internal.v0.models.hosein_item'].isRequired,
25734
- });
25735
-
25736
26126
  T['io.flow.internal.v0.models.gift_card'] = PropTypes.exact({
25737
26127
  id: PropTypes.string.isRequired,
25738
26128
  number: PropTypes.string.isRequired,
@@ -25785,6 +26175,30 @@ T['io.flow.internal.v0.models.components'] = PropTypes.exact({
25785
26175
  insurance: T['io.flow.common.v0.models.price'].isRequired,
25786
26176
  });
25787
26177
 
26178
+ T['io.flow.internal.v0.models.chenglin_item_form'] = PropTypes.exact({
26179
+ number: PropTypes.string.isRequired,
26180
+ amount: T['io.flow.common.v0.models.price'].isRequired,
26181
+ description: PropTypes.string,
26182
+ type: T['io.flow.internal.v0.enums.gabriel_item_type'].isRequired,
26183
+ added_on: PropTypes.string.isRequired,
26184
+ });
26185
+
26186
+ T['io.flow.internal.v0.models.chenglin_item'] = PropTypes.exact({
26187
+ id: PropTypes.string.isRequired,
26188
+ number: PropTypes.string.isRequired,
26189
+ amount: T['io.flow.common.v0.models.price'].isRequired,
26190
+ description: PropTypes.string,
26191
+ type: T['io.flow.internal.v0.enums.gabriel_item_type'].isRequired,
26192
+ added_on: PropTypes.string.isRequired,
26193
+ });
26194
+
26195
+ T['io.flow.internal.v0.models.chenglin_item_upserted'] = PropTypes.exact({
26196
+ discriminator: PropTypes.oneOf(['chenglin_item_upserted']).isRequired,
26197
+ event_id: PropTypes.string.isRequired,
26198
+ timestamp: PropTypes.string.isRequired,
26199
+ item: T['io.flow.internal.v0.models.chenglin_item'].isRequired,
26200
+ });
26201
+
25788
26202
  T['io.flow.internal.v0.models.fee'] = PropTypes.exact({
25789
26203
  value: T['io.flow.common.v0.models.price'].isRequired,
25790
26204
  description: PropTypes.string,
@@ -25812,6 +26226,30 @@ T['io.flow.internal.v0.models.next_billing_statement'] = PropTypes.exact({
25812
26226
  conditions: PropTypes.string,
25813
26227
  });
25814
26228
 
26229
+ T['io.flow.internal.v0.models.bojana_item_form'] = PropTypes.exact({
26230
+ number: PropTypes.string.isRequired,
26231
+ amount: T['io.flow.common.v0.models.price'].isRequired,
26232
+ description: PropTypes.string,
26233
+ type: T['io.flow.internal.v0.enums.bojana_item_type'].isRequired,
26234
+ added_on: PropTypes.string.isRequired,
26235
+ });
26236
+
26237
+ T['io.flow.internal.v0.models.bojana_item'] = PropTypes.exact({
26238
+ id: PropTypes.string.isRequired,
26239
+ number: PropTypes.string.isRequired,
26240
+ amount: T['io.flow.common.v0.models.price'].isRequired,
26241
+ description: PropTypes.string,
26242
+ type: T['io.flow.internal.v0.enums.bojana_item_type'].isRequired,
26243
+ added_on: PropTypes.string.isRequired,
26244
+ });
26245
+
26246
+ T['io.flow.internal.v0.models.bojana_item_upserted'] = PropTypes.exact({
26247
+ discriminator: PropTypes.oneOf(['bojana_item_upserted']).isRequired,
26248
+ event_id: PropTypes.string.isRequired,
26249
+ timestamp: PropTypes.string.isRequired,
26250
+ item: T['io.flow.internal.v0.models.bojana_item'].isRequired,
26251
+ });
26252
+
25815
26253
  T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
25816
26254
  starting_balance: T['io.flow.common.v0.models.price'].isRequired,
25817
26255
  subscription: T['io.flow.common.v0.models.price'].isRequired,
@@ -25843,6 +26281,10 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
25843
26281
  tax_refund: T['io.flow.common.v0.models.price'].isRequired,
25844
26282
  b2b_tax: T['io.flow.common.v0.models.price'].isRequired,
25845
26283
  b2b_tax_refund: T['io.flow.common.v0.models.price'].isRequired,
26284
+ merchant_fee: T['io.flow.common.v0.models.price'].isRequired,
26285
+ b2b_fee_mor_tax: T['io.flow.common.v0.models.price'].isRequired,
26286
+ b2b_fee_shipping_tax: T['io.flow.common.v0.models.price'].isRequired,
26287
+ flat_rate_label: T['io.flow.common.v0.models.price'].isRequired,
25846
26288
  });
25847
26289
 
25848
26290
  T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
@@ -26266,7 +26708,7 @@ T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
26266
26708
  debug: T['io.flow.internal.v0.models.debug_details'].isRequired,
26267
26709
  transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_order_transaction_details']).isRequired,
26268
26710
  reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
26269
- banking: T['io.flow.internal.v0.models.debug_banking_details'].isRequired,
26711
+ banking: T['io.flow.internal.v0.models.debug_banking_details'],
26270
26712
  });
26271
26713
 
26272
26714
  T['io.flow.internal.v0.models.channel_order'] = PropTypes.exact({
@@ -26430,7 +26872,6 @@ T['io.flow.internal.v0.models.validated_shipping_data'] = PropTypes.exact({
26430
26872
  fulfillment_key: PropTypes.string,
26431
26873
  rex_number: PropTypes.string,
26432
26874
  weee_number: PropTypes.string,
26433
- generate_commercial_invoice_only: PropTypes.bool.isRequired,
26434
26875
  liability_remittance_plan: T['io.flow.internal.v0.models.liability_remittance_plan'],
26435
26876
  shipment_cost_summary: T['io.flow.internal.v0.models.shipment_cost_summary'],
26436
26877
  shipping_label_hop_cost_itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
@@ -26539,54 +26980,6 @@ T['io.flow.internal.v0.models.authorized_charge_status'] = PropTypes.exact({
26539
26980
  refunded: T['io.flow.common.v0.models.price_with_base'].isRequired,
26540
26981
  });
26541
26982
 
26542
- T['io.flow.internal.v0.models.ansh_item_form'] = PropTypes.exact({
26543
- number: PropTypes.string.isRequired,
26544
- amount: T['io.flow.common.v0.models.price'].isRequired,
26545
- description: PropTypes.string,
26546
- type: T['io.flow.internal.v0.enums.ansh_item_type'].isRequired,
26547
- added_on: PropTypes.string.isRequired,
26548
- });
26549
-
26550
- T['io.flow.internal.v0.models.ansh_item'] = PropTypes.exact({
26551
- id: PropTypes.string.isRequired,
26552
- number: PropTypes.string.isRequired,
26553
- amount: T['io.flow.common.v0.models.price'].isRequired,
26554
- description: PropTypes.string,
26555
- type: T['io.flow.internal.v0.enums.ansh_item_type'].isRequired,
26556
- added_on: PropTypes.string.isRequired,
26557
- });
26558
-
26559
- T['io.flow.internal.v0.models.ansh_item_upserted'] = PropTypes.exact({
26560
- discriminator: PropTypes.oneOf(['ansh_item_upserted']).isRequired,
26561
- event_id: PropTypes.string.isRequired,
26562
- timestamp: PropTypes.string.isRequired,
26563
- item: T['io.flow.internal.v0.models.ansh_item'].isRequired,
26564
- });
26565
-
26566
- T['io.flow.internal.v0.models.anirban_item_form'] = PropTypes.exact({
26567
- number: PropTypes.string.isRequired,
26568
- amount: T['io.flow.common.v0.models.price'].isRequired,
26569
- description: PropTypes.string,
26570
- type: T['io.flow.internal.v0.enums.anirban_item_type'].isRequired,
26571
- added_on: PropTypes.string.isRequired,
26572
- });
26573
-
26574
- T['io.flow.internal.v0.models.anirban_item'] = PropTypes.exact({
26575
- id: PropTypes.string.isRequired,
26576
- number: PropTypes.string.isRequired,
26577
- amount: T['io.flow.common.v0.models.price'].isRequired,
26578
- description: PropTypes.string,
26579
- type: T['io.flow.internal.v0.enums.anirban_item_type'].isRequired,
26580
- added_on: PropTypes.string.isRequired,
26581
- });
26582
-
26583
- T['io.flow.internal.v0.models.anirban_item_upserted'] = PropTypes.exact({
26584
- discriminator: PropTypes.oneOf(['anirban_item_upserted']).isRequired,
26585
- event_id: PropTypes.string.isRequired,
26586
- timestamp: PropTypes.string.isRequired,
26587
- item: T['io.flow.internal.v0.models.anirban_item'].isRequired,
26588
- });
26589
-
26590
26983
  T['io.flow.internal.v0.models.amrutha_item_form'] = PropTypes.exact({
26591
26984
  number: PropTypes.string.isRequired,
26592
26985
  amount: T['io.flow.common.v0.models.price'].isRequired,
@@ -26604,30 +26997,6 @@ T['io.flow.internal.v0.models.amrutha_item'] = PropTypes.exact({
26604
26997
  added_on: PropTypes.string.isRequired,
26605
26998
  });
26606
26999
 
26607
- T['io.flow.internal.v0.models.aldo_item_form'] = PropTypes.exact({
26608
- number: PropTypes.string.isRequired,
26609
- amount: T['io.flow.common.v0.models.price'].isRequired,
26610
- description: PropTypes.string,
26611
- type: T['io.flow.internal.v0.enums.aldo_item_type'].isRequired,
26612
- added_on: PropTypes.string.isRequired,
26613
- });
26614
-
26615
- T['io.flow.internal.v0.models.aldo_item'] = PropTypes.exact({
26616
- id: PropTypes.string.isRequired,
26617
- number: PropTypes.string.isRequired,
26618
- amount: T['io.flow.common.v0.models.price'].isRequired,
26619
- description: PropTypes.string,
26620
- type: T['io.flow.internal.v0.enums.aldo_item_type'].isRequired,
26621
- added_on: PropTypes.string.isRequired,
26622
- });
26623
-
26624
- T['io.flow.internal.v0.models.aldo_item_upserted'] = PropTypes.exact({
26625
- discriminator: PropTypes.oneOf(['aldo_item_upserted']).isRequired,
26626
- event_id: PropTypes.string.isRequired,
26627
- timestamp: PropTypes.string.isRequired,
26628
- item: T['io.flow.internal.v0.models.aldo_item'].isRequired,
26629
- });
26630
-
26631
27000
  T['io.flow.internal.v0.models.account_statistics_additional_balances'] = PropTypes.exact({
26632
27001
  on_hold: T['io.flow.common.v0.models.price'].isRequired,
26633
27002
  });
@@ -26989,11 +27358,13 @@ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
26989
27358
  transfer_method: T['io.flow.internal.v0.enums.transfer_method'],
26990
27359
  b2b_tax_remittance_days: PropTypes.number,
26991
27360
  merchant_of_record_fee: PropTypes.number,
27361
+ merchant_of_record_fee_create_on_order: PropTypes.bool,
26992
27362
  duty_guarantee_fee: PropTypes.number,
26993
27363
  transfer_fee: PropTypes.number,
26994
27364
  negative_balance_fee: PropTypes.number,
26995
27365
  order_service_fee: T['io.flow.internal.v0.models.tiered_fee'],
26996
27366
  label_fees: T['io.flow.internal.v0.models.account_setting_label_fees'],
27367
+ revenue_share_rate: PropTypes.number,
26997
27368
  charge_label_cost_directly: PropTypes.bool.isRequired,
26998
27369
  transaction_posting_method: T['io.flow.internal.v0.enums.transaction_posting_method'].isRequired,
26999
27370
  statement_transfer_transaction_location: T['io.flow.internal.v0.enums.statement_transfer_transaction_location'].isRequired,
@@ -27004,6 +27375,10 @@ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
27004
27375
  enable_fee_reversals: PropTypes.bool.isRequired,
27005
27376
  record_reason_for_transactions_pending_payout: PropTypes.bool.isRequired,
27006
27377
  enable_negative_debits: PropTypes.bool.isRequired,
27378
+ enable_statement_pdf: PropTypes.bool.isRequired,
27379
+ enable_shipping_label_revenue_share: PropTypes.bool,
27380
+ enable_carrier_charge_revenue_share: PropTypes.bool,
27381
+ always_charge_organization_for_trueup: PropTypes.bool,
27007
27382
  });
27008
27383
 
27009
27384
  T['io.flow.internal.v0.models.account_settings_upserted'] = PropTypes.exact({
@@ -27131,6 +27506,9 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
27131
27506
  'merchant_refund',
27132
27507
  'b2b_tax',
27133
27508
  'b2b_tax_refund',
27509
+ 'b2b_fee_mor_tax',
27510
+ 'b2b_fee_shipping_tax',
27511
+ 'flat_rate_label',
27134
27512
  ]);
27135
27513
 
27136
27514
  T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
@@ -27383,6 +27761,7 @@ T['io.flow.internal.v0.models.manual_transaction'] = PropTypes.exact({
27383
27761
  original_transaction: T['io.flow.internal.v0.models.transaction_reference'],
27384
27762
  order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
27385
27763
  attributes: PropTypes.objectOf(PropTypes.string),
27764
+ recoup: PropTypes.bool,
27386
27765
  id: PropTypes.string.isRequired,
27387
27766
  type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
27388
27767
  status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
@@ -27481,6 +27860,19 @@ T['io.flow.internal.v0.models.ge_revenue_share_transaction'] = PropTypes.exact({
27481
27860
  created_at: PropTypes.string.isRequired,
27482
27861
  });
27483
27862
 
27863
+ T['io.flow.internal.v0.models.flat_rate_label_transaction'] = PropTypes.exact({
27864
+ discriminator: PropTypes.oneOf(['flat_rate_label_transaction']).isRequired,
27865
+ order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
27866
+ id: PropTypes.string.isRequired,
27867
+ type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
27868
+ status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
27869
+ posted_at: PropTypes.string,
27870
+ value: T['io.flow.common.v0.models.price'].isRequired,
27871
+ description: PropTypes.string.isRequired,
27872
+ statement: T['io.flow.internal.v0.models.billing_statement_reference'],
27873
+ created_at: PropTypes.string.isRequired,
27874
+ });
27875
+
27484
27876
  T['io.flow.internal.v0.models.duty_transaction'] = PropTypes.exact({
27485
27877
  discriminator: PropTypes.oneOf(['duty_transaction']).isRequired,
27486
27878
  order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
@@ -27590,6 +27982,7 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
27590
27982
  T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'],
27591
27983
  T['io.flow.internal.v0.models.ge_revenue_share_transaction'],
27592
27984
  T['io.flow.internal.v0.models.merchant_fee_transaction'],
27985
+ T['io.flow.internal.v0.models.flat_rate_label_transaction'],
27593
27986
  ]);
27594
27987
 
27595
27988
  T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
@@ -27837,6 +28230,8 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
27837
28230
  });
27838
28231
 
27839
28232
  T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
28233
+ T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'],
28234
+ T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'],
27840
28235
  T['io.flow.internal.v0.models.adyen_authorization_deleted'],
27841
28236
  T['io.flow.internal.v0.models.adyen_authorization_upserted'],
27842
28237
  T['io.flow.internal.v0.models.adyen_cancel_deleted'],
@@ -27905,8 +28300,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
27905
28300
  T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
27906
28301
  T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
27907
28302
  T['io.flow.internal.v0.models.carrier_account_deleted'],
27908
- T['io.flow.internal.v0.models.label_generation_settings_upserted'],
27909
- T['io.flow.internal.v0.models.label_generation_settings_deleted'],
27910
28303
  T['io.flow.internal.v0.models.catalog_import_request'],
27911
28304
  T['io.flow.internal.v0.models.exclusion_rule_upserted'],
27912
28305
  T['io.flow.internal.v0.models.exclusion_rule_deleted'],
@@ -27976,6 +28369,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
27976
28369
  T['io.flow.internal.v0.models.carrier_charge_deleted'],
27977
28370
  T['io.flow.internal.v0.models.bank_payment_order_upserted'],
27978
28371
  T['io.flow.internal.v0.models.bank_payment_order_deleted'],
28372
+ T['io.flow.internal.v0.models.shipping_cost_upserted'],
28373
+ T['io.flow.internal.v0.models.shipping_cost_deleted'],
28374
+ T['io.flow.internal.v0.models.mor_cost_upserted'],
28375
+ T['io.flow.internal.v0.models.mor_cost_deleted'],
27979
28376
  T['io.flow.internal.v0.models.fraud_review_upserted'],
27980
28377
  T['io.flow.internal.v0.models.fraud_review_deleted'],
27981
28378
  T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
@@ -28089,17 +28486,21 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
28089
28486
  T['io.flow.internal.v0.models.paypal_refund_upserted'],
28090
28487
  T['io.flow.internal.v0.models.paypal_dispute_upserted'],
28091
28488
  T['io.flow.internal.v0.models.paypal_dispute_deleted'],
28489
+ T['io.flow.internal.v0.models.preonboarding_sellability_result_inserted'],
28490
+ T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'],
28491
+ T['io.flow.internal.v0.models.preonboarding_sellability_result_deleted'],
28092
28492
  T['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'],
28093
28493
  T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'],
28094
28494
  T['io.flow.internal.v0.models.product_restriction_state_inserted'],
28095
28495
  T['io.flow.internal.v0.models.product_restriction_state_updated'],
28096
28496
  T['io.flow.internal.v0.models.product_restriction_state_deleted'],
28497
+ T['io.flow.internal.v0.models.product_sellability_result_inserted'],
28498
+ T['io.flow.internal.v0.models.product_sellability_result_updated'],
28499
+ T['io.flow.internal.v0.models.product_sellability_result_deleted'],
28097
28500
  T['io.flow.internal.v0.models.order_rates_published_v3'],
28098
28501
  T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'],
28099
28502
  T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'],
28100
28503
  T['io.flow.internal.v0.models.ratecard_lanes_import_request'],
28101
- T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'],
28102
- T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'],
28103
28504
  T['io.flow.internal.v0.models.ratecard_service_fee_upserted'],
28104
28505
  T['io.flow.internal.v0.models.ratecard_service_fee_deleted'],
28105
28506
  T['io.flow.internal.v0.models.ratecard_rate_level_upserted'],
@@ -28191,22 +28592,14 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
28191
28592
  T['io.flow.internal.v0.models.stripe_connect_report_record_deleted'],
28192
28593
  T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
28193
28594
  T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
28194
- T['io.flow.internal.v0.models.anirban_item_upserted'],
28195
- T['io.flow.internal.v0.models.anirban_item_deleted'],
28196
- T['io.flow.internal.v0.models.sarvesh_item_upserted'],
28197
- T['io.flow.internal.v0.models.sarvesh_item_deleted'],
28198
- T['io.flow.internal.v0.models.hosein_item_upserted'],
28199
- T['io.flow.internal.v0.models.hosein_item_deleted'],
28200
- T['io.flow.internal.v0.models.niall_item_upserted'],
28201
- T['io.flow.internal.v0.models.niall_item_deleted'],
28202
- T['io.flow.internal.v0.models.rohan_item_upserted'],
28203
- T['io.flow.internal.v0.models.rohan_item_deleted'],
28204
- T['io.flow.internal.v0.models.aldo_item_upserted'],
28205
- T['io.flow.internal.v0.models.aldo_item_deleted'],
28206
- T['io.flow.internal.v0.models.ansh_item_upserted'],
28207
- T['io.flow.internal.v0.models.ansh_item_deleted'],
28595
+ T['io.flow.internal.v0.models.b2b_tax_transaction_upserted'],
28596
+ T['io.flow.internal.v0.models.b2b_tax_transaction_deleted'],
28208
28597
  T['io.flow.internal.v0.models.gabriel_item_upserted'],
28209
28598
  T['io.flow.internal.v0.models.gabriel_item_deleted'],
28599
+ T['io.flow.internal.v0.models.chenglin_item_upserted'],
28600
+ T['io.flow.internal.v0.models.chenglin_item_deleted'],
28601
+ T['io.flow.internal.v0.models.bojana_item_upserted'],
28602
+ T['io.flow.internal.v0.models.bojana_item_deleted'],
28210
28603
  T['io.flow.internal.v0.models.tracking_processing_error_upserted'],
28211
28604
  T['io.flow.internal.v0.models.tracking_processing_error_deleted'],
28212
28605
  T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'],
@@ -28383,6 +28776,7 @@ T['io.flow.internal.v0.enums.carrier_charge_transaction_type'] = PropTypes.oneOf
28383
28776
  T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
28384
28777
  T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
28385
28778
  T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing', 'order']);
28779
+ T['io.flow.internal.v0.enums.chenglin_item_type'] = PropTypes.oneOf(['physical', 'digital']);
28386
28780
  T['io.flow.internal.v0.enums.compliance_type'] = PropTypes.oneOf(['weee']);
28387
28781
  T['io.flow.internal.v0.enums.crossdock_tracking_status'] = PropTypes.oneOf(['notified', 'received', 'shipped']);
28388
28782
  T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['none', 'duty', 'vat', 'vat_and_duty']);
@@ -28392,6 +28786,8 @@ T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_c
28392
28786
  T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty', 'refund']);
28393
28787
 
28394
28788
  T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
28789
+ 'adaptive_shipping_rate_upserted',
28790
+ 'adaptive_shipping_rate_deleted',
28395
28791
  'adyen_authorization_deleted',
28396
28792
  'adyen_authorization_upserted',
28397
28793
  'adyen_cancel_deleted',
@@ -28460,8 +28856,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
28460
28856
  'calculator_organization_settings_deleted',
28461
28857
  'carrier_account_upserted_v2',
28462
28858
  'carrier_account_deleted',
28463
- 'label_generation_settings_upserted',
28464
- 'label_generation_settings_deleted',
28465
28859
  'catalog_import_request',
28466
28860
  'exclusion_rule_upserted',
28467
28861
  'exclusion_rule_deleted',
@@ -28531,6 +28925,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
28531
28925
  'carrier_charge_deleted',
28532
28926
  'bank_payment_order_upserted',
28533
28927
  'bank_payment_order_deleted',
28928
+ 'shipping_cost_upserted',
28929
+ 'shipping_cost_deleted',
28930
+ 'mor_cost_upserted',
28931
+ 'mor_cost_deleted',
28534
28932
  'fraud_review_upserted',
28535
28933
  'fraud_review_deleted',
28536
28934
  'fraud_pending_review_upserted',
@@ -28644,17 +29042,21 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
28644
29042
  'paypal_refund_upserted',
28645
29043
  'paypal_dispute_upserted',
28646
29044
  'paypal_dispute_deleted',
29045
+ 'preonboarding_sellability_result_inserted',
29046
+ 'preonboarding_sellability_result_updated',
29047
+ 'preonboarding_sellability_result_deleted',
28647
29048
  'product_restriction_rule_decision_upserted',
28648
29049
  'product_restriction_rule_decision_deleted',
28649
29050
  'product_restriction_state_inserted',
28650
29051
  'product_restriction_state_updated',
28651
29052
  'product_restriction_state_deleted',
29053
+ 'product_sellability_result_inserted',
29054
+ 'product_sellability_result_updated',
29055
+ 'product_sellability_result_deleted',
28652
29056
  'order_rates_published_v3',
28653
29057
  'ratecard_dimension_estimate_upserted',
28654
29058
  'ratecard_dimension_estimate_deleted',
28655
29059
  'ratecard_lanes_import_request',
28656
- 'ratecard_standard_configuration_upserted',
28657
- 'ratecard_standard_configuration_deleted',
28658
29060
  'ratecard_service_fee_upserted',
28659
29061
  'ratecard_service_fee_deleted',
28660
29062
  'ratecard_rate_level_upserted',
@@ -28746,22 +29148,14 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
28746
29148
  'stripe_connect_report_record_deleted',
28747
29149
  'liability_remittance_plan_upserted',
28748
29150
  'liability_remittance_plan_deleted',
28749
- 'anirban_item_upserted',
28750
- 'anirban_item_deleted',
28751
- 'sarvesh_item_upserted',
28752
- 'sarvesh_item_deleted',
28753
- 'hosein_item_upserted',
28754
- 'hosein_item_deleted',
28755
- 'niall_item_upserted',
28756
- 'niall_item_deleted',
28757
- 'rohan_item_upserted',
28758
- 'rohan_item_deleted',
28759
- 'aldo_item_upserted',
28760
- 'aldo_item_deleted',
28761
- 'ansh_item_upserted',
28762
- 'ansh_item_deleted',
29151
+ 'b2b_tax_transaction_upserted',
29152
+ 'b2b_tax_transaction_deleted',
28763
29153
  'gabriel_item_upserted',
28764
29154
  'gabriel_item_deleted',
29155
+ 'chenglin_item_upserted',
29156
+ 'chenglin_item_deleted',
29157
+ 'bojana_item_upserted',
29158
+ 'bojana_item_deleted',
28765
29159
  'tracking_processing_error_upserted',
28766
29160
  'tracking_processing_error_deleted',
28767
29161
  'tracking_label_event_upserted_v2',
@@ -28784,6 +29178,7 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
28784
29178
  'user_deleted_v2',
28785
29179
  ]);
28786
29180
 
29181
+ T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee']);
28787
29182
  T['io.flow.internal.v0.enums.ge_ingestion_file_status'] = PropTypes.oneOf(['pending', 'processed']);
28788
29183
  T['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'revenue_share']);
28789
29184
 
@@ -28803,7 +29198,7 @@ T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
28803
29198
  T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
28804
29199
  T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
28805
29200
  T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
28806
- T['io.flow.internal.v0.enums.label_request_result_organization_type'] = PropTypes.oneOf(['all', 'legacy_production', 'managed_markets_production', 'sandbox']);
29201
+ T['io.flow.internal.v0.enums.label_request_result_organization_type'] = PropTypes.oneOf(['all', 'cafe24_production', 'shopify_production', 'sandbox']);
28807
29202
  T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
28808
29203
  T['io.flow.internal.v0.enums.merchant_fee_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee']);
28809
29204
  T['io.flow.internal.v0.enums.non_l4l_tax_duty_fx_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee']);
@@ -28862,6 +29257,8 @@ T['io.flow.internal.v0.enums.restriction_organization_channel'] = PropTypes.oneO
28862
29257
  'shopify-sandbox',
28863
29258
  'enterprise-sandbox',
28864
29259
  'enterprise-qa',
29260
+ 'cafe24',
29261
+ 'cafe24-sandbox',
28865
29262
  ]);
28866
29263
 
28867
29264
  T['io.flow.internal.v0.enums.restriction_rule_exception_action'] = PropTypes.oneOf(['allow', 'deny']);
@@ -29303,6 +29700,12 @@ T['io.flow.internal.v0.models.fulfillment_reference'] = PropTypes.exact({
29303
29700
  id: PropTypes.string.isRequired,
29304
29701
  });
29305
29702
 
29703
+ T['io.flow.internal.v0.models.generate_load_rate'] = PropTypes.exact({
29704
+ organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
29705
+ events_per_second: PropTypes.number.isRequired,
29706
+ duration_seconds: PropTypes.number.isRequired,
29707
+ });
29708
+
29306
29709
  T['io.flow.internal.v0.models.gift_card_form'] = PropTypes.exact({
29307
29710
  number: PropTypes.string.isRequired,
29308
29711
  pin: PropTypes.string,
@@ -29335,10 +29738,6 @@ T['io.flow.internal.v0.models.hs6'] = PropTypes.exact({
29335
29738
  description: PropTypes.string.isRequired,
29336
29739
  });
29337
29740
 
29338
- T['io.flow.internal.v0.models.hs6_metadata'] = PropTypes.exact({
29339
- description: PropTypes.string.isRequired,
29340
- });
29341
-
29342
29741
  T['io.flow.internal.v0.models.internal_payment_request_verification'] = PropTypes.exact({
29343
29742
  placeholder: PropTypes.string,
29344
29743
  });
@@ -29403,11 +29802,6 @@ T['io.flow.internal.v0.models.item_values_form'] = PropTypes.exact({
29403
29802
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
29404
29803
  });
29405
29804
 
29406
- T['io.flow.internal.v0.models.jean_demo_item'] = PropTypes.exact({
29407
- id: PropTypes.string.isRequired,
29408
- name: PropTypes.string.isRequired,
29409
- });
29410
-
29411
29805
  T['io.flow.internal.v0.models.journal'] = PropTypes.exact({
29412
29806
  name: PropTypes.string.isRequired,
29413
29807
  queued: PropTypes.number.isRequired,
@@ -29426,12 +29820,6 @@ T['io.flow.internal.v0.models.label_association'] = PropTypes.exact({
29426
29820
  constructions: PropTypes.objectOf(PropTypes.arrayOf(PropTypes.string)).isRequired,
29427
29821
  });
29428
29822
 
29429
- T['io.flow.internal.v0.models.label_generation_settings_form'] = PropTypes.exact({
29430
- item_identifier: PropTypes.string,
29431
- auto_generate_query: PropTypes.string,
29432
- commercial_invoice_only_query: PropTypes.string,
29433
- });
29434
-
29435
29823
  T['io.flow.internal.v0.models.labels_prediction'] = PropTypes.exact({
29436
29824
  main_material: PropTypes.string.isRequired,
29437
29825
  gender: PropTypes.string.isRequired,
@@ -29507,6 +29895,11 @@ T['io.flow.internal.v0.models.organization_onboarding_state_audit_result'] = Pro
29507
29895
  validation_errors: PropTypes.arrayOf(PropTypes.string).isRequired,
29508
29896
  });
29509
29897
 
29898
+ T['io.flow.internal.v0.models.organization_promotion_warning'] = PropTypes.exact({
29899
+ prod_org: PropTypes.string.isRequired,
29900
+ message: PropTypes.string.isRequired,
29901
+ });
29902
+
29510
29903
  T['io.flow.internal.v0.models.partner_organization_authorization_form'] = PropTypes.exact({
29511
29904
  partner: PropTypes.string.isRequired,
29512
29905
  });
@@ -29615,12 +30008,6 @@ T['io.flow.internal.v0.models.rate_level_with_effective'] = PropTypes.exact({
29615
30008
  key: PropTypes.string.isRequired,
29616
30009
  });
29617
30010
 
29618
- T['io.flow.internal.v0.models.ratecard_standard_configuration_form'] = PropTypes.exact({
29619
- source_ratecard_organization: PropTypes.string.isRequired,
29620
- source_ratecard_number: PropTypes.string.isRequired,
29621
- margin: PropTypes.number.isRequired,
29622
- });
29623
-
29624
30011
  T['io.flow.internal.v0.models.report_record_error'] = PropTypes.exact({
29625
30012
  id: PropTypes.string.isRequired,
29626
30013
  file_id: PropTypes.string.isRequired,
@@ -29653,6 +30040,14 @@ T['io.flow.internal.v0.models.restriction_blanket_organization_exemption'] = Pro
29653
30040
  excluded_rules: PropTypes.arrayOf(PropTypes.string),
29654
30041
  });
29655
30042
 
30043
+ T['io.flow.internal.v0.models.restriction_blanket_organization_exemption_form'] = PropTypes.exact({
30044
+ organization_id: PropTypes.string.isRequired,
30045
+ description: PropTypes.string.isRequired,
30046
+ is_all_rules_exempt: PropTypes.bool.isRequired,
30047
+ exempt_regions: PropTypes.arrayOf(PropTypes.string),
30048
+ excluded_rules: PropTypes.arrayOf(PropTypes.string),
30049
+ });
30050
+
29656
30051
  T['io.flow.internal.v0.models.restriction_category'] = PropTypes.exact({
29657
30052
  category: PropTypes.string.isRequired,
29658
30053
  });
@@ -29673,8 +30068,15 @@ T['io.flow.internal.v0.models.restriction_rule_lane_exemption'] = PropTypes.exac
29673
30068
  id: PropTypes.string.isRequired,
29674
30069
  rule_id: PropTypes.string.isRequired,
29675
30070
  description: PropTypes.string.isRequired,
29676
- origin_countries: PropTypes.arrayOf(PropTypes.string).isRequired,
29677
- destination_countries: PropTypes.arrayOf(PropTypes.string).isRequired,
30071
+ origin_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
30072
+ destination_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
30073
+ });
30074
+
30075
+ T['io.flow.internal.v0.models.restriction_rule_lane_exemption_form'] = PropTypes.exact({
30076
+ rule_id: PropTypes.string.isRequired,
30077
+ description: PropTypes.string.isRequired,
30078
+ origin_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
30079
+ destination_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
29678
30080
  });
29679
30081
 
29680
30082
  T['io.flow.internal.v0.models.restriction_rule_override'] = PropTypes.exact({
@@ -30813,13 +31215,6 @@ T['io.flow.experience.v0.models.order_service_change_request_data'] = PropTypes.
30813
31215
  filename: PropTypes.string,
30814
31216
  });
30815
31217
 
30816
- T['io.flow.ratecard.v0.models.ratecard_estimate_summary_form'] = PropTypes.exact({
30817
- origin: PropTypes.string,
30818
- destination: PropTypes.string,
30819
- service: PropTypes.string,
30820
- center_key: PropTypes.string,
30821
- });
30822
-
30823
31218
  T['io.flow.token.v0.models.channel_token_form'] = PropTypes.exact({
30824
31219
  channel_id: PropTypes.string.isRequired,
30825
31220
  description: PropTypes.string,
@@ -31098,6 +31493,7 @@ export const accountContact = T['io.flow.internal.v0.models.account_contact'];
31098
31493
  export const accountContactDeleted = T['io.flow.internal.v0.models.account_contact_deleted'];
31099
31494
  export const accountContactForm = T['io.flow.internal.v0.models.account_contact_form'];
31100
31495
  export const accountContactUpserted = T['io.flow.internal.v0.models.account_contact_upserted'];
31496
+ export const accountCurrencyFilter = T['io.flow.internal.v0.enums.account_currency_filter'];
31101
31497
  export const accountDeletedV2 = T['io.flow.internal.v0.models.account_deleted_v2'];
31102
31498
  export const accountDepositRule = T['io.flow.internal.v0.models.account_deposit_rule'];
31103
31499
  export const accountDepositRuleForm = T['io.flow.internal.v0.models.account_deposit_rule_form'];
@@ -31128,6 +31524,9 @@ export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_
31128
31524
  export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
31129
31525
  export const accountingReturnMetadata = T['io.flow.internal.v0.models.accounting_return_metadata'];
31130
31526
  export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
31527
+ export const adaptiveShippingRate = T['io.flow.internal.v0.models.adaptive_shipping_rate'];
31528
+ export const adaptiveShippingRateDeleted = T['io.flow.internal.v0.models.adaptive_shipping_rate_deleted'];
31529
+ export const adaptiveShippingRateUpserted = T['io.flow.internal.v0.models.adaptive_shipping_rate_upserted'];
31131
31530
  export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
31132
31531
  export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
31133
31532
  export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
@@ -31185,28 +31584,12 @@ export const afterpayRefund = T['io.flow.internal.v0.models.afterpay_refund'];
31185
31584
  export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refund_deleted'];
31186
31585
  export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
31187
31586
  export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
31188
- export const aldoItem = T['io.flow.internal.v0.models.aldo_item'];
31189
- export const aldoItemDeleted = T['io.flow.internal.v0.models.aldo_item_deleted'];
31190
- export const aldoItemForm = T['io.flow.internal.v0.models.aldo_item_form'];
31191
- export const aldoItemType = T['io.flow.internal.v0.enums.aldo_item_type'];
31192
- export const aldoItemUpserted = T['io.flow.internal.v0.models.aldo_item_upserted'];
31193
31587
  export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
31194
- export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
31195
31588
  export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
31196
31589
  export const allowedLabels = T['io.flow.internal.v0.models.allowed_labels'];
31197
31590
  export const amruthaItem = T['io.flow.internal.v0.models.amrutha_item'];
31198
31591
  export const amruthaItemForm = T['io.flow.internal.v0.models.amrutha_item_form'];
31199
31592
  export const amruthaItemType = T['io.flow.internal.v0.enums.amrutha_item_type'];
31200
- export const anirbanItem = T['io.flow.internal.v0.models.anirban_item'];
31201
- export const anirbanItemDeleted = T['io.flow.internal.v0.models.anirban_item_deleted'];
31202
- export const anirbanItemForm = T['io.flow.internal.v0.models.anirban_item_form'];
31203
- export const anirbanItemType = T['io.flow.internal.v0.enums.anirban_item_type'];
31204
- export const anirbanItemUpserted = T['io.flow.internal.v0.models.anirban_item_upserted'];
31205
- export const anshItem = T['io.flow.internal.v0.models.ansh_item'];
31206
- export const anshItemDeleted = T['io.flow.internal.v0.models.ansh_item_deleted'];
31207
- export const anshItemForm = T['io.flow.internal.v0.models.ansh_item_form'];
31208
- export const anshItemType = T['io.flow.internal.v0.enums.ansh_item_type'];
31209
- export const anshItemUpserted = T['io.flow.internal.v0.models.ansh_item_upserted'];
31210
31593
  export const anyDangerousGoods = T['io.flow.internal.v0.enums.any_dangerous_goods'];
31211
31594
  export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_reference_id'];
31212
31595
  export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
@@ -31229,10 +31612,19 @@ export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_or
31229
31612
  export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
31230
31613
  export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
31231
31614
  export const autoReviewCriteria = T['io.flow.internal.v0.models.auto_review_criteria'];
31615
+ export const b2BFeeMorTaxTriggerMetadata = T['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'];
31616
+ export const b2BFeeMorTaxTriggerType = T['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'];
31617
+ export const b2BFeeShippingTaxTriggerMetadata = T['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'];
31618
+ export const b2BFeeShippingTaxTriggerType = T['io.flow.internal.v0.enums.b2b_fee_shipping_tax_trigger_type'];
31232
31619
  export const b2BTaxLedger = T['io.flow.internal.v0.models.b2b_tax_ledger'];
31233
31620
  export const b2BTaxLedgerDocumentType = T['io.flow.internal.v0.enums.b2b_tax_ledger_document_type'];
31234
31621
  export const b2BTaxLedgerForm = T['io.flow.internal.v0.models.b2b_tax_ledger_form'];
31235
31622
  export const b2BTaxRateType = T['io.flow.internal.v0.enums.b2b_tax_rate_type'];
31623
+ export const b2BTaxTransaction = T['io.flow.internal.v0.models.b2b_tax_transaction'];
31624
+ export const b2BTaxTransactionDeleted = T['io.flow.internal.v0.models.b2b_tax_transaction_deleted'];
31625
+ export const b2BTaxTransactionUpserted = T['io.flow.internal.v0.models.b2b_tax_transaction_upserted'];
31626
+ export const b2BTransactionTaxLine = T['io.flow.internal.v0.models.b2b_transaction_tax_line'];
31627
+ export const b2BTransactionTaxableItem = T['io.flow.internal.v0.models.b2b_transaction_taxable_item'];
31236
31628
  export const bankAccount = T['io.flow.internal.v0.models.bank_account'];
31237
31629
  export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
31238
31630
  export const bankAccountStatus = T['io.flow.internal.v0.enums.bank_account_status'];
@@ -31290,6 +31682,11 @@ export const bitpayAccountPutForm = T['io.flow.internal.v0.models.bitpay_account
31290
31682
  export const bitpayAuthentication = T['io.flow.internal.v0.models.bitpay_authentication'];
31291
31683
  export const bitpayAuthenticationDataReference = T['io.flow.internal.v0.models.bitpay_authentication_data_reference'];
31292
31684
  export const bitpayAuthenticationForm = T['io.flow.internal.v0.models.bitpay_authentication_form'];
31685
+ export const bojanaItem = T['io.flow.internal.v0.models.bojana_item'];
31686
+ export const bojanaItemDeleted = T['io.flow.internal.v0.models.bojana_item_deleted'];
31687
+ export const bojanaItemForm = T['io.flow.internal.v0.models.bojana_item_form'];
31688
+ export const bojanaItemType = T['io.flow.internal.v0.enums.bojana_item_type'];
31689
+ export const bojanaItemUpserted = T['io.flow.internal.v0.models.bojana_item_upserted'];
31293
31690
  export const booleanFeatureDefaultValue = T['io.flow.internal.v0.models.boolean_feature_default_value'];
31294
31691
  export const booleanFeatureRule = T['io.flow.internal.v0.models.boolean_feature_rule'];
31295
31692
  export const booleanFeatureRuleForm = T['io.flow.internal.v0.models.boolean_feature_rule_form'];
@@ -31461,6 +31858,11 @@ export const checkoutSettings = T['io.flow.internal.v0.models.checkout_settings'
31461
31858
  export const checkoutShippingMethodPromptBehavior = T['io.flow.internal.v0.enums.checkout_shipping_method_prompt_behavior'];
31462
31859
  export const checkoutUrl = T['io.flow.internal.v0.models.checkout_url'];
31463
31860
  export const checkoutUrlType = T['io.flow.internal.v0.enums.checkout_url_type'];
31861
+ export const chenglinItem = T['io.flow.internal.v0.models.chenglin_item'];
31862
+ export const chenglinItemDeleted = T['io.flow.internal.v0.models.chenglin_item_deleted'];
31863
+ export const chenglinItemForm = T['io.flow.internal.v0.models.chenglin_item_form'];
31864
+ export const chenglinItemType = T['io.flow.internal.v0.enums.chenglin_item_type'];
31865
+ export const chenglinItemUpserted = T['io.flow.internal.v0.models.chenglin_item_upserted'];
31464
31866
  export const cipher = T['io.flow.internal.v0.models.cipher'];
31465
31867
  export const cipherForm = T['io.flow.internal.v0.models.cipher_form'];
31466
31868
  export const cipherReference = T['io.flow.internal.v0.models.cipher_reference'];
@@ -31494,6 +31896,7 @@ export const classificationProductSummaryPage = T['io.flow.internal.v0.models.cl
31494
31896
  export const classificationRequeueRequest = T['io.flow.internal.v0.models.classification_requeue_request'];
31495
31897
  export const classificationResponse = T['io.flow.internal.v0.unions.classification_response'];
31496
31898
  export const classificationScope = T['io.flow.internal.v0.enums.classification_scope'];
31899
+ export const classificationSource = T['io.flow.internal.v0.enums.classification_source'];
31497
31900
  export const classificationStatistics = T['io.flow.internal.v0.models.classification_statistics'];
31498
31901
  export const classificationSummaryReportPayload = T['io.flow.internal.v0.models.classification_summary_report_payload'];
31499
31902
  export const classificationTaxonomy = T['io.flow.internal.v0.unions.classification_taxonomy'];
@@ -31747,6 +32150,9 @@ export const fiservAuthenticationForm = T['io.flow.internal.v0.models.fiserv_aut
31747
32150
  export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
31748
32151
  export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
31749
32152
  export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
32153
+ export const flatRate = T['io.flow.internal.v0.models.flat_rate'];
32154
+ export const flatRateLabelTransaction = T['io.flow.internal.v0.models.flat_rate_label_transaction'];
32155
+ export const flatRateLabelTransactionType = T['io.flow.internal.v0.enums.flat_rate_label_transaction_type'];
31750
32156
  export const flexeWebhook = T['io.flow.internal.v0.models.flexe_webhook'];
31751
32157
  export const flowAccount = T['io.flow.internal.v0.models.flow_account'];
31752
32158
  export const flowBillingStatement = T['io.flow.internal.v0.models.flow_billing_statement'];
@@ -31792,9 +32198,6 @@ export const fraudSummary = T['io.flow.internal.v0.models.fraud_summary'];
31792
32198
  export const ftpFileDeleted = T['io.flow.internal.v0.models.ftp_file_deleted'];
31793
32199
  export const ftpFileToProcessUploaded = T['io.flow.internal.v0.models.ftp_file_to_process_uploaded'];
31794
32200
  export const ftpFileUpserted = T['io.flow.internal.v0.models.ftp_file_upserted'];
31795
- export const fuelSurchargeServiceFeeAmountByWeightPutForm = T['io.flow.internal.v0.models.fuel_surcharge_service_fee_amount_by_weight_put_form'];
31796
- export const fuelSurchargeServiceFeePercentPutForm = T['io.flow.internal.v0.models.fuel_surcharge_service_fee_percent_put_form'];
31797
- export const fuelSurchargeServiceFeePutForm = T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'];
31798
32201
  export const fulfillment = T['io.flow.internal.v0.models.fulfillment'];
31799
32202
  export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_action_form'];
31800
32203
  export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
@@ -31838,6 +32241,7 @@ export const geRevenueShareTransaction = T['io.flow.internal.v0.models.ge_revenu
31838
32241
  export const geRevenueShareTransactionType = T['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'];
31839
32242
  export const generateLoad = T['io.flow.internal.v0.unions.generate_load'];
31840
32243
  export const generateLoadMultipleOrgs = T['io.flow.internal.v0.models.generate_load_multiple_orgs'];
32244
+ export const generateLoadRate = T['io.flow.internal.v0.models.generate_load_rate'];
31841
32245
  export const generateLoadSingleOrg = T['io.flow.internal.v0.models.generate_load_single_org'];
31842
32246
  export const genericValidationError = T['io.flow.internal.v0.models.generic_validation_error'];
31843
32247
  export const giftCard = T['io.flow.internal.v0.models.gift_card'];
@@ -31867,11 +32271,6 @@ export const harmonizationThresholdForm = T['io.flow.internal.v0.models.harmoniz
31867
32271
  export const harmonizationUnclassifiedStatistics = T['io.flow.internal.v0.models.harmonization_unclassified_statistics'];
31868
32272
  export const harmonizeFullyRequestV2 = T['io.flow.internal.v0.models.harmonize_fully_request_v2'];
31869
32273
  export const harmonizedItemsHs6Export = T['io.flow.internal.v0.models.harmonized_items_hs6_export'];
31870
- export const hoseinItem = T['io.flow.internal.v0.models.hosein_item'];
31871
- export const hoseinItemDeleted = T['io.flow.internal.v0.models.hosein_item_deleted'];
31872
- export const hoseinItemForm = T['io.flow.internal.v0.models.hosein_item_form'];
31873
- export const hoseinItemType = T['io.flow.internal.v0.enums.hosein_item_type'];
31874
- export const hoseinItemUpserted = T['io.flow.internal.v0.models.hosein_item_upserted'];
31875
32274
  export const hs6 = T['io.flow.internal.v0.models.hs6'];
31876
32275
  export const hs6CodeSource = T['io.flow.internal.v0.enums.hs6_code_source'];
31877
32276
  export const hs6Metadata = T['io.flow.internal.v0.models.hs6_metadata'];
@@ -31945,7 +32344,6 @@ export const itemSalesMarginVersion = T['io.flow.internal.v0.models.item_sales_m
31945
32344
  export const itemSummary = T['io.flow.internal.v0.models.item_summary'];
31946
32345
  export const itemType = T['io.flow.internal.v0.enums.item_type'];
31947
32346
  export const itemValuesForm = T['io.flow.internal.v0.models.item_values_form'];
31948
- export const jeanDemoItem = T['io.flow.internal.v0.models.jean_demo_item'];
31949
32347
  export const journal = T['io.flow.internal.v0.models.journal'];
31950
32348
  export const journalFailure = T['io.flow.internal.v0.models.journal_failure'];
31951
32349
  export const journalOperation = T['io.flow.internal.v0.enums.journal_operation'];
@@ -31972,10 +32370,6 @@ export const labelCreationStatus = T['io.flow.internal.v0.enums.label_creation_s
31972
32370
  export const labelDestination = T['io.flow.internal.v0.models.label_destination'];
31973
32371
  export const labelEventMedium = T['io.flow.internal.v0.enums.label_event_medium'];
31974
32372
  export const labelEventSource = T['io.flow.internal.v0.enums.label_event_source'];
31975
- export const labelGenerationSettings = T['io.flow.internal.v0.models.label_generation_settings'];
31976
- export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.label_generation_settings_deleted'];
31977
- export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
31978
- export const labelGenerationSettingsUpserted = T['io.flow.internal.v0.models.label_generation_settings_upserted'];
31979
32373
  export const labelInvoiceRequest = T['io.flow.internal.v0.models.label_invoice_request'];
31980
32374
  export const labelInvoiceRequestDeleted = T['io.flow.internal.v0.models.label_invoice_request_deleted'];
31981
32375
  export const labelInvoiceRequestUpserted = T['io.flow.internal.v0.models.label_invoice_request_upserted'];
@@ -32033,6 +32427,7 @@ export const loyaltyProgram = T['io.flow.internal.v0.models.loyalty_program'];
32033
32427
  export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_program_message'];
32034
32428
  export const loyaltyProgramReward = T['io.flow.internal.v0.models.loyalty_program_reward'];
32035
32429
  export const loyaltyProgramRewards = T['io.flow.internal.v0.models.loyalty_program_rewards'];
32430
+ export const mailClass = T['io.flow.internal.v0.enums.mail_class'];
32036
32431
  export const mainTransaction = T['io.flow.internal.v0.models.main_transaction'];
32037
32432
  export const mainTransactionDeleted = T['io.flow.internal.v0.models.main_transaction_deleted'];
32038
32433
  export const mainTransactionDeletedV2 = T['io.flow.internal.v0.models.main_transaction_deleted_v2'];
@@ -32074,20 +32469,19 @@ export const merchantOverrideUpserted = T['io.flow.internal.v0.models.merchant_o
32074
32469
  export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
32075
32470
  export const merchantSubsidies = T['io.flow.internal.v0.models.merchant_subsidies'];
32076
32471
  export const merchantSummary = T['io.flow.internal.v0.models.merchant_summary'];
32472
+ export const merchantSurcharge = T['io.flow.internal.v0.models.merchant_surcharge'];
32077
32473
  export const merchantTransactions = T['io.flow.internal.v0.models.merchant_transactions'];
32078
32474
  export const merchantUpserted = T['io.flow.internal.v0.models.merchant_upserted'];
32079
32475
  export const messageStamp = T['io.flow.internal.v0.models.message_stamp'];
32080
32476
  export const metadataProposition = T['io.flow.internal.v0.models.metadata_proposition'];
32081
32477
  export const metadataRatecard = T['io.flow.internal.v0.models.metadata_ratecard'];
32082
32478
  export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
32479
+ export const morCostDeleted = T['io.flow.internal.v0.models.mor_cost_deleted'];
32480
+ export const morCostSummary = T['io.flow.internal.v0.models.mor_cost_summary'];
32481
+ export const morCostUpserted = T['io.flow.internal.v0.models.mor_cost_upserted'];
32083
32482
  export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
32084
32483
  export const negativeDebitMetrics = T['io.flow.internal.v0.models.negative_debit_metrics'];
32085
32484
  export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
32086
- export const niallItem = T['io.flow.internal.v0.models.niall_item'];
32087
- export const niallItemDeleted = T['io.flow.internal.v0.models.niall_item_deleted'];
32088
- export const niallItemForm = T['io.flow.internal.v0.models.niall_item_form'];
32089
- export const niallItemType = T['io.flow.internal.v0.enums.niall_item_type'];
32090
- export const niallItemUpserted = T['io.flow.internal.v0.models.niall_item_upserted'];
32091
32485
  export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated_tax_amount'];
32092
32486
  export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
32093
32487
  export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_reason_code'];
@@ -32203,6 +32597,9 @@ export const organizationPaymentSettingForm = T['io.flow.internal.v0.models.orga
32203
32597
  export const organizationPaymentSettingUpserted = T['io.flow.internal.v0.models.organization_payment_setting_upserted'];
32204
32598
  export const organizationPaymentSettingVersion = T['io.flow.internal.v0.models.organization_payment_setting_version'];
32205
32599
  export const organizationPaymentStatus = T['io.flow.internal.v0.enums.organization_payment_status'];
32600
+ export const organizationPromotion = T['io.flow.internal.v0.models.organization_promotion'];
32601
+ export const organizationPromotionStatus = T['io.flow.internal.v0.enums.organization_promotion_status'];
32602
+ export const organizationPromotionWarning = T['io.flow.internal.v0.models.organization_promotion_warning'];
32206
32603
  export const organizationRestrictionApprovalStatus = T['io.flow.internal.v0.enums.organization_restriction_approval_status'];
32207
32604
  export const organizationRestrictionNoteForm = T['io.flow.internal.v0.models.organization_restriction_note_form'];
32208
32605
  export const organizationRestrictionNoteType = T['io.flow.internal.v0.enums.organization_restriction_note_type'];
@@ -32325,9 +32722,6 @@ export const platformFeeFlat = T['io.flow.internal.v0.models.platform_fee_flat']
32325
32722
  export const platformFeePause = T['io.flow.internal.v0.models.platform_fee_pause'];
32326
32723
  export const platformFeePercentage = T['io.flow.internal.v0.models.platform_fee_percentage'];
32327
32724
  export const platformFeePercentageTier = T['io.flow.internal.v0.models.platform_fee_percentage_tier'];
32328
- export const prateekItem = T['io.flow.internal.v0.models.prateek_item'];
32329
- export const prateekItemForm = T['io.flow.internal.v0.models.prateek_item_form'];
32330
- export const prateekItemType = T['io.flow.internal.v0.enums.prateek_item_type'];
32331
32725
  export const prediction = T['io.flow.internal.v0.models.prediction'];
32332
32726
  export const preferredBillingSchedule = T['io.flow.internal.v0.enums.preferred_billing_schedule'];
32333
32727
  export const preonboardingClassificationDecision = T['io.flow.internal.v0.enums.preonboarding_classification_decision'];
@@ -32340,6 +32734,9 @@ export const preonboardingClassificationType = T['io.flow.internal.v0.enums.preo
32340
32734
  export const preonboardingMerchant = T['io.flow.internal.v0.models.preonboarding_merchant'];
32341
32735
  export const preonboardingRequestStatus = T['io.flow.internal.v0.enums.preonboarding_request_status'];
32342
32736
  export const preonboardingSellabilityResult = T['io.flow.internal.v0.models.preonboarding_sellability_result'];
32737
+ export const preonboardingSellabilityResultDeleted = T['io.flow.internal.v0.models.preonboarding_sellability_result_deleted'];
32738
+ export const preonboardingSellabilityResultInserted = T['io.flow.internal.v0.models.preonboarding_sellability_result_inserted'];
32739
+ export const preonboardingSellabilityResultUpdated = T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'];
32343
32740
  export const priceInclusivity = T['io.flow.internal.v0.models.price_inclusivity'];
32344
32741
  export const priceSelector = T['io.flow.internal.v0.enums.price_selector'];
32345
32742
  export const prioritizedCenterReference = T['io.flow.internal.v0.models.prioritized_center_reference'];
@@ -32383,7 +32780,11 @@ export const productReviewHistory = T['io.flow.internal.v0.models.product_review
32383
32780
  export const productSellabilityInternal = T['io.flow.internal.v0.models.product_sellability_internal'];
32384
32781
  export const productSellabilityInternalForm = T['io.flow.internal.v0.models.product_sellability_internal_form'];
32385
32782
  export const productSellabilityInternalResult = T['io.flow.internal.v0.models.product_sellability_internal_result'];
32783
+ export const productSellabilityInternalRuleMatch = T['io.flow.internal.v0.models.product_sellability_internal_rule_match'];
32386
32784
  export const productSellabilityResult = T['io.flow.internal.v0.models.product_sellability_result'];
32785
+ export const productSellabilityResultDeleted = T['io.flow.internal.v0.models.product_sellability_result_deleted'];
32786
+ export const productSellabilityResultInserted = T['io.flow.internal.v0.models.product_sellability_result_inserted'];
32787
+ export const productSellabilityResultUpdated = T['io.flow.internal.v0.models.product_sellability_result_updated'];
32387
32788
  export const productStatus = T['io.flow.internal.v0.enums.product_status'];
32388
32789
  export const productTransaction = T['io.flow.internal.v0.models.product_transaction'];
32389
32790
  export const proofOfPosting = T['io.flow.internal.v0.unions.proof_of_posting'];
@@ -32447,13 +32848,11 @@ export const ratecardServiceFeeDeleted = T['io.flow.internal.v0.models.ratecard_
32447
32848
  export const ratecardServiceFeeUpserted = T['io.flow.internal.v0.models.ratecard_service_fee_upserted'];
32448
32849
  export const ratecardServiceFeesOverride = T['io.flow.internal.v0.models.ratecard_service_fees_override'];
32449
32850
  export const ratecardServiceFeesOverrideForm = T['io.flow.internal.v0.models.ratecard_service_fees_override_form'];
32450
- export const ratecardStandardConfiguration = T['io.flow.internal.v0.models.ratecard_standard_configuration'];
32451
- export const ratecardStandardConfigurationDeleted = T['io.flow.internal.v0.models.ratecard_standard_configuration_deleted'];
32452
- export const ratecardStandardConfigurationForm = T['io.flow.internal.v0.models.ratecard_standard_configuration_form'];
32453
- export const ratecardStandardConfigurationUpserted = T['io.flow.internal.v0.models.ratecard_standard_configuration_upserted'];
32454
- export const ratecardStandardSettings = T['io.flow.internal.v0.models.ratecard_standard_settings'];
32455
32851
  export const ratesChanged = T['io.flow.internal.v0.models.rates_changed'];
32456
32852
  export const ratesNamesSummary = T['io.flow.internal.v0.models.rates_names_summary'];
32853
+ export const raveenaItem = T['io.flow.internal.v0.models.raveena_item'];
32854
+ export const raveenaItemForm = T['io.flow.internal.v0.models.raveena_item_form'];
32855
+ export const raveenaItemType = T['io.flow.internal.v0.enums.raveena_item_type'];
32457
32856
  export const recordReference = T['io.flow.internal.v0.models.record_reference'];
32458
32857
  export const redirect = T['io.flow.internal.v0.models.redirect'];
32459
32858
  export const redirectActionCompleted = T['io.flow.internal.v0.models.redirect_action_completed'];
@@ -32502,6 +32901,8 @@ export const reportingFulfillmentIsVirtual = T['io.flow.internal.v0.enums.report
32502
32901
  export const reportingFx = T['io.flow.internal.v0.models.reporting_fx'];
32503
32902
  export const reportingMerchantBreakdown = T['io.flow.internal.v0.models.reporting_merchant_breakdown'];
32504
32903
  export const reportingMerchantFees = T['io.flow.internal.v0.models.reporting_merchant_fees'];
32904
+ export const reportingMerchantFreight = T['io.flow.internal.v0.models.reporting_merchant_freight'];
32905
+ export const reportingMerchantFreightSurcharges = T['io.flow.internal.v0.models.reporting_merchant_freight_surcharges'];
32505
32906
  export const reportingMerchantSubsidies = T['io.flow.internal.v0.models.reporting_merchant_subsidies'];
32506
32907
  export const reportingMerchantTransactions = T['io.flow.internal.v0.models.reporting_merchant_transactions'];
32507
32908
  export const reportingMonetaryValue = T['io.flow.internal.v0.models.reporting_monetary_value'];
@@ -32531,6 +32932,7 @@ export const restrictionAttributeResult = T['io.flow.internal.v0.enums.restricti
32531
32932
  export const restrictionAttributeRule = T['io.flow.internal.v0.models.restriction_attribute_rule'];
32532
32933
  export const restrictionAttributeRuleCondition = T['io.flow.internal.v0.unions.restriction_attribute_rule_condition'];
32533
32934
  export const restrictionBlanketOrganizationExemption = T['io.flow.internal.v0.models.restriction_blanket_organization_exemption'];
32935
+ export const restrictionBlanketOrganizationExemptionForm = T['io.flow.internal.v0.models.restriction_blanket_organization_exemption_form'];
32534
32936
  export const restrictionCategory = T['io.flow.internal.v0.models.restriction_category'];
32535
32937
  export const restrictionDecision = T['io.flow.internal.v0.enums.restriction_decision'];
32536
32938
  export const restrictionFilter = T['io.flow.internal.v0.models.restriction_filter'];
@@ -32565,7 +32967,9 @@ export const restrictionRuleEffectUpserted = T['io.flow.internal.v0.models.restr
32565
32967
  export const restrictionRuleExceptionAction = T['io.flow.internal.v0.enums.restriction_rule_exception_action'];
32566
32968
  export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
32567
32969
  export const restrictionRuleLaneExemption = T['io.flow.internal.v0.models.restriction_rule_lane_exemption'];
32970
+ export const restrictionRuleLaneExemptionForm = T['io.flow.internal.v0.models.restriction_rule_lane_exemption_form'];
32568
32971
  export const restrictionRuleOrganizationExemption = T['io.flow.internal.v0.models.restriction_rule_organization_exemption'];
32972
+ export const restrictionRuleOrganizationExemptionForm = T['io.flow.internal.v0.models.restriction_rule_organization_exemption_form'];
32569
32973
  export const restrictionRuleOverride = T['io.flow.internal.v0.models.restriction_rule_override'];
32570
32974
  export const restrictionRuleSummary = T['io.flow.internal.v0.models.restriction_rule_summary'];
32571
32975
  export const restrictionRuleUpserted = T['io.flow.internal.v0.models.restriction_rule_upserted'];
@@ -32594,11 +32998,6 @@ export const revenueRecordType = T['io.flow.internal.v0.enums.revenue_record_typ
32594
32998
  export const revenueRecordUpserted = T['io.flow.internal.v0.models.revenue_record_upserted'];
32595
32999
  export const riskCheck = T['io.flow.internal.v0.enums.risk_check'];
32596
33000
  export const riskEvaluation = T['io.flow.internal.v0.enums.risk_evaluation'];
32597
- export const rohanItem = T['io.flow.internal.v0.models.rohan_item'];
32598
- export const rohanItemDeleted = T['io.flow.internal.v0.models.rohan_item_deleted'];
32599
- export const rohanItemForm = T['io.flow.internal.v0.models.rohan_item_form'];
32600
- export const rohanItemType = T['io.flow.internal.v0.enums.rohan_item_type'];
32601
- export const rohanItemUpserted = T['io.flow.internal.v0.models.rohan_item_upserted'];
32602
33001
  export const routingAccount = T['io.flow.internal.v0.models.routing_account'];
32603
33002
  export const routingEntity = T['io.flow.internal.v0.unions.routing_entity'];
32604
33003
  export const routingMerchant = T['io.flow.internal.v0.models.routing_merchant'];
@@ -32606,11 +33005,6 @@ export const routingProcessor = T['io.flow.internal.v0.models.routing_processor'
32606
33005
  export const salesPaymentRecord = T['io.flow.internal.v0.models.sales_payment_record'];
32607
33006
  export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
32608
33007
  export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
32609
- export const sarveshItem = T['io.flow.internal.v0.models.sarvesh_item'];
32610
- export const sarveshItemDeleted = T['io.flow.internal.v0.models.sarvesh_item_deleted'];
32611
- export const sarveshItemForm = T['io.flow.internal.v0.models.sarvesh_item_form'];
32612
- export const sarveshItemType = T['io.flow.internal.v0.enums.sarvesh_item_type'];
32613
- export const sarveshItemUpserted = T['io.flow.internal.v0.models.sarvesh_item_upserted'];
32614
33008
  export const scheduledPayment = T['io.flow.internal.v0.models.scheduled_payment'];
32615
33009
  export const screen = T['io.flow.internal.v0.models.screen'];
32616
33010
  export const screenForm = T['io.flow.internal.v0.models.screen_form'];
@@ -32626,20 +33020,32 @@ export const searchProviderExport = T['io.flow.internal.v0.models.search_provide
32626
33020
  export const searchTrackingSummary = T['io.flow.internal.v0.models.search_tracking_summary'];
32627
33021
  export const sellabilityCheckResult = T['io.flow.internal.v0.models.sellability_check_result'];
32628
33022
  export const sellabilityCheckStatus = T['io.flow.internal.v0.enums.sellability_check_status'];
33023
+ export const sellabilityInternalMatchType = T['io.flow.internal.v0.enums.sellability_internal_match_type'];
32629
33024
  export const sellabilityStatus = T['io.flow.internal.v0.enums.sellability_status'];
32630
33025
  export const sessionOrderData = T['io.flow.internal.v0.models.session_order_data'];
32631
33026
  export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
32632
33027
  export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
32633
33028
  export const shipmentCostSummary = T['io.flow.internal.v0.models.shipment_cost_summary'];
33029
+ export const shippingCostDeleted = T['io.flow.internal.v0.models.shipping_cost_deleted'];
33030
+ export const shippingCostSummary = T['io.flow.internal.v0.models.shipping_cost_summary'];
33031
+ export const shippingCostUpserted = T['io.flow.internal.v0.models.shipping_cost_upserted'];
32634
33032
  export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
32635
33033
  export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
32636
33034
  export const shippingPricing = T['io.flow.internal.v0.models.shipping_pricing'];
32637
33035
  export const shippingRateEstimateAvailableInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_available_internal'];
32638
33036
  export const shippingRateEstimateInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_internal'];
32639
33037
  export const shippingRateEstimateRequestInternal = T['io.flow.internal.v0.models.shipping_rate_estimate_request_internal'];
33038
+ export const shopifyAddress = T['io.flow.internal.v0.models.shopify_address'];
33039
+ export const shopifyCallbackError = T['io.flow.internal.v0.models.shopify_callback_error'];
33040
+ export const shopifyCallbackErrorCode = T['io.flow.internal.v0.enums.shopify_callback_error_code'];
33041
+ export const shopifyCallbackErrorItem = T['io.flow.internal.v0.models.shopify_callback_error_item'];
32640
33042
  export const shopifyCatalogPublication = T['io.flow.internal.v0.models.shopify_catalog_publication'];
32641
33043
  export const shopifyChannelOrganizationToken = T['io.flow.internal.v0.models.shopify_channel_organization_token'];
32642
33044
  export const shopifyChannelOrganizationTokens = T['io.flow.internal.v0.models.shopify_channel_organization_tokens'];
33045
+ export const shopifyChargeCode = T['io.flow.internal.v0.enums.shopify_charge_code'];
33046
+ export const shopifyContactDetails = T['io.flow.internal.v0.models.shopify_contact_details'];
33047
+ export const shopifyDeliveryMethodType = T['io.flow.internal.v0.enums.shopify_delivery_method_type'];
33048
+ export const shopifyDimensionUnit = T['io.flow.internal.v0.enums.shopify_dimension_unit'];
32643
33049
  export const shopifyDispute = T['io.flow.internal.v0.models.shopify_dispute'];
32644
33050
  export const shopifyDisputeDeleted = T['io.flow.internal.v0.models.shopify_dispute_deleted'];
32645
33051
  export const shopifyDisputeUpserted = T['io.flow.internal.v0.models.shopify_dispute_upserted'];
@@ -32647,6 +33053,7 @@ export const shopifyHs10Code = T['io.flow.internal.v0.models.shopify_hs10_code']
32647
33053
  export const shopifyHs10Codes = T['io.flow.internal.v0.models.shopify_hs10_codes'];
32648
33054
  export const shopifyHs10CodesDeleted = T['io.flow.internal.v0.models.shopify_hs10_codes_deleted'];
32649
33055
  export const shopifyHs10CodesUpserted = T['io.flow.internal.v0.models.shopify_hs10_codes_upserted'];
33056
+ export const shopifyIncoterm = T['io.flow.internal.v0.enums.shopify_incoterm'];
32650
33057
  export const shopifyIncotermConfiguration = T['io.flow.internal.v0.enums.shopify_incoterm_configuration'];
32651
33058
  export const shopifyIncotermIncludes = T['io.flow.internal.v0.models.shopify_incoterm_includes'];
32652
33059
  export const shopifyIncotermSummaryErrorData = T['io.flow.internal.v0.models.shopify_incoterm_summary_error_data'];
@@ -32693,10 +33100,12 @@ export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_ma
32693
33100
  export const shopifyMarketsWebhookRegistration = T['io.flow.internal.v0.models.shopify_markets_webhook_registration'];
32694
33101
  export const shopifyMarketsWebhookRegistrationDeleted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_deleted'];
32695
33102
  export const shopifyMarketsWebhookRegistrationUpserted = T['io.flow.internal.v0.models.shopify_markets_webhook_registration_upserted'];
33103
+ export const shopifyMeasurements = T['io.flow.internal.v0.models.shopify_measurements'];
32696
33104
  export const shopifyMerchantPlan = T['io.flow.internal.v0.models.shopify_merchant_plan'];
32697
33105
  export const shopifyMerchantPlanDeleted = T['io.flow.internal.v0.models.shopify_merchant_plan_deleted'];
32698
33106
  export const shopifyMerchantPlanUpserted = T['io.flow.internal.v0.models.shopify_merchant_plan_upserted'];
32699
33107
  export const shopifyMetadata = T['io.flow.internal.v0.models.shopify_metadata'];
33108
+ export const shopifyMoney = T['io.flow.internal.v0.models.shopify_money'];
32700
33109
  export const shopifyMonitoringCarrierService = T['io.flow.internal.v0.models.shopify_monitoring_carrier_service'];
32701
33110
  export const shopifyMonitoringFulfillmentExternal = T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_external'];
32702
33111
  export const shopifyMonitoringFulfillmentMissingDetails = T['io.flow.internal.v0.models.shopify_monitoring_fulfillment_missing_details'];
@@ -32720,6 +33129,7 @@ export const shopifyOrderRiskAssessmentUpserted = T['io.flow.internal.v0.models.
32720
33129
  export const shopifyOrderTransaction = T['io.flow.internal.v0.models.shopify_order_transaction'];
32721
33130
  export const shopifyOrderTransactionDeleted = T['io.flow.internal.v0.models.shopify_order_transaction_deleted'];
32722
33131
  export const shopifyOrderTransactionUpserted = T['io.flow.internal.v0.models.shopify_order_transaction_upserted'];
33132
+ export const shopifyPackageType = T['io.flow.internal.v0.enums.shopify_package_type'];
32723
33133
  export const shopifyPartnerWebhook = T['io.flow.internal.v0.models.shopify_partner_webhook'];
32724
33134
  export const shopifyPartnerWebhookRaw = T['io.flow.internal.v0.models.shopify_partner_webhook_raw'];
32725
33135
  export const shopifyPlanType = T['io.flow.internal.v0.enums.shopify_plan_type'];
@@ -32743,9 +33153,24 @@ export const shopifyProductUpdateDeleted = T['io.flow.internal.v0.models.shopify
32743
33153
  export const shopifyProductUpdateUpserted = T['io.flow.internal.v0.models.shopify_product_update_upserted'];
32744
33154
  export const shopifyProductUpdateWebhookEvent = T['io.flow.internal.v0.models.shopify_product_update_webhook_event'];
32745
33155
  export const shopifyProductWrapper = T['io.flow.internal.v0.models.shopify_product_wrapper'];
33156
+ export const shopifyRateCustomsDetail = T['io.flow.internal.v0.models.shopify_rate_customs_detail'];
33157
+ export const shopifyRatePickupPoint = T['io.flow.internal.v0.models.shopify_rate_pickup_point'];
32746
33158
  export const shopifyReportFileDeleted = T['io.flow.internal.v0.models.shopify_report_file_deleted'];
32747
33159
  export const shopifyReportFileUpserted = T['io.flow.internal.v0.models.shopify_report_file_upserted'];
32748
33160
  export const shopifyService = T['io.flow.internal.v0.enums.shopify_service'];
33161
+ export const shopifyShipmentOptionCode = T['io.flow.internal.v0.enums.shopify_shipment_option_code'];
33162
+ export const shopifyShipmentRateAvailable = T['io.flow.internal.v0.models.shopify_shipment_rate_available'];
33163
+ export const shopifyShipmentRateCharge = T['io.flow.internal.v0.models.shopify_shipment_rate_charge'];
33164
+ export const shopifyShipmentRateOption = T['io.flow.internal.v0.models.shopify_shipment_rate_option'];
33165
+ export const shopifyShipmentRatePackage = T['io.flow.internal.v0.models.shopify_shipment_rate_package'];
33166
+ export const shopifyShipmentRateReason = T['io.flow.internal.v0.models.shopify_shipment_rate_reason'];
33167
+ export const shopifyShipmentRateRequest = T['io.flow.internal.v0.models.shopify_shipment_rate_request'];
33168
+ export const shopifyShipmentRateResponse = T['io.flow.internal.v0.models.shopify_shipment_rate_response'];
33169
+ export const shopifyShipmentRateShipment = T['io.flow.internal.v0.models.shopify_shipment_rate_shipment'];
33170
+ export const shopifyShipmentRateShipper = T['io.flow.internal.v0.models.shopify_shipment_rate_shipper'];
33171
+ export const shopifyShipmentRateTotalCharges = T['io.flow.internal.v0.models.shopify_shipment_rate_total_charges'];
33172
+ export const shopifyShipmentRateUnavailable = T['io.flow.internal.v0.models.shopify_shipment_rate_unavailable'];
33173
+ export const shopifyShippingLocation = T['io.flow.internal.v0.models.shopify_shipping_location'];
32749
33174
  export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
32750
33175
  export const shopifyStoreDetail = T['io.flow.internal.v0.models.shopify_store_detail'];
32751
33176
  export const shopifyStripeEvent = T['io.flow.internal.v0.models.shopify_stripe_event'];
@@ -32754,6 +33179,8 @@ export const shopifyTaxonomyAlignmentConfigForm = T['io.flow.internal.v0.models.
32754
33179
  export const shopifyTestOrder = T['io.flow.internal.v0.models.shopify_test_order'];
32755
33180
  export const shopifyTestOrderDeleted = T['io.flow.internal.v0.models.shopify_test_order_deleted'];
32756
33181
  export const shopifyTestOrderUpserted = T['io.flow.internal.v0.models.shopify_test_order_upserted'];
33182
+ export const shopifyUnavailableRateReasonCode = T['io.flow.internal.v0.enums.shopify_unavailable_rate_reason_code'];
33183
+ export const shopifyWeightUnit = T['io.flow.internal.v0.enums.shopify_weight_unit'];
32757
33184
  export const shopperBreakdown = T['io.flow.internal.v0.models.shopper_breakdown'];
32758
33185
  export const shopperFees = T['io.flow.internal.v0.models.shopper_fees'];
32759
33186
  export const shopperFreight = T['io.flow.internal.v0.models.shopper_freight'];
@@ -32844,7 +33271,6 @@ export const taskProcessQueuedEvent = T['io.flow.internal.v0.models.task_process
32844
33271
  export const taskProcessorKey = T['io.flow.internal.v0.enums.task_processor_key'];
32845
33272
  export const taskSummarizeCode = T['io.flow.internal.v0.models.task_summarize_code'];
32846
33273
  export const taxAmount = T['io.flow.internal.v0.unions.tax_amount'];
32847
- export const taxAndDutyInclusivitySetting = T['io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting'];
32848
33274
  export const taxCalculation = T['io.flow.internal.v0.models.tax_calculation'];
32849
33275
  export const taxCalculationError = T['io.flow.internal.v0.models.tax_calculation_error'];
32850
33276
  export const taxCalculationErrorCode = T['io.flow.internal.v0.enums.tax_calculation_error_code'];