@flowio/api-internal-prop-types 9.24.100 → 9.24.102
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 +327 -5
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +327 -5
- package/src/api-internal.js +409 -50
package/src/api-internal.js
CHANGED
|
@@ -1610,6 +1610,17 @@ T['io.flow.partner.v0.models.partner_order_identifier'] = PropTypes.exact({
|
|
|
1610
1610
|
number: PropTypes.string.isRequired,
|
|
1611
1611
|
});
|
|
1612
1612
|
|
|
1613
|
+
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'] = PropTypes.oneOf(['channel_order_mor_invalid', 'channel_order_does_not_exist']);
|
|
1614
|
+
|
|
1615
|
+
T['io.flow.channel.internal.v0.models.channel_order_acceptance_failure'] = PropTypes.exact({
|
|
1616
|
+
id: PropTypes.string.isRequired,
|
|
1617
|
+
organization_id: PropTypes.string.isRequired,
|
|
1618
|
+
channel_id: PropTypes.string.isRequired,
|
|
1619
|
+
payment_request_id: PropTypes.string.isRequired,
|
|
1620
|
+
code: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'].isRequired,
|
|
1621
|
+
reason: PropTypes.string.isRequired,
|
|
1622
|
+
});
|
|
1623
|
+
|
|
1613
1624
|
T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
|
|
1614
1625
|
'adjustment',
|
|
1615
1626
|
'vat_deminimis',
|
|
@@ -3094,6 +3105,26 @@ T['io.flow.adyen.v0.enums.event_code'] = PropTypes.oneOf([
|
|
|
3094
3105
|
'ISSUER_RESPONSE_TIMEFRAME_EXPIRED',
|
|
3095
3106
|
]);
|
|
3096
3107
|
|
|
3108
|
+
T['io.flow.adyen.v0.enums.dispute_status'] = PropTypes.oneOf([
|
|
3109
|
+
'Accepted',
|
|
3110
|
+
'Expired',
|
|
3111
|
+
'Lost',
|
|
3112
|
+
'Pending',
|
|
3113
|
+
'Responded',
|
|
3114
|
+
'Undefended',
|
|
3115
|
+
'Unresponded',
|
|
3116
|
+
'Won',
|
|
3117
|
+
]);
|
|
3118
|
+
|
|
3119
|
+
T['io.flow.adyen.v0.models.chargeback_notification_additional_data'] = PropTypes.exact({
|
|
3120
|
+
chargebackReasonCode: PropTypes.string.isRequired,
|
|
3121
|
+
modificationMerchantReferences: PropTypes.string.isRequired,
|
|
3122
|
+
chargebackSchemeCode: PropTypes.string.isRequired,
|
|
3123
|
+
defensePeriodEndsAt: PropTypes.string,
|
|
3124
|
+
disputeStatus: T['io.flow.adyen.v0.enums.dispute_status'],
|
|
3125
|
+
defendable: PropTypes.string,
|
|
3126
|
+
});
|
|
3127
|
+
|
|
3097
3128
|
T['io.flow.adyen.v0.enums.result_code'] = PropTypes.oneOf([
|
|
3098
3129
|
'Authorised',
|
|
3099
3130
|
'Cancelled',
|
|
@@ -4568,6 +4599,7 @@ T['io.flow.external.paypal.v1.models.dispute'] = PropTypes.exact({
|
|
|
4568
4599
|
supporting_info: T['io.flow.external.paypal.v1.models.supporting_info'],
|
|
4569
4600
|
allowed_response_options: T['io.flow.external.paypal.v1.models.allowed_response_options'],
|
|
4570
4601
|
links: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.link']),
|
|
4602
|
+
previous_status: T['io.flow.external.paypal.v1.enums.dispute_status'],
|
|
4571
4603
|
});
|
|
4572
4604
|
|
|
4573
4605
|
T['io.flow.external.paypal.v1.models.paypal_dispute_event'] = PropTypes.exact({
|
|
@@ -8133,6 +8165,14 @@ T['io.flow.internal.v0.unions.explicit_statement_form'] = PropTypes.oneOfType([
|
|
|
8133
8165
|
T['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'],
|
|
8134
8166
|
]);
|
|
8135
8167
|
|
|
8168
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions_deleted'] = PropTypes.exact({
|
|
8169
|
+
discriminator: PropTypes.oneOf(['tracking_label_dimensions_deleted']).isRequired,
|
|
8170
|
+
event_id: PropTypes.string.isRequired,
|
|
8171
|
+
timestamp: PropTypes.string.isRequired,
|
|
8172
|
+
organization: PropTypes.string.isRequired,
|
|
8173
|
+
id: PropTypes.string.isRequired,
|
|
8174
|
+
});
|
|
8175
|
+
|
|
8136
8176
|
T['io.flow.internal.v0.models.tracking_assurance_job_deleted'] = PropTypes.exact({
|
|
8137
8177
|
discriminator: PropTypes.oneOf(['tracking_assurance_job_deleted']).isRequired,
|
|
8138
8178
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8614,6 +8654,14 @@ T['io.flow.internal.v0.models.quote_deleted'] = PropTypes.exact({
|
|
|
8614
8654
|
id: PropTypes.string.isRequired,
|
|
8615
8655
|
});
|
|
8616
8656
|
|
|
8657
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'] = PropTypes.exact({
|
|
8658
|
+
discriminator: PropTypes.oneOf(['fulfillment_fallbacks_deleted']).isRequired,
|
|
8659
|
+
event_id: PropTypes.string.isRequired,
|
|
8660
|
+
timestamp: PropTypes.string.isRequired,
|
|
8661
|
+
organization: PropTypes.string.isRequired,
|
|
8662
|
+
id: PropTypes.string.isRequired,
|
|
8663
|
+
});
|
|
8664
|
+
|
|
8617
8665
|
T['io.flow.internal.v0.models.center_defaults_deleted'] = PropTypes.exact({
|
|
8618
8666
|
discriminator: PropTypes.oneOf(['center_defaults_deleted']).isRequired,
|
|
8619
8667
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9136,6 +9184,21 @@ T['io.flow.internal.v0.models.index_assignment_deleted'] = PropTypes.exact({
|
|
|
9136
9184
|
id: PropTypes.string.isRequired,
|
|
9137
9185
|
});
|
|
9138
9186
|
|
|
9187
|
+
T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
9188
|
+
discriminator: PropTypes.oneOf(['adyen_dispute_deleted']).isRequired,
|
|
9189
|
+
event_id: PropTypes.string.isRequired,
|
|
9190
|
+
timestamp: PropTypes.string.isRequired,
|
|
9191
|
+
id: PropTypes.string.isRequired,
|
|
9192
|
+
});
|
|
9193
|
+
|
|
9194
|
+
T['io.flow.internal.v0.models.adjusted_estimates_deleted'] = PropTypes.exact({
|
|
9195
|
+
discriminator: PropTypes.oneOf(['adjusted_estimates_deleted']).isRequired,
|
|
9196
|
+
event_id: PropTypes.string.isRequired,
|
|
9197
|
+
timestamp: PropTypes.string.isRequired,
|
|
9198
|
+
organization: PropTypes.string.isRequired,
|
|
9199
|
+
id: PropTypes.string.isRequired,
|
|
9200
|
+
});
|
|
9201
|
+
|
|
9139
9202
|
T['io.flow.internal.v0.models.console_mark_unresolvable_form'] = PropTypes.exact({
|
|
9140
9203
|
discriminator: PropTypes.oneOf(['console_mark_unresolvable_form']).isRequired,
|
|
9141
9204
|
order_number: PropTypes.string.isRequired,
|
|
@@ -9291,6 +9354,8 @@ T['io.flow.internal.v0.models.tracking_processing_error_upserted'] = PropTypes.e
|
|
|
9291
9354
|
tracking_processing_error: T['io.flow.internal.v0.models.tracking_processing_error'].isRequired,
|
|
9292
9355
|
});
|
|
9293
9356
|
|
|
9357
|
+
T['io.flow.internal.v0.enums.tracking_label_dimensions_source'] = PropTypes.oneOf(['aftership', 'carrier_api']);
|
|
9358
|
+
|
|
9294
9359
|
T['io.flow.internal.v0.models.tracking_debug_label_location'] = PropTypes.exact({
|
|
9295
9360
|
country: PropTypes.string.isRequired,
|
|
9296
9361
|
});
|
|
@@ -10497,19 +10562,6 @@ T['io.flow.payment.gateway.v0.models.payment_authorization_status'] = PropTypes.
|
|
|
10497
10562
|
reason: T['io.flow.payment.v0.enums.authorization_decline_code'],
|
|
10498
10563
|
});
|
|
10499
10564
|
|
|
10500
|
-
T['io.flow.payment.v0.models.payment_processor'] = PropTypes.exact({
|
|
10501
|
-
discriminator: PropTypes.oneOf(['payment_processor']).isRequired,
|
|
10502
|
-
processor: PropTypes.string.isRequired,
|
|
10503
|
-
operation_identifier: T['io.flow.payment.v0.models.payment_processor_identifier'],
|
|
10504
|
-
account: T['io.flow.payment.v0.models.payment_processor_account'],
|
|
10505
|
-
transaction_details: T['io.flow.payment.v0.unions.payment_processor_transaction_details'],
|
|
10506
|
-
});
|
|
10507
|
-
|
|
10508
|
-
T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfType([
|
|
10509
|
-
T['io.flow.payment.v0.models.payment_processor'],
|
|
10510
|
-
T['io.flow.payment.v0.models.payment_processor_reference'],
|
|
10511
|
-
]);
|
|
10512
|
-
|
|
10513
10565
|
T['io.flow.internal.v0.models.report_owner'] = PropTypes.exact({
|
|
10514
10566
|
name: PropTypes.string.isRequired,
|
|
10515
10567
|
});
|
|
@@ -10538,6 +10590,7 @@ T['io.flow.internal.v0.models.reporting_reconciliation'] = PropTypes.exact({
|
|
|
10538
10590
|
T['io.flow.internal.v0.models.reporting_conversion_rates'] = PropTypes.exact({
|
|
10539
10591
|
merchant: PropTypes.number.isRequired,
|
|
10540
10592
|
entity: PropTypes.number.isRequired,
|
|
10593
|
+
destination_country: PropTypes.number.isRequired,
|
|
10541
10594
|
usd: PropTypes.number.isRequired,
|
|
10542
10595
|
eur: PropTypes.number.isRequired,
|
|
10543
10596
|
});
|
|
@@ -10546,6 +10599,7 @@ T['io.flow.internal.v0.models.reporting_currencies'] = PropTypes.exact({
|
|
|
10546
10599
|
transaction: PropTypes.string.isRequired,
|
|
10547
10600
|
merchant: PropTypes.string.isRequired,
|
|
10548
10601
|
entity: PropTypes.string.isRequired,
|
|
10602
|
+
destination_country: PropTypes.string,
|
|
10549
10603
|
});
|
|
10550
10604
|
|
|
10551
10605
|
T['io.flow.internal.v0.models.reporting_vendor'] = PropTypes.exact({
|
|
@@ -10755,6 +10809,8 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
10755
10809
|
'account_quarterly_balances',
|
|
10756
10810
|
'invariants',
|
|
10757
10811
|
'payments',
|
|
10812
|
+
'reconcile_not_recorded',
|
|
10813
|
+
'products_record',
|
|
10758
10814
|
]);
|
|
10759
10815
|
|
|
10760
10816
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -10950,12 +11006,6 @@ T['io.flow.label.v0.models.shipping_label_ratecard_summary'] = PropTypes.exact({
|
|
|
10950
11006
|
shopify_grc_gid: PropTypes.string,
|
|
10951
11007
|
});
|
|
10952
11008
|
|
|
10953
|
-
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
10954
|
-
id: PropTypes.string,
|
|
10955
|
-
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
10956
|
-
weight_break: PropTypes.number,
|
|
10957
|
-
});
|
|
10958
|
-
|
|
10959
11009
|
T['io.flow.ratecard.v0.models.ratecard_reference'] = PropTypes.exact({
|
|
10960
11010
|
id: PropTypes.string.isRequired,
|
|
10961
11011
|
});
|
|
@@ -11063,6 +11113,25 @@ T['io.flow.internal.v0.models.restriction_pending'] = PropTypes.exact({
|
|
|
11063
11113
|
count: PropTypes.number.isRequired,
|
|
11064
11114
|
});
|
|
11065
11115
|
|
|
11116
|
+
T['io.flow.internal.v0.models.product_transaction'] = PropTypes.exact({
|
|
11117
|
+
transaction_amount: PropTypes.number.isRequired,
|
|
11118
|
+
destination_amount: PropTypes.number.isRequired,
|
|
11119
|
+
quantity: PropTypes.number.isRequired,
|
|
11120
|
+
});
|
|
11121
|
+
|
|
11122
|
+
T['io.flow.internal.v0.models.product_currencies'] = PropTypes.exact({
|
|
11123
|
+
transaction: PropTypes.string.isRequired,
|
|
11124
|
+
destination: PropTypes.string.isRequired,
|
|
11125
|
+
});
|
|
11126
|
+
|
|
11127
|
+
T['io.flow.internal.v0.models.product_record'] = PropTypes.exact({
|
|
11128
|
+
organization_id: PropTypes.string.isRequired,
|
|
11129
|
+
order_number: PropTypes.string.isRequired,
|
|
11130
|
+
fulfillment_id: PropTypes.string.isRequired,
|
|
11131
|
+
currencies: T['io.flow.internal.v0.models.product_currencies'].isRequired,
|
|
11132
|
+
products: PropTypes.arrayOf(T['io.flow.internal.v0.models.product_transaction']).isRequired,
|
|
11133
|
+
});
|
|
11134
|
+
|
|
11066
11135
|
T['io.flow.internal.v0.models.harmonization_column_setting'] = PropTypes.exact({
|
|
11067
11136
|
column: PropTypes.string.isRequired,
|
|
11068
11137
|
position: PropTypes.number.isRequired,
|
|
@@ -11910,6 +11979,20 @@ T['io.flow.internal.v0.models.report_payment'] = PropTypes.exact({
|
|
|
11910
11979
|
created_at: PropTypes.string.isRequired,
|
|
11911
11980
|
});
|
|
11912
11981
|
|
|
11982
|
+
T['io.flow.internal.v0.models.attempt_statistics'] = PropTypes.exact({
|
|
11983
|
+
merchant_count: PropTypes.number.isRequired,
|
|
11984
|
+
amount: PropTypes.number.isRequired,
|
|
11985
|
+
failed_merchant_count: PropTypes.number.isRequired,
|
|
11986
|
+
failed_amount: PropTypes.number.isRequired,
|
|
11987
|
+
success_ratio: PropTypes.number.isRequired,
|
|
11988
|
+
});
|
|
11989
|
+
|
|
11990
|
+
T['io.flow.internal.v0.models.negative_debit_metrics'] = PropTypes.exact({
|
|
11991
|
+
current_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
11992
|
+
second_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
11993
|
+
third_attempt: T['io.flow.internal.v0.models.attempt_statistics'].isRequired,
|
|
11994
|
+
});
|
|
11995
|
+
|
|
11913
11996
|
T['io.flow.internal.v0.enums.miljenko_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11914
11997
|
T['io.flow.internal.v0.enums.michaelyan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
11915
11998
|
|
|
@@ -12225,6 +12308,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_refund_line_item'] = PropType
|
|
|
12225
12308
|
location_id: PropTypes.number,
|
|
12226
12309
|
subtotal: PropTypes.number,
|
|
12227
12310
|
total_tax: PropTypes.number,
|
|
12311
|
+
total_tax_set: T['io.flow.shopify.markets.v0.models.shopify_order_money_set'],
|
|
12228
12312
|
});
|
|
12229
12313
|
|
|
12230
12314
|
T['io.flow.shopify.markets.v0.models.shopify_order_refund'] = PropTypes.exact({
|
|
@@ -12994,6 +13078,10 @@ T['io.flow.tracking.v0.models.label_tracking_summary'] = PropTypes.exact({
|
|
|
12994
13078
|
in_transit: T['io.flow.tracking.v0.models.label_tracking_summary_update'].isRequired,
|
|
12995
13079
|
delivered: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
12996
13080
|
rejected: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
13081
|
+
returned: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
13082
|
+
crossed_border: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
13083
|
+
destroyed: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
13084
|
+
return_reversal: T['io.flow.tracking.v0.models.label_tracking_summary_update'],
|
|
12997
13085
|
});
|
|
12998
13086
|
|
|
12999
13087
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'] = PropTypes.exact({
|
|
@@ -13044,6 +13132,7 @@ T['io.flow.label.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
|
13044
13132
|
});
|
|
13045
13133
|
|
|
13046
13134
|
T['io.flow.label.v0.enums.shipment_recipient'] = PropTypes.oneOf(['customer', 'return', 'crossdock']);
|
|
13135
|
+
T['io.flow.internal.v0.enums.label_request_result_state'] = PropTypes.oneOf(['success', 'failure']);
|
|
13047
13136
|
T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
13048
13137
|
|
|
13049
13138
|
T['io.flow.ratecard.v0.models.ratecard_form'] = PropTypes.exact({
|
|
@@ -13136,6 +13225,24 @@ T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
|
13136
13225
|
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
13137
13226
|
});
|
|
13138
13227
|
|
|
13228
|
+
T['io.flow.internal.v0.models.label_request_result'] = PropTypes.exact({
|
|
13229
|
+
id: PropTypes.string.isRequired,
|
|
13230
|
+
created_at: PropTypes.string.isRequired,
|
|
13231
|
+
state: T['io.flow.internal.v0.enums.label_request_result_state'].isRequired,
|
|
13232
|
+
organization_id: PropTypes.string.isRequired,
|
|
13233
|
+
order_number: PropTypes.string.isRequired,
|
|
13234
|
+
label_request_method: T['io.flow.label.v0.enums.label_request_method'].isRequired,
|
|
13235
|
+
carrier_id: PropTypes.string,
|
|
13236
|
+
carrier_tracking_number: PropTypes.string,
|
|
13237
|
+
url: PropTypes.string,
|
|
13238
|
+
error: PropTypes.string,
|
|
13239
|
+
suggested_responsibility: T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'],
|
|
13240
|
+
origin_country: PropTypes.string,
|
|
13241
|
+
destination_country: PropTypes.string,
|
|
13242
|
+
reference_id: PropTypes.string,
|
|
13243
|
+
logistics_integration_provider: PropTypes.string,
|
|
13244
|
+
});
|
|
13245
|
+
|
|
13139
13246
|
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
13140
13247
|
id: PropTypes.string.isRequired,
|
|
13141
13248
|
order_number: PropTypes.string.isRequired,
|
|
@@ -14109,6 +14216,7 @@ T['io.flow.internal.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
|
14109
14216
|
transaction: PropTypes.number.isRequired,
|
|
14110
14217
|
merchant: PropTypes.number.isRequired,
|
|
14111
14218
|
entity: PropTypes.number.isRequired,
|
|
14219
|
+
destination_country: PropTypes.number.isRequired,
|
|
14112
14220
|
usd: PropTypes.number.isRequired,
|
|
14113
14221
|
eur: PropTypes.number.isRequired,
|
|
14114
14222
|
});
|
|
@@ -15179,6 +15287,19 @@ T['io.flow.internal.v0.models.dispute_import'] = PropTypes.exact({
|
|
|
15179
15287
|
created_at: PropTypes.string.isRequired,
|
|
15180
15288
|
});
|
|
15181
15289
|
|
|
15290
|
+
T['io.flow.payment.v0.models.payment_processor'] = PropTypes.exact({
|
|
15291
|
+
discriminator: PropTypes.oneOf(['payment_processor']).isRequired,
|
|
15292
|
+
processor: PropTypes.string.isRequired,
|
|
15293
|
+
operation_identifier: T['io.flow.payment.v0.models.payment_processor_identifier'],
|
|
15294
|
+
account: T['io.flow.payment.v0.models.payment_processor_account'],
|
|
15295
|
+
transaction_details: T['io.flow.payment.v0.unions.payment_processor_transaction_details'],
|
|
15296
|
+
});
|
|
15297
|
+
|
|
15298
|
+
T['io.flow.payment.v0.unions.expandable_payment_processor'] = PropTypes.oneOfType([
|
|
15299
|
+
T['io.flow.payment.v0.models.payment_processor'],
|
|
15300
|
+
T['io.flow.payment.v0.models.payment_processor_reference'],
|
|
15301
|
+
]);
|
|
15302
|
+
|
|
15182
15303
|
T['io.flow.internal.v0.models.dispute_details_stripe'] = PropTypes.exact({
|
|
15183
15304
|
discriminator: PropTypes.oneOf(['stripe']).isRequired,
|
|
15184
15305
|
payment_intent_id: PropTypes.string,
|
|
@@ -15206,6 +15327,7 @@ T['io.flow.internal.v0.unions.dispute_details'] = PropTypes.oneOfType([
|
|
|
15206
15327
|
T['io.flow.internal.v0.models.dispute_details_stripe'],
|
|
15207
15328
|
]);
|
|
15208
15329
|
|
|
15330
|
+
T['io.flow.internal.v0.enums.dispute_defense_outcome'] = PropTypes.oneOf(['defended', 'undefended', 'undefendable']);
|
|
15209
15331
|
T['io.flow.internal.v0.enums.dispute_billable'] = PropTypes.oneOf(['flow', 'organization']);
|
|
15210
15332
|
T['io.flow.internal.v0.enums.dispute_liability'] = PropTypes.oneOf(['flow', 'organization']);
|
|
15211
15333
|
T['io.flow.internal.v0.enums.dispute_status'] = PropTypes.oneOf(['pending', 'won', 'lost', 'expired']);
|
|
@@ -15216,6 +15338,14 @@ T['io.flow.internal.v0.models.dispute_status_form'] = PropTypes.exact({
|
|
|
15216
15338
|
|
|
15217
15339
|
T['io.flow.internal.v0.enums.dispute_reporting_category'] = PropTypes.oneOf(['charge_issues', 'delivery', 'fraud', 'general', 'product', 'returns']);
|
|
15218
15340
|
T['io.flow.internal.v0.enums.dispute_category'] = PropTypes.oneOf(['friendly_fraud', 'true_fraud', 'processing_error']);
|
|
15341
|
+
|
|
15342
|
+
T['io.flow.internal.v0.models.dispute_override_update_form'] = PropTypes.exact({
|
|
15343
|
+
billable: T['io.flow.internal.v0.enums.dispute_billable'],
|
|
15344
|
+
reporting_category: T['io.flow.internal.v0.enums.dispute_reporting_category'],
|
|
15345
|
+
category: T['io.flow.internal.v0.enums.dispute_category'],
|
|
15346
|
+
status: T['io.flow.internal.v0.enums.dispute_status'],
|
|
15347
|
+
});
|
|
15348
|
+
|
|
15219
15349
|
T['io.flow.internal.v0.enums.dispute_type'] = PropTypes.oneOf(['chargeback']);
|
|
15220
15350
|
T['io.flow.internal.v0.enums.dispute_processor'] = PropTypes.oneOf(['adyen', 'paypal', 'stripe']);
|
|
15221
15351
|
|
|
@@ -15441,6 +15571,8 @@ T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'] = PropTypes
|
|
|
15441
15571
|
'waiting_for_next_payout_date',
|
|
15442
15572
|
'waiting_for_tracking_info',
|
|
15443
15573
|
'waiting_for_positive_account_balance',
|
|
15574
|
+
'unfulfilled_amount_greater_than_negative_balance',
|
|
15575
|
+
'account_payment_hold',
|
|
15444
15576
|
]);
|
|
15445
15577
|
|
|
15446
15578
|
T['io.flow.internal.v0.models.debug_order_transaction_form_order_identifier'] = PropTypes.exact({
|
|
@@ -16247,6 +16379,22 @@ T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
|
|
|
16247
16379
|
T['io.flow.internal.v0.enums.clothing_age_classification'] = PropTypes.oneOf(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']);
|
|
16248
16380
|
T['io.flow.internal.v0.enums.classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML']);
|
|
16249
16381
|
T['io.flow.internal.v0.enums.classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
16382
|
+
|
|
16383
|
+
T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
|
|
16384
|
+
value: PropTypes.string.isRequired,
|
|
16385
|
+
unverified: PropTypes.bool.isRequired,
|
|
16386
|
+
});
|
|
16387
|
+
|
|
16388
|
+
T['io.flow.internal.v0.models.classification_product_id'] = PropTypes.exact({
|
|
16389
|
+
organization_id: PropTypes.string.isRequired,
|
|
16390
|
+
product_id: PropTypes.string.isRequired,
|
|
16391
|
+
});
|
|
16392
|
+
|
|
16393
|
+
T['io.flow.internal.v0.models.product_classification_result'] = PropTypes.exact({
|
|
16394
|
+
classified_product: T['io.flow.internal.v0.models.classified_product'].isRequired,
|
|
16395
|
+
next_product: T['io.flow.internal.v0.models.classification_product_id'],
|
|
16396
|
+
});
|
|
16397
|
+
|
|
16250
16398
|
T['io.flow.internal.v0.enums.classification_platform'] = PropTypes.oneOf(['GlobalE', 'Flow', 'Borderfree']);
|
|
16251
16399
|
|
|
16252
16400
|
T['io.flow.internal.v0.models.classification_product_result'] = PropTypes.exact({
|
|
@@ -16284,19 +16432,17 @@ T['io.flow.internal.v0.models.classification_product_request_envelope'] = PropTy
|
|
|
16284
16432
|
message: T['io.flow.internal.v0.models.classification_product_request'].isRequired,
|
|
16285
16433
|
});
|
|
16286
16434
|
|
|
16287
|
-
T['io.flow.internal.v0.models.
|
|
16288
|
-
|
|
16289
|
-
|
|
16290
|
-
|
|
16291
|
-
|
|
16292
|
-
|
|
16293
|
-
organization_id: PropTypes.string.isRequired,
|
|
16294
|
-
product_id: PropTypes.string.isRequired,
|
|
16435
|
+
T['io.flow.internal.v0.models.classification_merchant'] = PropTypes.exact({
|
|
16436
|
+
MerchantId: PropTypes.string.isRequired,
|
|
16437
|
+
PlatformId: T['io.flow.internal.v0.enums.classification_platform'].isRequired,
|
|
16438
|
+
Name: PropTypes.string.isRequired,
|
|
16439
|
+
DateLastUpdated: PropTypes.string,
|
|
16440
|
+
Order: PropTypes.number.isRequired,
|
|
16295
16441
|
});
|
|
16296
16442
|
|
|
16297
|
-
T['io.flow.internal.v0.models.
|
|
16298
|
-
|
|
16299
|
-
|
|
16443
|
+
T['io.flow.internal.v0.models.classification_merchant_envelope'] = PropTypes.exact({
|
|
16444
|
+
messageType: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
16445
|
+
message: T['io.flow.internal.v0.models.classification_merchant'].isRequired,
|
|
16300
16446
|
});
|
|
16301
16447
|
|
|
16302
16448
|
T['io.flow.internal.v0.models.customs_description_suggestion'] = PropTypes.exact({
|
|
@@ -16869,6 +17015,12 @@ T['io.flow.experience.v0.enums.order_error_code'] = PropTypes.oneOf([
|
|
|
16869
17015
|
'total_changed',
|
|
16870
17016
|
]);
|
|
16871
17017
|
|
|
17018
|
+
T['io.flow.experience.v0.models.destination_contact_detail'] = PropTypes.exact({
|
|
17019
|
+
title: PropTypes.string.isRequired,
|
|
17020
|
+
country: PropTypes.string.isRequired,
|
|
17021
|
+
import_identifier: PropTypes.string.isRequired,
|
|
17022
|
+
});
|
|
17023
|
+
|
|
16872
17024
|
T['io.flow.payment.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.device_details_browser']]);
|
|
16873
17025
|
|
|
16874
17026
|
T['io.flow.payment.gateway.v0.models.payment_request_form'] = PropTypes.exact({
|
|
@@ -17566,6 +17718,26 @@ T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'] = Prop
|
|
|
17566
17718
|
timestamp: PropTypes.string.isRequired,
|
|
17567
17719
|
});
|
|
17568
17720
|
|
|
17721
|
+
T['io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code'] = PropTypes.oneOf(['channel_order_mor_invalid', 'channel_order_does_not_exist']);
|
|
17722
|
+
|
|
17723
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_failure'] = PropTypes.exact({
|
|
17724
|
+
id: PropTypes.string.isRequired,
|
|
17725
|
+
organization_id: PropTypes.string.isRequired,
|
|
17726
|
+
channel_id: PropTypes.string.isRequired,
|
|
17727
|
+
payment_request_id: PropTypes.string.isRequired,
|
|
17728
|
+
code: T['io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code'].isRequired,
|
|
17729
|
+
reason: PropTypes.string.isRequired,
|
|
17730
|
+
});
|
|
17731
|
+
|
|
17732
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_failed'] = PropTypes.exact({
|
|
17733
|
+
discriminator: PropTypes.oneOf(['channel_order_acceptance_failed']).isRequired,
|
|
17734
|
+
event_id: PropTypes.string.isRequired,
|
|
17735
|
+
timestamp: PropTypes.string.isRequired,
|
|
17736
|
+
organization: PropTypes.string.isRequired,
|
|
17737
|
+
channel_id: PropTypes.string.isRequired,
|
|
17738
|
+
channel_order_acceptance_failure: T['io.flow.internal.v0.models.channel_order_acceptance_failure'].isRequired,
|
|
17739
|
+
});
|
|
17740
|
+
|
|
17569
17741
|
T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropTypes.oneOf([
|
|
17570
17742
|
'unsupported_origin_country',
|
|
17571
17743
|
'unsupported_destination_country',
|
|
@@ -17735,6 +17907,7 @@ T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
|
|
|
17735
17907
|
description: PropTypes.string,
|
|
17736
17908
|
order_number: PropTypes.string,
|
|
17737
17909
|
raw_carrier_event_code: PropTypes.string,
|
|
17910
|
+
aggregator_status_code: PropTypes.string,
|
|
17738
17911
|
created_at: PropTypes.string,
|
|
17739
17912
|
});
|
|
17740
17913
|
|
|
@@ -18277,6 +18450,24 @@ T['io.flow.catalog.v0.models.item_form_overlay_form'] = PropTypes.exact({
|
|
|
18277
18450
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
18278
18451
|
dimensions: T['io.flow.common.v0.models.dimensions'],
|
|
18279
18452
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
18453
|
+
deleted_at: PropTypes.string,
|
|
18454
|
+
});
|
|
18455
|
+
|
|
18456
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions'] = PropTypes.exact({
|
|
18457
|
+
id: PropTypes.string.isRequired,
|
|
18458
|
+
organization_id: PropTypes.string.isRequired,
|
|
18459
|
+
tracking_label_id: PropTypes.string.isRequired,
|
|
18460
|
+
source: T['io.flow.internal.v0.enums.tracking_label_dimensions_source'].isRequired,
|
|
18461
|
+
created_at: PropTypes.string.isRequired,
|
|
18462
|
+
dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
|
|
18463
|
+
});
|
|
18464
|
+
|
|
18465
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions_upserted'] = PropTypes.exact({
|
|
18466
|
+
discriminator: PropTypes.oneOf(['tracking_label_dimensions_upserted']).isRequired,
|
|
18467
|
+
event_id: PropTypes.string.isRequired,
|
|
18468
|
+
timestamp: PropTypes.string.isRequired,
|
|
18469
|
+
organization: PropTypes.string.isRequired,
|
|
18470
|
+
tracking_label_dimensions: T['io.flow.internal.v0.models.tracking_label_dimensions'].isRequired,
|
|
18280
18471
|
});
|
|
18281
18472
|
|
|
18282
18473
|
T['io.flow.catalog.v0.models.item_form'] = PropTypes.exact({
|
|
@@ -18290,6 +18481,7 @@ T['io.flow.catalog.v0.models.item_form'] = PropTypes.exact({
|
|
|
18290
18481
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
18291
18482
|
dimensions: T['io.flow.common.v0.models.dimensions'],
|
|
18292
18483
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
18484
|
+
deleted_at: PropTypes.string,
|
|
18293
18485
|
});
|
|
18294
18486
|
|
|
18295
18487
|
T['io.flow.internal.v0.models.internal_item_form'] = PropTypes.exact({
|
|
@@ -18596,12 +18788,6 @@ T['io.flow.trueup.v0.models.label_base'] = PropTypes.exact({
|
|
|
18596
18788
|
weight: PropTypes.number.isRequired,
|
|
18597
18789
|
});
|
|
18598
18790
|
|
|
18599
|
-
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
18600
|
-
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
18601
|
-
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
18602
|
-
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
18603
|
-
});
|
|
18604
|
-
|
|
18605
18791
|
T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
|
|
18606
18792
|
currency: PropTypes.string.isRequired,
|
|
18607
18793
|
weight: T['io.flow.units.v0.enums.unit_of_weight'],
|
|
@@ -20027,6 +20213,50 @@ T['io.flow.internal.v0.models.shopify_payment_summary'] = PropTypes.exact({
|
|
|
20027
20213
|
contact: T['io.flow.common.v0.models.contact'],
|
|
20028
20214
|
});
|
|
20029
20215
|
|
|
20216
|
+
T['io.flow.internal.v0.models.public_hub_form'] = PropTypes.exact({
|
|
20217
|
+
code: PropTypes.string.isRequired,
|
|
20218
|
+
third_party_logistics_reference: PropTypes.string.isRequired,
|
|
20219
|
+
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20220
|
+
location: T['io.flow.common.v0.models.address'].isRequired,
|
|
20221
|
+
});
|
|
20222
|
+
|
|
20223
|
+
T['io.flow.internal.v0.models.public_hub'] = PropTypes.exact({
|
|
20224
|
+
id: PropTypes.string.isRequired,
|
|
20225
|
+
code: PropTypes.string.isRequired,
|
|
20226
|
+
third_party_logistics_reference: PropTypes.string.isRequired,
|
|
20227
|
+
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20228
|
+
location: T['io.flow.common.v0.models.address'].isRequired,
|
|
20229
|
+
});
|
|
20230
|
+
|
|
20231
|
+
T['io.flow.internal.v0.models.merchant_hub_override_form'] = PropTypes.exact({
|
|
20232
|
+
code: PropTypes.string.isRequired,
|
|
20233
|
+
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20234
|
+
location: T['io.flow.common.v0.models.address'].isRequired,
|
|
20235
|
+
});
|
|
20236
|
+
|
|
20237
|
+
T['io.flow.internal.v0.models.merchant_hub_override'] = PropTypes.exact({
|
|
20238
|
+
id: PropTypes.string.isRequired,
|
|
20239
|
+
organization_id: PropTypes.string.isRequired,
|
|
20240
|
+
code: PropTypes.string.isRequired,
|
|
20241
|
+
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20242
|
+
location: T['io.flow.common.v0.models.address'].isRequired,
|
|
20243
|
+
});
|
|
20244
|
+
|
|
20245
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks'] = PropTypes.exact({
|
|
20246
|
+
id: PropTypes.string.isRequired,
|
|
20247
|
+
packaging: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.packaging']).isRequired,
|
|
20248
|
+
contact: T['io.flow.common.v0.models.contact'].isRequired,
|
|
20249
|
+
location: T['io.flow.common.v0.models.address'],
|
|
20250
|
+
});
|
|
20251
|
+
|
|
20252
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'] = PropTypes.exact({
|
|
20253
|
+
discriminator: PropTypes.oneOf(['fulfillment_fallbacks_upserted']).isRequired,
|
|
20254
|
+
event_id: PropTypes.string.isRequired,
|
|
20255
|
+
timestamp: PropTypes.string.isRequired,
|
|
20256
|
+
organization: PropTypes.string.isRequired,
|
|
20257
|
+
fulfillment_fallbacks: T['io.flow.internal.v0.models.fulfillment_fallbacks'].isRequired,
|
|
20258
|
+
});
|
|
20259
|
+
|
|
20030
20260
|
T['io.flow.experience.v0.models.order_address'] = PropTypes.exact({
|
|
20031
20261
|
text: PropTypes.string,
|
|
20032
20262
|
streets: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -20995,6 +21225,39 @@ T['io.flow.internal.v0.models.internal_authorization_deleted'] = PropTypes.exact
|
|
|
20995
21225
|
internal_authorization: T['io.flow.internal.v0.models.internal_authorization'].isRequired,
|
|
20996
21226
|
});
|
|
20997
21227
|
|
|
21228
|
+
T['io.flow.internal.v0.models.adyen_internal_dispute'] = PropTypes.exact({
|
|
21229
|
+
id: PropTypes.string.isRequired,
|
|
21230
|
+
amount: PropTypes.number.isRequired,
|
|
21231
|
+
currency: PropTypes.string.isRequired,
|
|
21232
|
+
psp_reference: PropTypes.string.isRequired,
|
|
21233
|
+
original_reference: PropTypes.string,
|
|
21234
|
+
event_code: PropTypes.string.isRequired,
|
|
21235
|
+
event_date: PropTypes.string.isRequired,
|
|
21236
|
+
chargeback_reason_code: PropTypes.string,
|
|
21237
|
+
modification_merchant_references: PropTypes.string,
|
|
21238
|
+
chargeback_scheme_code: PropTypes.string,
|
|
21239
|
+
defense_period_ends_at: PropTypes.string,
|
|
21240
|
+
dispute_status: PropTypes.string,
|
|
21241
|
+
defendable: PropTypes.string,
|
|
21242
|
+
merchant_account_code: PropTypes.string.isRequired,
|
|
21243
|
+
operations: PropTypes.arrayOf(PropTypes.string),
|
|
21244
|
+
merchant_reference: PropTypes.string.isRequired,
|
|
21245
|
+
payment_method: PropTypes.string,
|
|
21246
|
+
reason: PropTypes.string,
|
|
21247
|
+
success: PropTypes.string.isRequired,
|
|
21248
|
+
livemode: PropTypes.bool.isRequired,
|
|
21249
|
+
updated_by_user_id: PropTypes.string.isRequired,
|
|
21250
|
+
created_at: PropTypes.string.isRequired,
|
|
21251
|
+
updated_at: PropTypes.string.isRequired,
|
|
21252
|
+
});
|
|
21253
|
+
|
|
21254
|
+
T['io.flow.internal.v0.models.adyen_dispute_upserted'] = PropTypes.exact({
|
|
21255
|
+
discriminator: PropTypes.oneOf(['adyen_dispute_upserted']).isRequired,
|
|
21256
|
+
event_id: PropTypes.string.isRequired,
|
|
21257
|
+
timestamp: PropTypes.string.isRequired,
|
|
21258
|
+
dispute: T['io.flow.internal.v0.models.adyen_internal_dispute'].isRequired,
|
|
21259
|
+
});
|
|
21260
|
+
|
|
20998
21261
|
T['io.flow.internal.v0.models.adyen_internal_capture'] = PropTypes.exact({
|
|
20999
21262
|
id: PropTypes.string.isRequired,
|
|
21000
21263
|
flow_capture_id: PropTypes.string.isRequired,
|
|
@@ -21724,6 +21987,18 @@ T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
|
|
|
21724
21987
|
updated_at: PropTypes.string.isRequired,
|
|
21725
21988
|
});
|
|
21726
21989
|
|
|
21990
|
+
T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
|
|
21991
|
+
units: T['io.flow.trueup.v0.models.label_units'].isRequired,
|
|
21992
|
+
base: T['io.flow.trueup.v0.models.label_base'].isRequired,
|
|
21993
|
+
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']).isRequired,
|
|
21994
|
+
});
|
|
21995
|
+
|
|
21996
|
+
T['io.flow.label.v0.models.shipping_label_lane_summary'] = PropTypes.exact({
|
|
21997
|
+
id: PropTypes.string,
|
|
21998
|
+
ratecard: T['io.flow.label.v0.models.shipping_label_ratecard_summary'].isRequired,
|
|
21999
|
+
weight_break: PropTypes.number,
|
|
22000
|
+
});
|
|
22001
|
+
|
|
21727
22002
|
T['io.flow.internal.v0.enums.address_configuration_setting_province_code'] = PropTypes.oneOf(['iso_3166_2', 'name']);
|
|
21728
22003
|
|
|
21729
22004
|
T['io.flow.internal.v0.models.address_configuration_setting_form'] = PropTypes.exact({
|
|
@@ -22362,12 +22637,6 @@ T['io.flow.common.v0.models.discounts_form'] = PropTypes.exact({
|
|
|
22362
22637
|
discounts: PropTypes.arrayOf(T['io.flow.common.v0.models.discount_form']).isRequired,
|
|
22363
22638
|
});
|
|
22364
22639
|
|
|
22365
|
-
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
22366
|
-
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
22367
|
-
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
22368
|
-
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
22369
|
-
});
|
|
22370
|
-
|
|
22371
22640
|
T['io.flow.common.v0.models.line_item_form'] = PropTypes.exact({
|
|
22372
22641
|
number: PropTypes.string.isRequired,
|
|
22373
22642
|
quantity: PropTypes.number.isRequired,
|
|
@@ -22503,6 +22772,7 @@ T['io.flow.label.v0.models.summary_shipping_label_form'] = PropTypes.exact({
|
|
|
22503
22772
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
22504
22773
|
center_key: PropTypes.string,
|
|
22505
22774
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
22775
|
+
reference_id: PropTypes.string,
|
|
22506
22776
|
});
|
|
22507
22777
|
|
|
22508
22778
|
T['io.flow.label.v0.models.shipping_label_package'] = PropTypes.exact({
|
|
@@ -22595,6 +22865,7 @@ T['io.flow.label.v0.models.detailed_shipping_label_form'] = PropTypes.exact({
|
|
|
22595
22865
|
service: PropTypes.string,
|
|
22596
22866
|
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
22597
22867
|
package_dimensions_source: T['io.flow.label.v0.enums.package_dimensions_source'],
|
|
22868
|
+
reference_id: PropTypes.string,
|
|
22598
22869
|
});
|
|
22599
22870
|
|
|
22600
22871
|
T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
@@ -22604,6 +22875,8 @@ T['io.flow.label.v0.models.bridge_shipping_label_form'] = PropTypes.exact({
|
|
|
22604
22875
|
'package': T['io.flow.label.v0.models.shipping_label_package'],
|
|
22605
22876
|
origin: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
22606
22877
|
direction: T['io.flow.label.v0.enums.direction'],
|
|
22878
|
+
reference_id: PropTypes.string,
|
|
22879
|
+
hub_code: PropTypes.string,
|
|
22607
22880
|
});
|
|
22608
22881
|
|
|
22609
22882
|
T['io.flow.label.v0.unions.shipping_label_form'] = PropTypes.oneOfType([
|
|
@@ -22933,7 +23206,7 @@ T['io.flow.internal.v0.unions.fuel_surcharge_service_fee_put_form'] = PropTypes.
|
|
|
22933
23206
|
T['io.flow.internal.v0.models.dispute'] = PropTypes.exact({
|
|
22934
23207
|
id: PropTypes.string.isRequired,
|
|
22935
23208
|
organization_id: PropTypes.string.isRequired,
|
|
22936
|
-
order: T['io.flow.internal.v0.models.dispute_order_reference']
|
|
23209
|
+
order: T['io.flow.internal.v0.models.dispute_order_reference'],
|
|
22937
23210
|
authorization: T['io.flow.internal.v0.models.dispute_authorization_reference'].isRequired,
|
|
22938
23211
|
processor: T['io.flow.internal.v0.enums.dispute_processor'].isRequired,
|
|
22939
23212
|
key: PropTypes.string.isRequired,
|
|
@@ -22946,10 +23219,12 @@ T['io.flow.internal.v0.models.dispute'] = PropTypes.exact({
|
|
|
22946
23219
|
status: T['io.flow.internal.v0.enums.dispute_status'].isRequired,
|
|
22947
23220
|
liability: T['io.flow.internal.v0.enums.dispute_liability'].isRequired,
|
|
22948
23221
|
billable: T['io.flow.internal.v0.enums.dispute_billable'].isRequired,
|
|
23222
|
+
defense_outcome: T['io.flow.internal.v0.enums.dispute_defense_outcome'],
|
|
22949
23223
|
details: T['io.flow.internal.v0.unions.dispute_details'].isRequired,
|
|
22950
23224
|
issued_at: PropTypes.string.isRequired,
|
|
22951
23225
|
expires_at: PropTypes.string,
|
|
22952
23226
|
created_at: PropTypes.string.isRequired,
|
|
23227
|
+
updated_at: PropTypes.string,
|
|
22953
23228
|
});
|
|
22954
23229
|
|
|
22955
23230
|
T['io.flow.internal.v0.models.dispute_upserted'] = PropTypes.exact({
|
|
@@ -22960,6 +23235,11 @@ T['io.flow.internal.v0.models.dispute_upserted'] = PropTypes.exact({
|
|
|
22960
23235
|
dispute: T['io.flow.internal.v0.models.dispute'].isRequired,
|
|
22961
23236
|
});
|
|
22962
23237
|
|
|
23238
|
+
T['io.flow.internal.v0.models.dispute_detail'] = PropTypes.exact({
|
|
23239
|
+
authorization: T['io.flow.internal.v0.models.search_authorization'].isRequired,
|
|
23240
|
+
dispute: T['io.flow.internal.v0.models.dispute'].isRequired,
|
|
23241
|
+
});
|
|
23242
|
+
|
|
22963
23243
|
T['io.flow.common.v0.models.money_with_base'] = PropTypes.exact({
|
|
22964
23244
|
currency: PropTypes.string.isRequired,
|
|
22965
23245
|
amount: PropTypes.number.isRequired,
|
|
@@ -23253,6 +23533,27 @@ T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
|
23253
23533
|
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
23254
23534
|
});
|
|
23255
23535
|
|
|
23536
|
+
T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
23537
|
+
lane: T['io.flow.label.v0.models.shipping_label_lane_summary'].isRequired,
|
|
23538
|
+
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
23539
|
+
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
23540
|
+
});
|
|
23541
|
+
|
|
23542
|
+
T['io.flow.internal.v0.models.adjusted_estimates'] = PropTypes.exact({
|
|
23543
|
+
id: PropTypes.string.isRequired,
|
|
23544
|
+
organization_id: PropTypes.string.isRequired,
|
|
23545
|
+
label_id: PropTypes.string.isRequired,
|
|
23546
|
+
estimates: PropTypes.arrayOf(T['io.flow.label.v0.models.shipping_label_hop_summary']).isRequired,
|
|
23547
|
+
});
|
|
23548
|
+
|
|
23549
|
+
T['io.flow.internal.v0.models.adjusted_estimates_upserted'] = PropTypes.exact({
|
|
23550
|
+
discriminator: PropTypes.oneOf(['adjusted_estimates_upserted']).isRequired,
|
|
23551
|
+
event_id: PropTypes.string.isRequired,
|
|
23552
|
+
timestamp: PropTypes.string.isRequired,
|
|
23553
|
+
organization: PropTypes.string.isRequired,
|
|
23554
|
+
adjusted_estimates: T['io.flow.internal.v0.models.adjusted_estimates'].isRequired,
|
|
23555
|
+
});
|
|
23556
|
+
|
|
23256
23557
|
T['io.flow.internal.v0.models.additional_import_tax'] = PropTypes.exact({
|
|
23257
23558
|
name: PropTypes.string,
|
|
23258
23559
|
additional_import_tax_value: T['io.flow.common.v0.models.money'],
|
|
@@ -23832,6 +24133,7 @@ T['io.flow.internal.v0.models.commercial_invoice_internal'] = PropTypes.exact({
|
|
|
23832
24133
|
rex_number: PropTypes.string,
|
|
23833
24134
|
wee_number: PropTypes.string,
|
|
23834
24135
|
business_gst_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24136
|
+
destination_gst_numbers: PropTypes.arrayOf(PropTypes.string),
|
|
23835
24137
|
vat_name: PropTypes.string.isRequired,
|
|
23836
24138
|
shipping_price: PropTypes.string.isRequired,
|
|
23837
24139
|
shipment_recipient: PropTypes.string,
|
|
@@ -24162,6 +24464,7 @@ T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
|
|
|
24162
24464
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24163
24465
|
dimensions: T['io.flow.common.v0.models.dimensions'],
|
|
24164
24466
|
images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
|
|
24467
|
+
deleted_at: PropTypes.string,
|
|
24165
24468
|
});
|
|
24166
24469
|
|
|
24167
24470
|
T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
|
|
@@ -25451,6 +25754,7 @@ T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
|
|
|
25451
25754
|
local: T['io.flow.catalog.v0.models.local'],
|
|
25452
25755
|
created_at: PropTypes.string,
|
|
25453
25756
|
updated_at: PropTypes.string,
|
|
25757
|
+
deleted_at: PropTypes.string,
|
|
25454
25758
|
});
|
|
25455
25759
|
|
|
25456
25760
|
T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
|
|
@@ -25566,6 +25870,7 @@ T['io.flow.experience.v0.models.order'] = PropTypes.exact({
|
|
|
25566
25870
|
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
25567
25871
|
geo: T['io.flow.experience.v0.models.order_geo'],
|
|
25568
25872
|
device_details: T['io.flow.payment.v0.unions.device_details'],
|
|
25873
|
+
destination_contact_details: PropTypes.arrayOf(T['io.flow.experience.v0.models.destination_contact_detail']),
|
|
25569
25874
|
});
|
|
25570
25875
|
|
|
25571
25876
|
T['io.flow.shopify.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
|
|
@@ -27024,6 +27329,8 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
27024
27329
|
});
|
|
27025
27330
|
|
|
27026
27331
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
27332
|
+
T['io.flow.internal.v0.models.adjusted_estimates_upserted'],
|
|
27333
|
+
T['io.flow.internal.v0.models.adjusted_estimates_deleted'],
|
|
27027
27334
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
27028
27335
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
27029
27336
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -27032,6 +27339,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27032
27339
|
T['io.flow.internal.v0.models.adyen_capture_upserted'],
|
|
27033
27340
|
T['io.flow.internal.v0.models.adyen_refund_deleted'],
|
|
27034
27341
|
T['io.flow.internal.v0.models.adyen_refund_upserted'],
|
|
27342
|
+
T['io.flow.internal.v0.models.adyen_dispute_upserted'],
|
|
27343
|
+
T['io.flow.internal.v0.models.adyen_dispute_deleted'],
|
|
27035
27344
|
T['io.flow.internal.v0.models.index_assignment_upserted'],
|
|
27036
27345
|
T['io.flow.internal.v0.models.index_assignment_deleted'],
|
|
27037
27346
|
T['io.flow.internal.v0.models.fulfillment_upserted'],
|
|
@@ -27105,6 +27414,7 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27105
27414
|
T['io.flow.internal.v0.models.catalog_settings_deleted'],
|
|
27106
27415
|
T['io.flow.internal.v0.models.channel_order_acceptance_upserted'],
|
|
27107
27416
|
T['io.flow.internal.v0.models.channel_order_acceptance_deleted'],
|
|
27417
|
+
T['io.flow.internal.v0.models.channel_order_acceptance_failed'],
|
|
27108
27418
|
T['io.flow.internal.v0.models.checkout_configuration_upserted'],
|
|
27109
27419
|
T['io.flow.internal.v0.models.checkout_configuration_deleted'],
|
|
27110
27420
|
T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'],
|
|
@@ -27197,6 +27507,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27197
27507
|
T['io.flow.internal.v0.models.ftp_file_to_process_uploaded'],
|
|
27198
27508
|
T['io.flow.internal.v0.models.center_defaults_upserted'],
|
|
27199
27509
|
T['io.flow.internal.v0.models.center_defaults_deleted'],
|
|
27510
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'],
|
|
27511
|
+
T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'],
|
|
27200
27512
|
T['io.flow.internal.v0.models.pregenerated_request_event'],
|
|
27201
27513
|
T['io.flow.internal.v0.models.quote_upserted'],
|
|
27202
27514
|
T['io.flow.internal.v0.models.quote_deleted'],
|
|
@@ -27394,6 +27706,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27394
27706
|
T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'],
|
|
27395
27707
|
T['io.flow.internal.v0.models.tracking_assurance_job_upserted'],
|
|
27396
27708
|
T['io.flow.internal.v0.models.tracking_assurance_job_deleted'],
|
|
27709
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions_upserted'],
|
|
27710
|
+
T['io.flow.internal.v0.models.tracking_label_dimensions_deleted'],
|
|
27397
27711
|
T['io.flow.internal.v0.models.tracking_request_upserted'],
|
|
27398
27712
|
T['io.flow.internal.v0.models.tracking_response_upserted'],
|
|
27399
27713
|
T['io.flow.internal.v0.models.user_upserted_v2'],
|
|
@@ -27430,6 +27744,7 @@ T['io.flow.internal.v0.models.order_detail'] = PropTypes.exact({
|
|
|
27430
27744
|
created_at: PropTypes.string.isRequired,
|
|
27431
27745
|
updated_at: PropTypes.string.isRequired,
|
|
27432
27746
|
shopify_order_id: PropTypes.string,
|
|
27747
|
+
disputes: PropTypes.arrayOf(T['io.flow.internal.v0.models.dispute_detail']).isRequired,
|
|
27433
27748
|
});
|
|
27434
27749
|
|
|
27435
27750
|
T['io.flow.internal.v0.models.cli_log_entry'] = PropTypes.exact({
|
|
@@ -27562,6 +27877,8 @@ T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_c
|
|
|
27562
27877
|
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
|
|
27563
27878
|
|
|
27564
27879
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
27880
|
+
'adjusted_estimates_upserted',
|
|
27881
|
+
'adjusted_estimates_deleted',
|
|
27565
27882
|
'adyen_authorization_deleted',
|
|
27566
27883
|
'adyen_authorization_upserted',
|
|
27567
27884
|
'adyen_cancel_deleted',
|
|
@@ -27570,6 +27887,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27570
27887
|
'adyen_capture_upserted',
|
|
27571
27888
|
'adyen_refund_deleted',
|
|
27572
27889
|
'adyen_refund_upserted',
|
|
27890
|
+
'adyen_dispute_upserted',
|
|
27891
|
+
'adyen_dispute_deleted',
|
|
27573
27892
|
'index_assignment_upserted',
|
|
27574
27893
|
'index_assignment_deleted',
|
|
27575
27894
|
'fulfillment_upserted',
|
|
@@ -27643,6 +27962,7 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27643
27962
|
'catalog_settings_deleted',
|
|
27644
27963
|
'channel_order_acceptance_upserted',
|
|
27645
27964
|
'channel_order_acceptance_deleted',
|
|
27965
|
+
'channel_order_acceptance_failed',
|
|
27646
27966
|
'checkout_configuration_upserted',
|
|
27647
27967
|
'checkout_configuration_deleted',
|
|
27648
27968
|
'commercial_invoice_internal_upserted',
|
|
@@ -27735,6 +28055,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27735
28055
|
'ftp_file_to_process_uploaded',
|
|
27736
28056
|
'center_defaults_upserted',
|
|
27737
28057
|
'center_defaults_deleted',
|
|
28058
|
+
'fulfillment_fallbacks_upserted',
|
|
28059
|
+
'fulfillment_fallbacks_deleted',
|
|
27738
28060
|
'pregenerated_request_event',
|
|
27739
28061
|
'quote_upserted',
|
|
27740
28062
|
'quote_deleted',
|
|
@@ -27932,6 +28254,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27932
28254
|
'tracking_assurance_analysis_deleted',
|
|
27933
28255
|
'tracking_assurance_job_upserted',
|
|
27934
28256
|
'tracking_assurance_job_deleted',
|
|
28257
|
+
'tracking_label_dimensions_upserted',
|
|
28258
|
+
'tracking_label_dimensions_deleted',
|
|
27935
28259
|
'tracking_request_upserted',
|
|
27936
28260
|
'tracking_response_upserted',
|
|
27937
28261
|
'user_upserted_v2',
|
|
@@ -27955,6 +28279,7 @@ T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
|
|
|
27955
28279
|
|
|
27956
28280
|
T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
27957
28281
|
T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
|
|
28282
|
+
T['io.flow.internal.v0.enums.label_request_result_organization_type'] = PropTypes.oneOf(['all', 'legacy_production', 'managed_markets_production', 'sandbox']);
|
|
27958
28283
|
T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
|
|
27959
28284
|
T['io.flow.internal.v0.enums.marketing_gateway_feed_download_format'] = PropTypes.oneOf(['tsv', 'csv', 'txt']);
|
|
27960
28285
|
T['io.flow.internal.v0.enums.marketing_gateway_product_status'] = PropTypes.oneOf(['approved', 'not_approved', 'pending', 'not_found', 'excluded']);
|
|
@@ -28697,6 +29022,13 @@ T['io.flow.internal.v0.models.partner_organization_authorization_form'] = PropTy
|
|
|
28697
29022
|
partner: PropTypes.string.isRequired,
|
|
28698
29023
|
});
|
|
28699
29024
|
|
|
29025
|
+
T['io.flow.internal.v0.models.partner_request'] = PropTypes.exact({
|
|
29026
|
+
id: PropTypes.string.isRequired,
|
|
29027
|
+
partner_id: PropTypes.string.isRequired,
|
|
29028
|
+
organization_id: PropTypes.string.isRequired,
|
|
29029
|
+
request_body: PropTypes.string,
|
|
29030
|
+
});
|
|
29031
|
+
|
|
28700
29032
|
T['io.flow.internal.v0.models.passphrase_form'] = PropTypes.exact({
|
|
28701
29033
|
tribe: PropTypes.string.isRequired,
|
|
28702
29034
|
current_password: PropTypes.string,
|
|
@@ -29542,13 +29874,6 @@ T['io.flow.adyen.v0.models.challenge_shopper_additional_data'] = PropTypes.exact
|
|
|
29542
29874
|
'threeds2.threeDS2ResponseData.messageVersion': PropTypes.string.isRequired,
|
|
29543
29875
|
});
|
|
29544
29876
|
|
|
29545
|
-
T['io.flow.adyen.v0.models.chargeback_notification_additional_data'] = PropTypes.exact({
|
|
29546
|
-
chargebackReasonCode: PropTypes.string.isRequired,
|
|
29547
|
-
modificationMerchantReferences: PropTypes.string.isRequired,
|
|
29548
|
-
chargebackSchemeCode: PropTypes.string.isRequired,
|
|
29549
|
-
defensePeriodEndsAt: PropTypes.string,
|
|
29550
|
-
});
|
|
29551
|
-
|
|
29552
29877
|
T['io.flow.adyen.v0.models.error'] = PropTypes.exact({
|
|
29553
29878
|
status: PropTypes.number.isRequired,
|
|
29554
29879
|
errorCode: PropTypes.string.isRequired,
|
|
@@ -30296,6 +30621,9 @@ export const addressConfigurationProvinceSetting = T['io.flow.internal.v0.models
|
|
|
30296
30621
|
export const addressConfigurationSetting = T['io.flow.internal.v0.models.address_configuration_setting'];
|
|
30297
30622
|
export const addressConfigurationSettingForm = T['io.flow.internal.v0.models.address_configuration_setting_form'];
|
|
30298
30623
|
export const addressConfigurationSettingProvinceCode = T['io.flow.internal.v0.enums.address_configuration_setting_province_code'];
|
|
30624
|
+
export const adjustedEstimates = T['io.flow.internal.v0.models.adjusted_estimates'];
|
|
30625
|
+
export const adjustedEstimatesDeleted = T['io.flow.internal.v0.models.adjusted_estimates_deleted'];
|
|
30626
|
+
export const adjustedEstimatesUpserted = T['io.flow.internal.v0.models.adjusted_estimates_upserted'];
|
|
30299
30627
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
30300
30628
|
export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
|
|
30301
30629
|
export const adjustmentAmountPercentage = T['io.flow.internal.v0.models.adjustment_amount_percentage'];
|
|
@@ -30318,10 +30646,13 @@ export const adyenCancelDeleted = T['io.flow.internal.v0.models.adyen_cancel_del
|
|
|
30318
30646
|
export const adyenCancelUpserted = T['io.flow.internal.v0.models.adyen_cancel_upserted'];
|
|
30319
30647
|
export const adyenCaptureDeleted = T['io.flow.internal.v0.models.adyen_capture_deleted'];
|
|
30320
30648
|
export const adyenCaptureUpserted = T['io.flow.internal.v0.models.adyen_capture_upserted'];
|
|
30649
|
+
export const adyenDisputeDeleted = T['io.flow.internal.v0.models.adyen_dispute_deleted'];
|
|
30650
|
+
export const adyenDisputeUpserted = T['io.flow.internal.v0.models.adyen_dispute_upserted'];
|
|
30321
30651
|
export const adyenIntegrationType = T['io.flow.internal.v0.enums.adyen_integration_type'];
|
|
30322
30652
|
export const adyenInternalAuthorization = T['io.flow.internal.v0.models.adyen_internal_authorization'];
|
|
30323
30653
|
export const adyenInternalCancel = T['io.flow.internal.v0.models.adyen_internal_cancel'];
|
|
30324
30654
|
export const adyenInternalCapture = T['io.flow.internal.v0.models.adyen_internal_capture'];
|
|
30655
|
+
export const adyenInternalDispute = T['io.flow.internal.v0.models.adyen_internal_dispute'];
|
|
30325
30656
|
export const adyenInternalRefund = T['io.flow.internal.v0.models.adyen_internal_refund'];
|
|
30326
30657
|
export const adyenMerchant = T['io.flow.internal.v0.models.adyen_merchant'];
|
|
30327
30658
|
export const adyenMerchantAccount = T['io.flow.internal.v0.models.adyen_merchant_account'];
|
|
@@ -30363,6 +30694,7 @@ export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_referenc
|
|
|
30363
30694
|
export const apmContent = T['io.flow.internal.v0.models.apm_content'];
|
|
30364
30695
|
export const applePayAuthorizationPayload = T['io.flow.internal.v0.models.apple_pay_authorization_payload'];
|
|
30365
30696
|
export const applyAtValueForm = T['io.flow.internal.v0.models.apply_at_value_form'];
|
|
30697
|
+
export const attemptStatistics = T['io.flow.internal.v0.models.attempt_statistics'];
|
|
30366
30698
|
export const attributeLabel = T['io.flow.internal.v0.models.attribute_label'];
|
|
30367
30699
|
export const authenticationForm = T['io.flow.internal.v0.models.authentication_form'];
|
|
30368
30700
|
export const authorizationBundle = T['io.flow.internal.v0.models.authorization_bundle'];
|
|
@@ -30533,6 +30865,9 @@ export const channelOrderAcceptance = T['io.flow.internal.v0.models.channel_orde
|
|
|
30533
30865
|
export const channelOrderAcceptanceDeleted = T['io.flow.internal.v0.models.channel_order_acceptance_deleted'];
|
|
30534
30866
|
export const channelOrderAcceptanceDetails = T['io.flow.internal.v0.models.channel_order_acceptance_details'];
|
|
30535
30867
|
export const channelOrderAcceptanceErrorAction = T['io.flow.internal.v0.enums.channel_order_acceptance_error_action'];
|
|
30868
|
+
export const channelOrderAcceptanceFailed = T['io.flow.internal.v0.models.channel_order_acceptance_failed'];
|
|
30869
|
+
export const channelOrderAcceptanceFailure = T['io.flow.internal.v0.models.channel_order_acceptance_failure'];
|
|
30870
|
+
export const channelOrderAcceptanceFailureReasonCode = T['io.flow.internal.v0.enums.channel_order_acceptance_failure_reason_code'];
|
|
30536
30871
|
export const channelOrderAcceptanceForm = T['io.flow.internal.v0.models.channel_order_acceptance_form'];
|
|
30537
30872
|
export const channelOrderAcceptanceNextActionFrom = T['io.flow.internal.v0.enums.channel_order_acceptance_next_action_from'];
|
|
30538
30873
|
export const channelOrderAcceptanceReason = T['io.flow.internal.v0.models.channel_order_acceptance_reason'];
|
|
@@ -30628,6 +30963,8 @@ export const classificationFormWrapper = T['io.flow.internal.v0.models.classific
|
|
|
30628
30963
|
export const classificationItem = T['io.flow.internal.v0.models.classification_item'];
|
|
30629
30964
|
export const classificationJudgementForm = T['io.flow.internal.v0.unions.classification_judgement_form'];
|
|
30630
30965
|
export const classificationLabelAttribute = T['io.flow.internal.v0.unions.classification_label_attribute'];
|
|
30966
|
+
export const classificationMerchant = T['io.flow.internal.v0.models.classification_merchant'];
|
|
30967
|
+
export const classificationMerchantEnvelope = T['io.flow.internal.v0.models.classification_merchant_envelope'];
|
|
30631
30968
|
export const classificationPlatform = T['io.flow.internal.v0.enums.classification_platform'];
|
|
30632
30969
|
export const classificationProduct = T['io.flow.internal.v0.models.classification_product'];
|
|
30633
30970
|
export const classificationProductHarmonization = T['io.flow.internal.v0.models.classification_product_harmonization'];
|
|
@@ -30765,7 +31102,9 @@ export const dispute = T['io.flow.internal.v0.models.dispute'];
|
|
|
30765
31102
|
export const disputeAuthorizationReference = T['io.flow.internal.v0.models.dispute_authorization_reference'];
|
|
30766
31103
|
export const disputeBillable = T['io.flow.internal.v0.enums.dispute_billable'];
|
|
30767
31104
|
export const disputeCategory = T['io.flow.internal.v0.enums.dispute_category'];
|
|
31105
|
+
export const disputeDefenseOutcome = T['io.flow.internal.v0.enums.dispute_defense_outcome'];
|
|
30768
31106
|
export const disputeDeleted = T['io.flow.internal.v0.models.dispute_deleted'];
|
|
31107
|
+
export const disputeDetail = T['io.flow.internal.v0.models.dispute_detail'];
|
|
30769
31108
|
export const disputeDetails = T['io.flow.internal.v0.unions.dispute_details'];
|
|
30770
31109
|
export const disputeDetailsAdyen = T['io.flow.internal.v0.models.dispute_details_adyen'];
|
|
30771
31110
|
export const disputeDetailsPaypal = T['io.flow.internal.v0.models.dispute_details_paypal'];
|
|
@@ -30780,6 +31119,7 @@ export const disputeImportType = T['io.flow.internal.v0.enums.dispute_import_typ
|
|
|
30780
31119
|
export const disputeLiability = T['io.flow.internal.v0.enums.dispute_liability'];
|
|
30781
31120
|
export const disputeOrderReference = T['io.flow.internal.v0.models.dispute_order_reference'];
|
|
30782
31121
|
export const disputeOrganizationReference = T['io.flow.internal.v0.models.dispute_organization_reference'];
|
|
31122
|
+
export const disputeOverrideUpdateForm = T['io.flow.internal.v0.models.dispute_override_update_form'];
|
|
30783
31123
|
export const disputeProcessor = T['io.flow.internal.v0.enums.dispute_processor'];
|
|
30784
31124
|
export const disputeReportingCategory = T['io.flow.internal.v0.enums.dispute_reporting_category'];
|
|
30785
31125
|
export const disputeStatus = T['io.flow.internal.v0.enums.dispute_status'];
|
|
@@ -30980,6 +31320,9 @@ export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_bus
|
|
|
30980
31320
|
export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
|
|
30981
31321
|
export const fulfillmentCarrier = T['io.flow.internal.v0.models.fulfillment_carrier'];
|
|
30982
31322
|
export const fulfillmentDeleted = T['io.flow.internal.v0.models.fulfillment_deleted'];
|
|
31323
|
+
export const fulfillmentFallbacks = T['io.flow.internal.v0.models.fulfillment_fallbacks'];
|
|
31324
|
+
export const fulfillmentFallbacksDeleted = T['io.flow.internal.v0.models.fulfillment_fallbacks_deleted'];
|
|
31325
|
+
export const fulfillmentFallbacksUpserted = T['io.flow.internal.v0.models.fulfillment_fallbacks_upserted'];
|
|
30983
31326
|
export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
|
|
30984
31327
|
export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
|
|
30985
31328
|
export const fulfillmentProof = T['io.flow.internal.v0.unions.fulfillment_proof'];
|
|
@@ -31165,6 +31508,9 @@ export const labelRequestError = T['io.flow.internal.v0.models.label_request_err
|
|
|
31165
31508
|
export const labelRequestErrorDeleted = T['io.flow.internal.v0.models.label_request_error_deleted'];
|
|
31166
31509
|
export const labelRequestErrorHandlingResponsibility = T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'];
|
|
31167
31510
|
export const labelRequestErrorUpserted = T['io.flow.internal.v0.models.label_request_error_upserted'];
|
|
31511
|
+
export const labelRequestResult = T['io.flow.internal.v0.models.label_request_result'];
|
|
31512
|
+
export const labelRequestResultOrganizationType = T['io.flow.internal.v0.enums.label_request_result_organization_type'];
|
|
31513
|
+
export const labelRequestResultState = T['io.flow.internal.v0.enums.label_request_result_state'];
|
|
31168
31514
|
export const labelSummary = T['io.flow.internal.v0.models.label_summary'];
|
|
31169
31515
|
export const labelSurchargeForm = T['io.flow.internal.v0.models.label_surcharge_form'];
|
|
31170
31516
|
export const labelSurchargeSingleForm = T['io.flow.internal.v0.models.label_surcharge_single_form'];
|
|
@@ -31312,6 +31658,8 @@ export const merchantFees = T['io.flow.internal.v0.models.merchant_fees'];
|
|
|
31312
31658
|
export const merchantGuidAssignment = T['io.flow.internal.v0.models.merchant_guid_assignment'];
|
|
31313
31659
|
export const merchantGuidAssignmentDeleted = T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'];
|
|
31314
31660
|
export const merchantGuidAssignmentUpserted = T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'];
|
|
31661
|
+
export const merchantHubOverride = T['io.flow.internal.v0.models.merchant_hub_override'];
|
|
31662
|
+
export const merchantHubOverrideForm = T['io.flow.internal.v0.models.merchant_hub_override_form'];
|
|
31315
31663
|
export const merchantOfRecordEntitySettings = T['io.flow.internal.v0.models.merchant_of_record_entity_settings'];
|
|
31316
31664
|
export const merchantOfRecordEntitySettingsForm = T['io.flow.internal.v0.models.merchant_of_record_entity_settings_form'];
|
|
31317
31665
|
export const merchantSearchResult = T['io.flow.internal.v0.models.merchant_search_result'];
|
|
@@ -31336,6 +31684,7 @@ export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
|
31336
31684
|
export const moneyPercentage = T['io.flow.internal.v0.models.money_percentage'];
|
|
31337
31685
|
export const moneyRule = T['io.flow.internal.v0.unions.money_rule'];
|
|
31338
31686
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
31687
|
+
export const negativeDebitMetrics = T['io.flow.internal.v0.models.negative_debit_metrics'];
|
|
31339
31688
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
31340
31689
|
export const noCalculatedTaxAmount = T['io.flow.internal.v0.models.no_calculated_tax_amount'];
|
|
31341
31690
|
export const noClassificationForm = T['io.flow.internal.v0.models.no_classification_form'];
|
|
@@ -31516,6 +31865,7 @@ export const partnerOrganizationSettings = T['io.flow.internal.v0.models.partner
|
|
|
31516
31865
|
export const partnerOrganizationSettingsDeleted = T['io.flow.internal.v0.models.partner_organization_settings_deleted'];
|
|
31517
31866
|
export const partnerOrganizationSettingsForm = T['io.flow.internal.v0.models.partner_organization_settings_form'];
|
|
31518
31867
|
export const partnerOrganizationSettingsUpserted = T['io.flow.internal.v0.models.partner_organization_settings_upserted'];
|
|
31868
|
+
export const partnerRequest = T['io.flow.internal.v0.models.partner_request'];
|
|
31519
31869
|
export const party = T['io.flow.internal.v0.enums.party'];
|
|
31520
31870
|
export const passphrase = T['io.flow.internal.v0.models.passphrase'];
|
|
31521
31871
|
export const passphraseForm = T['io.flow.internal.v0.models.passphrase_form'];
|
|
@@ -31603,17 +31953,20 @@ export const productClassification = T['io.flow.internal.v0.models.product_class
|
|
|
31603
31953
|
export const productClassificationForm = T['io.flow.internal.v0.models.product_classification_form'];
|
|
31604
31954
|
export const productClassificationJudgementForm = T['io.flow.internal.v0.models.product_classification_judgement_form'];
|
|
31605
31955
|
export const productClassificationResult = T['io.flow.internal.v0.models.product_classification_result'];
|
|
31956
|
+
export const productCurrencies = T['io.flow.internal.v0.models.product_currencies'];
|
|
31606
31957
|
export const productDetailSettingsForm = T['io.flow.internal.v0.models.product_detail_settings_form'];
|
|
31607
31958
|
export const productHarmonization = T['io.flow.internal.v0.models.product_harmonization'];
|
|
31608
31959
|
export const productHarmonizationForm = T['io.flow.internal.v0.models.product_harmonization_form'];
|
|
31609
31960
|
export const productLabels = T['io.flow.internal.v0.models.product_labels'];
|
|
31610
31961
|
export const productListSettingsForm = T['io.flow.internal.v0.models.product_list_settings_form'];
|
|
31962
|
+
export const productRecord = T['io.flow.internal.v0.models.product_record'];
|
|
31611
31963
|
export const productRestrictionResultValidationError = T['io.flow.internal.v0.models.product_restriction_result_validation_error'];
|
|
31612
31964
|
export const productRestrictionRuleDecision = T['io.flow.internal.v0.models.product_restriction_rule_decision'];
|
|
31613
31965
|
export const productRestrictionRuleDecisionDeleted = T['io.flow.internal.v0.models.product_restriction_rule_decision_deleted'];
|
|
31614
31966
|
export const productRestrictionRuleDecisionUpserted = T['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'];
|
|
31615
31967
|
export const productReviewHistory = T['io.flow.internal.v0.models.product_review_history'];
|
|
31616
31968
|
export const productStatus = T['io.flow.internal.v0.enums.product_status'];
|
|
31969
|
+
export const productTransaction = T['io.flow.internal.v0.models.product_transaction'];
|
|
31617
31970
|
export const profit = T['io.flow.internal.v0.models.profit'];
|
|
31618
31971
|
export const profitShare = T['io.flow.internal.v0.models.profit_share'];
|
|
31619
31972
|
export const profitShareOrderReference = T['io.flow.internal.v0.models.profit_share_order_reference'];
|
|
@@ -31633,6 +31986,8 @@ export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.pro
|
|
|
31633
31986
|
export const proofOfPostingOrderCombinedShipment = T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'];
|
|
31634
31987
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
31635
31988
|
export const proofOfPostingTimeElapsed = T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'];
|
|
31989
|
+
export const publicHub = T['io.flow.internal.v0.models.public_hub'];
|
|
31990
|
+
export const publicHubForm = T['io.flow.internal.v0.models.public_hub_form'];
|
|
31636
31991
|
export const quote = T['io.flow.internal.v0.models.quote'];
|
|
31637
31992
|
export const quoteDeleted = T['io.flow.internal.v0.models.quote_deleted'];
|
|
31638
31993
|
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
@@ -32107,6 +32462,10 @@ export const trackingDeleted = T['io.flow.internal.v0.models.tracking_deleted'];
|
|
|
32107
32462
|
export const trackingEvent = T['io.flow.internal.v0.models.tracking_event'];
|
|
32108
32463
|
export const trackingIntegrationType = T['io.flow.internal.v0.enums.tracking_integration_type'];
|
|
32109
32464
|
export const trackingLabelDeleted = T['io.flow.internal.v0.models.tracking_label_deleted'];
|
|
32465
|
+
export const trackingLabelDimensions = T['io.flow.internal.v0.models.tracking_label_dimensions'];
|
|
32466
|
+
export const trackingLabelDimensionsDeleted = T['io.flow.internal.v0.models.tracking_label_dimensions_deleted'];
|
|
32467
|
+
export const trackingLabelDimensionsSource = T['io.flow.internal.v0.enums.tracking_label_dimensions_source'];
|
|
32468
|
+
export const trackingLabelDimensionsUpserted = T['io.flow.internal.v0.models.tracking_label_dimensions_upserted'];
|
|
32110
32469
|
export const trackingLabelEventDeletedV2 = T['io.flow.internal.v0.models.tracking_label_event_deleted_v2'];
|
|
32111
32470
|
export const trackingLabelEventUpsertedV2 = T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'];
|
|
32112
32471
|
export const trackingLabelUpserted = T['io.flow.internal.v0.models.tracking_label_upserted'];
|