@flowio/api-internal-prop-types 9.24.99 → 9.24.101
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 +331 -31
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +331 -31
- package/src/api-internal.js +573 -193
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',
|
|
@@ -3080,6 +3094,26 @@ T['io.flow.adyen.v0.enums.event_code'] = PropTypes.oneOf([
|
|
|
3080
3094
|
'ISSUER_RESPONSE_TIMEFRAME_EXPIRED',
|
|
3081
3095
|
]);
|
|
3082
3096
|
|
|
3097
|
+
T['io.flow.adyen.v0.enums.dispute_status'] = PropTypes.oneOf([
|
|
3098
|
+
'Accepted',
|
|
3099
|
+
'Expired',
|
|
3100
|
+
'Lost',
|
|
3101
|
+
'Pending',
|
|
3102
|
+
'Responded',
|
|
3103
|
+
'Undefended',
|
|
3104
|
+
'Unresponded',
|
|
3105
|
+
'Won',
|
|
3106
|
+
]);
|
|
3107
|
+
|
|
3108
|
+
T['io.flow.adyen.v0.models.chargeback_notification_additional_data'] = PropTypes.exact({
|
|
3109
|
+
chargebackReasonCode: PropTypes.string.isRequired,
|
|
3110
|
+
modificationMerchantReferences: PropTypes.string.isRequired,
|
|
3111
|
+
chargebackSchemeCode: PropTypes.string.isRequired,
|
|
3112
|
+
defensePeriodEndsAt: PropTypes.string,
|
|
3113
|
+
disputeStatus: T['io.flow.adyen.v0.enums.dispute_status'],
|
|
3114
|
+
defendable: PropTypes.string,
|
|
3115
|
+
});
|
|
3116
|
+
|
|
3083
3117
|
T['io.flow.adyen.v0.enums.result_code'] = PropTypes.oneOf([
|
|
3084
3118
|
'Authorised',
|
|
3085
3119
|
'Cancelled',
|
|
@@ -3482,6 +3516,12 @@ T['io.flow.shopify.markets.internal.v0.models.catalog_publication_sync_validatio
|
|
|
3482
3516
|
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
3483
3517
|
});
|
|
3484
3518
|
|
|
3519
|
+
T['io.flow.shopify.markets.internal.v0.models.bulk_duty_update_validation_error'] = PropTypes.exact({
|
|
3520
|
+
message: PropTypes.string.isRequired,
|
|
3521
|
+
reason: PropTypes.string.isRequired,
|
|
3522
|
+
next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
3523
|
+
});
|
|
3524
|
+
|
|
3485
3525
|
T['io.flow.brickftp.v0.models.file_summary'] = PropTypes.exact({
|
|
3486
3526
|
type: PropTypes.oneOf(['file']).isRequired,
|
|
3487
3527
|
path: PropTypes.string.isRequired,
|
|
@@ -3743,6 +3783,12 @@ T['io.flow.external.paypal.v1.models.token_form'] = PropTypes.exact({
|
|
|
3743
3783
|
});
|
|
3744
3784
|
|
|
3745
3785
|
T['io.flow.external.paypal.v1.enums.sale_state'] = PropTypes.oneOf(['pending', 'completed', 'denied', 'partially_refunded', 'refunded']);
|
|
3786
|
+
|
|
3787
|
+
T['io.flow.external.paypal.v1.models.money'] = PropTypes.exact({
|
|
3788
|
+
currency_code: PropTypes.string,
|
|
3789
|
+
value: PropTypes.string,
|
|
3790
|
+
});
|
|
3791
|
+
|
|
3746
3792
|
T['io.flow.external.paypal.v1.enums.refund_state'] = PropTypes.oneOf(['pending', 'completed', 'cancelled', 'failed']);
|
|
3747
3793
|
|
|
3748
3794
|
T['io.flow.external.paypal.v1.models.simple_amount'] = PropTypes.exact({
|
|
@@ -3750,11 +3796,53 @@ T['io.flow.external.paypal.v1.models.simple_amount'] = PropTypes.exact({
|
|
|
3750
3796
|
currency: PropTypes.string.isRequired,
|
|
3751
3797
|
});
|
|
3752
3798
|
|
|
3799
|
+
T['io.flow.external.paypal.v1.models.sale'] = PropTypes.exact({
|
|
3800
|
+
id: PropTypes.string.isRequired,
|
|
3801
|
+
state: T['io.flow.external.paypal.v1.enums.sale_state'].isRequired,
|
|
3802
|
+
parent_payment: PropTypes.string.isRequired,
|
|
3803
|
+
invoice_number: PropTypes.string,
|
|
3804
|
+
amount: T['io.flow.external.paypal.v1.models.simple_amount'],
|
|
3805
|
+
payment_mode: PropTypes.string,
|
|
3806
|
+
reason_code: PropTypes.string,
|
|
3807
|
+
protection_eligibility: PropTypes.string,
|
|
3808
|
+
protection_eligibility_type: PropTypes.string,
|
|
3809
|
+
receipt_id: PropTypes.string,
|
|
3810
|
+
soft_descriptor: PropTypes.string,
|
|
3811
|
+
exchange_rate: PropTypes.string,
|
|
3812
|
+
payment_hold_status: PropTypes.string,
|
|
3813
|
+
payment_hold_reasons: PropTypes.arrayOf(PropTypes.string),
|
|
3814
|
+
transaction_fee: T['io.flow.external.paypal.v1.models.money'],
|
|
3815
|
+
receivable_amount: T['io.flow.external.paypal.v1.models.money'],
|
|
3816
|
+
custom: PropTypes.string,
|
|
3817
|
+
create_time: PropTypes.string,
|
|
3818
|
+
update_time: PropTypes.string,
|
|
3819
|
+
});
|
|
3820
|
+
|
|
3753
3821
|
T['io.flow.external.paypal.v1.models.refund_request'] = PropTypes.exact({
|
|
3754
3822
|
amount: T['io.flow.external.paypal.v1.models.simple_amount'].isRequired,
|
|
3755
3823
|
invoice_number: PropTypes.string.isRequired,
|
|
3756
3824
|
});
|
|
3757
3825
|
|
|
3826
|
+
T['io.flow.external.paypal.v1.models.refund'] = PropTypes.exact({
|
|
3827
|
+
id: PropTypes.string.isRequired,
|
|
3828
|
+
amount: T['io.flow.external.paypal.v1.models.simple_amount'],
|
|
3829
|
+
state: T['io.flow.external.paypal.v1.enums.refund_state'].isRequired,
|
|
3830
|
+
sale_id: PropTypes.string.isRequired,
|
|
3831
|
+
invoice_number: PropTypes.string,
|
|
3832
|
+
capture_id: PropTypes.string,
|
|
3833
|
+
parent_payment: PropTypes.string,
|
|
3834
|
+
reason_code: PropTypes.string,
|
|
3835
|
+
refund_reason_code: PropTypes.string,
|
|
3836
|
+
refund_funding_type: PropTypes.string,
|
|
3837
|
+
refund_from_received_amount: T['io.flow.external.paypal.v1.models.money'],
|
|
3838
|
+
refund_from_transaction_fee: T['io.flow.external.paypal.v1.models.money'],
|
|
3839
|
+
total_refunded_amount: T['io.flow.external.paypal.v1.models.money'],
|
|
3840
|
+
refund_to_payer: T['io.flow.external.paypal.v1.models.money'],
|
|
3841
|
+
custom: PropTypes.string,
|
|
3842
|
+
create_time: PropTypes.string,
|
|
3843
|
+
update_time: PropTypes.string,
|
|
3844
|
+
});
|
|
3845
|
+
|
|
3758
3846
|
T['io.flow.external.paypal.v1.enums.return_mode'] = PropTypes.oneOf(['SHIPPED', 'IN_PERSON']);
|
|
3759
3847
|
|
|
3760
3848
|
T['io.flow.external.paypal.v1.enums.failure_reason'] = PropTypes.oneOf([
|
|
@@ -4245,76 +4333,34 @@ T['io.flow.external.paypal.v1.enums.other_means_payment_method'] = PropTypes.one
|
|
|
4245
4333
|
'BANK_TRANSFER',
|
|
4246
4334
|
]);
|
|
4247
4335
|
|
|
4248
|
-
T['io.flow.external.paypal.v1.models.
|
|
4336
|
+
T['io.flow.external.paypal.v1.models.dispute_money'] = PropTypes.exact({
|
|
4249
4337
|
currency_code: PropTypes.string.isRequired,
|
|
4250
4338
|
value: PropTypes.string.isRequired,
|
|
4251
4339
|
});
|
|
4252
4340
|
|
|
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
4341
|
T['io.flow.external.paypal.v1.models.item_info'] = PropTypes.exact({
|
|
4296
4342
|
item_id: PropTypes.string,
|
|
4297
4343
|
item_description: PropTypes.string,
|
|
4298
4344
|
item_quantity: PropTypes.string,
|
|
4299
4345
|
partner_transaction_id: PropTypes.string,
|
|
4300
4346
|
reason: T['io.flow.external.paypal.v1.enums.dispute_reason'],
|
|
4301
|
-
dispute_amount: T['io.flow.external.paypal.v1.models.
|
|
4347
|
+
dispute_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4302
4348
|
notes: PropTypes.string,
|
|
4303
4349
|
});
|
|
4304
4350
|
|
|
4305
4351
|
T['io.flow.external.paypal.v1.models.refund_details'] = PropTypes.exact({
|
|
4306
|
-
allowed_refund_amount: T['io.flow.external.paypal.v1.models.
|
|
4352
|
+
allowed_refund_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4307
4353
|
});
|
|
4308
4354
|
|
|
4309
4355
|
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.
|
|
4356
|
+
buyer_requested_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4357
|
+
seller_offered_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4312
4358
|
offer_type: T['io.flow.external.paypal.v1.enums.offer_type'],
|
|
4313
4359
|
});
|
|
4314
4360
|
|
|
4315
4361
|
T['io.flow.external.paypal.v1.models.money_movement'] = PropTypes.exact({
|
|
4316
4362
|
affected_party: T['io.flow.external.paypal.v1.enums.affected_party'],
|
|
4317
|
-
amount: T['io.flow.external.paypal.v1.models.
|
|
4363
|
+
amount: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4318
4364
|
initiated_time: PropTypes.string,
|
|
4319
4365
|
type: T['io.flow.external.paypal.v1.enums.money_movement_type'],
|
|
4320
4366
|
reason: T['io.flow.external.paypal.v1.enums.money_movement_reason'],
|
|
@@ -4322,7 +4368,7 @@ T['io.flow.external.paypal.v1.models.money_movement'] = PropTypes.exact({
|
|
|
4322
4368
|
|
|
4323
4369
|
T['io.flow.external.paypal.v1.models.dispute_outcome'] = PropTypes.exact({
|
|
4324
4370
|
outcome_code: T['io.flow.external.paypal.v1.enums.dispute_outcome_code'],
|
|
4325
|
-
amount_refunded: T['io.flow.external.paypal.v1.models.
|
|
4371
|
+
amount_refunded: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4326
4372
|
});
|
|
4327
4373
|
|
|
4328
4374
|
T['io.flow.external.paypal.v1.models.transaction_info'] = PropTypes.exact({
|
|
@@ -4331,7 +4377,7 @@ T['io.flow.external.paypal.v1.models.transaction_info'] = PropTypes.exact({
|
|
|
4331
4377
|
reference_id: PropTypes.string,
|
|
4332
4378
|
create_time: PropTypes.string,
|
|
4333
4379
|
transaction_status: T['io.flow.external.paypal.v1.enums.transaction_status'],
|
|
4334
|
-
gross_amount: T['io.flow.external.paypal.v1.models.
|
|
4380
|
+
gross_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4335
4381
|
invoice_number: PropTypes.string.isRequired,
|
|
4336
4382
|
custom: PropTypes.string,
|
|
4337
4383
|
buyer: T['io.flow.external.paypal.v1.models.buyer'],
|
|
@@ -4340,13 +4386,13 @@ T['io.flow.external.paypal.v1.models.transaction_info'] = PropTypes.exact({
|
|
|
4340
4386
|
});
|
|
4341
4387
|
|
|
4342
4388
|
T['io.flow.external.paypal.v1.models.canceled_recurring_billing'] = PropTypes.exact({
|
|
4343
|
-
expected_refund: T['io.flow.external.paypal.v1.models.
|
|
4389
|
+
expected_refund: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4344
4390
|
cancellation_details: T['io.flow.external.paypal.v1.models.cancellation_details'],
|
|
4345
4391
|
});
|
|
4346
4392
|
|
|
4347
4393
|
T['io.flow.external.paypal.v1.models.credit_not_processed'] = PropTypes.exact({
|
|
4348
4394
|
issue_type: T['io.flow.external.paypal.v1.enums.issue_type'],
|
|
4349
|
-
expected_refund: T['io.flow.external.paypal.v1.models.
|
|
4395
|
+
expected_refund: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4350
4396
|
cancellation_details: T['io.flow.external.paypal.v1.models.cancellation_details'],
|
|
4351
4397
|
product_details: T['io.flow.external.paypal.v1.models.product_details'],
|
|
4352
4398
|
service_details: T['io.flow.external.paypal.v1.models.service_details'],
|
|
@@ -4361,7 +4407,7 @@ T['io.flow.external.paypal.v1.models.payment_by_other_means'] = PropTypes.exact(
|
|
|
4361
4407
|
});
|
|
4362
4408
|
|
|
4363
4409
|
T['io.flow.external.paypal.v1.models.incorrect_transaction_amount'] = PropTypes.exact({
|
|
4364
|
-
correct_transaction_amount: T['io.flow.external.paypal.v1.models.
|
|
4410
|
+
correct_transaction_amount: T['io.flow.external.paypal.v1.models.dispute_money'],
|
|
4365
4411
|
correct_transaction_time: PropTypes.string,
|
|
4366
4412
|
});
|
|
4367
4413
|
|
|
@@ -4430,7 +4476,7 @@ T['io.flow.external.paypal.v1.models.dispute_summary'] = PropTypes.exact({
|
|
|
4430
4476
|
update_time: PropTypes.string.isRequired,
|
|
4431
4477
|
reason: T['io.flow.external.paypal.v1.enums.dispute_reason'].isRequired,
|
|
4432
4478
|
status: T['io.flow.external.paypal.v1.enums.dispute_status'].isRequired,
|
|
4433
|
-
dispute_amount: T['io.flow.external.paypal.v1.models.
|
|
4479
|
+
dispute_amount: T['io.flow.external.paypal.v1.models.dispute_money'].isRequired,
|
|
4434
4480
|
dispute_life_cycle_stage: T['io.flow.external.paypal.v1.enums.dispute_life_cycle_stage'].isRequired,
|
|
4435
4481
|
links: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.link']).isRequired,
|
|
4436
4482
|
});
|
|
@@ -4523,7 +4569,7 @@ T['io.flow.external.paypal.v1.models.dispute'] = PropTypes.exact({
|
|
|
4523
4569
|
disputed_transactions: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.transaction_info']).isRequired,
|
|
4524
4570
|
reason: T['io.flow.external.paypal.v1.enums.dispute_reason'].isRequired,
|
|
4525
4571
|
status: T['io.flow.external.paypal.v1.enums.dispute_status'].isRequired,
|
|
4526
|
-
dispute_amount: T['io.flow.external.paypal.v1.models.
|
|
4572
|
+
dispute_amount: T['io.flow.external.paypal.v1.models.dispute_money'].isRequired,
|
|
4527
4573
|
fee_policy: PropTypes.object,
|
|
4528
4574
|
external_reason_code: PropTypes.string,
|
|
4529
4575
|
dispute_outcome: T['io.flow.external.paypal.v1.models.dispute_outcome'],
|
|
@@ -4542,6 +4588,7 @@ T['io.flow.external.paypal.v1.models.dispute'] = PropTypes.exact({
|
|
|
4542
4588
|
supporting_info: T['io.flow.external.paypal.v1.models.supporting_info'],
|
|
4543
4589
|
allowed_response_options: T['io.flow.external.paypal.v1.models.allowed_response_options'],
|
|
4544
4590
|
links: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.link']),
|
|
4591
|
+
previous_status: T['io.flow.external.paypal.v1.enums.dispute_status'],
|
|
4545
4592
|
});
|
|
4546
4593
|
|
|
4547
4594
|
T['io.flow.external.paypal.v1.models.paypal_dispute_event'] = PropTypes.exact({
|
|
@@ -4665,7 +4712,17 @@ T['io.flow.stripe.v0.models.source_klarna_request'] = PropTypes.exact({
|
|
|
4665
4712
|
|
|
4666
4713
|
T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
|
|
4667
4714
|
T['io.flow.stripe.v0.enums.refund_reason'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
|
|
4668
|
-
|
|
4715
|
+
|
|
4716
|
+
T['io.flow.stripe.v0.enums.refund_failure_reason'] = PropTypes.oneOf([
|
|
4717
|
+
'charge_for_pending_refund_disputed',
|
|
4718
|
+
'declined',
|
|
4719
|
+
'expired_or_canceled_card',
|
|
4720
|
+
'insufficient_funds',
|
|
4721
|
+
'lost_or_stolen_card',
|
|
4722
|
+
'merchant_request',
|
|
4723
|
+
'unknown',
|
|
4724
|
+
]);
|
|
4725
|
+
|
|
4669
4726
|
T['io.flow.stripe.v0.enums.refund_status'] = PropTypes.oneOf(['succeeded', 'failed', 'pending', 'canceled']);
|
|
4670
4727
|
|
|
4671
4728
|
T['io.flow.stripe.v0.enums.stored_credential_transaction_type'] = PropTypes.oneOf([
|
|
@@ -6174,6 +6231,21 @@ T['io.flow.payment.v0.models.refund_order_summary'] = PropTypes.exact({
|
|
|
6174
6231
|
amounts: T['io.flow.payment.v0.models.refund_order_summary_amounts'].isRequired,
|
|
6175
6232
|
});
|
|
6176
6233
|
|
|
6234
|
+
T['io.flow.payment.v0.enums.refund_failure_category'] = PropTypes.oneOf([
|
|
6235
|
+
'amount_too_high',
|
|
6236
|
+
'amount_too_low',
|
|
6237
|
+
'not_enough_balance',
|
|
6238
|
+
'insufficient_funds',
|
|
6239
|
+
'refund_period_expired',
|
|
6240
|
+
'dispute',
|
|
6241
|
+
'not_captured',
|
|
6242
|
+
'unsupported_payment_method',
|
|
6243
|
+
'unsupported_partial_refund',
|
|
6244
|
+
'invalid_currency',
|
|
6245
|
+
'card_no_longer_valid',
|
|
6246
|
+
'general',
|
|
6247
|
+
]);
|
|
6248
|
+
|
|
6177
6249
|
T['io.flow.payment.v0.models.payment_processor_transaction_details_apm'] = PropTypes.exact({
|
|
6178
6250
|
discriminator: PropTypes.oneOf(['apm']).isRequired,
|
|
6179
6251
|
transaction_identifier: PropTypes.string,
|
|
@@ -6953,11 +7025,26 @@ T['io.flow.payment.gateway.v0.models.payment_method_data_validate_applepay'] = P
|
|
|
6953
7025
|
validation_url: PropTypes.string.isRequired,
|
|
6954
7026
|
});
|
|
6955
7027
|
|
|
7028
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_vipps'] = PropTypes.exact({
|
|
7029
|
+
type: PropTypes.oneOf(['init_vipps']).isRequired,
|
|
7030
|
+
reference: PropTypes.string,
|
|
7031
|
+
});
|
|
7032
|
+
|
|
7033
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_grabpay'] = PropTypes.exact({
|
|
7034
|
+
type: PropTypes.oneOf(['init_grabpay']).isRequired,
|
|
7035
|
+
reference: PropTypes.string,
|
|
7036
|
+
});
|
|
7037
|
+
|
|
6956
7038
|
T['io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact'] = PropTypes.exact({
|
|
6957
7039
|
type: PropTypes.oneOf(['init_bancontact']).isRequired,
|
|
6958
7040
|
reference: PropTypes.string,
|
|
6959
7041
|
});
|
|
6960
7042
|
|
|
7043
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_kcp_creditcard'] = PropTypes.exact({
|
|
7044
|
+
type: PropTypes.oneOf(['init_kcp_creditcard']).isRequired,
|
|
7045
|
+
reference: PropTypes.string,
|
|
7046
|
+
});
|
|
7047
|
+
|
|
6961
7048
|
T['io.flow.payment.gateway.v0.models.payment_method_data_init_mobilepay'] = PropTypes.exact({
|
|
6962
7049
|
type: PropTypes.oneOf(['init_mobilepay']).isRequired,
|
|
6963
7050
|
reference: PropTypes.string,
|
|
@@ -7048,6 +7135,9 @@ T['io.flow.payment.gateway.v0.enums.payment_type'] = PropTypes.oneOf([
|
|
|
7048
7135
|
'twint',
|
|
7049
7136
|
'przelewy24',
|
|
7050
7137
|
'mobilepay',
|
|
7138
|
+
'grabpay',
|
|
7139
|
+
'vipps',
|
|
7140
|
+
'kcp_creditcard',
|
|
7051
7141
|
]);
|
|
7052
7142
|
|
|
7053
7143
|
T['io.flow.payment.gateway.v0.models.payment_method_data_option_logo_svg'] = PropTypes.exact({
|
|
@@ -8064,6 +8154,21 @@ T['io.flow.internal.v0.unions.explicit_statement_form'] = PropTypes.oneOfType([
|
|
|
8064
8154
|
T['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'],
|
|
8065
8155
|
]);
|
|
8066
8156
|
|
|
8157
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions_deleted'] = PropTypes.exact({
|
|
8158
|
+
discriminator: PropTypes.oneOf(['tracking_label_dimensions_deleted']).isRequired,
|
|
8159
|
+
event_id: PropTypes.string.isRequired,
|
|
8160
|
+
timestamp: PropTypes.string.isRequired,
|
|
8161
|
+
organization: PropTypes.string.isRequired,
|
|
8162
|
+
id: PropTypes.string.isRequired,
|
|
8163
|
+
});
|
|
8164
|
+
|
|
8165
|
+
T['io.flow.internal.v0.models.tracking_assurance_job_deleted'] = PropTypes.exact({
|
|
8166
|
+
discriminator: PropTypes.oneOf(['tracking_assurance_job_deleted']).isRequired,
|
|
8167
|
+
event_id: PropTypes.string.isRequired,
|
|
8168
|
+
timestamp: PropTypes.string.isRequired,
|
|
8169
|
+
id: PropTypes.string.isRequired,
|
|
8170
|
+
});
|
|
8171
|
+
|
|
8067
8172
|
T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'] = PropTypes.exact({
|
|
8068
8173
|
discriminator: PropTypes.oneOf(['tracking_assurance_analysis_deleted']).isRequired,
|
|
8069
8174
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8135,6 +8240,13 @@ T['io.flow.internal.v0.models.harinath_item_deleted'] = PropTypes.exact({
|
|
|
8135
8240
|
id: PropTypes.string.isRequired,
|
|
8136
8241
|
});
|
|
8137
8242
|
|
|
8243
|
+
T['io.flow.internal.v0.models.eldar_item_deleted'] = PropTypes.exact({
|
|
8244
|
+
discriminator: PropTypes.oneOf(['eldar_item_deleted']).isRequired,
|
|
8245
|
+
event_id: PropTypes.string.isRequired,
|
|
8246
|
+
timestamp: PropTypes.string.isRequired,
|
|
8247
|
+
id: PropTypes.string.isRequired,
|
|
8248
|
+
});
|
|
8249
|
+
|
|
8138
8250
|
T['io.flow.internal.v0.models.colm_item_deleted'] = PropTypes.exact({
|
|
8139
8251
|
discriminator: PropTypes.oneOf(['colm_item_deleted']).isRequired,
|
|
8140
8252
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8531,6 +8643,14 @@ T['io.flow.internal.v0.models.quote_deleted'] = PropTypes.exact({
|
|
|
8531
8643
|
id: PropTypes.string.isRequired,
|
|
8532
8644
|
});
|
|
8533
8645
|
|
|
8646
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'] = PropTypes.exact({
|
|
8647
|
+
discriminator: PropTypes.oneOf(['fulfillment_fallbacks_deleted']).isRequired,
|
|
8648
|
+
event_id: PropTypes.string.isRequired,
|
|
8649
|
+
timestamp: PropTypes.string.isRequired,
|
|
8650
|
+
organization: PropTypes.string.isRequired,
|
|
8651
|
+
id: PropTypes.string.isRequired,
|
|
8652
|
+
});
|
|
8653
|
+
|
|
8534
8654
|
T['io.flow.internal.v0.models.center_defaults_deleted'] = PropTypes.exact({
|
|
8535
8655
|
discriminator: PropTypes.oneOf(['center_defaults_deleted']).isRequired,
|
|
8536
8656
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9053,6 +9173,14 @@ T['io.flow.internal.v0.models.index_assignment_deleted'] = PropTypes.exact({
|
|
|
9053
9173
|
id: PropTypes.string.isRequired,
|
|
9054
9174
|
});
|
|
9055
9175
|
|
|
9176
|
+
T['io.flow.internal.v0.models.adjusted_estimates_deleted'] = PropTypes.exact({
|
|
9177
|
+
discriminator: PropTypes.oneOf(['adjusted_estimates_deleted']).isRequired,
|
|
9178
|
+
event_id: PropTypes.string.isRequired,
|
|
9179
|
+
timestamp: PropTypes.string.isRequired,
|
|
9180
|
+
organization: PropTypes.string.isRequired,
|
|
9181
|
+
id: PropTypes.string.isRequired,
|
|
9182
|
+
});
|
|
9183
|
+
|
|
9056
9184
|
T['io.flow.internal.v0.models.console_mark_unresolvable_form'] = PropTypes.exact({
|
|
9057
9185
|
discriminator: PropTypes.oneOf(['console_mark_unresolvable_form']).isRequired,
|
|
9058
9186
|
order_number: PropTypes.string.isRequired,
|
|
@@ -9208,10 +9336,24 @@ T['io.flow.internal.v0.models.tracking_processing_error_upserted'] = PropTypes.e
|
|
|
9208
9336
|
tracking_processing_error: T['io.flow.internal.v0.models.tracking_processing_error'].isRequired,
|
|
9209
9337
|
});
|
|
9210
9338
|
|
|
9339
|
+
T['io.flow.internal.v0.enums.tracking_label_dimensions_source'] = PropTypes.oneOf(['aftership', 'carrier_api']);
|
|
9340
|
+
|
|
9211
9341
|
T['io.flow.internal.v0.models.tracking_debug_label_location'] = PropTypes.exact({
|
|
9212
9342
|
country: PropTypes.string.isRequired,
|
|
9213
9343
|
});
|
|
9214
9344
|
|
|
9345
|
+
T['io.flow.internal.v0.models.tracking_assurance_job'] = PropTypes.exact({
|
|
9346
|
+
id: PropTypes.string.isRequired,
|
|
9347
|
+
created_at: PropTypes.string.isRequired,
|
|
9348
|
+
});
|
|
9349
|
+
|
|
9350
|
+
T['io.flow.internal.v0.models.tracking_assurance_job_upserted'] = PropTypes.exact({
|
|
9351
|
+
discriminator: PropTypes.oneOf(['tracking_assurance_job_upserted']).isRequired,
|
|
9352
|
+
event_id: PropTypes.string.isRequired,
|
|
9353
|
+
timestamp: PropTypes.string.isRequired,
|
|
9354
|
+
job: T['io.flow.internal.v0.models.tracking_assurance_job'].isRequired,
|
|
9355
|
+
});
|
|
9356
|
+
|
|
9215
9357
|
T['io.flow.internal.v0.models.tracking_assurance_analysis'] = PropTypes.exact({
|
|
9216
9358
|
id: PropTypes.string.isRequired,
|
|
9217
9359
|
job_id: PropTypes.string.isRequired,
|
|
@@ -10402,19 +10544,6 @@ T['io.flow.payment.gateway.v0.models.payment_authorization_status'] = PropTypes.
|
|
|
10402
10544
|
reason: T['io.flow.payment.v0.enums.authorization_decline_code'],
|
|
10403
10545
|
});
|
|
10404
10546
|
|
|
10405
|
-
T['io.flow.payment.v0.models.payment_processor'] = PropTypes.exact({
|
|
10406
|
-
discriminator: PropTypes.oneOf(['payment_processor']).isRequired,
|
|
10407
|
-
processor: PropTypes.string.isRequired,
|
|
10408
|
-
operation_identifier: T['io.flow.payment.v0.models.payment_processor_identifier'],
|
|
10409
|
-
account: T['io.flow.payment.v0.models.payment_processor_account'],
|
|
10410
|
-
transaction_details: T['io.flow.payment.v0.unions.payment_processor_transaction_details'],
|
|
10411
|
-
});
|
|
10412
|
-
|
|
10413
|
-
T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfType([
|
|
10414
|
-
T['io.flow.payment.v0.models.payment_processor'],
|
|
10415
|
-
T['io.flow.payment.v0.models.payment_processor_reference'],
|
|
10416
|
-
]);
|
|
10417
|
-
|
|
10418
10547
|
T['io.flow.internal.v0.models.report_owner'] = PropTypes.exact({
|
|
10419
10548
|
name: PropTypes.string.isRequired,
|
|
10420
10549
|
});
|
|
@@ -10605,6 +10734,8 @@ T['io.flow.internal.v0.models.reporting_fulfillment_is'] = PropTypes.exact({
|
|
|
10605
10734
|
tax_inclusive: PropTypes.bool,
|
|
10606
10735
|
duty_inclusive: PropTypes.bool,
|
|
10607
10736
|
manual_payment: PropTypes.bool,
|
|
10737
|
+
partial_fulfillment: PropTypes.bool,
|
|
10738
|
+
partial_refund: PropTypes.bool,
|
|
10608
10739
|
});
|
|
10609
10740
|
|
|
10610
10741
|
T['io.flow.internal.v0.models.reporting_refund_reference'] = PropTypes.exact({
|
|
@@ -10853,12 +10984,6 @@ T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
|
10853
10984
|
shopify_grc_gid: PropTypes.string,
|
|
10854
10985
|
});
|
|
10855
10986
|
|
|
10856
|
-
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
10857
|
-
id: PropTypes.string,
|
|
10858
|
-
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
10859
|
-
weight_break: PropTypes.number,
|
|
10860
|
-
});
|
|
10861
|
-
|
|
10862
10987
|
T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
|
|
10863
10988
|
id: PropTypes.string.isRequired,
|
|
10864
10989
|
});
|
|
@@ -11813,6 +11938,20 @@ T['io.flow.internal.v0.models.report_payment'] = PropTypes.exact({
|
|
|
11813
11938
|
created_at: PropTypes.string.isRequired,
|
|
11814
11939
|
});
|
|
11815
11940
|
|
|
11941
|
+
T['io.flow.internal.v0.models.attempt_statistics'] = PropTypes.exact({
|
|
11942
|
+
merchant_count: PropTypes.number.isRequired,
|
|
11943
|
+
amount: PropTypes.number.isRequired,
|
|
11944
|
+
failed_merchant_count: PropTypes.number.isRequired,
|
|
11945
|
+
failed_amount: PropTypes.number.isRequired,
|
|
11946
|
+
success_ratio: PropTypes.number.isRequired,
|
|
11947
|
+
});
|
|
11948
|
+
|
|
11949
|
+
T['io.flow.internal.v0.models.negative_debit_metrics'] = PropTypes.exact({
|
|
11950
|
+
current_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
11951
|
+
second_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
11952
|
+
third_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
11953
|
+
});
|
|
11954
|
+
|
|
11816
11955
|
T['io.flow.internal.v0.enums.miljenko_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11817
11956
|
T['io.flow.internal.v0.enums.michaelyan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11818
11957
|
|
|
@@ -12089,6 +12228,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_shipping_line'] = PropTypes.e
|
|
|
12089
12228
|
});
|
|
12090
12229
|
|
|
12091
12230
|
T['io.flow.shopify.markets.v0.models.shopify_order_line_item'] = PropTypes.exact({
|
|
12231
|
+
current_quantity: PropTypes.number,
|
|
12092
12232
|
fulfillable_quantity: PropTypes.number,
|
|
12093
12233
|
fulfillment_status: T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_status_type'],
|
|
12094
12234
|
grams: PropTypes.number,
|
|
@@ -12127,6 +12267,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_refund_line_item'] = PropType
|
|
|
12127
12267
|
location_id: PropTypes.number,
|
|
12128
12268
|
subtotal: PropTypes.number,
|
|
12129
12269
|
total_tax: PropTypes.number,
|
|
12270
|
+
total_tax_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
|
|
12130
12271
|
});
|
|
12131
12272
|
|
|
12132
12273
|
T['io.flow.shopify.markets.v0.models.shopify_order_refund'] = PropTypes.exact({
|
|
@@ -12896,6 +13037,7 @@ T['io.flow.tracking.v0.models.label_tracking_summary'] = PropTypes.exact({
|
|
|
12896
13037
|
in_transit: T['io.flow.tracking.v0.models.label_tracking_summary_update'].isRequired,
|
|
12897
13038
|
delivered: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
12898
13039
|
rejected: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
13040
|
+
returned: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
12899
13041
|
});
|
|
12900
13042
|
|
|
12901
13043
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'] = PropTypes.exact({
|
|
@@ -12946,6 +13088,7 @@ T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
|
12946
13088
|
});
|
|
12947
13089
|
|
|
12948
13090
|
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13091
|
+
T['io.flow.internal.v0.enums.label_request_result_state'] = PropTypes.oneOf(['success', 'failure']);
|
|
12949
13092
|
T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
12950
13093
|
|
|
12951
13094
|
T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
@@ -13026,6 +13169,8 @@ T['io.flow.internal.v0.models.order_validation'] = PropTypes.exact({
|
|
|
13026
13169
|
resolved_at: PropTypes.string,
|
|
13027
13170
|
last_failure: T['io.flow.internal.v0.models.last_failure_summary'],
|
|
13028
13171
|
sla_breach_at: PropTypes.string,
|
|
13172
|
+
capabilities_at_creation: PropTypes.arrayOf(T['io.flow.internal.v0.enums.logistics_capability']),
|
|
13173
|
+
first_globale_address_repair_failure_at: PropTypes.string,
|
|
13029
13174
|
});
|
|
13030
13175
|
|
|
13031
13176
|
T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
@@ -13036,6 +13181,22 @@ T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
|
13036
13181
|
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
13037
13182
|
});
|
|
13038
13183
|
|
|
13184
|
+
T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
13185
|
+
id: PropTypes.string.isRequired,
|
|
13186
|
+
created_at: PropTypes.string.isRequired,
|
|
13187
|
+
state: T['io.flow.internal.v0.enums.label_request_result_state'].isRequired,
|
|
13188
|
+
organization_id: PropTypes.string.isRequired,
|
|
13189
|
+
order_number: PropTypes.string.isRequired,
|
|
13190
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
13191
|
+
carrier_id: PropTypes.string,
|
|
13192
|
+
carrier_tracking_number: PropTypes.string,
|
|
13193
|
+
url: PropTypes.string,
|
|
13194
|
+
error: PropTypes.string,
|
|
13195
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'],
|
|
13196
|
+
origin_country: PropTypes.string,
|
|
13197
|
+
destination_country: PropTypes.string,
|
|
13198
|
+
});
|
|
13199
|
+
|
|
13039
13200
|
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
13040
13201
|
id: PropTypes.string.isRequired,
|
|
13041
13202
|
order_number: PropTypes.string.isRequired,
|
|
@@ -13437,7 +13598,10 @@ T['io.flow.payment.gateway.v0.unions.payment_method_data'] = PropTypes.oneOfType
|
|
|
13437
13598
|
T['io.flow.payment.gateway.v0.models.payment_method_data_init_twint'],
|
|
13438
13599
|
T['io.flow.payment.gateway.v0.models.payment_method_data_init_przelewy24'],
|
|
13439
13600
|
T['io.flow.payment.gateway.v0.models.payment_method_data_init_mobilepay'],
|
|
13601
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_kcp_creditcard'],
|
|
13440
13602
|
T['io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact'],
|
|
13603
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_grabpay'],
|
|
13604
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_vipps'],
|
|
13441
13605
|
T['io.flow.payment.gateway.v0.models.payment_method_data_validate_applepay'],
|
|
13442
13606
|
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_card'],
|
|
13443
13607
|
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_googlepay'],
|
|
@@ -13815,6 +13979,11 @@ T['io.flow.payment.gateway.v0.models.payment_payment_method'] = PropTypes.exact(
|
|
|
13815
13979
|
possible_actions: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.enums.payment_action_type']).isRequired,
|
|
13816
13980
|
});
|
|
13817
13981
|
|
|
13982
|
+
T['io.flow.payment.gateway.v0.models.payment_method_summary_vipps'] = PropTypes.exact({
|
|
13983
|
+
type: PropTypes.oneOf(['vipps']).isRequired,
|
|
13984
|
+
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
13985
|
+
});
|
|
13986
|
+
|
|
13818
13987
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_twint'] = PropTypes.exact({
|
|
13819
13988
|
type: PropTypes.oneOf(['twint']).isRequired,
|
|
13820
13989
|
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
@@ -13845,12 +14014,22 @@ T['io.flow.payment.gateway.v0.models.payment_method_summary_klarna'] = PropTypes
|
|
|
13845
14014
|
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
13846
14015
|
});
|
|
13847
14016
|
|
|
14017
|
+
T['io.flow.payment.gateway.v0.models.payment_method_summary_kcp_creditcard'] = PropTypes.exact({
|
|
14018
|
+
type: PropTypes.oneOf(['kcp_creditcard']).isRequired,
|
|
14019
|
+
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
14020
|
+
});
|
|
14021
|
+
|
|
13848
14022
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_ideal'] = PropTypes.exact({
|
|
13849
14023
|
type: PropTypes.oneOf(['ideal']).isRequired,
|
|
13850
14024
|
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
13851
14025
|
issuer: PropTypes.string,
|
|
13852
14026
|
});
|
|
13853
14027
|
|
|
14028
|
+
T['io.flow.payment.gateway.v0.models.payment_method_summary_grabpay'] = PropTypes.exact({
|
|
14029
|
+
type: PropTypes.oneOf(['grabpay']).isRequired,
|
|
14030
|
+
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
14031
|
+
});
|
|
14032
|
+
|
|
13854
14033
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_googlepay'] = PropTypes.exact({
|
|
13855
14034
|
type: PropTypes.oneOf(['googlepay']).isRequired,
|
|
13856
14035
|
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
@@ -13890,10 +14069,13 @@ T['io.flow.payment.gateway.v0.unions.payment_method_summary'] = PropTypes.oneOfT
|
|
|
13890
14069
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_paypal'],
|
|
13891
14070
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_ideal'],
|
|
13892
14071
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_twint'],
|
|
14072
|
+
T['io.flow.payment.gateway.v0.models.payment_method_summary_vipps'],
|
|
13893
14073
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_przelewy24'],
|
|
13894
14074
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_mobilepay'],
|
|
14075
|
+
T['io.flow.payment.gateway.v0.models.payment_method_summary_kcp_creditcard'],
|
|
13895
14076
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_sofort'],
|
|
13896
14077
|
T['io.flow.payment.gateway.v0.models.payment_method_summary_bancontact'],
|
|
14078
|
+
T['io.flow.payment.gateway.v0.models.payment_method_summary_grabpay'],
|
|
13897
14079
|
]);
|
|
13898
14080
|
|
|
13899
14081
|
T['io.flow.payment.gateway.v0.models.payment_authorization'] = PropTypes.exact({
|
|
@@ -14000,6 +14182,7 @@ T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exac
|
|
|
14000
14182
|
freight: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
14001
14183
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14002
14184
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14185
|
+
tax_refund: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
14003
14186
|
});
|
|
14004
14187
|
|
|
14005
14188
|
T['io.flow.internal.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
@@ -14125,6 +14308,7 @@ T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
|
14125
14308
|
duty: PropTypes.number.isRequired,
|
|
14126
14309
|
freight: PropTypes.number.isRequired,
|
|
14127
14310
|
total: PropTypes.number.isRequired,
|
|
14311
|
+
tax_refund: PropTypes.number,
|
|
14128
14312
|
});
|
|
14129
14313
|
|
|
14130
14314
|
T['io.flow.internal.v0.models.merchant_fees'] = PropTypes.exact({
|
|
@@ -14871,6 +15055,7 @@ T['io.flow.internal.v0.models.encryption'] = PropTypes.exact({
|
|
|
14871
15055
|
passphrase_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14872
15056
|
});
|
|
14873
15057
|
|
|
15058
|
+
T['io.flow.internal.v0.enums.eldar_item_type'] = PropTypes.oneOf(['digital', 'physical']);
|
|
14874
15059
|
T['io.flow.internal.v0.enums.duty_rate_unit_of_measure'] = PropTypes.oneOf(['kg', 'sq m', 'item', 'pair']);
|
|
14875
15060
|
T['io.flow.internal.v0.enums.duty_simple_expression_type'] = PropTypes.oneOf(['free', 'percent', 'per_uom', 'flat']);
|
|
14876
15061
|
|
|
@@ -15055,6 +15240,19 @@ T['io.flow.internal.v0.models.dispute_import'] = PropTypes.exact({
|
|
|
15055
15240
|
created_at: PropTypes.string.isRequired,
|
|
15056
15241
|
});
|
|
15057
15242
|
|
|
15243
|
+
T['io.flow.payment.v0.models.payment_processor'] = PropTypes.exact({
|
|
15244
|
+
discriminator: PropTypes.oneOf(['payment_processor']).isRequired,
|
|
15245
|
+
processor: PropTypes.string.isRequired,
|
|
15246
|
+
operation_identifier: T['io.flow.payment.v0.models.payment_processor_identifier'],
|
|
15247
|
+
account: T['io.flow.payment.v0.models.payment_processor_account'],
|
|
15248
|
+
transaction_details: T['io.flow.payment.v0.unions.payment_processor_transaction_details'],
|
|
15249
|
+
});
|
|
15250
|
+
|
|
15251
|
+
T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfType([
|
|
15252
|
+
T['io.flow.payment.v0.models.payment_processor'],
|
|
15253
|
+
T['io.flow.payment.v0.models.payment_processor_reference'],
|
|
15254
|
+
]);
|
|
15255
|
+
|
|
15058
15256
|
T['io.flow.internal.v0.models.dispute_details_stripe'] = PropTypes.exact({
|
|
15059
15257
|
discriminator: PropTypes.oneOf(['stripe']).isRequired,
|
|
15060
15258
|
payment_intent_id: PropTypes.string,
|
|
@@ -15067,6 +15265,7 @@ T['io.flow.internal.v0.models.dispute_details_paypal'] = PropTypes.exact({
|
|
|
15067
15265
|
original_transaction_id: PropTypes.string.isRequired,
|
|
15068
15266
|
transaction_invoice_id: PropTypes.string.isRequired,
|
|
15069
15267
|
case_id: PropTypes.string.isRequired,
|
|
15268
|
+
dispute_channel: PropTypes.string,
|
|
15070
15269
|
});
|
|
15071
15270
|
|
|
15072
15271
|
T['io.flow.internal.v0.models.dispute_details_adyen'] = PropTypes.exact({
|
|
@@ -15081,6 +15280,7 @@ T['io.flow.internal.v0.unions.dispute_details'] = PropTypes.oneOfType([
|
|
|
15081
15280
|
T['io.flow.internal.v0.models.dispute_details_stripe'],
|
|
15082
15281
|
]);
|
|
15083
15282
|
|
|
15283
|
+
T['io.flow.internal.v0.enums.dispute_defense_outcome'] = PropTypes.oneOf(['defended', 'undefended', 'undefendable']);
|
|
15084
15284
|
T['io.flow.internal.v0.enums.dispute_billable'] = PropTypes.oneOf(['flow', 'organization']);
|
|
15085
15285
|
T['io.flow.internal.v0.enums.dispute_liability'] = PropTypes.oneOf(['flow', 'organization']);
|
|
15086
15286
|
T['io.flow.internal.v0.enums.dispute_status'] = PropTypes.oneOf(['pending', 'won', 'lost', 'expired']);
|
|
@@ -15091,8 +15291,16 @@ T['io.flow.internal.v0.models.dispute_status_form'] = PropTypes.exact({
|
|
|
15091
15291
|
|
|
15092
15292
|
T['io.flow.internal.v0.enums.dispute_reporting_category'] = PropTypes.oneOf(['charge_issues', 'delivery', 'fraud', 'general', 'product', 'returns']);
|
|
15093
15293
|
T['io.flow.internal.v0.enums.dispute_category'] = PropTypes.oneOf(['friendly_fraud', 'true_fraud', 'processing_error']);
|
|
15294
|
+
|
|
15295
|
+
T['io.flow.internal.v0.models.dispute_override_update_form'] = PropTypes.exact({
|
|
15296
|
+
billable: T['io.flow.internal.v0.enums.dispute_billable'],
|
|
15297
|
+
reporting_category: T['io.flow.internal.v0.enums.dispute_reporting_category'],
|
|
15298
|
+
category: T['io.flow.internal.v0.enums.dispute_category'],
|
|
15299
|
+
status: T['io.flow.internal.v0.enums.dispute_status'],
|
|
15300
|
+
});
|
|
15301
|
+
|
|
15094
15302
|
T['io.flow.internal.v0.enums.dispute_type'] = PropTypes.oneOf(['chargeback']);
|
|
15095
|
-
T['io.flow.internal.v0.enums.dispute_processor'] = PropTypes.oneOf(['adyen', 'paypal']);
|
|
15303
|
+
T['io.flow.internal.v0.enums.dispute_processor'] = PropTypes.oneOf(['adyen', 'paypal', 'stripe']);
|
|
15096
15304
|
|
|
15097
15305
|
T['io.flow.internal.v0.models.dispute_authorization_reference'] = PropTypes.exact({
|
|
15098
15306
|
id: PropTypes.string.isRequired,
|
|
@@ -15316,6 +15524,8 @@ T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'] = PropTypes
|
|
|
15316
15524
|
'waiting_for_next_payout_date',
|
|
15317
15525
|
'waiting_for_tracking_info',
|
|
15318
15526
|
'waiting_for_positive_account_balance',
|
|
15527
|
+
'unfulfilled_amount_greater_than_negative_balance',
|
|
15528
|
+
'account_payment_hold',
|
|
15319
15529
|
]);
|
|
15320
15530
|
|
|
15321
15531
|
T['io.flow.internal.v0.models.debug_order_transaction_form_order_identifier'] = PropTypes.exact({
|
|
@@ -15547,11 +15757,12 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
15547
15757
|
'accounts_with_final_statements_pending_transaction_total',
|
|
15548
15758
|
'edited_order_tax_amount_exceeding_transaction',
|
|
15549
15759
|
'edited_order_duty_amount_exceeding_transaction',
|
|
15760
|
+
'negative_balance_scheduled_count',
|
|
15550
15761
|
'negative_balance_scheduled_total',
|
|
15551
|
-
'
|
|
15552
|
-
'
|
|
15553
|
-
'
|
|
15554
|
-
'
|
|
15762
|
+
'negative_balance_sent_count',
|
|
15763
|
+
'negative_balance_sent_total',
|
|
15764
|
+
'negative_balance_failed_count',
|
|
15765
|
+
'negative_balance_failed_total',
|
|
15555
15766
|
'negative_debit_success_rate',
|
|
15556
15767
|
]);
|
|
15557
15768
|
|
|
@@ -16121,6 +16332,22 @@ T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
|
|
|
16121
16332
|
T['io.flow.internal.v0.enums.clothing_age_classification'] = PropTypes.oneOf(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']);
|
|
16122
16333
|
T['io.flow.internal.v0.enums.classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML']);
|
|
16123
16334
|
T['io.flow.internal.v0.enums.classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
16335
|
+
|
|
16336
|
+
T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
|
|
16337
|
+
value: PropTypes.string.isRequired,
|
|
16338
|
+
unverified: PropTypes.bool.isRequired,
|
|
16339
|
+
});
|
|
16340
|
+
|
|
16341
|
+
T['io.flow.internal.v0.models.classification_product_id'] = PropTypes.exact({
|
|
16342
|
+
organization_id: PropTypes.string.isRequired,
|
|
16343
|
+
product_id: PropTypes.string.isRequired,
|
|
16344
|
+
});
|
|
16345
|
+
|
|
16346
|
+
T['io.flow.internal.v0.models.product_classification_result'] = PropTypes.exact({
|
|
16347
|
+
classified_product: T['io.flow.internal.v0.models.classified_product'].isRequired,
|
|
16348
|
+
next_product: T['io.flow.internal.v0.models.classification_product_id'],
|
|
16349
|
+
});
|
|
16350
|
+
|
|
16124
16351
|
T['io.flow.internal.v0.enums.classification_platform'] = PropTypes.oneOf(['GlobalE', 'Flow', 'Borderfree']);
|
|
16125
16352
|
|
|
16126
16353
|
T['io.flow.internal.v0.models.classification_product_result'] = PropTypes.exact({
|
|
@@ -16158,19 +16385,17 @@ T['io.flow.internal.v0.models.classification_product_request_envelope'] = PropTy
|
|
|
16158
16385
|
message: T['io.flow.internal.v0.models.classification_product_request'].isRequired,
|
|
16159
16386
|
});
|
|
16160
16387
|
|
|
16161
|
-
T['io.flow.internal.v0.models.
|
|
16162
|
-
|
|
16163
|
-
|
|
16388
|
+
T['io.flow.internal.v0.models.classification_merchant'] = PropTypes.exact({
|
|
16389
|
+
MerchantId: PropTypes.string.isRequired,
|
|
16390
|
+
PlatformId: T['io.flow.internal.v0.enums.classification_platform'].isRequired,
|
|
16391
|
+
Name: PropTypes.string.isRequired,
|
|
16392
|
+
DateLastUpdated: PropTypes.string,
|
|
16393
|
+
Order: PropTypes.number.isRequired,
|
|
16164
16394
|
});
|
|
16165
16395
|
|
|
16166
|
-
T['io.flow.internal.v0.models.
|
|
16167
|
-
|
|
16168
|
-
|
|
16169
|
-
});
|
|
16170
|
-
|
|
16171
|
-
T['io.flow.internal.v0.models.product_classification_result'] = PropTypes.exact({
|
|
16172
|
-
classified_product: T['io.flow.internal.v0.models.classified_product'].isRequired,
|
|
16173
|
-
next_product: T['io.flow.internal.v0.models.classification_product_id'],
|
|
16396
|
+
T['io.flow.internal.v0.models.classification_merchant_envelope'] = PropTypes.exact({
|
|
16397
|
+
messageType: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16398
|
+
message: T['io.flow.internal.v0.models.classification_merchant'].isRequired,
|
|
16174
16399
|
});
|
|
16175
16400
|
|
|
16176
16401
|
T['io.flow.internal.v0.models.customs_description_suggestion'] = PropTypes.exact({
|
|
@@ -16743,6 +16968,12 @@ T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
|
|
|
16743
16968
|
'total_changed',
|
|
16744
16969
|
]);
|
|
16745
16970
|
|
|
16971
|
+
T['io.flow.experience.v0.models.destination_contact_detail'] = PropTypes.exact({
|
|
16972
|
+
title: PropTypes.string.isRequired,
|
|
16973
|
+
country: PropTypes.string.isRequired,
|
|
16974
|
+
import_identifier: PropTypes.string.isRequired,
|
|
16975
|
+
});
|
|
16976
|
+
|
|
16746
16977
|
T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
|
|
16747
16978
|
|
|
16748
16979
|
T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
|
|
@@ -17609,6 +17840,7 @@ T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
|
|
|
17609
17840
|
description: PropTypes.string,
|
|
17610
17841
|
order_number: PropTypes.string,
|
|
17611
17842
|
raw_carrier_event_code: PropTypes.string,
|
|
17843
|
+
aggregator_status_code: PropTypes.string,
|
|
17612
17844
|
created_at: PropTypes.string,
|
|
17613
17845
|
});
|
|
17614
17846
|
|
|
@@ -18151,6 +18383,24 @@ T['io.flow.catalog.v0.models.item_form_overlay_form'] = PropTypes.exact({
|
|
|
18151
18383
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
18152
18384
|
dimensions: T['io.flow.common.v0.models.dimensions'],
|
|
18153
18385
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
18386
|
+
deleted_at: PropTypes.string,
|
|
18387
|
+
});
|
|
18388
|
+
|
|
18389
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions'] = PropTypes.exact({
|
|
18390
|
+
id: PropTypes.string.isRequired,
|
|
18391
|
+
organization_id: PropTypes.string.isRequired,
|
|
18392
|
+
tracking_label_id: PropTypes.string.isRequired,
|
|
18393
|
+
source: T['io.flow.internal.v0.enums.tracking_label_dimensions_source'].isRequired,
|
|
18394
|
+
created_at: PropTypes.string.isRequired,
|
|
18395
|
+
dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
|
|
18396
|
+
});
|
|
18397
|
+
|
|
18398
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions_upserted'] = PropTypes.exact({
|
|
18399
|
+
discriminator: PropTypes.oneOf(['tracking_label_dimensions_upserted']).isRequired,
|
|
18400
|
+
event_id: PropTypes.string.isRequired,
|
|
18401
|
+
timestamp: PropTypes.string.isRequired,
|
|
18402
|
+
organization: PropTypes.string.isRequired,
|
|
18403
|
+
tracking_label_dimensions: T['io.flow.internal.v0.models.tracking_label_dimensions'].isRequired,
|
|
18154
18404
|
});
|
|
18155
18405
|
|
|
18156
18406
|
T['io.flow.catalog.v0.models.item_form'] = PropTypes.exact({
|
|
@@ -18164,6 +18414,7 @@ T['io.flow.catalog.v0.models.item_form'] = PropTypes.exact({
|
|
|
18164
18414
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
18165
18415
|
dimensions: T['io.flow.common.v0.models.dimensions'],
|
|
18166
18416
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
18417
|
+
deleted_at: PropTypes.string,
|
|
18167
18418
|
});
|
|
18168
18419
|
|
|
18169
18420
|
T['io.flow.internal.v0.models.internal_item_form'] = PropTypes.exact({
|
|
@@ -18204,85 +18455,6 @@ T['io.flow.internal.v0.models.catalog_settings_upserted'] = PropTypes.exact({
|
|
|
18204
18455
|
catalog_settings: T['io.flow.internal.v0.models.catalog_settings'].isRequired,
|
|
18205
18456
|
});
|
|
18206
18457
|
|
|
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
18458
|
T['io.flow.catalog.v0.enums.subcatalog_item_status'] = PropTypes.oneOf(['excluded', 'included', 'restricted']);
|
|
18287
18459
|
|
|
18288
18460
|
T['io.flow.shopify.v0.models.shopify_variant_flow_metafield'] = PropTypes.exact({
|
|
@@ -18549,12 +18721,6 @@ T['io.flow.trueup.v0.models.label_base'] = PropTypes.exact({
|
|
|
18549
18721
|
weight: PropTypes.number.isRequired,
|
|
18550
18722
|
});
|
|
18551
18723
|
|
|
18552
|
-
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
18553
|
-
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
18554
|
-
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
18555
|
-
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
18556
|
-
});
|
|
18557
|
-
|
|
18558
18724
|
T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
|
|
18559
18725
|
currency: PropTypes.string.isRequired,
|
|
18560
18726
|
weight: T['io.flow.units.v0.enums.unit_of_weight'],
|
|
@@ -18840,6 +19006,91 @@ T['io.flow.internal.v0.models.calculation_stamping_shipping_line'] = PropTypes.e
|
|
|
18840
19006
|
import_fee: PropTypes.number,
|
|
18841
19007
|
});
|
|
18842
19008
|
|
|
19009
|
+
T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropTypes.oneOf([
|
|
19010
|
+
'cx_team',
|
|
19011
|
+
'core_team',
|
|
19012
|
+
'core_team_investigate',
|
|
19013
|
+
'mex_team',
|
|
19014
|
+
'payments_team',
|
|
19015
|
+
'tc_team',
|
|
19016
|
+
'logistics_team',
|
|
19017
|
+
]);
|
|
19018
|
+
|
|
19019
|
+
T['io.flow.internal.v0.models.product_restriction_result_validation_error'] = PropTypes.exact({
|
|
19020
|
+
message: PropTypes.string.isRequired,
|
|
19021
|
+
reason: PropTypes.string.isRequired,
|
|
19022
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19023
|
+
});
|
|
19024
|
+
|
|
19025
|
+
T['io.flow.internal.v0.models.order_validation_error'] = PropTypes.exact({
|
|
19026
|
+
message: PropTypes.string.isRequired,
|
|
19027
|
+
reason: T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'].isRequired,
|
|
19028
|
+
action: T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'],
|
|
19029
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19030
|
+
});
|
|
19031
|
+
|
|
19032
|
+
T['io.flow.internal.v0.models.generic_validation_error'] = PropTypes.exact({
|
|
19033
|
+
message: PropTypes.string.isRequired,
|
|
19034
|
+
reason: PropTypes.string.isRequired,
|
|
19035
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19036
|
+
});
|
|
19037
|
+
|
|
19038
|
+
T['io.flow.internal.v0.models.flow_shop_validation_error'] = PropTypes.exact({
|
|
19039
|
+
message: PropTypes.string.isRequired,
|
|
19040
|
+
reason: PropTypes.string.isRequired,
|
|
19041
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19042
|
+
});
|
|
19043
|
+
|
|
19044
|
+
T['io.flow.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
|
|
19045
|
+
id: PropTypes.string.isRequired,
|
|
19046
|
+
organization_id: PropTypes.string.isRequired,
|
|
19047
|
+
order_number: PropTypes.string.isRequired,
|
|
19048
|
+
channel_id: PropTypes.string.isRequired,
|
|
19049
|
+
external_order_reference: PropTypes.string.isRequired,
|
|
19050
|
+
payment_request_id: PropTypes.string,
|
|
19051
|
+
order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
|
|
19052
|
+
status: T['io.flow.internal.v0.enums.channel_order_acceptance_status'].isRequired,
|
|
19053
|
+
reasons: PropTypes.arrayOf(T['io.flow.internal.v0.models.channel_order_acceptance_reason']).isRequired,
|
|
19054
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'],
|
|
19055
|
+
order_created_at: PropTypes.string,
|
|
19056
|
+
order_updated_at: PropTypes.string,
|
|
19057
|
+
});
|
|
19058
|
+
|
|
19059
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'] = PropTypes.exact({
|
|
19060
|
+
discriminator: PropTypes.oneOf(['channel_order_acceptance_upserted']).isRequired,
|
|
19061
|
+
event_id: PropTypes.string.isRequired,
|
|
19062
|
+
timestamp: PropTypes.string.isRequired,
|
|
19063
|
+
organization: PropTypes.string.isRequired,
|
|
19064
|
+
channel_id: PropTypes.string.isRequired,
|
|
19065
|
+
channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
19066
|
+
});
|
|
19067
|
+
|
|
19068
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
19069
|
+
order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
19070
|
+
external_order: PropTypes.object.isRequired,
|
|
19071
|
+
});
|
|
19072
|
+
|
|
19073
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_deleted'] = PropTypes.exact({
|
|
19074
|
+
discriminator: PropTypes.oneOf(['channel_order_acceptance_deleted']).isRequired,
|
|
19075
|
+
event_id: PropTypes.string.isRequired,
|
|
19076
|
+
timestamp: PropTypes.string.isRequired,
|
|
19077
|
+
organization: PropTypes.string.isRequired,
|
|
19078
|
+
channel_id: PropTypes.string.isRequired,
|
|
19079
|
+
channel_order_acceptance: T['io.flow.internal.v0.models.channel_order_acceptance'].isRequired,
|
|
19080
|
+
});
|
|
19081
|
+
|
|
19082
|
+
T['io.flow.internal.v0.models.catalog_publication_sync_validation_error'] = PropTypes.exact({
|
|
19083
|
+
message: PropTypes.string.isRequired,
|
|
19084
|
+
reason: PropTypes.string.isRequired,
|
|
19085
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19086
|
+
});
|
|
19087
|
+
|
|
19088
|
+
T['io.flow.internal.v0.models.bulk_duty_update_validation_error'] = PropTypes.exact({
|
|
19089
|
+
message: PropTypes.string.isRequired,
|
|
19090
|
+
reason: PropTypes.string.isRequired,
|
|
19091
|
+
next_action_from: T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'].isRequired,
|
|
19092
|
+
});
|
|
19093
|
+
|
|
18843
19094
|
T['io.flow.internal.v0.models.product_labels'] = PropTypes.exact({
|
|
18844
19095
|
item_type: PropTypes.string.isRequired,
|
|
18845
19096
|
gender: T['io.flow.internal.v0.models.attribute_label'],
|
|
@@ -19480,6 +19731,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19480
19731
|
'virtual_card_capture',
|
|
19481
19732
|
'virtual_card_refund',
|
|
19482
19733
|
'failed_payout',
|
|
19734
|
+
'tax_refund',
|
|
19483
19735
|
]);
|
|
19484
19736
|
|
|
19485
19737
|
T['io.flow.billing.v0.models.parent_transaction_summary'] = PropTypes.exact({
|
|
@@ -19894,6 +20146,21 @@ T['io.flow.internal.v0.models.shopify_payment_summary'] = PropTypes.exact({
|
|
|
19894
20146
|
contact: T['io.flow.common.v0.models.contact'],
|
|
19895
20147
|
});
|
|
19896
20148
|
|
|
20149
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks'] = PropTypes.exact({
|
|
20150
|
+
id: PropTypes.string.isRequired,
|
|
20151
|
+
packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
|
|
20152
|
+
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20153
|
+
location: T['io.flow.common.v0.models.address'],
|
|
20154
|
+
});
|
|
20155
|
+
|
|
20156
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'] = PropTypes.exact({
|
|
20157
|
+
discriminator: PropTypes.oneOf(['fulfillment_fallbacks_upserted']).isRequired,
|
|
20158
|
+
event_id: PropTypes.string.isRequired,
|
|
20159
|
+
timestamp: PropTypes.string.isRequired,
|
|
20160
|
+
organization: PropTypes.string.isRequired,
|
|
20161
|
+
fulfillment_fallbacks: T['io.flow.internal.v0.models.fulfillment_fallbacks'].isRequired,
|
|
20162
|
+
});
|
|
20163
|
+
|
|
19897
20164
|
T['io.flow.experience.v0.models.order_address'] = PropTypes.exact({
|
|
19898
20165
|
text: PropTypes.string,
|
|
19899
20166
|
streets: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -21591,6 +21858,18 @@ T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
|
|
|
21591
21858
|
updated_at: PropTypes.string.isRequired,
|
|
21592
21859
|
});
|
|
21593
21860
|
|
|
21861
|
+
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
21862
|
+
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
21863
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
21864
|
+
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
21865
|
+
});
|
|
21866
|
+
|
|
21867
|
+
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
21868
|
+
id: PropTypes.string,
|
|
21869
|
+
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
21870
|
+
weight_break: PropTypes.number,
|
|
21871
|
+
});
|
|
21872
|
+
|
|
21594
21873
|
T['io.flow.internal.v0.enums.address_configuration_setting_province_code'] = PropTypes.oneOf(['iso_3166_2', 'name']);
|
|
21595
21874
|
|
|
21596
21875
|
T['io.flow.internal.v0.models.address_configuration_setting_form'] = PropTypes.exact({
|
|
@@ -22229,12 +22508,6 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
|
|
|
22229
22508
|
discounts: PropTypes.arrayOf(T['io.flow.common.v0.models.discount_form']).isRequired,
|
|
22230
22509
|
});
|
|
22231
22510
|
|
|
22232
|
-
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
22233
|
-
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
22234
|
-
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
22235
|
-
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
22236
|
-
});
|
|
22237
|
-
|
|
22238
22511
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
22239
22512
|
number: PropTypes.string.isRequired,
|
|
22240
22513
|
quantity: PropTypes.number.isRequired,
|
|
@@ -22642,6 +22915,8 @@ T['io.flow.payment.v0.models.refund'] = PropTypes.exact({
|
|
|
22642
22915
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
22643
22916
|
status: T['io.flow.payment.v0.enums.refund_status'],
|
|
22644
22917
|
base: T['io.flow.common.v0.models.money'],
|
|
22918
|
+
failure_category: T['io.flow.payment.v0.enums.refund_failure_category'],
|
|
22919
|
+
failure_psp_reason: PropTypes.string,
|
|
22645
22920
|
});
|
|
22646
22921
|
|
|
22647
22922
|
T['io.flow.payment.v0.models.refund_version'] = PropTypes.exact({
|
|
@@ -22798,7 +23073,7 @@ T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'] = PropTypes.
|
|
|
22798
23073
|
T['io.flow.internal.v0.models.dispute'] = PropTypes.exact({
|
|
22799
23074
|
id: PropTypes.string.isRequired,
|
|
22800
23075
|
organization_id: PropTypes.string.isRequired,
|
|
22801
|
-
order: T['io.flow.internal.v0.models.dispute_order_reference']
|
|
23076
|
+
order: T['io.flow.internal.v0.models.dispute_order_reference'],
|
|
22802
23077
|
authorization: T['io.flow.internal.v0.models.dispute_authorization_reference'].isRequired,
|
|
22803
23078
|
processor: T['io.flow.internal.v0.enums.dispute_processor'].isRequired,
|
|
22804
23079
|
key: PropTypes.string.isRequired,
|
|
@@ -22807,9 +23082,11 @@ T['io.flow.internal.v0.models.dispute'] = PropTypes.exact({
|
|
|
22807
23082
|
category: T['io.flow.internal.v0.enums.dispute_category'].isRequired,
|
|
22808
23083
|
reporting_category: T['io.flow.internal.v0.enums.dispute_reporting_category'],
|
|
22809
23084
|
reason: PropTypes.string.isRequired,
|
|
23085
|
+
code: PropTypes.string,
|
|
22810
23086
|
status: T['io.flow.internal.v0.enums.dispute_status'].isRequired,
|
|
22811
23087
|
liability: T['io.flow.internal.v0.enums.dispute_liability'].isRequired,
|
|
22812
23088
|
billable: T['io.flow.internal.v0.enums.dispute_billable'].isRequired,
|
|
23089
|
+
defense_outcome: T['io.flow.internal.v0.enums.dispute_defense_outcome'],
|
|
22813
23090
|
details: T['io.flow.internal.v0.unions.dispute_details'].isRequired,
|
|
22814
23091
|
issued_at: PropTypes.string.isRequired,
|
|
22815
23092
|
expires_at: PropTypes.string,
|
|
@@ -22824,6 +23101,11 @@ T['io.flow.internal.v0.models.dispute_upserted'] = PropTypes.exact({
|
|
|
22824
23101
|
dispute: T['io.flow.internal.v0.models.dispute'].isRequired,
|
|
22825
23102
|
});
|
|
22826
23103
|
|
|
23104
|
+
T['io.flow.internal.v0.models.dispute_detail'] = PropTypes.exact({
|
|
23105
|
+
authorization: T['io.flow.internal.v0.models.search_authorization'].isRequired,
|
|
23106
|
+
dispute: T['io.flow.internal.v0.models.dispute'].isRequired,
|
|
23107
|
+
});
|
|
23108
|
+
|
|
22827
23109
|
T['io.flow.common.v0.models.money_with_base'] = PropTypes.exact({
|
|
22828
23110
|
currency: PropTypes.string.isRequired,
|
|
22829
23111
|
amount: PropTypes.number.isRequired,
|
|
@@ -23117,6 +23399,27 @@ T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
|
23117
23399
|
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
23118
23400
|
});
|
|
23119
23401
|
|
|
23402
|
+
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
23403
|
+
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
23404
|
+
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
23405
|
+
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
23406
|
+
});
|
|
23407
|
+
|
|
23408
|
+
T['io.flow.internal.v0.models.adjusted_estimates'] = PropTypes.exact({
|
|
23409
|
+
id: PropTypes.string.isRequired,
|
|
23410
|
+
organization_id: PropTypes.string.isRequired,
|
|
23411
|
+
label_id: PropTypes.string.isRequired,
|
|
23412
|
+
estimates: PropTypes.arrayOf(T['io.flow.label.v0.models.shipping_label_hop_summary']).isRequired,
|
|
23413
|
+
});
|
|
23414
|
+
|
|
23415
|
+
T['io.flow.internal.v0.models.adjusted_estimates_upserted'] = PropTypes.exact({
|
|
23416
|
+
discriminator: PropTypes.oneOf(['adjusted_estimates_upserted']).isRequired,
|
|
23417
|
+
event_id: PropTypes.string.isRequired,
|
|
23418
|
+
timestamp: PropTypes.string.isRequired,
|
|
23419
|
+
organization: PropTypes.string.isRequired,
|
|
23420
|
+
adjusted_estimates: T['io.flow.internal.v0.models.adjusted_estimates'].isRequired,
|
|
23421
|
+
});
|
|
23422
|
+
|
|
23120
23423
|
T['io.flow.internal.v0.models.additional_import_tax'] = PropTypes.exact({
|
|
23121
23424
|
name: PropTypes.string,
|
|
23122
23425
|
additional_import_tax_value: T['io.flow.common.v0.models.money'],
|
|
@@ -23690,11 +23993,13 @@ T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
|
23690
23993
|
transaction_date: PropTypes.string.isRequired,
|
|
23691
23994
|
origin: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23692
23995
|
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23996
|
+
billing_address: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
23693
23997
|
service: PropTypes.string.isRequired,
|
|
23694
23998
|
flow_tracking_number: PropTypes.string.isRequired,
|
|
23695
23999
|
rex_number: PropTypes.string,
|
|
23696
24000
|
wee_number: PropTypes.string,
|
|
23697
24001
|
business_gst_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24002
|
+
destination_gst_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
23698
24003
|
vat_name: PropTypes.string.isRequired,
|
|
23699
24004
|
shipping_price: PropTypes.string.isRequired,
|
|
23700
24005
|
shipment_recipient: PropTypes.string,
|
|
@@ -23717,6 +24022,7 @@ T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
|
23717
24022
|
show_us_outbound_signature: PropTypes.bool.isRequired,
|
|
23718
24023
|
show_us_outbound_stamp: PropTypes.bool.isRequired,
|
|
23719
24024
|
invoice_url: PropTypes.string,
|
|
24025
|
+
invoice_number: PropTypes.string,
|
|
23720
24026
|
});
|
|
23721
24027
|
|
|
23722
24028
|
T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'] = PropTypes.exact({
|
|
@@ -24024,6 +24330,7 @@ T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
|
|
|
24024
24330
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24025
24331
|
dimensions: T['io.flow.common.v0.models.dimensions'],
|
|
24026
24332
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
24333
|
+
deleted_at: PropTypes.string,
|
|
24027
24334
|
});
|
|
24028
24335
|
|
|
24029
24336
|
T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
|
|
@@ -24621,6 +24928,30 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
|
|
|
24621
24928
|
gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
|
|
24622
24929
|
});
|
|
24623
24930
|
|
|
24931
|
+
T['io.flow.internal.v0.models.eldar_item_form'] = PropTypes.exact({
|
|
24932
|
+
number: PropTypes.string.isRequired,
|
|
24933
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24934
|
+
description: PropTypes.string,
|
|
24935
|
+
type: T['io.flow.internal.v0.enums.eldar_item_type'].isRequired,
|
|
24936
|
+
added_on: PropTypes.string.isRequired,
|
|
24937
|
+
});
|
|
24938
|
+
|
|
24939
|
+
T['io.flow.internal.v0.models.eldar_item'] = PropTypes.exact({
|
|
24940
|
+
id: PropTypes.string.isRequired,
|
|
24941
|
+
number: PropTypes.string.isRequired,
|
|
24942
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
24943
|
+
description: PropTypes.string,
|
|
24944
|
+
type: T['io.flow.internal.v0.enums.eldar_item_type'].isRequired,
|
|
24945
|
+
added_on: PropTypes.string.isRequired,
|
|
24946
|
+
});
|
|
24947
|
+
|
|
24948
|
+
T['io.flow.internal.v0.models.eldar_item_upserted'] = PropTypes.exact({
|
|
24949
|
+
discriminator: PropTypes.oneOf(['eldar_item_upserted']).isRequired,
|
|
24950
|
+
event_id: PropTypes.string.isRequired,
|
|
24951
|
+
timestamp: PropTypes.string.isRequired,
|
|
24952
|
+
item: T['io.flow.internal.v0.models.eldar_item'].isRequired,
|
|
24953
|
+
});
|
|
24954
|
+
|
|
24624
24955
|
T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
|
|
24625
24956
|
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
24626
24957
|
currency: PropTypes.string.isRequired,
|
|
@@ -24814,6 +25145,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
24814
25145
|
trueup: T['io.flow.common.v0.models.price'].isRequired,
|
|
24815
25146
|
carrier_charge: T['io.flow.common.v0.models.price'].isRequired,
|
|
24816
25147
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
25148
|
+
tax_refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
24817
25149
|
});
|
|
24818
25150
|
|
|
24819
25151
|
T['io.flow.internal.v0.models.organization_billing_statement'] = PropTypes.exact({
|
|
@@ -25288,6 +25620,7 @@ T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
|
|
|
25288
25620
|
local: T['io.flow.catalog.v0.models.local'],
|
|
25289
25621
|
created_at: PropTypes.string,
|
|
25290
25622
|
updated_at: PropTypes.string,
|
|
25623
|
+
deleted_at: PropTypes.string,
|
|
25291
25624
|
});
|
|
25292
25625
|
|
|
25293
25626
|
T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
|
|
@@ -25403,6 +25736,7 @@ T['io.flow.experience.v0.models.order'] = PropTypes.exact({
|
|
|
25403
25736
|
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
25404
25737
|
geo: T['io.flow.experience.v0.models.order_geo'],
|
|
25405
25738
|
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
25739
|
+
destination_contact_details: PropTypes.arrayOf(T['io.flow.experience.v0.models.destination_contact_detail']),
|
|
25406
25740
|
});
|
|
25407
25741
|
|
|
25408
25742
|
T['io.flow.shopify.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
|
|
@@ -26206,6 +26540,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
26206
26540
|
'duty',
|
|
26207
26541
|
'trueup',
|
|
26208
26542
|
'carrier_charge',
|
|
26543
|
+
'tax_refund',
|
|
26209
26544
|
]);
|
|
26210
26545
|
|
|
26211
26546
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -26860,6 +27195,8 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
26860
27195
|
});
|
|
26861
27196
|
|
|
26862
27197
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
27198
|
+
T['io.flow.internal.v0.models.adjusted_estimates_upserted'],
|
|
27199
|
+
T['io.flow.internal.v0.models.adjusted_estimates_deleted'],
|
|
26863
27200
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
26864
27201
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
26865
27202
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -27033,6 +27370,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27033
27370
|
T['io.flow.internal.v0.models.ftp_file_to_process_uploaded'],
|
|
27034
27371
|
T['io.flow.internal.v0.models.center_defaults_upserted'],
|
|
27035
27372
|
T['io.flow.internal.v0.models.center_defaults_deleted'],
|
|
27373
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'],
|
|
27374
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'],
|
|
27036
27375
|
T['io.flow.internal.v0.models.pregenerated_request_event'],
|
|
27037
27376
|
T['io.flow.internal.v0.models.quote_upserted'],
|
|
27038
27377
|
T['io.flow.internal.v0.models.quote_deleted'],
|
|
@@ -27200,6 +27539,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27200
27539
|
T['io.flow.internal.v0.models.svitlana_item_deleted'],
|
|
27201
27540
|
T['io.flow.internal.v0.models.colm_item_upserted'],
|
|
27202
27541
|
T['io.flow.internal.v0.models.colm_item_deleted'],
|
|
27542
|
+
T['io.flow.internal.v0.models.eldar_item_upserted'],
|
|
27543
|
+
T['io.flow.internal.v0.models.eldar_item_deleted'],
|
|
27203
27544
|
T['io.flow.internal.v0.models.harinath_item_upserted'],
|
|
27204
27545
|
T['io.flow.internal.v0.models.harinath_item_deleted'],
|
|
27205
27546
|
T['io.flow.internal.v0.models.konstantin_item_upserted'],
|
|
@@ -27226,6 +27567,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27226
27567
|
T['io.flow.internal.v0.models.tracking_deleted'],
|
|
27227
27568
|
T['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'],
|
|
27228
27569
|
T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'],
|
|
27570
|
+
T['io.flow.internal.v0.models.tracking_assurance_job_upserted'],
|
|
27571
|
+
T['io.flow.internal.v0.models.tracking_assurance_job_deleted'],
|
|
27572
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions_upserted'],
|
|
27573
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions_deleted'],
|
|
27229
27574
|
T['io.flow.internal.v0.models.tracking_request_upserted'],
|
|
27230
27575
|
T['io.flow.internal.v0.models.tracking_response_upserted'],
|
|
27231
27576
|
T['io.flow.internal.v0.models.user_upserted_v2'],
|
|
@@ -27262,6 +27607,7 @@ T['io.flow.internal.v0.models.order_detail'] = PropTypes.exact({
|
|
|
27262
27607
|
created_at: PropTypes.string.isRequired,
|
|
27263
27608
|
updated_at: PropTypes.string.isRequired,
|
|
27264
27609
|
shopify_order_id: PropTypes.string,
|
|
27610
|
+
disputes: PropTypes.arrayOf(T['io.flow.internal.v0.models.dispute_detail']).isRequired,
|
|
27265
27611
|
});
|
|
27266
27612
|
|
|
27267
27613
|
T['io.flow.internal.v0.models.cli_log_entry'] = PropTypes.exact({
|
|
@@ -27394,6 +27740,8 @@ T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_c
|
|
|
27394
27740
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
|
|
27395
27741
|
|
|
27396
27742
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
27743
|
+
'adjusted_estimates_upserted',
|
|
27744
|
+
'adjusted_estimates_deleted',
|
|
27397
27745
|
'adyen_authorization_deleted',
|
|
27398
27746
|
'adyen_authorization_upserted',
|
|
27399
27747
|
'adyen_cancel_deleted',
|
|
@@ -27567,6 +27915,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27567
27915
|
'ftp_file_to_process_uploaded',
|
|
27568
27916
|
'center_defaults_upserted',
|
|
27569
27917
|
'center_defaults_deleted',
|
|
27918
|
+
'fulfillment_fallbacks_upserted',
|
|
27919
|
+
'fulfillment_fallbacks_deleted',
|
|
27570
27920
|
'pregenerated_request_event',
|
|
27571
27921
|
'quote_upserted',
|
|
27572
27922
|
'quote_deleted',
|
|
@@ -27734,6 +28084,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27734
28084
|
'svitlana_item_deleted',
|
|
27735
28085
|
'colm_item_upserted',
|
|
27736
28086
|
'colm_item_deleted',
|
|
28087
|
+
'eldar_item_upserted',
|
|
28088
|
+
'eldar_item_deleted',
|
|
27737
28089
|
'harinath_item_upserted',
|
|
27738
28090
|
'harinath_item_deleted',
|
|
27739
28091
|
'konstantin_item_upserted',
|
|
@@ -27760,6 +28112,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27760
28112
|
'tracking_deleted',
|
|
27761
28113
|
'tracking_assurance_analysis_upserted',
|
|
27762
28114
|
'tracking_assurance_analysis_deleted',
|
|
28115
|
+
'tracking_assurance_job_upserted',
|
|
28116
|
+
'tracking_assurance_job_deleted',
|
|
28117
|
+
'tracking_label_dimensions_upserted',
|
|
28118
|
+
'tracking_label_dimensions_deleted',
|
|
27763
28119
|
'tracking_request_upserted',
|
|
27764
28120
|
'tracking_response_upserted',
|
|
27765
28121
|
'user_upserted_v2',
|
|
@@ -27783,6 +28139,7 @@ T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
|
|
|
27783
28139
|
|
|
27784
28140
|
T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
27785
28141
|
T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
|
|
28142
|
+
T['io.flow.internal.v0.enums.label_request_result_organization_type'] = PropTypes.oneOf(['all', 'legacy_production', 'managed_markets_production', 'sandbox']);
|
|
27786
28143
|
T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
|
|
27787
28144
|
T['io.flow.internal.v0.enums.marketing_gateway_feed_download_format'] = PropTypes.oneOf(['tsv', 'csv', 'txt']);
|
|
27788
28145
|
T['io.flow.internal.v0.enums.marketing_gateway_product_status'] = PropTypes.oneOf(['approved', 'not_approved', 'pending', 'not_found', 'excluded']);
|
|
@@ -27878,6 +28235,7 @@ T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'] = PropTypes.on
|
|
|
27878
28235
|
'webhook_registrations',
|
|
27879
28236
|
'channel_organization_identifier',
|
|
27880
28237
|
'bulk_product_ingestion',
|
|
28238
|
+
'bulk_duty_update',
|
|
27881
28239
|
]);
|
|
27882
28240
|
|
|
27883
28241
|
T['io.flow.internal.v0.enums.shopify_markets_trade_sector'] = PropTypes.oneOf([
|
|
@@ -27913,7 +28271,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
27913
28271
|
'center_defaults',
|
|
27914
28272
|
]);
|
|
27915
28273
|
|
|
27916
|
-
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax']);
|
|
28274
|
+
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax', 'refund']);
|
|
27917
28275
|
T['io.flow.internal.v0.enums.tracking_integration_type'] = PropTypes.oneOf(['api', 'bulk', 'aftership']);
|
|
27918
28276
|
T['io.flow.internal.v0.enums.trueup_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'trueup']);
|
|
27919
28277
|
|
|
@@ -29369,13 +29727,6 @@ T['io.flow.adyen.v0.models.challenge_shopper_additional_data'] = PropTypes.exact
|
|
|
29369
29727
|
'threeds2.threeDS2ResponseData.messageVersion': PropTypes.string.isRequired,
|
|
29370
29728
|
});
|
|
29371
29729
|
|
|
29372
|
-
T['io.flow.adyen.v0.models.chargeback_notification_additional_data'] = PropTypes.exact({
|
|
29373
|
-
chargebackReasonCode: PropTypes.string.isRequired,
|
|
29374
|
-
modificationMerchantReferences: PropTypes.string.isRequired,
|
|
29375
|
-
chargebackSchemeCode: PropTypes.string.isRequired,
|
|
29376
|
-
defensePeriodEndsAt: PropTypes.string,
|
|
29377
|
-
});
|
|
29378
|
-
|
|
29379
29730
|
T['io.flow.adyen.v0.models.error'] = PropTypes.exact({
|
|
29380
29731
|
status: PropTypes.number.isRequired,
|
|
29381
29732
|
errorCode: PropTypes.string.isRequired,
|
|
@@ -30123,6 +30474,9 @@ export const addressConfigurationProvinceSetting = T['io.flow.internal.v0.models
|
|
|
30123
30474
|
export const addressConfigurationSetting = T['io.flow.internal.v0.models.address_configuration_setting'];
|
|
30124
30475
|
export const addressConfigurationSettingForm = T['io.flow.internal.v0.models.address_configuration_setting_form'];
|
|
30125
30476
|
export const addressConfigurationSettingProvinceCode = T['io.flow.internal.v0.enums.address_configuration_setting_province_code'];
|
|
30477
|
+
export const adjustedEstimates = T['io.flow.internal.v0.models.adjusted_estimates'];
|
|
30478
|
+
export const adjustedEstimatesDeleted = T['io.flow.internal.v0.models.adjusted_estimates_deleted'];
|
|
30479
|
+
export const adjustedEstimatesUpserted = T['io.flow.internal.v0.models.adjusted_estimates_upserted'];
|
|
30126
30480
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
30127
30481
|
export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
|
|
30128
30482
|
export const adjustmentAmountPercentage = T['io.flow.internal.v0.models.adjustment_amount_percentage'];
|
|
@@ -30190,6 +30544,7 @@ export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_referenc
|
|
|
30190
30544
|
export const apmContent = T['io.flow.internal.v0.models.apm_content'];
|
|
30191
30545
|
export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
|
|
30192
30546
|
export const applyAtValueForm = T['io.flow.internal.v0.models.apply_at_value_form'];
|
|
30547
|
+
export const attemptStatistics = T['io.flow.internal.v0.models.attempt_statistics'];
|
|
30193
30548
|
export const attributeLabel = T['io.flow.internal.v0.models.attribute_label'];
|
|
30194
30549
|
export const authenticationForm = T['io.flow.internal.v0.models.authentication_form'];
|
|
30195
30550
|
export const authorizationBundle = T['io.flow.internal.v0.models.authorization_bundle'];
|
|
@@ -30274,6 +30629,7 @@ export const browserBundlePaymentMethod = T['io.flow.internal.v0.models.browser_
|
|
|
30274
30629
|
export const browserBundlePaymentMethodForm = T['io.flow.internal.v0.models.browser_bundle_payment_method_form'];
|
|
30275
30630
|
export const browserBundlePaymentMethods = T['io.flow.internal.v0.models.browser_bundle_payment_methods'];
|
|
30276
30631
|
export const bulkClassificationAction = T['io.flow.internal.v0.models.bulk_classification_action'];
|
|
30632
|
+
export const bulkDutyUpdateValidationError = T['io.flow.internal.v0.models.bulk_duty_update_validation_error'];
|
|
30277
30633
|
export const calculatedTaxAmount = T['io.flow.internal.v0.models.calculated_tax_amount'];
|
|
30278
30634
|
export const calculationStampingLineItem = T['io.flow.internal.v0.models.calculation_stamping_line_item'];
|
|
30279
30635
|
export const calculationStampingShippingLine = T['io.flow.internal.v0.models.calculation_stamping_shipping_line'];
|
|
@@ -30454,6 +30810,8 @@ export const classificationFormWrapper = T['io.flow.internal.v0.models.classific
|
|
|
30454
30810
|
export const classificationItem = T['io.flow.internal.v0.models.classification_item'];
|
|
30455
30811
|
export const classificationJudgementForm = T['io.flow.internal.v0.unions.classification_judgement_form'];
|
|
30456
30812
|
export const classificationLabelAttribute = T['io.flow.internal.v0.unions.classification_label_attribute'];
|
|
30813
|
+
export const classificationMerchant = T['io.flow.internal.v0.models.classification_merchant'];
|
|
30814
|
+
export const classificationMerchantEnvelope = T['io.flow.internal.v0.models.classification_merchant_envelope'];
|
|
30457
30815
|
export const classificationPlatform = T['io.flow.internal.v0.enums.classification_platform'];
|
|
30458
30816
|
export const classificationProduct = T['io.flow.internal.v0.models.classification_product'];
|
|
30459
30817
|
export const classificationProductHarmonization = T['io.flow.internal.v0.models.classification_product_harmonization'];
|
|
@@ -30591,7 +30949,9 @@ export const dispute = T['io.flow.internal.v0.models.dispute'];
|
|
|
30591
30949
|
export const disputeAuthorizationReference = T['io.flow.internal.v0.models.dispute_authorization_reference'];
|
|
30592
30950
|
export const disputeBillable = T['io.flow.internal.v0.enums.dispute_billable'];
|
|
30593
30951
|
export const disputeCategory = T['io.flow.internal.v0.enums.dispute_category'];
|
|
30952
|
+
export const disputeDefenseOutcome = T['io.flow.internal.v0.enums.dispute_defense_outcome'];
|
|
30594
30953
|
export const disputeDeleted = T['io.flow.internal.v0.models.dispute_deleted'];
|
|
30954
|
+
export const disputeDetail = T['io.flow.internal.v0.models.dispute_detail'];
|
|
30595
30955
|
export const disputeDetails = T['io.flow.internal.v0.unions.dispute_details'];
|
|
30596
30956
|
export const disputeDetailsAdyen = T['io.flow.internal.v0.models.dispute_details_adyen'];
|
|
30597
30957
|
export const disputeDetailsPaypal = T['io.flow.internal.v0.models.dispute_details_paypal'];
|
|
@@ -30606,6 +30966,7 @@ export const disputeImportType = T['io.flow.internal.v0.enums.dispute_import_typ
|
|
|
30606
30966
|
export const disputeLiability = T['io.flow.internal.v0.enums.dispute_liability'];
|
|
30607
30967
|
export const disputeOrderReference = T['io.flow.internal.v0.models.dispute_order_reference'];
|
|
30608
30968
|
export const disputeOrganizationReference = T['io.flow.internal.v0.models.dispute_organization_reference'];
|
|
30969
|
+
export const disputeOverrideUpdateForm = T['io.flow.internal.v0.models.dispute_override_update_form'];
|
|
30609
30970
|
export const disputeProcessor = T['io.flow.internal.v0.enums.dispute_processor'];
|
|
30610
30971
|
export const disputeReportingCategory = T['io.flow.internal.v0.enums.dispute_reporting_category'];
|
|
30611
30972
|
export const disputeStatus = T['io.flow.internal.v0.enums.dispute_status'];
|
|
@@ -30644,6 +31005,11 @@ export const dutyTransaction = T['io.flow.internal.v0.models.duty_transaction'];
|
|
|
30644
31005
|
export const dutyTransactionDeleted = T['io.flow.internal.v0.models.duty_transaction_deleted'];
|
|
30645
31006
|
export const dutyTransactionType = T['io.flow.internal.v0.enums.duty_transaction_type'];
|
|
30646
31007
|
export const dutyTransactionUpserted = T['io.flow.internal.v0.models.duty_transaction_upserted'];
|
|
31008
|
+
export const eldarItem = T['io.flow.internal.v0.models.eldar_item'];
|
|
31009
|
+
export const eldarItemDeleted = T['io.flow.internal.v0.models.eldar_item_deleted'];
|
|
31010
|
+
export const eldarItemForm = T['io.flow.internal.v0.models.eldar_item_form'];
|
|
31011
|
+
export const eldarItemType = T['io.flow.internal.v0.enums.eldar_item_type'];
|
|
31012
|
+
export const eldarItemUpserted = T['io.flow.internal.v0.models.eldar_item_upserted'];
|
|
30647
31013
|
export const emailForm = T['io.flow.internal.v0.models.email_form'];
|
|
30648
31014
|
export const emailModificationForm = T['io.flow.internal.v0.models.email_modification_form'];
|
|
30649
31015
|
export const emptyAttribute = T['io.flow.internal.v0.enums.empty_attribute'];
|
|
@@ -30801,6 +31167,9 @@ export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_bus
|
|
|
30801
31167
|
export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
|
|
30802
31168
|
export const fulfillmentCarrier = T['io.flow.internal.v0.models.fulfillment_carrier'];
|
|
30803
31169
|
export const fulfillmentDeleted = T['io.flow.internal.v0.models.fulfillment_deleted'];
|
|
31170
|
+
export const fulfillmentFallbacks = T['io.flow.internal.v0.models.fulfillment_fallbacks'];
|
|
31171
|
+
export const fulfillmentFallbacksDeleted = T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'];
|
|
31172
|
+
export const fulfillmentFallbacksUpserted = T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'];
|
|
30804
31173
|
export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
|
|
30805
31174
|
export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
|
|
30806
31175
|
export const fulfillmentProof = T['io.flow.internal.v0.unions.fulfillment_proof'];
|
|
@@ -30986,6 +31355,9 @@ export const labelRequestError = T['io.flow.internal.v0.models.label_request_err
|
|
|
30986
31355
|
export const labelRequestErrorDeleted = T['io.flow.internal.v0.models.label_request_error_deleted'];
|
|
30987
31356
|
export const labelRequestErrorHandlingResponsibility = T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'];
|
|
30988
31357
|
export const labelRequestErrorUpserted = T['io.flow.internal.v0.models.label_request_error_upserted'];
|
|
31358
|
+
export const labelRequestResult = T['io.flow.internal.v0.models.label_request_result'];
|
|
31359
|
+
export const labelRequestResultOrganizationType = T['io.flow.internal.v0.enums.label_request_result_organization_type'];
|
|
31360
|
+
export const labelRequestResultState = T['io.flow.internal.v0.enums.label_request_result_state'];
|
|
30989
31361
|
export const labelSummary = T['io.flow.internal.v0.models.label_summary'];
|
|
30990
31362
|
export const labelSurchargeForm = T['io.flow.internal.v0.models.label_surcharge_form'];
|
|
30991
31363
|
export const labelSurchargeSingleForm = T['io.flow.internal.v0.models.label_surcharge_single_form'];
|
|
@@ -31157,6 +31529,7 @@ export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
|
31157
31529
|
export const moneyPercentage = T['io.flow.internal.v0.models.money_percentage'];
|
|
31158
31530
|
export const moneyRule = T['io.flow.internal.v0.unions.money_rule'];
|
|
31159
31531
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
31532
|
+
export const negativeDebitMetrics = T['io.flow.internal.v0.models.negative_debit_metrics'];
|
|
31160
31533
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
31161
31534
|
export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated_tax_amount'];
|
|
31162
31535
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
@@ -31917,6 +32290,9 @@ export const tracker = T['io.flow.internal.v0.unions.tracker'];
|
|
|
31917
32290
|
export const trackingAssuranceAnalysis = T['io.flow.internal.v0.models.tracking_assurance_analysis'];
|
|
31918
32291
|
export const trackingAssuranceAnalysisDeleted = T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'];
|
|
31919
32292
|
export const trackingAssuranceAnalysisUpserted = T['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'];
|
|
32293
|
+
export const trackingAssuranceJob = T['io.flow.internal.v0.models.tracking_assurance_job'];
|
|
32294
|
+
export const trackingAssuranceJobDeleted = T['io.flow.internal.v0.models.tracking_assurance_job_deleted'];
|
|
32295
|
+
export const trackingAssuranceJobUpserted = T['io.flow.internal.v0.models.tracking_assurance_job_upserted'];
|
|
31920
32296
|
export const trackingDebugForceTransitForm = T['io.flow.internal.v0.models.tracking_debug_force_transit_form'];
|
|
31921
32297
|
export const trackingDebugLabel = T['io.flow.internal.v0.models.tracking_debug_label'];
|
|
31922
32298
|
export const trackingDebugLabelEvent = T['io.flow.internal.v0.models.tracking_debug_label_event'];
|
|
@@ -31925,6 +32301,10 @@ export const trackingDeleted = T['io.flow.internal.v0.models.tracking_deleted'];
|
|
|
31925
32301
|
export const trackingEvent = T['io.flow.internal.v0.models.tracking_event'];
|
|
31926
32302
|
export const trackingIntegrationType = T['io.flow.internal.v0.enums.tracking_integration_type'];
|
|
31927
32303
|
export const trackingLabelDeleted = T['io.flow.internal.v0.models.tracking_label_deleted'];
|
|
32304
|
+
export const trackingLabelDimensions = T['io.flow.internal.v0.models.tracking_label_dimensions'];
|
|
32305
|
+
export const trackingLabelDimensionsDeleted = T['io.flow.internal.v0.models.tracking_label_dimensions_deleted'];
|
|
32306
|
+
export const trackingLabelDimensionsSource = T['io.flow.internal.v0.enums.tracking_label_dimensions_source'];
|
|
32307
|
+
export const trackingLabelDimensionsUpserted = T['io.flow.internal.v0.models.tracking_label_dimensions_upserted'];
|
|
31928
32308
|
export const trackingLabelEventDeletedV2 = T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'];
|
|
31929
32309
|
export const trackingLabelEventUpsertedV2 = T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'];
|
|
31930
32310
|
export const trackingLabelUpserted = T['io.flow.internal.v0.models.tracking_label_upserted'];
|