@flowio/api-prop-types 10.16.107 → 10.16.109

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/api.js CHANGED
@@ -29,8 +29,18 @@ T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
29
29
  value_obj: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_value']),
30
30
  });
31
31
 
32
- T['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
33
32
  T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
33
+ T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
34
+
35
+ T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
36
+ code: T['io.flow.channel.shopify.v0.enums.channel_shopify_order_state_reason_code'].isRequired,
37
+ message: PropTypes.string.isRequired,
38
+ });
39
+
40
+ T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'] = PropTypes.exact({
41
+ order_id: PropTypes.number.isRequired,
42
+ shop_id: PropTypes.number.isRequired,
43
+ });
34
44
 
35
45
  T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
36
46
  discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
@@ -88,6 +98,19 @@ T['io.flow.common.v0.unions.repeat_schedule'] = PropTypes.oneOfType([
88
98
  T['io.flow.common.v0.models.repeat_monthly'],
89
99
  ]);
90
100
 
101
+ T['io.flow.common.v0.models.price'] = PropTypes.exact({
102
+ amount: PropTypes.number.isRequired,
103
+ currency: PropTypes.string.isRequired,
104
+ label: PropTypes.string.isRequired,
105
+ });
106
+
107
+ T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
108
+ currency: PropTypes.string.isRequired,
109
+ amount: PropTypes.number.isRequired,
110
+ label: PropTypes.string.isRequired,
111
+ base: T['io.flow.common.v0.models.price'],
112
+ });
113
+
91
114
  T['io.flow.common.v0.models.price_source_price_book_reference'] = PropTypes.exact({
92
115
  id: PropTypes.string.isRequired,
93
116
  key: PropTypes.string.isRequired,
@@ -99,6 +122,8 @@ T['io.flow.common.v0.enums.organization_status'] = PropTypes.oneOf(['active', 'i
99
122
  T['io.flow.common.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
100
123
  number: PropTypes.string.isRequired,
101
124
  country: PropTypes.string.isRequired,
125
+ province_number: PropTypes.string,
126
+ province: PropTypes.string,
102
127
  });
103
128
 
104
129
  T['io.flow.common.v0.enums.margin_type'] = PropTypes.oneOf(['fixed', 'percent']);
@@ -365,13 +390,13 @@ T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
365
390
  messages: PropTypes.arrayOf(PropTypes.string).isRequired,
366
391
  });
367
392
 
368
- T['io.flow.channel.internal.v0.models.channel_organization_domain'] = PropTypes.exact({
393
+ T['io.flow.channel.internal.v0.models.channel_organization_domains'] = PropTypes.exact({
369
394
  internal: PropTypes.string.isRequired,
370
- 'public': PropTypes.string.isRequired,
395
+ external: PropTypes.string.isRequired,
371
396
  });
372
397
 
373
398
  T['io.flow.channel.internal.v0.models.channel_organization_metadata'] = PropTypes.exact({
374
- domain: T['io.flow.channel.internal.v0.models.channel_organization_domain'].isRequired,
399
+ domain: T['io.flow.channel.internal.v0.models.channel_organization_domains'].isRequired,
375
400
  token: PropTypes.string.isRequired,
376
401
  });
377
402
 
@@ -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,22 @@ 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']);
4210
+
4211
+ T['io.flow.v0.models.transaction_metadata_tax_duty_delta'] = PropTypes.exact({
4212
+ base: PropTypes.number,
4213
+ local: PropTypes.number,
4214
+ });
4215
+
4216
+ T['io.flow.v0.models.transaction_metadata_tax_duty_estimate'] = PropTypes.exact({
4217
+ base: PropTypes.number,
4218
+ local: PropTypes.number,
4219
+ });
4220
+
4221
+ T['io.flow.v0.models.transaction_metadata_tax_duty_actual'] = PropTypes.exact({
4222
+ base: PropTypes.number,
4223
+ local: PropTypes.number,
4224
+ });
4204
4225
 
4205
4226
  T['io.flow.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf([
4206
4227
  'post_capture',
@@ -4209,6 +4230,7 @@ T['io.flow.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf([
4209
4230
  'order_edit',
4210
4231
  'mixed_fulfilment_non_lvg',
4211
4232
  'lvg_refund',
4233
+ 'us_inbound_tax_refund',
4212
4234
  'order_cancellation_above_de_min',
4213
4235
  'wyol_shipment_above_de_min',
4214
4236
  'full_refund_without_shipment',
@@ -4240,6 +4262,50 @@ T['io.flow.v0.models.transaction_metadata_outbound_transaction'] = PropTypes.exa
4240
4262
 
4241
4263
  T['io.flow.v0.enums.carrier_charge_reason'] = PropTypes.oneOf(['return_to_origin', 'rejection', 'other']);
4242
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
+
4243
4309
  T['io.flow.v0.enums.tracking_status'] = PropTypes.oneOf([
4244
4310
  'label_created',
4245
4311
  'pending',
@@ -4465,6 +4531,7 @@ T['io.flow.v0.models.subcatalog_settings'] = PropTypes.exact({
4465
4531
  update_policy: T['io.flow.v0.enums.update_policy'].isRequired,
4466
4532
  });
4467
4533
 
4534
+ T['io.flow.v0.enums.statement_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
4468
4535
  T['io.flow.v0.enums.shopify_sync_check'] = PropTypes.oneOf(['localized_variants', 'flow_variant_metafields']);
4469
4536
 
4470
4537
  T['io.flow.v0.models.shopify_order_delivery_metafield_item'] = PropTypes.exact({
@@ -4485,31 +4552,6 @@ T['io.flow.v0.models.ratecard_reference'] = PropTypes.exact({
4485
4552
  id: PropTypes.string.isRequired,
4486
4553
  });
4487
4554
 
4488
- T['io.flow.v0.models.operations_contact'] = PropTypes.exact({
4489
- company: PropTypes.string,
4490
- email: PropTypes.string,
4491
- phone: PropTypes.string,
4492
- });
4493
-
4494
- T['io.flow.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
4495
- name: PropTypes.string.isRequired,
4496
- dob: PropTypes.string.isRequired,
4497
- });
4498
-
4499
- T['io.flow.v0.models.indirect_tax'] = PropTypes.exact({
4500
- number: PropTypes.string,
4501
- id: PropTypes.string,
4502
- });
4503
-
4504
- T['io.flow.v0.enums.onboarding_application_status'] = PropTypes.oneOf(['to_do', 'in_progress', 'on_hold', 'rejected', 'accepted']);
4505
-
4506
- T['io.flow.v0.models.shopify_merchant_application_put_form'] = PropTypes.exact({
4507
- discriminator: PropTypes.oneOf(['shopify_merchant_application_put_form']).isRequired,
4508
- status: T['io.flow.v0.enums.onboarding_application_status'],
4509
- });
4510
-
4511
- T['io.flow.v0.unions.merchant_application_put_form'] = PropTypes.oneOfType([T['io.flow.v0.models.shopify_merchant_application_put_form']]);
4512
-
4513
4555
  T['io.flow.v0.models.flow_center_reference'] = PropTypes.exact({
4514
4556
  key: PropTypes.string.isRequired,
4515
4557
  });
@@ -4638,6 +4680,11 @@ T['io.flow.v0.unions.shopify_cart_add_form'] = PropTypes.oneOfType([
4638
4680
  T['io.flow.v0.models.shopify_cart_add_multiple_form'],
4639
4681
  ]);
4640
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
+
4641
4688
  T['io.flow.v0.models.service_unknown'] = PropTypes.exact({
4642
4689
  discriminator: PropTypes.oneOf(['service_unknown']).isRequired,
4643
4690
  name: PropTypes.string.isRequired,
@@ -4689,6 +4736,10 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
4689
4736
  'missing_logistics_contact_info',
4690
4737
  ]);
4691
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
+
4692
4743
  T['io.flow.v0.enums.sellability_error_code'] = PropTypes.oneOf([
4693
4744
  'insufficient_details',
4694
4745
  'ineligible_category',
@@ -4702,8 +4753,6 @@ T['io.flow.v0.models.sellability_error'] = PropTypes.exact({
4702
4753
  messages: PropTypes.arrayOf(PropTypes.string).isRequired,
4703
4754
  });
4704
4755
 
4705
- T['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
4706
- T['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
4707
4756
  T['io.flow.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
4708
4757
 
4709
4758
  T['io.flow.v0.models.return_policy_statistic'] = PropTypes.exact({
@@ -4841,6 +4890,8 @@ T['io.flow.v0.models.ratecard_rate'] = PropTypes.exact({
4841
4890
  weight: PropTypes.number.isRequired,
4842
4891
  });
4843
4892
 
4893
+ T['io.flow.v0.enums.commercial_invoice_mode'] = PropTypes.oneOf(['direct', 'indirect']);
4894
+
4844
4895
  T['io.flow.v0.models.zone'] = PropTypes.exact({
4845
4896
  postals: PropTypes.arrayOf(PropTypes.string),
4846
4897
  provinces: PropTypes.arrayOf(PropTypes.string),
@@ -4914,8 +4965,56 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
4914
4965
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
4915
4966
  });
4916
4967
 
4968
+ T['io.flow.v0.models.sellability_region_with_reasons'] = PropTypes.exact({
4969
+ region: PropTypes.string.isRequired,
4970
+ reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
4971
+ });
4972
+
4973
+ T['io.flow.v0.models.sellability_needs_action_attributes'] = PropTypes.exact({
4974
+ reason_code: PropTypes.string.isRequired,
4975
+ category_metafield_handles: PropTypes.arrayOf(PropTypes.string).isRequired,
4976
+ require_msds: PropTypes.bool,
4977
+ });
4978
+
4917
4979
  T['io.flow.v0.enums.sellability_request_status'] = PropTypes.oneOf(['commit']);
4918
4980
  T['io.flow.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
4981
+
4982
+ T['io.flow.v0.models.sellablility_region_result'] = PropTypes.exact({
4983
+ type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
4984
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
4985
+ });
4986
+
4987
+ T['io.flow.v0.models.sellability_restricted_region'] = PropTypes.exact({
4988
+ type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
4989
+ regions_with_reasons: PropTypes.arrayOf(T['io.flow.v0.models.sellability_region_with_reasons']).isRequired,
4990
+ });
4991
+
4992
+ T['io.flow.v0.models.product_sellability_result'] = PropTypes.exact({
4993
+ merchant_id: PropTypes.string,
4994
+ product_id: PropTypes.string.isRequired,
4995
+ restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellability_restricted_region']).isRequired,
4996
+ needs_action_attributes: PropTypes.arrayOf(T['io.flow.v0.models.sellability_needs_action_attributes']),
4997
+ request_id: PropTypes.string,
4998
+ hs6_code: PropTypes.string,
4999
+ });
5000
+
5001
+ T['io.flow.v0.models.sellability_screening'] = PropTypes.exact({
5002
+ discriminator: PropTypes.oneOf(['sellability_screening']).isRequired,
5003
+ sellability_result: T['io.flow.v0.models.product_sellability_result'],
5004
+ request_id: PropTypes.string.isRequired,
5005
+ status: T['io.flow.v0.enums.sellability_result_status'].isRequired,
5006
+ error_code: T['io.flow.v0.enums.sellability_result_error_code'],
5007
+ error_message: PropTypes.string,
5008
+ });
5009
+
5010
+ T['io.flow.v0.models.product_sellability_result_upserted'] = PropTypes.exact({
5011
+ discriminator: PropTypes.oneOf(['product_sellability_result_upserted']).isRequired,
5012
+ event_id: PropTypes.string.isRequired,
5013
+ timestamp: PropTypes.string.isRequired,
5014
+ organization: PropTypes.string.isRequired,
5015
+ product_sellability_result: T['io.flow.v0.models.product_sellability_result'].isRequired,
5016
+ });
5017
+
4919
5018
  T['io.flow.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
4920
5019
 
4921
5020
  T['io.flow.v0.models.product_taxonomy_value'] = PropTypes.exact({
@@ -5033,6 +5132,11 @@ T['io.flow.v0.models.permitted_route'] = PropTypes.exact({
5033
5132
 
5034
5133
  T['io.flow.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
5035
5134
 
5135
+ T['io.flow.v0.models.statement_status_form'] = PropTypes.exact({
5136
+ code: T['io.flow.v0.enums.statement_status_code'].isRequired,
5137
+ failure_reason: T['io.flow.v0.enums.payout_status_failure_code'],
5138
+ });
5139
+
5036
5140
  T['io.flow.v0.enums.reversal_error_code'] = PropTypes.oneOf([
5037
5141
  'amount_exceeds_balance',
5038
5142
  'authorization_declined',
@@ -5529,6 +5633,18 @@ T['io.flow.v0.models.token_partner_reference'] = PropTypes.exact({
5529
5633
  id: PropTypes.string.isRequired,
5530
5634
  });
5531
5635
 
5636
+ T['io.flow.v0.models.self_billing_agreement'] = PropTypes.exact({
5637
+ effective_at: PropTypes.string.isRequired,
5638
+ expires_at: PropTypes.string.isRequired,
5639
+ });
5640
+
5641
+ T['io.flow.v0.models.tax_registration_detail'] = PropTypes.exact({
5642
+ tax_number: PropTypes.string.isRequired,
5643
+ country: PropTypes.string.isRequired,
5644
+ tax_code: PropTypes.string.isRequired,
5645
+ province: PropTypes.string,
5646
+ });
5647
+
5532
5648
  T['io.flow.v0.models.session_visit'] = PropTypes.exact({
5533
5649
  id: PropTypes.string.isRequired,
5534
5650
  expires_at: PropTypes.string.isRequired,
@@ -5851,13 +5967,6 @@ T['io.flow.v0.models.in_compliance_review'] = PropTypes.exact({
5851
5967
  placeholder: PropTypes.bool,
5852
5968
  });
5853
5969
 
5854
- T['io.flow.v0.enums.organization_status'] = PropTypes.oneOf(['active', 'inactive', 'deactivated', 'provisioned']);
5855
-
5856
- T['io.flow.v0.models.onboarding_organization_reference'] = PropTypes.exact({
5857
- id: PropTypes.string.isRequired,
5858
- status: T['io.flow.v0.enums.organization_status'].isRequired,
5859
- });
5860
-
5861
5970
  T['io.flow.v0.models.onboarding_merchant_time'] = PropTypes.exact({
5862
5971
  hour_of_day: PropTypes.string.isRequired,
5863
5972
  minute_of_hour: PropTypes.string.isRequired,
@@ -5869,18 +5978,6 @@ T['io.flow.v0.models.onboarding_merchant_pickup_window'] = PropTypes.exact({
5869
5978
  to: T['io.flow.v0.models.onboarding_merchant_time'].isRequired,
5870
5979
  });
5871
5980
 
5872
- T['io.flow.tech.onboarding.playground.v0.enums.niall_item_type'] = PropTypes.oneOf(['physical', 'digital']);
5873
-
5874
- T['io.flow.v0.models.monthly_average_volume'] = PropTypes.exact({
5875
- amount: PropTypes.number,
5876
- currency: PropTypes.string,
5877
- });
5878
-
5879
- T['io.flow.v0.models.monthly_average'] = PropTypes.exact({
5880
- volume: T['io.flow.v0.models.monthly_average_volume'],
5881
- number_transactions: PropTypes.number,
5882
- });
5883
-
5884
5981
  T['io.flow.v0.enums.merchant_rejected_reason'] = PropTypes.oneOf([
5885
5982
  'merchant_ubo_is_pep',
5886
5983
  'merchant_catalog_is_unsupportable',
@@ -5899,16 +5996,6 @@ T['io.flow.v0.models.merchant_rejected'] = PropTypes.exact({
5899
5996
  deactivate_at: PropTypes.string,
5900
5997
  });
5901
5998
 
5902
- T['io.flow.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
5903
-
5904
- T['io.flow.v0.models.merchant_info'] = PropTypes.exact({
5905
- legal_name: PropTypes.string,
5906
- country: PropTypes.string.isRequired,
5907
- region: T['io.flow.v0.enums.region_type'],
5908
- region_value: PropTypes.string,
5909
- category_code: PropTypes.string,
5910
- });
5911
-
5912
5999
  T['io.flow.v0.enums.merchant_gift_card_error_code'] = PropTypes.oneOf([
5913
6000
  'invalid',
5914
6001
  'expired',
@@ -6218,11 +6305,6 @@ T['io.flow.v0.models.company'] = PropTypes.exact({
6218
6305
 
6219
6306
  T['io.flow.v0.unions.entity'] = PropTypes.oneOfType([T['io.flow.v0.models.company'], T['io.flow.v0.models.individual']]);
6220
6307
 
6221
- T['io.flow.v0.models.shop'] = PropTypes.exact({
6222
- name: PropTypes.string.isRequired,
6223
- id: PropTypes.string.isRequired,
6224
- });
6225
-
6226
6308
  T['io.flow.v0.models.klarna_payment_method_category'] = PropTypes.exact({
6227
6309
  id: PropTypes.string.isRequired,
6228
6310
  name: PropTypes.string,
@@ -6230,6 +6312,7 @@ T['io.flow.v0.models.klarna_payment_method_category'] = PropTypes.exact({
6230
6312
  descriptive_asset_url: PropTypes.string,
6231
6313
  });
6232
6314
 
6315
+ T['io.flow.v0.enums.tax_jurisdiction_type'] = PropTypes.oneOf(['country', 'province']);
6233
6316
  T['io.flow.v0.enums.invitation_error_code'] = PropTypes.oneOf(['expired', 'invalid_email']);
6234
6317
 
6235
6318
  T['io.flow.v0.models.invitation_error'] = PropTypes.exact({
@@ -6325,8 +6408,6 @@ T['io.flow.v0.models.import_form'] = PropTypes.exact({
6325
6408
  emails: PropTypes.arrayOf(PropTypes.string),
6326
6409
  });
6327
6410
 
6328
- T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'] = PropTypes.oneOf(['physical', 'digital']);
6329
-
6330
6411
  T['io.flow.v0.models.return_package_ratecard_fee'] = PropTypes.exact({
6331
6412
  discriminator: PropTypes.oneOf(['return_package_ratecard_fee']).isRequired,
6332
6413
  amount: PropTypes.number.isRequired,
@@ -6390,9 +6471,10 @@ T['io.flow.v0.models.harmonization_document'] = PropTypes.exact({
6390
6471
  T['io.flow.v0.models.needs_action_attributes'] = PropTypes.exact({
6391
6472
  reason_code: PropTypes.string.isRequired,
6392
6473
  category_metafield_handles: PropTypes.arrayOf(PropTypes.string).isRequired,
6474
+ require_msds: PropTypes.bool,
6393
6475
  });
6394
6476
 
6395
- T['io.flow.v0.models.sellablility_region_result'] = PropTypes.exact({
6477
+ T['io.flow.v0.models.sellability_region_result'] = PropTypes.exact({
6396
6478
  type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
6397
6479
  regions: PropTypes.arrayOf(PropTypes.string).isRequired,
6398
6480
  });
@@ -6403,12 +6485,13 @@ T['io.flow.v0.models.product_sellability'] = PropTypes.exact({
6403
6485
  product_id: PropTypes.string,
6404
6486
  request_id: PropTypes.string.isRequired,
6405
6487
  hs6_code: PropTypes.string.isRequired,
6406
- restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']).isRequired,
6488
+ restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellability_region_result']).isRequired,
6407
6489
  });
6408
6490
 
6409
6491
  T['io.flow.v0.unions.sellability_response'] = PropTypes.oneOfType([
6410
6492
  T['io.flow.v0.models.product_sellability'],
6411
6493
  T['io.flow.v0.models.sellability_error'],
6494
+ T['io.flow.v0.models.sellability_screening'],
6412
6495
  ]);
6413
6496
 
6414
6497
  T['io.flow.v0.enums.review_status'] = PropTypes.oneOf(['high_risk_in_review', 'low_risk_in_review', 'reviewed']);
@@ -6431,7 +6514,7 @@ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
6431
6514
  updated_by: PropTypes.string,
6432
6515
  product_restriction_id: PropTypes.string,
6433
6516
  hs_code: PropTypes.string,
6434
- restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']),
6517
+ restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.v0.models.sellability_region_result']),
6435
6518
  needs_action_attributes: PropTypes.arrayOf(T['io.flow.v0.models.needs_action_attributes']),
6436
6519
  });
6437
6520
 
@@ -6475,7 +6558,20 @@ T['io.flow.v0.models.ge_catalog_item_input'] = PropTypes.exact({
6475
6558
  });
6476
6559
 
6477
6560
  T['io.flow.v0.enums.ge_catalog_item_ingestion_response'] = PropTypes.oneOf(['success', 'failure']);
6561
+ T['io.flow.v0.enums.restriction_environment'] = PropTypes.oneOf(['sandbox', 'production', 'qa']);
6478
6562
  T['io.flow.v0.enums.ge_event_type'] = PropTypes.oneOf(['restriction_result', 'ingestion_result']);
6563
+
6564
+ T['io.flow.v0.models.ge_catalog_item_ingestion_result'] = PropTypes.exact({
6565
+ discriminator: PropTypes.oneOf(['ge_catalog_item_ingestion_result']).isRequired,
6566
+ event_id: PropTypes.string.isRequired,
6567
+ event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
6568
+ environment: T['io.flow.v0.enums.restriction_environment'].isRequired,
6569
+ timestamp: PropTypes.string.isRequired,
6570
+ source: PropTypes.string.isRequired,
6571
+ response: T['io.flow.v0.enums.ge_catalog_item_ingestion_response'].isRequired,
6572
+ message: PropTypes.string.isRequired,
6573
+ });
6574
+
6479
6575
  T['io.flow.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
6480
6576
 
6481
6577
  T['io.flow.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
@@ -7674,20 +7770,85 @@ T['io.flow.v0.models.shipping_configuration_item_availability_deleted'] = PropTy
7674
7770
 
7675
7771
  T['io.flow.v0.enums.consumer_invoice_customer_type'] = PropTypes.oneOf(['business_eu_verified', 'business_non_verified', 'individual']);
7676
7772
 
7677
- T['io.flow.v0.models.card_payment_source_form'] = PropTypes.exact({
7678
- discriminator: PropTypes.oneOf(['card_payment_source_form']).isRequired,
7679
- customer_number: PropTypes.string.isRequired,
7680
- card_id: PropTypes.string.isRequired,
7773
+ T['io.flow.v0.models.monthly_average_volume'] = PropTypes.exact({
7774
+ amount: PropTypes.number,
7775
+ currency: PropTypes.string,
7681
7776
  });
7682
7777
 
7683
- T['io.flow.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
7684
- T['io.flow.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.v0.models.device_details_browser']]);
7778
+ T['io.flow.v0.enums.region_type'] = PropTypes.oneOf(['state', 'province', 'jurisdiction']);
7779
+ T['io.flow.v0.enums.organization_status'] = PropTypes.oneOf(['active', 'inactive', 'deactivated', 'provisioned']);
7685
7780
 
7686
- T['io.flow.v0.models.order_options'] = PropTypes.exact({
7687
- storage: T['io.flow.v0.enums.order_storage'].isRequired,
7781
+ T['io.flow.v0.models.shop'] = PropTypes.exact({
7782
+ name: PropTypes.string.isRequired,
7783
+ id: PropTypes.string.isRequired,
7688
7784
  });
7689
7785
 
7690
- T['io.flow.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
7786
+ T['io.flow.v0.models.monthly_average'] = PropTypes.exact({
7787
+ volume: T['io.flow.v0.models.monthly_average_volume'],
7788
+ number_transactions: PropTypes.number,
7789
+ });
7790
+
7791
+ T['io.flow.v0.models.operations_contact'] = PropTypes.exact({
7792
+ company: PropTypes.string,
7793
+ email: PropTypes.string,
7794
+ phone: PropTypes.string,
7795
+ });
7796
+
7797
+ T['io.flow.v0.models.ultimate_beneficiary_owner'] = PropTypes.exact({
7798
+ name: PropTypes.string.isRequired,
7799
+ dob: PropTypes.string.isRequired,
7800
+ });
7801
+
7802
+ T['io.flow.v0.models.indirect_tax'] = PropTypes.exact({
7803
+ number: PropTypes.string,
7804
+ id: PropTypes.string,
7805
+ });
7806
+
7807
+ T['io.flow.v0.models.merchant_info'] = PropTypes.exact({
7808
+ legal_name: PropTypes.string,
7809
+ country: PropTypes.string.isRequired,
7810
+ region: T['io.flow.v0.enums.region_type'],
7811
+ region_value: PropTypes.string,
7812
+ category_code: PropTypes.string,
7813
+ description: PropTypes.string,
7814
+ });
7815
+
7816
+ T['io.flow.v0.enums.onboarding_application_status'] = PropTypes.oneOf(['to_do', 'in_progress', 'on_hold', 'rejected', 'accepted']);
7817
+
7818
+ T['io.flow.v0.models.shopify_merchant_application_put_form'] = PropTypes.exact({
7819
+ discriminator: PropTypes.oneOf(['shopify_merchant_application_put_form']).isRequired,
7820
+ status: T['io.flow.v0.enums.onboarding_application_status'],
7821
+ });
7822
+
7823
+ T['io.flow.v0.models.common_merchant_application_put_form'] = PropTypes.exact({
7824
+ discriminator: PropTypes.oneOf(['common_merchant_application_put_form']).isRequired,
7825
+ status: T['io.flow.v0.enums.onboarding_application_status'],
7826
+ });
7827
+
7828
+ T['io.flow.v0.unions.merchant_application_put_form'] = PropTypes.oneOfType([
7829
+ T['io.flow.v0.models.shopify_merchant_application_put_form'],
7830
+ T['io.flow.v0.models.common_merchant_application_put_form'],
7831
+ ]);
7832
+
7833
+ T['io.flow.v0.models.onboarding_organization_reference'] = PropTypes.exact({
7834
+ id: PropTypes.string.isRequired,
7835
+ status: T['io.flow.v0.enums.organization_status'].isRequired,
7836
+ });
7837
+
7838
+ T['io.flow.v0.models.card_payment_source_form'] = PropTypes.exact({
7839
+ discriminator: PropTypes.oneOf(['card_payment_source_form']).isRequired,
7840
+ customer_number: PropTypes.string.isRequired,
7841
+ card_id: PropTypes.string.isRequired,
7842
+ });
7843
+
7844
+ T['io.flow.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
7845
+ T['io.flow.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.v0.models.device_details_browser']]);
7846
+
7847
+ T['io.flow.v0.models.order_options'] = PropTypes.exact({
7848
+ storage: T['io.flow.v0.enums.order_storage'].isRequired,
7849
+ });
7850
+
7851
+ T['io.flow.v0.enums.delivered_duty'] = PropTypes.oneOf(['paid', 'unpaid']);
7691
7852
 
7692
7853
  T['io.flow.v0.models.order_builder_delivered_duty_form'] = PropTypes.exact({
7693
7854
  delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
@@ -7889,6 +8050,10 @@ T['io.flow.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
7889
8050
  T['io.flow.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
7890
8051
  discriminator: PropTypes.oneOf(['transaction_tax_duty']).isRequired,
7891
8052
  reason_code: T['io.flow.v0.enums.tax_duty_transaction_reason_code'].isRequired,
8053
+ local_currency: PropTypes.string,
8054
+ actual: T['io.flow.v0.models.transaction_metadata_tax_duty_actual'],
8055
+ estimate: T['io.flow.v0.models.transaction_metadata_tax_duty_estimate'],
8056
+ delta: T['io.flow.v0.models.transaction_metadata_tax_duty_delta'],
7892
8057
  });
7893
8058
 
7894
8059
  T['io.flow.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
@@ -8002,6 +8167,8 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
8002
8167
  'merchant_refund',
8003
8168
  'ge_revenue_share',
8004
8169
  'merchant_fee',
8170
+ 'b2b_tax',
8171
+ 'b2b_tax_refund',
8005
8172
  ]);
8006
8173
 
8007
8174
  T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
@@ -8034,6 +8201,11 @@ T['io.flow.v0.models.settlement_no_payout'] = PropTypes.exact({
8034
8201
 
8035
8202
  T['io.flow.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
8036
8203
 
8204
+ T['io.flow.v0.models.external_order_summary'] = PropTypes.exact({
8205
+ id: PropTypes.string.isRequired,
8206
+ edit_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
8207
+ });
8208
+
8037
8209
  T['io.flow.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
8038
8210
  code: T['io.flow.v0.enums.channel_shopify_order_state_reason_code'].isRequired,
8039
8211
  message: PropTypes.string.isRequired,
@@ -8041,6 +8213,14 @@ T['io.flow.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
8041
8213
 
8042
8214
  T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'] = PropTypes.oneOf(['accepted', 'rejected', 'review', 'edit_review', 'edit_accepted']);
8043
8215
 
8216
+ T['io.flow.channel.shopify.v0.models.channel_shopify_order_state'] = PropTypes.exact({
8217
+ id: PropTypes.string.isRequired,
8218
+ shopify_order_summary: T['io.flow.channel.shopify.v0.models.channel_shopify_order_summary'].isRequired,
8219
+ status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
8220
+ reasons: PropTypes.arrayOf(T['io.flow.channel.shopify.v0.models.channel_shopify_order_state_reason']),
8221
+ external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
8222
+ });
8223
+
8044
8224
  T['io.flow.channel.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact({
8045
8225
  status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
8046
8226
  });
@@ -8061,6 +8241,7 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exa
8061
8241
  order_updated_at: PropTypes.string,
8062
8242
  order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
8063
8243
  payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
8244
+ external_order_summary: T['io.flow.channel.shopify.v0.models.external_order_summary'],
8064
8245
  });
8065
8246
 
8066
8247
  T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
@@ -8078,6 +8259,7 @@ T['io.flow.v0.models.channel_shopify_order_state'] = PropTypes.exact({
8078
8259
  shopify_order_summary: T['io.flow.v0.models.channel_shopify_order_summary'].isRequired,
8079
8260
  status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
8080
8261
  reasons: PropTypes.arrayOf(T['io.flow.v0.models.channel_shopify_order_state_reason']),
8262
+ external_order_summary: T['io.flow.v0.models.external_order_summary'],
8081
8263
  });
8082
8264
 
8083
8265
  T['io.flow.v0.models.channel_shopify_order_state_upserted'] = PropTypes.exact({
@@ -8382,17 +8564,6 @@ T['io.flow.v0.models.organization_authorization'] = PropTypes.exact({
8382
8564
  environment: T['io.flow.v0.enums.environment'].isRequired,
8383
8565
  });
8384
8566
 
8385
- T['io.flow.v0.models.ge_catalog_item_ingestion_result'] = PropTypes.exact({
8386
- discriminator: PropTypes.oneOf(['ge_catalog_item_ingestion_result']).isRequired,
8387
- event_id: PropTypes.string.isRequired,
8388
- event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
8389
- environment: T['io.flow.v0.enums.environment'].isRequired,
8390
- timestamp: PropTypes.string.isRequired,
8391
- source: PropTypes.string.isRequired,
8392
- response: T['io.flow.v0.enums.ge_catalog_item_ingestion_response'].isRequired,
8393
- message: PropTypes.string.isRequired,
8394
- });
8395
-
8396
8567
  T['io.flow.v0.models.channel'] = PropTypes.exact({
8397
8568
  id: PropTypes.string.isRequired,
8398
8569
  name: PropTypes.string.isRequired,
@@ -9396,13 +9567,6 @@ T['io.flow.v0.unions.bank_account_form'] = PropTypes.oneOfType([
9396
9567
  ]);
9397
9568
 
9398
9569
  T['io.flow.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
9399
-
9400
- T['io.flow.v0.models.consumer_invoice_order_summary'] = PropTypes.exact({
9401
- id: PropTypes.string.isRequired,
9402
- number: PropTypes.string.isRequired,
9403
- submitted_at: PropTypes.string.isRequired,
9404
- });
9405
-
9406
9570
  T['io.flow.v0.enums.consumer_invoice_document_type'] = PropTypes.oneOf(['pdf']);
9407
9571
 
9408
9572
  T['io.flow.v0.models.entity_identifier'] = PropTypes.exact({
@@ -9414,6 +9578,8 @@ T['io.flow.v0.models.entity_identifier'] = PropTypes.exact({
9414
9578
  T['io.flow.v0.models.merchant_of_record_entity_registration'] = PropTypes.exact({
9415
9579
  number: PropTypes.string.isRequired,
9416
9580
  country: PropTypes.string.isRequired,
9581
+ province_number: PropTypes.string,
9582
+ province: PropTypes.string,
9417
9583
  });
9418
9584
 
9419
9585
  T['io.flow.v0.models.organization_reference'] = PropTypes.exact({
@@ -9575,6 +9741,12 @@ T['io.flow.v0.models.channel_organization_upserted'] = PropTypes.exact({
9575
9741
  channel_organization: T['io.flow.v0.models.channel_organization'].isRequired,
9576
9742
  });
9577
9743
 
9744
+ T['io.flow.v0.models.consumer_invoice_order_summary'] = PropTypes.exact({
9745
+ id: PropTypes.string.isRequired,
9746
+ number: PropTypes.string.isRequired,
9747
+ submitted_at: PropTypes.string.isRequired,
9748
+ });
9749
+
9578
9750
  T['io.flow.v0.enums.b2b_invoice_type'] = PropTypes.oneOf(['self_bill_invoice', 'invoice']);
9579
9751
 
9580
9752
  T['io.flow.v0.models.consumer_invoice_document'] = PropTypes.exact({
@@ -10197,7 +10369,7 @@ T['io.flow.v0.models.ge_product_restriction_result_upsert'] = PropTypes.exact({
10197
10369
  organization: PropTypes.string.isRequired,
10198
10370
  event_id: PropTypes.string.isRequired,
10199
10371
  event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
10200
- environment: T['io.flow.v0.enums.environment'].isRequired,
10372
+ environment: T['io.flow.v0.enums.restriction_environment'].isRequired,
10201
10373
  timestamp: PropTypes.string.isRequired,
10202
10374
  operation: T['io.flow.v0.enums.change_type'].isRequired,
10203
10375
  ge_product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
@@ -10208,7 +10380,7 @@ T['io.flow.v0.models.ge_product_restriction_result_delete'] = PropTypes.exact({
10208
10380
  organization: PropTypes.string.isRequired,
10209
10381
  event_id: PropTypes.string.isRequired,
10210
10382
  event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
10211
- environment: T['io.flow.v0.enums.environment'].isRequired,
10383
+ environment: T['io.flow.v0.enums.restriction_environment'].isRequired,
10212
10384
  timestamp: PropTypes.string.isRequired,
10213
10385
  id: PropTypes.string.isRequired,
10214
10386
  operation: T['io.flow.v0.enums.change_type'].isRequired,
@@ -10308,7 +10480,7 @@ T['io.flow.v0.models.attribute_upserted_v2'] = PropTypes.exact({
10308
10480
  attribute: T['io.flow.v0.models.attribute'].isRequired,
10309
10481
  });
10310
10482
 
10311
- T['io.flow.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv']);
10483
+ T['io.flow.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv', 'pdf']);
10312
10484
 
10313
10485
  T['io.flow.v0.models.attachment'] = PropTypes.exact({
10314
10486
  type: T['io.flow.v0.enums.statement_attachment_type'].isRequired,
@@ -10365,9 +10537,6 @@ T['io.flow.v0.models.channel_statement_deleted'] = PropTypes.exact({
10365
10537
  channel_statement: T['io.flow.v0.models.channel_statement'].isRequired,
10366
10538
  });
10367
10539
 
10368
- T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
10369
- T['io.flow.tech.onboarding.playground.v0.enums.anirban_item_type'] = PropTypes.oneOf(['physical', 'digital']);
10370
-
10371
10540
  T['io.flow.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
10372
10541
  'adjustment',
10373
10542
  'subtotal',
@@ -10646,6 +10815,7 @@ T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_deleted'] = Pr
10646
10815
 
10647
10816
  T['io.flow.v0.models.consumer_invoice_line_discount'] = PropTypes.exact({
10648
10817
  discriminator: PropTypes.oneOf(['discount']).isRequired,
10818
+ line_id: PropTypes.string,
10649
10819
  price: T['io.flow.v0.models.price'].isRequired,
10650
10820
  });
10651
10821
 
@@ -10656,12 +10826,14 @@ T['io.flow.v0.models.consumer_invoice_levy'] = PropTypes.exact({
10656
10826
 
10657
10827
  T['io.flow.v0.models.consumer_invoice_line_tip'] = PropTypes.exact({
10658
10828
  discriminator: PropTypes.oneOf(['tip']).isRequired,
10829
+ line_id: PropTypes.string,
10659
10830
  price: T['io.flow.v0.models.price'].isRequired,
10660
10831
  tax: T['io.flow.v0.models.consumer_invoice_levy'],
10661
10832
  });
10662
10833
 
10663
10834
  T['io.flow.v0.models.consumer_invoice_line_shipping'] = PropTypes.exact({
10664
10835
  discriminator: PropTypes.oneOf(['shipping']).isRequired,
10836
+ line_id: PropTypes.string,
10665
10837
  price: T['io.flow.v0.models.price'].isRequired,
10666
10838
  discount: T['io.flow.v0.models.price'],
10667
10839
  tax: T['io.flow.v0.models.consumer_invoice_levy'],
@@ -10670,6 +10842,7 @@ T['io.flow.v0.models.consumer_invoice_line_shipping'] = PropTypes.exact({
10670
10842
 
10671
10843
  T['io.flow.v0.models.consumer_invoice_line_item'] = PropTypes.exact({
10672
10844
  discriminator: PropTypes.oneOf(['item']).isRequired,
10845
+ line_id: PropTypes.string,
10673
10846
  item: T['io.flow.v0.models.item_reference'].isRequired,
10674
10847
  description: PropTypes.string.isRequired,
10675
10848
  quantity: PropTypes.number.isRequired,
@@ -10686,37 +10859,6 @@ T['io.flow.v0.unions.consumer_invoice_line'] = PropTypes.oneOfType([
10686
10859
  T['io.flow.v0.models.consumer_invoice_line_tip'],
10687
10860
  ]);
10688
10861
 
10689
- T['io.flow.v0.models.b2b_credit_memo'] = PropTypes.exact({
10690
- id: PropTypes.string.isRequired,
10691
- number: PropTypes.string.isRequired,
10692
- buyer: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
10693
- seller: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
10694
- status: T['io.flow.v0.enums.consumer_invoice_status'].isRequired,
10695
- date: PropTypes.string.isRequired,
10696
- key: PropTypes.string.isRequired,
10697
- invoice: T['io.flow.v0.models.b2b_invoice_reference'].isRequired,
10698
- lines: PropTypes.arrayOf(T['io.flow.v0.unions.consumer_invoice_line']).isRequired,
10699
- documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
10700
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
10701
- b2b_invoice_type: T['io.flow.v0.enums.b2b_invoice_type'].isRequired,
10702
- });
10703
-
10704
- T['io.flow.v0.models.b2b_credit_memo_upserted'] = PropTypes.exact({
10705
- discriminator: PropTypes.oneOf(['b2b_credit_memo_upserted']).isRequired,
10706
- event_id: PropTypes.string.isRequired,
10707
- timestamp: PropTypes.string.isRequired,
10708
- organization: PropTypes.string.isRequired,
10709
- b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
10710
- });
10711
-
10712
- T['io.flow.v0.models.b2b_credit_memo_deleted'] = PropTypes.exact({
10713
- discriminator: PropTypes.oneOf(['b2b_credit_memo_deleted']).isRequired,
10714
- event_id: PropTypes.string.isRequired,
10715
- timestamp: PropTypes.string.isRequired,
10716
- organization: PropTypes.string.isRequired,
10717
- b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
10718
- });
10719
-
10720
10862
  T['io.flow.v0.models.catalog_price_book_item_document'] = PropTypes.exact({
10721
10863
  price_book_key: PropTypes.string.isRequired,
10722
10864
  price_book_item_key: PropTypes.string.isRequired,
@@ -11008,206 +11150,6 @@ T['io.flow.v0.models.allocation_order_summary'] = PropTypes.exact({
11008
11150
  submitted_at: PropTypes.string,
11009
11151
  });
11010
11152
 
11011
- T['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'] = PropTypes.oneOf(['physical', 'digital']);
11012
-
11013
- T['io.flow.common.v0.models.price'] = PropTypes.exact({
11014
- amount: PropTypes.number.isRequired,
11015
- currency: PropTypes.string.isRequired,
11016
- label: PropTypes.string.isRequired,
11017
- });
11018
-
11019
- T['io.flow.tech.onboarding.playground.v0.models.sarvesh_item_form'] = PropTypes.exact({
11020
- number: PropTypes.string.isRequired,
11021
- amount: T['io.flow.common.v0.models.price'].isRequired,
11022
- description: PropTypes.string,
11023
- type: T['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'].isRequired,
11024
- added_on: PropTypes.string.isRequired,
11025
- });
11026
-
11027
- T['io.flow.tech.onboarding.playground.v0.models.rohan_item_form'] = PropTypes.exact({
11028
- number: PropTypes.string.isRequired,
11029
- amount: T['io.flow.common.v0.models.price'].isRequired,
11030
- description: PropTypes.string,
11031
- type: T['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'].isRequired,
11032
- added_on: PropTypes.string.isRequired,
11033
- });
11034
-
11035
- T['io.flow.tech.onboarding.playground.v0.models.prateek_item_form'] = PropTypes.exact({
11036
- number: PropTypes.string.isRequired,
11037
- amount: T['io.flow.common.v0.models.price'].isRequired,
11038
- description: PropTypes.string,
11039
- type: T['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'].isRequired,
11040
- added_on: PropTypes.string.isRequired,
11041
- });
11042
-
11043
- T['io.flow.tech.onboarding.playground.v0.models.prateek_item'] = PropTypes.exact({
11044
- id: PropTypes.string.isRequired,
11045
- number: PropTypes.string.isRequired,
11046
- amount: T['io.flow.common.v0.models.price'].isRequired,
11047
- description: PropTypes.string,
11048
- type: T['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'].isRequired,
11049
- added_on: PropTypes.string.isRequired,
11050
- });
11051
-
11052
- T['io.flow.tech.onboarding.playground.v0.models.niall_item_form'] = PropTypes.exact({
11053
- number: PropTypes.string.isRequired,
11054
- amount: T['io.flow.common.v0.models.price'].isRequired,
11055
- description: PropTypes.string,
11056
- type: T['io.flow.tech.onboarding.playground.v0.enums.niall_item_type'].isRequired,
11057
- added_on: PropTypes.string.isRequired,
11058
- });
11059
-
11060
- T['io.flow.tech.onboarding.playground.v0.models.hosein_item_form'] = PropTypes.exact({
11061
- number: PropTypes.string.isRequired,
11062
- amount: T['io.flow.common.v0.models.price'].isRequired,
11063
- description: PropTypes.string,
11064
- type: T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'].isRequired,
11065
- added_on: PropTypes.string.isRequired,
11066
- });
11067
-
11068
- T['io.flow.tech.onboarding.playground.v0.models.ansh_item_form'] = PropTypes.exact({
11069
- number: PropTypes.string.isRequired,
11070
- amount: T['io.flow.common.v0.models.price'].isRequired,
11071
- description: PropTypes.string,
11072
- type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
11073
- added_on: PropTypes.string.isRequired,
11074
- });
11075
-
11076
- T['io.flow.tech.onboarding.playground.v0.models.anirban_item_form'] = PropTypes.exact({
11077
- number: PropTypes.string.isRequired,
11078
- amount: T['io.flow.common.v0.models.price'].isRequired,
11079
- description: PropTypes.string,
11080
- type: T['io.flow.tech.onboarding.playground.v0.enums.anirban_item_type'].isRequired,
11081
- added_on: PropTypes.string.isRequired,
11082
- });
11083
-
11084
- T['io.flow.tech.onboarding.playground.v0.models.aldo_item_form'] = PropTypes.exact({
11085
- number: PropTypes.string.isRequired,
11086
- amount: T['io.flow.common.v0.models.price'].isRequired,
11087
- description: PropTypes.string,
11088
- type: T['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'].isRequired,
11089
- added_on: PropTypes.string.isRequired,
11090
- });
11091
-
11092
- T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
11093
- currency: PropTypes.string.isRequired,
11094
- amount: PropTypes.number.isRequired,
11095
- label: PropTypes.string.isRequired,
11096
- base: T['io.flow.common.v0.models.price'],
11097
- });
11098
-
11099
- T['io.flow.tech.onboarding.playground.v0.models.sarvesh_item'] = PropTypes.exact({
11100
- id: PropTypes.string.isRequired,
11101
- number: PropTypes.string.isRequired,
11102
- amount: T['io.flow.common.v0.models.price'].isRequired,
11103
- description: PropTypes.string,
11104
- type: T['io.flow.tech.onboarding.playground.v0.enums.sarvesh_item_type'].isRequired,
11105
- added_on: PropTypes.string.isRequired,
11106
- });
11107
-
11108
- T['io.flow.v0.models.sarvesh_item_upserted'] = PropTypes.exact({
11109
- discriminator: PropTypes.oneOf(['sarvesh_item_upserted']).isRequired,
11110
- event_id: PropTypes.string.isRequired,
11111
- timestamp: PropTypes.string.isRequired,
11112
- item: T['io.flow.tech.onboarding.playground.v0.models.sarvesh_item'].isRequired,
11113
- });
11114
-
11115
- T['io.flow.tech.onboarding.playground.v0.models.rohan_item'] = PropTypes.exact({
11116
- id: PropTypes.string.isRequired,
11117
- number: PropTypes.string.isRequired,
11118
- amount: T['io.flow.common.v0.models.price'].isRequired,
11119
- description: PropTypes.string,
11120
- type: T['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'].isRequired,
11121
- added_on: PropTypes.string.isRequired,
11122
- });
11123
-
11124
- T['io.flow.v0.models.rohan_item_upserted'] = PropTypes.exact({
11125
- discriminator: PropTypes.oneOf(['rohan_item_upserted']).isRequired,
11126
- event_id: PropTypes.string.isRequired,
11127
- timestamp: PropTypes.string.isRequired,
11128
- item: T['io.flow.tech.onboarding.playground.v0.models.rohan_item'].isRequired,
11129
- });
11130
-
11131
- T['io.flow.tech.onboarding.playground.v0.models.niall_item'] = PropTypes.exact({
11132
- id: PropTypes.string.isRequired,
11133
- number: PropTypes.string.isRequired,
11134
- amount: T['io.flow.common.v0.models.price'].isRequired,
11135
- description: PropTypes.string,
11136
- type: T['io.flow.tech.onboarding.playground.v0.enums.niall_item_type'].isRequired,
11137
- added_on: PropTypes.string.isRequired,
11138
- });
11139
-
11140
- T['io.flow.v0.models.niall_item_upserted'] = PropTypes.exact({
11141
- discriminator: PropTypes.oneOf(['niall_item_upserted']).isRequired,
11142
- event_id: PropTypes.string.isRequired,
11143
- timestamp: PropTypes.string.isRequired,
11144
- item: T['io.flow.tech.onboarding.playground.v0.models.niall_item'].isRequired,
11145
- });
11146
-
11147
- T['io.flow.tech.onboarding.playground.v0.models.hosein_item'] = PropTypes.exact({
11148
- id: PropTypes.string.isRequired,
11149
- number: PropTypes.string.isRequired,
11150
- amount: T['io.flow.common.v0.models.price'].isRequired,
11151
- description: PropTypes.string,
11152
- type: T['io.flow.tech.onboarding.playground.v0.enums.hosein_item_type'].isRequired,
11153
- added_on: PropTypes.string.isRequired,
11154
- });
11155
-
11156
- T['io.flow.v0.models.hosein_item_upserted'] = PropTypes.exact({
11157
- discriminator: PropTypes.oneOf(['hosein_item_upserted']).isRequired,
11158
- event_id: PropTypes.string.isRequired,
11159
- timestamp: PropTypes.string.isRequired,
11160
- item: T['io.flow.tech.onboarding.playground.v0.models.hosein_item'].isRequired,
11161
- });
11162
-
11163
- T['io.flow.tech.onboarding.playground.v0.models.ansh_item'] = PropTypes.exact({
11164
- id: PropTypes.string.isRequired,
11165
- number: PropTypes.string.isRequired,
11166
- amount: T['io.flow.common.v0.models.price'].isRequired,
11167
- description: PropTypes.string,
11168
- type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
11169
- added_on: PropTypes.string.isRequired,
11170
- });
11171
-
11172
- T['io.flow.v0.models.ansh_item_upserted'] = PropTypes.exact({
11173
- discriminator: PropTypes.oneOf(['ansh_item_upserted']).isRequired,
11174
- event_id: PropTypes.string.isRequired,
11175
- timestamp: PropTypes.string.isRequired,
11176
- item: T['io.flow.tech.onboarding.playground.v0.models.ansh_item'].isRequired,
11177
- });
11178
-
11179
- T['io.flow.tech.onboarding.playground.v0.models.anirban_item'] = PropTypes.exact({
11180
- id: PropTypes.string.isRequired,
11181
- number: PropTypes.string.isRequired,
11182
- amount: T['io.flow.common.v0.models.price'].isRequired,
11183
- description: PropTypes.string,
11184
- type: T['io.flow.tech.onboarding.playground.v0.enums.anirban_item_type'].isRequired,
11185
- added_on: PropTypes.string.isRequired,
11186
- });
11187
-
11188
- T['io.flow.v0.models.anirban_item_upserted'] = PropTypes.exact({
11189
- discriminator: PropTypes.oneOf(['anirban_item_upserted']).isRequired,
11190
- event_id: PropTypes.string.isRequired,
11191
- timestamp: PropTypes.string.isRequired,
11192
- item: T['io.flow.tech.onboarding.playground.v0.models.anirban_item'].isRequired,
11193
- });
11194
-
11195
- T['io.flow.tech.onboarding.playground.v0.models.aldo_item'] = PropTypes.exact({
11196
- id: PropTypes.string.isRequired,
11197
- number: PropTypes.string.isRequired,
11198
- amount: T['io.flow.common.v0.models.price'].isRequired,
11199
- description: PropTypes.string,
11200
- type: T['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'].isRequired,
11201
- added_on: PropTypes.string.isRequired,
11202
- });
11203
-
11204
- T['io.flow.v0.models.aldo_item_upserted'] = PropTypes.exact({
11205
- discriminator: PropTypes.oneOf(['aldo_item_upserted']).isRequired,
11206
- event_id: PropTypes.string.isRequired,
11207
- timestamp: PropTypes.string.isRequired,
11208
- item: T['io.flow.tech.onboarding.playground.v0.models.aldo_item'].isRequired,
11209
- });
11210
-
11211
11153
  T['io.flow.v0.models.adyen_challenge_shopper_data'] = PropTypes.exact({
11212
11154
  discriminator: PropTypes.oneOf(['adyen_challenge_shopper_data']).isRequired,
11213
11155
  challenge_token: PropTypes.string.isRequired,
@@ -11371,6 +11313,29 @@ T['io.flow.v0.models.address'] = PropTypes.exact({
11371
11313
  longitude: PropTypes.string,
11372
11314
  });
11373
11315
 
11316
+ T['io.flow.v0.models.tracking_label_event_v2'] = PropTypes.exact({
11317
+ id: PropTypes.string.isRequired,
11318
+ carrier_id: PropTypes.string.isRequired,
11319
+ carrier_tracking_number: PropTypes.string.isRequired,
11320
+ carrier_tracking_url: PropTypes.string,
11321
+ label_id: PropTypes.string.isRequired,
11322
+ order_number: PropTypes.string,
11323
+ status: T['io.flow.v0.enums.tracking_status'].isRequired,
11324
+ substatus: T['io.flow.v0.enums.substatus_code'],
11325
+ carrier_timestamp: PropTypes.string.isRequired,
11326
+ description: PropTypes.string,
11327
+ delivery_estimate: PropTypes.string,
11328
+ address: T['io.flow.v0.models.address'],
11329
+ });
11330
+
11331
+ T['io.flow.v0.models.tracking_label_event_upserted_v2'] = PropTypes.exact({
11332
+ discriminator: PropTypes.oneOf(['tracking_label_event_upserted_v2']).isRequired,
11333
+ event_id: PropTypes.string.isRequired,
11334
+ timestamp: PropTypes.string.isRequired,
11335
+ organization: PropTypes.string.isRequired,
11336
+ tracking_label_event: T['io.flow.v0.models.tracking_label_event_v2'].isRequired,
11337
+ });
11338
+
11374
11339
  T['io.flow.v0.models.tracking_label_event_upserted'] = PropTypes.exact({
11375
11340
  discriminator: PropTypes.oneOf(['tracking_label_event_upserted']).isRequired,
11376
11341
  event_id: PropTypes.string.isRequired,
@@ -11472,6 +11437,17 @@ T['io.flow.v0.models.harmonized_landed_cost_upserted'] = PropTypes.exact({
11472
11437
  landed_cost: T['io.flow.v0.models.harmonized_landed_cost'].isRequired,
11473
11438
  });
11474
11439
 
11440
+ T['io.flow.v0.models.merchant_onboarding_beneficiary_details'] = PropTypes.exact({
11441
+ name: PropTypes.string,
11442
+ address: T['io.flow.v0.models.address'],
11443
+ phone: PropTypes.string,
11444
+ email: PropTypes.string,
11445
+ bank_account_number: PropTypes.string,
11446
+ bank_routing_number: PropTypes.string,
11447
+ bank_name: PropTypes.string,
11448
+ bank_address: T['io.flow.v0.models.address'],
11449
+ });
11450
+
11475
11451
  T['io.flow.v0.models.consumer_invoice_center_reference'] = PropTypes.exact({
11476
11452
  id: PropTypes.string.isRequired,
11477
11453
  key: PropTypes.string.isRequired,
@@ -11662,6 +11638,20 @@ T['io.flow.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
11662
11638
  itemized_estimate: T['io.flow.v0.models.shipping_label_hop_cost_itemized_estimate'],
11663
11639
  });
11664
11640
 
11641
+ T['io.flow.v0.models.sellability_screening_form'] = PropTypes.exact({
11642
+ discriminator: PropTypes.oneOf(['sellability_screening_form']).isRequired,
11643
+ merchant_id: PropTypes.string.isRequired,
11644
+ product_id: PropTypes.string.isRequired,
11645
+ name: PropTypes.string.isRequired,
11646
+ price: T['io.flow.v0.models.money'].isRequired,
11647
+ description: PropTypes.string.isRequired,
11648
+ taxonomy_category: T['io.flow.v0.models.product_taxonomy_category'].isRequired,
11649
+ mode: T['io.flow.v0.enums.sellability_screening_mode'].isRequired,
11650
+ catalog_size: PropTypes.number,
11651
+ relative_ranking: PropTypes.number,
11652
+ dry_run: PropTypes.bool,
11653
+ });
11654
+
11665
11655
  T['io.flow.v0.models.security_service_fee'] = PropTypes.exact({
11666
11656
  discriminator: PropTypes.oneOf(['security_service_fee']).isRequired,
11667
11657
  amount: T['io.flow.v0.models.money'].isRequired,
@@ -11721,6 +11711,7 @@ T['io.flow.v0.models.remote_area_ratecard_fee'] = PropTypes.exact({
11721
11711
  });
11722
11712
 
11723
11713
  T['io.flow.v0.models.product_sellability_form'] = PropTypes.exact({
11714
+ discriminator: PropTypes.oneOf(['product_sellability_form']).isRequired,
11724
11715
  shop_id: PropTypes.string.isRequired,
11725
11716
  product_id: PropTypes.string,
11726
11717
  name: PropTypes.string.isRequired,
@@ -11731,6 +11722,11 @@ T['io.flow.v0.models.product_sellability_form'] = PropTypes.exact({
11731
11722
  dry_run: PropTypes.bool,
11732
11723
  });
11733
11724
 
11725
+ T['io.flow.v0.unions.sellability_request'] = PropTypes.oneOfType([
11726
+ T['io.flow.v0.models.product_sellability_form'],
11727
+ T['io.flow.v0.models.sellability_screening_form'],
11728
+ ]);
11729
+
11734
11730
  T['io.flow.v0.models.price_source_provided'] = PropTypes.exact({
11735
11731
  discriminator: PropTypes.oneOf(['provided']).isRequired,
11736
11732
  price: T['io.flow.v0.models.money'].isRequired,
@@ -11792,6 +11788,19 @@ T['io.flow.v0.models.localized_line_item_discount'] = PropTypes.exact({
11792
11788
  discount_label: PropTypes.string,
11793
11789
  });
11794
11790
 
11791
+ T['io.flow.v0.models.tax_breakdown'] = PropTypes.exact({
11792
+ label: PropTypes.string.isRequired,
11793
+ calculated_tax: T['io.flow.v0.models.money'].isRequired,
11794
+ rate: PropTypes.number.isRequired,
11795
+ line_total: T['io.flow.v0.models.money'].isRequired,
11796
+ jurisdiction_type: T['io.flow.v0.enums.tax_jurisdiction_type'].isRequired,
11797
+ });
11798
+
11799
+ T['io.flow.v0.models.invoice_tax_line'] = PropTypes.exact({
11800
+ line_id: PropTypes.string.isRequired,
11801
+ tax_breakdown: PropTypes.arrayOf(T['io.flow.v0.models.tax_breakdown']).isRequired,
11802
+ });
11803
+
11795
11804
  T['io.flow.v0.models.inbound_carton_fee'] = PropTypes.exact({
11796
11805
  discriminator: PropTypes.oneOf(['inbound_carton_fee']).isRequired,
11797
11806
  amount: T['io.flow.v0.models.money'].isRequired,
@@ -12063,6 +12072,41 @@ T['io.flow.v0.models.capture_deleted'] = PropTypes.exact({
12063
12072
  capture: T['io.flow.v0.models.capture'].isRequired,
12064
12073
  });
12065
12074
 
12075
+ T['io.flow.v0.models.b2b_credit_memo'] = PropTypes.exact({
12076
+ id: PropTypes.string.isRequired,
12077
+ number: PropTypes.string.isRequired,
12078
+ buyer: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
12079
+ seller: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
12080
+ status: T['io.flow.v0.enums.consumer_invoice_status'].isRequired,
12081
+ date: PropTypes.string.isRequired,
12082
+ key: PropTypes.string.isRequired,
12083
+ invoice: T['io.flow.v0.models.b2b_invoice_reference'].isRequired,
12084
+ lines: PropTypes.arrayOf(T['io.flow.v0.unions.consumer_invoice_line']).isRequired,
12085
+ tax_lines: PropTypes.arrayOf(T['io.flow.v0.models.invoice_tax_line']),
12086
+ tax: T['io.flow.v0.models.money'],
12087
+ documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
12088
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
12089
+ b2b_invoice_type: T['io.flow.v0.enums.b2b_invoice_type'].isRequired,
12090
+ center: T['io.flow.v0.models.consumer_invoice_center_reference'],
12091
+ order: T['io.flow.v0.models.consumer_invoice_order_summary'],
12092
+ });
12093
+
12094
+ T['io.flow.v0.models.b2b_credit_memo_upserted'] = PropTypes.exact({
12095
+ discriminator: PropTypes.oneOf(['b2b_credit_memo_upserted']).isRequired,
12096
+ event_id: PropTypes.string.isRequired,
12097
+ timestamp: PropTypes.string.isRequired,
12098
+ organization: PropTypes.string.isRequired,
12099
+ b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
12100
+ });
12101
+
12102
+ T['io.flow.v0.models.b2b_credit_memo_deleted'] = PropTypes.exact({
12103
+ discriminator: PropTypes.oneOf(['b2b_credit_memo_deleted']).isRequired,
12104
+ event_id: PropTypes.string.isRequired,
12105
+ timestamp: PropTypes.string.isRequired,
12106
+ organization: PropTypes.string.isRequired,
12107
+ b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
12108
+ });
12109
+
12066
12110
  T['io.flow.v0.models.amount_margin_form'] = PropTypes.exact({
12067
12111
  discriminator: PropTypes.oneOf(['amount_margin_form']).isRequired,
12068
12112
  margin: T['io.flow.v0.models.money'].isRequired,
@@ -12495,6 +12539,7 @@ T['io.flow.v0.models.emergency_situation_surcharge_service_fee'] = PropTypes.exa
12495
12539
  amount: T['io.flow.v0.models.money'].isRequired,
12496
12540
  origin_region: T['io.flow.v0.models.ratecard_region_reference'],
12497
12541
  destination_region: T['io.flow.v0.models.ratecard_region_reference'],
12542
+ destination_regions: PropTypes.arrayOf(T['io.flow.v0.models.ratecard_region_reference']),
12498
12543
  interval_unit: T['io.flow.v0.enums.unit_of_measurement'],
12499
12544
  });
12500
12545
 
@@ -12527,6 +12572,27 @@ T['io.flow.v0.models.tax_duty_quote_form'] = PropTypes.exact({
12527
12572
  includes: PropTypes.arrayOf(T['io.flow.v0.enums.levy_inclusion']),
12528
12573
  });
12529
12574
 
12575
+ T['io.flow.v0.models.shipping_rate_estimate_available'] = PropTypes.exact({
12576
+ service: T['io.flow.v0.models.ratecard_service_summary'].isRequired,
12577
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
12578
+ shipment_window: T['io.flow.v0.models.shipment_window'].isRequired,
12579
+ total_amount: T['io.flow.v0.models.money'].isRequired,
12580
+ base_amount: T['io.flow.v0.models.money'].isRequired,
12581
+ fees: PropTypes.arrayOf(T['io.flow.v0.unions.ratecard_fee']).isRequired,
12582
+ dimensional_weight: T['io.flow.v0.models.measurement'],
12583
+ gravitational_weight: T['io.flow.v0.models.measurement'],
12584
+ weight_break: PropTypes.number,
12585
+ });
12586
+
12587
+ T['io.flow.v0.models.shipping_rate_estimate'] = PropTypes.exact({
12588
+ origin_address: T['io.flow.v0.models.address'].isRequired,
12589
+ destination_address: T['io.flow.v0.models.address'].isRequired,
12590
+ shipping_date_time: PropTypes.string.isRequired,
12591
+ services: PropTypes.arrayOf(PropTypes.string).isRequired,
12592
+ available: PropTypes.arrayOf(T['io.flow.v0.models.shipping_rate_estimate_available']).isRequired,
12593
+ unavailable: PropTypes.arrayOf(T['io.flow.v0.models.shipping_rate_estimate_unavailable']),
12594
+ });
12595
+
12530
12596
  T['io.flow.v0.models.estimated_dimensions'] = PropTypes.exact({
12531
12597
  depth: T['io.flow.v0.models.measurement'].isRequired,
12532
12598
  length: T['io.flow.v0.models.measurement'].isRequired,
@@ -12556,6 +12622,11 @@ T['io.flow.v0.models.dimension_estimate_version'] = PropTypes.exact({
12556
12622
  dimension_estimate: T['io.flow.v0.models.dimension_estimate'].isRequired,
12557
12623
  });
12558
12624
 
12625
+ T['io.flow.v0.models.option_weight_estimates'] = PropTypes.exact({
12626
+ gravitational: T['io.flow.v0.models.measurement'].isRequired,
12627
+ dimensional: T['io.flow.v0.models.measurement'].isRequired,
12628
+ });
12629
+
12559
12630
  T['io.flow.v0.models.dimension'] = PropTypes.exact({
12560
12631
  depth: T['io.flow.v0.models.measurement'],
12561
12632
  diameter: T['io.flow.v0.models.measurement'],
@@ -12590,6 +12661,7 @@ T['io.flow.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
12590
12661
  third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.v0.models.third_party_logistics_partner']),
12591
12662
  center_contact: T['io.flow.v0.models.operations_contact'],
12592
12663
  average_order_weight: PropTypes.number,
12664
+ average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12593
12665
  package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
12594
12666
  monthly_average_volume_amount: PropTypes.number,
12595
12667
  monthly_average_volume_currency: PropTypes.string,
@@ -12604,8 +12676,6 @@ T['io.flow.v0.models.shopify_merchant_application_form'] = PropTypes.exact({
12604
12676
  mcc_codes: PropTypes.arrayOf(PropTypes.number),
12605
12677
  });
12606
12678
 
12607
- T['io.flow.v0.unions.merchant_application_form'] = PropTypes.oneOfType([T['io.flow.v0.models.shopify_merchant_application_form']]);
12608
-
12609
12679
  T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
12610
12680
  discriminator: PropTypes.oneOf(['shopify_merchant_application']).isRequired,
12611
12681
  id: PropTypes.string.isRequired,
@@ -12627,6 +12697,7 @@ T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
12627
12697
  third_party_logistics_partners: PropTypes.arrayOf(T['io.flow.v0.models.third_party_logistics_partner']),
12628
12698
  center_contact: T['io.flow.v0.models.operations_contact'],
12629
12699
  average_order_weight: PropTypes.number,
12700
+ average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12630
12701
  package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
12631
12702
  monthly_average: T['io.flow.v0.models.monthly_average'],
12632
12703
  default_country_of_origin: PropTypes.string,
@@ -12643,22 +12714,6 @@ T['io.flow.v0.models.shopify_merchant_application'] = PropTypes.exact({
12643
12714
  mcc_codes: PropTypes.arrayOf(PropTypes.number),
12644
12715
  });
12645
12716
 
12646
- T['io.flow.v0.unions.merchant_application'] = PropTypes.oneOfType([T['io.flow.v0.models.shopify_merchant_application']]);
12647
-
12648
- T['io.flow.v0.models.merchant_application_upserted'] = PropTypes.exact({
12649
- discriminator: PropTypes.oneOf(['merchant_application_upserted']).isRequired,
12650
- event_id: PropTypes.string.isRequired,
12651
- timestamp: PropTypes.string.isRequired,
12652
- merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
12653
- });
12654
-
12655
- T['io.flow.v0.models.merchant_application_deleted'] = PropTypes.exact({
12656
- discriminator: PropTypes.oneOf(['merchant_application_deleted']).isRequired,
12657
- event_id: PropTypes.string.isRequired,
12658
- timestamp: PropTypes.string.isRequired,
12659
- merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
12660
- });
12661
-
12662
12717
  T['io.flow.v0.models.package_dimensions_form'] = PropTypes.exact({
12663
12718
  dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']).isRequired,
12664
12719
  });
@@ -12825,9 +12880,89 @@ T['io.flow.v0.models.packaging'] = PropTypes.exact({
12825
12880
  number: PropTypes.string,
12826
12881
  });
12827
12882
 
12828
- T['io.flow.v0.models.option_weight_estimates'] = PropTypes.exact({
12829
- gravitational: T['io.flow.v0.models.measurement'].isRequired,
12830
- dimensional: T['io.flow.v0.models.measurement'].isRequired,
12883
+ T['io.flow.v0.models.common_merchant_application_form'] = PropTypes.exact({
12884
+ discriminator: PropTypes.oneOf(['common_merchant_application_form']).isRequired,
12885
+ company: T['io.flow.v0.models.merchant_info'],
12886
+ indirect_tax: T['io.flow.v0.models.indirect_tax'],
12887
+ ultimate_beneficiary_owner: T['io.flow.v0.models.ultimate_beneficiary_owner'],
12888
+ business_url: PropTypes.string,
12889
+ business_description: PropTypes.string,
12890
+ business_address: T['io.flow.v0.models.address'],
12891
+ refund_percentage: PropTypes.number,
12892
+ chargeback_percentage: PropTypes.number,
12893
+ beneficiary_details: T['io.flow.v0.models.merchant_onboarding_beneficiary_details'],
12894
+ other_trade_sector: PropTypes.string,
12895
+ center_contact: T['io.flow.v0.models.operations_contact'],
12896
+ center_address: T['io.flow.v0.models.address'],
12897
+ average_order_weight: PropTypes.number,
12898
+ average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12899
+ package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
12900
+ monthly_average_volume_amount: PropTypes.number,
12901
+ monthly_average_volume_currency: PropTypes.string,
12902
+ monthly_average_number_transactions: PropTypes.number,
12903
+ default_country_of_origin: PropTypes.string,
12904
+ shop: T['io.flow.v0.models.shop'],
12905
+ rate_card: PropTypes.string,
12906
+ last_year_xborder_gmv: T['io.flow.v0.models.money'],
12907
+ last_month_xborder_gmv: T['io.flow.v0.models.money'],
12908
+ average_order_value: T['io.flow.v0.models.money'],
12909
+ mcc_codes: PropTypes.arrayOf(PropTypes.number),
12910
+ });
12911
+
12912
+ T['io.flow.v0.unions.merchant_application_form'] = PropTypes.oneOfType([
12913
+ T['io.flow.v0.models.shopify_merchant_application_form'],
12914
+ T['io.flow.v0.models.common_merchant_application_form'],
12915
+ ]);
12916
+
12917
+ T['io.flow.v0.models.common_merchant_application'] = PropTypes.exact({
12918
+ discriminator: PropTypes.oneOf(['common_merchant_application']).isRequired,
12919
+ id: PropTypes.string.isRequired,
12920
+ organization_id: PropTypes.string.isRequired,
12921
+ organization_reference: T['io.flow.v0.models.onboarding_organization_reference'].isRequired,
12922
+ status: T['io.flow.v0.enums.onboarding_application_status'].isRequired,
12923
+ company: T['io.flow.v0.models.merchant_info'],
12924
+ indirect_tax: T['io.flow.v0.models.indirect_tax'],
12925
+ ultimate_beneficiary_owner: T['io.flow.v0.models.ultimate_beneficiary_owner'],
12926
+ business_url: PropTypes.string,
12927
+ business_description: PropTypes.string,
12928
+ business_address: T['io.flow.v0.models.address'],
12929
+ refund_percentage: PropTypes.number,
12930
+ chargeback_percentage: PropTypes.number,
12931
+ beneficiary_details: T['io.flow.v0.models.merchant_onboarding_beneficiary_details'],
12932
+ other_trade_sector: PropTypes.string,
12933
+ center_contact: T['io.flow.v0.models.operations_contact'],
12934
+ center_address: T['io.flow.v0.models.address'],
12935
+ average_order_weight: PropTypes.number,
12936
+ average_order_weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
12937
+ package_dimensions: PropTypes.arrayOf(T['io.flow.v0.models.dimension']),
12938
+ monthly_average: T['io.flow.v0.models.monthly_average'],
12939
+ default_country_of_origin: PropTypes.string,
12940
+ rate_card: PropTypes.string.isRequired,
12941
+ shop: T['io.flow.v0.models.shop'],
12942
+ created_at: PropTypes.string.isRequired,
12943
+ last_year_xborder_gmv: T['io.flow.v0.models.money'],
12944
+ last_month_xborder_gmv: T['io.flow.v0.models.money'],
12945
+ average_order_value: T['io.flow.v0.models.money'],
12946
+ mcc_codes: PropTypes.arrayOf(PropTypes.number),
12947
+ });
12948
+
12949
+ T['io.flow.v0.unions.merchant_application'] = PropTypes.oneOfType([
12950
+ T['io.flow.v0.models.shopify_merchant_application'],
12951
+ T['io.flow.v0.models.common_merchant_application'],
12952
+ ]);
12953
+
12954
+ T['io.flow.v0.models.merchant_application_upserted'] = PropTypes.exact({
12955
+ discriminator: PropTypes.oneOf(['merchant_application_upserted']).isRequired,
12956
+ event_id: PropTypes.string.isRequired,
12957
+ timestamp: PropTypes.string.isRequired,
12958
+ merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
12959
+ });
12960
+
12961
+ T['io.flow.v0.models.merchant_application_deleted'] = PropTypes.exact({
12962
+ discriminator: PropTypes.oneOf(['merchant_application_deleted']).isRequired,
12963
+ event_id: PropTypes.string.isRequired,
12964
+ timestamp: PropTypes.string.isRequired,
12965
+ merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
12831
12966
  });
12832
12967
 
12833
12968
  T['io.flow.v0.models.additional_handling_service_fee'] = PropTypes.exact({
@@ -13077,6 +13212,7 @@ T['io.flow.v0.models.payment_request'] = PropTypes.exact({
13077
13212
  supported_actions: PropTypes.arrayOf(T['io.flow.v0.enums.payment_action_type']).isRequired,
13078
13213
  payment_capture_option: T['io.flow.v0.unions.payment_capture_option'],
13079
13214
  review: T['io.flow.v0.models.payment_request_review'],
13215
+ client_secret: PropTypes.string,
13080
13216
  });
13081
13217
 
13082
13218
  T['io.flow.v0.models.payment_request_upserted'] = PropTypes.exact({
@@ -13631,6 +13767,7 @@ T['io.flow.v0.models.b2b_invoice'] = PropTypes.exact({
13631
13767
  center: T['io.flow.v0.models.consumer_invoice_center_reference'],
13632
13768
  destination: T['io.flow.v0.models.order_address'],
13633
13769
  tax: T['io.flow.v0.models.money'].isRequired,
13770
+ tax_lines: PropTypes.arrayOf(T['io.flow.v0.models.invoice_tax_line']),
13634
13771
  lines: PropTypes.arrayOf(T['io.flow.v0.unions.consumer_invoice_line']).isRequired,
13635
13772
  documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
13636
13773
  attributes: PropTypes.objectOf(PropTypes.string).isRequired,
@@ -13676,6 +13813,22 @@ T['io.flow.v0.models.shopify_order_romanization_metafield'] = PropTypes.exact({
13676
13813
  billing: T['io.flow.v0.models.billing_address'],
13677
13814
  });
13678
13815
 
13816
+ T['io.flow.v0.models.organization_tax_registration'] = PropTypes.exact({
13817
+ id: PropTypes.string.isRequired,
13818
+ organization: T['io.flow.v0.models.organization_summary'].isRequired,
13819
+ address: T['io.flow.v0.models.billing_address'].isRequired,
13820
+ registration: T['io.flow.v0.models.tax_registration_detail'].isRequired,
13821
+ self_billing_agreement: T['io.flow.v0.models.self_billing_agreement'].isRequired,
13822
+ });
13823
+
13824
+ T['io.flow.v0.models.tax_registration_upserted'] = PropTypes.exact({
13825
+ discriminator: PropTypes.oneOf(['tax_registration_upserted']).isRequired,
13826
+ event_id: PropTypes.string.isRequired,
13827
+ timestamp: PropTypes.string.isRequired,
13828
+ organization: PropTypes.string.isRequired,
13829
+ tax_registration: T['io.flow.v0.models.organization_tax_registration'].isRequired,
13830
+ });
13831
+
13679
13832
  T['io.flow.v0.models.order_builder_customer_invoice_address_form'] = PropTypes.exact({
13680
13833
  address: T['io.flow.v0.models.billing_address'].isRequired,
13681
13834
  });
@@ -13771,6 +13924,8 @@ T['io.flow.v0.models.credit_memo'] = PropTypes.exact({
13771
13924
  documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
13772
13925
  attributes: PropTypes.objectOf(PropTypes.string).isRequired,
13773
13926
  tax_registration: T['io.flow.v0.models.tax_registration'],
13927
+ center: T['io.flow.v0.models.consumer_invoice_center_reference'],
13928
+ order: T['io.flow.v0.models.consumer_invoice_order_summary'],
13774
13929
  });
13775
13930
 
13776
13931
  T['io.flow.v0.models.credit_memo_upserted'] = PropTypes.exact({
@@ -14338,6 +14493,17 @@ T['io.flow.v0.models.summary_shipping_label_form'] = PropTypes.exact({
14338
14493
  reference_id: PropTypes.string,
14339
14494
  });
14340
14495
 
14496
+ T['io.flow.v0.models.shipping_rate_estimate_request'] = PropTypes.exact({
14497
+ origin_address: T['io.flow.v0.models.address'].isRequired,
14498
+ destination_address: T['io.flow.v0.models.address'].isRequired,
14499
+ package_dimensions: T['io.flow.v0.models.dimension'].isRequired,
14500
+ shipping_date_time: PropTypes.string.isRequired,
14501
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'],
14502
+ duties_owed: T['io.flow.v0.models.money'],
14503
+ taxes_owed: T['io.flow.v0.models.money'],
14504
+ line_items: PropTypes.arrayOf(T['io.flow.v0.models.line_item_form']),
14505
+ });
14506
+
14341
14507
  T['io.flow.v0.models.ratecard_estimate_v4'] = PropTypes.exact({
14342
14508
  discriminator: PropTypes.oneOf(['ratecard_estimate_v4']).isRequired,
14343
14509
  hops: PropTypes.arrayOf(T['io.flow.v0.models.hop_v2']).isRequired,
@@ -14410,6 +14576,7 @@ T['io.flow.v0.models.ratecard_estimate_form'] = PropTypes.exact({
14410
14576
  center_id: PropTypes.string,
14411
14577
  taxes_owed: T['io.flow.v0.models.money'],
14412
14578
  duties_owed: T['io.flow.v0.models.money'],
14579
+ commercial_invoice_mode: T['io.flow.v0.enums.commercial_invoice_mode'],
14413
14580
  });
14414
14581
 
14415
14582
  T['io.flow.v0.models.order_replacement_form'] = PropTypes.exact({
@@ -14535,32 +14702,6 @@ T['io.flow.v0.models.notification_deleted_v2'] = PropTypes.exact({
14535
14702
  notification: T['io.flow.v0.models.shipping_notification'].isRequired,
14536
14703
  });
14537
14704
 
14538
- T['io.flow.v0.models.label_upserted'] = PropTypes.exact({
14539
- discriminator: PropTypes.oneOf(['label_upserted']).isRequired,
14540
- event_id: PropTypes.string.isRequired,
14541
- timestamp: PropTypes.string.isRequired,
14542
- organization: PropTypes.string.isRequired,
14543
- label_id: PropTypes.string.isRequired,
14544
- carrier_tracking_number: PropTypes.string.isRequired,
14545
- commercial_invoice: PropTypes.string.isRequired,
14546
- flow_tracking_number: PropTypes.string.isRequired,
14547
- destination: T['io.flow.v0.models.shipping_address'].isRequired,
14548
- origin: T['io.flow.v0.models.shipping_address'].isRequired,
14549
- carrier: PropTypes.string.isRequired,
14550
- service: PropTypes.string.isRequired,
14551
- zpl: PropTypes.string,
14552
- pdf: PropTypes.string,
14553
- png: PropTypes.string,
14554
- order: PropTypes.string,
14555
- carrier_tracking_number_url: PropTypes.string,
14556
- flow_tracking_number_url: PropTypes.string,
14557
- center_key: PropTypes.string,
14558
- recipient: T['io.flow.v0.enums.shipment_recipient'],
14559
- 'package': T['io.flow.v0.models.shipping_label_package'],
14560
- order_identifier: PropTypes.string,
14561
- fulfillment_key: PropTypes.string,
14562
- });
14563
-
14564
14705
  T['io.flow.v0.models.shipping_label'] = PropTypes.exact({
14565
14706
  id: PropTypes.string.isRequired,
14566
14707
  hop: T['io.flow.v0.models.shipping_label_hop_summary'],
@@ -14644,20 +14785,6 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
14644
14785
  T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14645
14786
  T['io.flow.v0.models.test_upserted'],
14646
14787
  T['io.flow.v0.models.generate_load'],
14647
- T['io.flow.v0.models.sarvesh_item_upserted'],
14648
- T['io.flow.v0.models.sarvesh_item_deleted'],
14649
- T['io.flow.v0.models.hosein_item_upserted'],
14650
- T['io.flow.v0.models.hosein_item_deleted'],
14651
- T['io.flow.v0.models.niall_item_upserted'],
14652
- T['io.flow.v0.models.niall_item_deleted'],
14653
- T['io.flow.v0.models.rohan_item_upserted'],
14654
- T['io.flow.v0.models.rohan_item_deleted'],
14655
- T['io.flow.v0.models.aldo_item_upserted'],
14656
- T['io.flow.v0.models.aldo_item_deleted'],
14657
- T['io.flow.v0.models.ansh_item_upserted'],
14658
- T['io.flow.v0.models.ansh_item_deleted'],
14659
- T['io.flow.v0.models.anirban_item_upserted'],
14660
- T['io.flow.v0.models.anirban_item_deleted'],
14661
14788
  T['io.flow.v0.models.transaction_upserted'],
14662
14789
  T['io.flow.v0.models.organization_transaction_upserted'],
14663
14790
  T['io.flow.v0.models.organization_transaction_deleted'],
@@ -14742,7 +14869,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14742
14869
  T['io.flow.v0.models.item_origin_deleted'],
14743
14870
  T['io.flow.v0.models.harmonized_landed_cost_upserted'],
14744
14871
  T['io.flow.v0.models.fully_harmonized_item_upserted'],
14745
- T['io.flow.v0.models.label_upserted'],
14746
14872
  T['io.flow.v0.models.label_deleted_v2'],
14747
14873
  T['io.flow.v0.models.label_upserted_v2'],
14748
14874
  T['io.flow.v0.models.notification_upserted_v2'],
@@ -14765,6 +14891,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14765
14891
  T['io.flow.v0.models.organization_deleted_v2'],
14766
14892
  T['io.flow.v0.models.ecommerce_platform_upserted'],
14767
14893
  T['io.flow.v0.models.ecommerce_platform_deleted'],
14894
+ T['io.flow.v0.models.tax_registration_upserted'],
14895
+ T['io.flow.v0.models.tax_registration_deleted'],
14768
14896
  T['io.flow.v0.models.organization_onboarding_state_upserted'],
14769
14897
  T['io.flow.v0.models.organization_onboarding_state_deleted'],
14770
14898
  T['io.flow.v0.models.authorization_deleted_v2'],
@@ -14812,9 +14940,12 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
14812
14940
  T['io.flow.v0.models.ratecard_deleted'],
14813
14941
  T['io.flow.v0.models.product_restriction_result_upserted'],
14814
14942
  T['io.flow.v0.models.product_restriction_result_deleted'],
14943
+ T['io.flow.v0.models.product_sellability_result_upserted'],
14944
+ T['io.flow.v0.models.product_sellability_result_deleted'],
14815
14945
  T['io.flow.v0.models.shopify_localization_setting_upserted'],
14816
14946
  T['io.flow.v0.models.shopify_localization_setting_deleted'],
14817
14947
  T['io.flow.v0.models.tracking_label_event_upserted'],
14948
+ T['io.flow.v0.models.tracking_label_event_upserted_v2'],
14818
14949
  ]);
14819
14950
 
14820
14951
  T['io.flow.v0.models.detailed_shipping_notification_form'] = PropTypes.exact({
@@ -15003,20 +15134,6 @@ T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
15003
15134
  T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15004
15135
  'test_upserted',
15005
15136
  'generate_load',
15006
- 'sarvesh_item_upserted',
15007
- 'sarvesh_item_deleted',
15008
- 'hosein_item_upserted',
15009
- 'hosein_item_deleted',
15010
- 'niall_item_upserted',
15011
- 'niall_item_deleted',
15012
- 'rohan_item_upserted',
15013
- 'rohan_item_deleted',
15014
- 'aldo_item_upserted',
15015
- 'aldo_item_deleted',
15016
- 'ansh_item_upserted',
15017
- 'ansh_item_deleted',
15018
- 'anirban_item_upserted',
15019
- 'anirban_item_deleted',
15020
15137
  'transaction_upserted',
15021
15138
  'organization_transaction_upserted',
15022
15139
  'organization_transaction_deleted',
@@ -15101,7 +15218,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15101
15218
  'item_origin_deleted',
15102
15219
  'harmonized_landed_cost_upserted',
15103
15220
  'fully_harmonized_item_upserted',
15104
- 'label_upserted',
15105
15221
  'label_deleted_v2',
15106
15222
  'label_upserted_v2',
15107
15223
  'notification_upserted_v2',
@@ -15124,6 +15240,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15124
15240
  'organization_deleted_v2',
15125
15241
  'ecommerce_platform_upserted',
15126
15242
  'ecommerce_platform_deleted',
15243
+ 'tax_registration_upserted',
15244
+ 'tax_registration_deleted',
15127
15245
  'organization_onboarding_state_upserted',
15128
15246
  'organization_onboarding_state_deleted',
15129
15247
  'authorization_deleted_v2',
@@ -15171,9 +15289,12 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
15171
15289
  'ratecard_deleted',
15172
15290
  'product_restriction_result_upserted',
15173
15291
  'product_restriction_result_deleted',
15292
+ 'product_sellability_result_upserted',
15293
+ 'product_sellability_result_deleted',
15174
15294
  'shopify_localization_setting_upserted',
15175
15295
  'shopify_localization_setting_deleted',
15176
15296
  'tracking_label_event_upserted',
15297
+ 'tracking_label_event_upserted_v2',
15177
15298
  ]);
15178
15299
 
15179
15300
  T['io.flow.v0.enums.fraud_liability'] = PropTypes.oneOf(['flow', 'organization']);
@@ -15218,51 +15339,7 @@ T['io.flow.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open', 'Clos
15218
15339
  T['io.flow.v0.enums.shopify_grant'] = PropTypes.oneOf(['customer', 'discount', 'gift_card', 'metafield', 'order']);
15219
15340
  T['io.flow.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
15220
15341
  T['io.flow.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
15221
-
15222
- T['io.flow.v0.enums.substatus_code'] = PropTypes.oneOf([
15223
- 'Delivered_001',
15224
- 'Delivered_002',
15225
- 'Delivered_003',
15226
- 'Delivered_004',
15227
- 'AvailableForPickup_001',
15228
- 'Exception_001',
15229
- 'Exception_002',
15230
- 'Exception_003',
15231
- 'Exception_004',
15232
- 'Exception_005',
15233
- 'Exception_006',
15234
- 'Exception_007',
15235
- 'Exception_008',
15236
- 'Exception_009',
15237
- 'Exception_010',
15238
- 'Exception_011',
15239
- 'Exception_012',
15240
- 'Exception_013',
15241
- 'AttemptFail_001',
15242
- 'AttemptFail_002',
15243
- 'AttemptFail_003',
15244
- 'InTransit_001',
15245
- 'InTransit_002',
15246
- 'InTransit_003',
15247
- 'InTransit_004',
15248
- 'InTransit_005',
15249
- 'InTransit_006',
15250
- 'InTransit_007',
15251
- 'InTransit_008',
15252
- 'InTransit_009',
15253
- 'InfoReceived_001',
15254
- 'OutForDelivery_001',
15255
- 'OutForDelivery_003',
15256
- 'OutForDelivery_004',
15257
- 'Pending_001',
15258
- 'Pending_002',
15259
- 'Pending_003',
15260
- 'Pending_004',
15261
- 'Pending_005',
15262
- 'Pending_006',
15263
- 'Expired_001',
15264
- ]);
15265
-
15342
+ T['io.flow.v0.enums.tax_type'] = PropTypes.oneOf(['vat', 'gst', 'hst', 'pst', 'qst', 'sales_tax']);
15266
15343
  T['io.flow.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
15267
15344
  T['io.flow.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
15268
15345
  T['io.flow.v0.enums.tracking_number_type'] = PropTypes.oneOf(['flow', 'carrier']);
@@ -15701,6 +15778,14 @@ T['io.flow.v0.models.organization_bank_account'] = PropTypes.exact({
15701
15778
  last4: PropTypes.string.isRequired,
15702
15779
  });
15703
15780
 
15781
+ T['io.flow.v0.models.organization_tax_registration_form'] = PropTypes.exact({
15782
+ tax_number: PropTypes.string.isRequired,
15783
+ country: PropTypes.string.isRequired,
15784
+ province: PropTypes.string,
15785
+ self_billing_agreement_effective_at: PropTypes.string.isRequired,
15786
+ self_billing_agreement_expires_at: PropTypes.string,
15787
+ });
15788
+
15704
15789
  T['io.flow.v0.models.organization_token_form_v2'] = PropTypes.exact({
15705
15790
  organization_id: PropTypes.string.isRequired,
15706
15791
  description: PropTypes.string,
@@ -16277,15 +16362,6 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
16277
16362
  paymentData: PropTypes.object.isRequired,
16278
16363
  });
16279
16364
 
16280
- T['io.flow.tech.onboarding.playground.v0.models.jean_demo_item'] = PropTypes.exact({
16281
- id: PropTypes.string.isRequired,
16282
- name: PropTypes.string.isRequired,
16283
- });
16284
-
16285
- T['io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description'] = PropTypes.exact({
16286
- description: PropTypes.string.isRequired,
16287
- });
16288
-
16289
16365
  T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
16290
16366
  name: PropTypes.string.isRequired,
16291
16367
  });
@@ -16341,8 +16417,6 @@ export const adyenNativeActionDetails = T['io.flow.v0.models.adyen_native_action
16341
16417
  export const adyenNativeData = T['io.flow.v0.unions.adyen_native_data'];
16342
16418
  export const adyenV3ChallengeToken = T['io.flow.v0.models.adyen_v3_challenge_token'];
16343
16419
  export const adyenV3FingerprintToken = T['io.flow.v0.models.adyen_v3_fingerprint_token'];
16344
- export const aldoItemDeleted = T['io.flow.v0.models.aldo_item_deleted'];
16345
- export const aldoItemUpserted = T['io.flow.v0.models.aldo_item_upserted'];
16346
16420
  export const allocation = T['io.flow.v0.models.allocation'];
16347
16421
  export const allocationComponent = T['io.flow.v0.unions.allocation_component'];
16348
16422
  export const allocationDeletedV2 = T['io.flow.v0.models.allocation_deleted_v2'];
@@ -16360,10 +16434,6 @@ export const allocationV2 = T['io.flow.v0.models.allocation_v2'];
16360
16434
  export const amountMargin = T['io.flow.v0.models.amount_margin'];
16361
16435
  export const amountMarginForm = T['io.flow.v0.models.amount_margin_form'];
16362
16436
  export const analyticsExportType = T['io.flow.v0.models.analytics_export_type'];
16363
- export const anirbanItemDeleted = T['io.flow.v0.models.anirban_item_deleted'];
16364
- export const anirbanItemUpserted = T['io.flow.v0.models.anirban_item_upserted'];
16365
- export const anshItemDeleted = T['io.flow.v0.models.ansh_item_deleted'];
16366
- export const anshItemUpserted = T['io.flow.v0.models.ansh_item_upserted'];
16367
16437
  export const applePayMerchantValidationPayload = T['io.flow.v0.models.apple_pay_merchant_validation_payload'];
16368
16438
  export const applepaySdkCreateResultActionDetails = T['io.flow.v0.models.applepay_sdk_create_result_action_details'];
16369
16439
  export const applepaySdkValidateResultActionDetails = T['io.flow.v0.models.applepay_sdk_validate_result_action_details'];
@@ -16582,6 +16652,11 @@ export const checkoutUrls = T['io.flow.v0.models.checkout_urls'];
16582
16652
  export const checkoutUrlsForm = T['io.flow.v0.models.checkout_urls_form'];
16583
16653
  export const cleartext = T['io.flow.v0.models.cleartext'];
16584
16654
  export const commercialInvoiceFee = T['io.flow.v0.models.commercial_invoice_fee'];
16655
+ export const commercialInvoiceMode = T['io.flow.v0.enums.commercial_invoice_mode'];
16656
+ export const commonMerchantApplication = T['io.flow.v0.models.common_merchant_application'];
16657
+ export const commonMerchantApplicationForm = T['io.flow.v0.models.common_merchant_application_form'];
16658
+ export const commonMerchantApplicationPutForm = T['io.flow.v0.models.common_merchant_application_put_form'];
16659
+ export const commonMerchantApplicationsSummary = T['io.flow.v0.models.common_merchant_applications_summary'];
16585
16660
  export const company = T['io.flow.v0.models.company'];
16586
16661
  export const confirmationDetails = T['io.flow.v0.unions.confirmation_details'];
16587
16662
  export const consumerInvoice = T['io.flow.v0.models.consumer_invoice'];
@@ -16840,6 +16915,7 @@ export const exportType = T['io.flow.v0.unions.export_type'];
16840
16915
  export const exportVersion = T['io.flow.v0.models.export_version'];
16841
16916
  export const exporterOfRecord = T['io.flow.v0.enums.exporter_of_record'];
16842
16917
  export const externalCard = T['io.flow.v0.models.external_card'];
16918
+ export const externalOrderSummary = T['io.flow.v0.models.external_order_summary'];
16843
16919
  export const feeDeduction = T['io.flow.v0.models.fee_deduction'];
16844
16920
  export const feeDeductionType = T['io.flow.v0.enums.fee_deduction_type'];
16845
16921
  export const feeWeight = T['io.flow.v0.models.fee_weight'];
@@ -16946,8 +17022,6 @@ export const hop = T['io.flow.v0.models.hop'];
16946
17022
  export const hopEstimate = T['io.flow.v0.models.hop_estimate'];
16947
17023
  export const hopEstimateV2 = T['io.flow.v0.models.hop_estimate_v2'];
16948
17024
  export const hopV2 = T['io.flow.v0.models.hop_v2'];
16949
- export const hoseinItemDeleted = T['io.flow.v0.models.hosein_item_deleted'];
16950
- export const hoseinItemUpserted = T['io.flow.v0.models.hosein_item_upserted'];
16951
17025
  export const hs10 = T['io.flow.v0.models.hs10'];
16952
17026
  export const hs10CodeDeleted = T['io.flow.v0.models.hs10_code_deleted'];
16953
17027
  export const hs10CodeUpserted = T['io.flow.v0.models.hs10_code_upserted'];
@@ -16995,6 +17069,7 @@ export const invitationForm = T['io.flow.v0.models.invitation_form'];
16995
17069
  export const invitationVersion = T['io.flow.v0.models.invitation_version'];
16996
17070
  export const invoiceExport = T['io.flow.v0.models.invoice_export'];
16997
17071
  export const invoiceExportForm = T['io.flow.v0.models.invoice_export_form'];
17072
+ export const invoiceTaxLine = T['io.flow.v0.models.invoice_tax_line'];
16998
17073
  export const issuerReference = T['io.flow.v0.models.issuer_reference'];
16999
17074
  export const issuerSummary = T['io.flow.v0.models.issuer_summary'];
17000
17075
  export const issuerV1 = T['io.flow.v0.models.issuer_v1'];
@@ -17051,7 +17126,6 @@ export const labelTrackingSummary = T['io.flow.v0.models.label_tracking_summary'
17051
17126
  export const labelTrackingSummaryUpdate = T['io.flow.v0.models.label_tracking_summary_update'];
17052
17127
  export const labelTriggerMethod = T['io.flow.v0.enums.label_trigger_method'];
17053
17128
  export const labelUnits = T['io.flow.v0.models.label_units'];
17054
- export const labelUpserted = T['io.flow.v0.models.label_upserted'];
17055
17129
  export const labelUpsertedV2 = T['io.flow.v0.models.label_upserted_v2'];
17056
17130
  export const landedCostItem = T['io.flow.v0.models.landed_cost_item'];
17057
17131
  export const laneDirection = T['io.flow.v0.enums.lane_direction'];
@@ -17137,6 +17211,7 @@ export const merchantOfRecordEntity = T['io.flow.v0.models.merchant_of_record_en
17137
17211
  export const merchantOfRecordEntityRegistration = T['io.flow.v0.models.merchant_of_record_entity_registration'];
17138
17212
  export const merchantOfRecordPaymentForm = T['io.flow.v0.models.merchant_of_record_payment_form'];
17139
17213
  export const merchantOnboardingAddress = T['io.flow.v0.models.merchant_onboarding_address'];
17214
+ export const merchantOnboardingBeneficiaryDetails = T['io.flow.v0.models.merchant_onboarding_beneficiary_details'];
17140
17215
  export const merchantRejected = T['io.flow.v0.models.merchant_rejected'];
17141
17216
  export const merchantRejectedReason = T['io.flow.v0.enums.merchant_rejected_reason'];
17142
17217
  export const method = T['io.flow.v0.enums.method'];
@@ -17148,8 +17223,6 @@ export const monthlyAverageVolume = T['io.flow.v0.models.monthly_average_volume'
17148
17223
  export const name = T['io.flow.v0.models.name'];
17149
17224
  export const nameForm = T['io.flow.v0.models.name_form'];
17150
17225
  export const needsActionAttributes = T['io.flow.v0.models.needs_action_attributes'];
17151
- export const niallItemDeleted = T['io.flow.v0.models.niall_item_deleted'];
17152
- export const niallItemUpserted = T['io.flow.v0.models.niall_item_upserted'];
17153
17226
  export const notificationDeletedV2 = T['io.flow.v0.models.notification_deleted_v2'];
17154
17227
  export const notificationUpsertedV2 = T['io.flow.v0.models.notification_upserted_v2'];
17155
17228
  export const numberRange = T['io.flow.v0.models.number_range'];
@@ -17289,6 +17362,8 @@ export const organizationSession = T['io.flow.v0.models.organization_session'];
17289
17362
  export const organizationSessionAuthorization = T['io.flow.v0.models.organization_session_authorization'];
17290
17363
  export const organizationStatus = T['io.flow.v0.enums.organization_status'];
17291
17364
  export const organizationSummary = T['io.flow.v0.models.organization_summary'];
17365
+ export const organizationTaxRegistration = T['io.flow.v0.models.organization_tax_registration'];
17366
+ export const organizationTaxRegistrationForm = T['io.flow.v0.models.organization_tax_registration_form'];
17292
17367
  export const organizationToken = T['io.flow.v0.models.organization_token'];
17293
17368
  export const organizationTokenForm = T['io.flow.v0.models.organization_token_form'];
17294
17369
  export const organizationTokenFormV2 = T['io.flow.v0.models.organization_token_form_v2'];
@@ -17537,6 +17612,9 @@ export const productRestrictionResultDeleted = T['io.flow.v0.models.product_rest
17537
17612
  export const productRestrictionResultUpserted = T['io.flow.v0.models.product_restriction_result_upserted'];
17538
17613
  export const productSellability = T['io.flow.v0.models.product_sellability'];
17539
17614
  export const productSellabilityForm = T['io.flow.v0.models.product_sellability_form'];
17615
+ export const productSellabilityResult = T['io.flow.v0.models.product_sellability_result'];
17616
+ export const productSellabilityResultDeleted = T['io.flow.v0.models.product_sellability_result_deleted'];
17617
+ export const productSellabilityResultUpserted = T['io.flow.v0.models.product_sellability_result_upserted'];
17540
17618
  export const productTaxonomyCategory = T['io.flow.v0.models.product_taxonomy_category'];
17541
17619
  export const productTaxonomyData = T['io.flow.v0.models.product_taxonomy_data'];
17542
17620
  export const productTaxonomyValue = T['io.flow.v0.models.product_taxonomy_value'];
@@ -17644,6 +17722,7 @@ export const repeatMonthly = T['io.flow.v0.models.repeat_monthly'];
17644
17722
  export const repeatSchedule = T['io.flow.v0.unions.repeat_schedule'];
17645
17723
  export const repeatWeekly = T['io.flow.v0.models.repeat_weekly'];
17646
17724
  export const restrictedReviewStatus = T['io.flow.v0.enums.restricted_review_status'];
17725
+ export const restrictionEnvironment = T['io.flow.v0.enums.restriction_environment'];
17647
17726
  export const UNSAFE_return = T['io.flow.v0.models.return'];
17648
17727
  export const returnForm = T['io.flow.v0.models.return_form'];
17649
17728
  export const returnItemReference = T['io.flow.v0.models.return_item_reference'];
@@ -17676,8 +17755,6 @@ export const reversalStatus = T['io.flow.v0.enums.reversal_status'];
17676
17755
  export const reversalUpserted = T['io.flow.v0.models.reversal_upserted'];
17677
17756
  export const reversalVersion = T['io.flow.v0.models.reversal_version'];
17678
17757
  export const reviewStatus = T['io.flow.v0.enums.review_status'];
17679
- export const rohanItemDeleted = T['io.flow.v0.models.rohan_item_deleted'];
17680
- export const rohanItemUpserted = T['io.flow.v0.models.rohan_item_upserted'];
17681
17758
  export const role = T['io.flow.v0.enums.role'];
17682
17759
  export const romanization = T['io.flow.v0.models.romanization'];
17683
17760
  export const romanizationForm = T['io.flow.v0.models.romanization_form'];
@@ -17686,8 +17763,6 @@ export const roundingMethod = T['io.flow.v0.enums.rounding_method'];
17686
17763
  export const roundingType = T['io.flow.v0.enums.rounding_type'];
17687
17764
  export const routeAudit = T['io.flow.v0.models.route_audit'];
17688
17765
  export const ruleEffectType = T['io.flow.v0.enums.rule_effect_type'];
17689
- export const sarveshItemDeleted = T['io.flow.v0.models.sarvesh_item_deleted'];
17690
- export const sarveshItemUpserted = T['io.flow.v0.models.sarvesh_item_upserted'];
17691
17766
  export const schedule = T['io.flow.v0.models.schedule'];
17692
17767
  export const scheduleExceptionStatus = T['io.flow.v0.enums.schedule_exception_status'];
17693
17768
  export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
@@ -17697,10 +17772,21 @@ export const sdkAdyenV3AuthenticationToken = T['io.flow.v0.unions.sdk_adyen_v3_a
17697
17772
  export const securityRatecardFee = T['io.flow.v0.models.security_ratecard_fee'];
17698
17773
  export const securityServiceFee = T['io.flow.v0.models.security_service_fee'];
17699
17774
  export const selectIssuerOptionActionDetails = T['io.flow.v0.models.select_issuer_option_action_details'];
17775
+ export const selfBillingAgreement = T['io.flow.v0.models.self_billing_agreement'];
17700
17776
  export const sellabilityError = T['io.flow.v0.models.sellability_error'];
17701
17777
  export const sellabilityErrorCode = T['io.flow.v0.enums.sellability_error_code'];
17778
+ export const sellabilityNeedsActionAttributes = T['io.flow.v0.models.sellability_needs_action_attributes'];
17779
+ export const sellabilityRegionResult = T['io.flow.v0.models.sellability_region_result'];
17780
+ export const sellabilityRegionWithReasons = T['io.flow.v0.models.sellability_region_with_reasons'];
17781
+ export const sellabilityRequest = T['io.flow.v0.unions.sellability_request'];
17702
17782
  export const sellabilityRequestStatus = T['io.flow.v0.enums.sellability_request_status'];
17703
17783
  export const sellabilityResponse = T['io.flow.v0.unions.sellability_response'];
17784
+ export const sellabilityRestrictedRegion = T['io.flow.v0.models.sellability_restricted_region'];
17785
+ export const sellabilityResultErrorCode = T['io.flow.v0.enums.sellability_result_error_code'];
17786
+ export const sellabilityResultStatus = T['io.flow.v0.enums.sellability_result_status'];
17787
+ export const sellabilityScreening = T['io.flow.v0.models.sellability_screening'];
17788
+ export const sellabilityScreeningForm = T['io.flow.v0.models.sellability_screening_form'];
17789
+ export const sellabilityScreeningMode = T['io.flow.v0.enums.sellability_screening_mode'];
17704
17790
  export const sellablilityRegionResult = T['io.flow.v0.models.sellablility_region_result'];
17705
17791
  export const serviceDescription = T['io.flow.v0.unions.service_description'];
17706
17792
  export const serviceFee = T['io.flow.v0.unions.service_fee'];
@@ -17769,6 +17855,10 @@ export const shippingLaneVersion = T['io.flow.v0.models.shipping_lane_version'];
17769
17855
  export const shippingNotification = T['io.flow.v0.models.shipping_notification'];
17770
17856
  export const shippingNotificationForm = T['io.flow.v0.unions.shipping_notification_form'];
17771
17857
  export const shippingNotificationVersion = T['io.flow.v0.models.shipping_notification_version'];
17858
+ export const shippingRateEstimate = T['io.flow.v0.models.shipping_rate_estimate'];
17859
+ export const shippingRateEstimateAvailable = T['io.flow.v0.models.shipping_rate_estimate_available'];
17860
+ export const shippingRateEstimateRequest = T['io.flow.v0.models.shipping_rate_estimate_request'];
17861
+ export const shippingRateEstimateUnavailable = T['io.flow.v0.models.shipping_rate_estimate_unavailable'];
17772
17862
  export const shop = T['io.flow.v0.models.shop'];
17773
17863
  export const shopifyCart = T['io.flow.v0.models.shopify_cart'];
17774
17864
  export const shopifyCartAddForm = T['io.flow.v0.unions.shopify_cart_add_form'];
@@ -17823,6 +17913,8 @@ export const sortDirection = T['io.flow.v0.enums.sort_direction'];
17823
17913
  export const statement = T['io.flow.v0.models.statement'];
17824
17914
  export const statementAttachmentType = T['io.flow.v0.enums.statement_attachment_type'];
17825
17915
  export const statementDeleted = T['io.flow.v0.models.statement_deleted'];
17916
+ export const statementStatusCode = T['io.flow.v0.enums.statement_status_code'];
17917
+ export const statementStatusForm = T['io.flow.v0.models.statement_status_form'];
17826
17918
  export const statementUpserted = T['io.flow.v0.models.statement_upserted'];
17827
17919
  export const storedMethodUsageStep = T['io.flow.v0.enums.stored_method_usage_step'];
17828
17920
  export const strategy = T['io.flow.v0.enums.strategy'];
@@ -17854,6 +17946,7 @@ export const surchargeSetting = T['io.flow.v0.models.surcharge_setting'];
17854
17946
  export const surchargeSettingDisplay = T['io.flow.v0.models.surcharge_setting_display'];
17855
17947
  export const tax = T['io.flow.v0.models.tax'];
17856
17948
  export const taxApplicability = T['io.flow.v0.enums.tax_applicability'];
17949
+ export const taxBreakdown = T['io.flow.v0.models.tax_breakdown'];
17857
17950
  export const taxDutyCalculatorValidationError = T['io.flow.v0.models.tax_duty_calculator_validation_error'];
17858
17951
  export const taxDutyCalculatorValidationErrorCode = T['io.flow.v0.enums.tax_duty_calculator_validation_error_code'];
17859
17952
  export const taxDutyQuote = T['io.flow.v0.models.tax_duty_quote'];
@@ -17867,11 +17960,16 @@ export const taxDutyQuoteSimpleShipping = T['io.flow.v0.models.tax_duty_quote_si
17867
17960
  export const taxDutyQuoteSimpleShippingForm = T['io.flow.v0.models.tax_duty_quote_simple_shipping_form'];
17868
17961
  export const taxDutyQuoteValues = T['io.flow.v0.models.tax_duty_quote_values'];
17869
17962
  export const taxDutyTransactionReasonCode = T['io.flow.v0.enums.tax_duty_transaction_reason_code'];
17963
+ export const taxJurisdictionType = T['io.flow.v0.enums.tax_jurisdiction_type'];
17870
17964
  export const taxRegistration = T['io.flow.v0.models.tax_registration'];
17965
+ export const taxRegistrationDeleted = T['io.flow.v0.models.tax_registration_deleted'];
17966
+ export const taxRegistrationDetail = T['io.flow.v0.models.tax_registration_detail'];
17871
17967
  export const taxRegistrationForm = T['io.flow.v0.models.tax_registration_form'];
17968
+ export const taxRegistrationUpserted = T['io.flow.v0.models.tax_registration_upserted'];
17872
17969
  export const taxReport = T['io.flow.v0.models.tax_report'];
17873
17970
  export const taxReportType = T['io.flow.v0.enums.tax_report_type'];
17874
17971
  export const taxSetting = T['io.flow.v0.unions.tax_setting'];
17972
+ export const taxType = T['io.flow.v0.enums.tax_type'];
17875
17973
  export const taxVerificationResult = T['io.flow.v0.enums.tax_verification_result'];
17876
17974
  export const taxabilityType = T['io.flow.v0.enums.taxability_type'];
17877
17975
  export const taxabilityValue = T['io.flow.v0.enums.taxability_value'];
@@ -17922,6 +18020,8 @@ export const trackingEventVersion = T['io.flow.v0.models.tracking_event_version'
17922
18020
  export const trackingForm = T['io.flow.v0.models.tracking_form'];
17923
18021
  export const trackingLabel = T['io.flow.v0.models.tracking_label'];
17924
18022
  export const trackingLabelEventUpserted = T['io.flow.v0.models.tracking_label_event_upserted'];
18023
+ export const trackingLabelEventUpsertedV2 = T['io.flow.v0.models.tracking_label_event_upserted_v2'];
18024
+ export const trackingLabelEventV2 = T['io.flow.v0.models.tracking_label_event_v2'];
17925
18025
  export const trackingLabelForm = T['io.flow.v0.models.tracking_label_form'];
17926
18026
  export const trackingLabelSummary = T['io.flow.v0.models.tracking_label_summary'];
17927
18027
  export const trackingLabelVersion = T['io.flow.v0.models.tracking_label_version'];
@@ -17952,6 +18052,9 @@ export const transactionMetadataPaymentTransaction = T['io.flow.v0.models.transa
17952
18052
  export const transactionMetadataShippingLabel = T['io.flow.v0.models.transaction_metadata_shipping_label'];
17953
18053
  export const transactionMetadataShippingLabelCarrier = T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'];
17954
18054
  export const transactionMetadataTaxDuty = T['io.flow.v0.models.transaction_metadata_tax_duty'];
18055
+ export const transactionMetadataTaxDutyActual = T['io.flow.v0.models.transaction_metadata_tax_duty_actual'];
18056
+ export const transactionMetadataTaxDutyDelta = T['io.flow.v0.models.transaction_metadata_tax_duty_delta'];
18057
+ export const transactionMetadataTaxDutyEstimate = T['io.flow.v0.models.transaction_metadata_tax_duty_estimate'];
17955
18058
  export const transactionMetadataTrueup = T['io.flow.v0.models.transaction_metadata_trueup'];
17956
18059
  export const transactionMetadataTrueupBase = T['io.flow.v0.models.transaction_metadata_trueup_base'];
17957
18060
  export const transactionMetadataTrueupBaseData = T['io.flow.v0.models.transaction_metadata_trueup_base_data'];