@flowio/api-internal-prop-types 9.24.93 → 9.24.94
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 +367 -164
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +367 -164
- package/src/api-internal.js +582 -357
package/src/api-internal.js
CHANGED
|
@@ -384,24 +384,43 @@ T['io.flow.billing.v0.models.bank_account_form_simple'] = PropTypes.exact({
|
|
|
384
384
|
account_number: PropTypes.string.isRequired,
|
|
385
385
|
});
|
|
386
386
|
|
|
387
|
+
T['io.flow.billing.v0.models.trueup_label_base_weight'] = PropTypes.exact({
|
|
388
|
+
weight: PropTypes.number.isRequired,
|
|
389
|
+
});
|
|
390
|
+
|
|
391
|
+
T['io.flow.billing.v0.models.trueup_label_fuel'] = PropTypes.exact({
|
|
392
|
+
amount: PropTypes.number.isRequired,
|
|
393
|
+
percentage: PropTypes.number,
|
|
394
|
+
per_weight_unit: PropTypes.number,
|
|
395
|
+
});
|
|
396
|
+
|
|
397
|
+
T['io.flow.billing.v0.models.trueup_label_base_v2'] = PropTypes.exact({
|
|
398
|
+
amount: PropTypes.number.isRequired,
|
|
399
|
+
});
|
|
400
|
+
|
|
387
401
|
T['io.flow.billing.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
388
402
|
amount: PropTypes.number.isRequired,
|
|
389
403
|
weight: PropTypes.number.isRequired,
|
|
390
404
|
});
|
|
391
405
|
|
|
392
|
-
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl']);
|
|
406
|
+
T['io.flow.billing.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']);
|
|
393
407
|
|
|
394
408
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
395
409
|
id: PropTypes.string.isRequired,
|
|
396
410
|
tracking_number: PropTypes.string.isRequired,
|
|
397
411
|
});
|
|
398
412
|
|
|
413
|
+
T['io.flow.billing.v0.models.transaction_reference'] = PropTypes.exact({
|
|
414
|
+
id: PropTypes.string.isRequired,
|
|
415
|
+
});
|
|
416
|
+
|
|
399
417
|
T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropTypes.exact({
|
|
400
418
|
transaction_id: PropTypes.string.isRequired,
|
|
401
419
|
});
|
|
402
420
|
|
|
403
421
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
|
|
404
422
|
discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
|
|
423
|
+
id: PropTypes.string,
|
|
405
424
|
key: PropTypes.string,
|
|
406
425
|
});
|
|
407
426
|
|
|
@@ -624,30 +643,6 @@ T['io.flow.billing.internal.v0.models.manual_transaction_form_order'] = PropType
|
|
|
624
643
|
number: PropTypes.string.isRequired,
|
|
625
644
|
});
|
|
626
645
|
|
|
627
|
-
T['io.flow.billing.internal.v0.enums.manual_transaction_category'] = PropTypes.oneOf([
|
|
628
|
-
'cancelled_order_refund',
|
|
629
|
-
'channel_partner_initiated',
|
|
630
|
-
'client_accepted_chargeback',
|
|
631
|
-
'fee_reimbursement',
|
|
632
|
-
'partial_refund',
|
|
633
|
-
'platform_fee',
|
|
634
|
-
'shipping_true_up',
|
|
635
|
-
'tax_credit',
|
|
636
|
-
'carrier_credit',
|
|
637
|
-
'negative_balance_guarantee',
|
|
638
|
-
'bank_payment_failure',
|
|
639
|
-
]);
|
|
640
|
-
|
|
641
|
-
T['io.flow.billing.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
642
|
-
amount: PropTypes.number.isRequired,
|
|
643
|
-
currency: PropTypes.string,
|
|
644
|
-
description: PropTypes.string.isRequired,
|
|
645
|
-
category: T['io.flow.billing.internal.v0.enums.manual_transaction_category'],
|
|
646
|
-
order: T['io.flow.billing.internal.v0.models.manual_transaction_form_order'],
|
|
647
|
-
original_transaction_id: PropTypes.string,
|
|
648
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
649
|
-
});
|
|
650
|
-
|
|
651
646
|
T['io.flow.billing.internal.v0.models.billing_label_tracking_summary_reference'] = PropTypes.exact({
|
|
652
647
|
id: PropTypes.string.isRequired,
|
|
653
648
|
});
|
|
@@ -725,10 +720,6 @@ T['io.flow.billing.internal.v0.models.account_origin'] = PropTypes.exact({
|
|
|
725
720
|
country: PropTypes.string.isRequired,
|
|
726
721
|
});
|
|
727
722
|
|
|
728
|
-
T['io.flow.billing.internal.v0.models.carrier_fee_transaction_label_reference'] = PropTypes.exact({
|
|
729
|
-
id: PropTypes.string.isRequired,
|
|
730
|
-
});
|
|
731
|
-
|
|
732
723
|
T['io.flow.billing.internal.v0.models.carrier_charge_reference'] = PropTypes.exact({
|
|
733
724
|
id: PropTypes.string.isRequired,
|
|
734
725
|
});
|
|
@@ -772,7 +763,6 @@ T['io.flow.billing.internal.v0.enums.billing_statement_attachment_key'] = PropTy
|
|
|
772
763
|
'duty',
|
|
773
764
|
'trueup',
|
|
774
765
|
'carrier_charge',
|
|
775
|
-
'carrier_fee',
|
|
776
766
|
'all',
|
|
777
767
|
]);
|
|
778
768
|
|
|
@@ -803,6 +793,10 @@ T['io.flow.billing.internal.v0.models.bank_payment_status_import'] = PropTypes.e
|
|
|
803
793
|
result: T['io.flow.billing.internal.v0.models.bank_payment_status_import_result'],
|
|
804
794
|
});
|
|
805
795
|
|
|
796
|
+
T['io.flow.billing.internal.v0.models.bank_payment_reference'] = PropTypes.exact({
|
|
797
|
+
id: PropTypes.string.isRequired,
|
|
798
|
+
});
|
|
799
|
+
|
|
806
800
|
T['io.flow.billing.internal.v0.models.adjustment_amount_percentage'] = PropTypes.exact({
|
|
807
801
|
discriminator: PropTypes.oneOf(['percentage']).isRequired,
|
|
808
802
|
percentage: PropTypes.number.isRequired,
|
|
@@ -1695,6 +1689,14 @@ T['io.flow.experience.v0.models.address_configuration_province_translation'] = P
|
|
|
1695
1689
|
name: PropTypes.string.isRequired,
|
|
1696
1690
|
});
|
|
1697
1691
|
|
|
1692
|
+
T['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_deleted'] = PropTypes.exact({
|
|
1693
|
+
discriminator: PropTypes.oneOf(['channel_organization_identifier_deleted']).isRequired,
|
|
1694
|
+
event_id: PropTypes.string.isRequired,
|
|
1695
|
+
timestamp: PropTypes.string.isRequired,
|
|
1696
|
+
channel_id: PropTypes.string.isRequired,
|
|
1697
|
+
id: PropTypes.string.isRequired,
|
|
1698
|
+
});
|
|
1699
|
+
|
|
1698
1700
|
T['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_deleted'] = PropTypes.exact({
|
|
1699
1701
|
discriminator: PropTypes.oneOf(['channel_order_summary_deleted']).isRequired,
|
|
1700
1702
|
event_id: PropTypes.string.isRequired,
|
|
@@ -1739,6 +1741,7 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_shop_statistics'] = PropTy
|
|
|
1739
1741
|
initial_catalog_synced_at: PropTypes.string,
|
|
1740
1742
|
catalog_sync_duration: PropTypes.number,
|
|
1741
1743
|
catalog_products_count: PropTypes.number,
|
|
1744
|
+
initial_product_restrictions_synced_at: PropTypes.string,
|
|
1742
1745
|
});
|
|
1743
1746
|
|
|
1744
1747
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_statistics_upserted'] = PropTypes.exact({
|
|
@@ -2324,6 +2327,10 @@ T['io.flow.billing.reporting.v0.models.report_owner'] = PropTypes.exact({
|
|
|
2324
2327
|
name: PropTypes.string.isRequired,
|
|
2325
2328
|
});
|
|
2326
2329
|
|
|
2330
|
+
T['io.flow.billing.reporting.v0.models.report_merchant'] = PropTypes.exact({
|
|
2331
|
+
id: PropTypes.string.isRequired,
|
|
2332
|
+
});
|
|
2333
|
+
|
|
2327
2334
|
T['io.flow.billing.reporting.v0.models.report_bank_account_cleartext'] = PropTypes.exact({
|
|
2328
2335
|
type: PropTypes.string.isRequired,
|
|
2329
2336
|
routing_number: PropTypes.string.isRequired,
|
|
@@ -2511,18 +2518,28 @@ T['io.flow.billing.reporting.v0.models.reporting_debug_missing_subsidies'] = Pro
|
|
|
2511
2518
|
duty: PropTypes.bool,
|
|
2512
2519
|
});
|
|
2513
2520
|
|
|
2521
|
+
T['io.flow.billing.reporting.v0.models.report_order_reference'] = PropTypes.exact({
|
|
2522
|
+
organization_id: PropTypes.string.isRequired,
|
|
2523
|
+
order_number: PropTypes.string.isRequired,
|
|
2524
|
+
});
|
|
2525
|
+
|
|
2526
|
+
T['io.flow.billing.reporting.v0.enums.report_payment_type'] = PropTypes.oneOf(['credit', 'debit']);
|
|
2527
|
+
|
|
2514
2528
|
T['io.flow.billing.reporting.v0.enums.report_type'] = PropTypes.oneOf([
|
|
2515
2529
|
'sales_record',
|
|
2516
2530
|
'trueup_overview',
|
|
2517
2531
|
'non_channel_payment_bank_account',
|
|
2518
2532
|
'scheduled_payment',
|
|
2519
2533
|
'account_quarterly_balances',
|
|
2534
|
+
'invariants',
|
|
2520
2535
|
]);
|
|
2521
2536
|
|
|
2522
2537
|
T['io.flow.billing.reporting.v0.models.report_form'] = PropTypes.exact({
|
|
2523
|
-
from: PropTypes.string.isRequired,
|
|
2524
|
-
to: PropTypes.string.isRequired,
|
|
2525
2538
|
type: T['io.flow.billing.reporting.v0.enums.report_type'].isRequired,
|
|
2539
|
+
from: PropTypes.string,
|
|
2540
|
+
to: PropTypes.string,
|
|
2541
|
+
payment_type: T['io.flow.billing.reporting.v0.enums.report_payment_type'],
|
|
2542
|
+
orders: PropTypes.arrayOf(T['io.flow.billing.reporting.v0.models.report_order_reference']),
|
|
2526
2543
|
});
|
|
2527
2544
|
|
|
2528
2545
|
T['io.flow.billing.reporting.v0.enums.report_status'] = PropTypes.oneOf(['created', 'completed', 'completed_no_records', 'failed']);
|
|
@@ -2531,8 +2548,9 @@ T['io.flow.billing.reporting.v0.models.report'] = PropTypes.exact({
|
|
|
2531
2548
|
id: PropTypes.string.isRequired,
|
|
2532
2549
|
status: T['io.flow.billing.reporting.v0.enums.report_status'].isRequired,
|
|
2533
2550
|
type: T['io.flow.billing.reporting.v0.enums.report_type'].isRequired,
|
|
2534
|
-
from: PropTypes.string
|
|
2535
|
-
to: PropTypes.string
|
|
2551
|
+
from: PropTypes.string,
|
|
2552
|
+
to: PropTypes.string,
|
|
2553
|
+
payment_type: T['io.flow.billing.reporting.v0.enums.report_payment_type'],
|
|
2536
2554
|
url: PropTypes.string,
|
|
2537
2555
|
processed_at: PropTypes.string,
|
|
2538
2556
|
});
|
|
@@ -2707,18 +2725,6 @@ T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.o
|
|
|
2707
2725
|
'tip',
|
|
2708
2726
|
]);
|
|
2709
2727
|
|
|
2710
|
-
T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
2711
|
-
'adjustment',
|
|
2712
|
-
'subtotal',
|
|
2713
|
-
'vat',
|
|
2714
|
-
'duty',
|
|
2715
|
-
'shipping',
|
|
2716
|
-
'insurance',
|
|
2717
|
-
'discount',
|
|
2718
|
-
'surcharges',
|
|
2719
|
-
'tip',
|
|
2720
|
-
]);
|
|
2721
|
-
|
|
2722
2728
|
T['io.flow.shopify.markets.v0.models.shopify_webhook_customers_data_request_id'] = PropTypes.exact({
|
|
2723
2729
|
id: PropTypes.number.isRequired,
|
|
2724
2730
|
});
|
|
@@ -6898,6 +6904,37 @@ T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata_issuer_s
|
|
|
6898
6904
|
country: PropTypes.string.isRequired,
|
|
6899
6905
|
});
|
|
6900
6906
|
|
|
6907
|
+
T['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'] = PropTypes.exact({
|
|
6908
|
+
id: PropTypes.string.isRequired,
|
|
6909
|
+
});
|
|
6910
|
+
|
|
6911
|
+
T['io.flow.billing.v0.models.transaction_metadata_failed_payout'] = PropTypes.exact({
|
|
6912
|
+
discriminator: PropTypes.oneOf(['failed_payout']).isRequired,
|
|
6913
|
+
failed_payout: T['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'].isRequired,
|
|
6914
|
+
});
|
|
6915
|
+
|
|
6916
|
+
T['io.flow.billing.internal.v0.enums.manual_transaction_category'] = PropTypes.oneOf([
|
|
6917
|
+
'cancelled_order_refund',
|
|
6918
|
+
'client_accepted_chargeback',
|
|
6919
|
+
'fee_reimbursement',
|
|
6920
|
+
'platform_fee',
|
|
6921
|
+
'shipping_true_up',
|
|
6922
|
+
'tax_credit',
|
|
6923
|
+
'carrier_credit',
|
|
6924
|
+
'negative_balance_guarantee',
|
|
6925
|
+
'bank_payment_failure',
|
|
6926
|
+
]);
|
|
6927
|
+
|
|
6928
|
+
T['io.flow.billing.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
6929
|
+
amount: PropTypes.number.isRequired,
|
|
6930
|
+
currency: PropTypes.string,
|
|
6931
|
+
description: PropTypes.string.isRequired,
|
|
6932
|
+
category: T['io.flow.billing.internal.v0.enums.manual_transaction_category'],
|
|
6933
|
+
order: T['io.flow.billing.internal.v0.models.manual_transaction_form_order'],
|
|
6934
|
+
original_transaction_id: PropTypes.string,
|
|
6935
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
6936
|
+
});
|
|
6937
|
+
|
|
6901
6938
|
T['io.flow.billing.v0.models.transaction_metadata_original_transaction'] = PropTypes.exact({
|
|
6902
6939
|
id: PropTypes.string.isRequired,
|
|
6903
6940
|
});
|
|
@@ -6932,6 +6969,7 @@ T['io.flow.billing.reporting.v0.models.scheduled_payment'] = PropTypes.exact({
|
|
|
6932
6969
|
payment: T['io.flow.billing.reporting.v0.models.report_payment'].isRequired,
|
|
6933
6970
|
bank_account: T['io.flow.billing.reporting.v0.models.report_bank_account_cleartext'].isRequired,
|
|
6934
6971
|
account: T['io.flow.billing.reporting.v0.models.report_account'].isRequired,
|
|
6972
|
+
merchant: T['io.flow.billing.reporting.v0.models.report_merchant'].isRequired,
|
|
6935
6973
|
owner: T['io.flow.billing.reporting.v0.models.report_owner'].isRequired,
|
|
6936
6974
|
description: PropTypes.string.isRequired,
|
|
6937
6975
|
});
|
|
@@ -6946,19 +6984,17 @@ T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary_identifie
|
|
|
6946
6984
|
shopify_order_id: PropTypes.string,
|
|
6947
6985
|
});
|
|
6948
6986
|
|
|
6987
|
+
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_failed_payout'] = PropTypes.exact({
|
|
6988
|
+
failed_payment: T['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'].isRequired,
|
|
6989
|
+
});
|
|
6990
|
+
|
|
6949
6991
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'] = PropTypes.exact({
|
|
6992
|
+
description: PropTypes.string.isRequired,
|
|
6950
6993
|
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'],
|
|
6994
|
+
category: T['io.flow.billing.internal.v0.enums.manual_transaction_category'],
|
|
6951
6995
|
url: PropTypes.string,
|
|
6952
6996
|
});
|
|
6953
6997
|
|
|
6954
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_fee'] = PropTypes.exact({
|
|
6955
|
-
outbound_transaction_id: PropTypes.string.isRequired,
|
|
6956
|
-
estimate_fixed_ddp: PropTypes.number,
|
|
6957
|
-
estimate_fixed_currency_conversion: PropTypes.number,
|
|
6958
|
-
actual_fixed_ddp: PropTypes.number,
|
|
6959
|
-
actual_fixed_currency_conversion: PropTypes.number,
|
|
6960
|
-
});
|
|
6961
|
-
|
|
6962
6998
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'] = PropTypes.exact({
|
|
6963
6999
|
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
6964
7000
|
label_transaction_id: PropTypes.string.isRequired,
|
|
@@ -6977,6 +7013,10 @@ T['io.flow.billing.csv.v0.models.billing_csv_transaction_account_source_summary'
|
|
|
6977
7013
|
type: T['io.flow.billing.internal.v0.enums.account_type'].isRequired,
|
|
6978
7014
|
});
|
|
6979
7015
|
|
|
7016
|
+
T['io.flow.billing.csv.v0.models.billing_csv_merchant_reference'] = PropTypes.exact({
|
|
7017
|
+
id: PropTypes.string.isRequired,
|
|
7018
|
+
});
|
|
7019
|
+
|
|
6980
7020
|
T['io.flow.billing.csv.v0.models.billing_csv_order_detail'] = PropTypes.exact({
|
|
6981
7021
|
currency: PropTypes.string.isRequired,
|
|
6982
7022
|
adjustment: PropTypes.number.isRequired,
|
|
@@ -7853,7 +7893,6 @@ T['io.flow.flexe.v0.models.flexe_retail_fulfillment_form'] = PropTypes.exact({
|
|
|
7853
7893
|
});
|
|
7854
7894
|
|
|
7855
7895
|
T['io.flow.export.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
|
|
7856
|
-
T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
|
|
7857
7896
|
|
|
7858
7897
|
T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
|
|
7859
7898
|
key: T['io.flow.common.v0.enums.included_levy_key'].isRequired,
|
|
@@ -8140,6 +8179,12 @@ T['io.flow.billing.csv.v0.models.billing_csv_processing_transaction_order_detail
|
|
|
8140
8179
|
).isRequired,
|
|
8141
8180
|
});
|
|
8142
8181
|
|
|
8182
|
+
T['io.flow.billing.accounting.v0.models.fulfillment_carrier'] = PropTypes.exact({
|
|
8183
|
+
id: PropTypes.string.isRequired,
|
|
8184
|
+
service_id: PropTypes.string,
|
|
8185
|
+
tracking_number: PropTypes.string,
|
|
8186
|
+
});
|
|
8187
|
+
|
|
8143
8188
|
T['io.flow.billing.accounting.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
|
|
8144
8189
|
T['io.flow.billing.accounting.v0.models.fulfillment_trigger_proof'],
|
|
8145
8190
|
T['io.flow.billing.accounting.v0.models.fulfillment_trigger_time'],
|
|
@@ -8224,6 +8269,7 @@ T['io.flow.billing.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
8224
8269
|
liabilities_method: T['io.flow.billing.internal.v0.enums.account_setting_liabilities_method'].isRequired,
|
|
8225
8270
|
enable_fee_reversals: PropTypes.bool.isRequired,
|
|
8226
8271
|
record_reason_for_transactions_pending_payout: PropTypes.bool.isRequired,
|
|
8272
|
+
enable_negative_debits: PropTypes.bool.isRequired,
|
|
8227
8273
|
});
|
|
8228
8274
|
|
|
8229
8275
|
T['io.flow.payment.v0.enums.reversal_error_code'] = PropTypes.oneOf([
|
|
@@ -9295,6 +9341,14 @@ T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = Pr
|
|
|
9295
9341
|
id: PropTypes.string.isRequired,
|
|
9296
9342
|
});
|
|
9297
9343
|
|
|
9344
|
+
T['io.flow.internal.v0.models.channel_organization_identifier_deleted'] = PropTypes.exact({
|
|
9345
|
+
discriminator: PropTypes.oneOf(['channel_organization_identifier_deleted']).isRequired,
|
|
9346
|
+
event_id: PropTypes.string.isRequired,
|
|
9347
|
+
timestamp: PropTypes.string.isRequired,
|
|
9348
|
+
channel_id: PropTypes.string.isRequired,
|
|
9349
|
+
id: PropTypes.string.isRequired,
|
|
9350
|
+
});
|
|
9351
|
+
|
|
9298
9352
|
T['io.flow.internal.v0.models.channel_order_summary_deleted'] = PropTypes.exact({
|
|
9299
9353
|
discriminator: PropTypes.oneOf(['channel_order_summary_deleted']).isRequired,
|
|
9300
9354
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9677,11 +9731,10 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
|
|
|
9677
9731
|
id: PropTypes.string.isRequired,
|
|
9678
9732
|
});
|
|
9679
9733
|
|
|
9680
|
-
T['io.flow.internal.v0.models.
|
|
9681
|
-
discriminator: PropTypes.oneOf(['
|
|
9734
|
+
T['io.flow.internal.v0.models.bank_payment_order_deleted'] = PropTypes.exact({
|
|
9735
|
+
discriminator: PropTypes.oneOf(['bank_payment_order_deleted']).isRequired,
|
|
9682
9736
|
event_id: PropTypes.string.isRequired,
|
|
9683
9737
|
timestamp: PropTypes.string.isRequired,
|
|
9684
|
-
organization: PropTypes.string.isRequired,
|
|
9685
9738
|
id: PropTypes.string.isRequired,
|
|
9686
9739
|
});
|
|
9687
9740
|
|
|
@@ -11088,6 +11141,7 @@ T['io.flow.internal.v0.models.shopify_shop_statistics'] = PropTypes.exact({
|
|
|
11088
11141
|
initial_catalog_synced_at: PropTypes.string,
|
|
11089
11142
|
catalog_sync_duration: PropTypes.number,
|
|
11090
11143
|
catalog_products_count: PropTypes.number,
|
|
11144
|
+
initial_product_restrictions_synced_at: PropTypes.string,
|
|
11091
11145
|
});
|
|
11092
11146
|
|
|
11093
11147
|
T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'] = PropTypes.exact({
|
|
@@ -11394,6 +11448,10 @@ T['io.flow.internal.v0.models.report_owner'] = PropTypes.exact({
|
|
|
11394
11448
|
name: PropTypes.string.isRequired,
|
|
11395
11449
|
});
|
|
11396
11450
|
|
|
11451
|
+
T['io.flow.internal.v0.models.report_merchant'] = PropTypes.exact({
|
|
11452
|
+
id: PropTypes.string.isRequired,
|
|
11453
|
+
});
|
|
11454
|
+
|
|
11397
11455
|
T['io.flow.internal.v0.models.report_bank_account_cleartext'] = PropTypes.exact({
|
|
11398
11456
|
type: PropTypes.string.isRequired,
|
|
11399
11457
|
routing_number: PropTypes.string.isRequired,
|
|
@@ -11440,7 +11498,6 @@ T['io.flow.billing.reporting.v0.models.reporting_merchant_transactions'] = PropT
|
|
|
11440
11498
|
tax: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11441
11499
|
duty: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11442
11500
|
freight: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11443
|
-
refund: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11444
11501
|
});
|
|
11445
11502
|
|
|
11446
11503
|
T['io.flow.billing.reporting.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
@@ -11772,18 +11829,28 @@ T['io.flow.internal.v0.models.reporting_debug'] = PropTypes.exact({
|
|
|
11772
11829
|
missing_shipping_subsidies: T['io.flow.internal.v0.models.reporting_debug_missing_subsidies'],
|
|
11773
11830
|
});
|
|
11774
11831
|
|
|
11832
|
+
T['io.flow.internal.v0.models.report_order_reference'] = PropTypes.exact({
|
|
11833
|
+
organization_id: PropTypes.string.isRequired,
|
|
11834
|
+
order_number: PropTypes.string.isRequired,
|
|
11835
|
+
});
|
|
11836
|
+
|
|
11837
|
+
T['io.flow.internal.v0.enums.report_payment_type'] = PropTypes.oneOf(['credit', 'debit']);
|
|
11838
|
+
|
|
11775
11839
|
T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
11776
11840
|
'sales_record',
|
|
11777
11841
|
'trueup_overview',
|
|
11778
11842
|
'non_channel_payment_bank_account',
|
|
11779
11843
|
'scheduled_payment',
|
|
11780
11844
|
'account_quarterly_balances',
|
|
11845
|
+
'invariants',
|
|
11781
11846
|
]);
|
|
11782
11847
|
|
|
11783
11848
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
11784
|
-
from: PropTypes.string.isRequired,
|
|
11785
|
-
to: PropTypes.string.isRequired,
|
|
11786
11849
|
type: T['io.flow.internal.v0.enums.report_type'].isRequired,
|
|
11850
|
+
from: PropTypes.string,
|
|
11851
|
+
to: PropTypes.string,
|
|
11852
|
+
payment_type: T['io.flow.internal.v0.enums.report_payment_type'],
|
|
11853
|
+
orders: PropTypes.arrayOf(T['io.flow.internal.v0.models.report_order_reference']),
|
|
11787
11854
|
});
|
|
11788
11855
|
|
|
11789
11856
|
T['io.flow.internal.v0.enums.report_status'] = PropTypes.oneOf(['created', 'completed', 'completed_no_records', 'failed']);
|
|
@@ -11792,8 +11859,9 @@ T['io.flow.internal.v0.models.report'] = PropTypes.exact({
|
|
|
11792
11859
|
id: PropTypes.string.isRequired,
|
|
11793
11860
|
status: T['io.flow.internal.v0.enums.report_status'].isRequired,
|
|
11794
11861
|
type: T['io.flow.internal.v0.enums.report_type'].isRequired,
|
|
11795
|
-
from: PropTypes.string
|
|
11796
|
-
to: PropTypes.string
|
|
11862
|
+
from: PropTypes.string,
|
|
11863
|
+
to: PropTypes.string,
|
|
11864
|
+
payment_type: T['io.flow.internal.v0.enums.report_payment_type'],
|
|
11797
11865
|
url: PropTypes.string,
|
|
11798
11866
|
processed_at: PropTypes.string,
|
|
11799
11867
|
});
|
|
@@ -12705,12 +12773,6 @@ T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
|
12705
12773
|
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
12706
12774
|
});
|
|
12707
12775
|
|
|
12708
|
-
T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
|
|
12709
|
-
id: PropTypes.string.isRequired,
|
|
12710
|
-
number: PropTypes.string.isRequired,
|
|
12711
|
-
submitted_at: PropTypes.string,
|
|
12712
|
-
});
|
|
12713
|
-
|
|
12714
12776
|
T['io.flow.return.v0.models.return_line_item'] = PropTypes.exact({
|
|
12715
12777
|
item_number: PropTypes.string.isRequired,
|
|
12716
12778
|
order_number: PropTypes.string,
|
|
@@ -13740,10 +13802,8 @@ T['io.flow.internal.v0.models.manual_transaction_form_order'] = PropTypes.exact(
|
|
|
13740
13802
|
|
|
13741
13803
|
T['io.flow.internal.v0.enums.manual_transaction_category'] = PropTypes.oneOf([
|
|
13742
13804
|
'cancelled_order_refund',
|
|
13743
|
-
'channel_partner_initiated',
|
|
13744
13805
|
'client_accepted_chargeback',
|
|
13745
13806
|
'fee_reimbursement',
|
|
13746
|
-
'partial_refund',
|
|
13747
13807
|
'platform_fee',
|
|
13748
13808
|
'shipping_true_up',
|
|
13749
13809
|
'tax_credit',
|
|
@@ -14051,6 +14111,7 @@ T['io.flow.internal.v0.enums.label_request_error_handling_responsibility'] = Pro
|
|
|
14051
14111
|
'merchant_integration',
|
|
14052
14112
|
'shopify_integration',
|
|
14053
14113
|
'globale_cx',
|
|
14114
|
+
'merchant_operations',
|
|
14054
14115
|
'globale_system',
|
|
14055
14116
|
]);
|
|
14056
14117
|
|
|
@@ -14129,6 +14190,12 @@ T['io.flow.trueup.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
|
14129
14190
|
'eei_filing',
|
|
14130
14191
|
'fixed_ddp',
|
|
14131
14192
|
'fixed_currency_conversion',
|
|
14193
|
+
'prohibited_item',
|
|
14194
|
+
'undeliverable_shipment',
|
|
14195
|
+
'signature_required',
|
|
14196
|
+
'direct_delivery',
|
|
14197
|
+
'saturday_stop',
|
|
14198
|
+
'residential_extended_area_pickup',
|
|
14132
14199
|
]);
|
|
14133
14200
|
|
|
14134
14201
|
T['io.flow.billing.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
@@ -14138,15 +14205,16 @@ T['io.flow.billing.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
|
14138
14205
|
per_weight_unit: PropTypes.number,
|
|
14139
14206
|
});
|
|
14140
14207
|
|
|
14141
|
-
T['io.flow.billing.v0.models.
|
|
14142
|
-
|
|
14208
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge_data'] = PropTypes.exact({
|
|
14209
|
+
source: T['io.flow.billing.v0.enums.trueup_source'].isRequired,
|
|
14210
|
+
surcharge: T['io.flow.billing.v0.models.trueup_label_surcharge'].isRequired,
|
|
14143
14211
|
});
|
|
14144
14212
|
|
|
14145
|
-
T['io.flow.billing.v0.models.
|
|
14146
|
-
discriminator: PropTypes.oneOf(['
|
|
14147
|
-
|
|
14148
|
-
estimate: T['io.flow.billing.v0.models.
|
|
14149
|
-
actual: T['io.flow.billing.v0.models.
|
|
14213
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge'] = PropTypes.exact({
|
|
14214
|
+
discriminator: PropTypes.oneOf(['trueup_surcharge']).isRequired,
|
|
14215
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
14216
|
+
estimate: T['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge_data'].isRequired,
|
|
14217
|
+
actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge_data'].isRequired,
|
|
14150
14218
|
});
|
|
14151
14219
|
|
|
14152
14220
|
T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
@@ -14432,6 +14500,7 @@ T['io.flow.billing.v0.models.transaction_metadata_channel'] = PropTypes.exact({
|
|
|
14432
14500
|
discriminator: PropTypes.oneOf(['channel']).isRequired,
|
|
14433
14501
|
method: PropTypes.string.isRequired,
|
|
14434
14502
|
card: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'],
|
|
14503
|
+
organization_transaction: T['io.flow.billing.v0.models.transaction_reference'].isRequired,
|
|
14435
14504
|
});
|
|
14436
14505
|
|
|
14437
14506
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_channel'] = PropTypes.exact({
|
|
@@ -15008,6 +15077,53 @@ T['io.flow.internal.v0.models.fx_revenue_recognition_organization'] = PropTypes.
|
|
|
15008
15077
|
id: PropTypes.string.isRequired,
|
|
15009
15078
|
});
|
|
15010
15079
|
|
|
15080
|
+
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'] = PropTypes.exact({
|
|
15081
|
+
discriminator: PropTypes.oneOf(['order_combined_shipment']).isRequired,
|
|
15082
|
+
id: PropTypes.string.isRequired,
|
|
15083
|
+
carrier_id: PropTypes.string,
|
|
15084
|
+
carrier_service_id: PropTypes.string,
|
|
15085
|
+
carrier_tracking_number: PropTypes.string,
|
|
15086
|
+
label_id: PropTypes.string,
|
|
15087
|
+
created_at: PropTypes.string,
|
|
15088
|
+
});
|
|
15089
|
+
|
|
15090
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
|
|
15091
|
+
discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
|
|
15092
|
+
id: PropTypes.string.isRequired,
|
|
15093
|
+
carrier_id: PropTypes.string,
|
|
15094
|
+
carrier_service_id: PropTypes.string,
|
|
15095
|
+
carrier_tracking_number: PropTypes.string,
|
|
15096
|
+
label_id: PropTypes.string,
|
|
15097
|
+
created_at: PropTypes.string,
|
|
15098
|
+
});
|
|
15099
|
+
|
|
15100
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
|
|
15101
|
+
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
15102
|
+
id: PropTypes.string.isRequired,
|
|
15103
|
+
carrier_id: PropTypes.string,
|
|
15104
|
+
carrier_service_id: PropTypes.string,
|
|
15105
|
+
carrier_tracking_number: PropTypes.string,
|
|
15106
|
+
label_id: PropTypes.string,
|
|
15107
|
+
created_at: PropTypes.string,
|
|
15108
|
+
});
|
|
15109
|
+
|
|
15110
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
|
|
15111
|
+
discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
|
|
15112
|
+
id: PropTypes.string.isRequired,
|
|
15113
|
+
carrier_id: PropTypes.string,
|
|
15114
|
+
carrier_service_id: PropTypes.string,
|
|
15115
|
+
carrier_tracking_number: PropTypes.string,
|
|
15116
|
+
label_id: PropTypes.string,
|
|
15117
|
+
created_at: PropTypes.string,
|
|
15118
|
+
});
|
|
15119
|
+
|
|
15120
|
+
T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
15121
|
+
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'],
|
|
15122
|
+
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'],
|
|
15123
|
+
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
|
|
15124
|
+
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'],
|
|
15125
|
+
]);
|
|
15126
|
+
|
|
15011
15127
|
T['io.flow.internal.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
15012
15128
|
transaction: PropTypes.number.isRequired,
|
|
15013
15129
|
merchant: PropTypes.number.isRequired,
|
|
@@ -15022,7 +15138,6 @@ T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exac
|
|
|
15022
15138
|
tax: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15023
15139
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15024
15140
|
freight: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15025
|
-
refund: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15026
15141
|
});
|
|
15027
15142
|
|
|
15028
15143
|
T['io.flow.internal.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
@@ -15123,6 +15238,11 @@ T['io.flow.internal.v0.models.fulfillment_trigger_time'] = PropTypes.exact({
|
|
|
15123
15238
|
placeholder: PropTypes.string,
|
|
15124
15239
|
});
|
|
15125
15240
|
|
|
15241
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_proof'] = PropTypes.exact({
|
|
15242
|
+
discriminator: PropTypes.oneOf(['by_proof']).isRequired,
|
|
15243
|
+
proof: T['io.flow.internal.v0.unions.fulfillment_proof'].isRequired,
|
|
15244
|
+
});
|
|
15245
|
+
|
|
15126
15246
|
T['io.flow.internal.v0.models.merchant_transactions'] = PropTypes.exact({
|
|
15127
15247
|
adjustment: PropTypes.number.isRequired,
|
|
15128
15248
|
reversal: PropTypes.number.isRequired,
|
|
@@ -15183,6 +15303,17 @@ T['io.flow.internal.v0.models.fulfillment_origin'] = PropTypes.exact({
|
|
|
15183
15303
|
province_code: PropTypes.string,
|
|
15184
15304
|
});
|
|
15185
15305
|
|
|
15306
|
+
T['io.flow.internal.v0.models.fulfillment_carrier'] = PropTypes.exact({
|
|
15307
|
+
id: PropTypes.string.isRequired,
|
|
15308
|
+
service_id: PropTypes.string,
|
|
15309
|
+
tracking_number: PropTypes.string,
|
|
15310
|
+
});
|
|
15311
|
+
|
|
15312
|
+
T['io.flow.internal.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
|
|
15313
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_proof'],
|
|
15314
|
+
T['io.flow.internal.v0.models.fulfillment_trigger_time'],
|
|
15315
|
+
]);
|
|
15316
|
+
|
|
15186
15317
|
T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
15187
15318
|
subsidies: T['io.flow.internal.v0.models.merchant_subsidies'].isRequired,
|
|
15188
15319
|
fees: T['io.flow.internal.v0.models.merchant_fees'].isRequired,
|
|
@@ -16390,16 +16521,29 @@ T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
|
|
|
16390
16521
|
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
16391
16522
|
});
|
|
16392
16523
|
|
|
16524
|
+
T['io.flow.internal.v0.models.failed_dimension_estimate_ops_input_with_reason'] = PropTypes.exact({
|
|
16525
|
+
organization_id: PropTypes.string.isRequired,
|
|
16526
|
+
length_units: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
16527
|
+
length_value: PropTypes.string,
|
|
16528
|
+
width_units: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
16529
|
+
width_value: PropTypes.string,
|
|
16530
|
+
depth_units: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
16531
|
+
depth_value: PropTypes.string,
|
|
16532
|
+
weight_units: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
16533
|
+
weight_value: PropTypes.string,
|
|
16534
|
+
reason: PropTypes.string,
|
|
16535
|
+
});
|
|
16536
|
+
|
|
16393
16537
|
T['io.flow.internal.v0.models.dimension_estimate_ops_input'] = PropTypes.exact({
|
|
16394
16538
|
organization_id: PropTypes.string.isRequired,
|
|
16395
|
-
|
|
16396
|
-
|
|
16397
|
-
|
|
16398
|
-
|
|
16399
|
-
|
|
16400
|
-
|
|
16401
|
-
|
|
16402
|
-
|
|
16539
|
+
length_units: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
16540
|
+
length_value: PropTypes.string,
|
|
16541
|
+
width_units: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
16542
|
+
width_value: PropTypes.string,
|
|
16543
|
+
depth_units: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
16544
|
+
depth_value: PropTypes.string,
|
|
16545
|
+
weight_units: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
16546
|
+
weight_value: PropTypes.string,
|
|
16403
16547
|
});
|
|
16404
16548
|
|
|
16405
16549
|
T['io.flow.common.v0.models.experience_summary'] = PropTypes.exact({
|
|
@@ -16514,10 +16658,23 @@ T['io.flow.internal.v0.models.reporting_details'] = PropTypes.exact({
|
|
|
16514
16658
|
refund_records: PropTypes.arrayOf(PropTypes.object),
|
|
16515
16659
|
});
|
|
16516
16660
|
|
|
16517
|
-
T['io.flow.
|
|
16518
|
-
|
|
16661
|
+
T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
|
|
16662
|
+
|
|
16663
|
+
T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
16664
|
+
'adjustment',
|
|
16665
|
+
'subtotal',
|
|
16666
|
+
'vat',
|
|
16667
|
+
'duty',
|
|
16668
|
+
'shipping',
|
|
16669
|
+
'insurance',
|
|
16670
|
+
'discount',
|
|
16671
|
+
'surcharges',
|
|
16672
|
+
'tip',
|
|
16673
|
+
]);
|
|
16674
|
+
|
|
16675
|
+
T['io.flow.experience.v0.models.allocation_order_summary'] = PropTypes.exact({
|
|
16676
|
+
id: PropTypes.string.isRequired,
|
|
16519
16677
|
number: PropTypes.string.isRequired,
|
|
16520
|
-
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
16521
16678
|
submitted_at: PropTypes.string,
|
|
16522
16679
|
});
|
|
16523
16680
|
|
|
@@ -16542,12 +16699,6 @@ T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
|
|
|
16542
16699
|
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label_transaction_summary']),
|
|
16543
16700
|
});
|
|
16544
16701
|
|
|
16545
|
-
T['io.flow.internal.v0.models.debug_details'] = PropTypes.exact({
|
|
16546
|
-
labels: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label']).isRequired,
|
|
16547
|
-
captures: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
16548
|
-
refunds: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
16549
|
-
});
|
|
16550
|
-
|
|
16551
16702
|
T['io.flow.internal.v0.enums.debug_accounting_transaction_type'] = PropTypes.oneOf(['fulfillment']);
|
|
16552
16703
|
|
|
16553
16704
|
T['io.flow.internal.v0.models.debug_accounting_transaction'] = PropTypes.exact({
|
|
@@ -16560,16 +16711,19 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16560
16711
|
'adjustment_transactions_count',
|
|
16561
16712
|
'adjustment_transactions_total',
|
|
16562
16713
|
'capture_transactions_count',
|
|
16714
|
+
'capture_transactions_reconcile_payments_count',
|
|
16563
16715
|
'capture_transactions_ignored_fraud_count',
|
|
16564
16716
|
'capture_transactions_ignored_fully_refunded_count',
|
|
16565
16717
|
'capture_transactions_ignored_other_count',
|
|
16566
16718
|
'capture_transactions_ignored_previously_processed_count',
|
|
16719
|
+
'capture_transactions_succeeded_then_failed_count',
|
|
16720
|
+
'capture_transactions_succeeded_then_failed_total',
|
|
16721
|
+
'capture_transactions_succeeded_then_failed_same_day_count',
|
|
16722
|
+
'capture_transactions_succeeded_then_failed_same_day_total',
|
|
16567
16723
|
'capture_queued_count',
|
|
16568
16724
|
'capture_transactions_total',
|
|
16569
16725
|
'carrier_charge_transactions_count',
|
|
16570
16726
|
'carrier_charge_transactions_total',
|
|
16571
|
-
'carrier_fee_transactions_count',
|
|
16572
|
-
'carrier_fee_transactions_total',
|
|
16573
16727
|
'channel_transactions_processing_count',
|
|
16574
16728
|
'channel_transactions_processing_total',
|
|
16575
16729
|
'channel_transactions_adjustment_count',
|
|
@@ -16580,6 +16734,7 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16580
16734
|
'channel_billed_transactions_total',
|
|
16581
16735
|
'credit_payment_transactions_count',
|
|
16582
16736
|
'credit_payment_transactions_total',
|
|
16737
|
+
'duty_to_labels_ratio',
|
|
16583
16738
|
'duty_transactions_count',
|
|
16584
16739
|
'duty_transactions_total',
|
|
16585
16740
|
'fully_subsidized_order_transactions_count',
|
|
@@ -16597,6 +16752,7 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16597
16752
|
'order_transactions_count',
|
|
16598
16753
|
'order_transactions_total',
|
|
16599
16754
|
'refund_transactions_count',
|
|
16755
|
+
'refund_transactions_reconcile_payments_count',
|
|
16600
16756
|
'refund_transactions_ignored_fraud_count',
|
|
16601
16757
|
'refund_transactions_ignored_fully_refunded_count',
|
|
16602
16758
|
'refund_transactions_ignored_other_count',
|
|
@@ -16605,6 +16761,8 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16605
16761
|
'refund_transactions_total',
|
|
16606
16762
|
'refund_transactions_succeeded_then_failed_count',
|
|
16607
16763
|
'refund_transactions_succeeded_then_failed_total',
|
|
16764
|
+
'refund_transactions_succeeded_then_failed_same_day_count',
|
|
16765
|
+
'refund_transactions_succeeded_then_failed_same_day_total',
|
|
16608
16766
|
'reversal_order_cancellations_transactions_count',
|
|
16609
16767
|
'reversal_order_cancellations_transactions_total',
|
|
16610
16768
|
'reversal_external_fulfillment_transactions_count',
|
|
@@ -16613,6 +16771,7 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16613
16771
|
'reversal_other_transactions_total',
|
|
16614
16772
|
'reversal_all_transactions_count',
|
|
16615
16773
|
'reversal_all_transactions_total',
|
|
16774
|
+
'tax_to_labels_ratio',
|
|
16616
16775
|
'tax_transactions_count',
|
|
16617
16776
|
'tax_transactions_total',
|
|
16618
16777
|
'transfer_transactions_count',
|
|
@@ -16664,9 +16823,8 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16664
16823
|
'accounts_with_final_statements_count',
|
|
16665
16824
|
'accounts_with_final_statements_pending_transaction_count',
|
|
16666
16825
|
'accounts_with_final_statements_pending_transaction_total',
|
|
16667
|
-
'
|
|
16668
|
-
'
|
|
16669
|
-
'orders_wyol_then_label_duty_subsidized_total',
|
|
16826
|
+
'edited_order_tax_amount_exceeding_transaction',
|
|
16827
|
+
'edited_order_duty_amount_exceeding_transaction',
|
|
16670
16828
|
]);
|
|
16671
16829
|
|
|
16672
16830
|
T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
|
|
@@ -16767,6 +16925,9 @@ T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'] = Pr
|
|
|
16767
16925
|
|
|
16768
16926
|
T['io.flow.internal.v0.models.item_customs_details'] = PropTypes.exact({
|
|
16769
16927
|
item_number: PropTypes.string.isRequired,
|
|
16928
|
+
product_title: PropTypes.string,
|
|
16929
|
+
sanitized_product_title: PropTypes.string,
|
|
16930
|
+
sanitized_rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
16770
16931
|
sub_item_number: PropTypes.string,
|
|
16771
16932
|
customs_description: PropTypes.string,
|
|
16772
16933
|
origin: PropTypes.string.isRequired,
|
|
@@ -17163,6 +17324,36 @@ T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
|
|
|
17163
17324
|
'pending',
|
|
17164
17325
|
]);
|
|
17165
17326
|
|
|
17327
|
+
T['io.flow.internal.v0.enums.clothing_age_classification'] = PropTypes.oneOf(['None', 'AgeKidsGeneral', 'Age0_10', 'Age10_13', 'Age13_14']);
|
|
17328
|
+
T['io.flow.internal.v0.enums.classification_type'] = PropTypes.oneOf(['None', 'Manual', 'ML']);
|
|
17329
|
+
T['io.flow.internal.v0.enums.classification_decision'] = PropTypes.oneOf(['Accept', 'Reject']);
|
|
17330
|
+
T['io.flow.internal.v0.enums.classification_platform'] = PropTypes.oneOf(['GlobalE', 'Flow', 'Borderfree']);
|
|
17331
|
+
|
|
17332
|
+
T['io.flow.internal.v0.models.classification_product_result'] = PropTypes.exact({
|
|
17333
|
+
product_id: PropTypes.string.isRequired,
|
|
17334
|
+
merchant_id: PropTypes.string.isRequired,
|
|
17335
|
+
platform_id: T['io.flow.internal.v0.enums.classification_platform'].isRequired,
|
|
17336
|
+
hs_code: PropTypes.string,
|
|
17337
|
+
probability: PropTypes.number,
|
|
17338
|
+
classification_decision: T['io.flow.internal.v0.enums.classification_decision'].isRequired,
|
|
17339
|
+
classification_type: T['io.flow.internal.v0.enums.classification_type'].isRequired,
|
|
17340
|
+
clothing_age_classification: T['io.flow.internal.v0.enums.clothing_age_classification'].isRequired,
|
|
17341
|
+
});
|
|
17342
|
+
|
|
17343
|
+
T['io.flow.internal.v0.models.classification_product_request'] = PropTypes.exact({
|
|
17344
|
+
merchant_id: PropTypes.string.isRequired,
|
|
17345
|
+
product_name: PropTypes.string.isRequired,
|
|
17346
|
+
product_description: PropTypes.string.isRequired,
|
|
17347
|
+
product_id_internal: PropTypes.string.isRequired,
|
|
17348
|
+
product_id_external: PropTypes.string.isRequired,
|
|
17349
|
+
product_group_code: PropTypes.string,
|
|
17350
|
+
product_url: PropTypes.string,
|
|
17351
|
+
product_image: PropTypes.string,
|
|
17352
|
+
product_attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
17353
|
+
categories: PropTypes.arrayOf(PropTypes.string),
|
|
17354
|
+
platform_id: T['io.flow.internal.v0.enums.classification_platform'].isRequired,
|
|
17355
|
+
});
|
|
17356
|
+
|
|
17166
17357
|
T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
|
|
17167
17358
|
value: PropTypes.string.isRequired,
|
|
17168
17359
|
unverified: PropTypes.bool.isRequired,
|
|
@@ -18423,6 +18614,8 @@ T['io.flow.internal.v0.enums.charge_input_type'] = PropTypes.oneOf([
|
|
|
18423
18614
|
'security_surcharge',
|
|
18424
18615
|
'duties_fx_surcharge',
|
|
18425
18616
|
'electronic_export_information_surcharge',
|
|
18617
|
+
'additional_handling',
|
|
18618
|
+
'large_package_surcharge',
|
|
18426
18619
|
]);
|
|
18427
18620
|
|
|
18428
18621
|
T['io.flow.internal.v0.models.transaction_reference'] = PropTypes.exact({
|
|
@@ -18764,6 +18957,20 @@ T['io.flow.channel.v0.models.channel'] = PropTypes.exact({
|
|
|
18764
18957
|
organization_id_prefix: PropTypes.string,
|
|
18765
18958
|
});
|
|
18766
18959
|
|
|
18960
|
+
T['io.flow.internal.v0.models.task'] = PropTypes.exact({
|
|
18961
|
+
type: PropTypes.string.isRequired,
|
|
18962
|
+
type_id: PropTypes.string.isRequired,
|
|
18963
|
+
source_type: PropTypes.string,
|
|
18964
|
+
source_id: PropTypes.string,
|
|
18965
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
18966
|
+
created_at: PropTypes.string.isRequired,
|
|
18967
|
+
num_attempts: PropTypes.number.isRequired,
|
|
18968
|
+
next_attempt_at: PropTypes.string.isRequired,
|
|
18969
|
+
errors: PropTypes.arrayOf(PropTypes.string),
|
|
18970
|
+
stacktrace: PropTypes.string,
|
|
18971
|
+
snooze_id: PropTypes.string,
|
|
18972
|
+
});
|
|
18973
|
+
|
|
18767
18974
|
T['io.flow.internal.v0.models.partner_form'] = PropTypes.exact({
|
|
18768
18975
|
id: PropTypes.string,
|
|
18769
18976
|
name: PropTypes.string,
|
|
@@ -19400,6 +19607,10 @@ T['io.flow.internal.v0.models.catalog_import_request'] = PropTypes.exact({
|
|
|
19400
19607
|
filename: PropTypes.string,
|
|
19401
19608
|
});
|
|
19402
19609
|
|
|
19610
|
+
T['io.flow.internal.v0.models.carrier_tax_units'] = PropTypes.exact({
|
|
19611
|
+
currency: PropTypes.string.isRequired,
|
|
19612
|
+
});
|
|
19613
|
+
|
|
19403
19614
|
T['io.flow.internal.v0.models.carrier_file_result'] = PropTypes.exact({
|
|
19404
19615
|
processed_at: PropTypes.string.isRequired,
|
|
19405
19616
|
number_lines_successful: PropTypes.number.isRequired,
|
|
@@ -19407,7 +19618,7 @@ T['io.flow.internal.v0.models.carrier_file_result'] = PropTypes.exact({
|
|
|
19407
19618
|
errors_url: PropTypes.string,
|
|
19408
19619
|
});
|
|
19409
19620
|
|
|
19410
|
-
T['io.flow.internal.v0.enums.carrier_file_type'] = PropTypes.oneOf(['
|
|
19621
|
+
T['io.flow.internal.v0.enums.carrier_file_type'] = PropTypes.oneOf(['freight', 'tax']);
|
|
19411
19622
|
|
|
19412
19623
|
T['io.flow.internal.v0.models.carrier_file_form'] = PropTypes.exact({
|
|
19413
19624
|
url: PropTypes.string.isRequired,
|
|
@@ -19424,14 +19635,6 @@ T['io.flow.internal.v0.models.carrier_file'] = PropTypes.exact({
|
|
|
19424
19635
|
result: T['io.flow.internal.v0.models.carrier_file_result'],
|
|
19425
19636
|
});
|
|
19426
19637
|
|
|
19427
|
-
T['io.flow.internal.v0.models.carrier_fee_transaction_label_reference'] = PropTypes.exact({
|
|
19428
|
-
id: PropTypes.string.isRequired,
|
|
19429
|
-
});
|
|
19430
|
-
|
|
19431
|
-
T['io.flow.internal.v0.models.carrier_fee_units'] = PropTypes.exact({
|
|
19432
|
-
currency: PropTypes.string.isRequired,
|
|
19433
|
-
});
|
|
19434
|
-
|
|
19435
19638
|
T['io.flow.internal.v0.models.carrier_charge_reference'] = PropTypes.exact({
|
|
19436
19639
|
id: PropTypes.string.isRequired,
|
|
19437
19640
|
});
|
|
@@ -19488,6 +19691,28 @@ T['io.flow.trueup.v0.models.dead_weight'] = PropTypes.exact({
|
|
|
19488
19691
|
weight: PropTypes.number.isRequired,
|
|
19489
19692
|
});
|
|
19490
19693
|
|
|
19694
|
+
T['io.flow.billing.v0.models.trueup_label_weights'] = PropTypes.exact({
|
|
19695
|
+
base: T['io.flow.billing.v0.models.trueup_label_base_weight'].isRequired,
|
|
19696
|
+
dead: T['io.flow.trueup.v0.models.dead_weight'],
|
|
19697
|
+
dimensional: T['io.flow.trueup.v0.models.dimensional_weight'],
|
|
19698
|
+
});
|
|
19699
|
+
|
|
19700
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup_base_data'] = PropTypes.exact({
|
|
19701
|
+
source: T['io.flow.billing.v0.enums.trueup_source'].isRequired,
|
|
19702
|
+
weights: T['io.flow.billing.v0.models.trueup_label_weights'].isRequired,
|
|
19703
|
+
units: T['io.flow.billing.v0.models.trueup_label_units'].isRequired,
|
|
19704
|
+
base: T['io.flow.billing.v0.models.trueup_label_base_v2'].isRequired,
|
|
19705
|
+
fuel: T['io.flow.billing.v0.models.trueup_label_fuel'],
|
|
19706
|
+
total: PropTypes.number.isRequired,
|
|
19707
|
+
});
|
|
19708
|
+
|
|
19709
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup_base'] = PropTypes.exact({
|
|
19710
|
+
discriminator: PropTypes.oneOf(['trueup_base']).isRequired,
|
|
19711
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
19712
|
+
estimate: T['io.flow.billing.v0.models.transaction_metadata_trueup_base_data'].isRequired,
|
|
19713
|
+
actual: T['io.flow.billing.v0.models.transaction_metadata_trueup_base_data'].isRequired,
|
|
19714
|
+
});
|
|
19715
|
+
|
|
19491
19716
|
T['io.flow.billing.v0.models.transaction_metadata_trueup_data'] = PropTypes.exact({
|
|
19492
19717
|
source: T['io.flow.billing.v0.enums.trueup_source'].isRequired,
|
|
19493
19718
|
units: T['io.flow.billing.v0.models.trueup_label_units'].isRequired,
|
|
@@ -19509,9 +19734,11 @@ T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
|
19509
19734
|
T['io.flow.billing.v0.models.transaction_metadata_shipping_label'],
|
|
19510
19735
|
T['io.flow.billing.v0.models.transaction_metadata_channel'],
|
|
19511
19736
|
T['io.flow.billing.v0.models.transaction_metadata_trueup'],
|
|
19737
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup_base'],
|
|
19738
|
+
T['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge'],
|
|
19512
19739
|
T['io.flow.billing.v0.models.transaction_metadata_carrier_charge'],
|
|
19513
|
-
T['io.flow.billing.v0.models.transaction_metadata_carrier_fee'],
|
|
19514
19740
|
T['io.flow.billing.v0.models.transaction_metadata_manual'],
|
|
19741
|
+
T['io.flow.billing.v0.models.transaction_metadata_failed_payout'],
|
|
19515
19742
|
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'],
|
|
19516
19743
|
]);
|
|
19517
19744
|
|
|
@@ -19522,6 +19749,8 @@ T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
|
19522
19749
|
});
|
|
19523
19750
|
|
|
19524
19751
|
T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
19752
|
+
all: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19753
|
+
base_and_fuel: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19525
19754
|
fuel: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19526
19755
|
remote_area: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19527
19756
|
oversize: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
@@ -19533,34 +19762,23 @@ T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
|
19533
19762
|
eei_filing: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19534
19763
|
fixed_ddp: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19535
19764
|
fixed_currency_conversion: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19765
|
+
prohibited_item: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19766
|
+
undeliverable_shipment: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19767
|
+
signature_required: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19768
|
+
direct_delivery: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19769
|
+
saturday_stop: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19770
|
+
residential_extended_area_pickup: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19536
19771
|
});
|
|
19537
19772
|
|
|
19538
|
-
T['io.flow.internal.v0.models.
|
|
19539
|
-
id: PropTypes.string.isRequired,
|
|
19540
|
-
label_invoice_request_id: PropTypes.string.isRequired,
|
|
19541
|
-
units: T['io.flow.internal.v0.models.carrier_fee_units'].isRequired,
|
|
19542
|
-
surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
|
|
19543
|
-
total: PropTypes.number.isRequired,
|
|
19544
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
19545
|
-
});
|
|
19546
|
-
|
|
19547
|
-
T['io.flow.internal.v0.models.carrier_fee'] = PropTypes.exact({
|
|
19773
|
+
T['io.flow.internal.v0.models.carrier_tax_form'] = PropTypes.exact({
|
|
19548
19774
|
id: PropTypes.string.isRequired,
|
|
19549
19775
|
label_invoice_request_id: PropTypes.string.isRequired,
|
|
19550
|
-
units: T['io.flow.internal.v0.models.
|
|
19776
|
+
units: T['io.flow.internal.v0.models.carrier_tax_units'].isRequired,
|
|
19551
19777
|
surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
|
|
19552
19778
|
total: PropTypes.number.isRequired,
|
|
19553
19779
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
19554
19780
|
});
|
|
19555
19781
|
|
|
19556
|
-
T['io.flow.internal.v0.models.carrier_fee_upserted'] = PropTypes.exact({
|
|
19557
|
-
discriminator: PropTypes.oneOf(['carrier_fee_upserted']).isRequired,
|
|
19558
|
-
event_id: PropTypes.string.isRequired,
|
|
19559
|
-
timestamp: PropTypes.string.isRequired,
|
|
19560
|
-
organization: PropTypes.string.isRequired,
|
|
19561
|
-
carrier_fee: T['io.flow.internal.v0.models.carrier_fee'].isRequired,
|
|
19562
|
-
});
|
|
19563
|
-
|
|
19564
19782
|
T['io.flow.trueup.v0.models.label_base'] = PropTypes.exact({
|
|
19565
19783
|
amount: PropTypes.number.isRequired,
|
|
19566
19784
|
weight: PropTypes.number.isRequired,
|
|
@@ -19574,7 +19792,7 @@ T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTyp
|
|
|
19574
19792
|
|
|
19575
19793
|
T['io.flow.internal.v0.models.carrier_charge_units'] = PropTypes.exact({
|
|
19576
19794
|
currency: PropTypes.string.isRequired,
|
|
19577
|
-
weight: T['io.flow.units.v0.enums.unit_of_weight']
|
|
19795
|
+
weight: T['io.flow.units.v0.enums.unit_of_weight'],
|
|
19578
19796
|
length: T['io.flow.units.v0.enums.unit_of_length'],
|
|
19579
19797
|
});
|
|
19580
19798
|
|
|
@@ -19616,7 +19834,7 @@ T['io.flow.internal.v0.unions.carrier_charge_form'] = PropTypes.oneOfType([
|
|
|
19616
19834
|
T['io.flow.internal.v0.models.carrier_charge_form_other'],
|
|
19617
19835
|
]);
|
|
19618
19836
|
|
|
19619
|
-
T['io.flow.internal.v0.enums.carrier_charge_type'] = PropTypes.oneOf(['label', 'other']);
|
|
19837
|
+
T['io.flow.internal.v0.enums.carrier_charge_type'] = PropTypes.oneOf(['label', 'tax', 'other']);
|
|
19620
19838
|
|
|
19621
19839
|
T['io.flow.internal.v0.models.carrier_charge'] = PropTypes.exact({
|
|
19622
19840
|
id: PropTypes.string.isRequired,
|
|
@@ -19628,7 +19846,7 @@ T['io.flow.internal.v0.models.carrier_charge'] = PropTypes.exact({
|
|
|
19628
19846
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
19629
19847
|
label_created_at: PropTypes.string.isRequired,
|
|
19630
19848
|
units: T['io.flow.internal.v0.models.carrier_charge_units'].isRequired,
|
|
19631
|
-
base: T['io.flow.trueup.v0.models.label_base']
|
|
19849
|
+
base: T['io.flow.trueup.v0.models.label_base'],
|
|
19632
19850
|
surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
|
|
19633
19851
|
total: PropTypes.number.isRequired,
|
|
19634
19852
|
dead: T['io.flow.trueup.v0.models.dead_weight'],
|
|
@@ -20388,7 +20606,6 @@ T['io.flow.internal.v0.enums.billing_statement_attachment_key'] = PropTypes.oneO
|
|
|
20388
20606
|
'duty',
|
|
20389
20607
|
'trueup',
|
|
20390
20608
|
'carrier_charge',
|
|
20391
|
-
'carrier_fee',
|
|
20392
20609
|
'all',
|
|
20393
20610
|
]);
|
|
20394
20611
|
|
|
@@ -20482,9 +20699,10 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
20482
20699
|
'shipping_label_service',
|
|
20483
20700
|
'shipping_label_revenue_share',
|
|
20484
20701
|
'trueup',
|
|
20702
|
+
'trueup_base',
|
|
20703
|
+
'trueup_surcharge',
|
|
20485
20704
|
'carrier_charge',
|
|
20486
20705
|
'carrier_charge_revenue_share',
|
|
20487
|
-
'carrier_fee',
|
|
20488
20706
|
'platform_fee',
|
|
20489
20707
|
'tax',
|
|
20490
20708
|
'duty',
|
|
@@ -20496,6 +20714,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
20496
20714
|
'order_service',
|
|
20497
20715
|
'virtual_card_capture',
|
|
20498
20716
|
'virtual_card_refund',
|
|
20717
|
+
'failed_payout',
|
|
20499
20718
|
]);
|
|
20500
20719
|
|
|
20501
20720
|
T['io.flow.billing.v0.models.parent_transaction_summary'] = PropTypes.exact({
|
|
@@ -20509,12 +20728,13 @@ T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata'] = PropTypes.
|
|
|
20509
20728
|
shipping_label_revenue_share: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label_revenue_share'],
|
|
20510
20729
|
trueup: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'],
|
|
20511
20730
|
carrier_charge: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_charge'],
|
|
20512
|
-
carrier_fee: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_fee'],
|
|
20513
20731
|
manual: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'],
|
|
20732
|
+
failed_payout: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_failed_payout'],
|
|
20514
20733
|
});
|
|
20515
20734
|
|
|
20516
20735
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_account'] = PropTypes.exact({
|
|
20517
20736
|
id: PropTypes.string.isRequired,
|
|
20737
|
+
merchant: T['io.flow.billing.csv.v0.models.billing_csv_merchant_reference'],
|
|
20518
20738
|
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
20519
20739
|
source: T['io.flow.billing.csv.v0.models.billing_csv_transaction_account_source_summary'].isRequired,
|
|
20520
20740
|
});
|
|
@@ -20542,7 +20762,6 @@ T['io.flow.billing.internal.v0.enums.billing_transaction_type'] = PropTypes.oneO
|
|
|
20542
20762
|
'duty',
|
|
20543
20763
|
'trueup',
|
|
20544
20764
|
'carrier_charge',
|
|
20545
|
-
'carrier_fee',
|
|
20546
20765
|
]);
|
|
20547
20766
|
|
|
20548
20767
|
T['io.flow.billing.csv.v0.models.billing_csv_processing_transaction'] = PropTypes.exact({
|
|
@@ -20784,6 +21003,7 @@ T['io.flow.internal.v0.models.product_restriction_rule_decision'] = PropTypes.ex
|
|
|
20784
21003
|
auto_review_status: T['io.flow.internal.v0.enums.restriction_status'],
|
|
20785
21004
|
manually_reviewed_at: PropTypes.string,
|
|
20786
21005
|
manually_reviewed_by: PropTypes.string,
|
|
21006
|
+
cause_rule_id: PropTypes.string,
|
|
20787
21007
|
});
|
|
20788
21008
|
|
|
20789
21009
|
T['io.flow.internal.v0.models.product_restriction_rule_decision_upserted'] = PropTypes.exact({
|
|
@@ -21052,6 +21272,13 @@ T['io.flow.partner.v0.models.bridge_hub'] = PropTypes.exact({
|
|
|
21052
21272
|
address: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
21053
21273
|
});
|
|
21054
21274
|
|
|
21275
|
+
T['io.flow.label.v0.models.label_processing_modification'] = PropTypes.exact({
|
|
21276
|
+
id: PropTypes.string.isRequired,
|
|
21277
|
+
modifications: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
21278
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
21279
|
+
destination_provided_to_carrier: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
21280
|
+
});
|
|
21281
|
+
|
|
21055
21282
|
T['io.flow.return.v0.models.return_form'] = PropTypes.exact({
|
|
21056
21283
|
items: PropTypes.arrayOf(T['io.flow.return.v0.models.return_line_item']).isRequired,
|
|
21057
21284
|
tier_id: PropTypes.string,
|
|
@@ -22681,13 +22908,6 @@ T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
|
|
|
22681
22908
|
updated_at: PropTypes.string.isRequired,
|
|
22682
22909
|
});
|
|
22683
22910
|
|
|
22684
|
-
T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
22685
|
-
order: T['io.flow.internal.v0.models.debug_order'].isRequired,
|
|
22686
|
-
debug: T['io.flow.internal.v0.models.debug_details'].isRequired,
|
|
22687
|
-
transactions: PropTypes.arrayOf(T['io.flow.billing.v0.models.transaction']).isRequired,
|
|
22688
|
-
reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
|
|
22689
|
-
});
|
|
22690
|
-
|
|
22691
22911
|
T['io.flow.internal.v0.enums.address_configuration_setting_province_code'] = PropTypes.oneOf(['iso_3166_2', 'name']);
|
|
22692
22912
|
|
|
22693
22913
|
T['io.flow.internal.v0.models.address_configuration_setting_form'] = PropTypes.exact({
|
|
@@ -23945,70 +24165,6 @@ T['io.flow.internal.v0.models.restriction_organization_decision_summary'] = Prop
|
|
|
23945
24165
|
count: PropTypes.number.isRequired,
|
|
23946
24166
|
});
|
|
23947
24167
|
|
|
23948
|
-
T['io.flow.common.v0.models.money_with_base'] = PropTypes.exact({
|
|
23949
|
-
currency: PropTypes.string.isRequired,
|
|
23950
|
-
amount: PropTypes.number.isRequired,
|
|
23951
|
-
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
23952
|
-
});
|
|
23953
|
-
|
|
23954
|
-
T['io.flow.fulfillment.v0.models.quote_line_item_form'] = PropTypes.exact({
|
|
23955
|
-
number: PropTypes.string.isRequired,
|
|
23956
|
-
quantity: PropTypes.number.isRequired,
|
|
23957
|
-
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
23958
|
-
price: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23959
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23960
|
-
center: PropTypes.string,
|
|
23961
|
-
});
|
|
23962
|
-
|
|
23963
|
-
T['io.flow.fulfillment.v0.models.quote_form'] = PropTypes.exact({
|
|
23964
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23965
|
-
experience: PropTypes.string.isRequired,
|
|
23966
|
-
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.quote_line_item_form']).isRequired,
|
|
23967
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
23968
|
-
delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']),
|
|
23969
|
-
direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
|
|
23970
|
-
});
|
|
23971
|
-
|
|
23972
|
-
T['io.flow.fulfillment.v0.models.delivery_option_form'] = PropTypes.exact({
|
|
23973
|
-
delivery: PropTypes.string.isRequired,
|
|
23974
|
-
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.quote_line_item_form']).isRequired,
|
|
23975
|
-
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
23976
|
-
});
|
|
23977
|
-
|
|
23978
|
-
T['io.flow.experience.v0.models.allocation_line_summary_shipping'] = PropTypes.exact({
|
|
23979
|
-
subtotal: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23980
|
-
discount: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23981
|
-
duties: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23982
|
-
tax: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23983
|
-
tax_subsidy: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23984
|
-
duties_subsidy: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23985
|
-
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23986
|
-
});
|
|
23987
|
-
|
|
23988
|
-
T['io.flow.experience.v0.models.allocation_line_summary_line_item'] = PropTypes.exact({
|
|
23989
|
-
item_number: PropTypes.string.isRequired,
|
|
23990
|
-
line_number: PropTypes.string,
|
|
23991
|
-
subtotal: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23992
|
-
discount: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23993
|
-
duties: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23994
|
-
tax: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23995
|
-
tax_subsidy: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23996
|
-
duties_subsidy: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23997
|
-
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
23998
|
-
});
|
|
23999
|
-
|
|
24000
|
-
T['io.flow.experience.v0.models.allocation_line_summary'] = PropTypes.exact({
|
|
24001
|
-
line_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.allocation_line_summary_line_item']).isRequired,
|
|
24002
|
-
shipping: T['io.flow.experience.v0.models.allocation_line_summary_shipping'].isRequired,
|
|
24003
|
-
subtotal: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24004
|
-
discount: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24005
|
-
duties: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24006
|
-
tax: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24007
|
-
tax_subsidy: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24008
|
-
duties_subsidy: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24009
|
-
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24010
|
-
});
|
|
24011
|
-
|
|
24012
24168
|
T['io.flow.internal.v0.models.liability_money'] = PropTypes.exact({
|
|
24013
24169
|
local: T['io.flow.common.v0.models.money'].isRequired,
|
|
24014
24170
|
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
@@ -24095,6 +24251,70 @@ T['io.flow.internal.v0.models.dispute_upserted'] = PropTypes.exact({
|
|
|
24095
24251
|
dispute: T['io.flow.internal.v0.models.dispute'].isRequired,
|
|
24096
24252
|
});
|
|
24097
24253
|
|
|
24254
|
+
T['io.flow.common.v0.models.money_with_base'] = PropTypes.exact({
|
|
24255
|
+
currency: PropTypes.string.isRequired,
|
|
24256
|
+
amount: PropTypes.number.isRequired,
|
|
24257
|
+
base: T['io.flow.common.v0.models.money'].isRequired,
|
|
24258
|
+
});
|
|
24259
|
+
|
|
24260
|
+
T['io.flow.fulfillment.v0.models.quote_line_item_form'] = PropTypes.exact({
|
|
24261
|
+
number: PropTypes.string.isRequired,
|
|
24262
|
+
quantity: PropTypes.number.isRequired,
|
|
24263
|
+
shipment_estimate: T['io.flow.common.v0.models.datetime_range'],
|
|
24264
|
+
price: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24265
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
24266
|
+
center: PropTypes.string,
|
|
24267
|
+
});
|
|
24268
|
+
|
|
24269
|
+
T['io.flow.fulfillment.v0.models.quote_form'] = PropTypes.exact({
|
|
24270
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
24271
|
+
experience: PropTypes.string.isRequired,
|
|
24272
|
+
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.quote_line_item_form']).isRequired,
|
|
24273
|
+
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'],
|
|
24274
|
+
delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']),
|
|
24275
|
+
direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
|
|
24276
|
+
});
|
|
24277
|
+
|
|
24278
|
+
T['io.flow.fulfillment.v0.models.delivery_option_form'] = PropTypes.exact({
|
|
24279
|
+
delivery: PropTypes.string.isRequired,
|
|
24280
|
+
items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.quote_line_item_form']).isRequired,
|
|
24281
|
+
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
24282
|
+
});
|
|
24283
|
+
|
|
24284
|
+
T['io.flow.experience.v0.models.allocation_line_summary_shipping'] = PropTypes.exact({
|
|
24285
|
+
subtotal: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24286
|
+
discount: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24287
|
+
duties: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24288
|
+
tax: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24289
|
+
tax_subsidy: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24290
|
+
duties_subsidy: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24291
|
+
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24292
|
+
});
|
|
24293
|
+
|
|
24294
|
+
T['io.flow.experience.v0.models.allocation_line_summary_line_item'] = PropTypes.exact({
|
|
24295
|
+
item_number: PropTypes.string.isRequired,
|
|
24296
|
+
line_number: PropTypes.string,
|
|
24297
|
+
subtotal: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24298
|
+
discount: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24299
|
+
duties: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24300
|
+
tax: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24301
|
+
tax_subsidy: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24302
|
+
duties_subsidy: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24303
|
+
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24304
|
+
});
|
|
24305
|
+
|
|
24306
|
+
T['io.flow.experience.v0.models.allocation_line_summary'] = PropTypes.exact({
|
|
24307
|
+
line_items: PropTypes.arrayOf(T['io.flow.experience.v0.models.allocation_line_summary_line_item']).isRequired,
|
|
24308
|
+
shipping: T['io.flow.experience.v0.models.allocation_line_summary_shipping'].isRequired,
|
|
24309
|
+
subtotal: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24310
|
+
discount: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24311
|
+
duties: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24312
|
+
tax: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24313
|
+
tax_subsidy: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24314
|
+
duties_subsidy: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24315
|
+
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
24316
|
+
});
|
|
24317
|
+
|
|
24098
24318
|
T['io.flow.experience.v0.models.order_form'] = PropTypes.exact({
|
|
24099
24319
|
customer: T['io.flow.common.v0.models.order_customer_form'],
|
|
24100
24320
|
items: PropTypes.arrayOf(T['io.flow.common.v0.models.line_item_form']).isRequired,
|
|
@@ -24391,63 +24611,6 @@ T['io.flow.internal.v0.unions.order_action_form'] = PropTypes.oneOfType([
|
|
|
24391
24611
|
T['io.flow.internal.v0.models.fulfillment_action_form'],
|
|
24392
24612
|
]);
|
|
24393
24613
|
|
|
24394
|
-
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'] = PropTypes.exact({
|
|
24395
|
-
discriminator: PropTypes.oneOf(['order_combined_shipment']).isRequired,
|
|
24396
|
-
id: PropTypes.string.isRequired,
|
|
24397
|
-
carrier_id: PropTypes.string,
|
|
24398
|
-
carrier_service_id: PropTypes.string,
|
|
24399
|
-
carrier_tracking_number: PropTypes.string,
|
|
24400
|
-
label_id: PropTypes.string,
|
|
24401
|
-
created_at: PropTypes.string,
|
|
24402
|
-
});
|
|
24403
|
-
|
|
24404
|
-
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'] = PropTypes.exact({
|
|
24405
|
-
discriminator: PropTypes.oneOf(['external_fulfillment']).isRequired,
|
|
24406
|
-
id: PropTypes.string.isRequired,
|
|
24407
|
-
carrier_id: PropTypes.string,
|
|
24408
|
-
carrier_service_id: PropTypes.string,
|
|
24409
|
-
carrier_tracking_number: PropTypes.string,
|
|
24410
|
-
label_id: PropTypes.string,
|
|
24411
|
-
created_at: PropTypes.string,
|
|
24412
|
-
});
|
|
24413
|
-
|
|
24414
|
-
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'] = PropTypes.exact({
|
|
24415
|
-
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
24416
|
-
id: PropTypes.string.isRequired,
|
|
24417
|
-
carrier_id: PropTypes.string,
|
|
24418
|
-
carrier_service_id: PropTypes.string,
|
|
24419
|
-
carrier_tracking_number: PropTypes.string,
|
|
24420
|
-
label_id: PropTypes.string,
|
|
24421
|
-
created_at: PropTypes.string,
|
|
24422
|
-
});
|
|
24423
|
-
|
|
24424
|
-
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'] = PropTypes.exact({
|
|
24425
|
-
discriminator: PropTypes.oneOf(['label_tracking']).isRequired,
|
|
24426
|
-
id: PropTypes.string.isRequired,
|
|
24427
|
-
carrier_id: PropTypes.string,
|
|
24428
|
-
carrier_service_id: PropTypes.string,
|
|
24429
|
-
carrier_tracking_number: PropTypes.string,
|
|
24430
|
-
label_id: PropTypes.string,
|
|
24431
|
-
created_at: PropTypes.string,
|
|
24432
|
-
});
|
|
24433
|
-
|
|
24434
|
-
T['io.flow.internal.v0.unions.fulfillment_proof'] = PropTypes.oneOfType([
|
|
24435
|
-
T['io.flow.internal.v0.models.fulfillment_proof_label_tracking_reference'],
|
|
24436
|
-
T['io.flow.internal.v0.models.fulfillment_proof_shipping_notification_reference'],
|
|
24437
|
-
T['io.flow.internal.v0.models.fulfillment_proof_external_fulfillment_proof_reference'],
|
|
24438
|
-
T['io.flow.internal.v0.models.fulfillment_proof_order_combined_shipment_reference'],
|
|
24439
|
-
]);
|
|
24440
|
-
|
|
24441
|
-
T['io.flow.internal.v0.models.fulfillment_trigger_proof'] = PropTypes.exact({
|
|
24442
|
-
discriminator: PropTypes.oneOf(['by_proof']).isRequired,
|
|
24443
|
-
proof: T['io.flow.internal.v0.unions.fulfillment_proof'].isRequired,
|
|
24444
|
-
});
|
|
24445
|
-
|
|
24446
|
-
T['io.flow.internal.v0.unions.fulfillment_trigger'] = PropTypes.oneOfType([
|
|
24447
|
-
T['io.flow.internal.v0.models.fulfillment_trigger_proof'],
|
|
24448
|
-
T['io.flow.internal.v0.models.fulfillment_trigger_time'],
|
|
24449
|
-
]);
|
|
24450
|
-
|
|
24451
24614
|
T['io.flow.internal.v0.models.bank_account_reference'] = PropTypes.exact({
|
|
24452
24615
|
id: PropTypes.string.isRequired,
|
|
24453
24616
|
});
|
|
@@ -24539,12 +24702,32 @@ T['io.flow.billing.internal.v0.models.external_fulfillment_proof'] = PropTypes.e
|
|
|
24539
24702
|
).isRequired,
|
|
24540
24703
|
});
|
|
24541
24704
|
|
|
24705
|
+
T['io.flow.billing.internal.v0.models.bank_payment_order'] = PropTypes.exact({
|
|
24706
|
+
id: PropTypes.string.isRequired,
|
|
24707
|
+
payment: T['io.flow.billing.internal.v0.models.bank_payment_reference'].isRequired,
|
|
24708
|
+
order: T['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
24709
|
+
});
|
|
24710
|
+
|
|
24542
24711
|
T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
|
|
24543
24712
|
discriminator: PropTypes.oneOf(['organization_token_v2_reference']).isRequired,
|
|
24544
24713
|
id: PropTypes.string.isRequired,
|
|
24545
24714
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24546
24715
|
});
|
|
24547
24716
|
|
|
24717
|
+
T['io.flow.shopify.markets.internal.v0.models.channel_organization_identifier'] = PropTypes.exact({
|
|
24718
|
+
id: PropTypes.string.isRequired,
|
|
24719
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24720
|
+
identifier: PropTypes.string.isRequired,
|
|
24721
|
+
});
|
|
24722
|
+
|
|
24723
|
+
T['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_upserted'] = PropTypes.exact({
|
|
24724
|
+
discriminator: PropTypes.oneOf(['channel_organization_identifier_upserted']).isRequired,
|
|
24725
|
+
event_id: PropTypes.string.isRequired,
|
|
24726
|
+
timestamp: PropTypes.string.isRequired,
|
|
24727
|
+
channel_id: PropTypes.string.isRequired,
|
|
24728
|
+
channel_organization_identifier: T['io.flow.shopify.markets.internal.v0.models.channel_organization_identifier'].isRequired,
|
|
24729
|
+
});
|
|
24730
|
+
|
|
24548
24731
|
T['io.flow.shopify.markets.internal.v0.models.channel_order_summary'] = PropTypes.exact({
|
|
24549
24732
|
id: PropTypes.string.isRequired,
|
|
24550
24733
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -24574,6 +24757,8 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
24574
24757
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_metrics_deleted'],
|
|
24575
24758
|
T['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_upserted'],
|
|
24576
24759
|
T['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_deleted'],
|
|
24760
|
+
T['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_upserted'],
|
|
24761
|
+
T['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_deleted'],
|
|
24577
24762
|
]);
|
|
24578
24763
|
|
|
24579
24764
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary'] = PropTypes.exact({
|
|
@@ -24769,8 +24954,9 @@ T['io.flow.billing.accounting.v0.models.fulfillment'] = PropTypes.exact({
|
|
|
24769
24954
|
merchant: T['io.flow.billing.accounting.v0.models.merchant_summary'].isRequired,
|
|
24770
24955
|
sequence_number: PropTypes.number.isRequired,
|
|
24771
24956
|
posting_cutoff: PropTypes.string.isRequired,
|
|
24772
|
-
trigger: T['io.flow.billing.accounting.v0.unions.fulfillment_trigger']
|
|
24957
|
+
trigger: T['io.flow.billing.accounting.v0.unions.fulfillment_trigger'],
|
|
24773
24958
|
fulfilled_at: PropTypes.string.isRequired,
|
|
24959
|
+
carrier: T['io.flow.billing.accounting.v0.models.fulfillment_carrier'],
|
|
24774
24960
|
owner: T['io.flow.billing.internal.v0.enums.responsible_party'].isRequired,
|
|
24775
24961
|
origin: T['io.flow.billing.accounting.v0.models.fulfillment_origin'],
|
|
24776
24962
|
business: T['io.flow.billing.accounting.v0.models.fulfillment_business'],
|
|
@@ -25154,6 +25340,20 @@ T['io.flow.internal.v0.models.channel_organization_shopify'] = PropTypes.exact({
|
|
|
25154
25340
|
tokens: PropTypes.arrayOf(T['io.flow.internal.v0.models.shopify_channel_organization_tokens']).isRequired,
|
|
25155
25341
|
});
|
|
25156
25342
|
|
|
25343
|
+
T['io.flow.internal.v0.models.channel_organization_identifier'] = PropTypes.exact({
|
|
25344
|
+
id: PropTypes.string.isRequired,
|
|
25345
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25346
|
+
identifier: PropTypes.string.isRequired,
|
|
25347
|
+
});
|
|
25348
|
+
|
|
25349
|
+
T['io.flow.internal.v0.models.channel_organization_identifier_upserted'] = PropTypes.exact({
|
|
25350
|
+
discriminator: PropTypes.oneOf(['channel_organization_identifier_upserted']).isRequired,
|
|
25351
|
+
event_id: PropTypes.string.isRequired,
|
|
25352
|
+
timestamp: PropTypes.string.isRequired,
|
|
25353
|
+
channel_id: PropTypes.string.isRequired,
|
|
25354
|
+
channel_organization_identifier: T['io.flow.internal.v0.models.channel_organization_identifier'].isRequired,
|
|
25355
|
+
});
|
|
25356
|
+
|
|
25157
25357
|
T['io.flow.internal.v0.models.channel_order_summary'] = PropTypes.exact({
|
|
25158
25358
|
id: PropTypes.string.isRequired,
|
|
25159
25359
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -25207,6 +25407,13 @@ T['io.flow.internal.v0.models.bank_payment_order'] = PropTypes.exact({
|
|
|
25207
25407
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25208
25408
|
});
|
|
25209
25409
|
|
|
25410
|
+
T['io.flow.internal.v0.models.bank_payment_order_upserted'] = PropTypes.exact({
|
|
25411
|
+
discriminator: PropTypes.oneOf(['bank_payment_order_upserted']).isRequired,
|
|
25412
|
+
event_id: PropTypes.string.isRequired,
|
|
25413
|
+
timestamp: PropTypes.string.isRequired,
|
|
25414
|
+
bank_payment_order: T['io.flow.internal.v0.models.bank_payment_order'].isRequired,
|
|
25415
|
+
});
|
|
25416
|
+
|
|
25210
25417
|
T['io.flow.internal.v0.models.order_reference'] = PropTypes.exact({
|
|
25211
25418
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25212
25419
|
number: PropTypes.string.isRequired,
|
|
@@ -25218,16 +25425,8 @@ T['io.flow.internal.v0.models.accounting_pending_order_metadata'] = PropTypes.ex
|
|
|
25218
25425
|
fulfillment_id: PropTypes.string.isRequired,
|
|
25219
25426
|
});
|
|
25220
25427
|
|
|
25221
|
-
T['io.flow.internal.v0.models.accounting_fulfillment_metadata'] = PropTypes.exact({
|
|
25222
|
-
discriminator: PropTypes.oneOf(['accounting_fulfillment_metadata']).isRequired,
|
|
25223
|
-
order: T['io.flow.internal.v0.models.order_reference'].isRequired,
|
|
25224
|
-
proof: T['io.flow.internal.v0.unions.fulfillment_proof'],
|
|
25225
|
-
posting_cutoff: PropTypes.string.isRequired,
|
|
25226
|
-
});
|
|
25227
|
-
|
|
25228
25428
|
T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
25229
25429
|
T['io.flow.internal.v0.models.statement_creation_metadata'],
|
|
25230
|
-
T['io.flow.internal.v0.models.accounting_fulfillment_metadata'],
|
|
25231
25430
|
T['io.flow.internal.v0.models.accounting_pending_order_metadata'],
|
|
25232
25431
|
]);
|
|
25233
25432
|
|
|
@@ -25618,19 +25817,6 @@ T['io.flow.billing.internal.v0.models.next_billing_statement'] = PropTypes.exact
|
|
|
25618
25817
|
conditions: PropTypes.string,
|
|
25619
25818
|
});
|
|
25620
25819
|
|
|
25621
|
-
T['io.flow.billing.internal.v0.models.carrier_fee_transaction'] = PropTypes.exact({
|
|
25622
|
-
discriminator: PropTypes.oneOf(['carrier_fee_transaction']).isRequired,
|
|
25623
|
-
label_reference: T['io.flow.billing.internal.v0.models.carrier_fee_transaction_label_reference'].isRequired,
|
|
25624
|
-
id: PropTypes.string.isRequired,
|
|
25625
|
-
type: T['io.flow.billing.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
25626
|
-
status: T['io.flow.billing.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
25627
|
-
posted_at: PropTypes.string,
|
|
25628
|
-
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
25629
|
-
description: PropTypes.string.isRequired,
|
|
25630
|
-
statement: T['io.flow.billing.internal.v0.models.billing_statement_reference'],
|
|
25631
|
-
created_at: PropTypes.string.isRequired,
|
|
25632
|
-
});
|
|
25633
|
-
|
|
25634
25820
|
T['io.flow.billing.internal.v0.models.carrier_charge_transaction'] = PropTypes.exact({
|
|
25635
25821
|
discriminator: PropTypes.oneOf(['carrier_charge_transaction']).isRequired,
|
|
25636
25822
|
order: T['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
@@ -25681,7 +25867,6 @@ T['io.flow.billing.internal.v0.models.billing_statement_totals'] = PropTypes.exa
|
|
|
25681
25867
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
25682
25868
|
trueup: T['io.flow.common.v0.models.price'].isRequired,
|
|
25683
25869
|
carrier_charge: T['io.flow.common.v0.models.price'].isRequired,
|
|
25684
|
-
carrier_fee: T['io.flow.common.v0.models.price'].isRequired,
|
|
25685
25870
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
25686
25871
|
});
|
|
25687
25872
|
|
|
@@ -25988,19 +26173,6 @@ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exac
|
|
|
25988
26173
|
name: PropTypes.string,
|
|
25989
26174
|
});
|
|
25990
26175
|
|
|
25991
|
-
T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
|
|
25992
|
-
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
25993
|
-
currency: PropTypes.string.isRequired,
|
|
25994
|
-
amount: PropTypes.number.isRequired,
|
|
25995
|
-
label: PropTypes.string.isRequired,
|
|
25996
|
-
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
25997
|
-
components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
|
|
25998
|
-
name: PropTypes.string,
|
|
25999
|
-
rate: PropTypes.number,
|
|
26000
|
-
accuracy: T['io.flow.price.v0.enums.price_accuracy'],
|
|
26001
|
-
rate_label: PropTypes.string,
|
|
26002
|
-
});
|
|
26003
|
-
|
|
26004
26176
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'] = PropTypes.exact({
|
|
26005
26177
|
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
26006
26178
|
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -26463,6 +26635,28 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
|
|
|
26463
26635
|
gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
|
|
26464
26636
|
});
|
|
26465
26637
|
|
|
26638
|
+
T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
|
|
26639
|
+
key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
|
|
26640
|
+
currency: PropTypes.string.isRequired,
|
|
26641
|
+
amount: PropTypes.number.isRequired,
|
|
26642
|
+
label: PropTypes.string.isRequired,
|
|
26643
|
+
base: T['io.flow.common.v0.models.price'].isRequired,
|
|
26644
|
+
components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
|
|
26645
|
+
name: PropTypes.string,
|
|
26646
|
+
rate: PropTypes.number,
|
|
26647
|
+
accuracy: T['io.flow.price.v0.enums.price_accuracy'],
|
|
26648
|
+
rate_label: PropTypes.string,
|
|
26649
|
+
});
|
|
26650
|
+
|
|
26651
|
+
T['io.flow.internal.v0.models.debug_order'] = PropTypes.exact({
|
|
26652
|
+
organization_id: PropTypes.string.isRequired,
|
|
26653
|
+
number: PropTypes.string.isRequired,
|
|
26654
|
+
prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']).isRequired,
|
|
26655
|
+
total: T['io.flow.common.v0.models.money_with_base'].isRequired,
|
|
26656
|
+
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
26657
|
+
submitted_at: PropTypes.string,
|
|
26658
|
+
});
|
|
26659
|
+
|
|
26466
26660
|
T['io.flow.internal.v0.models.components'] = PropTypes.exact({
|
|
26467
26661
|
vat: T['io.flow.common.v0.models.price'].isRequired,
|
|
26468
26662
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -26633,7 +26827,6 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
26633
26827
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
26634
26828
|
trueup: T['io.flow.common.v0.models.price'].isRequired,
|
|
26635
26829
|
carrier_charge: T['io.flow.common.v0.models.price'].isRequired,
|
|
26636
|
-
carrier_fee: T['io.flow.common.v0.models.price'].isRequired,
|
|
26637
26830
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
26638
26831
|
});
|
|
26639
26832
|
|
|
@@ -26859,7 +27052,6 @@ T['io.flow.billing.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
26859
27052
|
T['io.flow.billing.internal.v0.models.duty_transaction'],
|
|
26860
27053
|
T['io.flow.billing.internal.v0.models.trueup_transaction'],
|
|
26861
27054
|
T['io.flow.billing.internal.v0.models.carrier_charge_transaction'],
|
|
26862
|
-
T['io.flow.billing.internal.v0.models.carrier_fee_transaction'],
|
|
26863
27055
|
]);
|
|
26864
27056
|
|
|
26865
27057
|
T['io.flow.item.v0.models.local_item_attribute_pricing'] = PropTypes.exact({
|
|
@@ -27037,6 +27229,20 @@ T['io.flow.experience.v0.models.allocation_v2'] = PropTypes.exact({
|
|
|
27037
27229
|
total: T['io.flow.catalog.v0.models.localized_total'].isRequired,
|
|
27038
27230
|
});
|
|
27039
27231
|
|
|
27232
|
+
T['io.flow.internal.v0.models.debug_details'] = PropTypes.exact({
|
|
27233
|
+
labels: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label']).isRequired,
|
|
27234
|
+
captures: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
27235
|
+
refunds: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
|
|
27236
|
+
allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
|
|
27237
|
+
});
|
|
27238
|
+
|
|
27239
|
+
T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
27240
|
+
order: T['io.flow.internal.v0.models.debug_order'].isRequired,
|
|
27241
|
+
debug: T['io.flow.internal.v0.models.debug_details'].isRequired,
|
|
27242
|
+
transactions: PropTypes.arrayOf(T['io.flow.billing.v0.models.transaction']).isRequired,
|
|
27243
|
+
reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
|
|
27244
|
+
});
|
|
27245
|
+
|
|
27040
27246
|
T['io.flow.experience.v0.models.order_payment'] = PropTypes.exact({
|
|
27041
27247
|
id: PropTypes.string.isRequired,
|
|
27042
27248
|
type: T['io.flow.experience.v0.enums.order_payment_type'].isRequired,
|
|
@@ -27675,6 +27881,7 @@ T['io.flow.internal.v0.models.scheduled_payment'] = PropTypes.exact({
|
|
|
27675
27881
|
payment: T['io.flow.internal.v0.models.report_payment'].isRequired,
|
|
27676
27882
|
bank_account: T['io.flow.internal.v0.models.report_bank_account_cleartext'].isRequired,
|
|
27677
27883
|
account: T['io.flow.internal.v0.models.report_account'].isRequired,
|
|
27884
|
+
merchant: T['io.flow.internal.v0.models.report_merchant'].isRequired,
|
|
27678
27885
|
owner: T['io.flow.internal.v0.models.report_owner'].isRequired,
|
|
27679
27886
|
description: PropTypes.string.isRequired,
|
|
27680
27887
|
});
|
|
@@ -27843,8 +28050,9 @@ T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
|
27843
28050
|
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
27844
28051
|
sequence_number: PropTypes.number.isRequired,
|
|
27845
28052
|
posting_cutoff: PropTypes.string.isRequired,
|
|
27846
|
-
trigger: T['io.flow.internal.v0.unions.fulfillment_trigger']
|
|
28053
|
+
trigger: T['io.flow.internal.v0.unions.fulfillment_trigger'],
|
|
27847
28054
|
fulfilled_at: PropTypes.string.isRequired,
|
|
28055
|
+
carrier: T['io.flow.internal.v0.models.fulfillment_carrier'],
|
|
27848
28056
|
owner: T['io.flow.internal.v0.enums.responsible_party'].isRequired,
|
|
27849
28057
|
origin: T['io.flow.internal.v0.models.fulfillment_origin'],
|
|
27850
28058
|
business: T['io.flow.internal.v0.models.fulfillment_business'],
|
|
@@ -27936,6 +28144,7 @@ T['io.flow.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
27936
28144
|
liabilities_method: T['io.flow.internal.v0.enums.account_setting_liabilities_method'].isRequired,
|
|
27937
28145
|
enable_fee_reversals: PropTypes.bool.isRequired,
|
|
27938
28146
|
record_reason_for_transactions_pending_payout: PropTypes.bool.isRequired,
|
|
28147
|
+
enable_negative_debits: PropTypes.bool.isRequired,
|
|
27939
28148
|
});
|
|
27940
28149
|
|
|
27941
28150
|
T['io.flow.internal.v0.models.account_settings_upserted'] = PropTypes.exact({
|
|
@@ -28054,7 +28263,6 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
28054
28263
|
'duty',
|
|
28055
28264
|
'trueup',
|
|
28056
28265
|
'carrier_charge',
|
|
28057
|
-
'carrier_fee',
|
|
28058
28266
|
]);
|
|
28059
28267
|
|
|
28060
28268
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -28407,19 +28615,6 @@ T['io.flow.internal.v0.models.channel_billed_transaction_upserted'] = PropTypes.
|
|
|
28407
28615
|
channel_billed_transaction: T['io.flow.internal.v0.models.channel_billed_transaction'].isRequired,
|
|
28408
28616
|
});
|
|
28409
28617
|
|
|
28410
|
-
T['io.flow.internal.v0.models.carrier_fee_transaction'] = PropTypes.exact({
|
|
28411
|
-
discriminator: PropTypes.oneOf(['carrier_fee_transaction']).isRequired,
|
|
28412
|
-
label_reference: T['io.flow.internal.v0.models.carrier_fee_transaction_label_reference'].isRequired,
|
|
28413
|
-
id: PropTypes.string.isRequired,
|
|
28414
|
-
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
28415
|
-
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
28416
|
-
posted_at: PropTypes.string,
|
|
28417
|
-
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
28418
|
-
description: PropTypes.string.isRequired,
|
|
28419
|
-
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
28420
|
-
created_at: PropTypes.string.isRequired,
|
|
28421
|
-
});
|
|
28422
|
-
|
|
28423
28618
|
T['io.flow.internal.v0.models.carrier_charge_transaction'] = PropTypes.exact({
|
|
28424
28619
|
discriminator: PropTypes.oneOf(['carrier_charge_transaction']).isRequired,
|
|
28425
28620
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
@@ -28452,7 +28647,6 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
28452
28647
|
T['io.flow.internal.v0.models.duty_transaction'],
|
|
28453
28648
|
T['io.flow.internal.v0.models.trueup_transaction'],
|
|
28454
28649
|
T['io.flow.internal.v0.models.carrier_charge_transaction'],
|
|
28455
|
-
T['io.flow.internal.v0.models.carrier_fee_transaction'],
|
|
28456
28650
|
]);
|
|
28457
28651
|
|
|
28458
28652
|
T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
|
|
@@ -28521,6 +28715,12 @@ T['io.flow.common.v0.models.user_reference'] = PropTypes.exact({
|
|
|
28521
28715
|
id: PropTypes.string.isRequired,
|
|
28522
28716
|
});
|
|
28523
28717
|
|
|
28718
|
+
T['io.flow.billing.internal.v0.models.cli_log_entry'] = PropTypes.exact({
|
|
28719
|
+
id: PropTypes.string.isRequired,
|
|
28720
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
28721
|
+
task: PropTypes.string.isRequired,
|
|
28722
|
+
});
|
|
28723
|
+
|
|
28524
28724
|
T['io.flow.token.v0.models.partner_token_reference'] = PropTypes.exact({
|
|
28525
28725
|
discriminator: PropTypes.oneOf(['partner_token_reference']).isRequired,
|
|
28526
28726
|
id: PropTypes.string.isRequired,
|
|
@@ -28835,8 +29035,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28835
29035
|
T['io.flow.internal.v0.models.label_invoice_request_deleted'],
|
|
28836
29036
|
T['io.flow.internal.v0.models.carrier_charge_upserted'],
|
|
28837
29037
|
T['io.flow.internal.v0.models.carrier_charge_deleted'],
|
|
28838
|
-
T['io.flow.internal.v0.models.
|
|
28839
|
-
T['io.flow.internal.v0.models.
|
|
29038
|
+
T['io.flow.internal.v0.models.bank_payment_order_upserted'],
|
|
29039
|
+
T['io.flow.internal.v0.models.bank_payment_order_deleted'],
|
|
28840
29040
|
T['io.flow.internal.v0.models.fraud_review_upserted'],
|
|
28841
29041
|
T['io.flow.internal.v0.models.fraud_review_deleted'],
|
|
28842
29042
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
|
|
@@ -28993,6 +29193,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28993
29193
|
T['io.flow.internal.v0.models.shopify_markets_metrics_deleted'],
|
|
28994
29194
|
T['io.flow.internal.v0.models.channel_order_summary_upserted'],
|
|
28995
29195
|
T['io.flow.internal.v0.models.channel_order_summary_deleted'],
|
|
29196
|
+
T['io.flow.internal.v0.models.channel_organization_identifier_upserted'],
|
|
29197
|
+
T['io.flow.internal.v0.models.channel_organization_identifier_deleted'],
|
|
28996
29198
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
28997
29199
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
28998
29200
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
@@ -29031,6 +29233,12 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29031
29233
|
T['io.flow.internal.v0.models.user_deleted_v2'],
|
|
29032
29234
|
]);
|
|
29033
29235
|
|
|
29236
|
+
T['io.flow.internal.v0.models.cli_log_entry'] = PropTypes.exact({
|
|
29237
|
+
id: PropTypes.string.isRequired,
|
|
29238
|
+
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
29239
|
+
task: PropTypes.string.isRequired,
|
|
29240
|
+
});
|
|
29241
|
+
|
|
29034
29242
|
T['io.flow.common.v0.unions.expandable_user'] = PropTypes.oneOfType([
|
|
29035
29243
|
T['io.flow.common.v0.models.user'],
|
|
29036
29244
|
T['io.flow.common.v0.models.user_reference'],
|
|
@@ -29142,7 +29350,6 @@ T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
|
|
|
29142
29350
|
]);
|
|
29143
29351
|
|
|
29144
29352
|
T['io.flow.internal.v0.enums.carrier_charge_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'charge', 'revenue_share']);
|
|
29145
|
-
T['io.flow.internal.v0.enums.carrier_fee_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee']);
|
|
29146
29353
|
T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
|
|
29147
29354
|
T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
|
|
29148
29355
|
T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
|
|
@@ -29314,8 +29521,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29314
29521
|
'label_invoice_request_deleted',
|
|
29315
29522
|
'carrier_charge_upserted',
|
|
29316
29523
|
'carrier_charge_deleted',
|
|
29317
|
-
'
|
|
29318
|
-
'
|
|
29524
|
+
'bank_payment_order_upserted',
|
|
29525
|
+
'bank_payment_order_deleted',
|
|
29319
29526
|
'fraud_review_upserted',
|
|
29320
29527
|
'fraud_review_deleted',
|
|
29321
29528
|
'fraud_pending_review_upserted',
|
|
@@ -29472,6 +29679,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29472
29679
|
'shopify_markets_metrics_deleted',
|
|
29473
29680
|
'channel_order_summary_upserted',
|
|
29474
29681
|
'channel_order_summary_deleted',
|
|
29682
|
+
'channel_organization_identifier_upserted',
|
|
29683
|
+
'channel_organization_identifier_deleted',
|
|
29475
29684
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
29476
29685
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
29477
29686
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -29606,6 +29815,7 @@ T['io.flow.internal.v0.enums.shopify_markets_queued_record_type'] = PropTypes.on
|
|
|
29606
29815
|
'product_restriction_result',
|
|
29607
29816
|
'product_sync',
|
|
29608
29817
|
'webhook_registrations',
|
|
29818
|
+
'channel_organization_identifier',
|
|
29609
29819
|
]);
|
|
29610
29820
|
|
|
29611
29821
|
T['io.flow.internal.v0.enums.shopify_markets_trade_sector'] = PropTypes.oneOf([
|
|
@@ -29828,6 +30038,11 @@ T['io.flow.internal.v0.models.classification_summary_report_payload'] = PropType
|
|
|
29828
30038
|
limit: PropTypes.number.isRequired,
|
|
29829
30039
|
});
|
|
29830
30040
|
|
|
30041
|
+
T['io.flow.internal.v0.models.cli_log_entry_form'] = PropTypes.exact({
|
|
30042
|
+
user_id: PropTypes.string.isRequired,
|
|
30043
|
+
task: PropTypes.string.isRequired,
|
|
30044
|
+
});
|
|
30045
|
+
|
|
29831
30046
|
T['io.flow.internal.v0.models.commercial_invoice_comparison'] = PropTypes.exact({
|
|
29832
30047
|
urls: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29833
30048
|
});
|
|
@@ -30070,6 +30285,10 @@ T['io.flow.internal.v0.models.flow_label_setting_form'] = PropTypes.exact({
|
|
|
30070
30285
|
default_contents: PropTypes.string.isRequired,
|
|
30071
30286
|
});
|
|
30072
30287
|
|
|
30288
|
+
T['io.flow.internal.v0.models.force_transit_form'] = PropTypes.exact({
|
|
30289
|
+
description: PropTypes.string.isRequired,
|
|
30290
|
+
});
|
|
30291
|
+
|
|
30073
30292
|
T['io.flow.internal.v0.models.fulfillment_reference'] = PropTypes.exact({
|
|
30074
30293
|
id: PropTypes.string.isRequired,
|
|
30075
30294
|
});
|
|
@@ -30118,6 +30337,13 @@ T['io.flow.internal.v0.models.internal_payment_request_verification'] = PropType
|
|
|
30118
30337
|
placeholder: PropTypes.string,
|
|
30119
30338
|
});
|
|
30120
30339
|
|
|
30340
|
+
T['io.flow.internal.v0.models.invariant'] = PropTypes.exact({
|
|
30341
|
+
name: PropTypes.string.isRequired,
|
|
30342
|
+
count: PropTypes.number.isRequired,
|
|
30343
|
+
fired_at: PropTypes.string.isRequired,
|
|
30344
|
+
sql: PropTypes.string.isRequired,
|
|
30345
|
+
});
|
|
30346
|
+
|
|
30121
30347
|
T['io.flow.internal.v0.models.invoice_info_form'] = PropTypes.exact({
|
|
30122
30348
|
invoice_number: PropTypes.string.isRequired,
|
|
30123
30349
|
invoice_date: PropTypes.string.isRequired,
|
|
@@ -30610,9 +30836,9 @@ T['io.flow.internal.v0.models.shopify_promotion_form'] = PropTypes.exact({
|
|
|
30610
30836
|
code: PropTypes.string.isRequired,
|
|
30611
30837
|
});
|
|
30612
30838
|
|
|
30613
|
-
T['io.flow.internal.v0.models.
|
|
30614
|
-
|
|
30615
|
-
|
|
30839
|
+
T['io.flow.internal.v0.models.shopify_store_detail'] = PropTypes.exact({
|
|
30840
|
+
shopify_domain: PropTypes.string.isRequired,
|
|
30841
|
+
shop_id: PropTypes.string.isRequired,
|
|
30616
30842
|
});
|
|
30617
30843
|
|
|
30618
30844
|
T['io.flow.internal.v0.models.shopify_webhook_event'] = PropTypes.exact({
|
|
@@ -30632,20 +30858,6 @@ T['io.flow.internal.v0.models.svitlana_test'] = PropTypes.exact({
|
|
|
30632
30858
|
name: PropTypes.string.isRequired,
|
|
30633
30859
|
});
|
|
30634
30860
|
|
|
30635
|
-
T['io.flow.internal.v0.models.task'] = PropTypes.exact({
|
|
30636
|
-
type: PropTypes.string.isRequired,
|
|
30637
|
-
type_id: PropTypes.string.isRequired,
|
|
30638
|
-
source_type: PropTypes.string,
|
|
30639
|
-
source_id: PropTypes.string,
|
|
30640
|
-
environment: PropTypes.string,
|
|
30641
|
-
created_at: PropTypes.string.isRequired,
|
|
30642
|
-
num_attempts: PropTypes.number.isRequired,
|
|
30643
|
-
next_attempt_at: PropTypes.string.isRequired,
|
|
30644
|
-
errors: PropTypes.arrayOf(PropTypes.string),
|
|
30645
|
-
stacktrace: PropTypes.string,
|
|
30646
|
-
snooze_id: PropTypes.string,
|
|
30647
|
-
});
|
|
30648
|
-
|
|
30649
30861
|
T['io.flow.internal.v0.models.task_count'] = PropTypes.exact({
|
|
30650
30862
|
discriminator: PropTypes.string.isRequired,
|
|
30651
30863
|
count: PropTypes.number.isRequired,
|
|
@@ -31350,7 +31562,7 @@ T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_order_status'] = P
|
|
|
31350
31562
|
'closed',
|
|
31351
31563
|
]);
|
|
31352
31564
|
|
|
31353
|
-
T['io.flow.shopify.markets.v0.enums.shopify_order_payment_gateway_names'] = PropTypes.oneOf(['flow_commerce', 'gift_card', 'manual', 'shopify_payments']);
|
|
31565
|
+
T['io.flow.shopify.markets.v0.enums.shopify_order_payment_gateway_names'] = PropTypes.oneOf(['flow_commerce', 'gift_card', 'manual', 'shopify_payments', 'shop_cash']);
|
|
31354
31566
|
T['io.flow.shopify.markets.v0.enums.shopify_order_status_type'] = PropTypes.oneOf(['open', 'closed', 'cancelled', 'any']);
|
|
31355
31567
|
|
|
31356
31568
|
T['io.flow.shopify.markets.v0.models.shopify_draft_order_count'] = PropTypes.exact({
|
|
@@ -31800,7 +32012,6 @@ T['io.flow.billing.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf(
|
|
|
31800
32012
|
]);
|
|
31801
32013
|
|
|
31802
32014
|
T['io.flow.billing.internal.v0.enums.carrier_charge_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'charge', 'revenue_share']);
|
|
31803
|
-
T['io.flow.billing.internal.v0.enums.carrier_fee_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'fee']);
|
|
31804
32015
|
T['io.flow.billing.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
|
|
31805
32016
|
T['io.flow.billing.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
|
|
31806
32017
|
T['io.flow.billing.internal.v0.enums.dispute_transaction_type'] = PropTypes.oneOf(['adjustment', 'dispute']);
|
|
@@ -31895,6 +32106,11 @@ T['io.flow.billing.internal.v0.models.channel_transaction_rate'] = PropTypes.exa
|
|
|
31895
32106
|
timestamp: PropTypes.string.isRequired,
|
|
31896
32107
|
});
|
|
31897
32108
|
|
|
32109
|
+
T['io.flow.billing.internal.v0.models.cli_log_entry_form'] = PropTypes.exact({
|
|
32110
|
+
user_id: PropTypes.string.isRequired,
|
|
32111
|
+
task: PropTypes.string.isRequired,
|
|
32112
|
+
});
|
|
32113
|
+
|
|
31898
32114
|
T['io.flow.billing.internal.v0.models.email_form'] = PropTypes.exact({
|
|
31899
32115
|
to: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
31900
32116
|
cc: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -31925,10 +32141,6 @@ T['io.flow.billing.v0.models.payout_reference'] = PropTypes.exact({
|
|
|
31925
32141
|
id: PropTypes.string.isRequired,
|
|
31926
32142
|
});
|
|
31927
32143
|
|
|
31928
|
-
T['io.flow.billing.v0.models.transaction_reference'] = PropTypes.exact({
|
|
31929
|
-
id: PropTypes.string.isRequired,
|
|
31930
|
-
});
|
|
31931
|
-
|
|
31932
32144
|
T['io.flow.harmonization.v0.models.harmonized_category_reference'] = PropTypes.exact({
|
|
31933
32145
|
id: PropTypes.string.isRequired,
|
|
31934
32146
|
});
|
|
@@ -32119,7 +32331,6 @@ export const accountTransactionsExportRequest = T['io.flow.internal.v0.models.ac
|
|
|
32119
32331
|
export const accountType = T['io.flow.internal.v0.enums.account_type'];
|
|
32120
32332
|
export const accountUpserted = T['io.flow.internal.v0.models.account_upserted'];
|
|
32121
32333
|
export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_v2'];
|
|
32122
|
-
export const accountingFulfillmentMetadata = T['io.flow.internal.v0.models.accounting_fulfillment_metadata'];
|
|
32123
32334
|
export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
|
|
32124
32335
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
32125
32336
|
export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
|
|
@@ -32216,6 +32427,8 @@ export const bankPayment = T['io.flow.internal.v0.models.bank_payment'];
|
|
|
32216
32427
|
export const bankPaymentDeletedV2 = T['io.flow.internal.v0.models.bank_payment_deleted_v2'];
|
|
32217
32428
|
export const bankPaymentForm = T['io.flow.internal.v0.models.bank_payment_form'];
|
|
32218
32429
|
export const bankPaymentOrder = T['io.flow.internal.v0.models.bank_payment_order'];
|
|
32430
|
+
export const bankPaymentOrderDeleted = T['io.flow.internal.v0.models.bank_payment_order_deleted'];
|
|
32431
|
+
export const bankPaymentOrderUpserted = T['io.flow.internal.v0.models.bank_payment_order_upserted'];
|
|
32219
32432
|
export const bankPaymentPromiseCompletedMethod = T['io.flow.internal.v0.enums.bank_payment_promise_completed_method'];
|
|
32220
32433
|
export const bankPaymentReference = T['io.flow.internal.v0.models.bank_payment_reference'];
|
|
32221
32434
|
export const bankPaymentStatusCode = T['io.flow.internal.v0.enums.bank_payment_status_code'];
|
|
@@ -32309,20 +32522,14 @@ export const carrierChargeType = T['io.flow.internal.v0.enums.carrier_charge_typ
|
|
|
32309
32522
|
export const carrierChargeUnits = T['io.flow.internal.v0.models.carrier_charge_units'];
|
|
32310
32523
|
export const carrierChargeUpserted = T['io.flow.internal.v0.models.carrier_charge_upserted'];
|
|
32311
32524
|
export const carrierCredentials = T['io.flow.internal.v0.unions.carrier_credentials'];
|
|
32312
|
-
export const carrierFee = T['io.flow.internal.v0.models.carrier_fee'];
|
|
32313
|
-
export const carrierFeeDeleted = T['io.flow.internal.v0.models.carrier_fee_deleted'];
|
|
32314
|
-
export const carrierFeeForm = T['io.flow.internal.v0.models.carrier_fee_form'];
|
|
32315
|
-
export const carrierFeeTransaction = T['io.flow.internal.v0.models.carrier_fee_transaction'];
|
|
32316
|
-
export const carrierFeeTransactionLabelReference = T['io.flow.internal.v0.models.carrier_fee_transaction_label_reference'];
|
|
32317
|
-
export const carrierFeeTransactionType = T['io.flow.internal.v0.enums.carrier_fee_transaction_type'];
|
|
32318
|
-
export const carrierFeeUnits = T['io.flow.internal.v0.models.carrier_fee_units'];
|
|
32319
|
-
export const carrierFeeUpserted = T['io.flow.internal.v0.models.carrier_fee_upserted'];
|
|
32320
32525
|
export const carrierFile = T['io.flow.internal.v0.models.carrier_file'];
|
|
32321
32526
|
export const carrierFileForm = T['io.flow.internal.v0.models.carrier_file_form'];
|
|
32322
32527
|
export const carrierFileResult = T['io.flow.internal.v0.models.carrier_file_result'];
|
|
32323
32528
|
export const carrierFileType = T['io.flow.internal.v0.enums.carrier_file_type'];
|
|
32324
32529
|
export const carrierInvoice = T['io.flow.internal.v0.models.carrier_invoice'];
|
|
32325
32530
|
export const carrierLabelGenerationMethod = T['io.flow.internal.v0.enums.carrier_label_generation_method'];
|
|
32531
|
+
export const carrierTaxForm = T['io.flow.internal.v0.models.carrier_tax_form'];
|
|
32532
|
+
export const carrierTaxUnits = T['io.flow.internal.v0.models.carrier_tax_units'];
|
|
32326
32533
|
export const carrierValidationStatus = T['io.flow.internal.v0.enums.carrier_validation_status'];
|
|
32327
32534
|
export const catalogImportRequest = T['io.flow.internal.v0.models.catalog_import_request'];
|
|
32328
32535
|
export const catalogImportType = T['io.flow.internal.v0.enums.catalog_import_type'];
|
|
@@ -32381,6 +32588,9 @@ export const channelOrderSummary = T['io.flow.internal.v0.models.channel_order_s
|
|
|
32381
32588
|
export const channelOrderSummaryDeleted = T['io.flow.internal.v0.models.channel_order_summary_deleted'];
|
|
32382
32589
|
export const channelOrderSummaryFulfillmentDetails = T['io.flow.internal.v0.models.channel_order_summary_fulfillment_details'];
|
|
32383
32590
|
export const channelOrderSummaryUpserted = T['io.flow.internal.v0.models.channel_order_summary_upserted'];
|
|
32591
|
+
export const channelOrganizationIdentifier = T['io.flow.internal.v0.models.channel_organization_identifier'];
|
|
32592
|
+
export const channelOrganizationIdentifierDeleted = T['io.flow.internal.v0.models.channel_organization_identifier_deleted'];
|
|
32593
|
+
export const channelOrganizationIdentifierUpserted = T['io.flow.internal.v0.models.channel_organization_identifier_upserted'];
|
|
32384
32594
|
export const channelOrganizationShopify = T['io.flow.internal.v0.models.channel_organization_shopify'];
|
|
32385
32595
|
export const channelOrganizationShopifyForm = T['io.flow.internal.v0.models.channel_organization_shopify_form'];
|
|
32386
32596
|
export const channelOrganizationShopifyPostForm = T['io.flow.internal.v0.models.channel_organization_shopify_post_form'];
|
|
@@ -32453,6 +32663,7 @@ export const classification = T['io.flow.internal.v0.models.classification'];
|
|
|
32453
32663
|
export const classificationAction = T['io.flow.internal.v0.unions.classification_action'];
|
|
32454
32664
|
export const classificationActionForm = T['io.flow.internal.v0.unions.classification_action_form'];
|
|
32455
32665
|
export const classificationActionFormUndo = T['io.flow.internal.v0.models.classification_action_form_undo'];
|
|
32666
|
+
export const classificationDecision = T['io.flow.internal.v0.enums.classification_decision'];
|
|
32456
32667
|
export const classificationDetails = T['io.flow.internal.v0.models.classification_details'];
|
|
32457
32668
|
export const classificationError = T['io.flow.internal.v0.models.classification_error'];
|
|
32458
32669
|
export const classificationErrorCode = T['io.flow.internal.v0.enums.classification_error_code'];
|
|
@@ -32461,9 +32672,12 @@ export const classificationFormWrapper = T['io.flow.internal.v0.models.classific
|
|
|
32461
32672
|
export const classificationItem = T['io.flow.internal.v0.models.classification_item'];
|
|
32462
32673
|
export const classificationJudgementForm = T['io.flow.internal.v0.unions.classification_judgement_form'];
|
|
32463
32674
|
export const classificationLabelAttribute = T['io.flow.internal.v0.unions.classification_label_attribute'];
|
|
32675
|
+
export const classificationPlatform = T['io.flow.internal.v0.enums.classification_platform'];
|
|
32464
32676
|
export const classificationProduct = T['io.flow.internal.v0.models.classification_product'];
|
|
32465
32677
|
export const classificationProductHarmonization = T['io.flow.internal.v0.models.classification_product_harmonization'];
|
|
32466
32678
|
export const classificationProductId = T['io.flow.internal.v0.models.classification_product_id'];
|
|
32679
|
+
export const classificationProductRequest = T['io.flow.internal.v0.models.classification_product_request'];
|
|
32680
|
+
export const classificationProductResult = T['io.flow.internal.v0.models.classification_product_result'];
|
|
32467
32681
|
export const classificationProductSummary = T['io.flow.internal.v0.models.classification_product_summary'];
|
|
32468
32682
|
export const classificationProductSummaryPage = T['io.flow.internal.v0.models.classification_product_summary_page'];
|
|
32469
32683
|
export const classificationRequeueRequest = T['io.flow.internal.v0.models.classification_requeue_request'];
|
|
@@ -32471,9 +32685,13 @@ export const classificationResponse = T['io.flow.internal.v0.unions.classificati
|
|
|
32471
32685
|
export const classificationStatistics = T['io.flow.internal.v0.models.classification_statistics'];
|
|
32472
32686
|
export const classificationSummaryReportPayload = T['io.flow.internal.v0.models.classification_summary_report_payload'];
|
|
32473
32687
|
export const classificationTaxonomy = T['io.flow.internal.v0.unions.classification_taxonomy'];
|
|
32688
|
+
export const classificationType = T['io.flow.internal.v0.enums.classification_type'];
|
|
32474
32689
|
export const classificationWrapper = T['io.flow.internal.v0.models.classification_wrapper'];
|
|
32475
32690
|
export const classifiedProduct = T['io.flow.internal.v0.models.classified_product'];
|
|
32476
32691
|
export const classifiedProductDetail = T['io.flow.internal.v0.models.classified_product_detail'];
|
|
32692
|
+
export const cliLogEntry = T['io.flow.internal.v0.models.cli_log_entry'];
|
|
32693
|
+
export const cliLogEntryForm = T['io.flow.internal.v0.models.cli_log_entry_form'];
|
|
32694
|
+
export const clothingAgeClassification = T['io.flow.internal.v0.enums.clothing_age_classification'];
|
|
32477
32695
|
export const colmItem = T['io.flow.internal.v0.models.colm_item'];
|
|
32478
32696
|
export const colmItemDeleted = T['io.flow.internal.v0.models.colm_item_deleted'];
|
|
32479
32697
|
export const colmItemForm = T['io.flow.internal.v0.models.colm_item_form'];
|
|
@@ -32713,6 +32931,7 @@ export const externalFulfillmentProofForm = T['io.flow.internal.v0.models.extern
|
|
|
32713
32931
|
export const externalFulfillmentProofTracking = T['io.flow.internal.v0.models.external_fulfillment_proof_tracking'];
|
|
32714
32932
|
export const externalFulfillmentProofTrackingForm = T['io.flow.internal.v0.models.external_fulfillment_proof_tracking_form'];
|
|
32715
32933
|
export const facebookPixel = T['io.flow.internal.v0.models.facebook_pixel'];
|
|
32934
|
+
export const failedDimensionEstimateOpsInputWithReason = T['io.flow.internal.v0.models.failed_dimension_estimate_ops_input_with_reason'];
|
|
32716
32935
|
export const feature = T['io.flow.internal.v0.models.feature'];
|
|
32717
32936
|
export const featureContextForm = T['io.flow.internal.v0.models.feature_context_form'];
|
|
32718
32937
|
export const featureDefaultValue = T['io.flow.internal.v0.unions.feature_default_value'];
|
|
@@ -32774,6 +32993,7 @@ export const flowLabProjectPutForm = T['io.flow.internal.v0.models.flow_lab_proj
|
|
|
32774
32993
|
export const flowLabelSetting = T['io.flow.internal.v0.models.flow_label_setting'];
|
|
32775
32994
|
export const flowLabelSettingForm = T['io.flow.internal.v0.models.flow_label_setting_form'];
|
|
32776
32995
|
export const flowShopValidationError = T['io.flow.internal.v0.models.flow_shop_validation_error'];
|
|
32996
|
+
export const forceTransitForm = T['io.flow.internal.v0.models.force_transit_form'];
|
|
32777
32997
|
export const format = T['io.flow.internal.v0.enums.format'];
|
|
32778
32998
|
export const fraudPendingReview = T['io.flow.internal.v0.models.fraud_pending_review'];
|
|
32779
32999
|
export const fraudPendingReviewDeleted = T['io.flow.internal.v0.models.fraud_pending_review_deleted'];
|
|
@@ -32813,6 +33033,7 @@ export const fulfillment = T['io.flow.internal.v0.models.fulfillment'];
|
|
|
32813
33033
|
export const fulfillmentActionForm = T['io.flow.internal.v0.models.fulfillment_action_form'];
|
|
32814
33034
|
export const fulfillmentBusiness = T['io.flow.internal.v0.models.fulfillment_business'];
|
|
32815
33035
|
export const fulfillmentCancel = T['io.flow.internal.v0.models.fulfillment_cancel'];
|
|
33036
|
+
export const fulfillmentCarrier = T['io.flow.internal.v0.models.fulfillment_carrier'];
|
|
32816
33037
|
export const fulfillmentDeleted = T['io.flow.internal.v0.models.fulfillment_deleted'];
|
|
32817
33038
|
export const fulfillmentInternalExperienceReference = T['io.flow.internal.v0.models.fulfillment_internal_experience_reference'];
|
|
32818
33039
|
export const fulfillmentOrigin = T['io.flow.internal.v0.models.fulfillment_origin'];
|
|
@@ -32906,6 +33127,7 @@ export const internalStripeAuthorizationDetails = T['io.flow.internal.v0.models.
|
|
|
32906
33127
|
export const internalTransactionDetails = T['io.flow.internal.v0.unions.internal_transaction_details'];
|
|
32907
33128
|
export const internalTransactionDetailsCard = T['io.flow.internal.v0.models.internal_transaction_details_card'];
|
|
32908
33129
|
export const invalidCheckoutData = T['io.flow.internal.v0.models.invalid_checkout_data'];
|
|
33130
|
+
export const invariant = T['io.flow.internal.v0.models.invariant'];
|
|
32909
33131
|
export const inventoryCheckService = T['io.flow.internal.v0.enums.inventory_check_service'];
|
|
32910
33132
|
export const inventoryOrganizationSettings = T['io.flow.internal.v0.models.inventory_organization_settings'];
|
|
32911
33133
|
export const inventoryOrganizationSettingsForm = T['io.flow.internal.v0.models.inventory_organization_settings_form'];
|
|
@@ -33475,8 +33697,11 @@ export const reportBankAccount = T['io.flow.internal.v0.models.report_bank_accou
|
|
|
33475
33697
|
export const reportBankAccountCleartext = T['io.flow.internal.v0.models.report_bank_account_cleartext'];
|
|
33476
33698
|
export const reportForm = T['io.flow.internal.v0.models.report_form'];
|
|
33477
33699
|
export const reportInterval = T['io.flow.internal.v0.enums.report_interval'];
|
|
33700
|
+
export const reportMerchant = T['io.flow.internal.v0.models.report_merchant'];
|
|
33701
|
+
export const reportOrderReference = T['io.flow.internal.v0.models.report_order_reference'];
|
|
33478
33702
|
export const reportOwner = T['io.flow.internal.v0.models.report_owner'];
|
|
33479
33703
|
export const reportPayment = T['io.flow.internal.v0.models.report_payment'];
|
|
33704
|
+
export const reportPaymentType = T['io.flow.internal.v0.enums.report_payment_type'];
|
|
33480
33705
|
export const reportRuleDecision = T['io.flow.internal.v0.models.report_rule_decision'];
|
|
33481
33706
|
export const reportStatus = T['io.flow.internal.v0.enums.report_status'];
|
|
33482
33707
|
export const reportSummary = T['io.flow.internal.v0.models.report_summary'];
|
|
@@ -33709,7 +33934,7 @@ export const shopifyService = T['io.flow.internal.v0.enums.shopify_service'];
|
|
|
33709
33934
|
export const shopifyShopDeleted = T['io.flow.internal.v0.models.shopify_shop_deleted'];
|
|
33710
33935
|
export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
|
|
33711
33936
|
export const shopifyShopUpserted = T['io.flow.internal.v0.models.shopify_shop_upserted'];
|
|
33712
|
-
export const
|
|
33937
|
+
export const shopifyStoreDetail = T['io.flow.internal.v0.models.shopify_store_detail'];
|
|
33713
33938
|
export const shopifyWebhook = T['io.flow.internal.v0.models.shopify_webhook'];
|
|
33714
33939
|
export const shopifyWebhookEvent = T['io.flow.internal.v0.models.shopify_webhook_event'];
|
|
33715
33940
|
export const shopifyWebhookForm = T['io.flow.internal.v0.models.shopify_webhook_form'];
|