@flowio/api-internal-prop-types 9.24.99 → 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.
- package/lib/api-internal.d.ts +158 -29
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +158 -29
- package/src/api-internal.js +325 -143
package/src/api-internal.js
CHANGED
|
@@ -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
|
|
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']
|
|
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',
|
|
@@ -3032,6 +3045,7 @@ T['io.flow.adyen.v0.enums.payment_method'] = PropTypes.oneOf([
|
|
|
3032
3045
|
'trustpay',
|
|
3033
3046
|
'twint',
|
|
3034
3047
|
'unionpay',
|
|
3048
|
+
'vipps',
|
|
3035
3049
|
'visa',
|
|
3036
3050
|
'wechatpay',
|
|
3037
3051
|
'unknowncard',
|
|
@@ -3482,6 +3496,12 @@ T['io.flow.shopify.markets.internal.v0.models.catalog_publication_sync_validatio
|
|
|
3482
3496
|
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
3483
3497
|
});
|
|
3484
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
|
+
|
|
3485
3505
|
T['io.flow.brickftp.v0.models.file_summary'] = PropTypes.exact({
|
|
3486
3506
|
type: PropTypes.oneOf(['file']).isRequired,
|
|
3487
3507
|
path: PropTypes.string.isRequired,
|
|
@@ -3743,6 +3763,12 @@ T['io.flow.external.paypal.v1.models.token_form'] = PropTypes.exact({
|
|
|
3743
3763
|
});
|
|
3744
3764
|
|
|
3745
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
|
+
|
|
3746
3772
|
T['io.flow.external.paypal.v1.enums.refund_state'] = PropTypes.oneOf(['pending', 'completed', 'cancelled', 'failed']);
|
|
3747
3773
|
|
|
3748
3774
|
T['io.flow.external.paypal.v1.models.simple_amount'] = PropTypes.exact({
|
|
@@ -3750,11 +3776,53 @@ T['io.flow.external.paypal.v1.models.simple_amount'] = PropTypes.exact({
|
|
|
3750
3776
|
currency: PropTypes.string.isRequired,
|
|
3751
3777
|
});
|
|
3752
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
|
+
|
|
3753
3801
|
T['io.flow.external.paypal.v1.models.refund_request'] = PropTypes.exact({
|
|
3754
3802
|
amount: T['io.flow.external.paypal.v1.models.simple_amount'].isRequired,
|
|
3755
3803
|
invoice_number: PropTypes.string.isRequired,
|
|
3756
3804
|
});
|
|
3757
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
|
+
|
|
3758
3826
|
T['io.flow.external.paypal.v1.enums.return_mode'] = PropTypes.oneOf(['SHIPPED', 'IN_PERSON']);
|
|
3759
3827
|
|
|
3760
3828
|
T['io.flow.external.paypal.v1.enums.failure_reason'] = PropTypes.oneOf([
|
|
@@ -4245,76 +4313,34 @@ T['io.flow.external.paypal.v1.enums.other_means_payment_method'] = PropTypes.one
|
|
|
4245
4313
|
'BANK_TRANSFER',
|
|
4246
4314
|
]);
|
|
4247
4315
|
|
|
4248
|
-
T['io.flow.external.paypal.v1.models.
|
|
4316
|
+
T['io.flow.external.paypal.v1.models.dispute_money'] = PropTypes.exact({
|
|
4249
4317
|
currency_code: PropTypes.string.isRequired,
|
|
4250
4318
|
value: PropTypes.string.isRequired,
|
|
4251
4319
|
});
|
|
4252
4320
|
|
|
4253
|
-
T['io.flow.external.paypal.v1.models.sale'] = PropTypes.exact({
|
|
4254
|
-
id: PropTypes.string.isRequired,
|
|
4255
|
-
state: T['io.flow.external.paypal.v1.enums.sale_state'].isRequired,
|
|
4256
|
-
parent_payment: PropTypes.string.isRequired,
|
|
4257
|
-
invoice_number: PropTypes.string,
|
|
4258
|
-
amount: T['io.flow.external.paypal.v1.models.simple_amount'],
|
|
4259
|
-
payment_mode: PropTypes.string,
|
|
4260
|
-
reason_code: PropTypes.string,
|
|
4261
|
-
protection_eligibility: PropTypes.string,
|
|
4262
|
-
protection_eligibility_type: PropTypes.string,
|
|
4263
|
-
receipt_id: PropTypes.string,
|
|
4264
|
-
soft_descriptor: PropTypes.string,
|
|
4265
|
-
exchange_rate: PropTypes.string,
|
|
4266
|
-
payment_hold_status: PropTypes.string,
|
|
4267
|
-
payment_hold_reasons: PropTypes.arrayOf(PropTypes.string),
|
|
4268
|
-
transaction_fee: T['io.flow.external.paypal.v1.models.money'],
|
|
4269
|
-
receivable_amount: T['io.flow.external.paypal.v1.models.money'],
|
|
4270
|
-
custom: PropTypes.string,
|
|
4271
|
-
create_time: PropTypes.string,
|
|
4272
|
-
update_time: PropTypes.string,
|
|
4273
|
-
});
|
|
4274
|
-
|
|
4275
|
-
T['io.flow.external.paypal.v1.models.refund'] = PropTypes.exact({
|
|
4276
|
-
id: PropTypes.string.isRequired,
|
|
4277
|
-
amount: T['io.flow.external.paypal.v1.models.simple_amount'],
|
|
4278
|
-
state: T['io.flow.external.paypal.v1.enums.refund_state'].isRequired,
|
|
4279
|
-
sale_id: PropTypes.string.isRequired,
|
|
4280
|
-
invoice_number: PropTypes.string,
|
|
4281
|
-
capture_id: PropTypes.string,
|
|
4282
|
-
parent_payment: PropTypes.string,
|
|
4283
|
-
reason_code: PropTypes.string,
|
|
4284
|
-
refund_reason_code: PropTypes.string,
|
|
4285
|
-
refund_funding_type: PropTypes.string,
|
|
4286
|
-
refund_from_received_amount: T['io.flow.external.paypal.v1.models.money'],
|
|
4287
|
-
refund_from_transaction_fee: T['io.flow.external.paypal.v1.models.money'],
|
|
4288
|
-
total_refunded_amount: T['io.flow.external.paypal.v1.models.money'],
|
|
4289
|
-
refund_to_payer: T['io.flow.external.paypal.v1.models.money'],
|
|
4290
|
-
custom: PropTypes.string,
|
|
4291
|
-
create_time: PropTypes.string,
|
|
4292
|
-
update_time: PropTypes.string,
|
|
4293
|
-
});
|
|
4294
|
-
|
|
4295
4321
|
T['io.flow.external.paypal.v1.models.item_info'] = PropTypes.exact({
|
|
4296
4322
|
item_id: PropTypes.string,
|
|
4297
4323
|
item_description: PropTypes.string,
|
|
4298
4324
|
item_quantity: PropTypes.string,
|
|
4299
4325
|
partner_transaction_id: PropTypes.string,
|
|
4300
4326
|
reason: T['io.flow.external.paypal.v1.enums.dispute_reason'],
|
|
4301
|
-
dispute_amount: T['io.flow.external.paypal.v1.models.
|
|
4327
|
+
dispute_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4302
4328
|
notes: PropTypes.string,
|
|
4303
4329
|
});
|
|
4304
4330
|
|
|
4305
4331
|
T['io.flow.external.paypal.v1.models.refund_details'] = PropTypes.exact({
|
|
4306
|
-
allowed_refund_amount: T['io.flow.external.paypal.v1.models.
|
|
4332
|
+
allowed_refund_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4307
4333
|
});
|
|
4308
4334
|
|
|
4309
4335
|
T['io.flow.external.paypal.v1.models.offer'] = PropTypes.exact({
|
|
4310
|
-
buyer_requested_amount: T['io.flow.external.paypal.v1.models.
|
|
4311
|
-
seller_offered_amount: T['io.flow.external.paypal.v1.models.
|
|
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'],
|
|
4312
4338
|
offer_type: T['io.flow.external.paypal.v1.enums.offer_type'],
|
|
4313
4339
|
});
|
|
4314
4340
|
|
|
4315
4341
|
T['io.flow.external.paypal.v1.models.money_movement'] = PropTypes.exact({
|
|
4316
4342
|
affected_party: T['io.flow.external.paypal.v1.enums.affected_party'],
|
|
4317
|
-
amount: T['io.flow.external.paypal.v1.models.
|
|
4343
|
+
amount: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4318
4344
|
initiated_time: PropTypes.string,
|
|
4319
4345
|
type: T['io.flow.external.paypal.v1.enums.money_movement_type'],
|
|
4320
4346
|
reason: T['io.flow.external.paypal.v1.enums.money_movement_reason'],
|
|
@@ -4322,7 +4348,7 @@ T['io.flow.external.paypal.v1.models.money_movement'] = PropTypes.exact({
|
|
|
4322
4348
|
|
|
4323
4349
|
T['io.flow.external.paypal.v1.models.dispute_outcome'] = PropTypes.exact({
|
|
4324
4350
|
outcome_code: T['io.flow.external.paypal.v1.enums.dispute_outcome_code'],
|
|
4325
|
-
amount_refunded: T['io.flow.external.paypal.v1.models.
|
|
4351
|
+
amount_refunded: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4326
4352
|
});
|
|
4327
4353
|
|
|
4328
4354
|
T['io.flow.external.paypal.v1.models.transaction_info'] = PropTypes.exact({
|
|
@@ -4331,7 +4357,7 @@ T['io.flow.external.paypal.v1.models.transaction_info'] = PropTypes.exact({
|
|
|
4331
4357
|
reference_id: PropTypes.string,
|
|
4332
4358
|
create_time: PropTypes.string,
|
|
4333
4359
|
transaction_status: T['io.flow.external.paypal.v1.enums.transaction_status'],
|
|
4334
|
-
gross_amount: T['io.flow.external.paypal.v1.models.
|
|
4360
|
+
gross_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4335
4361
|
invoice_number: PropTypes.string.isRequired,
|
|
4336
4362
|
custom: PropTypes.string,
|
|
4337
4363
|
buyer: T['io.flow.external.paypal.v1.models.buyer'],
|
|
@@ -4340,13 +4366,13 @@ T['io.flow.external.paypal.v1.models.transaction_info'] = PropTypes.exact({
|
|
|
4340
4366
|
});
|
|
4341
4367
|
|
|
4342
4368
|
T['io.flow.external.paypal.v1.models.canceled_recurring_billing'] = PropTypes.exact({
|
|
4343
|
-
expected_refund: T['io.flow.external.paypal.v1.models.
|
|
4369
|
+
expected_refund: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4344
4370
|
cancellation_details: T['io.flow.external.paypal.v1.models.cancellation_details'],
|
|
4345
4371
|
});
|
|
4346
4372
|
|
|
4347
4373
|
T['io.flow.external.paypal.v1.models.credit_not_processed'] = PropTypes.exact({
|
|
4348
4374
|
issue_type: T['io.flow.external.paypal.v1.enums.issue_type'],
|
|
4349
|
-
expected_refund: T['io.flow.external.paypal.v1.models.
|
|
4375
|
+
expected_refund: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4350
4376
|
cancellation_details: T['io.flow.external.paypal.v1.models.cancellation_details'],
|
|
4351
4377
|
product_details: T['io.flow.external.paypal.v1.models.product_details'],
|
|
4352
4378
|
service_details: T['io.flow.external.paypal.v1.models.service_details'],
|
|
@@ -4361,7 +4387,7 @@ T['io.flow.external.paypal.v1.models.payment_by_other_means'] = PropTypes.exact(
|
|
|
4361
4387
|
});
|
|
4362
4388
|
|
|
4363
4389
|
T['io.flow.external.paypal.v1.models.incorrect_transaction_amount'] = PropTypes.exact({
|
|
4364
|
-
correct_transaction_amount: T['io.flow.external.paypal.v1.models.
|
|
4390
|
+
correct_transaction_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4365
4391
|
correct_transaction_time: PropTypes.string,
|
|
4366
4392
|
});
|
|
4367
4393
|
|
|
@@ -4430,7 +4456,7 @@ T['io.flow.external.paypal.v1.models.dispute_summary'] = PropTypes.exact({
|
|
|
4430
4456
|
update_time: PropTypes.string.isRequired,
|
|
4431
4457
|
reason: T['io.flow.external.paypal.v1.enums.dispute_reason'].isRequired,
|
|
4432
4458
|
status: T['io.flow.external.paypal.v1.enums.dispute_status'].isRequired,
|
|
4433
|
-
dispute_amount: T['io.flow.external.paypal.v1.models.
|
|
4459
|
+
dispute_amount: T['io.flow.external.paypal.v1.models.dispute_money'].isRequired,
|
|
4434
4460
|
dispute_life_cycle_stage: T['io.flow.external.paypal.v1.enums.dispute_life_cycle_stage'].isRequired,
|
|
4435
4461
|
links: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.link']).isRequired,
|
|
4436
4462
|
});
|
|
@@ -4523,7 +4549,7 @@ T['io.flow.external.paypal.v1.models.dispute'] = PropTypes.exact({
|
|
|
4523
4549
|
disputed_transactions: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.transaction_info']).isRequired,
|
|
4524
4550
|
reason: T['io.flow.external.paypal.v1.enums.dispute_reason'].isRequired,
|
|
4525
4551
|
status: T['io.flow.external.paypal.v1.enums.dispute_status'].isRequired,
|
|
4526
|
-
dispute_amount: T['io.flow.external.paypal.v1.models.
|
|
4552
|
+
dispute_amount: T['io.flow.external.paypal.v1.models.dispute_money'].isRequired,
|
|
4527
4553
|
fee_policy: PropTypes.object,
|
|
4528
4554
|
external_reason_code: PropTypes.string,
|
|
4529
4555
|
dispute_outcome: T['io.flow.external.paypal.v1.models.dispute_outcome'],
|
|
@@ -4665,7 +4691,17 @@ T['io.flow.stripe.v0.models.source_klarna_request'] = PropTypes.exact({
|
|
|
4665
4691
|
|
|
4666
4692
|
T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
|
|
4667
4693
|
T['io.flow.stripe.v0.enums.refund_reason'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
|
|
4668
|
-
|
|
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
|
+
|
|
4669
4705
|
T['io.flow.stripe.v0.enums.refund_status'] = PropTypes.oneOf(['succeeded', 'failed', 'pending', 'canceled']);
|
|
4670
4706
|
|
|
4671
4707
|
T['io.flow.stripe.v0.enums.stored_credential_transaction_type'] = PropTypes.oneOf([
|
|
@@ -6174,6 +6210,21 @@ T['io.flow.payment.v0.models.refund_order_summary'] = PropTypes.exact({
|
|
|
6174
6210
|
amounts: T['io.flow.payment.v0.models.refund_order_summary_amounts'].isRequired,
|
|
6175
6211
|
});
|
|
6176
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
|
+
|
|
6177
6228
|
T['io.flow.payment.v0.models.payment_processor_transaction_details_apm'] = PropTypes.exact({
|
|
6178
6229
|
discriminator: PropTypes.oneOf(['apm']).isRequired,
|
|
6179
6230
|
transaction_identifier: PropTypes.string,
|
|
@@ -6953,11 +7004,26 @@ T['io.flow.payment.gateway.v0.models.payment_method_data_validate_applepay'] = P
|
|
|
6953
7004
|
validation_url: PropTypes.string.isRequired,
|
|
6954
7005
|
});
|
|
6955
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
|
+
|
|
6956
7017
|
T['io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact'] = PropTypes.exact({
|
|
6957
7018
|
type: PropTypes.oneOf(['init_bancontact']).isRequired,
|
|
6958
7019
|
reference: PropTypes.string,
|
|
6959
7020
|
});
|
|
6960
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
|
+
|
|
6961
7027
|
T['io.flow.payment.gateway.v0.models.payment_method_data_init_mobilepay'] = PropTypes.exact({
|
|
6962
7028
|
type: PropTypes.oneOf(['init_mobilepay']).isRequired,
|
|
6963
7029
|
reference: PropTypes.string,
|
|
@@ -7048,6 +7114,9 @@ T['io.flow.payment.gateway.v0.enums.payment_type'] = PropTypes.oneOf([
|
|
|
7048
7114
|
'twint',
|
|
7049
7115
|
'przelewy24',
|
|
7050
7116
|
'mobilepay',
|
|
7117
|
+
'grabpay',
|
|
7118
|
+
'vipps',
|
|
7119
|
+
'kcp_creditcard',
|
|
7051
7120
|
]);
|
|
7052
7121
|
|
|
7053
7122
|
T['io.flow.payment.gateway.v0.models.payment_method_data_option_logo_svg'] = PropTypes.exact({
|
|
@@ -8064,6 +8133,13 @@ T['io.flow.internal.v0.unions.explicit_statement_form'] = PropTypes.oneOfType([
|
|
|
8064
8133
|
T['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'],
|
|
8065
8134
|
]);
|
|
8066
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
|
+
|
|
8067
8143
|
T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'] = PropTypes.exact({
|
|
8068
8144
|
discriminator: PropTypes.oneOf(['tracking_assurance_analysis_deleted']).isRequired,
|
|
8069
8145
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8135,6 +8211,13 @@ T['io.flow.internal.v0.models.harinath_item_deleted'] = PropTypes.exact({
|
|
|
8135
8211
|
id: PropTypes.string.isRequired,
|
|
8136
8212
|
});
|
|
8137
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
|
+
|
|
8138
8221
|
T['io.flow.internal.v0.models.colm_item_deleted'] = PropTypes.exact({
|
|
8139
8222
|
discriminator: PropTypes.oneOf(['colm_item_deleted']).isRequired,
|
|
8140
8223
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9212,6 +9295,18 @@ T['io.flow.internal.v0.models.tracking_debug_label_location'] = PropTypes.exact(
|
|
|
9212
9295
|
country: PropTypes.string.isRequired,
|
|
9213
9296
|
});
|
|
9214
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
|
+
|
|
9215
9310
|
T['io.flow.internal.v0.models.tracking_assurance_analysis'] = PropTypes.exact({
|
|
9216
9311
|
id: PropTypes.string.isRequired,
|
|
9217
9312
|
job_id: PropTypes.string.isRequired,
|
|
@@ -10605,6 +10700,8 @@ T['io.flow.internal.v0.models.reporting_fulfillment_is'] = PropTypes.exact({
|
|
|
10605
10700
|
tax_inclusive: PropTypes.bool,
|
|
10606
10701
|
duty_inclusive: PropTypes.bool,
|
|
10607
10702
|
manual_payment: PropTypes.bool,
|
|
10703
|
+
partial_fulfillment: PropTypes.bool,
|
|
10704
|
+
partial_refund: PropTypes.bool,
|
|
10608
10705
|
});
|
|
10609
10706
|
|
|
10610
10707
|
T['io.flow.internal.v0.models.reporting_refund_reference'] = PropTypes.exact({
|
|
@@ -12089,6 +12186,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_shipping_line'] = PropTypes.e
|
|
|
12089
12186
|
});
|
|
12090
12187
|
|
|
12091
12188
|
T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact({
|
|
12189
|
+
current_quantity: PropTypes.number,
|
|
12092
12190
|
fulfillable_quantity: PropTypes.number,
|
|
12093
12191
|
fulfillment_status: T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_status_type'],
|
|
12094
12192
|
grams: PropTypes.number,
|
|
@@ -13026,6 +13124,8 @@ T['io.flow.internal.v0.models.order_validation'] = PropTypes.exact({
|
|
|
13026
13124
|
resolved_at: PropTypes.string,
|
|
13027
13125
|
last_failure: T['io.flow.internal.v0.models.last_failure_summary'],
|
|
13028
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,
|
|
13029
13129
|
});
|
|
13030
13130
|
|
|
13031
13131
|
T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
@@ -13437,7 +13537,10 @@ T['io.flow.payment.gateway.v0.unions.payment_method_data'] = PropTypes.oneOfType
|
|
|
13437
13537
|
T['io.flow.payment.gateway.v0.models.payment_method_data_init_twint'],
|
|
13438
13538
|
T['io.flow.payment.gateway.v0.models.payment_method_data_init_przelewy24'],
|
|
13439
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'],
|
|
13440
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'],
|
|
13441
13544
|
T['io.flow.payment.gateway.v0.models.payment_method_data_validate_applepay'],
|
|
13442
13545
|
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_card'],
|
|
13443
13546
|
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_googlepay'],
|
|
@@ -13815,6 +13918,11 @@ T['io.flow.payment.gateway.v0.models.payment_payment_method'] = PropTypes.exact(
|
|
|
13815
13918
|
possible_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
13816
13919
|
});
|
|
13817
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
|
+
|
|
13818
13926
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_twint'] = PropTypes.exact({
|
|
13819
13927
|
type: PropTypes.oneOf(['twint']).isRequired,
|
|
13820
13928
|
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
@@ -13845,12 +13953,22 @@ T['io.flow.payment.gateway.v0.models.payment_method_summary_klarna'] = PropTypes
|
|
|
13845
13953
|
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
13846
13954
|
});
|
|
13847
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
|
+
|
|
13848
13961
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_ideal'] = PropTypes.exact({
|
|
13849
13962
|
type: PropTypes.oneOf(['ideal']).isRequired,
|
|
13850
13963
|
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
13851
13964
|
issuer: PropTypes.string,
|
|
13852
13965
|
});
|
|
13853
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
|
+
|
|
13854
13972
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_googlepay'] = PropTypes.exact({
|
|
13855
13973
|
type: PropTypes.oneOf(['googlepay']).isRequired,
|
|
13856
13974
|
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
@@ -13890,10 +14008,13 @@ T['io.flow.payment.gateway.v0.unions.payment_method_summary'] = PropTypes.oneOfT
|
|
|
13890
14008
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_paypal'],
|
|
13891
14009
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_ideal'],
|
|
13892
14010
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_twint'],
|
|
14011
|
+
T['io.flow.payment.gateway.v0.models.payment_method_summary_vipps'],
|
|
13893
14012
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_przelewy24'],
|
|
13894
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'],
|
|
13895
14015
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_sofort'],
|
|
13896
14016
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_bancontact'],
|
|
14017
|
+
T['io.flow.payment.gateway.v0.models.payment_method_summary_grabpay'],
|
|
13897
14018
|
]);
|
|
13898
14019
|
|
|
13899
14020
|
T['io.flow.payment.gateway.v0.models.payment_authorization'] = PropTypes.exact({
|
|
@@ -14000,6 +14121,7 @@ T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exac
|
|
|
14000
14121
|
freight: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14001
14122
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14002
14123
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14124
|
+
tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14003
14125
|
});
|
|
14004
14126
|
|
|
14005
14127
|
T['io.flow.internal.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
@@ -14125,6 +14247,7 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
|
14125
14247
|
duty: PropTypes.number.isRequired,
|
|
14126
14248
|
freight: PropTypes.number.isRequired,
|
|
14127
14249
|
total: PropTypes.number.isRequired,
|
|
14250
|
+
tax_refund: PropTypes.number,
|
|
14128
14251
|
});
|
|
14129
14252
|
|
|
14130
14253
|
T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
|
|
@@ -14871,6 +14994,7 @@ T['io.flow.internal.v0.models.encryption'] = PropTypes.exact({
|
|
|
14871
14994
|
passphrase_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14872
14995
|
});
|
|
14873
14996
|
|
|
14997
|
+
T['io.flow.internal.v0.enums.eldar_item_type'] = PropTypes.oneOf(['digital', 'physical']);
|
|
14874
14998
|
T['io.flow.internal.v0.enums.duty_rate_unit_of_measure'] = PropTypes.oneOf(['kg', 'sq m', 'item', 'pair']);
|
|
14875
14999
|
T['io.flow.internal.v0.enums.duty_simple_expression_type'] = PropTypes.oneOf(['free', 'percent', 'per_uom', 'flat']);
|
|
14876
15000
|
|
|
@@ -15067,6 +15191,7 @@ T['io.flow.internal.v0.models.dispute_details_paypal'] = PropTypes.exact({
|
|
|
15067
15191
|
original_transaction_id: PropTypes.string.isRequired,
|
|
15068
15192
|
transaction_invoice_id: PropTypes.string.isRequired,
|
|
15069
15193
|
case_id: PropTypes.string.isRequired,
|
|
15194
|
+
dispute_channel: PropTypes.string,
|
|
15070
15195
|
});
|
|
15071
15196
|
|
|
15072
15197
|
T['io.flow.internal.v0.models.dispute_details_adyen'] = PropTypes.exact({
|
|
@@ -15092,7 +15217,7 @@ T['io.flow.internal.v0.models.dispute_status_form'] = PropTypes.exact({
|
|
|
15092
15217
|
T['io.flow.internal.v0.enums.dispute_reporting_category'] = PropTypes.oneOf(['charge_issues', 'delivery', 'fraud', 'general', 'product', 'returns']);
|
|
15093
15218
|
T['io.flow.internal.v0.enums.dispute_category'] = PropTypes.oneOf(['friendly_fraud', 'true_fraud', 'processing_error']);
|
|
15094
15219
|
T['io.flow.internal.v0.enums.dispute_type'] = PropTypes.oneOf(['chargeback']);
|
|
15095
|
-
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']);
|
|
15096
15221
|
|
|
15097
15222
|
T['io.flow.internal.v0.models.dispute_authorization_reference'] = PropTypes.exact({
|
|
15098
15223
|
id: PropTypes.string.isRequired,
|
|
@@ -15547,11 +15672,12 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
15547
15672
|
'accounts_with_final_statements_pending_transaction_total',
|
|
15548
15673
|
'edited_order_tax_amount_exceeding_transaction',
|
|
15549
15674
|
'edited_order_duty_amount_exceeding_transaction',
|
|
15675
|
+
'negative_balance_scheduled_count',
|
|
15550
15676
|
'negative_balance_scheduled_total',
|
|
15551
|
-
'
|
|
15552
|
-
'
|
|
15553
|
-
'
|
|
15554
|
-
'
|
|
15677
|
+
'negative_balance_sent_count',
|
|
15678
|
+
'negative_balance_sent_total',
|
|
15679
|
+
'negative_balance_failed_count',
|
|
15680
|
+
'negative_balance_failed_total',
|
|
15555
15681
|
'negative_debit_success_rate',
|
|
15556
15682
|
]);
|
|
15557
15683
|
|
|
@@ -18204,85 +18330,6 @@ T['io.flow.internal.v0.models.catalog_settings_upserted'] = PropTypes.exact({
|
|
|
18204
18330
|
catalog_settings: T['io.flow.internal.v0.models.catalog_settings'].isRequired,
|
|
18205
18331
|
});
|
|
18206
18332
|
|
|
18207
|
-
T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropTypes.oneOf([
|
|
18208
|
-
'cx_team',
|
|
18209
|
-
'core_team',
|
|
18210
|
-
'core_team_investigate',
|
|
18211
|
-
'mex_team',
|
|
18212
|
-
'payments_team',
|
|
18213
|
-
'tc_team',
|
|
18214
|
-
'logistics_team',
|
|
18215
|
-
]);
|
|
18216
|
-
|
|
18217
|
-
T['io.flow.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
18218
|
-
message: PropTypes.string.isRequired,
|
|
18219
|
-
reason: PropTypes.string.isRequired,
|
|
18220
|
-
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
18221
|
-
});
|
|
18222
|
-
|
|
18223
|
-
T['io.flow.internal.v0.models.order_validation_error'] = PropTypes.exact({
|
|
18224
|
-
message: PropTypes.string.isRequired,
|
|
18225
|
-
reason: T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'].isRequired,
|
|
18226
|
-
action: T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'],
|
|
18227
|
-
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
18228
|
-
});
|
|
18229
|
-
|
|
18230
|
-
T['io.flow.internal.v0.models.generic_validation_error'] = PropTypes.exact({
|
|
18231
|
-
message: PropTypes.string.isRequired,
|
|
18232
|
-
reason: PropTypes.string.isRequired,
|
|
18233
|
-
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
18234
|
-
});
|
|
18235
|
-
|
|
18236
|
-
T['io.flow.internal.v0.models.flow_shop_validation_error'] = PropTypes.exact({
|
|
18237
|
-
message: PropTypes.string.isRequired,
|
|
18238
|
-
reason: PropTypes.string.isRequired,
|
|
18239
|
-
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
18240
|
-
});
|
|
18241
|
-
|
|
18242
|
-
T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
18243
|
-
id: PropTypes.string.isRequired,
|
|
18244
|
-
organization_id: PropTypes.string.isRequired,
|
|
18245
|
-
order_number: PropTypes.string.isRequired,
|
|
18246
|
-
channel_id: PropTypes.string.isRequired,
|
|
18247
|
-
external_order_reference: PropTypes.string.isRequired,
|
|
18248
|
-
payment_request_id: PropTypes.string,
|
|
18249
|
-
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
18250
|
-
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
18251
|
-
reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
18252
|
-
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
18253
|
-
order_created_at: PropTypes.string,
|
|
18254
|
-
order_updated_at: PropTypes.string,
|
|
18255
|
-
});
|
|
18256
|
-
|
|
18257
|
-
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
18258
|
-
discriminator: PropTypes.oneOf(['channel_order_acceptance_upserted']).isRequired,
|
|
18259
|
-
event_id: PropTypes.string.isRequired,
|
|
18260
|
-
timestamp: PropTypes.string.isRequired,
|
|
18261
|
-
organization: PropTypes.string.isRequired,
|
|
18262
|
-
channel_id: PropTypes.string.isRequired,
|
|
18263
|
-
channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
18264
|
-
});
|
|
18265
|
-
|
|
18266
|
-
T['io.flow.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
18267
|
-
order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
18268
|
-
external_order: PropTypes.object.isRequired,
|
|
18269
|
-
});
|
|
18270
|
-
|
|
18271
|
-
T['io.flow.internal.v0.models.channel_order_acceptance_deleted'] = PropTypes.exact({
|
|
18272
|
-
discriminator: PropTypes.oneOf(['channel_order_acceptance_deleted']).isRequired,
|
|
18273
|
-
event_id: PropTypes.string.isRequired,
|
|
18274
|
-
timestamp: PropTypes.string.isRequired,
|
|
18275
|
-
organization: PropTypes.string.isRequired,
|
|
18276
|
-
channel_id: PropTypes.string.isRequired,
|
|
18277
|
-
channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
18278
|
-
});
|
|
18279
|
-
|
|
18280
|
-
T['io.flow.internal.v0.models.catalog_publication_sync_validation_error'] = PropTypes.exact({
|
|
18281
|
-
message: PropTypes.string.isRequired,
|
|
18282
|
-
reason: PropTypes.string.isRequired,
|
|
18283
|
-
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
18284
|
-
});
|
|
18285
|
-
|
|
18286
18333
|
T['io.flow.catalog.v0.enums.subcatalog_item_status'] = PropTypes.oneOf(['excluded', 'included', 'restricted']);
|
|
18287
18334
|
|
|
18288
18335
|
T['io.flow.shopify.v0.models.shopify_variant_flow_metafield'] = PropTypes.exact({
|
|
@@ -18840,6 +18887,91 @@ T['io.flow.internal.v0.models.calculation_stamping_shipping_line'] = PropTypes.e
|
|
|
18840
18887
|
import_fee: PropTypes.number,
|
|
18841
18888
|
});
|
|
18842
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
|
+
|
|
18843
18975
|
T['io.flow.internal.v0.models.product_labels'] = PropTypes.exact({
|
|
18844
18976
|
item_type: PropTypes.string.isRequired,
|
|
18845
18977
|
gender: T['io.flow.internal.v0.models.attribute_label'],
|
|
@@ -19480,6 +19612,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19480
19612
|
'virtual_card_capture',
|
|
19481
19613
|
'virtual_card_refund',
|
|
19482
19614
|
'failed_payout',
|
|
19615
|
+
'tax_refund',
|
|
19483
19616
|
]);
|
|
19484
19617
|
|
|
19485
19618
|
T['io.flow.billing.v0.models.parent_transaction_summary'] = PropTypes.exact({
|
|
@@ -22642,6 +22775,8 @@ T['io.flow.payment.v0.models.refund'] = PropTypes.exact({
|
|
|
22642
22775
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22643
22776
|
status: T['io.flow.payment.v0.enums.refund_status'],
|
|
22644
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,
|
|
22645
22780
|
});
|
|
22646
22781
|
|
|
22647
22782
|
T['io.flow.payment.v0.models.refund_version'] = PropTypes.exact({
|
|
@@ -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({
|
|
@@ -24621,6 +24759,30 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
|
|
|
24621
24759
|
gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
|
|
24622
24760
|
});
|
|
24623
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
|
+
|
|
24624
24786
|
T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
|
|
24625
24787
|
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
24626
24788
|
currency: PropTypes.string.isRequired,
|
|
@@ -24814,6 +24976,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
24814
24976
|
trueup: T['io.flow.common.v0.models.price'].isRequired,
|
|
24815
24977
|
carrier_charge: T['io.flow.common.v0.models.price'].isRequired,
|
|
24816
24978
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
24979
|
+
tax_refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
24817
24980
|
});
|
|
24818
24981
|
|
|
24819
24982
|
T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
|
|
@@ -26206,6 +26369,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
26206
26369
|
'duty',
|
|
26207
26370
|
'trueup',
|
|
26208
26371
|
'carrier_charge',
|
|
26372
|
+
'tax_refund',
|
|
26209
26373
|
]);
|
|
26210
26374
|
|
|
26211
26375
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -27200,6 +27364,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27200
27364
|
T['io.flow.internal.v0.models.svitlana_item_deleted'],
|
|
27201
27365
|
T['io.flow.internal.v0.models.colm_item_upserted'],
|
|
27202
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'],
|
|
27203
27369
|
T['io.flow.internal.v0.models.harinath_item_upserted'],
|
|
27204
27370
|
T['io.flow.internal.v0.models.harinath_item_deleted'],
|
|
27205
27371
|
T['io.flow.internal.v0.models.konstantin_item_upserted'],
|
|
@@ -27226,6 +27392,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27226
27392
|
T['io.flow.internal.v0.models.tracking_deleted'],
|
|
27227
27393
|
T['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'],
|
|
27228
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'],
|
|
27229
27397
|
T['io.flow.internal.v0.models.tracking_request_upserted'],
|
|
27230
27398
|
T['io.flow.internal.v0.models.tracking_response_upserted'],
|
|
27231
27399
|
T['io.flow.internal.v0.models.user_upserted_v2'],
|
|
@@ -27734,6 +27902,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27734
27902
|
'svitlana_item_deleted',
|
|
27735
27903
|
'colm_item_upserted',
|
|
27736
27904
|
'colm_item_deleted',
|
|
27905
|
+
'eldar_item_upserted',
|
|
27906
|
+
'eldar_item_deleted',
|
|
27737
27907
|
'harinath_item_upserted',
|
|
27738
27908
|
'harinath_item_deleted',
|
|
27739
27909
|
'konstantin_item_upserted',
|
|
@@ -27760,6 +27930,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27760
27930
|
'tracking_deleted',
|
|
27761
27931
|
'tracking_assurance_analysis_upserted',
|
|
27762
27932
|
'tracking_assurance_analysis_deleted',
|
|
27933
|
+
'tracking_assurance_job_upserted',
|
|
27934
|
+
'tracking_assurance_job_deleted',
|
|
27763
27935
|
'tracking_request_upserted',
|
|
27764
27936
|
'tracking_response_upserted',
|
|
27765
27937
|
'user_upserted_v2',
|
|
@@ -27878,6 +28050,7 @@ T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'] = PropTypes.on
|
|
|
27878
28050
|
'webhook_registrations',
|
|
27879
28051
|
'channel_organization_identifier',
|
|
27880
28052
|
'bulk_product_ingestion',
|
|
28053
|
+
'bulk_duty_update',
|
|
27881
28054
|
]);
|
|
27882
28055
|
|
|
27883
28056
|
T['io.flow.internal.v0.enums.shopify_markets_trade_sector'] = PropTypes.oneOf([
|
|
@@ -27913,7 +28086,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
27913
28086
|
'center_defaults',
|
|
27914
28087
|
]);
|
|
27915
28088
|
|
|
27916
|
-
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']);
|
|
27917
28090
|
T['io.flow.internal.v0.enums.tracking_integration_type'] = PropTypes.oneOf(['api', 'bulk', 'aftership']);
|
|
27918
28091
|
T['io.flow.internal.v0.enums.trueup_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'trueup']);
|
|
27919
28092
|
|
|
@@ -30274,6 +30447,7 @@ export const browserBundlePaymentMethod = T['io.flow.internal.v0.models.browser_
|
|
|
30274
30447
|
export const browserBundlePaymentMethodForm = T['io.flow.internal.v0.models.browser_bundle_payment_method_form'];
|
|
30275
30448
|
export const browserBundlePaymentMethods = T['io.flow.internal.v0.models.browser_bundle_payment_methods'];
|
|
30276
30449
|
export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
|
|
30450
|
+
export const bulkDutyUpdateValidationError = T['io.flow.internal.v0.models.bulk_duty_update_validation_error'];
|
|
30277
30451
|
export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
|
|
30278
30452
|
export const calculationStampingLineItem = T['io.flow.internal.v0.models.calculation_stamping_line_item'];
|
|
30279
30453
|
export const calculationStampingShippingLine = T['io.flow.internal.v0.models.calculation_stamping_shipping_line'];
|
|
@@ -30644,6 +30818,11 @@ export const dutyTransaction = T['io.flow.internal.v0.models.duty_transaction'];
|
|
|
30644
30818
|
export const dutyTransactionDeleted = T['io.flow.internal.v0.models.duty_transaction_deleted'];
|
|
30645
30819
|
export const dutyTransactionType = T['io.flow.internal.v0.enums.duty_transaction_type'];
|
|
30646
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'];
|
|
30647
30826
|
export const emailForm = T['io.flow.internal.v0.models.email_form'];
|
|
30648
30827
|
export const emailModificationForm = T['io.flow.internal.v0.models.email_modification_form'];
|
|
30649
30828
|
export const emptyAttribute = T['io.flow.internal.v0.enums.empty_attribute'];
|
|
@@ -31917,6 +32096,9 @@ export const tracker = T['io.flow.internal.v0.unions.tracker'];
|
|
|
31917
32096
|
export const trackingAssuranceAnalysis = T['io.flow.internal.v0.models.tracking_assurance_analysis'];
|
|
31918
32097
|
export const trackingAssuranceAnalysisDeleted = T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'];
|
|
31919
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'];
|
|
31920
32102
|
export const trackingDebugForceTransitForm = T['io.flow.internal.v0.models.tracking_debug_force_transit_form'];
|
|
31921
32103
|
export const trackingDebugLabel = T['io.flow.internal.v0.models.tracking_debug_label'];
|
|
31922
32104
|
export const trackingDebugLabelEvent = T['io.flow.internal.v0.models.tracking_debug_label_event'];
|