@flowio/api-prop-types 10.16.108 → 10.16.109

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.
package/src/api.js CHANGED
@@ -29,8 +29,18 @@ T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
29
29
  value_obj: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_value']),
30
30
  });
31
31
 
32
- T['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
33
32
  T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
33
+ T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
34
+
35
+ T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
36
+ code: T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'].isRequired,
37
+ message: PropTypes.string.isRequired,
38
+ });
39
+
40
+ T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'] = PropTypes.exact({
41
+ order_id: PropTypes.number.isRequired,
42
+ shop_id: PropTypes.number.isRequired,
43
+ });
34
44
 
35
45
  T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
36
46
  discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
@@ -88,6 +98,19 @@ T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
88
98
  T['io.flow.common.v0.models.repeat_monthly'],
89
99
  ]);
90
100
 
101
+ T['io.flow.common.v0.models.price'] = PropTypes.exact({
102
+ amount: PropTypes.number.isRequired,
103
+ currency: PropTypes.string.isRequired,
104
+ label: PropTypes.string.isRequired,
105
+ });
106
+
107
+ T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
108
+ currency: PropTypes.string.isRequired,
109
+ amount: PropTypes.number.isRequired,
110
+ label: PropTypes.string.isRequired,
111
+ base: T['io.flow.common.v0.models.price'],
112
+ });
113
+
91
114
  T['io.flow.common.v0.models.price_source_price_book_reference'] = PropTypes.exact({
92
115
  id: PropTypes.string.isRequired,
93
116
  key: PropTypes.string.isRequired,
@@ -99,6 +122,8 @@ T['io.flow.common.v0.enums.organization_status'] = PropTypes.oneOf(['active', 'i
99
122
  T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
100
123
  number: PropTypes.string.isRequired,
101
124
  country: PropTypes.string.isRequired,
125
+ province_number: PropTypes.string,
126
+ province: PropTypes.string,
102
127
  });
103
128
 
104
129
  T['io.flow.common.v0.enums.margin_type'] = PropTypes.oneOf(['fixed', 'percent']);
@@ -462,9 +487,15 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason']
462
487
  'unsupported_virtual_goods',
463
488
  'non_matching_currencies',
464
489
  'unsupported_order_edit',
490
+ 'order_allocation_duties_mismatch',
465
491
  'order_missing',
466
492
  ]);
467
493
 
494
+ T['io.flow.channel.shopify.v0.models.external_order_summary'] = PropTypes.exact({
495
+ id: PropTypes.string.isRequired,
496
+ edit_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
497
+ });
498
+
468
499
  T['io.flow.channel.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
469
500
 
470
501
  T['io.flow.channel.internal.v0.models.order_edit_summary'] = PropTypes.exact({
@@ -3558,12 +3589,20 @@ T['io.flow.v0.models.order_number_generator_uuid'] = PropTypes.exact({
3558
3589
  prefix: PropTypes.string,
3559
3590
  });
3560
3591
 
3592
+ T['io.flow.v0.models.common_merchant_applications_summary'] = PropTypes.exact({
3593
+ discriminator: PropTypes.oneOf(['common_merchant_applications_summary']).isRequired,
3594
+ total: PropTypes.number.isRequired,
3595
+ });
3596
+
3561
3597
  T['io.flow.v0.models.shopify_merchant_applications_summary'] = PropTypes.exact({
3562
3598
  discriminator: PropTypes.oneOf(['shopify_merchant_applications_summary']).isRequired,
3563
3599
  total: PropTypes.number.isRequired,
3564
3600
  });
3565
3601
 
3566
- T['io.flow.v0.unions.merchant_applications_summary'] = PropTypes.oneOfType([T['io.flow.v0.models.shopify_merchant_applications_summary']]);
3602
+ T['io.flow.v0.unions.merchant_applications_summary'] = PropTypes.oneOfType([
3603
+ T['io.flow.v0.models.shopify_merchant_applications_summary'],
3604
+ T['io.flow.v0.models.common_merchant_applications_summary'],
3605
+ ]);
3567
3606
 
3568
3607
  T['io.flow.v0.models.stripe_authentication_data_form'] = PropTypes.exact({
3569
3608
  discriminator: PropTypes.oneOf(['stripe_authentication_data_form']).isRequired,
@@ -3581,6 +3620,14 @@ T['io.flow.v0.models.stripe_authentication_data'] = PropTypes.exact({
3581
3620
 
3582
3621
  T['io.flow.v0.unions.gateway_authentication_data'] = PropTypes.oneOfType([T['io.flow.v0.models.stripe_authentication_data']]);
3583
3622
 
3623
+ T['io.flow.v0.models.product_sellability_result_deleted'] = PropTypes.exact({
3624
+ discriminator: PropTypes.oneOf(['product_sellability_result_deleted']).isRequired,
3625
+ event_id: PropTypes.string.isRequired,
3626
+ timestamp: PropTypes.string.isRequired,
3627
+ organization: PropTypes.string.isRequired,
3628
+ id: PropTypes.string.isRequired,
3629
+ });
3630
+
3584
3631
  T['io.flow.v0.models.product_restriction_result_deleted'] = PropTypes.exact({
3585
3632
  discriminator: PropTypes.oneOf(['product_restriction_result_deleted']).isRequired,
3586
3633
  event_id: PropTypes.string.isRequired,
@@ -3677,6 +3724,14 @@ T['io.flow.v0.models.authorization_deleted_v2'] = PropTypes.exact({
3677
3724
  id: PropTypes.string.isRequired,
3678
3725
  });
3679
3726
 
3727
+ T['io.flow.v0.models.tax_registration_deleted'] = PropTypes.exact({
3728
+ discriminator: PropTypes.oneOf(['tax_registration_deleted']).isRequired,
3729
+ event_id: PropTypes.string.isRequired,
3730
+ timestamp: PropTypes.string.isRequired,
3731
+ organization: PropTypes.string.isRequired,
3732
+ id: PropTypes.string.isRequired,
3733
+ });
3734
+
3680
3735
  T['io.flow.v0.models.organization_deleted'] = PropTypes.exact({
3681
3736
  discriminator: PropTypes.oneOf(['organization_deleted']).isRequired,
3682
3737
  event_id: PropTypes.string.isRequired,
@@ -3989,55 +4044,6 @@ T['io.flow.v0.models.organization_transaction_deleted'] = PropTypes.exact({
3989
4044
  id: PropTypes.string.isRequired,
3990
4045
  });
3991
4046
 
3992
- T['io.flow.v0.models.anirban_item_deleted'] = PropTypes.exact({
3993
- discriminator: PropTypes.oneOf(['anirban_item_deleted']).isRequired,
3994
- event_id: PropTypes.string.isRequired,
3995
- timestamp: PropTypes.string.isRequired,
3996
- id: PropTypes.string.isRequired,
3997
- });
3998
-
3999
- T['io.flow.v0.models.ansh_item_deleted'] = PropTypes.exact({
4000
- discriminator: PropTypes.oneOf(['ansh_item_deleted']).isRequired,
4001
- event_id: PropTypes.string.isRequired,
4002
- timestamp: PropTypes.string.isRequired,
4003
- id: PropTypes.string.isRequired,
4004
- });
4005
-
4006
- T['io.flow.v0.models.aldo_item_deleted'] = PropTypes.exact({
4007
- discriminator: PropTypes.oneOf(['aldo_item_deleted']).isRequired,
4008
- event_id: PropTypes.string.isRequired,
4009
- timestamp: PropTypes.string.isRequired,
4010
- id: PropTypes.string.isRequired,
4011
- });
4012
-
4013
- T['io.flow.v0.models.rohan_item_deleted'] = PropTypes.exact({
4014
- discriminator: PropTypes.oneOf(['rohan_item_deleted']).isRequired,
4015
- event_id: PropTypes.string.isRequired,
4016
- timestamp: PropTypes.string.isRequired,
4017
- id: PropTypes.string.isRequired,
4018
- });
4019
-
4020
- T['io.flow.v0.models.niall_item_deleted'] = PropTypes.exact({
4021
- discriminator: PropTypes.oneOf(['niall_item_deleted']).isRequired,
4022
- event_id: PropTypes.string.isRequired,
4023
- timestamp: PropTypes.string.isRequired,
4024
- id: PropTypes.string.isRequired,
4025
- });
4026
-
4027
- T['io.flow.v0.models.hosein_item_deleted'] = PropTypes.exact({
4028
- discriminator: PropTypes.oneOf(['hosein_item_deleted']).isRequired,
4029
- event_id: PropTypes.string.isRequired,
4030
- timestamp: PropTypes.string.isRequired,
4031
- id: PropTypes.string.isRequired,
4032
- });
4033
-
4034
- T['io.flow.v0.models.sarvesh_item_deleted'] = PropTypes.exact({
4035
- discriminator: PropTypes.oneOf(['sarvesh_item_deleted']).isRequired,
4036
- event_id: PropTypes.string.isRequired,
4037
- timestamp: PropTypes.string.isRequired,
4038
- id: PropTypes.string.isRequired,
4039
- });
4040
-
4041
4047
  T['io.flow.v0.models.generate_load'] = PropTypes.exact({
4042
4048
  discriminator: PropTypes.oneOf(['generate_load']).isRequired,
4043
4049
  event_id: PropTypes.string.isRequired,
@@ -4200,7 +4206,7 @@ T['io.flow.v0.models.trueup_label_base'] = PropTypes.exact({
4200
4206
  weight: PropTypes.number.isRequired,
4201
4207
  });
4202
4208
 
4203
- T['io.flow.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']);
4209
+ T['io.flow.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups', 'fedex']);
4204
4210
 
4205
4211
  T['io.flow.v0.models.transaction_metadata_tax_duty_delta'] = PropTypes.exact({
4206
4212
  base: PropTypes.number,
@@ -4224,6 +4230,7 @@ T['io.flow.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf([
4224
4230
  'order_edit',
4225
4231
  'mixed_fulfilment_non_lvg',
4226
4232
  'lvg_refund',
4233
+ 'us_inbound_tax_refund',
4227
4234
  'order_cancellation_above_de_min',
4228
4235
  'wyol_shipment_above_de_min',
4229
4236
  'full_refund_without_shipment',
@@ -4255,6 +4262,50 @@ T['io.flow.v0.models.transaction_metadata_outbound_transaction'] = PropTypes.exa
4255
4262
 
4256
4263
  T['io.flow.v0.enums.carrier_charge_reason'] = PropTypes.oneOf(['return_to_origin', 'rejection', 'other']);
4257
4264
 
4265
+ T['io.flow.v0.enums.substatus_code'] = PropTypes.oneOf([
4266
+ 'Delivered_001',
4267
+ 'Delivered_002',
4268
+ 'Delivered_003',
4269
+ 'Delivered_004',
4270
+ 'AvailableForPickup_001',
4271
+ 'Exception_001',
4272
+ 'Exception_002',
4273
+ 'Exception_003',
4274
+ 'Exception_004',
4275
+ 'Exception_005',
4276
+ 'Exception_006',
4277
+ 'Exception_007',
4278
+ 'Exception_008',
4279
+ 'Exception_009',
4280
+ 'Exception_010',
4281
+ 'Exception_011',
4282
+ 'Exception_012',
4283
+ 'Exception_013',
4284
+ 'AttemptFail_001',
4285
+ 'AttemptFail_002',
4286
+ 'AttemptFail_003',
4287
+ 'InTransit_001',
4288
+ 'InTransit_002',
4289
+ 'InTransit_003',
4290
+ 'InTransit_004',
4291
+ 'InTransit_005',
4292
+ 'InTransit_006',
4293
+ 'InTransit_007',
4294
+ 'InTransit_008',
4295
+ 'InTransit_009',
4296
+ 'InfoReceived_001',
4297
+ 'OutForDelivery_001',
4298
+ 'OutForDelivery_003',
4299
+ 'OutForDelivery_004',
4300
+ 'Pending_001',
4301
+ 'Pending_002',
4302
+ 'Pending_003',
4303
+ 'Pending_004',
4304
+ 'Pending_005',
4305
+ 'Pending_006',
4306
+ 'Expired_001',
4307
+ ]);
4308
+
4258
4309
  T['io.flow.v0.enums.tracking_status'] = PropTypes.oneOf([
4259
4310
  'label_created',
4260
4311
  'pending',
@@ -4480,6 +4531,7 @@ T['io.flow.v0.models.subcatalog_settings'] = PropTypes.exact({
4480
4531
  update_policy: T['io.flow.v0.enums.update_policy'].isRequired,
4481
4532
  });
4482
4533
 
4534
+ T['io.flow.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
4483
4535
  T['io.flow.v0.enums.shopify_sync_check'] = PropTypes.oneOf(['localized_variants', 'flow_variant_metafields']);
4484
4536
 
4485
4537
  T['io.flow.v0.models.shopify_order_delivery_metafield_item'] = PropTypes.exact({
@@ -4500,31 +4552,6 @@ T['io.flow.v0.models.ratecard_reference'] = PropTypes.exact({
4500
4552
  id: PropTypes.string.isRequired,
4501
4553
  });
4502
4554
 
4503
- T['io.flow.v0.models.operations_contact'] = PropTypes.exact({
4504
- company: PropTypes.string,
4505
- email: PropTypes.string,
4506
- phone: PropTypes.string,
4507
- });
4508
-
4509
- T['io.flow.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
4510
- name: PropTypes.string.isRequired,
4511
- dob: PropTypes.string.isRequired,
4512
- });
4513
-
4514
- T['io.flow.v0.models.indirect_tax'] = PropTypes.exact({
4515
- number: PropTypes.string,
4516
- id: PropTypes.string,
4517
- });
4518
-
4519
- T['io.flow.v0.enums.onboarding_application_status'] = PropTypes.oneOf(['to_do', 'in_progress', 'on_hold', 'rejected', 'accepted']);
4520
-
4521
- T['io.flow.v0.models.shopify_merchant_application_put_form'] = PropTypes.exact({
4522
- discriminator: PropTypes.oneOf(['shopify_merchant_application_put_form']).isRequired,
4523
- status: T['io.flow.v0.enums.onboarding_application_status'],
4524
- });
4525
-
4526
- T['io.flow.v0.unions.merchant_application_put_form'] = PropTypes.oneOfType([T['io.flow.v0.models.shopify_merchant_application_put_form']]);
4527
-
4528
4555
  T['io.flow.v0.models.flow_center_reference'] = PropTypes.exact({
4529
4556
  key: PropTypes.string.isRequired,
4530
4557
  });
@@ -4653,6 +4680,11 @@ T['io.flow.v0.unions.shopify_cart_add_form'] = PropTypes.oneOfType([
4653
4680
  T['io.flow.v0.models.shopify_cart_add_multiple_form'],
4654
4681
  ]);
4655
4682
 
4683
+ T['io.flow.v0.models.shipping_rate_estimate_unavailable'] = PropTypes.exact({
4684
+ service: PropTypes.string.isRequired,
4685
+ reason: PropTypes.string.isRequired,
4686
+ });
4687
+
4656
4688
  T['io.flow.v0.models.service_unknown'] = PropTypes.exact({
4657
4689
  discriminator: PropTypes.oneOf(['service_unknown']).isRequired,
4658
4690
  name: PropTypes.string.isRequired,
@@ -4704,6 +4736,10 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
4704
4736
  'missing_logistics_contact_info',
4705
4737
  ]);
4706
4738
 
4739
+ T['io.flow.v0.enums.sellability_screening_mode'] = PropTypes.oneOf(['pre_onboarding', 'default_on', 'active']);
4740
+ T['io.flow.v0.enums.sellability_result_error_code'] = PropTypes.oneOf(['insufficient_details', 'generic_error']);
4741
+ T['io.flow.v0.enums.sellability_result_status'] = PropTypes.oneOf(['in_review', 'succeeded', 'failed']);
4742
+
4707
4743
  T['io.flow.v0.enums.sellability_error_code'] = PropTypes.oneOf([
4708
4744
  'insufficient_details',
4709
4745
  'ineligible_category',
@@ -4717,8 +4753,6 @@ T['io.flow.v0.models.sellability_error'] = PropTypes.exact({
4717
4753
  messages: PropTypes.arrayOf(PropTypes.string).isRequired,
4718
4754
  });
4719
4755
 
4720
- T['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
4721
- T['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
4722
4756
  T['io.flow.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
4723
4757
 
4724
4758
  T['io.flow.v0.models.return_policy_statistic'] = PropTypes.exact({
@@ -4856,6 +4890,8 @@ T['io.flow.v0.models.ratecard_rate'] = PropTypes.exact({
4856
4890
  weight: PropTypes.number.isRequired,
4857
4891
  });
4858
4892
 
4893
+ T['io.flow.v0.enums.commercial_invoice_mode'] = PropTypes.oneOf(['direct', 'indirect']);
4894
+
4859
4895
  T['io.flow.v0.models.zone'] = PropTypes.exact({
4860
4896
  postals: PropTypes.arrayOf(PropTypes.string),
4861
4897
  provinces: PropTypes.arrayOf(PropTypes.string),
@@ -4929,8 +4965,56 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
4929
4965
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
4930
4966
  });
4931
4967
 
4968
+ T['io.flow.v0.models.sellability_region_with_reasons'] = PropTypes.exact({
4969
+ region: PropTypes.string.isRequired,
4970
+ reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
4971
+ });
4972
+
4973
+ T['io.flow.v0.models.sellability_needs_action_attributes'] = PropTypes.exact({
4974
+ reason_code: PropTypes.string.isRequired,
4975
+ category_metafield_handles: PropTypes.arrayOf(PropTypes.string).isRequired,
4976
+ require_msds: PropTypes.bool,
4977
+ });
4978
+
4932
4979
  T['io.flow.v0.enums.sellability_request_status'] = PropTypes.oneOf(['commit']);
4933
4980
  T['io.flow.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
4981
+
4982
+ T['io.flow.v0.models.sellablility_region_result'] = PropTypes.exact({
4983
+ type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
4984
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
4985
+ });
4986
+
4987
+ T['io.flow.v0.models.sellability_restricted_region'] = PropTypes.exact({
4988
+ type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
4989
+ regions_with_reasons: PropTypes.arrayOf(T['io.flow.v0.models.sellability_region_with_reasons']).isRequired,
4990
+ });
4991
+
4992
+ T['io.flow.v0.models.product_sellability_result'] = PropTypes.exact({
4993
+ merchant_id: PropTypes.string,
4994
+ product_id: PropTypes.string.isRequired,
4995
+ restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellability_restricted_region']).isRequired,
4996
+ needs_action_attributes: PropTypes.arrayOf(T['io.flow.v0.models.sellability_needs_action_attributes']),
4997
+ request_id: PropTypes.string,
4998
+ hs6_code: PropTypes.string,
4999
+ });
5000
+
5001
+ T['io.flow.v0.models.sellability_screening'] = PropTypes.exact({
5002
+ discriminator: PropTypes.oneOf(['sellability_screening']).isRequired,
5003
+ sellability_result: T['io.flow.v0.models.product_sellability_result'],
5004
+ request_id: PropTypes.string.isRequired,
5005
+ status: T['io.flow.v0.enums.sellability_result_status'].isRequired,
5006
+ error_code: T['io.flow.v0.enums.sellability_result_error_code'],
5007
+ error_message: PropTypes.string,
5008
+ });
5009
+
5010
+ T['io.flow.v0.models.product_sellability_result_upserted'] = PropTypes.exact({
5011
+ discriminator: PropTypes.oneOf(['product_sellability_result_upserted']).isRequired,
5012
+ event_id: PropTypes.string.isRequired,
5013
+ timestamp: PropTypes.string.isRequired,
5014
+ organization: PropTypes.string.isRequired,
5015
+ product_sellability_result: T['io.flow.v0.models.product_sellability_result'].isRequired,
5016
+ });
5017
+
4934
5018
  T['io.flow.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
4935
5019
 
4936
5020
  T['io.flow.v0.models.product_taxonomy_value'] = PropTypes.exact({
@@ -5048,6 +5132,11 @@ T['io.flow.v0.models.permitted_route'] = PropTypes.exact({
5048
5132
 
5049
5133
  T['io.flow.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
5050
5134
 
5135
+ T['io.flow.v0.models.statement_status_form'] = PropTypes.exact({
5136
+ code: T['io.flow.v0.enums.statement_status_code'].isRequired,
5137
+ failure_reason: T['io.flow.v0.enums.payout_status_failure_code'],
5138
+ });
5139
+
5051
5140
  T['io.flow.v0.enums.reversal_error_code'] = PropTypes.oneOf([
5052
5141
  'amount_exceeds_balance',
5053
5142
  'authorization_declined',
@@ -5544,6 +5633,18 @@ T['io.flow.v0.models.token_partner_reference'] = PropTypes.exact({
5544
5633
  id: PropTypes.string.isRequired,
5545
5634
  });
5546
5635
 
5636
+ T['io.flow.v0.models.self_billing_agreement'] = PropTypes.exact({
5637
+ effective_at: PropTypes.string.isRequired,
5638
+ expires_at: PropTypes.string.isRequired,
5639
+ });
5640
+
5641
+ T['io.flow.v0.models.tax_registration_detail'] = PropTypes.exact({
5642
+ tax_number: PropTypes.string.isRequired,
5643
+ country: PropTypes.string.isRequired,
5644
+ tax_code: PropTypes.string.isRequired,
5645
+ province: PropTypes.string,
5646
+ });
5647
+
5547
5648
  T['io.flow.v0.models.session_visit'] = PropTypes.exact({
5548
5649
  id: PropTypes.string.isRequired,
5549
5650
  expires_at: PropTypes.string.isRequired,
@@ -5866,13 +5967,6 @@ T['io.flow.v0.models.in_compliance_review'] = PropTypes.exact({
5866
5967
  placeholder: PropTypes.bool,
5867
5968
  });
5868
5969
 
5869
- T['io.flow.v0.enums.organization_status'] = PropTypes.oneOf(['active', 'inactive', 'deactivated', 'provisioned']);
5870
-
5871
- T['io.flow.v0.models.onboarding_organization_reference'] = PropTypes.exact({
5872
- id: PropTypes.string.isRequired,
5873
- status: T['io.flow.v0.enums.organization_status'].isRequired,
5874
- });
5875
-
5876
5970
  T['io.flow.v0.models.onboarding_merchant_time'] = PropTypes.exact({
5877
5971
  hour_of_day: PropTypes.string.isRequired,
5878
5972
  minute_of_hour: PropTypes.string.isRequired,
@@ -5884,18 +5978,6 @@ T['io.flow.v0.models.onboarding_merchant_pickup_window'] = PropTypes.exact({
5884
5978
  to: T['io.flow.v0.models.onboarding_merchant_time'].isRequired,
5885
5979
  });
5886
5980
 
5887
- T['io.flow.tech.onboarding.playground.v0.enums.niall_item_type'] = PropTypes.oneOf(['physical', 'digital']);
5888
-
5889
- T['io.flow.v0.models.monthly_average_volume'] = PropTypes.exact({
5890
- amount: PropTypes.number,
5891
- currency: PropTypes.string,
5892
- });
5893
-
5894
- T['io.flow.v0.models.monthly_average'] = PropTypes.exact({
5895
- volume: T['io.flow.v0.models.monthly_average_volume'],
5896
- number_transactions: PropTypes.number,
5897
- });
5898
-
5899
5981
  T['io.flow.v0.enums.merchant_rejected_reason'] = PropTypes.oneOf([
5900
5982
  'merchant_ubo_is_pep',
5901
5983
  'merchant_catalog_is_unsupportable',
@@ -5914,16 +5996,6 @@ T['io.flow.v0.models.merchant_rejected'] = PropTypes.exact({
5914
5996
  deactivate_at: PropTypes.string,
5915
5997
  });
5916
5998
 
5917
- T['io.flow.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
5918
-
5919
- T['io.flow.v0.models.merchant_info'] = PropTypes.exact({
5920
- legal_name: PropTypes.string,
5921
- country: PropTypes.string.isRequired,
5922
- region: T['io.flow.v0.enums.region_type'],
5923
- region_value: PropTypes.string,
5924
- category_code: PropTypes.string,
5925
- });
5926
-
5927
5999
  T['io.flow.v0.enums.merchant_gift_card_error_code'] = PropTypes.oneOf([
5928
6000
  'invalid',
5929
6001
  'expired',
@@ -6233,11 +6305,6 @@ T['io.flow.v0.models.company'] = PropTypes.exact({
6233
6305
 
6234
6306
  T['io.flow.v0.unions.entity'] = PropTypes.oneOfType([T['io.flow.v0.models.company'], T['io.flow.v0.models.individual']]);
6235
6307
 
6236
- T['io.flow.v0.models.shop'] = PropTypes.exact({
6237
- name: PropTypes.string.isRequired,
6238
- id: PropTypes.string.isRequired,
6239
- });
6240
-
6241
6308
  T['io.flow.v0.models.klarna_payment_method_category'] = PropTypes.exact({
6242
6309
  id: PropTypes.string.isRequired,
6243
6310
  name: PropTypes.string,
@@ -6341,8 +6408,6 @@ T['io.flow.v0.models.import_form'] = PropTypes.exact({
6341
6408
  emails: PropTypes.arrayOf(PropTypes.string),
6342
6409
  });
6343
6410
 
6344
- T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'] = PropTypes.oneOf(['physical', 'digital']);
6345
-
6346
6411
  T['io.flow.v0.models.return_package_ratecard_fee'] = PropTypes.exact({
6347
6412
  discriminator: PropTypes.oneOf(['return_package_ratecard_fee']).isRequired,
6348
6413
  amount: PropTypes.number.isRequired,
@@ -6409,7 +6474,7 @@ T['io.flow.v0.models.needs_action_attributes'] = PropTypes.exact({
6409
6474
  require_msds: PropTypes.bool,
6410
6475
  });
6411
6476
 
6412
- T['io.flow.v0.models.sellablility_region_result'] = PropTypes.exact({
6477
+ T['io.flow.v0.models.sellability_region_result'] = PropTypes.exact({
6413
6478
  type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
6414
6479
  regions: PropTypes.arrayOf(PropTypes.string).isRequired,
6415
6480
  });
@@ -6420,12 +6485,13 @@ T['io.flow.v0.models.product_sellability'] = PropTypes.exact({
6420
6485
  product_id: PropTypes.string,
6421
6486
  request_id: PropTypes.string.isRequired,
6422
6487
  hs6_code: PropTypes.string.isRequired,
6423
- restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']).isRequired,
6488
+ restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellability_region_result']).isRequired,
6424
6489
  });
6425
6490
 
6426
6491
  T['io.flow.v0.unions.sellability_response'] = PropTypes.oneOfType([
6427
6492
  T['io.flow.v0.models.product_sellability'],
6428
6493
  T['io.flow.v0.models.sellability_error'],
6494
+ T['io.flow.v0.models.sellability_screening'],
6429
6495
  ]);
6430
6496
 
6431
6497
  T['io.flow.v0.enums.review_status'] = PropTypes.oneOf(['high_risk_in_review', 'low_risk_in_review', 'reviewed']);
@@ -6448,7 +6514,7 @@ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
6448
6514
  updated_by: PropTypes.string,
6449
6515
  product_restriction_id: PropTypes.string,
6450
6516
  hs_code: PropTypes.string,
6451
- restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']),
6517
+ restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.v0.models.sellability_region_result']),
6452
6518
  needs_action_attributes: PropTypes.arrayOf(T['io.flow.v0.models.needs_action_attributes']),
6453
6519
  });
6454
6520
 
@@ -6492,7 +6558,20 @@ T['io.flow.v0.models.ge_catalog_item_input'] = PropTypes.exact({
6492
6558
  });
6493
6559
 
6494
6560
  T['io.flow.v0.enums.ge_catalog_item_ingestion_response'] = PropTypes.oneOf(['success', 'failure']);
6561
+ T['io.flow.v0.enums.restriction_environment'] = PropTypes.oneOf(['sandbox', 'production', 'qa']);
6495
6562
  T['io.flow.v0.enums.ge_event_type'] = PropTypes.oneOf(['restriction_result', 'ingestion_result']);
6563
+
6564
+ T['io.flow.v0.models.ge_catalog_item_ingestion_result'] = PropTypes.exact({
6565
+ discriminator: PropTypes.oneOf(['ge_catalog_item_ingestion_result']).isRequired,
6566
+ event_id: PropTypes.string.isRequired,
6567
+ event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
6568
+ environment: T['io.flow.v0.enums.restriction_environment'].isRequired,
6569
+ timestamp: PropTypes.string.isRequired,
6570
+ source: PropTypes.string.isRequired,
6571
+ response: T['io.flow.v0.enums.ge_catalog_item_ingestion_response'].isRequired,
6572
+ message: PropTypes.string.isRequired,
6573
+ });
6574
+
6496
6575
  T['io.flow.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
6497
6576
 
6498
6577
  T['io.flow.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
@@ -7691,22 +7770,87 @@ T['io.flow.v0.models.shipping_configuration_item_availability_deleted'] = PropTy
7691
7770
 
7692
7771
  T['io.flow.v0.enums.consumer_invoice_customer_type'] = PropTypes.oneOf(['business_eu_verified', 'business_non_verified', 'individual']);
7693
7772
 
7694
- T['io.flow.v0.models.card_payment_source_form'] = PropTypes.exact({
7695
- discriminator: PropTypes.oneOf(['card_payment_source_form']).isRequired,
7696
- customer_number: PropTypes.string.isRequired,
7697
- card_id: PropTypes.string.isRequired,
7773
+ T['io.flow.v0.models.monthly_average_volume'] = PropTypes.exact({
7774
+ amount: PropTypes.number,
7775
+ currency: PropTypes.string,
7698
7776
  });
7699
7777
 
7700
- T['io.flow.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
7701
- T['io.flow.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.v0.models.device_details_browser']]);
7778
+ T['io.flow.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
7779
+ T['io.flow.v0.enums.organization_status'] = PropTypes.oneOf(['active', 'inactive', 'deactivated', 'provisioned']);
7702
7780
 
7703
- T['io.flow.v0.models.order_options'] = PropTypes.exact({
7704
- storage: T['io.flow.v0.enums.order_storage'].isRequired,
7781
+ T['io.flow.v0.models.shop'] = PropTypes.exact({
7782
+ name: PropTypes.string.isRequired,
7783
+ id: PropTypes.string.isRequired,
7705
7784
  });
7706
7785
 
7707
- T['io.flow.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
7786
+ T['io.flow.v0.models.monthly_average'] = PropTypes.exact({
7787
+ volume: T['io.flow.v0.models.monthly_average_volume'],
7788
+ number_transactions: PropTypes.number,
7789
+ });
7708
7790
 
7709
- T['io.flow.v0.models.order_builder_delivered_duty_form'] = PropTypes.exact({
7791
+ T['io.flow.v0.models.operations_contact'] = PropTypes.exact({
7792
+ company: PropTypes.string,
7793
+ email: PropTypes.string,
7794
+ phone: PropTypes.string,
7795
+ });
7796
+
7797
+ T['io.flow.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
7798
+ name: PropTypes.string.isRequired,
7799
+ dob: PropTypes.string.isRequired,
7800
+ });
7801
+
7802
+ T['io.flow.v0.models.indirect_tax'] = PropTypes.exact({
7803
+ number: PropTypes.string,
7804
+ id: PropTypes.string,
7805
+ });
7806
+
7807
+ T['io.flow.v0.models.merchant_info'] = PropTypes.exact({
7808
+ legal_name: PropTypes.string,
7809
+ country: PropTypes.string.isRequired,
7810
+ region: T['io.flow.v0.enums.region_type'],
7811
+ region_value: PropTypes.string,
7812
+ category_code: PropTypes.string,
7813
+ description: PropTypes.string,
7814
+ });
7815
+
7816
+ T['io.flow.v0.enums.onboarding_application_status'] = PropTypes.oneOf(['to_do', 'in_progress', 'on_hold', 'rejected', 'accepted']);
7817
+
7818
+ T['io.flow.v0.models.shopify_merchant_application_put_form'] = PropTypes.exact({
7819
+ discriminator: PropTypes.oneOf(['shopify_merchant_application_put_form']).isRequired,
7820
+ status: T['io.flow.v0.enums.onboarding_application_status'],
7821
+ });
7822
+
7823
+ T['io.flow.v0.models.common_merchant_application_put_form'] = PropTypes.exact({
7824
+ discriminator: PropTypes.oneOf(['common_merchant_application_put_form']).isRequired,
7825
+ status: T['io.flow.v0.enums.onboarding_application_status'],
7826
+ });
7827
+
7828
+ T['io.flow.v0.unions.merchant_application_put_form'] = PropTypes.oneOfType([
7829
+ T['io.flow.v0.models.shopify_merchant_application_put_form'],
7830
+ T['io.flow.v0.models.common_merchant_application_put_form'],
7831
+ ]);
7832
+
7833
+ T['io.flow.v0.models.onboarding_organization_reference'] = PropTypes.exact({
7834
+ id: PropTypes.string.isRequired,
7835
+ status: T['io.flow.v0.enums.organization_status'].isRequired,
7836
+ });
7837
+
7838
+ T['io.flow.v0.models.card_payment_source_form'] = PropTypes.exact({
7839
+ discriminator: PropTypes.oneOf(['card_payment_source_form']).isRequired,
7840
+ customer_number: PropTypes.string.isRequired,
7841
+ card_id: PropTypes.string.isRequired,
7842
+ });
7843
+
7844
+ T['io.flow.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
7845
+ T['io.flow.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.v0.models.device_details_browser']]);
7846
+
7847
+ T['io.flow.v0.models.order_options'] = PropTypes.exact({
7848
+ storage: T['io.flow.v0.enums.order_storage'].isRequired,
7849
+ });
7850
+
7851
+ T['io.flow.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
7852
+
7853
+ T['io.flow.v0.models.order_builder_delivered_duty_form'] = PropTypes.exact({
7710
7854
  delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
7711
7855
  });
7712
7856
 
@@ -8023,6 +8167,8 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
8023
8167
  'merchant_refund',
8024
8168
  'ge_revenue_share',
8025
8169
  'merchant_fee',
8170
+ 'b2b_tax',
8171
+ 'b2b_tax_refund',
8026
8172
  ]);
8027
8173
 
8028
8174
  T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
@@ -8055,6 +8201,11 @@ T['io.flow.v0.models.settlement_no_payout'] = PropTypes.exact({
8055
8201
 
8056
8202
  T['io.flow.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
8057
8203
 
8204
+ T['io.flow.v0.models.external_order_summary'] = PropTypes.exact({
8205
+ id: PropTypes.string.isRequired,
8206
+ edit_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
8207
+ });
8208
+
8058
8209
  T['io.flow.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
8059
8210
  code: T['io.flow.v0.enums.channel_shopify_order_state_reason_code'].isRequired,
8060
8211
  message: PropTypes.string.isRequired,
@@ -8062,6 +8213,14 @@ T['io.flow.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
8062
8213
 
8063
8214
  T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'] = PropTypes.oneOf(['accepted', 'rejected', 'review', 'edit_review', 'edit_accepted']);
8064
8215
 
8216
+ T['io.flow.channel.shopify.v0.models.channel_shopify_order_state'] = PropTypes.exact({
8217
+ id: PropTypes.string.isRequired,
8218
+ shopify_order_summary: T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'].isRequired,
8219
+ status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
8220
+ reasons: PropTypes.arrayOf(T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason']),
8221
+ external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
8222
+ });
8223
+
8065
8224
  T['io.flow.channel.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact({
8066
8225
  status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
8067
8226
  });
@@ -8082,6 +8241,7 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exa
8082
8241
  order_updated_at: PropTypes.string,
8083
8242
  order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
8084
8243
  payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
8244
+ external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
8085
8245
  });
8086
8246
 
8087
8247
  T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
@@ -8099,6 +8259,7 @@ T['io.flow.v0.models.channel_shopify_order_state'] = PropTypes.exact({
8099
8259
  shopify_order_summary: T['io.flow.v0.models.channel_shopify_order_summary'].isRequired,
8100
8260
  status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
8101
8261
  reasons: PropTypes.arrayOf(T['io.flow.v0.models.channel_shopify_order_state_reason']),
8262
+ external_order_summary: T['io.flow.v0.models.external_order_summary'],
8102
8263
  });
8103
8264
 
8104
8265
  T['io.flow.v0.models.channel_shopify_order_state_upserted'] = PropTypes.exact({
@@ -8403,17 +8564,6 @@ T['io.flow.v0.models.organization_authorization'] = PropTypes.exact({
8403
8564
  environment: T['io.flow.v0.enums.environment'].isRequired,
8404
8565
  });
8405
8566
 
8406
- T['io.flow.v0.models.ge_catalog_item_ingestion_result'] = PropTypes.exact({
8407
- discriminator: PropTypes.oneOf(['ge_catalog_item_ingestion_result']).isRequired,
8408
- event_id: PropTypes.string.isRequired,
8409
- event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
8410
- environment: T['io.flow.v0.enums.environment'].isRequired,
8411
- timestamp: PropTypes.string.isRequired,
8412
- source: PropTypes.string.isRequired,
8413
- response: T['io.flow.v0.enums.ge_catalog_item_ingestion_response'].isRequired,
8414
- message: PropTypes.string.isRequired,
8415
- });
8416
-
8417
8567
  T['io.flow.v0.models.channel'] = PropTypes.exact({
8418
8568
  id: PropTypes.string.isRequired,
8419
8569
  name: PropTypes.string.isRequired,
@@ -9417,13 +9567,6 @@ T['io.flow.v0.unions.bank_account_form'] = PropTypes.oneOfType([
9417
9567
  ]);
9418
9568
 
9419
9569
  T['io.flow.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
9420
-
9421
- T['io.flow.v0.models.consumer_invoice_order_summary'] = PropTypes.exact({
9422
- id: PropTypes.string.isRequired,
9423
- number: PropTypes.string.isRequired,
9424
- submitted_at: PropTypes.string.isRequired,
9425
- });
9426
-
9427
9570
  T['io.flow.v0.enums.consumer_invoice_document_type'] = PropTypes.oneOf(['pdf']);
9428
9571
 
9429
9572
  T['io.flow.v0.models.entity_identifier'] = PropTypes.exact({
@@ -9435,6 +9578,8 @@ T['io.flow.v0.models.entity_identifier'] = PropTypes.exact({
9435
9578
  T['io.flow.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
9436
9579
  number: PropTypes.string.isRequired,
9437
9580
  country: PropTypes.string.isRequired,
9581
+ province_number: PropTypes.string,
9582
+ province: PropTypes.string,
9438
9583
  });
9439
9584
 
9440
9585
  T['io.flow.v0.models.organization_reference'] = PropTypes.exact({
@@ -9596,6 +9741,12 @@ T['io.flow.v0.models.channel_organization_upserted'] = PropTypes.exact({
9596
9741
  channel_organization: T['io.flow.v0.models.channel_organization'].isRequired,
9597
9742
  });
9598
9743
 
9744
+ T['io.flow.v0.models.consumer_invoice_order_summary'] = PropTypes.exact({
9745
+ id: PropTypes.string.isRequired,
9746
+ number: PropTypes.string.isRequired,
9747
+ submitted_at: PropTypes.string.isRequired,
9748
+ });
9749
+
9599
9750
  T['io.flow.v0.enums.b2b_invoice_type'] = PropTypes.oneOf(['self_bill_invoice', 'invoice']);
9600
9751
 
9601
9752
  T['io.flow.v0.models.consumer_invoice_document'] = PropTypes.exact({
@@ -10218,7 +10369,7 @@ T['io.flow.v0.models.ge_product_restriction_result_upsert'] = PropTypes.exact({
10218
10369
  organization: PropTypes.string.isRequired,
10219
10370
  event_id: PropTypes.string.isRequired,
10220
10371
  event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
10221
- environment: T['io.flow.v0.enums.environment'].isRequired,
10372
+ environment: T['io.flow.v0.enums.restriction_environment'].isRequired,
10222
10373
  timestamp: PropTypes.string.isRequired,
10223
10374
  operation: T['io.flow.v0.enums.change_type'].isRequired,
10224
10375
  ge_product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
@@ -10229,7 +10380,7 @@ T['io.flow.v0.models.ge_product_restriction_result_delete'] = PropTypes.exact({
10229
10380
  organization: PropTypes.string.isRequired,
10230
10381
  event_id: PropTypes.string.isRequired,
10231
10382
  event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
10232
- environment: T['io.flow.v0.enums.environment'].isRequired,
10383
+ environment: T['io.flow.v0.enums.restriction_environment'].isRequired,
10233
10384
  timestamp: PropTypes.string.isRequired,
10234
10385
  id: PropTypes.string.isRequired,
10235
10386
  operation: T['io.flow.v0.enums.change_type'].isRequired,
@@ -10329,7 +10480,7 @@ T['io.flow.v0.models.attribute_upserted_v2'] = PropTypes.exact({
10329
10480
  attribute: T['io.flow.v0.models.attribute'].isRequired,
10330
10481
  });
10331
10482
 
10332
- T['io.flow.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv']);
10483
+ T['io.flow.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv', 'pdf']);
10333
10484
 
10334
10485
  T['io.flow.v0.models.attachment'] = PropTypes.exact({
10335
10486
  type: T['io.flow.v0.enums.statement_attachment_type'].isRequired,
@@ -10386,9 +10537,6 @@ T['io.flow.v0.models.channel_statement_deleted'] = PropTypes.exact({
10386
10537
  channel_statement: T['io.flow.v0.models.channel_statement'].isRequired,
10387
10538
  });
10388
10539
 
10389
- T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
10390
- T['io.flow.tech.onboarding.playground.v0.enums.anirban_item_type'] = PropTypes.oneOf(['physical', 'digital']);
10391
-
10392
10540
  T['io.flow.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
10393
10541
  'adjustment',
10394
10542
  'subtotal',
@@ -11002,206 +11150,6 @@ T['io.flow.v0.models.allocation_order_summary'] = PropTypes.exact({
11002
11150
  submitted_at: PropTypes.string,
11003
11151
  });
11004
11152
 
11005
- T['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'] = PropTypes.oneOf(['physical', 'digital']);
11006
-
11007
- T['io.flow.common.v0.models.price'] = PropTypes.exact({
11008
- amount: PropTypes.number.isRequired,
11009
- currency: PropTypes.string.isRequired,
11010
- label: PropTypes.string.isRequired,
11011
- });
11012
-
11013
- T['io.flow.tech.onboarding.playground.v0.models.sarvesh_item_form'] = PropTypes.exact({
11014
- number: PropTypes.string.isRequired,
11015
- amount: T['io.flow.common.v0.models.price'].isRequired,
11016
- description: PropTypes.string,
11017
- type: T['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'].isRequired,
11018
- added_on: PropTypes.string.isRequired,
11019
- });
11020
-
11021
- T['io.flow.tech.onboarding.playground.v0.models.rohan_item_form'] = PropTypes.exact({
11022
- number: PropTypes.string.isRequired,
11023
- amount: T['io.flow.common.v0.models.price'].isRequired,
11024
- description: PropTypes.string,
11025
- type: T['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'].isRequired,
11026
- added_on: PropTypes.string.isRequired,
11027
- });
11028
-
11029
- T['io.flow.tech.onboarding.playground.v0.models.prateek_item_form'] = PropTypes.exact({
11030
- number: PropTypes.string.isRequired,
11031
- amount: T['io.flow.common.v0.models.price'].isRequired,
11032
- description: PropTypes.string,
11033
- type: T['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'].isRequired,
11034
- added_on: PropTypes.string.isRequired,
11035
- });
11036
-
11037
- T['io.flow.tech.onboarding.playground.v0.models.prateek_item'] = PropTypes.exact({
11038
- id: PropTypes.string.isRequired,
11039
- number: PropTypes.string.isRequired,
11040
- amount: T['io.flow.common.v0.models.price'].isRequired,
11041
- description: PropTypes.string,
11042
- type: T['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'].isRequired,
11043
- added_on: PropTypes.string.isRequired,
11044
- });
11045
-
11046
- T['io.flow.tech.onboarding.playground.v0.models.niall_item_form'] = PropTypes.exact({
11047
- number: PropTypes.string.isRequired,
11048
- amount: T['io.flow.common.v0.models.price'].isRequired,
11049
- description: PropTypes.string,
11050
- type: T['io.flow.tech.onboarding.playground.v0.enums.niall_item_type'].isRequired,
11051
- added_on: PropTypes.string.isRequired,
11052
- });
11053
-
11054
- T['io.flow.tech.onboarding.playground.v0.models.hosein_item_form'] = PropTypes.exact({
11055
- number: PropTypes.string.isRequired,
11056
- amount: T['io.flow.common.v0.models.price'].isRequired,
11057
- description: PropTypes.string,
11058
- type: T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'].isRequired,
11059
- added_on: PropTypes.string.isRequired,
11060
- });
11061
-
11062
- T['io.flow.tech.onboarding.playground.v0.models.ansh_item_form'] = PropTypes.exact({
11063
- number: PropTypes.string.isRequired,
11064
- amount: T['io.flow.common.v0.models.price'].isRequired,
11065
- description: PropTypes.string,
11066
- type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
11067
- added_on: PropTypes.string.isRequired,
11068
- });
11069
-
11070
- T['io.flow.tech.onboarding.playground.v0.models.anirban_item_form'] = PropTypes.exact({
11071
- number: PropTypes.string.isRequired,
11072
- amount: T['io.flow.common.v0.models.price'].isRequired,
11073
- description: PropTypes.string,
11074
- type: T['io.flow.tech.onboarding.playground.v0.enums.anirban_item_type'].isRequired,
11075
- added_on: PropTypes.string.isRequired,
11076
- });
11077
-
11078
- T['io.flow.tech.onboarding.playground.v0.models.aldo_item_form'] = PropTypes.exact({
11079
- number: PropTypes.string.isRequired,
11080
- amount: T['io.flow.common.v0.models.price'].isRequired,
11081
- description: PropTypes.string,
11082
- type: T['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'].isRequired,
11083
- added_on: PropTypes.string.isRequired,
11084
- });
11085
-
11086
- T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
11087
- currency: PropTypes.string.isRequired,
11088
- amount: PropTypes.number.isRequired,
11089
- label: PropTypes.string.isRequired,
11090
- base: T['io.flow.common.v0.models.price'],
11091
- });
11092
-
11093
- T['io.flow.tech.onboarding.playground.v0.models.sarvesh_item'] = PropTypes.exact({
11094
- id: PropTypes.string.isRequired,
11095
- number: PropTypes.string.isRequired,
11096
- amount: T['io.flow.common.v0.models.price'].isRequired,
11097
- description: PropTypes.string,
11098
- type: T['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'].isRequired,
11099
- added_on: PropTypes.string.isRequired,
11100
- });
11101
-
11102
- T['io.flow.v0.models.sarvesh_item_upserted'] = PropTypes.exact({
11103
- discriminator: PropTypes.oneOf(['sarvesh_item_upserted']).isRequired,
11104
- event_id: PropTypes.string.isRequired,
11105
- timestamp: PropTypes.string.isRequired,
11106
- item: T['io.flow.tech.onboarding.playground.v0.models.sarvesh_item'].isRequired,
11107
- });
11108
-
11109
- T['io.flow.tech.onboarding.playground.v0.models.rohan_item'] = PropTypes.exact({
11110
- id: PropTypes.string.isRequired,
11111
- number: PropTypes.string.isRequired,
11112
- amount: T['io.flow.common.v0.models.price'].isRequired,
11113
- description: PropTypes.string,
11114
- type: T['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'].isRequired,
11115
- added_on: PropTypes.string.isRequired,
11116
- });
11117
-
11118
- T['io.flow.v0.models.rohan_item_upserted'] = PropTypes.exact({
11119
- discriminator: PropTypes.oneOf(['rohan_item_upserted']).isRequired,
11120
- event_id: PropTypes.string.isRequired,
11121
- timestamp: PropTypes.string.isRequired,
11122
- item: T['io.flow.tech.onboarding.playground.v0.models.rohan_item'].isRequired,
11123
- });
11124
-
11125
- T['io.flow.tech.onboarding.playground.v0.models.niall_item'] = PropTypes.exact({
11126
- id: PropTypes.string.isRequired,
11127
- number: PropTypes.string.isRequired,
11128
- amount: T['io.flow.common.v0.models.price'].isRequired,
11129
- description: PropTypes.string,
11130
- type: T['io.flow.tech.onboarding.playground.v0.enums.niall_item_type'].isRequired,
11131
- added_on: PropTypes.string.isRequired,
11132
- });
11133
-
11134
- T['io.flow.v0.models.niall_item_upserted'] = PropTypes.exact({
11135
- discriminator: PropTypes.oneOf(['niall_item_upserted']).isRequired,
11136
- event_id: PropTypes.string.isRequired,
11137
- timestamp: PropTypes.string.isRequired,
11138
- item: T['io.flow.tech.onboarding.playground.v0.models.niall_item'].isRequired,
11139
- });
11140
-
11141
- T['io.flow.tech.onboarding.playground.v0.models.hosein_item'] = PropTypes.exact({
11142
- id: PropTypes.string.isRequired,
11143
- number: PropTypes.string.isRequired,
11144
- amount: T['io.flow.common.v0.models.price'].isRequired,
11145
- description: PropTypes.string,
11146
- type: T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'].isRequired,
11147
- added_on: PropTypes.string.isRequired,
11148
- });
11149
-
11150
- T['io.flow.v0.models.hosein_item_upserted'] = PropTypes.exact({
11151
- discriminator: PropTypes.oneOf(['hosein_item_upserted']).isRequired,
11152
- event_id: PropTypes.string.isRequired,
11153
- timestamp: PropTypes.string.isRequired,
11154
- item: T['io.flow.tech.onboarding.playground.v0.models.hosein_item'].isRequired,
11155
- });
11156
-
11157
- T['io.flow.tech.onboarding.playground.v0.models.ansh_item'] = PropTypes.exact({
11158
- id: PropTypes.string.isRequired,
11159
- number: PropTypes.string.isRequired,
11160
- amount: T['io.flow.common.v0.models.price'].isRequired,
11161
- description: PropTypes.string,
11162
- type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
11163
- added_on: PropTypes.string.isRequired,
11164
- });
11165
-
11166
- T['io.flow.v0.models.ansh_item_upserted'] = PropTypes.exact({
11167
- discriminator: PropTypes.oneOf(['ansh_item_upserted']).isRequired,
11168
- event_id: PropTypes.string.isRequired,
11169
- timestamp: PropTypes.string.isRequired,
11170
- item: T['io.flow.tech.onboarding.playground.v0.models.ansh_item'].isRequired,
11171
- });
11172
-
11173
- T['io.flow.tech.onboarding.playground.v0.models.anirban_item'] = PropTypes.exact({
11174
- id: PropTypes.string.isRequired,
11175
- number: PropTypes.string.isRequired,
11176
- amount: T['io.flow.common.v0.models.price'].isRequired,
11177
- description: PropTypes.string,
11178
- type: T['io.flow.tech.onboarding.playground.v0.enums.anirban_item_type'].isRequired,
11179
- added_on: PropTypes.string.isRequired,
11180
- });
11181
-
11182
- T['io.flow.v0.models.anirban_item_upserted'] = PropTypes.exact({
11183
- discriminator: PropTypes.oneOf(['anirban_item_upserted']).isRequired,
11184
- event_id: PropTypes.string.isRequired,
11185
- timestamp: PropTypes.string.isRequired,
11186
- item: T['io.flow.tech.onboarding.playground.v0.models.anirban_item'].isRequired,
11187
- });
11188
-
11189
- T['io.flow.tech.onboarding.playground.v0.models.aldo_item'] = PropTypes.exact({
11190
- id: PropTypes.string.isRequired,
11191
- number: PropTypes.string.isRequired,
11192
- amount: T['io.flow.common.v0.models.price'].isRequired,
11193
- description: PropTypes.string,
11194
- type: T['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'].isRequired,
11195
- added_on: PropTypes.string.isRequired,
11196
- });
11197
-
11198
- T['io.flow.v0.models.aldo_item_upserted'] = PropTypes.exact({
11199
- discriminator: PropTypes.oneOf(['aldo_item_upserted']).isRequired,
11200
- event_id: PropTypes.string.isRequired,
11201
- timestamp: PropTypes.string.isRequired,
11202
- item: T['io.flow.tech.onboarding.playground.v0.models.aldo_item'].isRequired,
11203
- });
11204
-
11205
11153
  T['io.flow.v0.models.adyen_challenge_shopper_data'] = PropTypes.exact({
11206
11154
  discriminator: PropTypes.oneOf(['adyen_challenge_shopper_data']).isRequired,
11207
11155
  challenge_token: PropTypes.string.isRequired,
@@ -11365,6 +11313,29 @@ T['io.flow.v0.models.address'] = PropTypes.exact({
11365
11313
  longitude: PropTypes.string,
11366
11314
  });
11367
11315
 
11316
+ T['io.flow.v0.models.tracking_label_event_v2'] = PropTypes.exact({
11317
+ id: PropTypes.string.isRequired,
11318
+ carrier_id: PropTypes.string.isRequired,
11319
+ carrier_tracking_number: PropTypes.string.isRequired,
11320
+ carrier_tracking_url: PropTypes.string,
11321
+ label_id: PropTypes.string.isRequired,
11322
+ order_number: PropTypes.string,
11323
+ status: T['io.flow.v0.enums.tracking_status'].isRequired,
11324
+ substatus: T['io.flow.v0.enums.substatus_code'],
11325
+ carrier_timestamp: PropTypes.string.isRequired,
11326
+ description: PropTypes.string,
11327
+ delivery_estimate: PropTypes.string,
11328
+ address: T['io.flow.v0.models.address'],
11329
+ });
11330
+
11331
+ T['io.flow.v0.models.tracking_label_event_upserted_v2'] = PropTypes.exact({
11332
+ discriminator: PropTypes.oneOf(['tracking_label_event_upserted_v2']).isRequired,
11333
+ event_id: PropTypes.string.isRequired,
11334
+ timestamp: PropTypes.string.isRequired,
11335
+ organization: PropTypes.string.isRequired,
11336
+ tracking_label_event: T['io.flow.v0.models.tracking_label_event_v2'].isRequired,
11337
+ });
11338
+
11368
11339
  T['io.flow.v0.models.tracking_label_event_upserted'] = PropTypes.exact({
11369
11340
  discriminator: PropTypes.oneOf(['tracking_label_event_upserted']).isRequired,
11370
11341
  event_id: PropTypes.string.isRequired,
@@ -11466,6 +11437,17 @@ T['io.flow.v0.models.harmonized_landed_cost_upserted'] = PropTypes.exact({
11466
11437
  landed_cost: T['io.flow.v0.models.harmonized_landed_cost'].isRequired,
11467
11438
  });
11468
11439
 
11440
+ T['io.flow.v0.models.merchant_onboarding_beneficiary_details'] = PropTypes.exact({
11441
+ name: PropTypes.string,
11442
+ address: T['io.flow.v0.models.address'],
11443
+ phone: PropTypes.string,
11444
+ email: PropTypes.string,
11445
+ bank_account_number: PropTypes.string,
11446
+ bank_routing_number: PropTypes.string,
11447
+ bank_name: PropTypes.string,
11448
+ bank_address: T['io.flow.v0.models.address'],
11449
+ });
11450
+
11469
11451
  T['io.flow.v0.models.consumer_invoice_center_reference'] = PropTypes.exact({
11470
11452
  id: PropTypes.string.isRequired,
11471
11453
  key: PropTypes.string.isRequired,
@@ -11656,6 +11638,20 @@ T['io.flow.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
11656
11638
  itemized_estimate: T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'],
11657
11639
  });
11658
11640
 
11641
+ T['io.flow.v0.models.sellability_screening_form'] = PropTypes.exact({
11642
+ discriminator: PropTypes.oneOf(['sellability_screening_form']).isRequired,
11643
+ merchant_id: PropTypes.string.isRequired,
11644
+ product_id: PropTypes.string.isRequired,
11645
+ name: PropTypes.string.isRequired,
11646
+ price: T['io.flow.v0.models.money'].isRequired,
11647
+ description: PropTypes.string.isRequired,
11648
+ taxonomy_category: T['io.flow.v0.models.product_taxonomy_category'].isRequired,
11649
+ mode: T['io.flow.v0.enums.sellability_screening_mode'].isRequired,
11650
+ catalog_size: PropTypes.number,
11651
+ relative_ranking: PropTypes.number,
11652
+ dry_run: PropTypes.bool,
11653
+ });
11654
+
11659
11655
  T['io.flow.v0.models.security_service_fee'] = PropTypes.exact({
11660
11656
  discriminator: PropTypes.oneOf(['security_service_fee']).isRequired,
11661
11657
  amount: T['io.flow.v0.models.money'].isRequired,
@@ -11715,6 +11711,7 @@ T['io.flow.v0.models.remote_area_ratecard_fee'] = PropTypes.exact({
11715
11711
  });
11716
11712
 
11717
11713
  T['io.flow.v0.models.product_sellability_form'] = PropTypes.exact({
11714
+ discriminator: PropTypes.oneOf(['product_sellability_form']).isRequired,
11718
11715
  shop_id: PropTypes.string.isRequired,
11719
11716
  product_id: PropTypes.string,
11720
11717
  name: PropTypes.string.isRequired,
@@ -11725,6 +11722,11 @@ T['io.flow.v0.models.product_sellability_form'] = PropTypes.exact({
11725
11722
  dry_run: PropTypes.bool,
11726
11723
  });
11727
11724
 
11725
+ T['io.flow.v0.unions.sellability_request'] = PropTypes.oneOfType([
11726
+ T['io.flow.v0.models.product_sellability_form'],
11727
+ T['io.flow.v0.models.sellability_screening_form'],
11728
+ ]);
11729
+
11728
11730
  T['io.flow.v0.models.price_source_provided'] = PropTypes.exact({
11729
11731
  discriminator: PropTypes.oneOf(['provided']).isRequired,
11730
11732
  price: T['io.flow.v0.models.money'].isRequired,
@@ -11799,38 +11801,6 @@ T['io.flow.v0.models.invoice_tax_line'] = PropTypes.exact({
11799
11801
  tax_breakdown: PropTypes.arrayOf(T['io.flow.v0.models.tax_breakdown']).isRequired,
11800
11802
  });
11801
11803
 
11802
- T['io.flow.v0.models.b2b_credit_memo'] = PropTypes.exact({
11803
- id: PropTypes.string.isRequired,
11804
- number: PropTypes.string.isRequired,
11805
- buyer: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
11806
- seller: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
11807
- status: T['io.flow.v0.enums.consumer_invoice_status'].isRequired,
11808
- date: PropTypes.string.isRequired,
11809
- key: PropTypes.string.isRequired,
11810
- invoice: T['io.flow.v0.models.b2b_invoice_reference'].isRequired,
11811
- lines: PropTypes.arrayOf(T['io.flow.v0.unions.consumer_invoice_line']).isRequired,
11812
- tax_lines: PropTypes.arrayOf(T['io.flow.v0.models.invoice_tax_line']),
11813
- documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
11814
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
11815
- b2b_invoice_type: T['io.flow.v0.enums.b2b_invoice_type'].isRequired,
11816
- });
11817
-
11818
- T['io.flow.v0.models.b2b_credit_memo_upserted'] = PropTypes.exact({
11819
- discriminator: PropTypes.oneOf(['b2b_credit_memo_upserted']).isRequired,
11820
- event_id: PropTypes.string.isRequired,
11821
- timestamp: PropTypes.string.isRequired,
11822
- organization: PropTypes.string.isRequired,
11823
- b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
11824
- });
11825
-
11826
- T['io.flow.v0.models.b2b_credit_memo_deleted'] = PropTypes.exact({
11827
- discriminator: PropTypes.oneOf(['b2b_credit_memo_deleted']).isRequired,
11828
- event_id: PropTypes.string.isRequired,
11829
- timestamp: PropTypes.string.isRequired,
11830
- organization: PropTypes.string.isRequired,
11831
- b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
11832
- });
11833
-
11834
11804
  T['io.flow.v0.models.inbound_carton_fee'] = PropTypes.exact({
11835
11805
  discriminator: PropTypes.oneOf(['inbound_carton_fee']).isRequired,
11836
11806
  amount: T['io.flow.v0.models.money'].isRequired,
@@ -12102,6 +12072,41 @@ T['io.flow.v0.models.capture_deleted'] = PropTypes.exact({
12102
12072
  capture: T['io.flow.v0.models.capture'].isRequired,
12103
12073
  });
12104
12074
 
12075
+ T['io.flow.v0.models.b2b_credit_memo'] = PropTypes.exact({
12076
+ id: PropTypes.string.isRequired,
12077
+ number: PropTypes.string.isRequired,
12078
+ buyer: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
12079
+ seller: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
12080
+ status: T['io.flow.v0.enums.consumer_invoice_status'].isRequired,
12081
+ date: PropTypes.string.isRequired,
12082
+ key: PropTypes.string.isRequired,
12083
+ invoice: T['io.flow.v0.models.b2b_invoice_reference'].isRequired,
12084
+ lines: PropTypes.arrayOf(T['io.flow.v0.unions.consumer_invoice_line']).isRequired,
12085
+ tax_lines: PropTypes.arrayOf(T['io.flow.v0.models.invoice_tax_line']),
12086
+ tax: T['io.flow.v0.models.money'],
12087
+ documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
12088
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
12089
+ b2b_invoice_type: T['io.flow.v0.enums.b2b_invoice_type'].isRequired,
12090
+ center: T['io.flow.v0.models.consumer_invoice_center_reference'],
12091
+ order: T['io.flow.v0.models.consumer_invoice_order_summary'],
12092
+ });
12093
+
12094
+ T['io.flow.v0.models.b2b_credit_memo_upserted'] = PropTypes.exact({
12095
+ discriminator: PropTypes.oneOf(['b2b_credit_memo_upserted']).isRequired,
12096
+ event_id: PropTypes.string.isRequired,
12097
+ timestamp: PropTypes.string.isRequired,
12098
+ organization: PropTypes.string.isRequired,
12099
+ b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
12100
+ });
12101
+
12102
+ T['io.flow.v0.models.b2b_credit_memo_deleted'] = PropTypes.exact({
12103
+ discriminator: PropTypes.oneOf(['b2b_credit_memo_deleted']).isRequired,
12104
+ event_id: PropTypes.string.isRequired,
12105
+ timestamp: PropTypes.string.isRequired,
12106
+ organization: PropTypes.string.isRequired,
12107
+ b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
12108
+ });
12109
+
12105
12110
  T['io.flow.v0.models.amount_margin_form'] = PropTypes.exact({
12106
12111
  discriminator: PropTypes.oneOf(['amount_margin_form']).isRequired,
12107
12112
  margin: T['io.flow.v0.models.money'].isRequired,
@@ -12534,6 +12539,7 @@ T['io.flow.v0.models.emergency_situation_surcharge_service_fee'] = PropTypes.exa
12534
12539
  amount: T['io.flow.v0.models.money'].isRequired,
12535
12540
  origin_region: T['io.flow.v0.models.ratecard_region_reference'],
12536
12541
  destination_region: T['io.flow.v0.models.ratecard_region_reference'],
12542
+ destination_regions: PropTypes.arrayOf(T['io.flow.v0.models.ratecard_region_reference']),
12537
12543
  interval_unit: T['io.flow.v0.enums.unit_of_measurement'],
12538
12544
  });
12539
12545
 
@@ -12566,6 +12572,27 @@ T['io.flow.v0.models.tax_duty_quote_form'] = PropTypes.exact({
12566
12572
  includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']),
12567
12573
  });
12568
12574
 
12575
+ T['io.flow.v0.models.shipping_rate_estimate_available'] = PropTypes.exact({
12576
+ service: T['io.flow.v0.models.ratecard_service_summary'].isRequired,
12577
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
12578
+ shipment_window: T['io.flow.v0.models.shipment_window'].isRequired,
12579
+ total_amount: T['io.flow.v0.models.money'].isRequired,
12580
+ base_amount: T['io.flow.v0.models.money'].isRequired,
12581
+ fees: PropTypes.arrayOf(T['io.flow.v0.unions.ratecard_fee']).isRequired,
12582
+ dimensional_weight: T['io.flow.v0.models.measurement'],
12583
+ gravitational_weight: T['io.flow.v0.models.measurement'],
12584
+ weight_break: PropTypes.number,
12585
+ });
12586
+
12587
+ T['io.flow.v0.models.shipping_rate_estimate'] = PropTypes.exact({
12588
+ origin_address: T['io.flow.v0.models.address'].isRequired,
12589
+ destination_address: T['io.flow.v0.models.address'].isRequired,
12590
+ shipping_date_time: PropTypes.string.isRequired,
12591
+ services: PropTypes.arrayOf(PropTypes.string).isRequired,
12592
+ available: PropTypes.arrayOf(T['io.flow.v0.models.shipping_rate_estimate_available']).isRequired,
12593
+ unavailable: PropTypes.arrayOf(T['io.flow.v0.models.shipping_rate_estimate_unavailable']),
12594
+ });
12595
+
12569
12596
  T['io.flow.v0.models.estimated_dimensions'] = PropTypes.exact({
12570
12597
  depth: T['io.flow.v0.models.measurement'].isRequired,
12571
12598
  length: T['io.flow.v0.models.measurement'].isRequired,
@@ -12595,6 +12622,11 @@ T['io.flow.v0.models.dimension_estimate_version'] = PropTypes.exact({
12595
12622
  dimension_estimate: T['io.flow.v0.models.dimension_estimate'].isRequired,
12596
12623
  });
12597
12624
 
12625
+ T['io.flow.v0.models.option_weight_estimates'] = PropTypes.exact({
12626
+ gravitational: T['io.flow.v0.models.measurement'].isRequired,
12627
+ dimensional: T['io.flow.v0.models.measurement'].isRequired,
12628
+ });
12629
+
12598
12630
  T['io.flow.v0.models.dimension'] = PropTypes.exact({
12599
12631
  depth: T['io.flow.v0.models.measurement'],
12600
12632
  diameter: T['io.flow.v0.models.measurement'],
@@ -12629,6 +12661,7 @@ T['io.flow.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
12629
12661
  third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.v0.models.third_party_logistics_partner']),
12630
12662
  center_contact: T['io.flow.v0.models.operations_contact'],
12631
12663
  average_order_weight: PropTypes.number,
12664
+ average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12632
12665
  package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
12633
12666
  monthly_average_volume_amount: PropTypes.number,
12634
12667
  monthly_average_volume_currency: PropTypes.string,
@@ -12643,8 +12676,6 @@ T['io.flow.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
12643
12676
  mcc_codes: PropTypes.arrayOf(PropTypes.number),
12644
12677
  });
12645
12678
 
12646
- T['io.flow.v0.unions.merchant_application_form'] = PropTypes.oneOfType([T['io.flow.v0.models.shopify_merchant_application_form']]);
12647
-
12648
12679
  T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
12649
12680
  discriminator: PropTypes.oneOf(['shopify_merchant_application']).isRequired,
12650
12681
  id: PropTypes.string.isRequired,
@@ -12666,6 +12697,7 @@ T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
12666
12697
  third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.v0.models.third_party_logistics_partner']),
12667
12698
  center_contact: T['io.flow.v0.models.operations_contact'],
12668
12699
  average_order_weight: PropTypes.number,
12700
+ average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12669
12701
  package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
12670
12702
  monthly_average: T['io.flow.v0.models.monthly_average'],
12671
12703
  default_country_of_origin: PropTypes.string,
@@ -12682,22 +12714,6 @@ T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
12682
12714
  mcc_codes: PropTypes.arrayOf(PropTypes.number),
12683
12715
  });
12684
12716
 
12685
- T['io.flow.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.v0.models.shopify_merchant_application']]);
12686
-
12687
- T['io.flow.v0.models.merchant_application_upserted'] = PropTypes.exact({
12688
- discriminator: PropTypes.oneOf(['merchant_application_upserted']).isRequired,
12689
- event_id: PropTypes.string.isRequired,
12690
- timestamp: PropTypes.string.isRequired,
12691
- merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
12692
- });
12693
-
12694
- T['io.flow.v0.models.merchant_application_deleted'] = PropTypes.exact({
12695
- discriminator: PropTypes.oneOf(['merchant_application_deleted']).isRequired,
12696
- event_id: PropTypes.string.isRequired,
12697
- timestamp: PropTypes.string.isRequired,
12698
- merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
12699
- });
12700
-
12701
12717
  T['io.flow.v0.models.package_dimensions_form'] = PropTypes.exact({
12702
12718
  dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']).isRequired,
12703
12719
  });
@@ -12864,9 +12880,89 @@ T['io.flow.v0.models.packaging'] = PropTypes.exact({
12864
12880
  number: PropTypes.string,
12865
12881
  });
12866
12882
 
12867
- T['io.flow.v0.models.option_weight_estimates'] = PropTypes.exact({
12868
- gravitational: T['io.flow.v0.models.measurement'].isRequired,
12869
- dimensional: T['io.flow.v0.models.measurement'].isRequired,
12883
+ T['io.flow.v0.models.common_merchant_application_form'] = PropTypes.exact({
12884
+ discriminator: PropTypes.oneOf(['common_merchant_application_form']).isRequired,
12885
+ company: T['io.flow.v0.models.merchant_info'],
12886
+ indirect_tax: T['io.flow.v0.models.indirect_tax'],
12887
+ ultimate_beneficiary_owner: T['io.flow.v0.models.ultimate_beneficiary_owner'],
12888
+ business_url: PropTypes.string,
12889
+ business_description: PropTypes.string,
12890
+ business_address: T['io.flow.v0.models.address'],
12891
+ refund_percentage: PropTypes.number,
12892
+ chargeback_percentage: PropTypes.number,
12893
+ beneficiary_details: T['io.flow.v0.models.merchant_onboarding_beneficiary_details'],
12894
+ other_trade_sector: PropTypes.string,
12895
+ center_contact: T['io.flow.v0.models.operations_contact'],
12896
+ center_address: T['io.flow.v0.models.address'],
12897
+ average_order_weight: PropTypes.number,
12898
+ average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12899
+ package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
12900
+ monthly_average_volume_amount: PropTypes.number,
12901
+ monthly_average_volume_currency: PropTypes.string,
12902
+ monthly_average_number_transactions: PropTypes.number,
12903
+ default_country_of_origin: PropTypes.string,
12904
+ shop: T['io.flow.v0.models.shop'],
12905
+ rate_card: PropTypes.string,
12906
+ last_year_xborder_gmv: T['io.flow.v0.models.money'],
12907
+ last_month_xborder_gmv: T['io.flow.v0.models.money'],
12908
+ average_order_value: T['io.flow.v0.models.money'],
12909
+ mcc_codes: PropTypes.arrayOf(PropTypes.number),
12910
+ });
12911
+
12912
+ T['io.flow.v0.unions.merchant_application_form'] = PropTypes.oneOfType([
12913
+ T['io.flow.v0.models.shopify_merchant_application_form'],
12914
+ T['io.flow.v0.models.common_merchant_application_form'],
12915
+ ]);
12916
+
12917
+ T['io.flow.v0.models.common_merchant_application'] = PropTypes.exact({
12918
+ discriminator: PropTypes.oneOf(['common_merchant_application']).isRequired,
12919
+ id: PropTypes.string.isRequired,
12920
+ organization_id: PropTypes.string.isRequired,
12921
+ organization_reference: T['io.flow.v0.models.onboarding_organization_reference'].isRequired,
12922
+ status: T['io.flow.v0.enums.onboarding_application_status'].isRequired,
12923
+ company: T['io.flow.v0.models.merchant_info'],
12924
+ indirect_tax: T['io.flow.v0.models.indirect_tax'],
12925
+ ultimate_beneficiary_owner: T['io.flow.v0.models.ultimate_beneficiary_owner'],
12926
+ business_url: PropTypes.string,
12927
+ business_description: PropTypes.string,
12928
+ business_address: T['io.flow.v0.models.address'],
12929
+ refund_percentage: PropTypes.number,
12930
+ chargeback_percentage: PropTypes.number,
12931
+ beneficiary_details: T['io.flow.v0.models.merchant_onboarding_beneficiary_details'],
12932
+ other_trade_sector: PropTypes.string,
12933
+ center_contact: T['io.flow.v0.models.operations_contact'],
12934
+ center_address: T['io.flow.v0.models.address'],
12935
+ average_order_weight: PropTypes.number,
12936
+ average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12937
+ package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
12938
+ monthly_average: T['io.flow.v0.models.monthly_average'],
12939
+ default_country_of_origin: PropTypes.string,
12940
+ rate_card: PropTypes.string.isRequired,
12941
+ shop: T['io.flow.v0.models.shop'],
12942
+ created_at: PropTypes.string.isRequired,
12943
+ last_year_xborder_gmv: T['io.flow.v0.models.money'],
12944
+ last_month_xborder_gmv: T['io.flow.v0.models.money'],
12945
+ average_order_value: T['io.flow.v0.models.money'],
12946
+ mcc_codes: PropTypes.arrayOf(PropTypes.number),
12947
+ });
12948
+
12949
+ T['io.flow.v0.unions.merchant_application'] = PropTypes.oneOfType([
12950
+ T['io.flow.v0.models.shopify_merchant_application'],
12951
+ T['io.flow.v0.models.common_merchant_application'],
12952
+ ]);
12953
+
12954
+ T['io.flow.v0.models.merchant_application_upserted'] = PropTypes.exact({
12955
+ discriminator: PropTypes.oneOf(['merchant_application_upserted']).isRequired,
12956
+ event_id: PropTypes.string.isRequired,
12957
+ timestamp: PropTypes.string.isRequired,
12958
+ merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
12959
+ });
12960
+
12961
+ T['io.flow.v0.models.merchant_application_deleted'] = PropTypes.exact({
12962
+ discriminator: PropTypes.oneOf(['merchant_application_deleted']).isRequired,
12963
+ event_id: PropTypes.string.isRequired,
12964
+ timestamp: PropTypes.string.isRequired,
12965
+ merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
12870
12966
  });
12871
12967
 
12872
12968
  T['io.flow.v0.models.additional_handling_service_fee'] = PropTypes.exact({
@@ -13116,6 +13212,7 @@ T['io.flow.v0.models.payment_request'] = PropTypes.exact({
13116
13212
  supported_actions: PropTypes.arrayOf(T['io.flow.v0.enums.payment_action_type']).isRequired,
13117
13213
  payment_capture_option: T['io.flow.v0.unions.payment_capture_option'],
13118
13214
  review: T['io.flow.v0.models.payment_request_review'],
13215
+ client_secret: PropTypes.string,
13119
13216
  });
13120
13217
 
13121
13218
  T['io.flow.v0.models.payment_request_upserted'] = PropTypes.exact({
@@ -13716,6 +13813,22 @@ T['io.flow.v0.models.shopify_order_romanization_metafield'] = PropTypes.exact({
13716
13813
  billing: T['io.flow.v0.models.billing_address'],
13717
13814
  });
13718
13815
 
13816
+ T['io.flow.v0.models.organization_tax_registration'] = PropTypes.exact({
13817
+ id: PropTypes.string.isRequired,
13818
+ organization: T['io.flow.v0.models.organization_summary'].isRequired,
13819
+ address: T['io.flow.v0.models.billing_address'].isRequired,
13820
+ registration: T['io.flow.v0.models.tax_registration_detail'].isRequired,
13821
+ self_billing_agreement: T['io.flow.v0.models.self_billing_agreement'].isRequired,
13822
+ });
13823
+
13824
+ T['io.flow.v0.models.tax_registration_upserted'] = PropTypes.exact({
13825
+ discriminator: PropTypes.oneOf(['tax_registration_upserted']).isRequired,
13826
+ event_id: PropTypes.string.isRequired,
13827
+ timestamp: PropTypes.string.isRequired,
13828
+ organization: PropTypes.string.isRequired,
13829
+ tax_registration: T['io.flow.v0.models.organization_tax_registration'].isRequired,
13830
+ });
13831
+
13719
13832
  T['io.flow.v0.models.order_builder_customer_invoice_address_form'] = PropTypes.exact({
13720
13833
  address: T['io.flow.v0.models.billing_address'].isRequired,
13721
13834
  });
@@ -13811,6 +13924,8 @@ T['io.flow.v0.models.credit_memo'] = PropTypes.exact({
13811
13924
  documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
13812
13925
  attributes: PropTypes.objectOf(PropTypes.string).isRequired,
13813
13926
  tax_registration: T['io.flow.v0.models.tax_registration'],
13927
+ center: T['io.flow.v0.models.consumer_invoice_center_reference'],
13928
+ order: T['io.flow.v0.models.consumer_invoice_order_summary'],
13814
13929
  });
13815
13930
 
13816
13931
  T['io.flow.v0.models.credit_memo_upserted'] = PropTypes.exact({
@@ -14378,6 +14493,17 @@ T['io.flow.v0.models.summary_shipping_label_form'] = PropTypes.exact({
14378
14493
  reference_id: PropTypes.string,
14379
14494
  });
14380
14495
 
14496
+ T['io.flow.v0.models.shipping_rate_estimate_request'] = PropTypes.exact({
14497
+ origin_address: T['io.flow.v0.models.address'].isRequired,
14498
+ destination_address: T['io.flow.v0.models.address'].isRequired,
14499
+ package_dimensions: T['io.flow.v0.models.dimension'].isRequired,
14500
+ shipping_date_time: PropTypes.string.isRequired,
14501
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'],
14502
+ duties_owed: T['io.flow.v0.models.money'],
14503
+ taxes_owed: T['io.flow.v0.models.money'],
14504
+ line_items: PropTypes.arrayOf(T['io.flow.v0.models.line_item_form']),
14505
+ });
14506
+
14381
14507
  T['io.flow.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
14382
14508
  discriminator: PropTypes.oneOf(['ratecard_estimate_v4']).isRequired,
14383
14509
  hops: PropTypes.arrayOf(T['io.flow.v0.models.hop_v2']).isRequired,
@@ -14450,6 +14576,7 @@ T['io.flow.v0.models.ratecard_estimate_form'] = PropTypes.exact({
14450
14576
  center_id: PropTypes.string,
14451
14577
  taxes_owed: T['io.flow.v0.models.money'],
14452
14578
  duties_owed: T['io.flow.v0.models.money'],
14579
+ commercial_invoice_mode: T['io.flow.v0.enums.commercial_invoice_mode'],
14453
14580
  });
14454
14581
 
14455
14582
  T['io.flow.v0.models.order_replacement_form'] = PropTypes.exact({
@@ -14658,20 +14785,6 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
14658
14785
  T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14659
14786
  T['io.flow.v0.models.test_upserted'],
14660
14787
  T['io.flow.v0.models.generate_load'],
14661
- T['io.flow.v0.models.sarvesh_item_upserted'],
14662
- T['io.flow.v0.models.sarvesh_item_deleted'],
14663
- T['io.flow.v0.models.hosein_item_upserted'],
14664
- T['io.flow.v0.models.hosein_item_deleted'],
14665
- T['io.flow.v0.models.niall_item_upserted'],
14666
- T['io.flow.v0.models.niall_item_deleted'],
14667
- T['io.flow.v0.models.rohan_item_upserted'],
14668
- T['io.flow.v0.models.rohan_item_deleted'],
14669
- T['io.flow.v0.models.aldo_item_upserted'],
14670
- T['io.flow.v0.models.aldo_item_deleted'],
14671
- T['io.flow.v0.models.ansh_item_upserted'],
14672
- T['io.flow.v0.models.ansh_item_deleted'],
14673
- T['io.flow.v0.models.anirban_item_upserted'],
14674
- T['io.flow.v0.models.anirban_item_deleted'],
14675
14788
  T['io.flow.v0.models.transaction_upserted'],
14676
14789
  T['io.flow.v0.models.organization_transaction_upserted'],
14677
14790
  T['io.flow.v0.models.organization_transaction_deleted'],
@@ -14778,6 +14891,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14778
14891
  T['io.flow.v0.models.organization_deleted_v2'],
14779
14892
  T['io.flow.v0.models.ecommerce_platform_upserted'],
14780
14893
  T['io.flow.v0.models.ecommerce_platform_deleted'],
14894
+ T['io.flow.v0.models.tax_registration_upserted'],
14895
+ T['io.flow.v0.models.tax_registration_deleted'],
14781
14896
  T['io.flow.v0.models.organization_onboarding_state_upserted'],
14782
14897
  T['io.flow.v0.models.organization_onboarding_state_deleted'],
14783
14898
  T['io.flow.v0.models.authorization_deleted_v2'],
@@ -14825,9 +14940,12 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14825
14940
  T['io.flow.v0.models.ratecard_deleted'],
14826
14941
  T['io.flow.v0.models.product_restriction_result_upserted'],
14827
14942
  T['io.flow.v0.models.product_restriction_result_deleted'],
14943
+ T['io.flow.v0.models.product_sellability_result_upserted'],
14944
+ T['io.flow.v0.models.product_sellability_result_deleted'],
14828
14945
  T['io.flow.v0.models.shopify_localization_setting_upserted'],
14829
14946
  T['io.flow.v0.models.shopify_localization_setting_deleted'],
14830
14947
  T['io.flow.v0.models.tracking_label_event_upserted'],
14948
+ T['io.flow.v0.models.tracking_label_event_upserted_v2'],
14831
14949
  ]);
14832
14950
 
14833
14951
  T['io.flow.v0.models.detailed_shipping_notification_form'] = PropTypes.exact({
@@ -15016,20 +15134,6 @@ T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
15016
15134
  T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15017
15135
  'test_upserted',
15018
15136
  'generate_load',
15019
- 'sarvesh_item_upserted',
15020
- 'sarvesh_item_deleted',
15021
- 'hosein_item_upserted',
15022
- 'hosein_item_deleted',
15023
- 'niall_item_upserted',
15024
- 'niall_item_deleted',
15025
- 'rohan_item_upserted',
15026
- 'rohan_item_deleted',
15027
- 'aldo_item_upserted',
15028
- 'aldo_item_deleted',
15029
- 'ansh_item_upserted',
15030
- 'ansh_item_deleted',
15031
- 'anirban_item_upserted',
15032
- 'anirban_item_deleted',
15033
15137
  'transaction_upserted',
15034
15138
  'organization_transaction_upserted',
15035
15139
  'organization_transaction_deleted',
@@ -15136,6 +15240,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15136
15240
  'organization_deleted_v2',
15137
15241
  'ecommerce_platform_upserted',
15138
15242
  'ecommerce_platform_deleted',
15243
+ 'tax_registration_upserted',
15244
+ 'tax_registration_deleted',
15139
15245
  'organization_onboarding_state_upserted',
15140
15246
  'organization_onboarding_state_deleted',
15141
15247
  'authorization_deleted_v2',
@@ -15183,9 +15289,12 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15183
15289
  'ratecard_deleted',
15184
15290
  'product_restriction_result_upserted',
15185
15291
  'product_restriction_result_deleted',
15292
+ 'product_sellability_result_upserted',
15293
+ 'product_sellability_result_deleted',
15186
15294
  'shopify_localization_setting_upserted',
15187
15295
  'shopify_localization_setting_deleted',
15188
15296
  'tracking_label_event_upserted',
15297
+ 'tracking_label_event_upserted_v2',
15189
15298
  ]);
15190
15299
 
15191
15300
  T['io.flow.v0.enums.fraud_liability'] = PropTypes.oneOf(['flow', 'organization']);
@@ -15230,51 +15339,6 @@ T['io.flow.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open', 'Clos
15230
15339
  T['io.flow.v0.enums.shopify_grant'] = PropTypes.oneOf(['customer', 'discount', 'gift_card', 'metafield', 'order']);
15231
15340
  T['io.flow.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
15232
15341
  T['io.flow.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
15233
-
15234
- T['io.flow.v0.enums.substatus_code'] = PropTypes.oneOf([
15235
- 'Delivered_001',
15236
- 'Delivered_002',
15237
- 'Delivered_003',
15238
- 'Delivered_004',
15239
- 'AvailableForPickup_001',
15240
- 'Exception_001',
15241
- 'Exception_002',
15242
- 'Exception_003',
15243
- 'Exception_004',
15244
- 'Exception_005',
15245
- 'Exception_006',
15246
- 'Exception_007',
15247
- 'Exception_008',
15248
- 'Exception_009',
15249
- 'Exception_010',
15250
- 'Exception_011',
15251
- 'Exception_012',
15252
- 'Exception_013',
15253
- 'AttemptFail_001',
15254
- 'AttemptFail_002',
15255
- 'AttemptFail_003',
15256
- 'InTransit_001',
15257
- 'InTransit_002',
15258
- 'InTransit_003',
15259
- 'InTransit_004',
15260
- 'InTransit_005',
15261
- 'InTransit_006',
15262
- 'InTransit_007',
15263
- 'InTransit_008',
15264
- 'InTransit_009',
15265
- 'InfoReceived_001',
15266
- 'OutForDelivery_001',
15267
- 'OutForDelivery_003',
15268
- 'OutForDelivery_004',
15269
- 'Pending_001',
15270
- 'Pending_002',
15271
- 'Pending_003',
15272
- 'Pending_004',
15273
- 'Pending_005',
15274
- 'Pending_006',
15275
- 'Expired_001',
15276
- ]);
15277
-
15278
15342
  T['io.flow.v0.enums.tax_type'] = PropTypes.oneOf(['vat', 'gst', 'hst', 'pst', 'qst', 'sales_tax']);
15279
15343
  T['io.flow.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
15280
15344
  T['io.flow.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
@@ -15714,6 +15778,14 @@ T['io.flow.v0.models.organization_bank_account'] = PropTypes.exact({
15714
15778
  last4: PropTypes.string.isRequired,
15715
15779
  });
15716
15780
 
15781
+ T['io.flow.v0.models.organization_tax_registration_form'] = PropTypes.exact({
15782
+ tax_number: PropTypes.string.isRequired,
15783
+ country: PropTypes.string.isRequired,
15784
+ province: PropTypes.string,
15785
+ self_billing_agreement_effective_at: PropTypes.string.isRequired,
15786
+ self_billing_agreement_expires_at: PropTypes.string,
15787
+ });
15788
+
15717
15789
  T['io.flow.v0.models.organization_token_form_v2'] = PropTypes.exact({
15718
15790
  organization_id: PropTypes.string.isRequired,
15719
15791
  description: PropTypes.string,
@@ -16290,15 +16362,6 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
16290
16362
  paymentData: PropTypes.object.isRequired,
16291
16363
  });
16292
16364
 
16293
- T['io.flow.tech.onboarding.playground.v0.models.jean_demo_item'] = PropTypes.exact({
16294
- id: PropTypes.string.isRequired,
16295
- name: PropTypes.string.isRequired,
16296
- });
16297
-
16298
- T['io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description'] = PropTypes.exact({
16299
- description: PropTypes.string.isRequired,
16300
- });
16301
-
16302
16365
  T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
16303
16366
  name: PropTypes.string.isRequired,
16304
16367
  });
@@ -16354,8 +16417,6 @@ export const adyenNativeActionDetails = T['io.flow.v0.models.adyen_native_action
16354
16417
  export const adyenNativeData = T['io.flow.v0.unions.adyen_native_data'];
16355
16418
  export const adyenV3ChallengeToken = T['io.flow.v0.models.adyen_v3_challenge_token'];
16356
16419
  export const adyenV3FingerprintToken = T['io.flow.v0.models.adyen_v3_fingerprint_token'];
16357
- export const aldoItemDeleted = T['io.flow.v0.models.aldo_item_deleted'];
16358
- export const aldoItemUpserted = T['io.flow.v0.models.aldo_item_upserted'];
16359
16420
  export const allocation = T['io.flow.v0.models.allocation'];
16360
16421
  export const allocationComponent = T['io.flow.v0.unions.allocation_component'];
16361
16422
  export const allocationDeletedV2 = T['io.flow.v0.models.allocation_deleted_v2'];
@@ -16373,10 +16434,6 @@ export const allocationV2 = T['io.flow.v0.models.allocation_v2'];
16373
16434
  export const amountMargin = T['io.flow.v0.models.amount_margin'];
16374
16435
  export const amountMarginForm = T['io.flow.v0.models.amount_margin_form'];
16375
16436
  export const analyticsExportType = T['io.flow.v0.models.analytics_export_type'];
16376
- export const anirbanItemDeleted = T['io.flow.v0.models.anirban_item_deleted'];
16377
- export const anirbanItemUpserted = T['io.flow.v0.models.anirban_item_upserted'];
16378
- export const anshItemDeleted = T['io.flow.v0.models.ansh_item_deleted'];
16379
- export const anshItemUpserted = T['io.flow.v0.models.ansh_item_upserted'];
16380
16437
  export const applePayMerchantValidationPayload = T['io.flow.v0.models.apple_pay_merchant_validation_payload'];
16381
16438
  export const applepaySdkCreateResultActionDetails = T['io.flow.v0.models.applepay_sdk_create_result_action_details'];
16382
16439
  export const applepaySdkValidateResultActionDetails = T['io.flow.v0.models.applepay_sdk_validate_result_action_details'];
@@ -16595,6 +16652,11 @@ export const checkoutUrls = T['io.flow.v0.models.checkout_urls'];
16595
16652
  export const checkoutUrlsForm = T['io.flow.v0.models.checkout_urls_form'];
16596
16653
  export const cleartext = T['io.flow.v0.models.cleartext'];
16597
16654
  export const commercialInvoiceFee = T['io.flow.v0.models.commercial_invoice_fee'];
16655
+ export const commercialInvoiceMode = T['io.flow.v0.enums.commercial_invoice_mode'];
16656
+ export const commonMerchantApplication = T['io.flow.v0.models.common_merchant_application'];
16657
+ export const commonMerchantApplicationForm = T['io.flow.v0.models.common_merchant_application_form'];
16658
+ export const commonMerchantApplicationPutForm = T['io.flow.v0.models.common_merchant_application_put_form'];
16659
+ export const commonMerchantApplicationsSummary = T['io.flow.v0.models.common_merchant_applications_summary'];
16598
16660
  export const company = T['io.flow.v0.models.company'];
16599
16661
  export const confirmationDetails = T['io.flow.v0.unions.confirmation_details'];
16600
16662
  export const consumerInvoice = T['io.flow.v0.models.consumer_invoice'];
@@ -16853,6 +16915,7 @@ export const exportType = T['io.flow.v0.unions.export_type'];
16853
16915
  export const exportVersion = T['io.flow.v0.models.export_version'];
16854
16916
  export const exporterOfRecord = T['io.flow.v0.enums.exporter_of_record'];
16855
16917
  export const externalCard = T['io.flow.v0.models.external_card'];
16918
+ export const externalOrderSummary = T['io.flow.v0.models.external_order_summary'];
16856
16919
  export const feeDeduction = T['io.flow.v0.models.fee_deduction'];
16857
16920
  export const feeDeductionType = T['io.flow.v0.enums.fee_deduction_type'];
16858
16921
  export const feeWeight = T['io.flow.v0.models.fee_weight'];
@@ -16959,8 +17022,6 @@ export const hop = T['io.flow.v0.models.hop'];
16959
17022
  export const hopEstimate = T['io.flow.v0.models.hop_estimate'];
16960
17023
  export const hopEstimateV2 = T['io.flow.v0.models.hop_estimate_v2'];
16961
17024
  export const hopV2 = T['io.flow.v0.models.hop_v2'];
16962
- export const hoseinItemDeleted = T['io.flow.v0.models.hosein_item_deleted'];
16963
- export const hoseinItemUpserted = T['io.flow.v0.models.hosein_item_upserted'];
16964
17025
  export const hs10 = T['io.flow.v0.models.hs10'];
16965
17026
  export const hs10CodeDeleted = T['io.flow.v0.models.hs10_code_deleted'];
16966
17027
  export const hs10CodeUpserted = T['io.flow.v0.models.hs10_code_upserted'];
@@ -17150,6 +17211,7 @@ export const merchantOfRecordEntity = T['io.flow.v0.models.merchant_of_record_en
17150
17211
  export const merchantOfRecordEntityRegistration = T['io.flow.v0.models.merchant_of_record_entity_registration'];
17151
17212
  export const merchantOfRecordPaymentForm = T['io.flow.v0.models.merchant_of_record_payment_form'];
17152
17213
  export const merchantOnboardingAddress = T['io.flow.v0.models.merchant_onboarding_address'];
17214
+ export const merchantOnboardingBeneficiaryDetails = T['io.flow.v0.models.merchant_onboarding_beneficiary_details'];
17153
17215
  export const merchantRejected = T['io.flow.v0.models.merchant_rejected'];
17154
17216
  export const merchantRejectedReason = T['io.flow.v0.enums.merchant_rejected_reason'];
17155
17217
  export const method = T['io.flow.v0.enums.method'];
@@ -17161,8 +17223,6 @@ export const monthlyAverageVolume = T['io.flow.v0.models.monthly_average_volume'
17161
17223
  export const name = T['io.flow.v0.models.name'];
17162
17224
  export const nameForm = T['io.flow.v0.models.name_form'];
17163
17225
  export const needsActionAttributes = T['io.flow.v0.models.needs_action_attributes'];
17164
- export const niallItemDeleted = T['io.flow.v0.models.niall_item_deleted'];
17165
- export const niallItemUpserted = T['io.flow.v0.models.niall_item_upserted'];
17166
17226
  export const notificationDeletedV2 = T['io.flow.v0.models.notification_deleted_v2'];
17167
17227
  export const notificationUpsertedV2 = T['io.flow.v0.models.notification_upserted_v2'];
17168
17228
  export const numberRange = T['io.flow.v0.models.number_range'];
@@ -17302,6 +17362,8 @@ export const organizationSession = T['io.flow.v0.models.organization_session'];
17302
17362
  export const organizationSessionAuthorization = T['io.flow.v0.models.organization_session_authorization'];
17303
17363
  export const organizationStatus = T['io.flow.v0.enums.organization_status'];
17304
17364
  export const organizationSummary = T['io.flow.v0.models.organization_summary'];
17365
+ export const organizationTaxRegistration = T['io.flow.v0.models.organization_tax_registration'];
17366
+ export const organizationTaxRegistrationForm = T['io.flow.v0.models.organization_tax_registration_form'];
17305
17367
  export const organizationToken = T['io.flow.v0.models.organization_token'];
17306
17368
  export const organizationTokenForm = T['io.flow.v0.models.organization_token_form'];
17307
17369
  export const organizationTokenFormV2 = T['io.flow.v0.models.organization_token_form_v2'];
@@ -17550,6 +17612,9 @@ export const productRestrictionResultDeleted = T['io.flow.v0.models.product_rest
17550
17612
  export const productRestrictionResultUpserted = T['io.flow.v0.models.product_restriction_result_upserted'];
17551
17613
  export const productSellability = T['io.flow.v0.models.product_sellability'];
17552
17614
  export const productSellabilityForm = T['io.flow.v0.models.product_sellability_form'];
17615
+ export const productSellabilityResult = T['io.flow.v0.models.product_sellability_result'];
17616
+ export const productSellabilityResultDeleted = T['io.flow.v0.models.product_sellability_result_deleted'];
17617
+ export const productSellabilityResultUpserted = T['io.flow.v0.models.product_sellability_result_upserted'];
17553
17618
  export const productTaxonomyCategory = T['io.flow.v0.models.product_taxonomy_category'];
17554
17619
  export const productTaxonomyData = T['io.flow.v0.models.product_taxonomy_data'];
17555
17620
  export const productTaxonomyValue = T['io.flow.v0.models.product_taxonomy_value'];
@@ -17657,6 +17722,7 @@ export const repeatMonthly = T['io.flow.v0.models.repeat_monthly'];
17657
17722
  export const repeatSchedule = T['io.flow.v0.unions.repeat_schedule'];
17658
17723
  export const repeatWeekly = T['io.flow.v0.models.repeat_weekly'];
17659
17724
  export const restrictedReviewStatus = T['io.flow.v0.enums.restricted_review_status'];
17725
+ export const restrictionEnvironment = T['io.flow.v0.enums.restriction_environment'];
17660
17726
  export const UNSAFE_return = T['io.flow.v0.models.return'];
17661
17727
  export const returnForm = T['io.flow.v0.models.return_form'];
17662
17728
  export const returnItemReference = T['io.flow.v0.models.return_item_reference'];
@@ -17689,8 +17755,6 @@ export const reversalStatus = T['io.flow.v0.enums.reversal_status'];
17689
17755
  export const reversalUpserted = T['io.flow.v0.models.reversal_upserted'];
17690
17756
  export const reversalVersion = T['io.flow.v0.models.reversal_version'];
17691
17757
  export const reviewStatus = T['io.flow.v0.enums.review_status'];
17692
- export const rohanItemDeleted = T['io.flow.v0.models.rohan_item_deleted'];
17693
- export const rohanItemUpserted = T['io.flow.v0.models.rohan_item_upserted'];
17694
17758
  export const role = T['io.flow.v0.enums.role'];
17695
17759
  export const romanization = T['io.flow.v0.models.romanization'];
17696
17760
  export const romanizationForm = T['io.flow.v0.models.romanization_form'];
@@ -17699,8 +17763,6 @@ export const roundingMethod = T['io.flow.v0.enums.rounding_method'];
17699
17763
  export const roundingType = T['io.flow.v0.enums.rounding_type'];
17700
17764
  export const routeAudit = T['io.flow.v0.models.route_audit'];
17701
17765
  export const ruleEffectType = T['io.flow.v0.enums.rule_effect_type'];
17702
- export const sarveshItemDeleted = T['io.flow.v0.models.sarvesh_item_deleted'];
17703
- export const sarveshItemUpserted = T['io.flow.v0.models.sarvesh_item_upserted'];
17704
17766
  export const schedule = T['io.flow.v0.models.schedule'];
17705
17767
  export const scheduleExceptionStatus = T['io.flow.v0.enums.schedule_exception_status'];
17706
17768
  export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
@@ -17710,10 +17772,21 @@ export const sdkAdyenV3AuthenticationToken = T['io.flow.v0.unions.sdk_adyen_v3_a
17710
17772
  export const securityRatecardFee = T['io.flow.v0.models.security_ratecard_fee'];
17711
17773
  export const securityServiceFee = T['io.flow.v0.models.security_service_fee'];
17712
17774
  export const selectIssuerOptionActionDetails = T['io.flow.v0.models.select_issuer_option_action_details'];
17775
+ export const selfBillingAgreement = T['io.flow.v0.models.self_billing_agreement'];
17713
17776
  export const sellabilityError = T['io.flow.v0.models.sellability_error'];
17714
17777
  export const sellabilityErrorCode = T['io.flow.v0.enums.sellability_error_code'];
17778
+ export const sellabilityNeedsActionAttributes = T['io.flow.v0.models.sellability_needs_action_attributes'];
17779
+ export const sellabilityRegionResult = T['io.flow.v0.models.sellability_region_result'];
17780
+ export const sellabilityRegionWithReasons = T['io.flow.v0.models.sellability_region_with_reasons'];
17781
+ export const sellabilityRequest = T['io.flow.v0.unions.sellability_request'];
17715
17782
  export const sellabilityRequestStatus = T['io.flow.v0.enums.sellability_request_status'];
17716
17783
  export const sellabilityResponse = T['io.flow.v0.unions.sellability_response'];
17784
+ export const sellabilityRestrictedRegion = T['io.flow.v0.models.sellability_restricted_region'];
17785
+ export const sellabilityResultErrorCode = T['io.flow.v0.enums.sellability_result_error_code'];
17786
+ export const sellabilityResultStatus = T['io.flow.v0.enums.sellability_result_status'];
17787
+ export const sellabilityScreening = T['io.flow.v0.models.sellability_screening'];
17788
+ export const sellabilityScreeningForm = T['io.flow.v0.models.sellability_screening_form'];
17789
+ export const sellabilityScreeningMode = T['io.flow.v0.enums.sellability_screening_mode'];
17717
17790
  export const sellablilityRegionResult = T['io.flow.v0.models.sellablility_region_result'];
17718
17791
  export const serviceDescription = T['io.flow.v0.unions.service_description'];
17719
17792
  export const serviceFee = T['io.flow.v0.unions.service_fee'];
@@ -17782,6 +17855,10 @@ export const shippingLaneVersion = T['io.flow.v0.models.shipping_lane_version'];
17782
17855
  export const shippingNotification = T['io.flow.v0.models.shipping_notification'];
17783
17856
  export const shippingNotificationForm = T['io.flow.v0.unions.shipping_notification_form'];
17784
17857
  export const shippingNotificationVersion = T['io.flow.v0.models.shipping_notification_version'];
17858
+ export const shippingRateEstimate = T['io.flow.v0.models.shipping_rate_estimate'];
17859
+ export const shippingRateEstimateAvailable = T['io.flow.v0.models.shipping_rate_estimate_available'];
17860
+ export const shippingRateEstimateRequest = T['io.flow.v0.models.shipping_rate_estimate_request'];
17861
+ export const shippingRateEstimateUnavailable = T['io.flow.v0.models.shipping_rate_estimate_unavailable'];
17785
17862
  export const shop = T['io.flow.v0.models.shop'];
17786
17863
  export const shopifyCart = T['io.flow.v0.models.shopify_cart'];
17787
17864
  export const shopifyCartAddForm = T['io.flow.v0.unions.shopify_cart_add_form'];
@@ -17836,6 +17913,8 @@ export const sortDirection = T['io.flow.v0.enums.sort_direction'];
17836
17913
  export const statement = T['io.flow.v0.models.statement'];
17837
17914
  export const statementAttachmentType = T['io.flow.v0.enums.statement_attachment_type'];
17838
17915
  export const statementDeleted = T['io.flow.v0.models.statement_deleted'];
17916
+ export const statementStatusCode = T['io.flow.v0.enums.statement_status_code'];
17917
+ export const statementStatusForm = T['io.flow.v0.models.statement_status_form'];
17839
17918
  export const statementUpserted = T['io.flow.v0.models.statement_upserted'];
17840
17919
  export const storedMethodUsageStep = T['io.flow.v0.enums.stored_method_usage_step'];
17841
17920
  export const strategy = T['io.flow.v0.enums.strategy'];
@@ -17883,7 +17962,10 @@ export const taxDutyQuoteValues = T['io.flow.v0.models.tax_duty_quote_values'];
17883
17962
  export const taxDutyTransactionReasonCode = T['io.flow.v0.enums.tax_duty_transaction_reason_code'];
17884
17963
  export const taxJurisdictionType = T['io.flow.v0.enums.tax_jurisdiction_type'];
17885
17964
  export const taxRegistration = T['io.flow.v0.models.tax_registration'];
17965
+ export const taxRegistrationDeleted = T['io.flow.v0.models.tax_registration_deleted'];
17966
+ export const taxRegistrationDetail = T['io.flow.v0.models.tax_registration_detail'];
17886
17967
  export const taxRegistrationForm = T['io.flow.v0.models.tax_registration_form'];
17968
+ export const taxRegistrationUpserted = T['io.flow.v0.models.tax_registration_upserted'];
17887
17969
  export const taxReport = T['io.flow.v0.models.tax_report'];
17888
17970
  export const taxReportType = T['io.flow.v0.enums.tax_report_type'];
17889
17971
  export const taxSetting = T['io.flow.v0.unions.tax_setting'];
@@ -17938,6 +18020,8 @@ export const trackingEventVersion = T['io.flow.v0.models.tracking_event_version'
17938
18020
  export const trackingForm = T['io.flow.v0.models.tracking_form'];
17939
18021
  export const trackingLabel = T['io.flow.v0.models.tracking_label'];
17940
18022
  export const trackingLabelEventUpserted = T['io.flow.v0.models.tracking_label_event_upserted'];
18023
+ export const trackingLabelEventUpsertedV2 = T['io.flow.v0.models.tracking_label_event_upserted_v2'];
18024
+ export const trackingLabelEventV2 = T['io.flow.v0.models.tracking_label_event_v2'];
17941
18025
  export const trackingLabelForm = T['io.flow.v0.models.tracking_label_form'];
17942
18026
  export const trackingLabelSummary = T['io.flow.v0.models.tracking_label_summary'];
17943
18027
  export const trackingLabelVersion = T['io.flow.v0.models.tracking_label_version'];