@flowio/api-internal-prop-types 9.24.97 → 9.24.100

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.
@@ -305,7 +305,7 @@ T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'] = PropTyp
305
305
  selection_stratey: T['io.flow.fulfillment.v0.enums.preferred_service_selection_strategy'].isRequired,
306
306
  });
307
307
 
308
- T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can']);
308
+ T['io.flow.merchant.of.record.v0.enums.flow_entity'] = PropTypes.oneOf(['flow-usa', 'flow-irl', 'flow-can', 'ge-usa']);
309
309
  T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_community', 'local']);
310
310
  T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
311
311
  T['io.flow.fulfillment.v0.enums.fulfillment_routing'] = PropTypes.oneOf(['fulfilled_from_center', 'fulfillment_service']);
@@ -1690,7 +1690,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_edit'] = PropTypes.exact({
1690
1690
  created_at: PropTypes.string.isRequired,
1691
1691
  notify_customer: PropTypes.bool.isRequired,
1692
1692
  order_id: PropTypes.number.isRequired,
1693
- staff_note: PropTypes.string.isRequired,
1693
+ staff_note: PropTypes.string,
1694
1694
  user_id: PropTypes.number,
1695
1695
  line_items: T['io.flow.shopify.markets.v0.models.shopify_order_edit_line_items'].isRequired,
1696
1696
  discounts: PropTypes.object.isRequired,
@@ -1802,6 +1802,16 @@ T['io.flow.shopify.markets.v0.models.shopify_country_harmonized_system_code'] =
1802
1802
  harmonized_system_code: PropTypes.string.isRequired,
1803
1803
  });
1804
1804
 
1805
+ T['io.flow.shopify.markets.v0.models.shopify_product_variant_inventory_item_wrapper'] = PropTypes.exact({
1806
+ product_id: PropTypes.number.isRequired,
1807
+ variant_id: PropTypes.number.isRequired,
1808
+ harmonized_system_code: PropTypes.string.isRequired,
1809
+
1810
+ country_harmonized_system_codes: PropTypes.arrayOf(
1811
+ T['io.flow.shopify.markets.v0.models.shopify_country_harmonized_system_code'],
1812
+ ).isRequired,
1813
+ });
1814
+
1805
1815
  T['io.flow.shopify.markets.v0.models.shopify_inventory_item_form'] = PropTypes.exact({
1806
1816
  harmonized_system_code: PropTypes.string,
1807
1817
 
@@ -2833,7 +2843,7 @@ T['io.flow.shopify.external.v0.models.graphql_weight'] = PropTypes.exact({
2833
2843
  });
2834
2844
 
2835
2845
  T['io.flow.shopify.external.v0.models.graphql_measurement'] = PropTypes.exact({
2836
- weight: T['io.flow.shopify.external.v0.models.graphql_weight'].isRequired,
2846
+ weight: T['io.flow.shopify.external.v0.models.graphql_weight'],
2837
2847
  });
2838
2848
 
2839
2849
  T['io.flow.shopify.external.v0.models.graphql_inventory_item'] = PropTypes.exact({
@@ -3011,6 +3021,9 @@ T['io.flow.adyen.v0.enums.payment_method'] = PropTypes.oneOf([
3011
3021
  'ebanking_FI',
3012
3022
  'gcash',
3013
3023
  'giropay',
3024
+ 'grabpay_MY',
3025
+ 'grabpay_PH',
3026
+ 'grabpay_SG',
3014
3027
  'ideal',
3015
3028
  'interac',
3016
3029
  'jcb',
@@ -3025,12 +3038,14 @@ T['io.flow.adyen.v0.enums.payment_method'] = PropTypes.oneOf([
3025
3038
  'molpay_points',
3026
3039
  'multibanco',
3027
3040
  'onlineBanking_PL',
3041
+ 'paywithgoogle',
3028
3042
  'qiwiwallet',
3029
3043
  'sepadirectdebit',
3030
3044
  'trustly',
3031
3045
  'trustpay',
3032
3046
  'twint',
3033
3047
  'unionpay',
3048
+ 'vipps',
3034
3049
  'visa',
3035
3050
  'wechatpay',
3036
3051
  'unknowncard',
@@ -3074,6 +3089,9 @@ T['io.flow.adyen.v0.enums.event_code'] = PropTypes.oneOf([
3074
3089
  'SECOND_CHARGEBACK',
3075
3090
  'PREARBITRATION_WON',
3076
3091
  'PREARBITRATION_LOST',
3092
+ 'INFORMATION_SUPPLIED',
3093
+ 'DISPUTE_DEFENSE_PERIOD_ENDED',
3094
+ 'ISSUER_RESPONSE_TIMEFRAME_EXPIRED',
3077
3095
  ]);
3078
3096
 
3079
3097
  T['io.flow.adyen.v0.enums.result_code'] = PropTypes.oneOf([
@@ -3249,30 +3267,6 @@ T['io.flow.adyen.v0.models.modification_request'] = PropTypes.exact({
3249
3267
  reference: PropTypes.string.isRequired,
3250
3268
  });
3251
3269
 
3252
- T['io.flow.adyen.v0.models.inner_notification_request_item'] = PropTypes.exact({
3253
- additionalData: PropTypes.object,
3254
- amount: T['io.flow.adyen.v0.models.amount'].isRequired,
3255
- pspReference: PropTypes.string.isRequired,
3256
- originalReference: PropTypes.string,
3257
- eventCode: T['io.flow.adyen.v0.enums.event_code'].isRequired,
3258
- eventDate: PropTypes.string.isRequired,
3259
- merchantAccountCode: PropTypes.string.isRequired,
3260
- operations: PropTypes.arrayOf(T['io.flow.adyen.v0.enums.operation']),
3261
- merchantReference: PropTypes.string.isRequired,
3262
- paymentMethod: T['io.flow.adyen.v0.enums.payment_method'],
3263
- reason: PropTypes.string,
3264
- success: PropTypes.string.isRequired,
3265
- });
3266
-
3267
- T['io.flow.adyen.v0.models.outer_notification_request_item'] = PropTypes.exact({
3268
- NotificationRequestItem: T['io.flow.adyen.v0.models.inner_notification_request_item'].isRequired,
3269
- });
3270
-
3271
- T['io.flow.adyen.v0.models.notification_request'] = PropTypes.exact({
3272
- live: PropTypes.string.isRequired,
3273
- notificationItems: PropTypes.arrayOf(T['io.flow.adyen.v0.models.outer_notification_request_item']).isRequired,
3274
- });
3275
-
3276
3270
  T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
3277
3271
  reference: PropTypes.string.isRequired,
3278
3272
  merchantAccount: PropTypes.string.isRequired,
@@ -3300,6 +3294,35 @@ T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
3300
3294
  captureDelayHours: PropTypes.number,
3301
3295
  });
3302
3296
 
3297
+ T['io.flow.adyen.v0.models.inner_notification_request_item'] = PropTypes.exact({
3298
+ additionalData: PropTypes.object,
3299
+ amount: T['io.flow.adyen.v0.models.amount'].isRequired,
3300
+ pspReference: PropTypes.string.isRequired,
3301
+ originalReference: PropTypes.string,
3302
+ eventCode: T['io.flow.adyen.v0.enums.event_code'].isRequired,
3303
+ eventDate: PropTypes.string.isRequired,
3304
+ merchantAccountCode: PropTypes.string.isRequired,
3305
+ operations: PropTypes.arrayOf(T['io.flow.adyen.v0.enums.operation']),
3306
+ merchantReference: PropTypes.string.isRequired,
3307
+ paymentMethod: T['io.flow.adyen.v0.enums.payment_method'],
3308
+ reason: PropTypes.string,
3309
+ success: PropTypes.string.isRequired,
3310
+ });
3311
+
3312
+ T['io.flow.adyen.v0.models.outer_notification_request_item'] = PropTypes.exact({
3313
+ NotificationRequestItem: T['io.flow.adyen.v0.models.inner_notification_request_item'].isRequired,
3314
+ });
3315
+
3316
+ T['io.flow.adyen.v0.models.notification_request'] = PropTypes.exact({
3317
+ live: PropTypes.string.isRequired,
3318
+ notificationItems: PropTypes.arrayOf(T['io.flow.adyen.v0.models.outer_notification_request_item']).isRequired,
3319
+ });
3320
+
3321
+ T['io.flow.adyen.v0.models.adyen_dispute_event'] = PropTypes.exact({
3322
+ live: PropTypes.string.isRequired,
3323
+ notificationItems: PropTypes.arrayOf(T['io.flow.adyen.v0.models.outer_notification_request_item']).isRequired,
3324
+ });
3325
+
3303
3326
  T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'] = PropTypes.oneOf(['accepted', 'rejected', 'review', 'edit_review', 'edit_accepted']);
3304
3327
 
3305
3328
  T['io.flow.channel.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact({
@@ -3473,6 +3496,12 @@ T['io.flow.shopify.markets.internal.v0.models.catalog_publication_sync_validatio
3473
3496
  next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
3474
3497
  });
3475
3498
 
3499
+ T['io.flow.shopify.markets.internal.v0.models.bulk_duty_update_validation_error'] = PropTypes.exact({
3500
+ message: PropTypes.string.isRequired,
3501
+ reason: PropTypes.string.isRequired,
3502
+ next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
3503
+ });
3504
+
3476
3505
  T['io.flow.brickftp.v0.models.file_summary'] = PropTypes.exact({
3477
3506
  type: PropTypes.oneOf(['file']).isRequired,
3478
3507
  path: PropTypes.string.isRequired,
@@ -3734,6 +3763,12 @@ T['io.flow.external.paypal.v1.models.token_form'] = PropTypes.exact({
3734
3763
  });
3735
3764
 
3736
3765
  T['io.flow.external.paypal.v1.enums.sale_state'] = PropTypes.oneOf(['pending', 'completed', 'denied', 'partially_refunded', 'refunded']);
3766
+
3767
+ T['io.flow.external.paypal.v1.models.money'] = PropTypes.exact({
3768
+ currency_code: PropTypes.string,
3769
+ value: PropTypes.string,
3770
+ });
3771
+
3737
3772
  T['io.flow.external.paypal.v1.enums.refund_state'] = PropTypes.oneOf(['pending', 'completed', 'cancelled', 'failed']);
3738
3773
 
3739
3774
  T['io.flow.external.paypal.v1.models.simple_amount'] = PropTypes.exact({
@@ -3741,11 +3776,53 @@ T['io.flow.external.paypal.v1.models.simple_amount'] = PropTypes.exact({
3741
3776
  currency: PropTypes.string.isRequired,
3742
3777
  });
3743
3778
 
3779
+ T['io.flow.external.paypal.v1.models.sale'] = PropTypes.exact({
3780
+ id: PropTypes.string.isRequired,
3781
+ state: T['io.flow.external.paypal.v1.enums.sale_state'].isRequired,
3782
+ parent_payment: PropTypes.string.isRequired,
3783
+ invoice_number: PropTypes.string,
3784
+ amount: T['io.flow.external.paypal.v1.models.simple_amount'],
3785
+ payment_mode: PropTypes.string,
3786
+ reason_code: PropTypes.string,
3787
+ protection_eligibility: PropTypes.string,
3788
+ protection_eligibility_type: PropTypes.string,
3789
+ receipt_id: PropTypes.string,
3790
+ soft_descriptor: PropTypes.string,
3791
+ exchange_rate: PropTypes.string,
3792
+ payment_hold_status: PropTypes.string,
3793
+ payment_hold_reasons: PropTypes.arrayOf(PropTypes.string),
3794
+ transaction_fee: T['io.flow.external.paypal.v1.models.money'],
3795
+ receivable_amount: T['io.flow.external.paypal.v1.models.money'],
3796
+ custom: PropTypes.string,
3797
+ create_time: PropTypes.string,
3798
+ update_time: PropTypes.string,
3799
+ });
3800
+
3744
3801
  T['io.flow.external.paypal.v1.models.refund_request'] = PropTypes.exact({
3745
3802
  amount: T['io.flow.external.paypal.v1.models.simple_amount'].isRequired,
3746
3803
  invoice_number: PropTypes.string.isRequired,
3747
3804
  });
3748
3805
 
3806
+ T['io.flow.external.paypal.v1.models.refund'] = PropTypes.exact({
3807
+ id: PropTypes.string.isRequired,
3808
+ amount: T['io.flow.external.paypal.v1.models.simple_amount'],
3809
+ state: T['io.flow.external.paypal.v1.enums.refund_state'].isRequired,
3810
+ sale_id: PropTypes.string.isRequired,
3811
+ invoice_number: PropTypes.string,
3812
+ capture_id: PropTypes.string,
3813
+ parent_payment: PropTypes.string,
3814
+ reason_code: PropTypes.string,
3815
+ refund_reason_code: PropTypes.string,
3816
+ refund_funding_type: PropTypes.string,
3817
+ refund_from_received_amount: T['io.flow.external.paypal.v1.models.money'],
3818
+ refund_from_transaction_fee: T['io.flow.external.paypal.v1.models.money'],
3819
+ total_refunded_amount: T['io.flow.external.paypal.v1.models.money'],
3820
+ refund_to_payer: T['io.flow.external.paypal.v1.models.money'],
3821
+ custom: PropTypes.string,
3822
+ create_time: PropTypes.string,
3823
+ update_time: PropTypes.string,
3824
+ });
3825
+
3749
3826
  T['io.flow.external.paypal.v1.enums.return_mode'] = PropTypes.oneOf(['SHIPPED', 'IN_PERSON']);
3750
3827
 
3751
3828
  T['io.flow.external.paypal.v1.enums.failure_reason'] = PropTypes.oneOf([
@@ -4236,76 +4313,34 @@ T['io.flow.external.paypal.v1.enums.other_means_payment_method'] = PropTypes.one
4236
4313
  'BANK_TRANSFER',
4237
4314
  ]);
4238
4315
 
4239
- T['io.flow.external.paypal.v1.models.money'] = PropTypes.exact({
4316
+ T['io.flow.external.paypal.v1.models.dispute_money'] = PropTypes.exact({
4240
4317
  currency_code: PropTypes.string.isRequired,
4241
4318
  value: PropTypes.string.isRequired,
4242
4319
  });
4243
4320
 
4244
- T['io.flow.external.paypal.v1.models.sale'] = PropTypes.exact({
4245
- id: PropTypes.string.isRequired,
4246
- state: T['io.flow.external.paypal.v1.enums.sale_state'].isRequired,
4247
- parent_payment: PropTypes.string.isRequired,
4248
- invoice_number: PropTypes.string,
4249
- amount: T['io.flow.external.paypal.v1.models.simple_amount'],
4250
- payment_mode: PropTypes.string,
4251
- reason_code: PropTypes.string,
4252
- protection_eligibility: PropTypes.string,
4253
- protection_eligibility_type: PropTypes.string,
4254
- receipt_id: PropTypes.string,
4255
- soft_descriptor: PropTypes.string,
4256
- exchange_rate: PropTypes.string,
4257
- payment_hold_status: PropTypes.string,
4258
- payment_hold_reasons: PropTypes.arrayOf(PropTypes.string),
4259
- transaction_fee: T['io.flow.external.paypal.v1.models.money'],
4260
- receivable_amount: T['io.flow.external.paypal.v1.models.money'],
4261
- custom: PropTypes.string,
4262
- create_time: PropTypes.string,
4263
- update_time: PropTypes.string,
4264
- });
4265
-
4266
- T['io.flow.external.paypal.v1.models.refund'] = PropTypes.exact({
4267
- id: PropTypes.string.isRequired,
4268
- amount: T['io.flow.external.paypal.v1.models.simple_amount'],
4269
- state: T['io.flow.external.paypal.v1.enums.refund_state'].isRequired,
4270
- sale_id: PropTypes.string.isRequired,
4271
- invoice_number: PropTypes.string,
4272
- capture_id: PropTypes.string,
4273
- parent_payment: PropTypes.string,
4274
- reason_code: PropTypes.string,
4275
- refund_reason_code: PropTypes.string,
4276
- refund_funding_type: PropTypes.string,
4277
- refund_from_received_amount: T['io.flow.external.paypal.v1.models.money'],
4278
- refund_from_transaction_fee: T['io.flow.external.paypal.v1.models.money'],
4279
- total_refunded_amount: T['io.flow.external.paypal.v1.models.money'],
4280
- refund_to_payer: T['io.flow.external.paypal.v1.models.money'],
4281
- custom: PropTypes.string,
4282
- create_time: PropTypes.string,
4283
- update_time: PropTypes.string,
4284
- });
4285
-
4286
4321
  T['io.flow.external.paypal.v1.models.item_info'] = PropTypes.exact({
4287
4322
  item_id: PropTypes.string,
4288
4323
  item_description: PropTypes.string,
4289
4324
  item_quantity: PropTypes.string,
4290
4325
  partner_transaction_id: PropTypes.string,
4291
4326
  reason: T['io.flow.external.paypal.v1.enums.dispute_reason'],
4292
- dispute_amount: T['io.flow.external.paypal.v1.models.money'],
4327
+ dispute_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
4293
4328
  notes: PropTypes.string,
4294
4329
  });
4295
4330
 
4296
4331
  T['io.flow.external.paypal.v1.models.refund_details'] = PropTypes.exact({
4297
- allowed_refund_amount: T['io.flow.external.paypal.v1.models.money'],
4332
+ allowed_refund_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
4298
4333
  });
4299
4334
 
4300
4335
  T['io.flow.external.paypal.v1.models.offer'] = PropTypes.exact({
4301
- buyer_requested_amount: T['io.flow.external.paypal.v1.models.money'],
4302
- seller_offered_amount: T['io.flow.external.paypal.v1.models.money'],
4336
+ buyer_requested_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
4337
+ seller_offered_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
4303
4338
  offer_type: T['io.flow.external.paypal.v1.enums.offer_type'],
4304
4339
  });
4305
4340
 
4306
4341
  T['io.flow.external.paypal.v1.models.money_movement'] = PropTypes.exact({
4307
4342
  affected_party: T['io.flow.external.paypal.v1.enums.affected_party'],
4308
- amount: T['io.flow.external.paypal.v1.models.money'],
4343
+ amount: T['io.flow.external.paypal.v1.models.dispute_money'],
4309
4344
  initiated_time: PropTypes.string,
4310
4345
  type: T['io.flow.external.paypal.v1.enums.money_movement_type'],
4311
4346
  reason: T['io.flow.external.paypal.v1.enums.money_movement_reason'],
@@ -4313,7 +4348,7 @@ T['io.flow.external.paypal.v1.models.money_movement'] = PropTypes.exact({
4313
4348
 
4314
4349
  T['io.flow.external.paypal.v1.models.dispute_outcome'] = PropTypes.exact({
4315
4350
  outcome_code: T['io.flow.external.paypal.v1.enums.dispute_outcome_code'],
4316
- amount_refunded: T['io.flow.external.paypal.v1.models.money'],
4351
+ amount_refunded: T['io.flow.external.paypal.v1.models.dispute_money'],
4317
4352
  });
4318
4353
 
4319
4354
  T['io.flow.external.paypal.v1.models.transaction_info'] = PropTypes.exact({
@@ -4322,7 +4357,7 @@ T['io.flow.external.paypal.v1.models.transaction_info'] = PropTypes.exact({
4322
4357
  reference_id: PropTypes.string,
4323
4358
  create_time: PropTypes.string,
4324
4359
  transaction_status: T['io.flow.external.paypal.v1.enums.transaction_status'],
4325
- gross_amount: T['io.flow.external.paypal.v1.models.money'],
4360
+ gross_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
4326
4361
  invoice_number: PropTypes.string.isRequired,
4327
4362
  custom: PropTypes.string,
4328
4363
  buyer: T['io.flow.external.paypal.v1.models.buyer'],
@@ -4331,13 +4366,13 @@ T['io.flow.external.paypal.v1.models.transaction_info'] = PropTypes.exact({
4331
4366
  });
4332
4367
 
4333
4368
  T['io.flow.external.paypal.v1.models.canceled_recurring_billing'] = PropTypes.exact({
4334
- expected_refund: T['io.flow.external.paypal.v1.models.money'],
4369
+ expected_refund: T['io.flow.external.paypal.v1.models.dispute_money'],
4335
4370
  cancellation_details: T['io.flow.external.paypal.v1.models.cancellation_details'],
4336
4371
  });
4337
4372
 
4338
4373
  T['io.flow.external.paypal.v1.models.credit_not_processed'] = PropTypes.exact({
4339
4374
  issue_type: T['io.flow.external.paypal.v1.enums.issue_type'],
4340
- expected_refund: T['io.flow.external.paypal.v1.models.money'],
4375
+ expected_refund: T['io.flow.external.paypal.v1.models.dispute_money'],
4341
4376
  cancellation_details: T['io.flow.external.paypal.v1.models.cancellation_details'],
4342
4377
  product_details: T['io.flow.external.paypal.v1.models.product_details'],
4343
4378
  service_details: T['io.flow.external.paypal.v1.models.service_details'],
@@ -4352,7 +4387,7 @@ T['io.flow.external.paypal.v1.models.payment_by_other_means'] = PropTypes.exact(
4352
4387
  });
4353
4388
 
4354
4389
  T['io.flow.external.paypal.v1.models.incorrect_transaction_amount'] = PropTypes.exact({
4355
- correct_transaction_amount: T['io.flow.external.paypal.v1.models.money'],
4390
+ correct_transaction_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
4356
4391
  correct_transaction_time: PropTypes.string,
4357
4392
  });
4358
4393
 
@@ -4421,7 +4456,7 @@ T['io.flow.external.paypal.v1.models.dispute_summary'] = PropTypes.exact({
4421
4456
  update_time: PropTypes.string.isRequired,
4422
4457
  reason: T['io.flow.external.paypal.v1.enums.dispute_reason'].isRequired,
4423
4458
  status: T['io.flow.external.paypal.v1.enums.dispute_status'].isRequired,
4424
- dispute_amount: T['io.flow.external.paypal.v1.models.money'].isRequired,
4459
+ dispute_amount: T['io.flow.external.paypal.v1.models.dispute_money'].isRequired,
4425
4460
  dispute_life_cycle_stage: T['io.flow.external.paypal.v1.enums.dispute_life_cycle_stage'].isRequired,
4426
4461
  links: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.link']).isRequired,
4427
4462
  });
@@ -4514,7 +4549,7 @@ T['io.flow.external.paypal.v1.models.dispute'] = PropTypes.exact({
4514
4549
  disputed_transactions: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.transaction_info']).isRequired,
4515
4550
  reason: T['io.flow.external.paypal.v1.enums.dispute_reason'].isRequired,
4516
4551
  status: T['io.flow.external.paypal.v1.enums.dispute_status'].isRequired,
4517
- dispute_amount: T['io.flow.external.paypal.v1.models.money'].isRequired,
4552
+ dispute_amount: T['io.flow.external.paypal.v1.models.dispute_money'].isRequired,
4518
4553
  fee_policy: PropTypes.object,
4519
4554
  external_reason_code: PropTypes.string,
4520
4555
  dispute_outcome: T['io.flow.external.paypal.v1.models.dispute_outcome'],
@@ -4656,7 +4691,17 @@ T['io.flow.stripe.v0.models.source_klarna_request'] = PropTypes.exact({
4656
4691
 
4657
4692
  T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
4658
4693
  T['io.flow.stripe.v0.enums.refund_reason'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
4659
- T['io.flow.stripe.v0.enums.refund_failure_reason'] = PropTypes.oneOf(['lost_or_stolen_card', 'expired_or_canceled_card', 'unknown']);
4694
+
4695
+ T['io.flow.stripe.v0.enums.refund_failure_reason'] = PropTypes.oneOf([
4696
+ 'charge_for_pending_refund_disputed',
4697
+ 'declined',
4698
+ 'expired_or_canceled_card',
4699
+ 'insufficient_funds',
4700
+ 'lost_or_stolen_card',
4701
+ 'merchant_request',
4702
+ 'unknown',
4703
+ ]);
4704
+
4660
4705
  T['io.flow.stripe.v0.enums.refund_status'] = PropTypes.oneOf(['succeeded', 'failed', 'pending', 'canceled']);
4661
4706
 
4662
4707
  T['io.flow.stripe.v0.enums.stored_credential_transaction_type'] = PropTypes.oneOf([
@@ -6165,6 +6210,21 @@ T['io.flow.payment.v0.models.refund_order_summary'] = PropTypes.exact({
6165
6210
  amounts: T['io.flow.payment.v0.models.refund_order_summary_amounts'].isRequired,
6166
6211
  });
6167
6212
 
6213
+ T['io.flow.payment.v0.enums.refund_failure_category'] = PropTypes.oneOf([
6214
+ 'amount_too_high',
6215
+ 'amount_too_low',
6216
+ 'not_enough_balance',
6217
+ 'insufficient_funds',
6218
+ 'refund_period_expired',
6219
+ 'dispute',
6220
+ 'not_captured',
6221
+ 'unsupported_payment_method',
6222
+ 'unsupported_partial_refund',
6223
+ 'invalid_currency',
6224
+ 'card_no_longer_valid',
6225
+ 'general',
6226
+ ]);
6227
+
6168
6228
  T['io.flow.payment.v0.models.payment_processor_transaction_details_apm'] = PropTypes.exact({
6169
6229
  discriminator: PropTypes.oneOf(['apm']).isRequired,
6170
6230
  transaction_identifier: PropTypes.string,
@@ -6944,11 +7004,31 @@ T['io.flow.payment.gateway.v0.models.payment_method_data_validate_applepay'] = P
6944
7004
  validation_url: PropTypes.string.isRequired,
6945
7005
  });
6946
7006
 
7007
+ T['io.flow.payment.gateway.v0.models.payment_method_data_init_vipps'] = PropTypes.exact({
7008
+ type: PropTypes.oneOf(['init_vipps']).isRequired,
7009
+ reference: PropTypes.string,
7010
+ });
7011
+
7012
+ T['io.flow.payment.gateway.v0.models.payment_method_data_init_grabpay'] = PropTypes.exact({
7013
+ type: PropTypes.oneOf(['init_grabpay']).isRequired,
7014
+ reference: PropTypes.string,
7015
+ });
7016
+
6947
7017
  T['io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact'] = PropTypes.exact({
6948
7018
  type: PropTypes.oneOf(['init_bancontact']).isRequired,
6949
7019
  reference: PropTypes.string,
6950
7020
  });
6951
7021
 
7022
+ T['io.flow.payment.gateway.v0.models.payment_method_data_init_kcp_creditcard'] = PropTypes.exact({
7023
+ type: PropTypes.oneOf(['init_kcp_creditcard']).isRequired,
7024
+ reference: PropTypes.string,
7025
+ });
7026
+
7027
+ T['io.flow.payment.gateway.v0.models.payment_method_data_init_mobilepay'] = PropTypes.exact({
7028
+ type: PropTypes.oneOf(['init_mobilepay']).isRequired,
7029
+ reference: PropTypes.string,
7030
+ });
7031
+
6952
7032
  T['io.flow.payment.gateway.v0.models.payment_method_data_init_przelewy24'] = PropTypes.exact({
6953
7033
  type: PropTypes.oneOf(['init_przelewy24']).isRequired,
6954
7034
  reference: PropTypes.string,
@@ -7033,6 +7113,10 @@ T['io.flow.payment.gateway.v0.enums.payment_type'] = PropTypes.oneOf([
7033
7113
  'bancontact',
7034
7114
  'twint',
7035
7115
  'przelewy24',
7116
+ 'mobilepay',
7117
+ 'grabpay',
7118
+ 'vipps',
7119
+ 'kcp_creditcard',
7036
7120
  ]);
7037
7121
 
7038
7122
  T['io.flow.payment.gateway.v0.models.payment_method_data_option_logo_svg'] = PropTypes.exact({
@@ -7646,7 +7730,6 @@ T['io.flow.google.pay.v0.models.encrypted_message'] = PropTypes.exact({
7646
7730
  paymentMethodDetails: T['io.flow.google.pay.v0.models.payment_method_details'].isRequired,
7647
7731
  });
7648
7732
 
7649
- T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
7650
7733
  T['io.flow.fulfillment.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
7651
7734
 
7652
7735
  T['io.flow.fulfillment.v0.models.country_availability'] = PropTypes.exact({
@@ -8050,6 +8133,13 @@ T['io.flow.internal.v0.unions.explicit_statement_form'] = PropTypes.oneOfType([
8050
8133
  T['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'],
8051
8134
  ]);
8052
8135
 
8136
+ T['io.flow.internal.v0.models.tracking_assurance_job_deleted'] = PropTypes.exact({
8137
+ discriminator: PropTypes.oneOf(['tracking_assurance_job_deleted']).isRequired,
8138
+ event_id: PropTypes.string.isRequired,
8139
+ timestamp: PropTypes.string.isRequired,
8140
+ id: PropTypes.string.isRequired,
8141
+ });
8142
+
8053
8143
  T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'] = PropTypes.exact({
8054
8144
  discriminator: PropTypes.oneOf(['tracking_assurance_analysis_deleted']).isRequired,
8055
8145
  event_id: PropTypes.string.isRequired,
@@ -8121,6 +8211,13 @@ T['io.flow.internal.v0.models.harinath_item_deleted'] = PropTypes.exact({
8121
8211
  id: PropTypes.string.isRequired,
8122
8212
  });
8123
8213
 
8214
+ T['io.flow.internal.v0.models.eldar_item_deleted'] = PropTypes.exact({
8215
+ discriminator: PropTypes.oneOf(['eldar_item_deleted']).isRequired,
8216
+ event_id: PropTypes.string.isRequired,
8217
+ timestamp: PropTypes.string.isRequired,
8218
+ id: PropTypes.string.isRequired,
8219
+ });
8220
+
8124
8221
  T['io.flow.internal.v0.models.colm_item_deleted'] = PropTypes.exact({
8125
8222
  discriminator: PropTypes.oneOf(['colm_item_deleted']).isRequired,
8126
8223
  event_id: PropTypes.string.isRequired,
@@ -9198,6 +9295,18 @@ T['io.flow.internal.v0.models.tracking_debug_label_location'] = PropTypes.exact(
9198
9295
  country: PropTypes.string.isRequired,
9199
9296
  });
9200
9297
 
9298
+ T['io.flow.internal.v0.models.tracking_assurance_job'] = PropTypes.exact({
9299
+ id: PropTypes.string.isRequired,
9300
+ created_at: PropTypes.string.isRequired,
9301
+ });
9302
+
9303
+ T['io.flow.internal.v0.models.tracking_assurance_job_upserted'] = PropTypes.exact({
9304
+ discriminator: PropTypes.oneOf(['tracking_assurance_job_upserted']).isRequired,
9305
+ event_id: PropTypes.string.isRequired,
9306
+ timestamp: PropTypes.string.isRequired,
9307
+ job: T['io.flow.internal.v0.models.tracking_assurance_job'].isRequired,
9308
+ });
9309
+
9201
9310
  T['io.flow.internal.v0.models.tracking_assurance_analysis'] = PropTypes.exact({
9202
9311
  id: PropTypes.string.isRequired,
9203
9312
  job_id: PropTypes.string.isRequired,
@@ -10590,6 +10699,9 @@ T['io.flow.internal.v0.models.reporting_fulfillment_is'] = PropTypes.exact({
10590
10699
  lvg: PropTypes.bool,
10591
10700
  tax_inclusive: PropTypes.bool,
10592
10701
  duty_inclusive: PropTypes.bool,
10702
+ manual_payment: PropTypes.bool,
10703
+ partial_fulfillment: PropTypes.bool,
10704
+ partial_refund: PropTypes.bool,
10593
10705
  });
10594
10706
 
10595
10707
  T['io.flow.internal.v0.models.reporting_refund_reference'] = PropTypes.exact({
@@ -10877,35 +10989,6 @@ T['io.flow.common.v0.models.zone'] = PropTypes.exact({
10877
10989
  country: PropTypes.string.isRequired,
10878
10990
  });
10879
10991
 
10880
- T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
10881
- direction: T['io.flow.label.v0.enums.direction'].isRequired,
10882
- effective_at: PropTypes.string.isRequired,
10883
- origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
10884
- service: PropTypes.string.isRequired,
10885
- number: PropTypes.string,
10886
- rate_level_key: PropTypes.string,
10887
- ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
10888
- glbe_shipping_method_id: PropTypes.string,
10889
- glbe_proposition_name: PropTypes.string,
10890
- channel_revenue_share_percentage: PropTypes.number,
10891
- data: PropTypes.objectOf(PropTypes.string),
10892
- });
10893
-
10894
- T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
10895
- id: PropTypes.string.isRequired,
10896
- number: PropTypes.string.isRequired,
10897
- rate_level_key: PropTypes.string,
10898
- direction: T['io.flow.label.v0.enums.direction'].isRequired,
10899
- effective_at: PropTypes.string.isRequired,
10900
- origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
10901
- service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
10902
- published_at: PropTypes.string,
10903
- ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
10904
- glbe_shipping_method_id: PropTypes.string,
10905
- glbe_proposition_name: PropTypes.string,
10906
- channel_revenue_share_percentage: PropTypes.number,
10907
- });
10908
-
10909
10992
  T['io.flow.ratecard.v0.models.fuel_surcharge_service_fee'] = PropTypes.exact({
10910
10993
  discriminator: PropTypes.oneOf(['fuel_surcharge_service_fee']).isRequired,
10911
10994
  percent: PropTypes.number.isRequired,
@@ -11379,41 +11462,6 @@ T['io.flow.experience.v0.models.experience_currency_format'] = PropTypes.exact({
11379
11462
  label_formatters: PropTypes.arrayOf(T['io.flow.common.v0.enums.currency_label_formatter']).isRequired,
11380
11463
  });
11381
11464
 
11382
- T['io.flow.internal.v0.models.by_rule_snapshot'] = PropTypes.exact({
11383
- id: PropTypes.string.isRequired,
11384
- name: PropTypes.string.isRequired,
11385
- open_decision_count: PropTypes.number.isRequired,
11386
- restricted_product_count: PropTypes.number.isRequired,
11387
- });
11388
-
11389
- T['io.flow.internal.v0.models.organization_restriction_snapshot'] = PropTypes.exact({
11390
- id: PropTypes.string.isRequired,
11391
- organization_id: PropTypes.string.isRequired,
11392
- organization_channel_id: PropTypes.string.isRequired,
11393
- organization_status: PropTypes.string.isRequired,
11394
- product_count: PropTypes.number.isRequired,
11395
- open_decision_count: PropTypes.number.isRequired,
11396
- restricted_product_count: PropTypes.number.isRequired,
11397
- count_by_rule: PropTypes.arrayOf(T['io.flow.internal.v0.models.by_rule_snapshot']).isRequired,
11398
- earliest_pending_decision_date: PropTypes.string.isRequired,
11399
- earliest_product_receipt_date: PropTypes.string.isRequired,
11400
- date: PropTypes.string.isRequired,
11401
- });
11402
-
11403
- T['io.flow.internal.v0.models.organization_restriction_snapshot_upserted'] = PropTypes.exact({
11404
- discriminator: PropTypes.oneOf(['organization_restriction_snapshot_upserted']).isRequired,
11405
- event_id: PropTypes.string.isRequired,
11406
- timestamp: PropTypes.string.isRequired,
11407
- organization_restriction_snapshot: T['io.flow.internal.v0.models.organization_restriction_snapshot'].isRequired,
11408
- });
11409
-
11410
- T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'] = PropTypes.exact({
11411
- discriminator: PropTypes.oneOf(['organization_restriction_snapshot_deleted']).isRequired,
11412
- event_id: PropTypes.string.isRequired,
11413
- timestamp: PropTypes.string.isRequired,
11414
- organization_restriction_snapshot: T['io.flow.internal.v0.models.organization_restriction_snapshot'].isRequired,
11415
- });
11416
-
11417
11465
  T['io.flow.internal.v0.enums.organization_restriction_risk_level'] = PropTypes.oneOf(['5', '15']);
11418
11466
  T['io.flow.internal.v0.enums.organization_restriction_review_type'] = PropTypes.oneOf(['all_pending', 'pending_verification']);
11419
11467
  T['io.flow.internal.v0.enums.organization_restriction_screening_status'] = PropTypes.oneOf(['in_review', 'fully_reviewed', 'rejected', 'unscreened']);
@@ -12138,6 +12186,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_shipping_line'] = PropTypes.e
12138
12186
  });
12139
12187
 
12140
12188
  T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact({
12189
+ current_quantity: PropTypes.number,
12141
12190
  fulfillable_quantity: PropTypes.number,
12142
12191
  fulfillment_status: T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_status_type'],
12143
12192
  grams: PropTypes.number,
@@ -12995,6 +13044,36 @@ T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
12995
13044
  });
12996
13045
 
12997
13046
  T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
13047
+ T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
13048
+
13049
+ T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
13050
+ direction: T['io.flow.label.v0.enums.direction'].isRequired,
13051
+ effective_at: PropTypes.string.isRequired,
13052
+ origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
13053
+ service: PropTypes.string.isRequired,
13054
+ number: PropTypes.string,
13055
+ rate_level_key: PropTypes.string,
13056
+ ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
13057
+ glbe_shipping_method_id: PropTypes.string,
13058
+ glbe_proposition_name: PropTypes.string,
13059
+ channel_revenue_share_percentage: PropTypes.number,
13060
+ data: PropTypes.objectOf(PropTypes.string),
13061
+ });
13062
+
13063
+ T['io.flow.ratecard.v0.models.ratecard'] = PropTypes.exact({
13064
+ id: PropTypes.string.isRequired,
13065
+ number: PropTypes.string.isRequired,
13066
+ rate_level_key: PropTypes.string,
13067
+ direction: T['io.flow.label.v0.enums.direction'].isRequired,
13068
+ effective_at: PropTypes.string.isRequired,
13069
+ origination_zones: PropTypes.arrayOf(T['io.flow.common.v0.models.zone']).isRequired,
13070
+ service: T['io.flow.ratecard.v0.models.ratecard_service_summary'].isRequired,
13071
+ published_at: PropTypes.string,
13072
+ ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'].isRequired,
13073
+ glbe_shipping_method_id: PropTypes.string,
13074
+ glbe_proposition_name: PropTypes.string,
13075
+ channel_revenue_share_percentage: PropTypes.number,
13076
+ });
12998
13077
 
12999
13078
  T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'] = PropTypes.oneOf([
13000
13079
  'merchant',
@@ -13045,6 +13124,8 @@ T['io.flow.internal.v0.models.order_validation'] = PropTypes.exact({
13045
13124
  resolved_at: PropTypes.string,
13046
13125
  last_failure: T['io.flow.internal.v0.models.last_failure_summary'],
13047
13126
  sla_breach_at: PropTypes.string,
13127
+ capabilities_at_creation: PropTypes.arrayOf(T['io.flow.internal.v0.enums.logistics_capability']),
13128
+ first_globale_address_repair_failure_at: PropTypes.string,
13048
13129
  });
13049
13130
 
13050
13131
  T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
@@ -13067,6 +13148,7 @@ T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
13067
13148
  carrier_id: PropTypes.string,
13068
13149
  service_id: PropTypes.string,
13069
13150
  errors: PropTypes.arrayOf(PropTypes.string).isRequired,
13151
+ direction: T['io.flow.label.v0.enums.direction'],
13070
13152
  });
13071
13153
 
13072
13154
  T['io.flow.internal.v0.models.label_request_error_upserted'] = PropTypes.exact({
@@ -13111,6 +13193,7 @@ T['io.flow.trueup.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
13111
13193
  'direct_delivery',
13112
13194
  'saturday_stop',
13113
13195
  'residential_extended_area_pickup',
13196
+ 'package_level_detail',
13114
13197
  ]);
13115
13198
 
13116
13199
  T['io.flow.billing.v0.models.trueup_label_surcharge'] = PropTypes.exact({
@@ -13453,7 +13536,11 @@ T['io.flow.payment.gateway.v0.unions.payment_method_data'] = PropTypes.oneOfType
13453
13536
  T['io.flow.payment.gateway.v0.models.payment_method_data_init_sofort'],
13454
13537
  T['io.flow.payment.gateway.v0.models.payment_method_data_init_twint'],
13455
13538
  T['io.flow.payment.gateway.v0.models.payment_method_data_init_przelewy24'],
13539
+ T['io.flow.payment.gateway.v0.models.payment_method_data_init_mobilepay'],
13540
+ T['io.flow.payment.gateway.v0.models.payment_method_data_init_kcp_creditcard'],
13456
13541
  T['io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact'],
13542
+ T['io.flow.payment.gateway.v0.models.payment_method_data_init_grabpay'],
13543
+ T['io.flow.payment.gateway.v0.models.payment_method_data_init_vipps'],
13457
13544
  T['io.flow.payment.gateway.v0.models.payment_method_data_validate_applepay'],
13458
13545
  T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_card'],
13459
13546
  T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_googlepay'],
@@ -13831,6 +13918,11 @@ T['io.flow.payment.gateway.v0.models.payment_payment_method'] = PropTypes.exact(
13831
13918
  possible_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
13832
13919
  });
13833
13920
 
13921
+ T['io.flow.payment.gateway.v0.models.payment_method_summary_vipps'] = PropTypes.exact({
13922
+ type: PropTypes.oneOf(['vipps']).isRequired,
13923
+ merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
13924
+ });
13925
+
13834
13926
  T['io.flow.payment.gateway.v0.models.payment_method_summary_twint'] = PropTypes.exact({
13835
13927
  type: PropTypes.oneOf(['twint']).isRequired,
13836
13928
  merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
@@ -13851,17 +13943,32 @@ T['io.flow.payment.gateway.v0.models.payment_method_summary_paypal'] = PropTypes
13851
13943
  merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
13852
13944
  });
13853
13945
 
13946
+ T['io.flow.payment.gateway.v0.models.payment_method_summary_mobilepay'] = PropTypes.exact({
13947
+ type: PropTypes.oneOf(['mobilepay']).isRequired,
13948
+ merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
13949
+ });
13950
+
13854
13951
  T['io.flow.payment.gateway.v0.models.payment_method_summary_klarna'] = PropTypes.exact({
13855
13952
  type: PropTypes.oneOf(['klarna']).isRequired,
13856
13953
  merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
13857
13954
  });
13858
13955
 
13956
+ T['io.flow.payment.gateway.v0.models.payment_method_summary_kcp_creditcard'] = PropTypes.exact({
13957
+ type: PropTypes.oneOf(['kcp_creditcard']).isRequired,
13958
+ merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
13959
+ });
13960
+
13859
13961
  T['io.flow.payment.gateway.v0.models.payment_method_summary_ideal'] = PropTypes.exact({
13860
13962
  type: PropTypes.oneOf(['ideal']).isRequired,
13861
13963
  merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
13862
13964
  issuer: PropTypes.string,
13863
13965
  });
13864
13966
 
13967
+ T['io.flow.payment.gateway.v0.models.payment_method_summary_grabpay'] = PropTypes.exact({
13968
+ type: PropTypes.oneOf(['grabpay']).isRequired,
13969
+ merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
13970
+ });
13971
+
13865
13972
  T['io.flow.payment.gateway.v0.models.payment_method_summary_googlepay'] = PropTypes.exact({
13866
13973
  type: PropTypes.oneOf(['googlepay']).isRequired,
13867
13974
  merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
@@ -13901,9 +14008,13 @@ T['io.flow.payment.gateway.v0.unions.payment_method_summary'] = PropTypes.oneOfT
13901
14008
  T['io.flow.payment.gateway.v0.models.payment_method_summary_paypal'],
13902
14009
  T['io.flow.payment.gateway.v0.models.payment_method_summary_ideal'],
13903
14010
  T['io.flow.payment.gateway.v0.models.payment_method_summary_twint'],
14011
+ T['io.flow.payment.gateway.v0.models.payment_method_summary_vipps'],
13904
14012
  T['io.flow.payment.gateway.v0.models.payment_method_summary_przelewy24'],
14013
+ T['io.flow.payment.gateway.v0.models.payment_method_summary_mobilepay'],
14014
+ T['io.flow.payment.gateway.v0.models.payment_method_summary_kcp_creditcard'],
13905
14015
  T['io.flow.payment.gateway.v0.models.payment_method_summary_sofort'],
13906
14016
  T['io.flow.payment.gateway.v0.models.payment_method_summary_bancontact'],
14017
+ T['io.flow.payment.gateway.v0.models.payment_method_summary_grabpay'],
13907
14018
  ]);
13908
14019
 
13909
14020
  T['io.flow.payment.gateway.v0.models.payment_authorization'] = PropTypes.exact({
@@ -14010,6 +14121,7 @@ T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exac
14010
14121
  freight: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
14011
14122
  discount: T['io.flow.internal.v0.models.reporting_monetary_value'],
14012
14123
  total: T['io.flow.internal.v0.models.reporting_monetary_value'],
14124
+ tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
14013
14125
  });
14014
14126
 
14015
14127
  T['io.flow.internal.v0.models.reporting_merchant_fees'] = PropTypes.exact({
@@ -14135,6 +14247,7 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
14135
14247
  duty: PropTypes.number.isRequired,
14136
14248
  freight: PropTypes.number.isRequired,
14137
14249
  total: PropTypes.number.isRequired,
14250
+ tax_refund: PropTypes.number,
14138
14251
  });
14139
14252
 
14140
14253
  T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
@@ -14881,6 +14994,7 @@ T['io.flow.internal.v0.models.encryption'] = PropTypes.exact({
14881
14994
  passphrase_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
14882
14995
  });
14883
14996
 
14997
+ T['io.flow.internal.v0.enums.eldar_item_type'] = PropTypes.oneOf(['digital', 'physical']);
14884
14998
  T['io.flow.internal.v0.enums.duty_rate_unit_of_measure'] = PropTypes.oneOf(['kg', 'sq m', 'item', 'pair']);
14885
14999
  T['io.flow.internal.v0.enums.duty_simple_expression_type'] = PropTypes.oneOf(['free', 'percent', 'per_uom', 'flat']);
14886
15000
 
@@ -15077,6 +15191,7 @@ T['io.flow.internal.v0.models.dispute_details_paypal'] = PropTypes.exact({
15077
15191
  original_transaction_id: PropTypes.string.isRequired,
15078
15192
  transaction_invoice_id: PropTypes.string.isRequired,
15079
15193
  case_id: PropTypes.string.isRequired,
15194
+ dispute_channel: PropTypes.string,
15080
15195
  });
15081
15196
 
15082
15197
  T['io.flow.internal.v0.models.dispute_details_adyen'] = PropTypes.exact({
@@ -15102,7 +15217,7 @@ T['io.flow.internal.v0.models.dispute_status_form'] = PropTypes.exact({
15102
15217
  T['io.flow.internal.v0.enums.dispute_reporting_category'] = PropTypes.oneOf(['charge_issues', 'delivery', 'fraud', 'general', 'product', 'returns']);
15103
15218
  T['io.flow.internal.v0.enums.dispute_category'] = PropTypes.oneOf(['friendly_fraud', 'true_fraud', 'processing_error']);
15104
15219
  T['io.flow.internal.v0.enums.dispute_type'] = PropTypes.oneOf(['chargeback']);
15105
- T['io.flow.internal.v0.enums.dispute_processor'] = PropTypes.oneOf(['adyen', 'paypal']);
15220
+ T['io.flow.internal.v0.enums.dispute_processor'] = PropTypes.oneOf(['adyen', 'paypal', 'stripe']);
15106
15221
 
15107
15222
  T['io.flow.internal.v0.models.dispute_authorization_reference'] = PropTypes.exact({
15108
15223
  id: PropTypes.string.isRequired,
@@ -15557,6 +15672,13 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
15557
15672
  'accounts_with_final_statements_pending_transaction_total',
15558
15673
  'edited_order_tax_amount_exceeding_transaction',
15559
15674
  'edited_order_duty_amount_exceeding_transaction',
15675
+ 'negative_balance_scheduled_count',
15676
+ 'negative_balance_scheduled_total',
15677
+ 'negative_balance_sent_count',
15678
+ 'negative_balance_sent_total',
15679
+ 'negative_balance_failed_count',
15680
+ 'negative_balance_failed_total',
15681
+ 'negative_debit_success_rate',
15560
15682
  ]);
15561
15683
 
15562
15684
  T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
@@ -17085,6 +17207,7 @@ T['io.flow.internal.v0.models.rate_freshness_summary_deleted'] = PropTypes.exact
17085
17207
 
17086
17208
  T['io.flow.internal.v0.models.processed_payment_summary'] = PropTypes.exact({
17087
17209
  type: T['io.flow.reference.v0.enums.payment_method_capability'].isRequired,
17210
+ amount: PropTypes.number.isRequired,
17088
17211
  currency: T['io.flow.reference.v0.models.currency'].isRequired,
17089
17212
  method: T['io.flow.reference.v0.models.payment_method'].isRequired,
17090
17213
  card_issuer_country: T['io.flow.reference.v0.models.country'],
@@ -18207,85 +18330,6 @@ T['io.flow.internal.v0.models.catalog_settings_upserted'] = PropTypes.exact({
18207
18330
  catalog_settings: T['io.flow.internal.v0.models.catalog_settings'].isRequired,
18208
18331
  });
18209
18332
 
18210
- T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropTypes.oneOf([
18211
- 'cx_team',
18212
- 'core_team',
18213
- 'core_team_investigate',
18214
- 'mex_team',
18215
- 'payments_team',
18216
- 'tc_team',
18217
- 'logistics_team',
18218
- ]);
18219
-
18220
- T['io.flow.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
18221
- message: PropTypes.string.isRequired,
18222
- reason: PropTypes.string.isRequired,
18223
- next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
18224
- });
18225
-
18226
- T['io.flow.internal.v0.models.order_validation_error'] = PropTypes.exact({
18227
- message: PropTypes.string.isRequired,
18228
- reason: T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'].isRequired,
18229
- action: T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'],
18230
- next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
18231
- });
18232
-
18233
- T['io.flow.internal.v0.models.generic_validation_error'] = PropTypes.exact({
18234
- message: PropTypes.string.isRequired,
18235
- reason: PropTypes.string.isRequired,
18236
- next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
18237
- });
18238
-
18239
- T['io.flow.internal.v0.models.flow_shop_validation_error'] = PropTypes.exact({
18240
- message: PropTypes.string.isRequired,
18241
- reason: PropTypes.string.isRequired,
18242
- next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
18243
- });
18244
-
18245
- T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
18246
- id: PropTypes.string.isRequired,
18247
- organization_id: PropTypes.string.isRequired,
18248
- order_number: PropTypes.string.isRequired,
18249
- channel_id: PropTypes.string.isRequired,
18250
- external_order_reference: PropTypes.string.isRequired,
18251
- payment_request_id: PropTypes.string,
18252
- order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
18253
- status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
18254
- reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
18255
- next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'],
18256
- order_created_at: PropTypes.string,
18257
- order_updated_at: PropTypes.string,
18258
- });
18259
-
18260
- T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
18261
- discriminator: PropTypes.oneOf(['channel_order_acceptance_upserted']).isRequired,
18262
- event_id: PropTypes.string.isRequired,
18263
- timestamp: PropTypes.string.isRequired,
18264
- organization: PropTypes.string.isRequired,
18265
- channel_id: PropTypes.string.isRequired,
18266
- channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
18267
- });
18268
-
18269
- T['io.flow.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
18270
- order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
18271
- external_order: PropTypes.object.isRequired,
18272
- });
18273
-
18274
- T['io.flow.internal.v0.models.channel_order_acceptance_deleted'] = PropTypes.exact({
18275
- discriminator: PropTypes.oneOf(['channel_order_acceptance_deleted']).isRequired,
18276
- event_id: PropTypes.string.isRequired,
18277
- timestamp: PropTypes.string.isRequired,
18278
- organization: PropTypes.string.isRequired,
18279
- channel_id: PropTypes.string.isRequired,
18280
- channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
18281
- });
18282
-
18283
- T['io.flow.internal.v0.models.catalog_publication_sync_validation_error'] = PropTypes.exact({
18284
- message: PropTypes.string.isRequired,
18285
- reason: PropTypes.string.isRequired,
18286
- next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
18287
- });
18288
-
18289
18333
  T['io.flow.catalog.v0.enums.subcatalog_item_status'] = PropTypes.oneOf(['excluded', 'included', 'restricted']);
18290
18334
 
18291
18335
  T['io.flow.shopify.v0.models.shopify_variant_flow_metafield'] = PropTypes.exact({
@@ -18535,6 +18579,7 @@ T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
18535
18579
  direct_delivery: T['io.flow.internal.v0.models.label_surcharge_single_form'],
18536
18580
  saturday_stop: T['io.flow.internal.v0.models.label_surcharge_single_form'],
18537
18581
  residential_extended_area_pickup: T['io.flow.internal.v0.models.label_surcharge_single_form'],
18582
+ package_level_detail: T['io.flow.internal.v0.models.label_surcharge_single_form'],
18538
18583
  });
18539
18584
 
18540
18585
  T['io.flow.internal.v0.models.carrier_tax_form'] = PropTypes.exact({
@@ -18842,6 +18887,91 @@ T['io.flow.internal.v0.models.calculation_stamping_shipping_line'] = PropTypes.e
18842
18887
  import_fee: PropTypes.number,
18843
18888
  });
18844
18889
 
18890
+ T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropTypes.oneOf([
18891
+ 'cx_team',
18892
+ 'core_team',
18893
+ 'core_team_investigate',
18894
+ 'mex_team',
18895
+ 'payments_team',
18896
+ 'tc_team',
18897
+ 'logistics_team',
18898
+ ]);
18899
+
18900
+ T['io.flow.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
18901
+ message: PropTypes.string.isRequired,
18902
+ reason: PropTypes.string.isRequired,
18903
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
18904
+ });
18905
+
18906
+ T['io.flow.internal.v0.models.order_validation_error'] = PropTypes.exact({
18907
+ message: PropTypes.string.isRequired,
18908
+ reason: T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'].isRequired,
18909
+ action: T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'],
18910
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
18911
+ });
18912
+
18913
+ T['io.flow.internal.v0.models.generic_validation_error'] = PropTypes.exact({
18914
+ message: PropTypes.string.isRequired,
18915
+ reason: PropTypes.string.isRequired,
18916
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
18917
+ });
18918
+
18919
+ T['io.flow.internal.v0.models.flow_shop_validation_error'] = PropTypes.exact({
18920
+ message: PropTypes.string.isRequired,
18921
+ reason: PropTypes.string.isRequired,
18922
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
18923
+ });
18924
+
18925
+ T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
18926
+ id: PropTypes.string.isRequired,
18927
+ organization_id: PropTypes.string.isRequired,
18928
+ order_number: PropTypes.string.isRequired,
18929
+ channel_id: PropTypes.string.isRequired,
18930
+ external_order_reference: PropTypes.string.isRequired,
18931
+ payment_request_id: PropTypes.string,
18932
+ order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
18933
+ status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
18934
+ reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
18935
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'],
18936
+ order_created_at: PropTypes.string,
18937
+ order_updated_at: PropTypes.string,
18938
+ });
18939
+
18940
+ T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
18941
+ discriminator: PropTypes.oneOf(['channel_order_acceptance_upserted']).isRequired,
18942
+ event_id: PropTypes.string.isRequired,
18943
+ timestamp: PropTypes.string.isRequired,
18944
+ organization: PropTypes.string.isRequired,
18945
+ channel_id: PropTypes.string.isRequired,
18946
+ channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
18947
+ });
18948
+
18949
+ T['io.flow.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
18950
+ order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
18951
+ external_order: PropTypes.object.isRequired,
18952
+ });
18953
+
18954
+ T['io.flow.internal.v0.models.channel_order_acceptance_deleted'] = PropTypes.exact({
18955
+ discriminator: PropTypes.oneOf(['channel_order_acceptance_deleted']).isRequired,
18956
+ event_id: PropTypes.string.isRequired,
18957
+ timestamp: PropTypes.string.isRequired,
18958
+ organization: PropTypes.string.isRequired,
18959
+ channel_id: PropTypes.string.isRequired,
18960
+ channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
18961
+ });
18962
+
18963
+ T['io.flow.internal.v0.models.catalog_publication_sync_validation_error'] = PropTypes.exact({
18964
+ message: PropTypes.string.isRequired,
18965
+ reason: PropTypes.string.isRequired,
18966
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
18967
+ });
18968
+
18969
+ T['io.flow.internal.v0.models.bulk_duty_update_validation_error'] = PropTypes.exact({
18970
+ message: PropTypes.string.isRequired,
18971
+ reason: PropTypes.string.isRequired,
18972
+ next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
18973
+ });
18974
+
18845
18975
  T['io.flow.internal.v0.models.product_labels'] = PropTypes.exact({
18846
18976
  item_type: PropTypes.string.isRequired,
18847
18977
  gender: T['io.flow.internal.v0.models.attribute_label'],
@@ -19482,6 +19612,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
19482
19612
  'virtual_card_capture',
19483
19613
  'virtual_card_refund',
19484
19614
  'failed_payout',
19615
+ 'tax_refund',
19485
19616
  ]);
19486
19617
 
19487
19618
  T['io.flow.billing.v0.models.parent_transaction_summary'] = PropTypes.exact({
@@ -19975,6 +20106,7 @@ T['io.flow.internal.v0.models.order_validation_failure_summary'] = PropTypes.exa
19975
20106
  created_at: PropTypes.string.isRequired,
19976
20107
  cancelled_at: PropTypes.string,
19977
20108
  resolved_at: PropTypes.string,
20109
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
19978
20110
  });
19979
20111
 
19980
20112
  T['io.flow.internal.v0.models.order_validation_failure'] = PropTypes.exact({
@@ -22370,6 +22502,7 @@ T['io.flow.label.v0.models.summary_shipping_label_form'] = PropTypes.exact({
22370
22502
  order_number: PropTypes.string.isRequired,
22371
22503
  items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
22372
22504
  center_key: PropTypes.string,
22505
+ direction: T['io.flow.label.v0.enums.direction'],
22373
22506
  });
22374
22507
 
22375
22508
  T['io.flow.label.v0.models.shipping_label_package'] = PropTypes.exact({
@@ -22470,6 +22603,7 @@ T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
22470
22603
  items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']),
22471
22604
  'package': T['io.flow.label.v0.models.shipping_label_package'],
22472
22605
  origin: T['io.flow.fulfillment.v0.models.shipping_address'],
22606
+ direction: T['io.flow.label.v0.enums.direction'],
22473
22607
  });
22474
22608
 
22475
22609
  T['io.flow.label.v0.unions.shipping_label_form'] = PropTypes.oneOfType([
@@ -22641,6 +22775,8 @@ T['io.flow.payment.v0.models.refund'] = PropTypes.exact({
22641
22775
  attributes: PropTypes.objectOf(PropTypes.string),
22642
22776
  status: T['io.flow.payment.v0.enums.refund_status'],
22643
22777
  base: T['io.flow.common.v0.models.money'],
22778
+ failure_category: T['io.flow.payment.v0.enums.refund_failure_category'],
22779
+ failure_psp_reason: PropTypes.string,
22644
22780
  });
22645
22781
 
22646
22782
  T['io.flow.payment.v0.models.refund_version'] = PropTypes.exact({
@@ -22733,7 +22869,6 @@ T['io.flow.internal.v0.models.restriction_organization_decision_summary'] = Prop
22733
22869
  priority_score: PropTypes.number.isRequired,
22734
22870
  date: PropTypes.string.isRequired,
22735
22871
  statuses: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_status_metadata']).isRequired,
22736
- rules: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_rule_metadata']).isRequired,
22737
22872
  count: PropTypes.number.isRequired,
22738
22873
  });
22739
22874
 
@@ -22807,6 +22942,7 @@ T['io.flow.internal.v0.models.dispute'] = PropTypes.exact({
22807
22942
  category: T['io.flow.internal.v0.enums.dispute_category'].isRequired,
22808
22943
  reporting_category: T['io.flow.internal.v0.enums.dispute_reporting_category'],
22809
22944
  reason: PropTypes.string.isRequired,
22945
+ code: PropTypes.string,
22810
22946
  status: T['io.flow.internal.v0.enums.dispute_status'].isRequired,
22811
22947
  liability: T['io.flow.internal.v0.enums.dispute_liability'].isRequired,
22812
22948
  billable: T['io.flow.internal.v0.enums.dispute_billable'].isRequired,
@@ -23690,6 +23826,7 @@ T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
23690
23826
  transaction_date: PropTypes.string.isRequired,
23691
23827
  origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
23692
23828
  destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
23829
+ billing_address: T['io.flow.fulfillment.v0.models.shipping_address'],
23693
23830
  service: PropTypes.string.isRequired,
23694
23831
  flow_tracking_number: PropTypes.string.isRequired,
23695
23832
  rex_number: PropTypes.string,
@@ -23717,6 +23854,7 @@ T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
23717
23854
  show_us_outbound_signature: PropTypes.bool.isRequired,
23718
23855
  show_us_outbound_stamp: PropTypes.bool.isRequired,
23719
23856
  invoice_url: PropTypes.string,
23857
+ invoice_number: PropTypes.string,
23720
23858
  });
23721
23859
 
23722
23860
  T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'] = PropTypes.exact({
@@ -24288,6 +24426,7 @@ T['io.flow.label.v0.models.shipping_label'] = PropTypes.exact({
24288
24426
  additional_services_requested: PropTypes.arrayOf(T['io.flow.label.v0.models.additional_services_requested']),
24289
24427
  created_at: PropTypes.string,
24290
24428
  updated_at: PropTypes.string,
24429
+ direction: T['io.flow.label.v0.enums.direction'],
24291
24430
  });
24292
24431
 
24293
24432
  T['io.flow.label.v0.models.shipping_label_version'] = PropTypes.exact({
@@ -24620,6 +24759,30 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
24620
24759
  gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
24621
24760
  });
24622
24761
 
24762
+ T['io.flow.internal.v0.models.eldar_item_form'] = PropTypes.exact({
24763
+ number: PropTypes.string.isRequired,
24764
+ amount: T['io.flow.common.v0.models.price'].isRequired,
24765
+ description: PropTypes.string,
24766
+ type: T['io.flow.internal.v0.enums.eldar_item_type'].isRequired,
24767
+ added_on: PropTypes.string.isRequired,
24768
+ });
24769
+
24770
+ T['io.flow.internal.v0.models.eldar_item'] = PropTypes.exact({
24771
+ id: PropTypes.string.isRequired,
24772
+ number: PropTypes.string.isRequired,
24773
+ amount: T['io.flow.common.v0.models.price'].isRequired,
24774
+ description: PropTypes.string,
24775
+ type: T['io.flow.internal.v0.enums.eldar_item_type'].isRequired,
24776
+ added_on: PropTypes.string.isRequired,
24777
+ });
24778
+
24779
+ T['io.flow.internal.v0.models.eldar_item_upserted'] = PropTypes.exact({
24780
+ discriminator: PropTypes.oneOf(['eldar_item_upserted']).isRequired,
24781
+ event_id: PropTypes.string.isRequired,
24782
+ timestamp: PropTypes.string.isRequired,
24783
+ item: T['io.flow.internal.v0.models.eldar_item'].isRequired,
24784
+ });
24785
+
24623
24786
  T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
24624
24787
  key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
24625
24788
  currency: PropTypes.string.isRequired,
@@ -24813,6 +24976,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
24813
24976
  trueup: T['io.flow.common.v0.models.price'].isRequired,
24814
24977
  carrier_charge: T['io.flow.common.v0.models.price'].isRequired,
24815
24978
  ending_balance: T['io.flow.common.v0.models.price'].isRequired,
24979
+ tax_refund: T['io.flow.common.v0.models.price'].isRequired,
24816
24980
  });
24817
24981
 
24818
24982
  T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
@@ -26205,6 +26369,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
26205
26369
  'duty',
26206
26370
  'trueup',
26207
26371
  'carrier_charge',
26372
+ 'tax_refund',
26208
26373
  ]);
26209
26374
 
26210
26375
  T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
@@ -27153,8 +27318,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
27153
27318
  T['io.flow.internal.v0.models.ratecard_rate_level_ratecard_deleted'],
27154
27319
  T['io.flow.internal.v0.models.ratecard_rate_level_organization_upserted'],
27155
27320
  T['io.flow.internal.v0.models.ratecard_rate_level_organization_deleted'],
27156
- T['io.flow.internal.v0.models.organization_restriction_snapshot_upserted'],
27157
- T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'],
27158
27321
  T['io.flow.internal.v0.models.restriction_organization_status_upserted'],
27159
27322
  T['io.flow.internal.v0.models.restriction_organization_status_deleted'],
27160
27323
  T['io.flow.internal.v0.models.organization_restriction_status_upserted'],
@@ -27201,6 +27364,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
27201
27364
  T['io.flow.internal.v0.models.svitlana_item_deleted'],
27202
27365
  T['io.flow.internal.v0.models.colm_item_upserted'],
27203
27366
  T['io.flow.internal.v0.models.colm_item_deleted'],
27367
+ T['io.flow.internal.v0.models.eldar_item_upserted'],
27368
+ T['io.flow.internal.v0.models.eldar_item_deleted'],
27204
27369
  T['io.flow.internal.v0.models.harinath_item_upserted'],
27205
27370
  T['io.flow.internal.v0.models.harinath_item_deleted'],
27206
27371
  T['io.flow.internal.v0.models.konstantin_item_upserted'],
@@ -27227,6 +27392,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
27227
27392
  T['io.flow.internal.v0.models.tracking_deleted'],
27228
27393
  T['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'],
27229
27394
  T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'],
27395
+ T['io.flow.internal.v0.models.tracking_assurance_job_upserted'],
27396
+ T['io.flow.internal.v0.models.tracking_assurance_job_deleted'],
27230
27397
  T['io.flow.internal.v0.models.tracking_request_upserted'],
27231
27398
  T['io.flow.internal.v0.models.tracking_response_upserted'],
27232
27399
  T['io.flow.internal.v0.models.user_upserted_v2'],
@@ -27689,8 +27856,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
27689
27856
  'ratecard_rate_level_ratecard_deleted',
27690
27857
  'ratecard_rate_level_organization_upserted',
27691
27858
  'ratecard_rate_level_organization_deleted',
27692
- 'organization_restriction_snapshot_upserted',
27693
- 'organization_restriction_snapshot_deleted',
27694
27859
  'restriction_organization_status_upserted',
27695
27860
  'restriction_organization_status_deleted',
27696
27861
  'organization_restriction_status_upserted',
@@ -27737,6 +27902,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
27737
27902
  'svitlana_item_deleted',
27738
27903
  'colm_item_upserted',
27739
27904
  'colm_item_deleted',
27905
+ 'eldar_item_upserted',
27906
+ 'eldar_item_deleted',
27740
27907
  'harinath_item_upserted',
27741
27908
  'harinath_item_deleted',
27742
27909
  'konstantin_item_upserted',
@@ -27763,6 +27930,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
27763
27930
  'tracking_deleted',
27764
27931
  'tracking_assurance_analysis_upserted',
27765
27932
  'tracking_assurance_analysis_deleted',
27933
+ 'tracking_assurance_job_upserted',
27934
+ 'tracking_assurance_job_deleted',
27766
27935
  'tracking_request_upserted',
27767
27936
  'tracking_response_upserted',
27768
27937
  'user_upserted_v2',
@@ -27771,6 +27940,19 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
27771
27940
 
27772
27941
  T['io.flow.internal.v0.enums.financial_reporting_responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
27773
27942
  T['io.flow.internal.v0.enums.flow_app'] = PropTypes.oneOf(['console']);
27943
+
27944
+ T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
27945
+ 'order_update_mutation',
27946
+ 'shipping_address_validation',
27947
+ 'bulk_publication_status',
27948
+ 'country_catalog_sync',
27949
+ 'inventory_item',
27950
+ 'product_bundle',
27951
+ 'shopify_location',
27952
+ 'shopify_order',
27953
+ 'sync_product_catalog',
27954
+ ]);
27955
+
27774
27956
  T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
27775
27957
  T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
27776
27958
  T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
@@ -27799,7 +27981,7 @@ T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
27799
27981
 
27800
27982
  T['io.flow.internal.v0.enums.order_lifecycle_event'] = PropTypes.oneOf(['order_placed', 'ready_to_fulfill']);
27801
27983
  T['io.flow.internal.v0.enums.order_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'order_service']);
27802
- T['io.flow.internal.v0.enums.organization_metric_type'] = PropTypes.oneOf(['organization_restriction_snapshot', 'organization_restriction_status']);
27984
+ T['io.flow.internal.v0.enums.organization_metric_type'] = PropTypes.oneOf(['organization_restriction_status']);
27803
27985
  T['io.flow.internal.v0.enums.output_style'] = PropTypes.oneOf(['flow', 'shopify_p1']);
27804
27986
  T['io.flow.internal.v0.enums.preferred_billing_schedule'] = PropTypes.oneOf(['monthly', 'bi-monthly']);
27805
27987
  T['io.flow.internal.v0.enums.price_selector'] = PropTypes.oneOf(['minimum', 'maximum']);
@@ -27868,6 +28050,7 @@ T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'] = PropTypes.on
27868
28050
  'webhook_registrations',
27869
28051
  'channel_organization_identifier',
27870
28052
  'bulk_product_ingestion',
28053
+ 'bulk_duty_update',
27871
28054
  ]);
27872
28055
 
27873
28056
  T['io.flow.internal.v0.enums.shopify_markets_trade_sector'] = PropTypes.oneOf([
@@ -27903,7 +28086,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
27903
28086
  'center_defaults',
27904
28087
  ]);
27905
28088
 
27906
- T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax']);
28089
+ T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax', 'refund']);
27907
28090
  T['io.flow.internal.v0.enums.tracking_integration_type'] = PropTypes.oneOf(['api', 'bulk', 'aftership']);
27908
28091
  T['io.flow.internal.v0.enums.trueup_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'trueup']);
27909
28092
 
@@ -29235,6 +29418,19 @@ T['io.flow.brickftp.v0.models.file_upload_metadata'] = PropTypes.exact({
29235
29418
  T['io.flow.units.v0.enums.unit_of_volume'] = PropTypes.oneOf(['cubic_inch', 'cubic_meter']);
29236
29419
  T['io.flow.shopify.markets.internal.v0.enums.any_dangerous_goods'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
29237
29420
  T['io.flow.shopify.markets.internal.v0.enums.api_call_reference_id'] = PropTypes.oneOf(['duty_rates_data_event', 'integration_test', 'unit_test']);
29421
+
29422
+ T['io.flow.shopify.markets.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
29423
+ 'order_update_mutation',
29424
+ 'shipping_address_validation',
29425
+ 'bulk_publication_status',
29426
+ 'country_catalog_sync',
29427
+ 'inventory_item',
29428
+ 'product_bundle',
29429
+ 'shopify_location',
29430
+ 'shopify_order',
29431
+ 'sync_product_catalog',
29432
+ ]);
29433
+
29238
29434
  T['io.flow.shopify.markets.internal.v0.enums.product_status'] = PropTypes.oneOf(['active', 'archived', 'draft']);
29239
29435
 
29240
29436
  T['io.flow.shopify.markets.internal.v0.enums.shopify_markets_dangerous_goods'] = PropTypes.oneOf([
@@ -29350,6 +29546,7 @@ T['io.flow.adyen.v0.models.chargeback_notification_additional_data'] = PropTypes
29350
29546
  chargebackReasonCode: PropTypes.string.isRequired,
29351
29547
  modificationMerchantReferences: PropTypes.string.isRequired,
29352
29548
  chargebackSchemeCode: PropTypes.string.isRequired,
29549
+ defensePeriodEndsAt: PropTypes.string,
29353
29550
  });
29354
29551
 
29355
29552
  T['io.flow.adyen.v0.models.error'] = PropTypes.exact({
@@ -30250,7 +30447,7 @@ export const browserBundlePaymentMethod = T['io.flow.internal.v0.models.browser_
30250
30447
  export const browserBundlePaymentMethodForm = T['io.flow.internal.v0.models.browser_bundle_payment_method_form'];
30251
30448
  export const browserBundlePaymentMethods = T['io.flow.internal.v0.models.browser_bundle_payment_methods'];
30252
30449
  export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
30253
- export const byRuleSnapshot = T['io.flow.internal.v0.models.by_rule_snapshot'];
30450
+ export const bulkDutyUpdateValidationError = T['io.flow.internal.v0.models.bulk_duty_update_validation_error'];
30254
30451
  export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
30255
30452
  export const calculationStampingLineItem = T['io.flow.internal.v0.models.calculation_stamping_line_item'];
30256
30453
  export const calculationStampingShippingLine = T['io.flow.internal.v0.models.calculation_stamping_shipping_line'];
@@ -30621,6 +30818,11 @@ export const dutyTransaction = T['io.flow.internal.v0.models.duty_transaction'];
30621
30818
  export const dutyTransactionDeleted = T['io.flow.internal.v0.models.duty_transaction_deleted'];
30622
30819
  export const dutyTransactionType = T['io.flow.internal.v0.enums.duty_transaction_type'];
30623
30820
  export const dutyTransactionUpserted = T['io.flow.internal.v0.models.duty_transaction_upserted'];
30821
+ export const eldarItem = T['io.flow.internal.v0.models.eldar_item'];
30822
+ export const eldarItemDeleted = T['io.flow.internal.v0.models.eldar_item_deleted'];
30823
+ export const eldarItemForm = T['io.flow.internal.v0.models.eldar_item_form'];
30824
+ export const eldarItemType = T['io.flow.internal.v0.enums.eldar_item_type'];
30825
+ export const eldarItemUpserted = T['io.flow.internal.v0.models.eldar_item_upserted'];
30624
30826
  export const emailForm = T['io.flow.internal.v0.models.email_form'];
30625
30827
  export const emailModificationForm = T['io.flow.internal.v0.models.email_modification_form'];
30626
30828
  export const emptyAttribute = T['io.flow.internal.v0.enums.empty_attribute'];
@@ -30818,6 +31020,7 @@ export const googleLinker = T['io.flow.internal.v0.models.google_linker'];
30818
31020
  export const googleShoppingAccountParameters = T['io.flow.internal.v0.models.google_shopping_account_parameters'];
30819
31021
  export const googleShoppingSetting = T['io.flow.internal.v0.models.google_shopping_setting'];
30820
31022
  export const googleTagManager = T['io.flow.internal.v0.models.google_tag_manager'];
31023
+ export const graphqlServiceTypes = T['io.flow.internal.v0.enums.graphql_service_types'];
30821
31024
  export const harinathItem = T['io.flow.internal.v0.models.harinath_item'];
30822
31025
  export const harinathItemDeleted = T['io.flow.internal.v0.models.harinath_item_deleted'];
30823
31026
  export const harinathItemForm = T['io.flow.internal.v0.models.harinath_item_form'];
@@ -31266,9 +31469,6 @@ export const organizationRestrictionReviewType = T['io.flow.internal.v0.enums.or
31266
31469
  export const organizationRestrictionRiskLevel = T['io.flow.internal.v0.enums.organization_restriction_risk_level'];
31267
31470
  export const organizationRestrictionScreeningDecisionForm = T['io.flow.internal.v0.models.organization_restriction_screening_decision_form'];
31268
31471
  export const organizationRestrictionScreeningStatus = T['io.flow.internal.v0.enums.organization_restriction_screening_status'];
31269
- export const organizationRestrictionSnapshot = T['io.flow.internal.v0.models.organization_restriction_snapshot'];
31270
- export const organizationRestrictionSnapshotDeleted = T['io.flow.internal.v0.models.organization_restriction_snapshot_deleted'];
31271
- export const organizationRestrictionSnapshotUpserted = T['io.flow.internal.v0.models.organization_restriction_snapshot_upserted'];
31272
31472
  export const organizationRestrictionStatus = T['io.flow.internal.v0.models.organization_restriction_status'];
31273
31473
  export const organizationRestrictionStatusDeleted = T['io.flow.internal.v0.models.organization_restriction_status_deleted'];
31274
31474
  export const organizationRestrictionStatusNote = T['io.flow.internal.v0.models.organization_restriction_status_note'];
@@ -31896,6 +32096,9 @@ export const tracker = T['io.flow.internal.v0.unions.tracker'];
31896
32096
  export const trackingAssuranceAnalysis = T['io.flow.internal.v0.models.tracking_assurance_analysis'];
31897
32097
  export const trackingAssuranceAnalysisDeleted = T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'];
31898
32098
  export const trackingAssuranceAnalysisUpserted = T['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'];
32099
+ export const trackingAssuranceJob = T['io.flow.internal.v0.models.tracking_assurance_job'];
32100
+ export const trackingAssuranceJobDeleted = T['io.flow.internal.v0.models.tracking_assurance_job_deleted'];
32101
+ export const trackingAssuranceJobUpserted = T['io.flow.internal.v0.models.tracking_assurance_job_upserted'];
31899
32102
  export const trackingDebugForceTransitForm = T['io.flow.internal.v0.models.tracking_debug_force_transit_form'];
31900
32103
  export const trackingDebugLabel = T['io.flow.internal.v0.models.tracking_debug_label'];
31901
32104
  export const trackingDebugLabelEvent = T['io.flow.internal.v0.models.tracking_debug_label_event'];