@flowio/api-prop-types 10.16.108 → 10.16.110

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,62 @@ 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_reason_with_regions'] = PropTypes.exact({
4969
+ reason: PropTypes.string.isRequired,
4970
+ regions: 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_reason'] = PropTypes.exact({
4988
+ type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
4989
+ reasons_with_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellability_reason_with_regions']).isRequired,
4990
+ });
4991
+
4992
+ T['io.flow.v0.models.sellability_restricted_region'] = PropTypes.exact({
4993
+ type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
4994
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
4995
+ });
4996
+
4997
+ T['io.flow.v0.models.product_sellability_result'] = PropTypes.exact({
4998
+ merchant_id: PropTypes.string,
4999
+ product_id: PropTypes.string.isRequired,
5000
+ restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellability_restricted_region']).isRequired,
5001
+ restricted_reasons: PropTypes.arrayOf(T['io.flow.v0.models.sellability_restricted_reason']).isRequired,
5002
+ needs_action_attributes: PropTypes.arrayOf(T['io.flow.v0.models.sellability_needs_action_attributes']),
5003
+ request_id: PropTypes.string,
5004
+ hs6_code: PropTypes.string,
5005
+ });
5006
+
5007
+ T['io.flow.v0.models.sellability_screening'] = PropTypes.exact({
5008
+ discriminator: PropTypes.oneOf(['sellability_screening']).isRequired,
5009
+ product_sellability_result: T['io.flow.v0.models.product_sellability_result'],
5010
+ request_id: PropTypes.string.isRequired,
5011
+ status: T['io.flow.v0.enums.sellability_result_status'].isRequired,
5012
+ error_code: T['io.flow.v0.enums.sellability_result_error_code'],
5013
+ error_message: PropTypes.string,
5014
+ });
5015
+
5016
+ T['io.flow.v0.models.product_sellability_result_upserted'] = PropTypes.exact({
5017
+ discriminator: PropTypes.oneOf(['product_sellability_result_upserted']).isRequired,
5018
+ event_id: PropTypes.string.isRequired,
5019
+ timestamp: PropTypes.string.isRequired,
5020
+ organization: PropTypes.string.isRequired,
5021
+ product_sellability_result: T['io.flow.v0.models.product_sellability_result'].isRequired,
5022
+ });
5023
+
4934
5024
  T['io.flow.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
4935
5025
 
4936
5026
  T['io.flow.v0.models.product_taxonomy_value'] = PropTypes.exact({
@@ -5048,6 +5138,11 @@ T['io.flow.v0.models.permitted_route'] = PropTypes.exact({
5048
5138
 
5049
5139
  T['io.flow.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
5050
5140
 
5141
+ T['io.flow.v0.models.statement_status_form'] = PropTypes.exact({
5142
+ code: T['io.flow.v0.enums.statement_status_code'].isRequired,
5143
+ failure_reason: T['io.flow.v0.enums.payout_status_failure_code'],
5144
+ });
5145
+
5051
5146
  T['io.flow.v0.enums.reversal_error_code'] = PropTypes.oneOf([
5052
5147
  'amount_exceeds_balance',
5053
5148
  'authorization_declined',
@@ -5544,6 +5639,18 @@ T['io.flow.v0.models.token_partner_reference'] = PropTypes.exact({
5544
5639
  id: PropTypes.string.isRequired,
5545
5640
  });
5546
5641
 
5642
+ T['io.flow.v0.models.self_billing_agreement'] = PropTypes.exact({
5643
+ effective_at: PropTypes.string.isRequired,
5644
+ expires_at: PropTypes.string.isRequired,
5645
+ });
5646
+
5647
+ T['io.flow.v0.models.tax_registration_detail'] = PropTypes.exact({
5648
+ tax_number: PropTypes.string.isRequired,
5649
+ country: PropTypes.string.isRequired,
5650
+ tax_code: PropTypes.string.isRequired,
5651
+ province: PropTypes.string,
5652
+ });
5653
+
5547
5654
  T['io.flow.v0.models.session_visit'] = PropTypes.exact({
5548
5655
  id: PropTypes.string.isRequired,
5549
5656
  expires_at: PropTypes.string.isRequired,
@@ -5758,6 +5865,8 @@ T['io.flow.v0.models.order_rule_reference'] = PropTypes.exact({
5758
5865
  key: PropTypes.string.isRequired,
5759
5866
  });
5760
5867
 
5868
+ T['io.flow.v0.enums.pricing_type'] = PropTypes.oneOf(['inclusive_pricing']);
5869
+
5761
5870
  T['io.flow.v0.models.order_rate'] = PropTypes.exact({
5762
5871
  from: PropTypes.string.isRequired,
5763
5872
  to: PropTypes.string.isRequired,
@@ -5866,13 +5975,6 @@ T['io.flow.v0.models.in_compliance_review'] = PropTypes.exact({
5866
5975
  placeholder: PropTypes.bool,
5867
5976
  });
5868
5977
 
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
5978
  T['io.flow.v0.models.onboarding_merchant_time'] = PropTypes.exact({
5877
5979
  hour_of_day: PropTypes.string.isRequired,
5878
5980
  minute_of_hour: PropTypes.string.isRequired,
@@ -5884,18 +5986,6 @@ T['io.flow.v0.models.onboarding_merchant_pickup_window'] = PropTypes.exact({
5884
5986
  to: T['io.flow.v0.models.onboarding_merchant_time'].isRequired,
5885
5987
  });
5886
5988
 
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
5989
  T['io.flow.v0.enums.merchant_rejected_reason'] = PropTypes.oneOf([
5900
5990
  'merchant_ubo_is_pep',
5901
5991
  'merchant_catalog_is_unsupportable',
@@ -5914,16 +6004,6 @@ T['io.flow.v0.models.merchant_rejected'] = PropTypes.exact({
5914
6004
  deactivate_at: PropTypes.string,
5915
6005
  });
5916
6006
 
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
6007
  T['io.flow.v0.enums.merchant_gift_card_error_code'] = PropTypes.oneOf([
5928
6008
  'invalid',
5929
6009
  'expired',
@@ -6233,11 +6313,6 @@ T['io.flow.v0.models.company'] = PropTypes.exact({
6233
6313
 
6234
6314
  T['io.flow.v0.unions.entity'] = PropTypes.oneOfType([T['io.flow.v0.models.company'], T['io.flow.v0.models.individual']]);
6235
6315
 
6236
- T['io.flow.v0.models.shop'] = PropTypes.exact({
6237
- name: PropTypes.string.isRequired,
6238
- id: PropTypes.string.isRequired,
6239
- });
6240
-
6241
6316
  T['io.flow.v0.models.klarna_payment_method_category'] = PropTypes.exact({
6242
6317
  id: PropTypes.string.isRequired,
6243
6318
  name: PropTypes.string,
@@ -6341,8 +6416,6 @@ T['io.flow.v0.models.import_form'] = PropTypes.exact({
6341
6416
  emails: PropTypes.arrayOf(PropTypes.string),
6342
6417
  });
6343
6418
 
6344
- T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'] = PropTypes.oneOf(['physical', 'digital']);
6345
-
6346
6419
  T['io.flow.v0.models.return_package_ratecard_fee'] = PropTypes.exact({
6347
6420
  discriminator: PropTypes.oneOf(['return_package_ratecard_fee']).isRequired,
6348
6421
  amount: PropTypes.number.isRequired,
@@ -6409,7 +6482,7 @@ T['io.flow.v0.models.needs_action_attributes'] = PropTypes.exact({
6409
6482
  require_msds: PropTypes.bool,
6410
6483
  });
6411
6484
 
6412
- T['io.flow.v0.models.sellablility_region_result'] = PropTypes.exact({
6485
+ T['io.flow.v0.models.sellability_region_result'] = PropTypes.exact({
6413
6486
  type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
6414
6487
  regions: PropTypes.arrayOf(PropTypes.string).isRequired,
6415
6488
  });
@@ -6420,12 +6493,13 @@ T['io.flow.v0.models.product_sellability'] = PropTypes.exact({
6420
6493
  product_id: PropTypes.string,
6421
6494
  request_id: PropTypes.string.isRequired,
6422
6495
  hs6_code: PropTypes.string.isRequired,
6423
- restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']).isRequired,
6496
+ restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellability_region_result']).isRequired,
6424
6497
  });
6425
6498
 
6426
6499
  T['io.flow.v0.unions.sellability_response'] = PropTypes.oneOfType([
6427
6500
  T['io.flow.v0.models.product_sellability'],
6428
6501
  T['io.flow.v0.models.sellability_error'],
6502
+ T['io.flow.v0.models.sellability_screening'],
6429
6503
  ]);
6430
6504
 
6431
6505
  T['io.flow.v0.enums.review_status'] = PropTypes.oneOf(['high_risk_in_review', 'low_risk_in_review', 'reviewed']);
@@ -6448,7 +6522,7 @@ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
6448
6522
  updated_by: PropTypes.string,
6449
6523
  product_restriction_id: PropTypes.string,
6450
6524
  hs_code: PropTypes.string,
6451
- restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']),
6525
+ restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.v0.models.sellability_region_result']),
6452
6526
  needs_action_attributes: PropTypes.arrayOf(T['io.flow.v0.models.needs_action_attributes']),
6453
6527
  });
6454
6528
 
@@ -6492,7 +6566,20 @@ T['io.flow.v0.models.ge_catalog_item_input'] = PropTypes.exact({
6492
6566
  });
6493
6567
 
6494
6568
  T['io.flow.v0.enums.ge_catalog_item_ingestion_response'] = PropTypes.oneOf(['success', 'failure']);
6569
+ T['io.flow.v0.enums.restriction_environment'] = PropTypes.oneOf(['sandbox', 'production', 'qa']);
6495
6570
  T['io.flow.v0.enums.ge_event_type'] = PropTypes.oneOf(['restriction_result', 'ingestion_result']);
6571
+
6572
+ T['io.flow.v0.models.ge_catalog_item_ingestion_result'] = PropTypes.exact({
6573
+ discriminator: PropTypes.oneOf(['ge_catalog_item_ingestion_result']).isRequired,
6574
+ event_id: PropTypes.string.isRequired,
6575
+ event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
6576
+ environment: T['io.flow.v0.enums.restriction_environment'].isRequired,
6577
+ timestamp: PropTypes.string.isRequired,
6578
+ source: PropTypes.string.isRequired,
6579
+ response: T['io.flow.v0.enums.ge_catalog_item_ingestion_response'].isRequired,
6580
+ message: PropTypes.string.isRequired,
6581
+ });
6582
+
6496
6583
  T['io.flow.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
6497
6584
 
6498
6585
  T['io.flow.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
@@ -7691,20 +7778,85 @@ T['io.flow.v0.models.shipping_configuration_item_availability_deleted'] = PropTy
7691
7778
 
7692
7779
  T['io.flow.v0.enums.consumer_invoice_customer_type'] = PropTypes.oneOf(['business_eu_verified', 'business_non_verified', 'individual']);
7693
7780
 
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,
7781
+ T['io.flow.v0.models.monthly_average_volume'] = PropTypes.exact({
7782
+ amount: PropTypes.number,
7783
+ currency: PropTypes.string,
7698
7784
  });
7699
7785
 
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']]);
7786
+ T['io.flow.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
7787
+ T['io.flow.v0.enums.organization_status'] = PropTypes.oneOf(['active', 'inactive', 'deactivated', 'provisioned']);
7702
7788
 
7703
- T['io.flow.v0.models.order_options'] = PropTypes.exact({
7704
- storage: T['io.flow.v0.enums.order_storage'].isRequired,
7789
+ T['io.flow.v0.models.shop'] = PropTypes.exact({
7790
+ name: PropTypes.string.isRequired,
7791
+ id: PropTypes.string.isRequired,
7705
7792
  });
7706
7793
 
7707
- T['io.flow.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
7794
+ T['io.flow.v0.models.monthly_average'] = PropTypes.exact({
7795
+ volume: T['io.flow.v0.models.monthly_average_volume'],
7796
+ number_transactions: PropTypes.number,
7797
+ });
7798
+
7799
+ T['io.flow.v0.models.operations_contact'] = PropTypes.exact({
7800
+ company: PropTypes.string,
7801
+ email: PropTypes.string,
7802
+ phone: PropTypes.string,
7803
+ });
7804
+
7805
+ T['io.flow.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
7806
+ name: PropTypes.string.isRequired,
7807
+ dob: PropTypes.string.isRequired,
7808
+ });
7809
+
7810
+ T['io.flow.v0.models.indirect_tax'] = PropTypes.exact({
7811
+ number: PropTypes.string,
7812
+ id: PropTypes.string,
7813
+ });
7814
+
7815
+ T['io.flow.v0.models.merchant_info'] = PropTypes.exact({
7816
+ legal_name: PropTypes.string,
7817
+ country: PropTypes.string.isRequired,
7818
+ region: T['io.flow.v0.enums.region_type'],
7819
+ region_value: PropTypes.string,
7820
+ category_code: PropTypes.string,
7821
+ description: PropTypes.string,
7822
+ });
7823
+
7824
+ T['io.flow.v0.enums.onboarding_application_status'] = PropTypes.oneOf(['to_do', 'in_progress', 'on_hold', 'rejected', 'accepted']);
7825
+
7826
+ T['io.flow.v0.models.shopify_merchant_application_put_form'] = PropTypes.exact({
7827
+ discriminator: PropTypes.oneOf(['shopify_merchant_application_put_form']).isRequired,
7828
+ status: T['io.flow.v0.enums.onboarding_application_status'],
7829
+ });
7830
+
7831
+ T['io.flow.v0.models.common_merchant_application_put_form'] = PropTypes.exact({
7832
+ discriminator: PropTypes.oneOf(['common_merchant_application_put_form']).isRequired,
7833
+ status: T['io.flow.v0.enums.onboarding_application_status'],
7834
+ });
7835
+
7836
+ T['io.flow.v0.unions.merchant_application_put_form'] = PropTypes.oneOfType([
7837
+ T['io.flow.v0.models.shopify_merchant_application_put_form'],
7838
+ T['io.flow.v0.models.common_merchant_application_put_form'],
7839
+ ]);
7840
+
7841
+ T['io.flow.v0.models.onboarding_organization_reference'] = PropTypes.exact({
7842
+ id: PropTypes.string.isRequired,
7843
+ status: T['io.flow.v0.enums.organization_status'].isRequired,
7844
+ });
7845
+
7846
+ T['io.flow.v0.models.card_payment_source_form'] = PropTypes.exact({
7847
+ discriminator: PropTypes.oneOf(['card_payment_source_form']).isRequired,
7848
+ customer_number: PropTypes.string.isRequired,
7849
+ card_id: PropTypes.string.isRequired,
7850
+ });
7851
+
7852
+ T['io.flow.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
7853
+ T['io.flow.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.v0.models.device_details_browser']]);
7854
+
7855
+ T['io.flow.v0.models.order_options'] = PropTypes.exact({
7856
+ storage: T['io.flow.v0.enums.order_storage'].isRequired,
7857
+ });
7858
+
7859
+ T['io.flow.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
7708
7860
 
7709
7861
  T['io.flow.v0.models.order_builder_delivered_duty_form'] = PropTypes.exact({
7710
7862
  delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
@@ -8023,6 +8175,8 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
8023
8175
  'merchant_refund',
8024
8176
  'ge_revenue_share',
8025
8177
  'merchant_fee',
8178
+ 'b2b_tax',
8179
+ 'b2b_tax_refund',
8026
8180
  ]);
8027
8181
 
8028
8182
  T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
@@ -8055,6 +8209,11 @@ T['io.flow.v0.models.settlement_no_payout'] = PropTypes.exact({
8055
8209
 
8056
8210
  T['io.flow.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
8057
8211
 
8212
+ T['io.flow.v0.models.external_order_summary'] = PropTypes.exact({
8213
+ id: PropTypes.string.isRequired,
8214
+ edit_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
8215
+ });
8216
+
8058
8217
  T['io.flow.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
8059
8218
  code: T['io.flow.v0.enums.channel_shopify_order_state_reason_code'].isRequired,
8060
8219
  message: PropTypes.string.isRequired,
@@ -8062,6 +8221,14 @@ T['io.flow.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
8062
8221
 
8063
8222
  T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'] = PropTypes.oneOf(['accepted', 'rejected', 'review', 'edit_review', 'edit_accepted']);
8064
8223
 
8224
+ T['io.flow.channel.shopify.v0.models.channel_shopify_order_state'] = PropTypes.exact({
8225
+ id: PropTypes.string.isRequired,
8226
+ shopify_order_summary: T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'].isRequired,
8227
+ status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
8228
+ reasons: PropTypes.arrayOf(T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason']),
8229
+ external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
8230
+ });
8231
+
8065
8232
  T['io.flow.channel.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact({
8066
8233
  status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
8067
8234
  });
@@ -8082,6 +8249,7 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exa
8082
8249
  order_updated_at: PropTypes.string,
8083
8250
  order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
8084
8251
  payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
8252
+ external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
8085
8253
  });
8086
8254
 
8087
8255
  T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
@@ -8099,6 +8267,7 @@ T['io.flow.v0.models.channel_shopify_order_state'] = PropTypes.exact({
8099
8267
  shopify_order_summary: T['io.flow.v0.models.channel_shopify_order_summary'].isRequired,
8100
8268
  status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
8101
8269
  reasons: PropTypes.arrayOf(T['io.flow.v0.models.channel_shopify_order_state_reason']),
8270
+ external_order_summary: T['io.flow.v0.models.external_order_summary'],
8102
8271
  });
8103
8272
 
8104
8273
  T['io.flow.v0.models.channel_shopify_order_state_upserted'] = PropTypes.exact({
@@ -8403,17 +8572,6 @@ T['io.flow.v0.models.organization_authorization'] = PropTypes.exact({
8403
8572
  environment: T['io.flow.v0.enums.environment'].isRequired,
8404
8573
  });
8405
8574
 
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
8575
  T['io.flow.v0.models.channel'] = PropTypes.exact({
8418
8576
  id: PropTypes.string.isRequired,
8419
8577
  name: PropTypes.string.isRequired,
@@ -8953,7 +9111,7 @@ T['io.flow.v0.models.capture_error'] = PropTypes.exact({
8953
9111
  decline_code: T['io.flow.v0.enums.capture_decline_code'].isRequired,
8954
9112
  });
8955
9113
 
8956
- T['io.flow.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor', 'sp']);
9114
+ T['io.flow.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor', 'sp', 'mor_tax']);
8957
9115
  T['io.flow.v0.enums.capture_status'] = PropTypes.oneOf(['initiated', 'pending', 'succeeded', 'failed', 'canceled']);
8958
9116
 
8959
9117
  T['io.flow.v0.models.payment_capture_status'] = PropTypes.exact({
@@ -9398,32 +9556,7 @@ T['io.flow.v0.models.bank_account_info_usa'] = PropTypes.exact({
9398
9556
  account_number: PropTypes.string.isRequired,
9399
9557
  });
9400
9558
 
9401
- T['io.flow.v0.unions.bank_account_info'] = PropTypes.oneOfType([
9402
- T['io.flow.v0.models.bank_account_info_usa'],
9403
- T['io.flow.v0.models.bank_account_info_can'],
9404
- T['io.flow.v0.models.bank_account_info_gbr'],
9405
- T['io.flow.v0.models.bank_account_info_fra'],
9406
- T['io.flow.v0.models.bank_account_info_ita'],
9407
- ]);
9408
-
9409
- T['io.flow.v0.models.bank_account_form_info'] = PropTypes.exact({
9410
- discriminator: PropTypes.oneOf(['info']).isRequired,
9411
- info: T['io.flow.v0.unions.bank_account_info'].isRequired,
9412
- });
9413
-
9414
- T['io.flow.v0.unions.bank_account_form'] = PropTypes.oneOfType([
9415
- T['io.flow.v0.models.bank_account_form_info'],
9416
- T['io.flow.v0.models.bank_account_form_simple'],
9417
- ]);
9418
-
9419
9559
  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
9560
  T['io.flow.v0.enums.consumer_invoice_document_type'] = PropTypes.oneOf(['pdf']);
9428
9561
 
9429
9562
  T['io.flow.v0.models.entity_identifier'] = PropTypes.exact({
@@ -9435,6 +9568,8 @@ T['io.flow.v0.models.entity_identifier'] = PropTypes.exact({
9435
9568
  T['io.flow.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
9436
9569
  number: PropTypes.string.isRequired,
9437
9570
  country: PropTypes.string.isRequired,
9571
+ province_number: PropTypes.string,
9572
+ province: PropTypes.string,
9438
9573
  });
9439
9574
 
9440
9575
  T['io.flow.v0.models.organization_reference'] = PropTypes.exact({
@@ -9596,6 +9731,12 @@ T['io.flow.v0.models.channel_organization_upserted'] = PropTypes.exact({
9596
9731
  channel_organization: T['io.flow.v0.models.channel_organization'].isRequired,
9597
9732
  });
9598
9733
 
9734
+ T['io.flow.v0.models.consumer_invoice_order_summary'] = PropTypes.exact({
9735
+ id: PropTypes.string.isRequired,
9736
+ number: PropTypes.string.isRequired,
9737
+ submitted_at: PropTypes.string.isRequired,
9738
+ });
9739
+
9599
9740
  T['io.flow.v0.enums.b2b_invoice_type'] = PropTypes.oneOf(['self_bill_invoice', 'invoice']);
9600
9741
 
9601
9742
  T['io.flow.v0.models.consumer_invoice_document'] = PropTypes.exact({
@@ -10218,7 +10359,7 @@ T['io.flow.v0.models.ge_product_restriction_result_upsert'] = PropTypes.exact({
10218
10359
  organization: PropTypes.string.isRequired,
10219
10360
  event_id: PropTypes.string.isRequired,
10220
10361
  event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
10221
- environment: T['io.flow.v0.enums.environment'].isRequired,
10362
+ environment: T['io.flow.v0.enums.restriction_environment'].isRequired,
10222
10363
  timestamp: PropTypes.string.isRequired,
10223
10364
  operation: T['io.flow.v0.enums.change_type'].isRequired,
10224
10365
  ge_product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
@@ -10229,7 +10370,7 @@ T['io.flow.v0.models.ge_product_restriction_result_delete'] = PropTypes.exact({
10229
10370
  organization: PropTypes.string.isRequired,
10230
10371
  event_id: PropTypes.string.isRequired,
10231
10372
  event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
10232
- environment: T['io.flow.v0.enums.environment'].isRequired,
10373
+ environment: T['io.flow.v0.enums.restriction_environment'].isRequired,
10233
10374
  timestamp: PropTypes.string.isRequired,
10234
10375
  id: PropTypes.string.isRequired,
10235
10376
  operation: T['io.flow.v0.enums.change_type'].isRequired,
@@ -10329,7 +10470,7 @@ T['io.flow.v0.models.attribute_upserted_v2'] = PropTypes.exact({
10329
10470
  attribute: T['io.flow.v0.models.attribute'].isRequired,
10330
10471
  });
10331
10472
 
10332
- T['io.flow.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv']);
10473
+ T['io.flow.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv', 'pdf']);
10333
10474
 
10334
10475
  T['io.flow.v0.models.attachment'] = PropTypes.exact({
10335
10476
  type: T['io.flow.v0.enums.statement_attachment_type'].isRequired,
@@ -10386,9 +10527,6 @@ T['io.flow.v0.models.channel_statement_deleted'] = PropTypes.exact({
10386
10527
  channel_statement: T['io.flow.v0.models.channel_statement'].isRequired,
10387
10528
  });
10388
10529
 
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
10530
  T['io.flow.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
10393
10531
  'adjustment',
10394
10532
  'subtotal',
@@ -11002,206 +11140,6 @@ T['io.flow.v0.models.allocation_order_summary'] = PropTypes.exact({
11002
11140
  submitted_at: PropTypes.string,
11003
11141
  });
11004
11142
 
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
11143
  T['io.flow.v0.models.adyen_challenge_shopper_data'] = PropTypes.exact({
11206
11144
  discriminator: PropTypes.oneOf(['adyen_challenge_shopper_data']).isRequired,
11207
11145
  challenge_token: PropTypes.string.isRequired,
@@ -11365,6 +11303,29 @@ T['io.flow.v0.models.address'] = PropTypes.exact({
11365
11303
  longitude: PropTypes.string,
11366
11304
  });
11367
11305
 
11306
+ T['io.flow.v0.models.tracking_label_event_v2'] = PropTypes.exact({
11307
+ id: PropTypes.string.isRequired,
11308
+ carrier_id: PropTypes.string.isRequired,
11309
+ carrier_tracking_number: PropTypes.string.isRequired,
11310
+ carrier_tracking_url: PropTypes.string,
11311
+ label_id: PropTypes.string.isRequired,
11312
+ order_number: PropTypes.string,
11313
+ status: T['io.flow.v0.enums.tracking_status'].isRequired,
11314
+ substatus: T['io.flow.v0.enums.substatus_code'],
11315
+ carrier_timestamp: PropTypes.string.isRequired,
11316
+ description: PropTypes.string,
11317
+ delivery_estimate: PropTypes.string,
11318
+ address: T['io.flow.v0.models.address'],
11319
+ });
11320
+
11321
+ T['io.flow.v0.models.tracking_label_event_upserted_v2'] = PropTypes.exact({
11322
+ discriminator: PropTypes.oneOf(['tracking_label_event_upserted_v2']).isRequired,
11323
+ event_id: PropTypes.string.isRequired,
11324
+ timestamp: PropTypes.string.isRequired,
11325
+ organization: PropTypes.string.isRequired,
11326
+ tracking_label_event: T['io.flow.v0.models.tracking_label_event_v2'].isRequired,
11327
+ });
11328
+
11368
11329
  T['io.flow.v0.models.tracking_label_event_upserted'] = PropTypes.exact({
11369
11330
  discriminator: PropTypes.oneOf(['tracking_label_event_upserted']).isRequired,
11370
11331
  event_id: PropTypes.string.isRequired,
@@ -11466,6 +11427,48 @@ T['io.flow.v0.models.harmonized_landed_cost_upserted'] = PropTypes.exact({
11466
11427
  landed_cost: T['io.flow.v0.models.harmonized_landed_cost'].isRequired,
11467
11428
  });
11468
11429
 
11430
+ T['io.flow.v0.models.merchant_onboarding_beneficiary_details'] = PropTypes.exact({
11431
+ name: PropTypes.string,
11432
+ address: T['io.flow.v0.models.address'],
11433
+ phone: PropTypes.string,
11434
+ email: PropTypes.string,
11435
+ bank_account_number: PropTypes.string,
11436
+ bank_routing_number: PropTypes.string,
11437
+ bank_name: PropTypes.string,
11438
+ bank_address: T['io.flow.v0.models.address'],
11439
+ });
11440
+
11441
+ T['io.flow.v0.models.bank_account_info_kor'] = PropTypes.exact({
11442
+ discriminator: PropTypes.oneOf(['kor']).isRequired,
11443
+ name: PropTypes.string,
11444
+ address: T['io.flow.v0.models.address'],
11445
+ phone: PropTypes.string,
11446
+ email: PropTypes.string,
11447
+ bank_account_number: PropTypes.string.isRequired,
11448
+ bank_routing_number: PropTypes.string,
11449
+ bank_name: PropTypes.string,
11450
+ bank_address: T['io.flow.v0.models.address'],
11451
+ });
11452
+
11453
+ T['io.flow.v0.unions.bank_account_info'] = PropTypes.oneOfType([
11454
+ T['io.flow.v0.models.bank_account_info_usa'],
11455
+ T['io.flow.v0.models.bank_account_info_can'],
11456
+ T['io.flow.v0.models.bank_account_info_gbr'],
11457
+ T['io.flow.v0.models.bank_account_info_fra'],
11458
+ T['io.flow.v0.models.bank_account_info_ita'],
11459
+ T['io.flow.v0.models.bank_account_info_kor'],
11460
+ ]);
11461
+
11462
+ T['io.flow.v0.models.bank_account_form_info'] = PropTypes.exact({
11463
+ discriminator: PropTypes.oneOf(['info']).isRequired,
11464
+ info: T['io.flow.v0.unions.bank_account_info'].isRequired,
11465
+ });
11466
+
11467
+ T['io.flow.v0.unions.bank_account_form'] = PropTypes.oneOfType([
11468
+ T['io.flow.v0.models.bank_account_form_info'],
11469
+ T['io.flow.v0.models.bank_account_form_simple'],
11470
+ ]);
11471
+
11469
11472
  T['io.flow.v0.models.consumer_invoice_center_reference'] = PropTypes.exact({
11470
11473
  id: PropTypes.string.isRequired,
11471
11474
  key: PropTypes.string.isRequired,
@@ -11656,6 +11659,20 @@ T['io.flow.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
11656
11659
  itemized_estimate: T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'],
11657
11660
  });
11658
11661
 
11662
+ T['io.flow.v0.models.sellability_screening_form'] = PropTypes.exact({
11663
+ discriminator: PropTypes.oneOf(['sellability_screening_form']).isRequired,
11664
+ merchant_id: PropTypes.string.isRequired,
11665
+ product_id: PropTypes.string.isRequired,
11666
+ name: PropTypes.string.isRequired,
11667
+ price: T['io.flow.v0.models.money'].isRequired,
11668
+ description: PropTypes.string.isRequired,
11669
+ taxonomy_category: T['io.flow.v0.models.product_taxonomy_category'].isRequired,
11670
+ mode: T['io.flow.v0.enums.sellability_screening_mode'].isRequired,
11671
+ catalog_size: PropTypes.number,
11672
+ relative_ranking: PropTypes.number,
11673
+ dry_run: PropTypes.bool,
11674
+ });
11675
+
11659
11676
  T['io.flow.v0.models.security_service_fee'] = PropTypes.exact({
11660
11677
  discriminator: PropTypes.oneOf(['security_service_fee']).isRequired,
11661
11678
  amount: T['io.flow.v0.models.money'].isRequired,
@@ -11715,6 +11732,7 @@ T['io.flow.v0.models.remote_area_ratecard_fee'] = PropTypes.exact({
11715
11732
  });
11716
11733
 
11717
11734
  T['io.flow.v0.models.product_sellability_form'] = PropTypes.exact({
11735
+ discriminator: PropTypes.oneOf(['product_sellability_form']).isRequired,
11718
11736
  shop_id: PropTypes.string.isRequired,
11719
11737
  product_id: PropTypes.string,
11720
11738
  name: PropTypes.string.isRequired,
@@ -11725,6 +11743,11 @@ T['io.flow.v0.models.product_sellability_form'] = PropTypes.exact({
11725
11743
  dry_run: PropTypes.bool,
11726
11744
  });
11727
11745
 
11746
+ T['io.flow.v0.unions.sellability_request'] = PropTypes.oneOfType([
11747
+ T['io.flow.v0.models.product_sellability_form'],
11748
+ T['io.flow.v0.models.sellability_screening_form'],
11749
+ ]);
11750
+
11728
11751
  T['io.flow.v0.models.price_source_provided'] = PropTypes.exact({
11729
11752
  discriminator: PropTypes.oneOf(['provided']).isRequired,
11730
11753
  price: T['io.flow.v0.models.money'].isRequired,
@@ -11799,38 +11822,6 @@ T['io.flow.v0.models.invoice_tax_line'] = PropTypes.exact({
11799
11822
  tax_breakdown: PropTypes.arrayOf(T['io.flow.v0.models.tax_breakdown']).isRequired,
11800
11823
  });
11801
11824
 
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
11825
  T['io.flow.v0.models.inbound_carton_fee'] = PropTypes.exact({
11835
11826
  discriminator: PropTypes.oneOf(['inbound_carton_fee']).isRequired,
11836
11827
  amount: T['io.flow.v0.models.money'].isRequired,
@@ -12102,6 +12093,41 @@ T['io.flow.v0.models.capture_deleted'] = PropTypes.exact({
12102
12093
  capture: T['io.flow.v0.models.capture'].isRequired,
12103
12094
  });
12104
12095
 
12096
+ T['io.flow.v0.models.b2b_credit_memo'] = PropTypes.exact({
12097
+ id: PropTypes.string.isRequired,
12098
+ number: PropTypes.string.isRequired,
12099
+ buyer: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
12100
+ seller: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
12101
+ status: T['io.flow.v0.enums.consumer_invoice_status'].isRequired,
12102
+ date: PropTypes.string.isRequired,
12103
+ key: PropTypes.string.isRequired,
12104
+ invoice: T['io.flow.v0.models.b2b_invoice_reference'].isRequired,
12105
+ lines: PropTypes.arrayOf(T['io.flow.v0.unions.consumer_invoice_line']).isRequired,
12106
+ tax_lines: PropTypes.arrayOf(T['io.flow.v0.models.invoice_tax_line']),
12107
+ tax: T['io.flow.v0.models.money'],
12108
+ documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
12109
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
12110
+ b2b_invoice_type: T['io.flow.v0.enums.b2b_invoice_type'].isRequired,
12111
+ center: T['io.flow.v0.models.consumer_invoice_center_reference'],
12112
+ order: T['io.flow.v0.models.consumer_invoice_order_summary'],
12113
+ });
12114
+
12115
+ T['io.flow.v0.models.b2b_credit_memo_upserted'] = PropTypes.exact({
12116
+ discriminator: PropTypes.oneOf(['b2b_credit_memo_upserted']).isRequired,
12117
+ event_id: PropTypes.string.isRequired,
12118
+ timestamp: PropTypes.string.isRequired,
12119
+ organization: PropTypes.string.isRequired,
12120
+ b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
12121
+ });
12122
+
12123
+ T['io.flow.v0.models.b2b_credit_memo_deleted'] = PropTypes.exact({
12124
+ discriminator: PropTypes.oneOf(['b2b_credit_memo_deleted']).isRequired,
12125
+ event_id: PropTypes.string.isRequired,
12126
+ timestamp: PropTypes.string.isRequired,
12127
+ organization: PropTypes.string.isRequired,
12128
+ b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
12129
+ });
12130
+
12105
12131
  T['io.flow.v0.models.amount_margin_form'] = PropTypes.exact({
12106
12132
  discriminator: PropTypes.oneOf(['amount_margin_form']).isRequired,
12107
12133
  margin: T['io.flow.v0.models.money'].isRequired,
@@ -12534,6 +12560,7 @@ T['io.flow.v0.models.emergency_situation_surcharge_service_fee'] = PropTypes.exa
12534
12560
  amount: T['io.flow.v0.models.money'].isRequired,
12535
12561
  origin_region: T['io.flow.v0.models.ratecard_region_reference'],
12536
12562
  destination_region: T['io.flow.v0.models.ratecard_region_reference'],
12563
+ destination_regions: PropTypes.arrayOf(T['io.flow.v0.models.ratecard_region_reference']),
12537
12564
  interval_unit: T['io.flow.v0.enums.unit_of_measurement'],
12538
12565
  });
12539
12566
 
@@ -12566,6 +12593,27 @@ T['io.flow.v0.models.tax_duty_quote_form'] = PropTypes.exact({
12566
12593
  includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']),
12567
12594
  });
12568
12595
 
12596
+ T['io.flow.v0.models.shipping_rate_estimate_available'] = PropTypes.exact({
12597
+ service: T['io.flow.v0.models.ratecard_service_summary'].isRequired,
12598
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
12599
+ shipment_window: T['io.flow.v0.models.shipment_window'].isRequired,
12600
+ total_amount: T['io.flow.v0.models.money'].isRequired,
12601
+ base_amount: T['io.flow.v0.models.money'].isRequired,
12602
+ fees: PropTypes.arrayOf(T['io.flow.v0.unions.ratecard_fee']).isRequired,
12603
+ dimensional_weight: T['io.flow.v0.models.measurement'],
12604
+ gravitational_weight: T['io.flow.v0.models.measurement'],
12605
+ weight_break: PropTypes.number,
12606
+ });
12607
+
12608
+ T['io.flow.v0.models.shipping_rate_estimate'] = PropTypes.exact({
12609
+ origin_address: T['io.flow.v0.models.address'].isRequired,
12610
+ destination_address: T['io.flow.v0.models.address'].isRequired,
12611
+ shipping_date_time: PropTypes.string.isRequired,
12612
+ services: PropTypes.arrayOf(PropTypes.string).isRequired,
12613
+ available: PropTypes.arrayOf(T['io.flow.v0.models.shipping_rate_estimate_available']).isRequired,
12614
+ unavailable: PropTypes.arrayOf(T['io.flow.v0.models.shipping_rate_estimate_unavailable']),
12615
+ });
12616
+
12569
12617
  T['io.flow.v0.models.estimated_dimensions'] = PropTypes.exact({
12570
12618
  depth: T['io.flow.v0.models.measurement'].isRequired,
12571
12619
  length: T['io.flow.v0.models.measurement'].isRequired,
@@ -12595,6 +12643,11 @@ T['io.flow.v0.models.dimension_estimate_version'] = PropTypes.exact({
12595
12643
  dimension_estimate: T['io.flow.v0.models.dimension_estimate'].isRequired,
12596
12644
  });
12597
12645
 
12646
+ T['io.flow.v0.models.option_weight_estimates'] = PropTypes.exact({
12647
+ gravitational: T['io.flow.v0.models.measurement'].isRequired,
12648
+ dimensional: T['io.flow.v0.models.measurement'].isRequired,
12649
+ });
12650
+
12598
12651
  T['io.flow.v0.models.dimension'] = PropTypes.exact({
12599
12652
  depth: T['io.flow.v0.models.measurement'],
12600
12653
  diameter: T['io.flow.v0.models.measurement'],
@@ -12629,6 +12682,7 @@ T['io.flow.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
12629
12682
  third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.v0.models.third_party_logistics_partner']),
12630
12683
  center_contact: T['io.flow.v0.models.operations_contact'],
12631
12684
  average_order_weight: PropTypes.number,
12685
+ average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12632
12686
  package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
12633
12687
  monthly_average_volume_amount: PropTypes.number,
12634
12688
  monthly_average_volume_currency: PropTypes.string,
@@ -12643,8 +12697,6 @@ T['io.flow.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
12643
12697
  mcc_codes: PropTypes.arrayOf(PropTypes.number),
12644
12698
  });
12645
12699
 
12646
- T['io.flow.v0.unions.merchant_application_form'] = PropTypes.oneOfType([T['io.flow.v0.models.shopify_merchant_application_form']]);
12647
-
12648
12700
  T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
12649
12701
  discriminator: PropTypes.oneOf(['shopify_merchant_application']).isRequired,
12650
12702
  id: PropTypes.string.isRequired,
@@ -12666,6 +12718,7 @@ T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
12666
12718
  third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.v0.models.third_party_logistics_partner']),
12667
12719
  center_contact: T['io.flow.v0.models.operations_contact'],
12668
12720
  average_order_weight: PropTypes.number,
12721
+ average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12669
12722
  package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
12670
12723
  monthly_average: T['io.flow.v0.models.monthly_average'],
12671
12724
  default_country_of_origin: PropTypes.string,
@@ -12682,22 +12735,6 @@ T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
12682
12735
  mcc_codes: PropTypes.arrayOf(PropTypes.number),
12683
12736
  });
12684
12737
 
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
12738
  T['io.flow.v0.models.package_dimensions_form'] = PropTypes.exact({
12702
12739
  dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']).isRequired,
12703
12740
  });
@@ -12864,9 +12901,89 @@ T['io.flow.v0.models.packaging'] = PropTypes.exact({
12864
12901
  number: PropTypes.string,
12865
12902
  });
12866
12903
 
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,
12904
+ T['io.flow.v0.models.common_merchant_application_form'] = PropTypes.exact({
12905
+ discriminator: PropTypes.oneOf(['common_merchant_application_form']).isRequired,
12906
+ company: T['io.flow.v0.models.merchant_info'],
12907
+ indirect_tax: T['io.flow.v0.models.indirect_tax'],
12908
+ ultimate_beneficiary_owner: T['io.flow.v0.models.ultimate_beneficiary_owner'],
12909
+ business_url: PropTypes.string,
12910
+ business_description: PropTypes.string,
12911
+ business_address: T['io.flow.v0.models.address'],
12912
+ refund_percentage: PropTypes.number,
12913
+ chargeback_percentage: PropTypes.number,
12914
+ beneficiary_details: T['io.flow.v0.models.merchant_onboarding_beneficiary_details'],
12915
+ other_trade_sector: PropTypes.string,
12916
+ center_contact: T['io.flow.v0.models.operations_contact'],
12917
+ center_address: T['io.flow.v0.models.address'],
12918
+ average_order_weight: PropTypes.number,
12919
+ average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12920
+ package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
12921
+ monthly_average_volume_amount: PropTypes.number,
12922
+ monthly_average_volume_currency: PropTypes.string,
12923
+ monthly_average_number_transactions: PropTypes.number,
12924
+ default_country_of_origin: PropTypes.string,
12925
+ shop: T['io.flow.v0.models.shop'],
12926
+ rate_card: PropTypes.string,
12927
+ last_year_xborder_gmv: T['io.flow.v0.models.money'],
12928
+ last_month_xborder_gmv: T['io.flow.v0.models.money'],
12929
+ average_order_value: T['io.flow.v0.models.money'],
12930
+ mcc_codes: PropTypes.arrayOf(PropTypes.number),
12931
+ });
12932
+
12933
+ T['io.flow.v0.unions.merchant_application_form'] = PropTypes.oneOfType([
12934
+ T['io.flow.v0.models.shopify_merchant_application_form'],
12935
+ T['io.flow.v0.models.common_merchant_application_form'],
12936
+ ]);
12937
+
12938
+ T['io.flow.v0.models.common_merchant_application'] = PropTypes.exact({
12939
+ discriminator: PropTypes.oneOf(['common_merchant_application']).isRequired,
12940
+ id: PropTypes.string.isRequired,
12941
+ organization_id: PropTypes.string.isRequired,
12942
+ organization_reference: T['io.flow.v0.models.onboarding_organization_reference'].isRequired,
12943
+ status: T['io.flow.v0.enums.onboarding_application_status'].isRequired,
12944
+ company: T['io.flow.v0.models.merchant_info'],
12945
+ indirect_tax: T['io.flow.v0.models.indirect_tax'],
12946
+ ultimate_beneficiary_owner: T['io.flow.v0.models.ultimate_beneficiary_owner'],
12947
+ business_url: PropTypes.string,
12948
+ business_description: PropTypes.string,
12949
+ business_address: T['io.flow.v0.models.address'],
12950
+ refund_percentage: PropTypes.number,
12951
+ chargeback_percentage: PropTypes.number,
12952
+ beneficiary_details: T['io.flow.v0.models.merchant_onboarding_beneficiary_details'],
12953
+ other_trade_sector: PropTypes.string,
12954
+ center_contact: T['io.flow.v0.models.operations_contact'],
12955
+ center_address: T['io.flow.v0.models.address'],
12956
+ average_order_weight: PropTypes.number,
12957
+ average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12958
+ package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
12959
+ monthly_average: T['io.flow.v0.models.monthly_average'],
12960
+ default_country_of_origin: PropTypes.string,
12961
+ rate_card: PropTypes.string.isRequired,
12962
+ shop: T['io.flow.v0.models.shop'],
12963
+ created_at: PropTypes.string.isRequired,
12964
+ last_year_xborder_gmv: T['io.flow.v0.models.money'],
12965
+ last_month_xborder_gmv: T['io.flow.v0.models.money'],
12966
+ average_order_value: T['io.flow.v0.models.money'],
12967
+ mcc_codes: PropTypes.arrayOf(PropTypes.number),
12968
+ });
12969
+
12970
+ T['io.flow.v0.unions.merchant_application'] = PropTypes.oneOfType([
12971
+ T['io.flow.v0.models.shopify_merchant_application'],
12972
+ T['io.flow.v0.models.common_merchant_application'],
12973
+ ]);
12974
+
12975
+ T['io.flow.v0.models.merchant_application_upserted'] = PropTypes.exact({
12976
+ discriminator: PropTypes.oneOf(['merchant_application_upserted']).isRequired,
12977
+ event_id: PropTypes.string.isRequired,
12978
+ timestamp: PropTypes.string.isRequired,
12979
+ merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
12980
+ });
12981
+
12982
+ T['io.flow.v0.models.merchant_application_deleted'] = PropTypes.exact({
12983
+ discriminator: PropTypes.oneOf(['merchant_application_deleted']).isRequired,
12984
+ event_id: PropTypes.string.isRequired,
12985
+ timestamp: PropTypes.string.isRequired,
12986
+ merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
12870
12987
  });
12871
12988
 
12872
12989
  T['io.flow.v0.models.additional_handling_service_fee'] = PropTypes.exact({
@@ -13116,6 +13233,7 @@ T['io.flow.v0.models.payment_request'] = PropTypes.exact({
13116
13233
  supported_actions: PropTypes.arrayOf(T['io.flow.v0.enums.payment_action_type']).isRequired,
13117
13234
  payment_capture_option: T['io.flow.v0.unions.payment_capture_option'],
13118
13235
  review: T['io.flow.v0.models.payment_request_review'],
13236
+ client_secret: PropTypes.string,
13119
13237
  });
13120
13238
 
13121
13239
  T['io.flow.v0.models.payment_request_upserted'] = PropTypes.exact({
@@ -13716,6 +13834,22 @@ T['io.flow.v0.models.shopify_order_romanization_metafield'] = PropTypes.exact({
13716
13834
  billing: T['io.flow.v0.models.billing_address'],
13717
13835
  });
13718
13836
 
13837
+ T['io.flow.v0.models.organization_tax_registration'] = PropTypes.exact({
13838
+ id: PropTypes.string.isRequired,
13839
+ organization: T['io.flow.v0.models.organization_summary'].isRequired,
13840
+ address: T['io.flow.v0.models.billing_address'].isRequired,
13841
+ registration: T['io.flow.v0.models.tax_registration_detail'].isRequired,
13842
+ self_billing_agreement: T['io.flow.v0.models.self_billing_agreement'].isRequired,
13843
+ });
13844
+
13845
+ T['io.flow.v0.models.tax_registration_upserted'] = PropTypes.exact({
13846
+ discriminator: PropTypes.oneOf(['tax_registration_upserted']).isRequired,
13847
+ event_id: PropTypes.string.isRequired,
13848
+ timestamp: PropTypes.string.isRequired,
13849
+ organization: PropTypes.string.isRequired,
13850
+ tax_registration: T['io.flow.v0.models.organization_tax_registration'].isRequired,
13851
+ });
13852
+
13719
13853
  T['io.flow.v0.models.order_builder_customer_invoice_address_form'] = PropTypes.exact({
13720
13854
  address: T['io.flow.v0.models.billing_address'].isRequired,
13721
13855
  });
@@ -13811,6 +13945,8 @@ T['io.flow.v0.models.credit_memo'] = PropTypes.exact({
13811
13945
  documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
13812
13946
  attributes: PropTypes.objectOf(PropTypes.string).isRequired,
13813
13947
  tax_registration: T['io.flow.v0.models.tax_registration'],
13948
+ center: T['io.flow.v0.models.consumer_invoice_center_reference'],
13949
+ order: T['io.flow.v0.models.consumer_invoice_order_summary'],
13814
13950
  });
13815
13951
 
13816
13952
  T['io.flow.v0.models.credit_memo_upserted'] = PropTypes.exact({
@@ -13948,6 +14084,7 @@ T['io.flow.v0.models.order'] = PropTypes.exact({
13948
14084
  payment_source: T['io.flow.v0.enums.order_payment_source_type'],
13949
14085
  edits: PropTypes.arrayOf(T['io.flow.v0.models.edit_summary']),
13950
14086
  rates: PropTypes.arrayOf(T['io.flow.v0.models.order_rate']),
14087
+ pricing_type: T['io.flow.v0.enums.pricing_type'],
13951
14088
  });
13952
14089
 
13953
14090
  T['io.flow.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
@@ -14378,6 +14515,17 @@ T['io.flow.v0.models.summary_shipping_label_form'] = PropTypes.exact({
14378
14515
  reference_id: PropTypes.string,
14379
14516
  });
14380
14517
 
14518
+ T['io.flow.v0.models.shipping_rate_estimate_request'] = PropTypes.exact({
14519
+ origin_address: T['io.flow.v0.models.address'].isRequired,
14520
+ destination_address: T['io.flow.v0.models.address'].isRequired,
14521
+ package_dimensions: T['io.flow.v0.models.dimension'].isRequired,
14522
+ shipping_date_time: PropTypes.string.isRequired,
14523
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'],
14524
+ duties_owed: T['io.flow.v0.models.money'],
14525
+ taxes_owed: T['io.flow.v0.models.money'],
14526
+ line_items: PropTypes.arrayOf(T['io.flow.v0.models.line_item_form']),
14527
+ });
14528
+
14381
14529
  T['io.flow.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
14382
14530
  discriminator: PropTypes.oneOf(['ratecard_estimate_v4']).isRequired,
14383
14531
  hops: PropTypes.arrayOf(T['io.flow.v0.models.hop_v2']).isRequired,
@@ -14450,6 +14598,7 @@ T['io.flow.v0.models.ratecard_estimate_form'] = PropTypes.exact({
14450
14598
  center_id: PropTypes.string,
14451
14599
  taxes_owed: T['io.flow.v0.models.money'],
14452
14600
  duties_owed: T['io.flow.v0.models.money'],
14601
+ commercial_invoice_mode: T['io.flow.v0.enums.commercial_invoice_mode'],
14453
14602
  });
14454
14603
 
14455
14604
  T['io.flow.v0.models.order_replacement_form'] = PropTypes.exact({
@@ -14658,20 +14807,6 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
14658
14807
  T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14659
14808
  T['io.flow.v0.models.test_upserted'],
14660
14809
  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
14810
  T['io.flow.v0.models.transaction_upserted'],
14676
14811
  T['io.flow.v0.models.organization_transaction_upserted'],
14677
14812
  T['io.flow.v0.models.organization_transaction_deleted'],
@@ -14778,6 +14913,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14778
14913
  T['io.flow.v0.models.organization_deleted_v2'],
14779
14914
  T['io.flow.v0.models.ecommerce_platform_upserted'],
14780
14915
  T['io.flow.v0.models.ecommerce_platform_deleted'],
14916
+ T['io.flow.v0.models.tax_registration_upserted'],
14917
+ T['io.flow.v0.models.tax_registration_deleted'],
14781
14918
  T['io.flow.v0.models.organization_onboarding_state_upserted'],
14782
14919
  T['io.flow.v0.models.organization_onboarding_state_deleted'],
14783
14920
  T['io.flow.v0.models.authorization_deleted_v2'],
@@ -14825,9 +14962,12 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14825
14962
  T['io.flow.v0.models.ratecard_deleted'],
14826
14963
  T['io.flow.v0.models.product_restriction_result_upserted'],
14827
14964
  T['io.flow.v0.models.product_restriction_result_deleted'],
14965
+ T['io.flow.v0.models.product_sellability_result_upserted'],
14966
+ T['io.flow.v0.models.product_sellability_result_deleted'],
14828
14967
  T['io.flow.v0.models.shopify_localization_setting_upserted'],
14829
14968
  T['io.flow.v0.models.shopify_localization_setting_deleted'],
14830
14969
  T['io.flow.v0.models.tracking_label_event_upserted'],
14970
+ T['io.flow.v0.models.tracking_label_event_upserted_v2'],
14831
14971
  ]);
14832
14972
 
14833
14973
  T['io.flow.v0.models.detailed_shipping_notification_form'] = PropTypes.exact({
@@ -15016,20 +15156,6 @@ T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
15016
15156
  T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15017
15157
  'test_upserted',
15018
15158
  '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
15159
  'transaction_upserted',
15034
15160
  'organization_transaction_upserted',
15035
15161
  'organization_transaction_deleted',
@@ -15136,6 +15262,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15136
15262
  'organization_deleted_v2',
15137
15263
  'ecommerce_platform_upserted',
15138
15264
  'ecommerce_platform_deleted',
15265
+ 'tax_registration_upserted',
15266
+ 'tax_registration_deleted',
15139
15267
  'organization_onboarding_state_upserted',
15140
15268
  'organization_onboarding_state_deleted',
15141
15269
  'authorization_deleted_v2',
@@ -15183,9 +15311,12 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15183
15311
  'ratecard_deleted',
15184
15312
  'product_restriction_result_upserted',
15185
15313
  'product_restriction_result_deleted',
15314
+ 'product_sellability_result_upserted',
15315
+ 'product_sellability_result_deleted',
15186
15316
  'shopify_localization_setting_upserted',
15187
15317
  'shopify_localization_setting_deleted',
15188
15318
  'tracking_label_event_upserted',
15319
+ 'tracking_label_event_upserted_v2',
15189
15320
  ]);
15190
15321
 
15191
15322
  T['io.flow.v0.enums.fraud_liability'] = PropTypes.oneOf(['flow', 'organization']);
@@ -15230,51 +15361,6 @@ T['io.flow.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open', 'Clos
15230
15361
  T['io.flow.v0.enums.shopify_grant'] = PropTypes.oneOf(['customer', 'discount', 'gift_card', 'metafield', 'order']);
15231
15362
  T['io.flow.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
15232
15363
  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
15364
  T['io.flow.v0.enums.tax_type'] = PropTypes.oneOf(['vat', 'gst', 'hst', 'pst', 'qst', 'sales_tax']);
15279
15365
  T['io.flow.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
15280
15366
  T['io.flow.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
@@ -15714,6 +15800,14 @@ T['io.flow.v0.models.organization_bank_account'] = PropTypes.exact({
15714
15800
  last4: PropTypes.string.isRequired,
15715
15801
  });
15716
15802
 
15803
+ T['io.flow.v0.models.organization_tax_registration_form'] = PropTypes.exact({
15804
+ tax_number: PropTypes.string.isRequired,
15805
+ country: PropTypes.string.isRequired,
15806
+ province: PropTypes.string,
15807
+ self_billing_agreement_effective_at: PropTypes.string.isRequired,
15808
+ self_billing_agreement_expires_at: PropTypes.string,
15809
+ });
15810
+
15717
15811
  T['io.flow.v0.models.organization_token_form_v2'] = PropTypes.exact({
15718
15812
  organization_id: PropTypes.string.isRequired,
15719
15813
  description: PropTypes.string,
@@ -15826,6 +15920,11 @@ T['io.flow.v0.models.reversal_put_form'] = PropTypes.exact({
15826
15920
  attributes: PropTypes.objectOf(PropTypes.string),
15827
15921
  });
15828
15922
 
15923
+ T['io.flow.v0.models.sellability_region_with_reasons'] = PropTypes.exact({
15924
+ region: PropTypes.string.isRequired,
15925
+ reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
15926
+ });
15927
+
15829
15928
  T['io.flow.v0.models.session_authorization_form'] = PropTypes.exact({
15830
15929
  session: PropTypes.string.isRequired,
15831
15930
  });
@@ -16290,15 +16389,6 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
16290
16389
  paymentData: PropTypes.object.isRequired,
16291
16390
  });
16292
16391
 
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
16392
  T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
16303
16393
  name: PropTypes.string.isRequired,
16304
16394
  });
@@ -16354,8 +16444,6 @@ export const adyenNativeActionDetails = T['io.flow.v0.models.adyen_native_action
16354
16444
  export const adyenNativeData = T['io.flow.v0.unions.adyen_native_data'];
16355
16445
  export const adyenV3ChallengeToken = T['io.flow.v0.models.adyen_v3_challenge_token'];
16356
16446
  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
16447
  export const allocation = T['io.flow.v0.models.allocation'];
16360
16448
  export const allocationComponent = T['io.flow.v0.unions.allocation_component'];
16361
16449
  export const allocationDeletedV2 = T['io.flow.v0.models.allocation_deleted_v2'];
@@ -16373,10 +16461,6 @@ export const allocationV2 = T['io.flow.v0.models.allocation_v2'];
16373
16461
  export const amountMargin = T['io.flow.v0.models.amount_margin'];
16374
16462
  export const amountMarginForm = T['io.flow.v0.models.amount_margin_form'];
16375
16463
  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
16464
  export const applePayMerchantValidationPayload = T['io.flow.v0.models.apple_pay_merchant_validation_payload'];
16381
16465
  export const applepaySdkCreateResultActionDetails = T['io.flow.v0.models.applepay_sdk_create_result_action_details'];
16382
16466
  export const applepaySdkValidateResultActionDetails = T['io.flow.v0.models.applepay_sdk_validate_result_action_details'];
@@ -16449,6 +16533,7 @@ export const bankAccountInfoCan = T['io.flow.v0.models.bank_account_info_can'];
16449
16533
  export const bankAccountInfoFra = T['io.flow.v0.models.bank_account_info_fra'];
16450
16534
  export const bankAccountInfoGbr = T['io.flow.v0.models.bank_account_info_gbr'];
16451
16535
  export const bankAccountInfoIta = T['io.flow.v0.models.bank_account_info_ita'];
16536
+ export const bankAccountInfoKor = T['io.flow.v0.models.bank_account_info_kor'];
16452
16537
  export const bankAccountInfoUsa = T['io.flow.v0.models.bank_account_info_usa'];
16453
16538
  export const bankAccountReference = T['io.flow.v0.models.bank_account_reference'];
16454
16539
  export const bankAccountSummary = T['io.flow.v0.models.bank_account_summary'];
@@ -16595,6 +16680,11 @@ export const checkoutUrls = T['io.flow.v0.models.checkout_urls'];
16595
16680
  export const checkoutUrlsForm = T['io.flow.v0.models.checkout_urls_form'];
16596
16681
  export const cleartext = T['io.flow.v0.models.cleartext'];
16597
16682
  export const commercialInvoiceFee = T['io.flow.v0.models.commercial_invoice_fee'];
16683
+ export const commercialInvoiceMode = T['io.flow.v0.enums.commercial_invoice_mode'];
16684
+ export const commonMerchantApplication = T['io.flow.v0.models.common_merchant_application'];
16685
+ export const commonMerchantApplicationForm = T['io.flow.v0.models.common_merchant_application_form'];
16686
+ export const commonMerchantApplicationPutForm = T['io.flow.v0.models.common_merchant_application_put_form'];
16687
+ export const commonMerchantApplicationsSummary = T['io.flow.v0.models.common_merchant_applications_summary'];
16598
16688
  export const company = T['io.flow.v0.models.company'];
16599
16689
  export const confirmationDetails = T['io.flow.v0.unions.confirmation_details'];
16600
16690
  export const consumerInvoice = T['io.flow.v0.models.consumer_invoice'];
@@ -16853,6 +16943,7 @@ export const exportType = T['io.flow.v0.unions.export_type'];
16853
16943
  export const exportVersion = T['io.flow.v0.models.export_version'];
16854
16944
  export const exporterOfRecord = T['io.flow.v0.enums.exporter_of_record'];
16855
16945
  export const externalCard = T['io.flow.v0.models.external_card'];
16946
+ export const externalOrderSummary = T['io.flow.v0.models.external_order_summary'];
16856
16947
  export const feeDeduction = T['io.flow.v0.models.fee_deduction'];
16857
16948
  export const feeDeductionType = T['io.flow.v0.enums.fee_deduction_type'];
16858
16949
  export const feeWeight = T['io.flow.v0.models.fee_weight'];
@@ -16959,8 +17050,6 @@ export const hop = T['io.flow.v0.models.hop'];
16959
17050
  export const hopEstimate = T['io.flow.v0.models.hop_estimate'];
16960
17051
  export const hopEstimateV2 = T['io.flow.v0.models.hop_estimate_v2'];
16961
17052
  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
17053
  export const hs10 = T['io.flow.v0.models.hs10'];
16965
17054
  export const hs10CodeDeleted = T['io.flow.v0.models.hs10_code_deleted'];
16966
17055
  export const hs10CodeUpserted = T['io.flow.v0.models.hs10_code_upserted'];
@@ -17150,6 +17239,7 @@ export const merchantOfRecordEntity = T['io.flow.v0.models.merchant_of_record_en
17150
17239
  export const merchantOfRecordEntityRegistration = T['io.flow.v0.models.merchant_of_record_entity_registration'];
17151
17240
  export const merchantOfRecordPaymentForm = T['io.flow.v0.models.merchant_of_record_payment_form'];
17152
17241
  export const merchantOnboardingAddress = T['io.flow.v0.models.merchant_onboarding_address'];
17242
+ export const merchantOnboardingBeneficiaryDetails = T['io.flow.v0.models.merchant_onboarding_beneficiary_details'];
17153
17243
  export const merchantRejected = T['io.flow.v0.models.merchant_rejected'];
17154
17244
  export const merchantRejectedReason = T['io.flow.v0.enums.merchant_rejected_reason'];
17155
17245
  export const method = T['io.flow.v0.enums.method'];
@@ -17161,8 +17251,6 @@ export const monthlyAverageVolume = T['io.flow.v0.models.monthly_average_volume'
17161
17251
  export const name = T['io.flow.v0.models.name'];
17162
17252
  export const nameForm = T['io.flow.v0.models.name_form'];
17163
17253
  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
17254
  export const notificationDeletedV2 = T['io.flow.v0.models.notification_deleted_v2'];
17167
17255
  export const notificationUpsertedV2 = T['io.flow.v0.models.notification_upserted_v2'];
17168
17256
  export const numberRange = T['io.flow.v0.models.number_range'];
@@ -17302,6 +17390,8 @@ export const organizationSession = T['io.flow.v0.models.organization_session'];
17302
17390
  export const organizationSessionAuthorization = T['io.flow.v0.models.organization_session_authorization'];
17303
17391
  export const organizationStatus = T['io.flow.v0.enums.organization_status'];
17304
17392
  export const organizationSummary = T['io.flow.v0.models.organization_summary'];
17393
+ export const organizationTaxRegistration = T['io.flow.v0.models.organization_tax_registration'];
17394
+ export const organizationTaxRegistrationForm = T['io.flow.v0.models.organization_tax_registration_form'];
17305
17395
  export const organizationToken = T['io.flow.v0.models.organization_token'];
17306
17396
  export const organizationTokenForm = T['io.flow.v0.models.organization_token_form'];
17307
17397
  export const organizationTokenFormV2 = T['io.flow.v0.models.organization_token_form_v2'];
@@ -17540,6 +17630,7 @@ export const priceWithBaseAndDetails = T['io.flow.v0.models.price_with_base_and_
17540
17630
  export const pricing = T['io.flow.v0.models.pricing'];
17541
17631
  export const pricingLevySetting = T['io.flow.v0.enums.pricing_levy_setting'];
17542
17632
  export const pricingSettings = T['io.flow.v0.models.pricing_settings'];
17633
+ export const pricingType = T['io.flow.v0.enums.pricing_type'];
17543
17634
  export const pricingVersion = T['io.flow.v0.models.pricing_version'];
17544
17635
  export const processingEstimate = T['io.flow.v0.models.processing_estimate'];
17545
17636
  export const product = T['io.flow.v0.models.product'];
@@ -17550,6 +17641,9 @@ export const productRestrictionResultDeleted = T['io.flow.v0.models.product_rest
17550
17641
  export const productRestrictionResultUpserted = T['io.flow.v0.models.product_restriction_result_upserted'];
17551
17642
  export const productSellability = T['io.flow.v0.models.product_sellability'];
17552
17643
  export const productSellabilityForm = T['io.flow.v0.models.product_sellability_form'];
17644
+ export const productSellabilityResult = T['io.flow.v0.models.product_sellability_result'];
17645
+ export const productSellabilityResultDeleted = T['io.flow.v0.models.product_sellability_result_deleted'];
17646
+ export const productSellabilityResultUpserted = T['io.flow.v0.models.product_sellability_result_upserted'];
17553
17647
  export const productTaxonomyCategory = T['io.flow.v0.models.product_taxonomy_category'];
17554
17648
  export const productTaxonomyData = T['io.flow.v0.models.product_taxonomy_data'];
17555
17649
  export const productTaxonomyValue = T['io.flow.v0.models.product_taxonomy_value'];
@@ -17657,6 +17751,7 @@ export const repeatMonthly = T['io.flow.v0.models.repeat_monthly'];
17657
17751
  export const repeatSchedule = T['io.flow.v0.unions.repeat_schedule'];
17658
17752
  export const repeatWeekly = T['io.flow.v0.models.repeat_weekly'];
17659
17753
  export const restrictedReviewStatus = T['io.flow.v0.enums.restricted_review_status'];
17754
+ export const restrictionEnvironment = T['io.flow.v0.enums.restriction_environment'];
17660
17755
  export const UNSAFE_return = T['io.flow.v0.models.return'];
17661
17756
  export const returnForm = T['io.flow.v0.models.return_form'];
17662
17757
  export const returnItemReference = T['io.flow.v0.models.return_item_reference'];
@@ -17689,8 +17784,6 @@ export const reversalStatus = T['io.flow.v0.enums.reversal_status'];
17689
17784
  export const reversalUpserted = T['io.flow.v0.models.reversal_upserted'];
17690
17785
  export const reversalVersion = T['io.flow.v0.models.reversal_version'];
17691
17786
  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
17787
  export const role = T['io.flow.v0.enums.role'];
17695
17788
  export const romanization = T['io.flow.v0.models.romanization'];
17696
17789
  export const romanizationForm = T['io.flow.v0.models.romanization_form'];
@@ -17699,8 +17792,6 @@ export const roundingMethod = T['io.flow.v0.enums.rounding_method'];
17699
17792
  export const roundingType = T['io.flow.v0.enums.rounding_type'];
17700
17793
  export const routeAudit = T['io.flow.v0.models.route_audit'];
17701
17794
  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
17795
  export const schedule = T['io.flow.v0.models.schedule'];
17705
17796
  export const scheduleExceptionStatus = T['io.flow.v0.enums.schedule_exception_status'];
17706
17797
  export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
@@ -17710,10 +17801,23 @@ export const sdkAdyenV3AuthenticationToken = T['io.flow.v0.unions.sdk_adyen_v3_a
17710
17801
  export const securityRatecardFee = T['io.flow.v0.models.security_ratecard_fee'];
17711
17802
  export const securityServiceFee = T['io.flow.v0.models.security_service_fee'];
17712
17803
  export const selectIssuerOptionActionDetails = T['io.flow.v0.models.select_issuer_option_action_details'];
17804
+ export const selfBillingAgreement = T['io.flow.v0.models.self_billing_agreement'];
17713
17805
  export const sellabilityError = T['io.flow.v0.models.sellability_error'];
17714
17806
  export const sellabilityErrorCode = T['io.flow.v0.enums.sellability_error_code'];
17807
+ export const sellabilityNeedsActionAttributes = T['io.flow.v0.models.sellability_needs_action_attributes'];
17808
+ export const sellabilityReasonWithRegions = T['io.flow.v0.models.sellability_reason_with_regions'];
17809
+ export const sellabilityRegionResult = T['io.flow.v0.models.sellability_region_result'];
17810
+ export const sellabilityRegionWithReasons = T['io.flow.v0.models.sellability_region_with_reasons'];
17811
+ export const sellabilityRequest = T['io.flow.v0.unions.sellability_request'];
17715
17812
  export const sellabilityRequestStatus = T['io.flow.v0.enums.sellability_request_status'];
17716
17813
  export const sellabilityResponse = T['io.flow.v0.unions.sellability_response'];
17814
+ export const sellabilityRestrictedReason = T['io.flow.v0.models.sellability_restricted_reason'];
17815
+ export const sellabilityRestrictedRegion = T['io.flow.v0.models.sellability_restricted_region'];
17816
+ export const sellabilityResultErrorCode = T['io.flow.v0.enums.sellability_result_error_code'];
17817
+ export const sellabilityResultStatus = T['io.flow.v0.enums.sellability_result_status'];
17818
+ export const sellabilityScreening = T['io.flow.v0.models.sellability_screening'];
17819
+ export const sellabilityScreeningForm = T['io.flow.v0.models.sellability_screening_form'];
17820
+ export const sellabilityScreeningMode = T['io.flow.v0.enums.sellability_screening_mode'];
17717
17821
  export const sellablilityRegionResult = T['io.flow.v0.models.sellablility_region_result'];
17718
17822
  export const serviceDescription = T['io.flow.v0.unions.service_description'];
17719
17823
  export const serviceFee = T['io.flow.v0.unions.service_fee'];
@@ -17782,6 +17886,10 @@ export const shippingLaneVersion = T['io.flow.v0.models.shipping_lane_version'];
17782
17886
  export const shippingNotification = T['io.flow.v0.models.shipping_notification'];
17783
17887
  export const shippingNotificationForm = T['io.flow.v0.unions.shipping_notification_form'];
17784
17888
  export const shippingNotificationVersion = T['io.flow.v0.models.shipping_notification_version'];
17889
+ export const shippingRateEstimate = T['io.flow.v0.models.shipping_rate_estimate'];
17890
+ export const shippingRateEstimateAvailable = T['io.flow.v0.models.shipping_rate_estimate_available'];
17891
+ export const shippingRateEstimateRequest = T['io.flow.v0.models.shipping_rate_estimate_request'];
17892
+ export const shippingRateEstimateUnavailable = T['io.flow.v0.models.shipping_rate_estimate_unavailable'];
17785
17893
  export const shop = T['io.flow.v0.models.shop'];
17786
17894
  export const shopifyCart = T['io.flow.v0.models.shopify_cart'];
17787
17895
  export const shopifyCartAddForm = T['io.flow.v0.unions.shopify_cart_add_form'];
@@ -17836,6 +17944,8 @@ export const sortDirection = T['io.flow.v0.enums.sort_direction'];
17836
17944
  export const statement = T['io.flow.v0.models.statement'];
17837
17945
  export const statementAttachmentType = T['io.flow.v0.enums.statement_attachment_type'];
17838
17946
  export const statementDeleted = T['io.flow.v0.models.statement_deleted'];
17947
+ export const statementStatusCode = T['io.flow.v0.enums.statement_status_code'];
17948
+ export const statementStatusForm = T['io.flow.v0.models.statement_status_form'];
17839
17949
  export const statementUpserted = T['io.flow.v0.models.statement_upserted'];
17840
17950
  export const storedMethodUsageStep = T['io.flow.v0.enums.stored_method_usage_step'];
17841
17951
  export const strategy = T['io.flow.v0.enums.strategy'];
@@ -17883,7 +17993,10 @@ export const taxDutyQuoteValues = T['io.flow.v0.models.tax_duty_quote_values'];
17883
17993
  export const taxDutyTransactionReasonCode = T['io.flow.v0.enums.tax_duty_transaction_reason_code'];
17884
17994
  export const taxJurisdictionType = T['io.flow.v0.enums.tax_jurisdiction_type'];
17885
17995
  export const taxRegistration = T['io.flow.v0.models.tax_registration'];
17996
+ export const taxRegistrationDeleted = T['io.flow.v0.models.tax_registration_deleted'];
17997
+ export const taxRegistrationDetail = T['io.flow.v0.models.tax_registration_detail'];
17886
17998
  export const taxRegistrationForm = T['io.flow.v0.models.tax_registration_form'];
17999
+ export const taxRegistrationUpserted = T['io.flow.v0.models.tax_registration_upserted'];
17887
18000
  export const taxReport = T['io.flow.v0.models.tax_report'];
17888
18001
  export const taxReportType = T['io.flow.v0.enums.tax_report_type'];
17889
18002
  export const taxSetting = T['io.flow.v0.unions.tax_setting'];
@@ -17938,6 +18051,8 @@ export const trackingEventVersion = T['io.flow.v0.models.tracking_event_version'
17938
18051
  export const trackingForm = T['io.flow.v0.models.tracking_form'];
17939
18052
  export const trackingLabel = T['io.flow.v0.models.tracking_label'];
17940
18053
  export const trackingLabelEventUpserted = T['io.flow.v0.models.tracking_label_event_upserted'];
18054
+ export const trackingLabelEventUpsertedV2 = T['io.flow.v0.models.tracking_label_event_upserted_v2'];
18055
+ export const trackingLabelEventV2 = T['io.flow.v0.models.tracking_label_event_v2'];
17941
18056
  export const trackingLabelForm = T['io.flow.v0.models.tracking_label_form'];
17942
18057
  export const trackingLabelSummary = T['io.flow.v0.models.tracking_label_summary'];
17943
18058
  export const trackingLabelVersion = T['io.flow.v0.models.tracking_label_version'];