@flowio/api-internal-prop-types 9.24.92 → 9.24.93
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 +6176 -6178
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +6176 -6178
- package/src/api-internal.js +1096 -1061
package/src/api-internal.js
CHANGED
|
@@ -396,10 +396,15 @@ T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = Pro
|
|
|
396
396
|
tracking_number: PropTypes.string.isRequired,
|
|
397
397
|
});
|
|
398
398
|
|
|
399
|
-
T['io.flow.billing.v0.models.
|
|
399
|
+
T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropTypes.exact({
|
|
400
400
|
transaction_id: PropTypes.string.isRequired,
|
|
401
401
|
});
|
|
402
402
|
|
|
403
|
+
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
|
|
404
|
+
discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
|
|
405
|
+
key: PropTypes.string,
|
|
406
|
+
});
|
|
407
|
+
|
|
403
408
|
T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
|
|
404
409
|
discriminator: PropTypes.oneOf(['no_payout']).isRequired,
|
|
405
410
|
placeholder: PropTypes.string,
|
|
@@ -491,12 +496,22 @@ T['io.flow.billing.internal.v0.models.proof_of_posting_fulfilled'] = PropTypes.e
|
|
|
491
496
|
label_tracking_summary_id: PropTypes.string.isRequired,
|
|
492
497
|
});
|
|
493
498
|
|
|
494
|
-
T['io.flow.billing.internal.v0.
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
499
|
+
T['io.flow.billing.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'] = PropTypes.exact({
|
|
500
|
+
discriminator: PropTypes.oneOf(['all_pending_posted_transactions']).isRequired,
|
|
501
|
+
account_id: PropTypes.string.isRequired,
|
|
502
|
+
reason: PropTypes.string.isRequired,
|
|
503
|
+
});
|
|
504
|
+
|
|
505
|
+
T['io.flow.billing.internal.v0.models.explicit_statement_form_transaction_ids'] = PropTypes.exact({
|
|
506
|
+
discriminator: PropTypes.oneOf(['transaction_ids']).isRequired,
|
|
507
|
+
account_id: PropTypes.string.isRequired,
|
|
508
|
+
reason: PropTypes.string.isRequired,
|
|
509
|
+
transaction_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
510
|
+
});
|
|
511
|
+
|
|
512
|
+
T['io.flow.billing.internal.v0.unions.explicit_statement_form'] = PropTypes.oneOfType([
|
|
513
|
+
T['io.flow.billing.internal.v0.models.explicit_statement_form_transaction_ids'],
|
|
514
|
+
T['io.flow.billing.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'],
|
|
500
515
|
]);
|
|
501
516
|
|
|
502
517
|
T['io.flow.billing.internal.v0.models.channel_rate_metadata_rate'] = PropTypes.exact({
|
|
@@ -628,7 +643,6 @@ T['io.flow.billing.internal.v0.models.manual_transaction_form'] = PropTypes.exac
|
|
|
628
643
|
currency: PropTypes.string,
|
|
629
644
|
description: PropTypes.string.isRequired,
|
|
630
645
|
category: T['io.flow.billing.internal.v0.enums.manual_transaction_category'],
|
|
631
|
-
posted_at: PropTypes.string,
|
|
632
646
|
order: T['io.flow.billing.internal.v0.models.manual_transaction_form_order'],
|
|
633
647
|
original_transaction_id: PropTypes.string,
|
|
634
648
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
@@ -711,6 +725,10 @@ T['io.flow.billing.internal.v0.models.account_origin'] = PropTypes.exact({
|
|
|
711
725
|
country: PropTypes.string.isRequired,
|
|
712
726
|
});
|
|
713
727
|
|
|
728
|
+
T['io.flow.billing.internal.v0.models.carrier_fee_transaction_label_reference'] = PropTypes.exact({
|
|
729
|
+
id: PropTypes.string.isRequired,
|
|
730
|
+
});
|
|
731
|
+
|
|
714
732
|
T['io.flow.billing.internal.v0.models.carrier_charge_reference'] = PropTypes.exact({
|
|
715
733
|
id: PropTypes.string.isRequired,
|
|
716
734
|
});
|
|
@@ -735,7 +753,7 @@ T['io.flow.billing.internal.v0.models.explicit_statement'] = PropTypes.exact({
|
|
|
735
753
|
reason: PropTypes.string.isRequired,
|
|
736
754
|
});
|
|
737
755
|
|
|
738
|
-
T['io.flow.billing.internal.v0.enums.billing_transaction_status'] = PropTypes.oneOf(['
|
|
756
|
+
T['io.flow.billing.internal.v0.enums.billing_transaction_status'] = PropTypes.oneOf(['pending_proof', 'posted']);
|
|
739
757
|
|
|
740
758
|
T['io.flow.billing.internal.v0.enums.billing_statement_attachment_key'] = PropTypes.oneOf([
|
|
741
759
|
'invoice',
|
|
@@ -754,6 +772,7 @@ T['io.flow.billing.internal.v0.enums.billing_statement_attachment_key'] = PropTy
|
|
|
754
772
|
'duty',
|
|
755
773
|
'trueup',
|
|
756
774
|
'carrier_charge',
|
|
775
|
+
'carrier_fee',
|
|
757
776
|
'all',
|
|
758
777
|
]);
|
|
759
778
|
|
|
@@ -2497,6 +2516,7 @@ T['io.flow.billing.reporting.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
2497
2516
|
'trueup_overview',
|
|
2498
2517
|
'non_channel_payment_bank_account',
|
|
2499
2518
|
'scheduled_payment',
|
|
2519
|
+
'account_quarterly_balances',
|
|
2500
2520
|
]);
|
|
2501
2521
|
|
|
2502
2522
|
T['io.flow.billing.reporting.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -2699,606 +2719,6 @@ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
|
|
|
2699
2719
|
'tip',
|
|
2700
2720
|
]);
|
|
2701
2721
|
|
|
2702
|
-
T['io.flow.payment.gateway.v0.enums.payment_request_review_check_status'] = PropTypes.oneOf(['passed', 'failed']);
|
|
2703
|
-
|
|
2704
|
-
T['io.flow.payment.gateway.v0.enums.payment_request_review_check_type'] = PropTypes.oneOf([
|
|
2705
|
-
'restricted_party_screening',
|
|
2706
|
-
'fraud_suspicious_behavior',
|
|
2707
|
-
'fraud_suspicious_past_activity',
|
|
2708
|
-
'fraud_risky_velocity',
|
|
2709
|
-
'fraud_previous_chargebacks',
|
|
2710
|
-
'order_restricted_goods',
|
|
2711
|
-
'order_unsupported_destination',
|
|
2712
|
-
'order_missing_information',
|
|
2713
|
-
'order_domestic',
|
|
2714
|
-
'order_mismatched_currencies',
|
|
2715
|
-
]);
|
|
2716
|
-
|
|
2717
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_selected_payment_option'] = PropTypes.exact({
|
|
2718
|
-
type: PropTypes.oneOf(['select_option']).isRequired,
|
|
2719
|
-
option_id: PropTypes.string.isRequired,
|
|
2720
|
-
});
|
|
2721
|
-
|
|
2722
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_paypal'] = PropTypes.exact({
|
|
2723
|
-
type: PropTypes.oneOf(['authorize_paypal']).isRequired,
|
|
2724
|
-
payment_id: PropTypes.string.isRequired,
|
|
2725
|
-
payer_id: PropTypes.string.isRequired,
|
|
2726
|
-
});
|
|
2727
|
-
|
|
2728
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_googlepay'] = PropTypes.exact({
|
|
2729
|
-
type: PropTypes.oneOf(['authorize_googlepay']).isRequired,
|
|
2730
|
-
payment_data: PropTypes.object.isRequired,
|
|
2731
|
-
});
|
|
2732
|
-
|
|
2733
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_validate_applepay'] = PropTypes.exact({
|
|
2734
|
-
type: PropTypes.oneOf(['validate_applepay']).isRequired,
|
|
2735
|
-
validation_url: PropTypes.string.isRequired,
|
|
2736
|
-
});
|
|
2737
|
-
|
|
2738
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact'] = PropTypes.exact({
|
|
2739
|
-
type: PropTypes.oneOf(['init_bancontact']).isRequired,
|
|
2740
|
-
placeholder: PropTypes.string,
|
|
2741
|
-
});
|
|
2742
|
-
|
|
2743
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_init_sofort'] = PropTypes.exact({
|
|
2744
|
-
type: PropTypes.oneOf(['init_sofort']).isRequired,
|
|
2745
|
-
placeholder: PropTypes.string,
|
|
2746
|
-
});
|
|
2747
|
-
|
|
2748
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_init_ideal'] = PropTypes.exact({
|
|
2749
|
-
type: PropTypes.oneOf(['init_ideal']).isRequired,
|
|
2750
|
-
issuer: PropTypes.string,
|
|
2751
|
-
});
|
|
2752
|
-
|
|
2753
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_init_paypal'] = PropTypes.exact({
|
|
2754
|
-
type: PropTypes.oneOf(['init_paypal']).isRequired,
|
|
2755
|
-
placeholder: PropTypes.string,
|
|
2756
|
-
});
|
|
2757
|
-
|
|
2758
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_init_googlepay'] = PropTypes.exact({
|
|
2759
|
-
type: PropTypes.oneOf(['init_googlepay']).isRequired,
|
|
2760
|
-
placeholder: PropTypes.string,
|
|
2761
|
-
});
|
|
2762
|
-
|
|
2763
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_init_applepay'] = PropTypes.exact({
|
|
2764
|
-
type: PropTypes.oneOf(['init_applepay']).isRequired,
|
|
2765
|
-
placeholder: PropTypes.string,
|
|
2766
|
-
});
|
|
2767
|
-
|
|
2768
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_init_afterpay'] = PropTypes.exact({
|
|
2769
|
-
type: PropTypes.oneOf(['init_afterpay']).isRequired,
|
|
2770
|
-
placeholder: PropTypes.string,
|
|
2771
|
-
});
|
|
2772
|
-
|
|
2773
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_init_klarna'] = PropTypes.exact({
|
|
2774
|
-
type: PropTypes.oneOf(['init_klarna']).isRequired,
|
|
2775
|
-
placeholder: PropTypes.string,
|
|
2776
|
-
});
|
|
2777
|
-
|
|
2778
|
-
T['io.flow.payment.gateway.v0.models.payment_request_review_check'] = PropTypes.exact({
|
|
2779
|
-
type: T['io.flow.payment.gateway.v0.enums.payment_request_review_check_type'].isRequired,
|
|
2780
|
-
status: T['io.flow.payment.gateway.v0.enums.payment_request_review_check_status'].isRequired,
|
|
2781
|
-
});
|
|
2782
|
-
|
|
2783
|
-
T['io.flow.payment.gateway.v0.enums.payment_request_review_status'] = PropTypes.oneOf(['pending', 'approved', 'rejected']);
|
|
2784
|
-
|
|
2785
|
-
T['io.flow.payment.gateway.v0.enums.payment_type'] = PropTypes.oneOf([
|
|
2786
|
-
'card',
|
|
2787
|
-
'klarna',
|
|
2788
|
-
'googlepay',
|
|
2789
|
-
'paypal',
|
|
2790
|
-
'applepay',
|
|
2791
|
-
'ideal',
|
|
2792
|
-
'sofort',
|
|
2793
|
-
'afterpay',
|
|
2794
|
-
'bancontact',
|
|
2795
|
-
]);
|
|
2796
|
-
|
|
2797
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_option_logo_svg'] = PropTypes.exact({
|
|
2798
|
-
type: PropTypes.oneOf(['svg']).isRequired,
|
|
2799
|
-
url: PropTypes.string.isRequired,
|
|
2800
|
-
});
|
|
2801
|
-
|
|
2802
|
-
T['io.flow.payment.gateway.v0.models.authorization_action_result_adyen_v4'] = PropTypes.exact({
|
|
2803
|
-
type: PropTypes.oneOf(['adyen_v4']).isRequired,
|
|
2804
|
-
result: PropTypes.object.isRequired,
|
|
2805
|
-
});
|
|
2806
|
-
|
|
2807
|
-
T['io.flow.payment.gateway.v0.models.authorization_action_result_adyen_v3'] = PropTypes.exact({
|
|
2808
|
-
type: PropTypes.oneOf(['adyen_v3']).isRequired,
|
|
2809
|
-
result: PropTypes.object.isRequired,
|
|
2810
|
-
});
|
|
2811
|
-
|
|
2812
|
-
T['io.flow.payment.gateway.v0.unions.card_authorization_action_result'] = PropTypes.oneOfType([
|
|
2813
|
-
T['io.flow.payment.gateway.v0.models.authorization_action_result_adyen_v3'],
|
|
2814
|
-
T['io.flow.payment.gateway.v0.models.authorization_action_result_adyen_v4'],
|
|
2815
|
-
]);
|
|
2816
|
-
|
|
2817
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_complete_authorization_card'] = PropTypes.exact({
|
|
2818
|
-
type: PropTypes.oneOf(['complete_authorization_card']).isRequired,
|
|
2819
|
-
action_result: T['io.flow.payment.gateway.v0.unions.card_authorization_action_result'].isRequired,
|
|
2820
|
-
});
|
|
2821
|
-
|
|
2822
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_klarna_result_failure'] = PropTypes.exact({
|
|
2823
|
-
type: PropTypes.oneOf(['failure']).isRequired,
|
|
2824
|
-
placeholder: PropTypes.string,
|
|
2825
|
-
});
|
|
2826
|
-
|
|
2827
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_klarna_result_success'] = PropTypes.exact({
|
|
2828
|
-
type: PropTypes.oneOf(['success']).isRequired,
|
|
2829
|
-
authorization_token: PropTypes.string.isRequired,
|
|
2830
|
-
});
|
|
2831
|
-
|
|
2832
|
-
T['io.flow.payment.gateway.v0.unions.payment_method_data_authorize_klarna_result'] = PropTypes.oneOfType([
|
|
2833
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_klarna_result_success'],
|
|
2834
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_klarna_result_failure'],
|
|
2835
|
-
]);
|
|
2836
|
-
|
|
2837
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_klarna'] = PropTypes.exact({
|
|
2838
|
-
type: PropTypes.oneOf(['authorize_klarna']).isRequired,
|
|
2839
|
-
result: T['io.flow.payment.gateway.v0.unions.payment_method_data_authorize_klarna_result'].isRequired,
|
|
2840
|
-
});
|
|
2841
|
-
|
|
2842
|
-
T['io.flow.payment.gateway.v0.models.payment_method_stored_details_card_initial'] = PropTypes.exact({
|
|
2843
|
-
type: PropTypes.oneOf(['initial']).isRequired,
|
|
2844
|
-
reference: PropTypes.string,
|
|
2845
|
-
});
|
|
2846
|
-
|
|
2847
|
-
T['io.flow.payment.gateway.v0.models.device_fingerprint_details_browser'] = PropTypes.exact({
|
|
2848
|
-
type: PropTypes.oneOf(['browser']).isRequired,
|
|
2849
|
-
accept: PropTypes.string,
|
|
2850
|
-
java_enabled: PropTypes.bool.isRequired,
|
|
2851
|
-
color_depth: PropTypes.number.isRequired,
|
|
2852
|
-
screen_height: PropTypes.number.isRequired,
|
|
2853
|
-
screen_width: PropTypes.number.isRequired,
|
|
2854
|
-
time_zone_offset: PropTypes.number.isRequired,
|
|
2855
|
-
});
|
|
2856
|
-
|
|
2857
|
-
T['io.flow.payment.gateway.v0.models.payment_method_card_token'] = PropTypes.exact({
|
|
2858
|
-
type: PropTypes.oneOf(['token']).isRequired,
|
|
2859
|
-
token: PropTypes.string.isRequired,
|
|
2860
|
-
});
|
|
2861
|
-
|
|
2862
|
-
T['io.flow.payment.gateway.v0.unions.device_fingerprint_details'] = PropTypes.oneOfType(
|
|
2863
|
-
[T['io.flow.payment.gateway.v0.models.device_fingerprint_details_browser']],
|
|
2864
|
-
);
|
|
2865
|
-
|
|
2866
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_failure'] = PropTypes.exact({
|
|
2867
|
-
type: PropTypes.oneOf(['failure']).isRequired,
|
|
2868
|
-
message: PropTypes.string.isRequired,
|
|
2869
|
-
});
|
|
2870
|
-
|
|
2871
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_success'] = PropTypes.exact({
|
|
2872
|
-
type: PropTypes.oneOf(['success']).isRequired,
|
|
2873
|
-
token: PropTypes.string.isRequired,
|
|
2874
|
-
});
|
|
2875
|
-
|
|
2876
|
-
T['io.flow.payment.gateway.v0.unions.payment_method_data_authorize_applepay_result'] = PropTypes.oneOfType([
|
|
2877
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_success'],
|
|
2878
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_failure'],
|
|
2879
|
-
]);
|
|
2880
|
-
|
|
2881
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay'] = PropTypes.exact({
|
|
2882
|
-
type: PropTypes.oneOf(['authorize_applepay']).isRequired,
|
|
2883
|
-
result: T['io.flow.payment.gateway.v0.unions.payment_method_data_authorize_applepay_result'].isRequired,
|
|
2884
|
-
});
|
|
2885
|
-
|
|
2886
|
-
T['io.flow.payment.gateway.v0.models.payment_method_card_number_cipher'] = PropTypes.exact({
|
|
2887
|
-
type: PropTypes.oneOf(['cipher']).isRequired,
|
|
2888
|
-
cipher: PropTypes.string.isRequired,
|
|
2889
|
-
});
|
|
2890
|
-
|
|
2891
|
-
T['io.flow.payment.gateway.v0.models.payment_method_card_number_cleartext'] = PropTypes.exact({
|
|
2892
|
-
type: PropTypes.oneOf(['cleartext']).isRequired,
|
|
2893
|
-
number: PropTypes.string.isRequired,
|
|
2894
|
-
});
|
|
2895
|
-
|
|
2896
|
-
T['io.flow.payment.gateway.v0.unions.card_number'] = PropTypes.oneOfType([
|
|
2897
|
-
T['io.flow.payment.gateway.v0.models.payment_method_card_number_cleartext'],
|
|
2898
|
-
T['io.flow.payment.gateway.v0.models.payment_method_card_number_cipher'],
|
|
2899
|
-
]);
|
|
2900
|
-
|
|
2901
|
-
T['io.flow.payment.gateway.v0.models.payment_method_card_pci_details'] = PropTypes.exact({
|
|
2902
|
-
type: PropTypes.oneOf(['card_pci_details']).isRequired,
|
|
2903
|
-
card_number: T['io.flow.payment.gateway.v0.unions.card_number'].isRequired,
|
|
2904
|
-
expiration_month: PropTypes.number.isRequired,
|
|
2905
|
-
expiration_year: PropTypes.number.isRequired,
|
|
2906
|
-
name: PropTypes.string.isRequired,
|
|
2907
|
-
});
|
|
2908
|
-
|
|
2909
|
-
T['io.flow.payment.gateway.v0.unions.payment_method_card'] = PropTypes.oneOfType([
|
|
2910
|
-
T['io.flow.payment.gateway.v0.models.payment_method_card_pci_details'],
|
|
2911
|
-
T['io.flow.payment.gateway.v0.models.payment_method_card_token'],
|
|
2912
|
-
]);
|
|
2913
|
-
|
|
2914
|
-
T['io.flow.reference.v0.models.payment_method_image'] = PropTypes.exact({
|
|
2915
|
-
url: PropTypes.string.isRequired,
|
|
2916
|
-
width: PropTypes.number.isRequired,
|
|
2917
|
-
height: PropTypes.number.isRequired,
|
|
2918
|
-
});
|
|
2919
|
-
|
|
2920
|
-
T['io.flow.payment.gateway.v0.enums.payment_failure_code'] = PropTypes.oneOf([
|
|
2921
|
-
'action_expired',
|
|
2922
|
-
'action_cancelled',
|
|
2923
|
-
'action_failed',
|
|
2924
|
-
'authorization_declined',
|
|
2925
|
-
'not_supported',
|
|
2926
|
-
'fraudulent',
|
|
2927
|
-
'error',
|
|
2928
|
-
'payment_checks_declined',
|
|
2929
|
-
]);
|
|
2930
|
-
|
|
2931
|
-
T['io.flow.payment.gateway.v0.models.payment_method_action_cancellation'] = PropTypes.exact({
|
|
2932
|
-
reason_code: T['io.flow.payment.gateway.v0.enums.payment_failure_code'],
|
|
2933
|
-
data: PropTypes.object,
|
|
2934
|
-
});
|
|
2935
|
-
|
|
2936
|
-
T['io.flow.payment.gateway.v0.models.payment_contact_shipping'] = PropTypes.exact({
|
|
2937
|
-
first_name: PropTypes.string,
|
|
2938
|
-
last_name: PropTypes.string.isRequired,
|
|
2939
|
-
email: PropTypes.string.isRequired,
|
|
2940
|
-
phone: PropTypes.string,
|
|
2941
|
-
});
|
|
2942
|
-
|
|
2943
|
-
T['io.flow.payment.gateway.v0.models.payment_address'] = PropTypes.exact({
|
|
2944
|
-
streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
2945
|
-
city: PropTypes.string.isRequired,
|
|
2946
|
-
province: PropTypes.string,
|
|
2947
|
-
postal: PropTypes.string,
|
|
2948
|
-
country: PropTypes.string.isRequired,
|
|
2949
|
-
});
|
|
2950
|
-
|
|
2951
|
-
T['io.flow.payment.gateway.v0.models.payment_contact_billing'] = PropTypes.exact({
|
|
2952
|
-
first_name: PropTypes.string,
|
|
2953
|
-
last_name: PropTypes.string.isRequired,
|
|
2954
|
-
company: PropTypes.string,
|
|
2955
|
-
email: PropTypes.string,
|
|
2956
|
-
phone: PropTypes.string,
|
|
2957
|
-
});
|
|
2958
|
-
|
|
2959
|
-
T['io.flow.payment.gateway.v0.models.payment_address_shipping'] = PropTypes.exact({
|
|
2960
|
-
contact: T['io.flow.payment.gateway.v0.models.payment_contact_shipping'].isRequired,
|
|
2961
|
-
location: T['io.flow.payment.gateway.v0.models.payment_address'].isRequired,
|
|
2962
|
-
});
|
|
2963
|
-
|
|
2964
|
-
T['io.flow.payment.gateway.v0.models.payment_address_billing'] = PropTypes.exact({
|
|
2965
|
-
contact: T['io.flow.payment.gateway.v0.models.payment_contact_billing'].isRequired,
|
|
2966
|
-
location: T['io.flow.payment.gateway.v0.models.payment_address'].isRequired,
|
|
2967
|
-
});
|
|
2968
|
-
|
|
2969
|
-
T['io.flow.payment.gateway.v0.models.order_information_flow'] = PropTypes.exact({
|
|
2970
|
-
type: PropTypes.oneOf(['flow']).isRequired,
|
|
2971
|
-
order_number: PropTypes.string.isRequired,
|
|
2972
|
-
billing_address: T['io.flow.payment.gateway.v0.models.payment_address_billing'],
|
|
2973
|
-
});
|
|
2974
|
-
|
|
2975
|
-
T['io.flow.payment.gateway.v0.models.payment_duty'] = PropTypes.exact({
|
|
2976
|
-
amount: PropTypes.number.isRequired,
|
|
2977
|
-
name: PropTypes.string,
|
|
2978
|
-
});
|
|
2979
|
-
|
|
2980
|
-
T['io.flow.payment.gateway.v0.models.payment_tax'] = PropTypes.exact({
|
|
2981
|
-
amount: PropTypes.number.isRequired,
|
|
2982
|
-
name: PropTypes.string,
|
|
2983
|
-
});
|
|
2984
|
-
|
|
2985
|
-
T['io.flow.payment.gateway.v0.models.payment_discount'] = PropTypes.exact({
|
|
2986
|
-
amount: PropTypes.number.isRequired,
|
|
2987
|
-
name: PropTypes.string,
|
|
2988
|
-
code: PropTypes.string,
|
|
2989
|
-
});
|
|
2990
|
-
|
|
2991
|
-
T['io.flow.payment.gateway.v0.models.shipping'] = PropTypes.exact({
|
|
2992
|
-
description: PropTypes.string.isRequired,
|
|
2993
|
-
amount: PropTypes.number.isRequired,
|
|
2994
|
-
tax: T['io.flow.payment.gateway.v0.models.payment_tax'],
|
|
2995
|
-
duty: T['io.flow.payment.gateway.v0.models.payment_duty'],
|
|
2996
|
-
discounts: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_discount']),
|
|
2997
|
-
});
|
|
2998
|
-
|
|
2999
|
-
T['io.flow.payment.gateway.v0.models.payment_order_details_line_item'] = PropTypes.exact({
|
|
3000
|
-
id: PropTypes.string.isRequired,
|
|
3001
|
-
description: PropTypes.string.isRequired,
|
|
3002
|
-
quantity: PropTypes.number.isRequired,
|
|
3003
|
-
amount: PropTypes.number.isRequired,
|
|
3004
|
-
tax: T['io.flow.payment.gateway.v0.models.payment_tax'],
|
|
3005
|
-
duty: T['io.flow.payment.gateway.v0.models.payment_duty'],
|
|
3006
|
-
product_url: PropTypes.string,
|
|
3007
|
-
image_url: PropTypes.string,
|
|
3008
|
-
category: PropTypes.string,
|
|
3009
|
-
discounts: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_discount']),
|
|
3010
|
-
});
|
|
3011
|
-
|
|
3012
|
-
T['io.flow.payment.gateway.v0.models.order_details'] = PropTypes.exact({
|
|
3013
|
-
line_items: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_order_details_line_item']).isRequired,
|
|
3014
|
-
shipping: T['io.flow.payment.gateway.v0.models.shipping'],
|
|
3015
|
-
discounts: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_discount']),
|
|
3016
|
-
tax: T['io.flow.payment.gateway.v0.models.payment_tax'],
|
|
3017
|
-
duty: T['io.flow.payment.gateway.v0.models.payment_duty'],
|
|
3018
|
-
reference: PropTypes.string,
|
|
3019
|
-
});
|
|
3020
|
-
|
|
3021
|
-
T['io.flow.payment.gateway.v0.models.order_information_details'] = PropTypes.exact({
|
|
3022
|
-
type: PropTypes.oneOf(['details']).isRequired,
|
|
3023
|
-
order_details: T['io.flow.payment.gateway.v0.models.order_details'].isRequired,
|
|
3024
|
-
billing_address: T['io.flow.payment.gateway.v0.models.payment_address_billing'],
|
|
3025
|
-
shipping_address: T['io.flow.payment.gateway.v0.models.payment_address_shipping'],
|
|
3026
|
-
});
|
|
3027
|
-
|
|
3028
|
-
T['io.flow.payment.gateway.v0.models.klarna_payment_category'] = PropTypes.exact({
|
|
3029
|
-
id: PropTypes.string.isRequired,
|
|
3030
|
-
name: PropTypes.string.isRequired,
|
|
3031
|
-
standard_asset_url: PropTypes.string,
|
|
3032
|
-
descriptive_asset_url: PropTypes.string,
|
|
3033
|
-
});
|
|
3034
|
-
|
|
3035
|
-
T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'] = PropTypes.exact({
|
|
3036
|
-
email_address: PropTypes.string,
|
|
3037
|
-
family_name: PropTypes.string,
|
|
3038
|
-
given_name: PropTypes.string,
|
|
3039
|
-
phone_number: PropTypes.string,
|
|
3040
|
-
phonetic_familyName: PropTypes.string,
|
|
3041
|
-
phonetic_givenName: PropTypes.string,
|
|
3042
|
-
address_lines: PropTypes.arrayOf(PropTypes.string),
|
|
3043
|
-
locality: PropTypes.string,
|
|
3044
|
-
sub_locality: PropTypes.string,
|
|
3045
|
-
administrative_area: PropTypes.string,
|
|
3046
|
-
sub_administrative_area: PropTypes.string,
|
|
3047
|
-
postal_code: PropTypes.string,
|
|
3048
|
-
country: PropTypes.string,
|
|
3049
|
-
country_code: PropTypes.string,
|
|
3050
|
-
});
|
|
3051
|
-
|
|
3052
|
-
T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postalAddress', 'phoneticName']);
|
|
3053
|
-
|
|
3054
|
-
T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
|
|
3055
|
-
'amex',
|
|
3056
|
-
'chinaUnionPay',
|
|
3057
|
-
'discover',
|
|
3058
|
-
'jcb',
|
|
3059
|
-
'masterCard',
|
|
3060
|
-
'privateLabel',
|
|
3061
|
-
'visa',
|
|
3062
|
-
]);
|
|
3063
|
-
|
|
3064
|
-
T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['shipping', 'delivery', 'storePickup', 'servicePickup']);
|
|
3065
|
-
|
|
3066
|
-
T['io.flow.apple.pay.v0.models.apple_pay_shipping_method'] = PropTypes.exact({
|
|
3067
|
-
label: PropTypes.string.isRequired,
|
|
3068
|
-
detail: PropTypes.string.isRequired,
|
|
3069
|
-
amount: PropTypes.string.isRequired,
|
|
3070
|
-
identifier: PropTypes.string.isRequired,
|
|
3071
|
-
});
|
|
3072
|
-
|
|
3073
|
-
T['io.flow.apple.pay.v0.enums.apple_pay_merchant_capability'] = PropTypes.oneOf(['supports3DS', 'supportsCredit', 'supportsDebit', 'supportsEMV']);
|
|
3074
|
-
|
|
3075
|
-
T['io.flow.apple.pay.v0.models.apple_pay_line_item'] = PropTypes.exact({
|
|
3076
|
-
label: PropTypes.string.isRequired,
|
|
3077
|
-
type: T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'].isRequired,
|
|
3078
|
-
amount: PropTypes.string.isRequired,
|
|
3079
|
-
});
|
|
3080
|
-
|
|
3081
|
-
T['io.flow.apple.pay.v0.models.apple_pay_payment_info'] = PropTypes.exact({
|
|
3082
|
-
total: T['io.flow.apple.pay.v0.models.apple_pay_line_item'].isRequired,
|
|
3083
|
-
line_items: PropTypes.arrayOf(T['io.flow.apple.pay.v0.models.apple_pay_line_item']),
|
|
3084
|
-
country_code: PropTypes.string.isRequired,
|
|
3085
|
-
currency_code: PropTypes.string.isRequired,
|
|
3086
|
-
merchant_capabilities: PropTypes.arrayOf(T['io.flow.apple.pay.v0.enums.apple_pay_merchant_capability']).isRequired,
|
|
3087
|
-
shipping_methods: PropTypes.arrayOf(T['io.flow.apple.pay.v0.models.apple_pay_shipping_method']),
|
|
3088
|
-
shipping_type: T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'],
|
|
3089
|
-
supported_countries: PropTypes.arrayOf(PropTypes.string),
|
|
3090
|
-
supported_networks: PropTypes.arrayOf(T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks']).isRequired,
|
|
3091
|
-
required_billingContactFields: PropTypes.arrayOf(T['io.flow.apple.pay.v0.enums.apple_pay_contact_field']),
|
|
3092
|
-
required_shippingContactFields: PropTypes.arrayOf(T['io.flow.apple.pay.v0.enums.apple_pay_contact_field']),
|
|
3093
|
-
billing_contact: T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'],
|
|
3094
|
-
shipping_contact: T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'],
|
|
3095
|
-
application_data: PropTypes.string,
|
|
3096
|
-
});
|
|
3097
|
-
|
|
3098
|
-
T['io.flow.payment.gateway.v0.models.adyen_v3_challenge_token'] = PropTypes.exact({
|
|
3099
|
-
type: PropTypes.oneOf(['token']).isRequired,
|
|
3100
|
-
challenge_token: PropTypes.string.isRequired,
|
|
3101
|
-
});
|
|
3102
|
-
|
|
3103
|
-
T['io.flow.payment.gateway.v0.models.adyen_v3_fingerprint_token'] = PropTypes.exact({
|
|
3104
|
-
type: PropTypes.oneOf(['fingerprint']).isRequired,
|
|
3105
|
-
fingerprint_token: PropTypes.string.isRequired,
|
|
3106
|
-
});
|
|
3107
|
-
|
|
3108
|
-
T['io.flow.payment.gateway.v0.unions.sdk_adyen_v3_authentication_token'] = PropTypes.oneOfType([
|
|
3109
|
-
T['io.flow.payment.gateway.v0.models.adyen_v3_fingerprint_token'],
|
|
3110
|
-
T['io.flow.payment.gateway.v0.models.adyen_v3_challenge_token'],
|
|
3111
|
-
]);
|
|
3112
|
-
|
|
3113
|
-
T['io.flow.payment.gateway.v0.unions.payment_method_data_option_logo'] = PropTypes.oneOfType(
|
|
3114
|
-
[T['io.flow.payment.gateway.v0.models.payment_method_data_option_logo_svg']],
|
|
3115
|
-
);
|
|
3116
|
-
|
|
3117
|
-
T['io.flow.payment.gateway.v0.enums.payment_method_data_option_type'] = PropTypes.oneOf(['ideal_issuer_option']);
|
|
3118
|
-
|
|
3119
|
-
T['io.flow.payment.gateway.v0.models.payment_method_data_payment_option'] = PropTypes.exact({
|
|
3120
|
-
id: PropTypes.string.isRequired,
|
|
3121
|
-
name: PropTypes.string.isRequired,
|
|
3122
|
-
logo: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.unions.payment_method_data_option_logo']),
|
|
3123
|
-
});
|
|
3124
|
-
|
|
3125
|
-
T['io.flow.payment.gateway.v0.enums.inline_window_viewport_size'] = PropTypes.oneOf(['xxx_small', 'xx_small', 'x_small', 'small', 'fullscreen', 'responsive']);
|
|
3126
|
-
|
|
3127
|
-
T['io.flow.svb.v0.enums.notification_type'] = PropTypes.oneOf([
|
|
3128
|
-
'virtualcard.clearings',
|
|
3129
|
-
'virtualcard.created',
|
|
3130
|
-
'virtualcard.deleted',
|
|
3131
|
-
'virtualcard.realtime.auths',
|
|
3132
|
-
]);
|
|
3133
|
-
|
|
3134
|
-
T['io.flow.svb.v0.models.notification_data'] = PropTypes.exact({
|
|
3135
|
-
date: PropTypes.string.isRequired,
|
|
3136
|
-
'event-id': PropTypes.number.isRequired,
|
|
3137
|
-
payload: PropTypes.object.isRequired,
|
|
3138
|
-
type: T['io.flow.svb.v0.enums.notification_type'],
|
|
3139
|
-
});
|
|
3140
|
-
|
|
3141
|
-
T['io.flow.svb.v0.models.svb_notification'] = PropTypes.exact({
|
|
3142
|
-
data: T['io.flow.svb.v0.models.notification_data'].isRequired,
|
|
3143
|
-
});
|
|
3144
|
-
|
|
3145
|
-
T['io.flow.svb.v0.models.list_links'] = PropTypes.exact({
|
|
3146
|
-
first: PropTypes.string.isRequired,
|
|
3147
|
-
next: PropTypes.string,
|
|
3148
|
-
});
|
|
3149
|
-
|
|
3150
|
-
T['io.flow.svb.v0.models.list_data'] = PropTypes.exact({
|
|
3151
|
-
id: PropTypes.string.isRequired,
|
|
3152
|
-
type: PropTypes.string.isRequired,
|
|
3153
|
-
url: PropTypes.string.isRequired,
|
|
3154
|
-
});
|
|
3155
|
-
|
|
3156
|
-
T['io.flow.svb.v0.models.list_response'] = PropTypes.exact({
|
|
3157
|
-
data: PropTypes.arrayOf(T['io.flow.svb.v0.models.list_data']).isRequired,
|
|
3158
|
-
links: T['io.flow.svb.v0.models.list_links'].isRequired,
|
|
3159
|
-
});
|
|
3160
|
-
|
|
3161
|
-
T['io.flow.svb.v0.models.email'] = PropTypes.exact({
|
|
3162
|
-
email: PropTypes.string.isRequired,
|
|
3163
|
-
});
|
|
3164
|
-
|
|
3165
|
-
T['io.flow.svb.v0.models.email_body'] = PropTypes.exact({
|
|
3166
|
-
data: T['io.flow.svb.v0.models.email'].isRequired,
|
|
3167
|
-
});
|
|
3168
|
-
|
|
3169
|
-
T['io.flow.svb.v0.models.mastercard_data'] = PropTypes.exact({
|
|
3170
|
-
id: PropTypes.string,
|
|
3171
|
-
organization: PropTypes.string,
|
|
3172
|
-
order_number: PropTypes.string,
|
|
3173
|
-
authorization_key: PropTypes.string,
|
|
3174
|
-
});
|
|
3175
|
-
|
|
3176
|
-
T['io.flow.svb.v0.models.update_virtual_card'] = PropTypes.exact({
|
|
3177
|
-
emails: PropTypes.arrayOf(PropTypes.string),
|
|
3178
|
-
mastercard_data: T['io.flow.svb.v0.models.mastercard_data'],
|
|
3179
|
-
metadata: PropTypes.object,
|
|
3180
|
-
per_transaction_max: PropTypes.number,
|
|
3181
|
-
per_transaction_min: PropTypes.number,
|
|
3182
|
-
total_card_amount: PropTypes.number,
|
|
3183
|
-
transactions_max: PropTypes.number,
|
|
3184
|
-
valid_ending_on: PropTypes.string,
|
|
3185
|
-
valid_starting_on: PropTypes.string,
|
|
3186
|
-
});
|
|
3187
|
-
|
|
3188
|
-
T['io.flow.svb.v0.models.update_body'] = PropTypes.exact({
|
|
3189
|
-
data: T['io.flow.svb.v0.models.update_virtual_card'].isRequired,
|
|
3190
|
-
});
|
|
3191
|
-
|
|
3192
|
-
T['io.flow.svb.v0.models.create_virtual_card'] = PropTypes.exact({
|
|
3193
|
-
emails: PropTypes.arrayOf(PropTypes.string),
|
|
3194
|
-
mastercard_data: T['io.flow.svb.v0.models.mastercard_data'],
|
|
3195
|
-
metadata: PropTypes.object,
|
|
3196
|
-
per_transaction_max: PropTypes.number,
|
|
3197
|
-
per_transaction_min: PropTypes.number,
|
|
3198
|
-
rcn_id: PropTypes.number,
|
|
3199
|
-
rcn_alias: PropTypes.string,
|
|
3200
|
-
supplier_id: PropTypes.number,
|
|
3201
|
-
total_card_amount: PropTypes.number.isRequired,
|
|
3202
|
-
transactions_max: PropTypes.number.isRequired,
|
|
3203
|
-
valid_ending_on: PropTypes.string.isRequired,
|
|
3204
|
-
valid_starting_on: PropTypes.string,
|
|
3205
|
-
});
|
|
3206
|
-
|
|
3207
|
-
T['io.flow.svb.v0.models.create_body'] = PropTypes.exact({
|
|
3208
|
-
data: T['io.flow.svb.v0.models.create_virtual_card'].isRequired,
|
|
3209
|
-
show_card_number: PropTypes.bool.isRequired,
|
|
3210
|
-
});
|
|
3211
|
-
|
|
3212
|
-
T['io.flow.svb.v0.enums.clearing_type'] = PropTypes.oneOf(['Credit', 'Debit']);
|
|
3213
|
-
|
|
3214
|
-
T['io.flow.svb.v0.models.clearing_notification'] = PropTypes.exact({
|
|
3215
|
-
acquirer_ica: PropTypes.string.isRequired,
|
|
3216
|
-
approval_code: PropTypes.string,
|
|
3217
|
-
authorization_date: PropTypes.string.isRequired,
|
|
3218
|
-
billing_amount: PropTypes.number.isRequired,
|
|
3219
|
-
billing_currency: PropTypes.string.isRequired,
|
|
3220
|
-
clearing_type: T['io.flow.svb.v0.enums.clearing_type'].isRequired,
|
|
3221
|
-
exchange_rate: PropTypes.string.isRequired,
|
|
3222
|
-
mcc: PropTypes.string.isRequired,
|
|
3223
|
-
mcc_description: PropTypes.string.isRequired,
|
|
3224
|
-
merchant_amount: PropTypes.number.isRequired,
|
|
3225
|
-
merchant_currency: PropTypes.string.isRequired,
|
|
3226
|
-
merchant_id: PropTypes.string.isRequired,
|
|
3227
|
-
merchant_name: PropTypes.string.isRequired,
|
|
3228
|
-
settlement_date: PropTypes.string.isRequired,
|
|
3229
|
-
vcn_id: PropTypes.number.isRequired,
|
|
3230
|
-
});
|
|
3231
|
-
|
|
3232
|
-
T['io.flow.svb.v0.models.clearing'] = PropTypes.exact({
|
|
3233
|
-
billing_amount: PropTypes.number.isRequired,
|
|
3234
|
-
billing_currency: PropTypes.string.isRequired,
|
|
3235
|
-
clearing_type: T['io.flow.svb.v0.enums.clearing_type'].isRequired,
|
|
3236
|
-
authorization_date: PropTypes.string,
|
|
3237
|
-
exchange_rate: PropTypes.string.isRequired,
|
|
3238
|
-
mcc: PropTypes.string.isRequired,
|
|
3239
|
-
mcc_description: PropTypes.string.isRequired,
|
|
3240
|
-
merchant_amount: PropTypes.number.isRequired,
|
|
3241
|
-
merchant_currency: PropTypes.string.isRequired,
|
|
3242
|
-
merchant_id: PropTypes.string.isRequired,
|
|
3243
|
-
merchant_name: PropTypes.string.isRequired,
|
|
3244
|
-
settlement_date: PropTypes.string.isRequired,
|
|
3245
|
-
});
|
|
3246
|
-
|
|
3247
|
-
T['io.flow.svb.v0.enums.transaction_type'] = PropTypes.oneOf([
|
|
3248
|
-
'Authorization',
|
|
3249
|
-
'Advice',
|
|
3250
|
-
'First Presentment',
|
|
3251
|
-
'Reversal',
|
|
3252
|
-
'Reversal Advice',
|
|
3253
|
-
'Unspecified',
|
|
3254
|
-
'Purchase Return',
|
|
3255
|
-
'Forced Post',
|
|
3256
|
-
]);
|
|
3257
|
-
|
|
3258
|
-
T['io.flow.svb.v0.models.authorization'] = PropTypes.exact({
|
|
3259
|
-
billing_amount: PropTypes.number.isRequired,
|
|
3260
|
-
billing_currency: PropTypes.string.isRequired,
|
|
3261
|
-
issuer_response: PropTypes.string.isRequired,
|
|
3262
|
-
mcc: PropTypes.string.isRequired,
|
|
3263
|
-
mcc_description: PropTypes.string.isRequired,
|
|
3264
|
-
merchant_amount: PropTypes.number.isRequired,
|
|
3265
|
-
merchant_currency: PropTypes.string.isRequired,
|
|
3266
|
-
merchant_id: PropTypes.string.isRequired,
|
|
3267
|
-
merchant_name: PropTypes.string.isRequired,
|
|
3268
|
-
transaction_date_time: PropTypes.string.isRequired,
|
|
3269
|
-
transaction_type: T['io.flow.svb.v0.enums.transaction_type'].isRequired,
|
|
3270
|
-
});
|
|
3271
|
-
|
|
3272
|
-
T['io.flow.svb.v0.models.virtual_card'] = PropTypes.exact({
|
|
3273
|
-
authorizations: PropTypes.arrayOf(T['io.flow.svb.v0.models.authorization']).isRequired,
|
|
3274
|
-
available_balance: PropTypes.number,
|
|
3275
|
-
card_number: PropTypes.string,
|
|
3276
|
-
clearings: PropTypes.arrayOf(T['io.flow.svb.v0.models.clearing']).isRequired,
|
|
3277
|
-
currency: PropTypes.string.isRequired,
|
|
3278
|
-
cvc: PropTypes.string,
|
|
3279
|
-
emails: PropTypes.arrayOf(PropTypes.string),
|
|
3280
|
-
expiry: PropTypes.string.isRequired,
|
|
3281
|
-
id: PropTypes.string.isRequired,
|
|
3282
|
-
last4: PropTypes.string.isRequired,
|
|
3283
|
-
mastercard_data: T['io.flow.svb.v0.models.mastercard_data'].isRequired,
|
|
3284
|
-
metadata: PropTypes.object,
|
|
3285
|
-
notified: PropTypes.bool.isRequired,
|
|
3286
|
-
per_transaction_max: PropTypes.number.isRequired,
|
|
3287
|
-
per_transaction_min: PropTypes.number.isRequired,
|
|
3288
|
-
rcn_alias: PropTypes.string.isRequired,
|
|
3289
|
-
rcn_id: PropTypes.number.isRequired,
|
|
3290
|
-
status: PropTypes.string.isRequired,
|
|
3291
|
-
supplier_id: PropTypes.number.isRequired,
|
|
3292
|
-
total_card_amount: PropTypes.number.isRequired,
|
|
3293
|
-
transactions_max: PropTypes.number.isRequired,
|
|
3294
|
-
valid_ending_on: PropTypes.string.isRequired,
|
|
3295
|
-
valid_starting_on: PropTypes.string.isRequired,
|
|
3296
|
-
});
|
|
3297
|
-
|
|
3298
|
-
T['io.flow.svb.v0.models.virtual_card_response'] = PropTypes.exact({
|
|
3299
|
-
data: T['io.flow.svb.v0.models.virtual_card'].isRequired,
|
|
3300
|
-
});
|
|
3301
|
-
|
|
3302
2722
|
T['io.flow.shopify.markets.v0.models.shopify_webhook_customers_data_request_id'] = PropTypes.exact({
|
|
3303
2723
|
id: PropTypes.number.isRequired,
|
|
3304
2724
|
});
|
|
@@ -4310,7 +3730,7 @@ T['io.flow.shopify.external.v0.models.product_image'] = PropTypes.exact({
|
|
|
4310
3730
|
id: PropTypes.number.isRequired,
|
|
4311
3731
|
product_id: PropTypes.number.isRequired,
|
|
4312
3732
|
variant_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
4313
|
-
src: PropTypes.string
|
|
3733
|
+
src: PropTypes.string,
|
|
4314
3734
|
position: PropTypes.number.isRequired,
|
|
4315
3735
|
created_at: PropTypes.string.isRequired,
|
|
4316
3736
|
updated_at: PropTypes.string.isRequired,
|
|
@@ -7531,6 +6951,14 @@ T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'] = Pro
|
|
|
7531
6951
|
url: PropTypes.string,
|
|
7532
6952
|
});
|
|
7533
6953
|
|
|
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
|
+
|
|
7534
6962
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'] = PropTypes.exact({
|
|
7535
6963
|
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
7536
6964
|
label_transaction_id: PropTypes.string.isRequired,
|
|
@@ -7719,22 +7147,6 @@ T['io.flow.google.pay.v0.unions.payment_method_token'] = PropTypes.oneOfType([
|
|
|
7719
7147
|
T['io.flow.google.pay.v0.enums.tokenization_type'] = PropTypes.oneOf(['PAYMENT_GATEWAY', 'DIRECT']);
|
|
7720
7148
|
T['io.flow.google.pay.v0.enums.total_price_status'] = PropTypes.oneOf(['NOT_CURRENTLY_KNOWN', 'ESTIMATED', 'FINAL']);
|
|
7721
7149
|
|
|
7722
|
-
T['io.flow.google.pay.v0.models.shipping_address_parameters'] = PropTypes.exact({
|
|
7723
|
-
allowedCountryCodes: PropTypes.arrayOf(PropTypes.string),
|
|
7724
|
-
});
|
|
7725
|
-
|
|
7726
|
-
T['io.flow.google.pay.v0.models.transaction_info'] = PropTypes.exact({
|
|
7727
|
-
totalPriceStatus: T['io.flow.google.pay.v0.enums.total_price_status'].isRequired,
|
|
7728
|
-
totalPrice: PropTypes.string,
|
|
7729
|
-
currencyCode: PropTypes.string,
|
|
7730
|
-
});
|
|
7731
|
-
|
|
7732
|
-
T['io.flow.google.pay.v0.models.merchant_info'] = PropTypes.exact({
|
|
7733
|
-
merchantId: PropTypes.string.isRequired,
|
|
7734
|
-
merchantName: PropTypes.string,
|
|
7735
|
-
authJwt: PropTypes.string,
|
|
7736
|
-
});
|
|
7737
|
-
|
|
7738
7150
|
T['io.flow.google.pay.v0.models.payment_method_tokenization_data'] = PropTypes.exact({
|
|
7739
7151
|
type: PropTypes.string.isRequired,
|
|
7740
7152
|
token: PropTypes.string,
|
|
@@ -7807,30 +7219,6 @@ T['io.flow.google.pay.v0.models.card_payment_method_parameters'] = PropTypes.exa
|
|
|
7807
7219
|
billingAddressParameters: T['io.flow.google.pay.v0.models.billing_address_parameters'],
|
|
7808
7220
|
});
|
|
7809
7221
|
|
|
7810
|
-
T['io.flow.google.pay.v0.models.payment_method'] = PropTypes.exact({
|
|
7811
|
-
type: T['io.flow.google.pay.v0.enums.payment_method_type'].isRequired,
|
|
7812
|
-
parameters: T['io.flow.google.pay.v0.models.card_payment_method_parameters'].isRequired,
|
|
7813
|
-
tokenizationSpecification: T['io.flow.google.pay.v0.models.payment_method_tokenization_specification'].isRequired,
|
|
7814
|
-
});
|
|
7815
|
-
|
|
7816
|
-
T['io.flow.google.pay.v0.models.payment_data_request'] = PropTypes.exact({
|
|
7817
|
-
apiVersion: PropTypes.number.isRequired,
|
|
7818
|
-
apiVersionMinor: PropTypes.number.isRequired,
|
|
7819
|
-
merchantInfo: T['io.flow.google.pay.v0.models.merchant_info'].isRequired,
|
|
7820
|
-
allowedPaymentMethods: PropTypes.arrayOf(T['io.flow.google.pay.v0.models.payment_method']).isRequired,
|
|
7821
|
-
transactionInfo: T['io.flow.google.pay.v0.models.transaction_info'].isRequired,
|
|
7822
|
-
emailRequired: PropTypes.bool,
|
|
7823
|
-
shippingAddressRequired: PropTypes.bool,
|
|
7824
|
-
shippingAddressParameters: T['io.flow.google.pay.v0.models.shipping_address_parameters'],
|
|
7825
|
-
});
|
|
7826
|
-
|
|
7827
|
-
T['io.flow.google.pay.v0.models.encrypted_message'] = PropTypes.exact({
|
|
7828
|
-
messageExpiration: PropTypes.string.isRequired,
|
|
7829
|
-
messageId: PropTypes.string.isRequired,
|
|
7830
|
-
paymentMethod: T['io.flow.google.pay.v0.models.payment_method'].isRequired,
|
|
7831
|
-
paymentMethodDetails: T['io.flow.google.pay.v0.models.payment_method_details'].isRequired,
|
|
7832
|
-
});
|
|
7833
|
-
|
|
7834
7222
|
T['io.flow.payment.v0.models.merchant_of_record_payment_form'] = PropTypes.exact({
|
|
7835
7223
|
discriminator: PropTypes.oneOf(['merchant_of_record_payment_form']).isRequired,
|
|
7836
7224
|
method: PropTypes.string.isRequired,
|
|
@@ -7857,22 +7245,6 @@ T['io.flow.payment.v0.models.stripe_authentication_data'] = PropTypes.exact({
|
|
|
7857
7245
|
|
|
7858
7246
|
T['io.flow.payment.v0.unions.gateway_authentication_data'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.stripe_authentication_data']]);
|
|
7859
7247
|
|
|
7860
|
-
T['io.flow.payment.v0.models.device_details_browser'] = PropTypes.exact({
|
|
7861
|
-
type: PropTypes.oneOf(['browser']).isRequired,
|
|
7862
|
-
user_agent: PropTypes.string.isRequired,
|
|
7863
|
-
origin: PropTypes.string.isRequired,
|
|
7864
|
-
accept_language: PropTypes.string,
|
|
7865
|
-
ip: PropTypes.string,
|
|
7866
|
-
time_zone_offset: PropTypes.number,
|
|
7867
|
-
date_string: PropTypes.string,
|
|
7868
|
-
navigator_language: PropTypes.string,
|
|
7869
|
-
navigator_hardware_concurrency: PropTypes.number,
|
|
7870
|
-
cookie_created_at: PropTypes.number,
|
|
7871
|
-
session_duration: PropTypes.number,
|
|
7872
|
-
fingerprint: PropTypes.string,
|
|
7873
|
-
fraud_references: PropTypes.objectOf(PropTypes.string),
|
|
7874
|
-
});
|
|
7875
|
-
|
|
7876
7248
|
T['io.flow.payment.v0.models.issuer_v1'] = PropTypes.exact({
|
|
7877
7249
|
iin: PropTypes.string.isRequired,
|
|
7878
7250
|
card_brand: PropTypes.string.isRequired,
|
|
@@ -7897,43 +7269,6 @@ T['io.flow.payment.v0.models.threeds_two_challenge_request'] = PropTypes.exact({
|
|
|
7897
7269
|
|
|
7898
7270
|
T['io.flow.payment.v0.unions.threeds_challenge_action'] = PropTypes.oneOfType([T['io.flow.payment.v0.models.threeds_two_challenge_request']]);
|
|
7899
7271
|
|
|
7900
|
-
T['io.flow.payment.v0.enums.reversal_error_code'] = PropTypes.oneOf([
|
|
7901
|
-
'amount_exceeds_balance',
|
|
7902
|
-
'authorization_declined',
|
|
7903
|
-
'authorization_expired',
|
|
7904
|
-
'invalid_authorization',
|
|
7905
|
-
'invalid_key',
|
|
7906
|
-
'invalid_amount',
|
|
7907
|
-
'invalid_currency',
|
|
7908
|
-
'no_remaining_balance',
|
|
7909
|
-
'partial_reversal_not_supported',
|
|
7910
|
-
'unknown',
|
|
7911
|
-
]);
|
|
7912
|
-
|
|
7913
|
-
T['io.flow.payment.v0.models.reversal_error'] = PropTypes.exact({
|
|
7914
|
-
code: PropTypes.string.isRequired,
|
|
7915
|
-
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
7916
|
-
codes: PropTypes.arrayOf(T['io.flow.payment.v0.enums.reversal_error_code']).isRequired,
|
|
7917
|
-
});
|
|
7918
|
-
|
|
7919
|
-
T['io.flow.payment.v0.enums.reversal_status'] = PropTypes.oneOf(['pending', 'processed', 'failed']);
|
|
7920
|
-
|
|
7921
|
-
T['io.flow.payment.gateway.v0.models.payment_reversal_status'] = PropTypes.exact({
|
|
7922
|
-
status: T['io.flow.payment.v0.enums.reversal_status'].isRequired,
|
|
7923
|
-
reason: T['io.flow.payment.v0.enums.reversal_error_code'],
|
|
7924
|
-
});
|
|
7925
|
-
|
|
7926
|
-
T['io.flow.payment.gateway.v0.models.payment_reversal'] = PropTypes.exact({
|
|
7927
|
-
id: PropTypes.string.isRequired,
|
|
7928
|
-
amount: PropTypes.number.isRequired,
|
|
7929
|
-
currency: PropTypes.string.isRequired,
|
|
7930
|
-
base_amount: PropTypes.number,
|
|
7931
|
-
base_currency: PropTypes.string,
|
|
7932
|
-
created_at: PropTypes.string.isRequired,
|
|
7933
|
-
updated_at: PropTypes.string.isRequired,
|
|
7934
|
-
status: T['io.flow.payment.gateway.v0.models.payment_reversal_status'].isRequired,
|
|
7935
|
-
});
|
|
7936
|
-
|
|
7937
7272
|
T['io.flow.payment.v0.models.refund_order_summary_amounts'] = PropTypes.exact({
|
|
7938
7273
|
balance: PropTypes.number.isRequired,
|
|
7939
7274
|
balance_excluding_shipping: PropTypes.number,
|
|
@@ -7948,25 +7283,6 @@ T['io.flow.payment.v0.models.refund_order_summary'] = PropTypes.exact({
|
|
|
7948
7283
|
amounts: T['io.flow.payment.v0.models.refund_order_summary_amounts'].isRequired,
|
|
7949
7284
|
});
|
|
7950
7285
|
|
|
7951
|
-
T['io.flow.payment.v0.enums.refund_decline_code'] = PropTypes.oneOf(['expired', 'insufficient_funds', 'unknown']);
|
|
7952
|
-
T['io.flow.payment.v0.enums.refund_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed', 'canceled']);
|
|
7953
|
-
|
|
7954
|
-
T['io.flow.payment.gateway.v0.models.payment_refund_status'] = PropTypes.exact({
|
|
7955
|
-
status: T['io.flow.payment.v0.enums.refund_status'].isRequired,
|
|
7956
|
-
reason: T['io.flow.payment.v0.enums.refund_decline_code'],
|
|
7957
|
-
});
|
|
7958
|
-
|
|
7959
|
-
T['io.flow.payment.gateway.v0.models.payment_refund'] = PropTypes.exact({
|
|
7960
|
-
id: PropTypes.string.isRequired,
|
|
7961
|
-
amount: PropTypes.number.isRequired,
|
|
7962
|
-
currency: PropTypes.string.isRequired,
|
|
7963
|
-
base_amount: PropTypes.number,
|
|
7964
|
-
base_currency: PropTypes.string,
|
|
7965
|
-
created_at: PropTypes.string.isRequired,
|
|
7966
|
-
updated_at: PropTypes.string.isRequired,
|
|
7967
|
-
status: T['io.flow.payment.gateway.v0.models.payment_refund_status'].isRequired,
|
|
7968
|
-
});
|
|
7969
|
-
|
|
7970
7286
|
T['io.flow.payment.v0.models.payment_processor_transaction_details_card'] = PropTypes.exact({
|
|
7971
7287
|
discriminator: PropTypes.oneOf(['card']).isRequired,
|
|
7972
7288
|
transaction_identifier: PropTypes.string,
|
|
@@ -8136,25 +7452,6 @@ T['io.flow.payment.v0.models.capture_identifier'] = PropTypes.exact({
|
|
|
8136
7452
|
primary: PropTypes.bool.isRequired,
|
|
8137
7453
|
});
|
|
8138
7454
|
|
|
8139
|
-
T['io.flow.payment.v0.enums.capture_decline_code'] = PropTypes.oneOf(['expired', 'insufficient_funds', 'unknown']);
|
|
8140
|
-
T['io.flow.payment.v0.enums.capture_status'] = PropTypes.oneOf(['initiated', 'pending', 'succeeded', 'failed', 'canceled']);
|
|
8141
|
-
|
|
8142
|
-
T['io.flow.payment.gateway.v0.models.payment_capture_status'] = PropTypes.exact({
|
|
8143
|
-
status: T['io.flow.payment.v0.enums.capture_status'].isRequired,
|
|
8144
|
-
reason: T['io.flow.payment.v0.enums.capture_decline_code'],
|
|
8145
|
-
});
|
|
8146
|
-
|
|
8147
|
-
T['io.flow.payment.gateway.v0.models.payment_capture'] = PropTypes.exact({
|
|
8148
|
-
id: PropTypes.string.isRequired,
|
|
8149
|
-
amount: PropTypes.number.isRequired,
|
|
8150
|
-
currency: PropTypes.string.isRequired,
|
|
8151
|
-
base_amount: PropTypes.number,
|
|
8152
|
-
base_currency: PropTypes.string,
|
|
8153
|
-
created_at: PropTypes.string.isRequired,
|
|
8154
|
-
updated_at: PropTypes.string.isRequired,
|
|
8155
|
-
status: T['io.flow.payment.gateway.v0.models.payment_capture_status'].isRequired,
|
|
8156
|
-
});
|
|
8157
|
-
|
|
8158
7455
|
T['io.flow.payment.v0.models.card_browser_action_configuration'] = PropTypes.exact({
|
|
8159
7456
|
discriminator: PropTypes.oneOf(['card_browser_action_configuration']).isRequired,
|
|
8160
7457
|
viewport: T['io.flow.payment.v0.enums.threeds_two_challenge_viewport'].isRequired,
|
|
@@ -8929,6 +8226,565 @@ T['io.flow.billing.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
8929
8226
|
record_reason_for_transactions_pending_payout: PropTypes.bool.isRequired,
|
|
8930
8227
|
});
|
|
8931
8228
|
|
|
8229
|
+
T['io.flow.payment.v0.enums.reversal_error_code'] = PropTypes.oneOf([
|
|
8230
|
+
'amount_exceeds_balance',
|
|
8231
|
+
'authorization_declined',
|
|
8232
|
+
'authorization_expired',
|
|
8233
|
+
'invalid_authorization',
|
|
8234
|
+
'invalid_key',
|
|
8235
|
+
'invalid_amount',
|
|
8236
|
+
'invalid_currency',
|
|
8237
|
+
'no_remaining_balance',
|
|
8238
|
+
'partial_reversal_not_supported',
|
|
8239
|
+
'unknown',
|
|
8240
|
+
]);
|
|
8241
|
+
|
|
8242
|
+
T['io.flow.payment.v0.models.reversal_error'] = PropTypes.exact({
|
|
8243
|
+
code: PropTypes.string.isRequired,
|
|
8244
|
+
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8245
|
+
codes: PropTypes.arrayOf(T['io.flow.payment.v0.enums.reversal_error_code']).isRequired,
|
|
8246
|
+
});
|
|
8247
|
+
|
|
8248
|
+
T['io.flow.payment.v0.enums.reversal_status'] = PropTypes.oneOf(['pending', 'processed', 'failed']);
|
|
8249
|
+
T['io.flow.payment.gateway.v0.enums.payment_request_review_check_status'] = PropTypes.oneOf(['passed', 'failed']);
|
|
8250
|
+
|
|
8251
|
+
T['io.flow.payment.gateway.v0.enums.payment_request_review_check_type'] = PropTypes.oneOf([
|
|
8252
|
+
'restricted_party_screening',
|
|
8253
|
+
'fraud_suspicious_behavior',
|
|
8254
|
+
'fraud_suspicious_past_activity',
|
|
8255
|
+
'fraud_risky_velocity',
|
|
8256
|
+
'fraud_previous_chargebacks',
|
|
8257
|
+
'order_restricted_goods',
|
|
8258
|
+
'order_unsupported_destination',
|
|
8259
|
+
'order_missing_information',
|
|
8260
|
+
'order_domestic',
|
|
8261
|
+
'order_mismatched_currencies',
|
|
8262
|
+
]);
|
|
8263
|
+
|
|
8264
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_selected_payment_option'] = PropTypes.exact({
|
|
8265
|
+
type: PropTypes.oneOf(['select_option']).isRequired,
|
|
8266
|
+
option_id: PropTypes.string.isRequired,
|
|
8267
|
+
});
|
|
8268
|
+
|
|
8269
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_paypal'] = PropTypes.exact({
|
|
8270
|
+
type: PropTypes.oneOf(['authorize_paypal']).isRequired,
|
|
8271
|
+
payment_id: PropTypes.string.isRequired,
|
|
8272
|
+
payer_id: PropTypes.string.isRequired,
|
|
8273
|
+
});
|
|
8274
|
+
|
|
8275
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_googlepay'] = PropTypes.exact({
|
|
8276
|
+
type: PropTypes.oneOf(['authorize_googlepay']).isRequired,
|
|
8277
|
+
payment_data: PropTypes.object.isRequired,
|
|
8278
|
+
});
|
|
8279
|
+
|
|
8280
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_validate_applepay'] = PropTypes.exact({
|
|
8281
|
+
type: PropTypes.oneOf(['validate_applepay']).isRequired,
|
|
8282
|
+
validation_url: PropTypes.string.isRequired,
|
|
8283
|
+
});
|
|
8284
|
+
|
|
8285
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_bancontact'] = PropTypes.exact({
|
|
8286
|
+
type: PropTypes.oneOf(['init_bancontact']).isRequired,
|
|
8287
|
+
reference: PropTypes.string,
|
|
8288
|
+
});
|
|
8289
|
+
|
|
8290
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_sofort'] = PropTypes.exact({
|
|
8291
|
+
type: PropTypes.oneOf(['init_sofort']).isRequired,
|
|
8292
|
+
reference: PropTypes.string,
|
|
8293
|
+
});
|
|
8294
|
+
|
|
8295
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_ideal'] = PropTypes.exact({
|
|
8296
|
+
type: PropTypes.oneOf(['init_ideal']).isRequired,
|
|
8297
|
+
issuer: PropTypes.string,
|
|
8298
|
+
reference: PropTypes.string,
|
|
8299
|
+
});
|
|
8300
|
+
|
|
8301
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_paypal'] = PropTypes.exact({
|
|
8302
|
+
type: PropTypes.oneOf(['init_paypal']).isRequired,
|
|
8303
|
+
reference: PropTypes.string,
|
|
8304
|
+
});
|
|
8305
|
+
|
|
8306
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_googlepay'] = PropTypes.exact({
|
|
8307
|
+
type: PropTypes.oneOf(['init_googlepay']).isRequired,
|
|
8308
|
+
reference: PropTypes.string,
|
|
8309
|
+
});
|
|
8310
|
+
|
|
8311
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_applepay'] = PropTypes.exact({
|
|
8312
|
+
type: PropTypes.oneOf(['init_applepay']).isRequired,
|
|
8313
|
+
reference: PropTypes.string,
|
|
8314
|
+
});
|
|
8315
|
+
|
|
8316
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_afterpay'] = PropTypes.exact({
|
|
8317
|
+
type: PropTypes.oneOf(['init_afterpay']).isRequired,
|
|
8318
|
+
reference: PropTypes.string,
|
|
8319
|
+
});
|
|
8320
|
+
|
|
8321
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_init_klarna'] = PropTypes.exact({
|
|
8322
|
+
type: PropTypes.oneOf(['init_klarna']).isRequired,
|
|
8323
|
+
reference: PropTypes.string,
|
|
8324
|
+
});
|
|
8325
|
+
|
|
8326
|
+
T['io.flow.payment.gateway.v0.models.payment_request_review_check'] = PropTypes.exact({
|
|
8327
|
+
type: T['io.flow.payment.gateway.v0.enums.payment_request_review_check_type'].isRequired,
|
|
8328
|
+
status: T['io.flow.payment.gateway.v0.enums.payment_request_review_check_status'].isRequired,
|
|
8329
|
+
});
|
|
8330
|
+
|
|
8331
|
+
T['io.flow.payment.gateway.v0.enums.payment_request_review_status'] = PropTypes.oneOf(['pending', 'approved', 'rejected']);
|
|
8332
|
+
|
|
8333
|
+
T['io.flow.payment.v0.models.device_details_browser'] = PropTypes.exact({
|
|
8334
|
+
type: PropTypes.oneOf(['browser']).isRequired,
|
|
8335
|
+
user_agent: PropTypes.string.isRequired,
|
|
8336
|
+
origin: PropTypes.string.isRequired,
|
|
8337
|
+
accept_language: PropTypes.string,
|
|
8338
|
+
ip: PropTypes.string,
|
|
8339
|
+
time_zone_offset: PropTypes.number,
|
|
8340
|
+
date_string: PropTypes.string,
|
|
8341
|
+
navigator_language: PropTypes.string,
|
|
8342
|
+
navigator_hardware_concurrency: PropTypes.number,
|
|
8343
|
+
cookie_created_at: PropTypes.number,
|
|
8344
|
+
session_duration: PropTypes.number,
|
|
8345
|
+
fingerprint: PropTypes.string,
|
|
8346
|
+
fraud_references: PropTypes.objectOf(PropTypes.string),
|
|
8347
|
+
});
|
|
8348
|
+
|
|
8349
|
+
T['io.flow.payment.v0.enums.refund_decline_code'] = PropTypes.oneOf(['expired', 'insufficient_funds', 'unknown']);
|
|
8350
|
+
T['io.flow.payment.v0.enums.refund_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed', 'canceled']);
|
|
8351
|
+
|
|
8352
|
+
T['io.flow.payment.gateway.v0.enums.payment_type'] = PropTypes.oneOf([
|
|
8353
|
+
'card',
|
|
8354
|
+
'klarna',
|
|
8355
|
+
'googlepay',
|
|
8356
|
+
'paypal',
|
|
8357
|
+
'applepay',
|
|
8358
|
+
'ideal',
|
|
8359
|
+
'sofort',
|
|
8360
|
+
'afterpay',
|
|
8361
|
+
'bancontact',
|
|
8362
|
+
]);
|
|
8363
|
+
|
|
8364
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_option_logo_svg'] = PropTypes.exact({
|
|
8365
|
+
type: PropTypes.oneOf(['svg']).isRequired,
|
|
8366
|
+
url: PropTypes.string.isRequired,
|
|
8367
|
+
});
|
|
8368
|
+
|
|
8369
|
+
T['io.flow.payment.gateway.v0.models.authorization_action_result_adyen_v4'] = PropTypes.exact({
|
|
8370
|
+
type: PropTypes.oneOf(['adyen_v4']).isRequired,
|
|
8371
|
+
result: PropTypes.object.isRequired,
|
|
8372
|
+
});
|
|
8373
|
+
|
|
8374
|
+
T['io.flow.payment.gateway.v0.models.authorization_action_result_adyen_v3'] = PropTypes.exact({
|
|
8375
|
+
type: PropTypes.oneOf(['adyen_v3']).isRequired,
|
|
8376
|
+
result: PropTypes.object.isRequired,
|
|
8377
|
+
});
|
|
8378
|
+
|
|
8379
|
+
T['io.flow.payment.gateway.v0.unions.card_authorization_action_result'] = PropTypes.oneOfType([
|
|
8380
|
+
T['io.flow.payment.gateway.v0.models.authorization_action_result_adyen_v3'],
|
|
8381
|
+
T['io.flow.payment.gateway.v0.models.authorization_action_result_adyen_v4'],
|
|
8382
|
+
]);
|
|
8383
|
+
|
|
8384
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_complete_authorization_card'] = PropTypes.exact({
|
|
8385
|
+
type: PropTypes.oneOf(['complete_authorization_card']).isRequired,
|
|
8386
|
+
action_result: T['io.flow.payment.gateway.v0.unions.card_authorization_action_result'].isRequired,
|
|
8387
|
+
});
|
|
8388
|
+
|
|
8389
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_klarna_result_failure'] = PropTypes.exact({
|
|
8390
|
+
type: PropTypes.oneOf(['failure']).isRequired,
|
|
8391
|
+
placeholder: PropTypes.string,
|
|
8392
|
+
});
|
|
8393
|
+
|
|
8394
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_klarna_result_success'] = PropTypes.exact({
|
|
8395
|
+
type: PropTypes.oneOf(['success']).isRequired,
|
|
8396
|
+
authorization_token: PropTypes.string.isRequired,
|
|
8397
|
+
});
|
|
8398
|
+
|
|
8399
|
+
T['io.flow.payment.gateway.v0.unions.payment_method_data_authorize_klarna_result'] = PropTypes.oneOfType([
|
|
8400
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_klarna_result_success'],
|
|
8401
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_klarna_result_failure'],
|
|
8402
|
+
]);
|
|
8403
|
+
|
|
8404
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_klarna'] = PropTypes.exact({
|
|
8405
|
+
type: PropTypes.oneOf(['authorize_klarna']).isRequired,
|
|
8406
|
+
result: T['io.flow.payment.gateway.v0.unions.payment_method_data_authorize_klarna_result'].isRequired,
|
|
8407
|
+
});
|
|
8408
|
+
|
|
8409
|
+
T['io.flow.payment.gateway.v0.models.payment_method_stored_details_card_initial'] = PropTypes.exact({
|
|
8410
|
+
type: PropTypes.oneOf(['initial']).isRequired,
|
|
8411
|
+
reference: PropTypes.string,
|
|
8412
|
+
});
|
|
8413
|
+
|
|
8414
|
+
T['io.flow.payment.gateway.v0.models.device_fingerprint_details_browser'] = PropTypes.exact({
|
|
8415
|
+
type: PropTypes.oneOf(['browser']).isRequired,
|
|
8416
|
+
accept: PropTypes.string,
|
|
8417
|
+
java_enabled: PropTypes.bool.isRequired,
|
|
8418
|
+
color_depth: PropTypes.number.isRequired,
|
|
8419
|
+
screen_height: PropTypes.number.isRequired,
|
|
8420
|
+
screen_width: PropTypes.number.isRequired,
|
|
8421
|
+
time_zone_offset: PropTypes.number.isRequired,
|
|
8422
|
+
});
|
|
8423
|
+
|
|
8424
|
+
T['io.flow.payment.gateway.v0.models.payment_method_card_token'] = PropTypes.exact({
|
|
8425
|
+
type: PropTypes.oneOf(['token']).isRequired,
|
|
8426
|
+
token: PropTypes.string.isRequired,
|
|
8427
|
+
});
|
|
8428
|
+
|
|
8429
|
+
T['io.flow.payment.gateway.v0.unions.device_fingerprint_details'] = PropTypes.oneOfType(
|
|
8430
|
+
[T['io.flow.payment.gateway.v0.models.device_fingerprint_details_browser']],
|
|
8431
|
+
);
|
|
8432
|
+
|
|
8433
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_failure'] = PropTypes.exact({
|
|
8434
|
+
type: PropTypes.oneOf(['failure']).isRequired,
|
|
8435
|
+
message: PropTypes.string.isRequired,
|
|
8436
|
+
});
|
|
8437
|
+
|
|
8438
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_success'] = PropTypes.exact({
|
|
8439
|
+
type: PropTypes.oneOf(['success']).isRequired,
|
|
8440
|
+
token: PropTypes.string.isRequired,
|
|
8441
|
+
});
|
|
8442
|
+
|
|
8443
|
+
T['io.flow.payment.gateway.v0.unions.payment_method_data_authorize_applepay_result'] = PropTypes.oneOfType([
|
|
8444
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_success'],
|
|
8445
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay_result_failure'],
|
|
8446
|
+
]);
|
|
8447
|
+
|
|
8448
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_applepay'] = PropTypes.exact({
|
|
8449
|
+
type: PropTypes.oneOf(['authorize_applepay']).isRequired,
|
|
8450
|
+
result: T['io.flow.payment.gateway.v0.unions.payment_method_data_authorize_applepay_result'].isRequired,
|
|
8451
|
+
});
|
|
8452
|
+
|
|
8453
|
+
T['io.flow.payment.gateway.v0.models.payment_method_card_number_cipher'] = PropTypes.exact({
|
|
8454
|
+
type: PropTypes.oneOf(['cipher']).isRequired,
|
|
8455
|
+
cipher: PropTypes.string.isRequired,
|
|
8456
|
+
});
|
|
8457
|
+
|
|
8458
|
+
T['io.flow.payment.gateway.v0.models.payment_method_card_number_cleartext'] = PropTypes.exact({
|
|
8459
|
+
type: PropTypes.oneOf(['cleartext']).isRequired,
|
|
8460
|
+
number: PropTypes.string.isRequired,
|
|
8461
|
+
});
|
|
8462
|
+
|
|
8463
|
+
T['io.flow.payment.gateway.v0.unions.card_number'] = PropTypes.oneOfType([
|
|
8464
|
+
T['io.flow.payment.gateway.v0.models.payment_method_card_number_cleartext'],
|
|
8465
|
+
T['io.flow.payment.gateway.v0.models.payment_method_card_number_cipher'],
|
|
8466
|
+
]);
|
|
8467
|
+
|
|
8468
|
+
T['io.flow.payment.gateway.v0.models.payment_method_card_pci_details'] = PropTypes.exact({
|
|
8469
|
+
type: PropTypes.oneOf(['card_pci_details']).isRequired,
|
|
8470
|
+
card_number: T['io.flow.payment.gateway.v0.unions.card_number'].isRequired,
|
|
8471
|
+
expiration_month: PropTypes.number.isRequired,
|
|
8472
|
+
expiration_year: PropTypes.number.isRequired,
|
|
8473
|
+
name: PropTypes.string.isRequired,
|
|
8474
|
+
});
|
|
8475
|
+
|
|
8476
|
+
T['io.flow.payment.gateway.v0.unions.payment_method_card'] = PropTypes.oneOfType([
|
|
8477
|
+
T['io.flow.payment.gateway.v0.models.payment_method_card_pci_details'],
|
|
8478
|
+
T['io.flow.payment.gateway.v0.models.payment_method_card_token'],
|
|
8479
|
+
]);
|
|
8480
|
+
|
|
8481
|
+
T['io.flow.reference.v0.models.payment_method_image'] = PropTypes.exact({
|
|
8482
|
+
url: PropTypes.string.isRequired,
|
|
8483
|
+
width: PropTypes.number.isRequired,
|
|
8484
|
+
height: PropTypes.number.isRequired,
|
|
8485
|
+
});
|
|
8486
|
+
|
|
8487
|
+
T['io.flow.payment.gateway.v0.enums.payment_failure_code'] = PropTypes.oneOf([
|
|
8488
|
+
'action_expired',
|
|
8489
|
+
'action_cancelled',
|
|
8490
|
+
'action_failed',
|
|
8491
|
+
'authorization_declined',
|
|
8492
|
+
'not_supported',
|
|
8493
|
+
'fraudulent',
|
|
8494
|
+
'error',
|
|
8495
|
+
'payment_checks_declined',
|
|
8496
|
+
]);
|
|
8497
|
+
|
|
8498
|
+
T['io.flow.payment.gateway.v0.models.payment_method_action_cancellation'] = PropTypes.exact({
|
|
8499
|
+
reason_code: T['io.flow.payment.gateway.v0.enums.payment_failure_code'],
|
|
8500
|
+
data: PropTypes.object,
|
|
8501
|
+
});
|
|
8502
|
+
|
|
8503
|
+
T['io.flow.payment.v0.enums.capture_decline_code'] = PropTypes.oneOf(['expired', 'insufficient_funds', 'unknown']);
|
|
8504
|
+
T['io.flow.payment.v0.enums.capture_status'] = PropTypes.oneOf(['initiated', 'pending', 'succeeded', 'failed', 'canceled']);
|
|
8505
|
+
|
|
8506
|
+
T['io.flow.payment.gateway.v0.models.payment_reversal_status'] = PropTypes.exact({
|
|
8507
|
+
status: T['io.flow.payment.v0.enums.reversal_status'].isRequired,
|
|
8508
|
+
reason: T['io.flow.payment.v0.enums.reversal_error_code'],
|
|
8509
|
+
});
|
|
8510
|
+
|
|
8511
|
+
T['io.flow.payment.gateway.v0.models.payment_refund_status'] = PropTypes.exact({
|
|
8512
|
+
status: T['io.flow.payment.v0.enums.refund_status'].isRequired,
|
|
8513
|
+
reason: T['io.flow.payment.v0.enums.refund_decline_code'],
|
|
8514
|
+
});
|
|
8515
|
+
|
|
8516
|
+
T['io.flow.payment.gateway.v0.models.payment_capture_status'] = PropTypes.exact({
|
|
8517
|
+
status: T['io.flow.payment.v0.enums.capture_status'].isRequired,
|
|
8518
|
+
reason: T['io.flow.payment.v0.enums.capture_decline_code'],
|
|
8519
|
+
});
|
|
8520
|
+
|
|
8521
|
+
T['io.flow.payment.gateway.v0.models.payment_reversal'] = PropTypes.exact({
|
|
8522
|
+
id: PropTypes.string.isRequired,
|
|
8523
|
+
amount: PropTypes.number.isRequired,
|
|
8524
|
+
currency: PropTypes.string.isRequired,
|
|
8525
|
+
base_amount: PropTypes.number,
|
|
8526
|
+
base_currency: PropTypes.string,
|
|
8527
|
+
reference: PropTypes.string,
|
|
8528
|
+
created_at: PropTypes.string.isRequired,
|
|
8529
|
+
updated_at: PropTypes.string.isRequired,
|
|
8530
|
+
status: T['io.flow.payment.gateway.v0.models.payment_reversal_status'].isRequired,
|
|
8531
|
+
});
|
|
8532
|
+
|
|
8533
|
+
T['io.flow.payment.gateway.v0.models.payment_refund'] = PropTypes.exact({
|
|
8534
|
+
id: PropTypes.string.isRequired,
|
|
8535
|
+
amount: PropTypes.number.isRequired,
|
|
8536
|
+
currency: PropTypes.string.isRequired,
|
|
8537
|
+
base_amount: PropTypes.number,
|
|
8538
|
+
base_currency: PropTypes.string,
|
|
8539
|
+
reference: PropTypes.string,
|
|
8540
|
+
created_at: PropTypes.string.isRequired,
|
|
8541
|
+
updated_at: PropTypes.string.isRequired,
|
|
8542
|
+
status: T['io.flow.payment.gateway.v0.models.payment_refund_status'].isRequired,
|
|
8543
|
+
});
|
|
8544
|
+
|
|
8545
|
+
T['io.flow.payment.gateway.v0.models.payment_capture'] = PropTypes.exact({
|
|
8546
|
+
id: PropTypes.string.isRequired,
|
|
8547
|
+
amount: PropTypes.number.isRequired,
|
|
8548
|
+
currency: PropTypes.string.isRequired,
|
|
8549
|
+
base_amount: PropTypes.number,
|
|
8550
|
+
base_currency: PropTypes.string,
|
|
8551
|
+
reference: PropTypes.string,
|
|
8552
|
+
created_at: PropTypes.string.isRequired,
|
|
8553
|
+
updated_at: PropTypes.string.isRequired,
|
|
8554
|
+
status: T['io.flow.payment.gateway.v0.models.payment_capture_status'].isRequired,
|
|
8555
|
+
});
|
|
8556
|
+
|
|
8557
|
+
T['io.flow.payment.gateway.v0.models.payment_contact_shipping'] = PropTypes.exact({
|
|
8558
|
+
first_name: PropTypes.string,
|
|
8559
|
+
last_name: PropTypes.string.isRequired,
|
|
8560
|
+
email: PropTypes.string.isRequired,
|
|
8561
|
+
phone: PropTypes.string,
|
|
8562
|
+
});
|
|
8563
|
+
|
|
8564
|
+
T['io.flow.payment.gateway.v0.models.payment_address'] = PropTypes.exact({
|
|
8565
|
+
streets: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8566
|
+
city: PropTypes.string.isRequired,
|
|
8567
|
+
province: PropTypes.string,
|
|
8568
|
+
postal: PropTypes.string,
|
|
8569
|
+
country: PropTypes.string.isRequired,
|
|
8570
|
+
});
|
|
8571
|
+
|
|
8572
|
+
T['io.flow.payment.gateway.v0.models.payment_contact_billing'] = PropTypes.exact({
|
|
8573
|
+
first_name: PropTypes.string,
|
|
8574
|
+
last_name: PropTypes.string.isRequired,
|
|
8575
|
+
company: PropTypes.string,
|
|
8576
|
+
email: PropTypes.string,
|
|
8577
|
+
phone: PropTypes.string,
|
|
8578
|
+
});
|
|
8579
|
+
|
|
8580
|
+
T['io.flow.payment.gateway.v0.models.payment_address_shipping'] = PropTypes.exact({
|
|
8581
|
+
contact: T['io.flow.payment.gateway.v0.models.payment_contact_shipping'].isRequired,
|
|
8582
|
+
location: T['io.flow.payment.gateway.v0.models.payment_address'].isRequired,
|
|
8583
|
+
});
|
|
8584
|
+
|
|
8585
|
+
T['io.flow.payment.gateway.v0.models.payment_address_billing'] = PropTypes.exact({
|
|
8586
|
+
contact: T['io.flow.payment.gateway.v0.models.payment_contact_billing'].isRequired,
|
|
8587
|
+
location: T['io.flow.payment.gateway.v0.models.payment_address'].isRequired,
|
|
8588
|
+
});
|
|
8589
|
+
|
|
8590
|
+
T['io.flow.payment.gateway.v0.models.order_information_flow'] = PropTypes.exact({
|
|
8591
|
+
type: PropTypes.oneOf(['flow']).isRequired,
|
|
8592
|
+
order_number: PropTypes.string.isRequired,
|
|
8593
|
+
billing_address: T['io.flow.payment.gateway.v0.models.payment_address_billing'],
|
|
8594
|
+
});
|
|
8595
|
+
|
|
8596
|
+
T['io.flow.payment.gateway.v0.models.payment_duty'] = PropTypes.exact({
|
|
8597
|
+
amount: PropTypes.number.isRequired,
|
|
8598
|
+
name: PropTypes.string,
|
|
8599
|
+
});
|
|
8600
|
+
|
|
8601
|
+
T['io.flow.payment.gateway.v0.models.payment_tax'] = PropTypes.exact({
|
|
8602
|
+
amount: PropTypes.number.isRequired,
|
|
8603
|
+
name: PropTypes.string,
|
|
8604
|
+
});
|
|
8605
|
+
|
|
8606
|
+
T['io.flow.payment.gateway.v0.models.payment_discount'] = PropTypes.exact({
|
|
8607
|
+
amount: PropTypes.number.isRequired,
|
|
8608
|
+
name: PropTypes.string,
|
|
8609
|
+
code: PropTypes.string,
|
|
8610
|
+
});
|
|
8611
|
+
|
|
8612
|
+
T['io.flow.payment.gateway.v0.models.shipping'] = PropTypes.exact({
|
|
8613
|
+
description: PropTypes.string.isRequired,
|
|
8614
|
+
amount: PropTypes.number.isRequired,
|
|
8615
|
+
tax: T['io.flow.payment.gateway.v0.models.payment_tax'],
|
|
8616
|
+
duty: T['io.flow.payment.gateway.v0.models.payment_duty'],
|
|
8617
|
+
discounts: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_discount']),
|
|
8618
|
+
});
|
|
8619
|
+
|
|
8620
|
+
T['io.flow.payment.gateway.v0.models.payment_order_details_line_item'] = PropTypes.exact({
|
|
8621
|
+
id: PropTypes.string,
|
|
8622
|
+
description: PropTypes.string.isRequired,
|
|
8623
|
+
quantity: PropTypes.number.isRequired,
|
|
8624
|
+
amount: PropTypes.number.isRequired,
|
|
8625
|
+
tax: T['io.flow.payment.gateway.v0.models.payment_tax'],
|
|
8626
|
+
duty: T['io.flow.payment.gateway.v0.models.payment_duty'],
|
|
8627
|
+
product_url: PropTypes.string,
|
|
8628
|
+
image_url: PropTypes.string,
|
|
8629
|
+
category: PropTypes.string,
|
|
8630
|
+
discounts: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_discount']),
|
|
8631
|
+
});
|
|
8632
|
+
|
|
8633
|
+
T['io.flow.payment.gateway.v0.models.order_details'] = PropTypes.exact({
|
|
8634
|
+
line_items: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_order_details_line_item']).isRequired,
|
|
8635
|
+
shipping: T['io.flow.payment.gateway.v0.models.shipping'],
|
|
8636
|
+
discounts: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_discount']),
|
|
8637
|
+
tax: T['io.flow.payment.gateway.v0.models.payment_tax'],
|
|
8638
|
+
duty: T['io.flow.payment.gateway.v0.models.payment_duty'],
|
|
8639
|
+
reference: PropTypes.string,
|
|
8640
|
+
});
|
|
8641
|
+
|
|
8642
|
+
T['io.flow.payment.gateway.v0.models.order_information_details'] = PropTypes.exact({
|
|
8643
|
+
type: PropTypes.oneOf(['details']).isRequired,
|
|
8644
|
+
order_details: T['io.flow.payment.gateway.v0.models.order_details'].isRequired,
|
|
8645
|
+
billing_address: T['io.flow.payment.gateway.v0.models.payment_address_billing'],
|
|
8646
|
+
shipping_address: T['io.flow.payment.gateway.v0.models.payment_address_shipping'],
|
|
8647
|
+
});
|
|
8648
|
+
|
|
8649
|
+
T['io.flow.payment.gateway.v0.models.klarna_payment_category'] = PropTypes.exact({
|
|
8650
|
+
id: PropTypes.string.isRequired,
|
|
8651
|
+
name: PropTypes.string.isRequired,
|
|
8652
|
+
standard_asset_url: PropTypes.string,
|
|
8653
|
+
descriptive_asset_url: PropTypes.string,
|
|
8654
|
+
});
|
|
8655
|
+
|
|
8656
|
+
T['io.flow.google.pay.v0.models.shipping_address_parameters'] = PropTypes.exact({
|
|
8657
|
+
allowedCountryCodes: PropTypes.arrayOf(PropTypes.string),
|
|
8658
|
+
});
|
|
8659
|
+
|
|
8660
|
+
T['io.flow.google.pay.v0.models.transaction_info'] = PropTypes.exact({
|
|
8661
|
+
totalPriceStatus: T['io.flow.google.pay.v0.enums.total_price_status'].isRequired,
|
|
8662
|
+
totalPrice: PropTypes.string,
|
|
8663
|
+
currencyCode: PropTypes.string,
|
|
8664
|
+
});
|
|
8665
|
+
|
|
8666
|
+
T['io.flow.google.pay.v0.models.payment_method'] = PropTypes.exact({
|
|
8667
|
+
type: T['io.flow.google.pay.v0.enums.payment_method_type'].isRequired,
|
|
8668
|
+
parameters: T['io.flow.google.pay.v0.models.card_payment_method_parameters'].isRequired,
|
|
8669
|
+
tokenizationSpecification: T['io.flow.google.pay.v0.models.payment_method_tokenization_specification'].isRequired,
|
|
8670
|
+
});
|
|
8671
|
+
|
|
8672
|
+
T['io.flow.google.pay.v0.models.encrypted_message'] = PropTypes.exact({
|
|
8673
|
+
messageExpiration: PropTypes.string.isRequired,
|
|
8674
|
+
messageId: PropTypes.string.isRequired,
|
|
8675
|
+
paymentMethod: T['io.flow.google.pay.v0.models.payment_method'].isRequired,
|
|
8676
|
+
paymentMethodDetails: T['io.flow.google.pay.v0.models.payment_method_details'].isRequired,
|
|
8677
|
+
});
|
|
8678
|
+
|
|
8679
|
+
T['io.flow.google.pay.v0.models.merchant_info'] = PropTypes.exact({
|
|
8680
|
+
merchantId: PropTypes.string.isRequired,
|
|
8681
|
+
merchantName: PropTypes.string,
|
|
8682
|
+
authJwt: PropTypes.string,
|
|
8683
|
+
});
|
|
8684
|
+
|
|
8685
|
+
T['io.flow.google.pay.v0.models.payment_data_request'] = PropTypes.exact({
|
|
8686
|
+
apiVersion: PropTypes.number.isRequired,
|
|
8687
|
+
apiVersionMinor: PropTypes.number.isRequired,
|
|
8688
|
+
merchantInfo: T['io.flow.google.pay.v0.models.merchant_info'].isRequired,
|
|
8689
|
+
allowedPaymentMethods: PropTypes.arrayOf(T['io.flow.google.pay.v0.models.payment_method']).isRequired,
|
|
8690
|
+
transactionInfo: T['io.flow.google.pay.v0.models.transaction_info'].isRequired,
|
|
8691
|
+
emailRequired: PropTypes.bool,
|
|
8692
|
+
shippingAddressRequired: PropTypes.bool,
|
|
8693
|
+
shippingAddressParameters: T['io.flow.google.pay.v0.models.shipping_address_parameters'],
|
|
8694
|
+
});
|
|
8695
|
+
|
|
8696
|
+
T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'] = PropTypes.exact({
|
|
8697
|
+
email_address: PropTypes.string,
|
|
8698
|
+
family_name: PropTypes.string,
|
|
8699
|
+
given_name: PropTypes.string,
|
|
8700
|
+
phone_number: PropTypes.string,
|
|
8701
|
+
phonetic_familyName: PropTypes.string,
|
|
8702
|
+
phonetic_givenName: PropTypes.string,
|
|
8703
|
+
address_lines: PropTypes.arrayOf(PropTypes.string),
|
|
8704
|
+
locality: PropTypes.string,
|
|
8705
|
+
sub_locality: PropTypes.string,
|
|
8706
|
+
administrative_area: PropTypes.string,
|
|
8707
|
+
sub_administrative_area: PropTypes.string,
|
|
8708
|
+
postal_code: PropTypes.string,
|
|
8709
|
+
country: PropTypes.string,
|
|
8710
|
+
country_code: PropTypes.string,
|
|
8711
|
+
});
|
|
8712
|
+
|
|
8713
|
+
T['io.flow.apple.pay.v0.enums.apple_pay_contact_field'] = PropTypes.oneOf(['email', 'name', 'phone', 'postalAddress', 'phoneticName']);
|
|
8714
|
+
|
|
8715
|
+
T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks'] = PropTypes.oneOf([
|
|
8716
|
+
'amex',
|
|
8717
|
+
'chinaUnionPay',
|
|
8718
|
+
'discover',
|
|
8719
|
+
'jcb',
|
|
8720
|
+
'masterCard',
|
|
8721
|
+
'privateLabel',
|
|
8722
|
+
'visa',
|
|
8723
|
+
]);
|
|
8724
|
+
|
|
8725
|
+
T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'] = PropTypes.oneOf(['shipping', 'delivery', 'storePickup', 'servicePickup']);
|
|
8726
|
+
|
|
8727
|
+
T['io.flow.apple.pay.v0.models.apple_pay_shipping_method'] = PropTypes.exact({
|
|
8728
|
+
label: PropTypes.string.isRequired,
|
|
8729
|
+
detail: PropTypes.string.isRequired,
|
|
8730
|
+
amount: PropTypes.string.isRequired,
|
|
8731
|
+
identifier: PropTypes.string.isRequired,
|
|
8732
|
+
});
|
|
8733
|
+
|
|
8734
|
+
T['io.flow.apple.pay.v0.enums.apple_pay_merchant_capability'] = PropTypes.oneOf(['supports3DS', 'supportsCredit', 'supportsDebit', 'supportsEMV']);
|
|
8735
|
+
|
|
8736
|
+
T['io.flow.apple.pay.v0.models.apple_pay_line_item'] = PropTypes.exact({
|
|
8737
|
+
label: PropTypes.string.isRequired,
|
|
8738
|
+
type: T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'].isRequired,
|
|
8739
|
+
amount: PropTypes.string.isRequired,
|
|
8740
|
+
});
|
|
8741
|
+
|
|
8742
|
+
T['io.flow.apple.pay.v0.models.apple_pay_payment_info'] = PropTypes.exact({
|
|
8743
|
+
total: T['io.flow.apple.pay.v0.models.apple_pay_line_item'].isRequired,
|
|
8744
|
+
line_items: PropTypes.arrayOf(T['io.flow.apple.pay.v0.models.apple_pay_line_item']),
|
|
8745
|
+
country_code: PropTypes.string.isRequired,
|
|
8746
|
+
currency_code: PropTypes.string.isRequired,
|
|
8747
|
+
merchant_capabilities: PropTypes.arrayOf(T['io.flow.apple.pay.v0.enums.apple_pay_merchant_capability']).isRequired,
|
|
8748
|
+
shipping_methods: PropTypes.arrayOf(T['io.flow.apple.pay.v0.models.apple_pay_shipping_method']),
|
|
8749
|
+
shipping_type: T['io.flow.apple.pay.v0.enums.apple_pay_shipping_type'],
|
|
8750
|
+
supported_countries: PropTypes.arrayOf(PropTypes.string),
|
|
8751
|
+
supported_networks: PropTypes.arrayOf(T['io.flow.apple.pay.v0.enums.apple_pay_supported_networks']).isRequired,
|
|
8752
|
+
required_billingContactFields: PropTypes.arrayOf(T['io.flow.apple.pay.v0.enums.apple_pay_contact_field']),
|
|
8753
|
+
required_shippingContactFields: PropTypes.arrayOf(T['io.flow.apple.pay.v0.enums.apple_pay_contact_field']),
|
|
8754
|
+
billing_contact: T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'],
|
|
8755
|
+
shipping_contact: T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'],
|
|
8756
|
+
application_data: PropTypes.string,
|
|
8757
|
+
});
|
|
8758
|
+
|
|
8759
|
+
T['io.flow.payment.gateway.v0.models.adyen_v3_challenge_token'] = PropTypes.exact({
|
|
8760
|
+
type: PropTypes.oneOf(['token']).isRequired,
|
|
8761
|
+
challenge_token: PropTypes.string.isRequired,
|
|
8762
|
+
});
|
|
8763
|
+
|
|
8764
|
+
T['io.flow.payment.gateway.v0.models.adyen_v3_fingerprint_token'] = PropTypes.exact({
|
|
8765
|
+
type: PropTypes.oneOf(['fingerprint']).isRequired,
|
|
8766
|
+
fingerprint_token: PropTypes.string.isRequired,
|
|
8767
|
+
});
|
|
8768
|
+
|
|
8769
|
+
T['io.flow.payment.gateway.v0.unions.sdk_adyen_v3_authentication_token'] = PropTypes.oneOfType([
|
|
8770
|
+
T['io.flow.payment.gateway.v0.models.adyen_v3_fingerprint_token'],
|
|
8771
|
+
T['io.flow.payment.gateway.v0.models.adyen_v3_challenge_token'],
|
|
8772
|
+
]);
|
|
8773
|
+
|
|
8774
|
+
T['io.flow.payment.gateway.v0.unions.payment_method_data_option_logo'] = PropTypes.oneOfType(
|
|
8775
|
+
[T['io.flow.payment.gateway.v0.models.payment_method_data_option_logo_svg']],
|
|
8776
|
+
);
|
|
8777
|
+
|
|
8778
|
+
T['io.flow.payment.gateway.v0.enums.payment_method_data_option_type'] = PropTypes.oneOf(['ideal_issuer_option']);
|
|
8779
|
+
|
|
8780
|
+
T['io.flow.payment.gateway.v0.models.payment_method_data_payment_option'] = PropTypes.exact({
|
|
8781
|
+
id: PropTypes.string.isRequired,
|
|
8782
|
+
name: PropTypes.string.isRequired,
|
|
8783
|
+
logo: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.unions.payment_method_data_option_logo']),
|
|
8784
|
+
});
|
|
8785
|
+
|
|
8786
|
+
T['io.flow.payment.gateway.v0.enums.inline_window_viewport_size'] = PropTypes.oneOf(['xxx_small', 'xx_small', 'x_small', 'small', 'fullscreen', 'responsive']);
|
|
8787
|
+
|
|
8932
8788
|
T['io.flow.return.v0.models.return_source_external_vendor'] = PropTypes.exact({
|
|
8933
8789
|
discriminator: PropTypes.oneOf(['return_source_external_vendor']).isRequired,
|
|
8934
8790
|
key: PropTypes.string.isRequired,
|
|
@@ -9273,14 +9129,6 @@ T['io.flow.internal.v0.models.proof_of_posting_fulfilled'] = PropTypes.exact({
|
|
|
9273
9129
|
label_tracking_summary_id: PropTypes.string.isRequired,
|
|
9274
9130
|
});
|
|
9275
9131
|
|
|
9276
|
-
T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
9277
|
-
T['io.flow.internal.v0.models.proof_of_posting_fulfilled'],
|
|
9278
|
-
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
9279
|
-
T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
|
|
9280
|
-
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
9281
|
-
T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'],
|
|
9282
|
-
]);
|
|
9283
|
-
|
|
9284
9132
|
T['io.flow.internal.v0.models.online_authorization_completed'] = PropTypes.exact({
|
|
9285
9133
|
discriminator: PropTypes.oneOf(['online_authorization_completed']).isRequired,
|
|
9286
9134
|
id: PropTypes.string.isRequired,
|
|
@@ -9380,6 +9228,24 @@ T['io.flow.internal.v0.unions.feature_task_data'] = PropTypes.oneOfType([
|
|
|
9380
9228
|
T['io.flow.internal.v0.models.feature_task_data_sync_organization'],
|
|
9381
9229
|
]);
|
|
9382
9230
|
|
|
9231
|
+
T['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'] = PropTypes.exact({
|
|
9232
|
+
discriminator: PropTypes.oneOf(['all_pending_posted_transactions']).isRequired,
|
|
9233
|
+
account_id: PropTypes.string.isRequired,
|
|
9234
|
+
reason: PropTypes.string.isRequired,
|
|
9235
|
+
});
|
|
9236
|
+
|
|
9237
|
+
T['io.flow.internal.v0.models.explicit_statement_form_transaction_ids'] = PropTypes.exact({
|
|
9238
|
+
discriminator: PropTypes.oneOf(['transaction_ids']).isRequired,
|
|
9239
|
+
account_id: PropTypes.string.isRequired,
|
|
9240
|
+
reason: PropTypes.string.isRequired,
|
|
9241
|
+
transaction_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9242
|
+
});
|
|
9243
|
+
|
|
9244
|
+
T['io.flow.internal.v0.unions.explicit_statement_form'] = PropTypes.oneOfType([
|
|
9245
|
+
T['io.flow.internal.v0.models.explicit_statement_form_transaction_ids'],
|
|
9246
|
+
T['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'],
|
|
9247
|
+
]);
|
|
9248
|
+
|
|
9383
9249
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.exact({
|
|
9384
9250
|
discriminator: PropTypes.oneOf(['tracking_processing_error_deleted']).isRequired,
|
|
9385
9251
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9811,6 +9677,14 @@ T['io.flow.internal.v0.models.fraud_review_deleted'] = PropTypes.exact({
|
|
|
9811
9677
|
id: PropTypes.string.isRequired,
|
|
9812
9678
|
});
|
|
9813
9679
|
|
|
9680
|
+
T['io.flow.internal.v0.models.carrier_fee_deleted'] = PropTypes.exact({
|
|
9681
|
+
discriminator: PropTypes.oneOf(['carrier_fee_deleted']).isRequired,
|
|
9682
|
+
event_id: PropTypes.string.isRequired,
|
|
9683
|
+
timestamp: PropTypes.string.isRequired,
|
|
9684
|
+
organization: PropTypes.string.isRequired,
|
|
9685
|
+
id: PropTypes.string.isRequired,
|
|
9686
|
+
});
|
|
9687
|
+
|
|
9814
9688
|
T['io.flow.internal.v0.models.carrier_charge_deleted'] = PropTypes.exact({
|
|
9815
9689
|
discriminator: PropTypes.oneOf(['carrier_charge_deleted']).isRequired,
|
|
9816
9690
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10345,31 +10219,6 @@ T['io.flow.payment.v0.models.virtual_card_reference'] = PropTypes.exact({
|
|
|
10345
10219
|
id: PropTypes.string.isRequired,
|
|
10346
10220
|
});
|
|
10347
10221
|
|
|
10348
|
-
T['io.flow.internal.v0.models.virtual_card_provider'] = PropTypes.exact({
|
|
10349
|
-
id: PropTypes.string.isRequired,
|
|
10350
|
-
organization_id: PropTypes.string.isRequired,
|
|
10351
|
-
provider: PropTypes.string.isRequired,
|
|
10352
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
10353
|
-
created_at: PropTypes.string.isRequired,
|
|
10354
|
-
updated_at: PropTypes.string.isRequired,
|
|
10355
|
-
});
|
|
10356
|
-
|
|
10357
|
-
T['io.flow.internal.v0.models.virtual_card_provider_upserted'] = PropTypes.exact({
|
|
10358
|
-
discriminator: PropTypes.oneOf(['virtual_card_provider_upserted']).isRequired,
|
|
10359
|
-
event_id: PropTypes.string.isRequired,
|
|
10360
|
-
timestamp: PropTypes.string.isRequired,
|
|
10361
|
-
id: PropTypes.string.isRequired,
|
|
10362
|
-
provider: T['io.flow.internal.v0.models.virtual_card_provider'].isRequired,
|
|
10363
|
-
});
|
|
10364
|
-
|
|
10365
|
-
T['io.flow.internal.v0.models.virtual_card_provider_deleted'] = PropTypes.exact({
|
|
10366
|
-
discriminator: PropTypes.oneOf(['virtual_card_provider_deleted']).isRequired,
|
|
10367
|
-
event_id: PropTypes.string.isRequired,
|
|
10368
|
-
timestamp: PropTypes.string.isRequired,
|
|
10369
|
-
id: PropTypes.string.isRequired,
|
|
10370
|
-
provider: T['io.flow.internal.v0.models.virtual_card_provider'].isRequired,
|
|
10371
|
-
});
|
|
10372
|
-
|
|
10373
10222
|
T['io.flow.internal.v0.models.checkout_platform_data'] = PropTypes.exact({
|
|
10374
10223
|
order_number: PropTypes.string,
|
|
10375
10224
|
});
|
|
@@ -10552,38 +10401,6 @@ T['io.flow.internal.v0.models.svitlana_item_upserted'] = PropTypes.exact({
|
|
|
10552
10401
|
item: T['io.flow.internal.v0.models.svitlana_item'].isRequired,
|
|
10553
10402
|
});
|
|
10554
10403
|
|
|
10555
|
-
T['io.flow.internal.v0.models.svb_virtual_card_clearing'] = PropTypes.exact({
|
|
10556
|
-
id: PropTypes.string.isRequired,
|
|
10557
|
-
virtual_card_id: PropTypes.string.isRequired,
|
|
10558
|
-
number: PropTypes.string.isRequired,
|
|
10559
|
-
amount: PropTypes.number.isRequired,
|
|
10560
|
-
currency: PropTypes.string.isRequired,
|
|
10561
|
-
date: PropTypes.string.isRequired,
|
|
10562
|
-
clearing_type: PropTypes.string.isRequired,
|
|
10563
|
-
exchange_rate: PropTypes.string.isRequired,
|
|
10564
|
-
mcc: PropTypes.string.isRequired,
|
|
10565
|
-
mcc_description: PropTypes.string.isRequired,
|
|
10566
|
-
merchant_amount: PropTypes.number.isRequired,
|
|
10567
|
-
merchant_currency: PropTypes.string.isRequired,
|
|
10568
|
-
merchant_id: PropTypes.string.isRequired,
|
|
10569
|
-
merchant_name: PropTypes.string.isRequired,
|
|
10570
|
-
settlement_date: PropTypes.string.isRequired,
|
|
10571
|
-
});
|
|
10572
|
-
|
|
10573
|
-
T['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted'] = PropTypes.exact({
|
|
10574
|
-
discriminator: PropTypes.oneOf(['svb_virtual_card_clearing_upserted']).isRequired,
|
|
10575
|
-
event_id: PropTypes.string.isRequired,
|
|
10576
|
-
timestamp: PropTypes.string.isRequired,
|
|
10577
|
-
svb_virtual_card_clearing: T['io.flow.internal.v0.models.svb_virtual_card_clearing'].isRequired,
|
|
10578
|
-
});
|
|
10579
|
-
|
|
10580
|
-
T['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'] = PropTypes.exact({
|
|
10581
|
-
discriminator: PropTypes.oneOf(['svb_virtual_card_clearing_deleted']).isRequired,
|
|
10582
|
-
event_id: PropTypes.string.isRequired,
|
|
10583
|
-
timestamp: PropTypes.string.isRequired,
|
|
10584
|
-
svb_virtual_card_clearing: T['io.flow.internal.v0.models.svb_virtual_card_clearing'].isRequired,
|
|
10585
|
-
});
|
|
10586
|
-
|
|
10587
10404
|
T['io.flow.internal.v0.models.label_aliases'] = PropTypes.exact({
|
|
10588
10405
|
name: PropTypes.string.isRequired,
|
|
10589
10406
|
aliases: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -10821,7 +10638,7 @@ T['io.flow.internal.v0.models.spot_rate_upserted'] = PropTypes.exact({
|
|
|
10821
10638
|
spot_rate: T['io.flow.internal.v0.models.spot_rate'].isRequired,
|
|
10822
10639
|
});
|
|
10823
10640
|
|
|
10824
|
-
T['io.flow.internal.v0.enums.snooze_source_type'] = PropTypes.oneOf(['task']);
|
|
10641
|
+
T['io.flow.internal.v0.enums.snooze_source_type'] = PropTypes.oneOf(['task', 'invariant']);
|
|
10825
10642
|
|
|
10826
10643
|
T['io.flow.internal.v0.models.snooze_source'] = PropTypes.exact({
|
|
10827
10644
|
type: T['io.flow.internal.v0.enums.snooze_source_type'].isRequired,
|
|
@@ -11194,6 +11011,7 @@ T['io.flow.shopify.markets.v0.enums.shopify_webhook_topic'] = PropTypes.oneOf([
|
|
|
11194
11011
|
'themes/publish',
|
|
11195
11012
|
'themes/update',
|
|
11196
11013
|
'bulk_operations/finish',
|
|
11014
|
+
'shop/update',
|
|
11197
11015
|
]);
|
|
11198
11016
|
|
|
11199
11017
|
T['io.flow.shopify.markets.v0.models.shopify_webhook_request'] = PropTypes.exact({
|
|
@@ -11280,6 +11098,57 @@ T['io.flow.internal.v0.models.shopify_markets_shop_statistics_upserted'] = PropT
|
|
|
11280
11098
|
shopify_markets_shop_statistics: T['io.flow.internal.v0.models.shopify_shop_statistics'].isRequired,
|
|
11281
11099
|
});
|
|
11282
11100
|
|
|
11101
|
+
T['io.flow.shopify.external.v0.enums.shopify_plan_name'] = PropTypes.oneOf([
|
|
11102
|
+
'basic',
|
|
11103
|
+
'business',
|
|
11104
|
+
'cancelled',
|
|
11105
|
+
'dormant',
|
|
11106
|
+
'enterprise',
|
|
11107
|
+
'fraudulent',
|
|
11108
|
+
'frozen',
|
|
11109
|
+
'npo_full',
|
|
11110
|
+
'npo_lite',
|
|
11111
|
+
'open_learning',
|
|
11112
|
+
'paid_trial',
|
|
11113
|
+
'professional',
|
|
11114
|
+
'retail',
|
|
11115
|
+
'shopify_alumni',
|
|
11116
|
+
'shopify_plus',
|
|
11117
|
+
'staff',
|
|
11118
|
+
'staff_business',
|
|
11119
|
+
'starter',
|
|
11120
|
+
'starter_2022',
|
|
11121
|
+
'unlimited',
|
|
11122
|
+
]);
|
|
11123
|
+
|
|
11124
|
+
T['io.flow.shopify.external.v0.models.shopify_shop_update'] = PropTypes.exact({
|
|
11125
|
+
id: PropTypes.number.isRequired,
|
|
11126
|
+
plan_display_name: PropTypes.string.isRequired,
|
|
11127
|
+
plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'].isRequired,
|
|
11128
|
+
});
|
|
11129
|
+
|
|
11130
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_form'] = PropTypes.exact({
|
|
11131
|
+
shop: PropTypes.string.isRequired,
|
|
11132
|
+
domain: PropTypes.string.isRequired,
|
|
11133
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
11134
|
+
shared_secret: PropTypes.string.isRequired,
|
|
11135
|
+
api_key: PropTypes.string,
|
|
11136
|
+
api_password: PropTypes.string,
|
|
11137
|
+
access_token: PropTypes.string,
|
|
11138
|
+
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
11139
|
+
});
|
|
11140
|
+
|
|
11141
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_form'] = PropTypes.exact({
|
|
11142
|
+
shop: PropTypes.string.isRequired,
|
|
11143
|
+
domain: PropTypes.string.isRequired,
|
|
11144
|
+
myshopify_domain: PropTypes.string.isRequired,
|
|
11145
|
+
shared_secret: PropTypes.string.isRequired,
|
|
11146
|
+
api_key: PropTypes.string,
|
|
11147
|
+
api_password: PropTypes.string,
|
|
11148
|
+
access_token: PropTypes.string,
|
|
11149
|
+
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
11150
|
+
});
|
|
11151
|
+
|
|
11283
11152
|
T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'] = PropTypes.exact({
|
|
11284
11153
|
total_order_count: PropTypes.number.isRequired,
|
|
11285
11154
|
});
|
|
@@ -11908,6 +11777,7 @@ T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
|
11908
11777
|
'trueup_overview',
|
|
11909
11778
|
'non_channel_payment_bank_account',
|
|
11910
11779
|
'scheduled_payment',
|
|
11780
|
+
'account_quarterly_balances',
|
|
11911
11781
|
]);
|
|
11912
11782
|
|
|
11913
11783
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -13081,6 +12951,7 @@ T['io.flow.organization.onboarding.state.v0.models.merchant_disabled'] = PropTyp
|
|
|
13081
12951
|
T['io.flow.organization.onboarding.state.v0.models.merchant_deactivated'] = PropTypes.exact({
|
|
13082
12952
|
discriminator: PropTypes.oneOf(['merchant_deactivated']).isRequired,
|
|
13083
12953
|
reason: PropTypes.string.isRequired,
|
|
12954
|
+
deactivate_at: PropTypes.string,
|
|
13084
12955
|
});
|
|
13085
12956
|
|
|
13086
12957
|
T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTypes.exact({
|
|
@@ -13886,7 +13757,6 @@ T['io.flow.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
|
13886
13757
|
currency: PropTypes.string,
|
|
13887
13758
|
description: PropTypes.string.isRequired,
|
|
13888
13759
|
category: T['io.flow.internal.v0.enums.manual_transaction_category'],
|
|
13889
|
-
posted_at: PropTypes.string,
|
|
13890
13760
|
order: T['io.flow.internal.v0.models.manual_transaction_form_order'],
|
|
13891
13761
|
original_transaction_id: PropTypes.string,
|
|
13892
13762
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
@@ -13907,6 +13777,16 @@ T['io.flow.internal.v0.models.loyalty_program_message'] = PropTypes.exact({
|
|
|
13907
13777
|
content: PropTypes.string.isRequired,
|
|
13908
13778
|
});
|
|
13909
13779
|
|
|
13780
|
+
T['io.flow.internal.v0.enums.logistics_capability'] = PropTypes.oneOf(['logistics_address_correction']);
|
|
13781
|
+
|
|
13782
|
+
T['io.flow.internal.v0.models.logistics_capabilities_form'] = PropTypes.exact({
|
|
13783
|
+
capabilities: PropTypes.arrayOf(T['io.flow.internal.v0.enums.logistics_capability']).isRequired,
|
|
13784
|
+
});
|
|
13785
|
+
|
|
13786
|
+
T['io.flow.internal.v0.models.logistics_capabilities'] = PropTypes.exact({
|
|
13787
|
+
capabilities: PropTypes.arrayOf(T['io.flow.internal.v0.enums.logistics_capability']).isRequired,
|
|
13788
|
+
});
|
|
13789
|
+
|
|
13910
13790
|
T['io.flow.currency.v0.models.rate'] = PropTypes.exact({
|
|
13911
13791
|
id: PropTypes.string.isRequired,
|
|
13912
13792
|
base: PropTypes.string.isRequired,
|
|
@@ -14258,6 +14138,17 @@ T['io.flow.billing.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
|
14258
14138
|
per_weight_unit: PropTypes.number,
|
|
14259
14139
|
});
|
|
14260
14140
|
|
|
14141
|
+
T['io.flow.billing.v0.models.transaction_metadata_carrier_fee_data'] = PropTypes.exact({
|
|
14142
|
+
surcharges: PropTypes.arrayOf(T['io.flow.billing.v0.models.trueup_label_surcharge']).isRequired,
|
|
14143
|
+
});
|
|
14144
|
+
|
|
14145
|
+
T['io.flow.billing.v0.models.transaction_metadata_carrier_fee'] = PropTypes.exact({
|
|
14146
|
+
discriminator: PropTypes.oneOf(['carrier_fee']).isRequired,
|
|
14147
|
+
outbound: T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'].isRequired,
|
|
14148
|
+
estimate: T['io.flow.billing.v0.models.transaction_metadata_carrier_fee_data'].isRequired,
|
|
14149
|
+
actual: T['io.flow.billing.v0.models.transaction_metadata_carrier_fee_data'].isRequired,
|
|
14150
|
+
});
|
|
14151
|
+
|
|
14261
14152
|
T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
14262
14153
|
|
|
14263
14154
|
T['io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_summary_cost'] = PropTypes.exact({
|
|
@@ -14588,6 +14479,7 @@ T['io.flow.payment.gateway.v0.models.payment_method_data_authorize_card'] = Prop
|
|
|
14588
14479
|
device_fingerprint_details: T['io.flow.payment.gateway.v0.unions.device_fingerprint_details'].isRequired,
|
|
14589
14480
|
cvv: PropTypes.string,
|
|
14590
14481
|
stored_details_card: T['io.flow.payment.gateway.v0.unions.payment_method_stored_details_card'],
|
|
14482
|
+
reference: PropTypes.string,
|
|
14591
14483
|
});
|
|
14592
14484
|
|
|
14593
14485
|
T['io.flow.payment.gateway.v0.unions.payment_method_data'] = PropTypes.oneOfType([
|
|
@@ -14996,6 +14888,12 @@ T['io.flow.internal.v0.models.fx_revenue_recognition_account_rate'] = PropTypes.
|
|
|
14996
14888
|
|
|
14997
14889
|
T['io.flow.common.v0.enums.merchant_of_record'] = PropTypes.oneOf(['flow', 'organization']);
|
|
14998
14890
|
|
|
14891
|
+
T['io.flow.billing.csv.v0.models.billing_csv_order_with_mor_summary'] = PropTypes.exact({
|
|
14892
|
+
number: PropTypes.string.isRequired,
|
|
14893
|
+
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
14894
|
+
identifiers: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
14895
|
+
});
|
|
14896
|
+
|
|
14999
14897
|
T['io.flow.payment.gateway.v0.models.payment_payment_method'] = PropTypes.exact({
|
|
15000
14898
|
id: PropTypes.string.isRequired,
|
|
15001
14899
|
name: PropTypes.string.isRequired,
|
|
@@ -15082,6 +14980,7 @@ T['io.flow.payment.gateway.v0.models.payment_authorization'] = PropTypes.exact({
|
|
|
15082
14980
|
currency: PropTypes.string.isRequired,
|
|
15083
14981
|
base_amount: PropTypes.number,
|
|
15084
14982
|
base_currency: PropTypes.string,
|
|
14983
|
+
reference: PropTypes.string,
|
|
15085
14984
|
});
|
|
15086
14985
|
|
|
15087
14986
|
T['io.flow.payment.gateway.v0.models.payment_information'] = PropTypes.exact({
|
|
@@ -15094,12 +14993,6 @@ T['io.flow.payment.gateway.v0.models.payment_information'] = PropTypes.exact({
|
|
|
15094
14993
|
authorizations: PropTypes.arrayOf(T['io.flow.payment.gateway.v0.models.payment_authorization']).isRequired,
|
|
15095
14994
|
});
|
|
15096
14995
|
|
|
15097
|
-
T['io.flow.billing.csv.v0.models.billing_csv_order_with_mor_summary'] = PropTypes.exact({
|
|
15098
|
-
number: PropTypes.string.isRequired,
|
|
15099
|
-
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
15100
|
-
identifiers: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
15101
|
-
});
|
|
15102
|
-
|
|
15103
14996
|
T['io.flow.internal.v0.models.fx_revenue_recognition_order'] = PropTypes.exact({
|
|
15104
14997
|
number: PropTypes.string.isRequired,
|
|
15105
14998
|
submitted_at: PropTypes.string.isRequired,
|
|
@@ -15305,122 +15198,6 @@ T['io.flow.internal.v0.models.shopper_summary'] = PropTypes.exact({
|
|
|
15305
15198
|
total: PropTypes.number.isRequired,
|
|
15306
15199
|
});
|
|
15307
15200
|
|
|
15308
|
-
T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
15309
|
-
'millimeter',
|
|
15310
|
-
'centimeter',
|
|
15311
|
-
'inch',
|
|
15312
|
-
'foot',
|
|
15313
|
-
'cubic_inch',
|
|
15314
|
-
'cubic_meter',
|
|
15315
|
-
'gram',
|
|
15316
|
-
'kilogram',
|
|
15317
|
-
'meter',
|
|
15318
|
-
'ounce',
|
|
15319
|
-
'pound',
|
|
15320
|
-
]);
|
|
15321
|
-
|
|
15322
|
-
T['io.flow.ratecard.v0.models.fuel_surcharge_by_weight'] = PropTypes.exact({
|
|
15323
|
-
discriminator: PropTypes.oneOf(['fuel_surcharge_by_weight']).isRequired,
|
|
15324
|
-
amount: PropTypes.number.isRequired,
|
|
15325
|
-
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
15326
|
-
});
|
|
15327
|
-
|
|
15328
|
-
T['io.flow.ratecard.v0.unions.fuel_surcharge_rate'] = PropTypes.oneOfType([
|
|
15329
|
-
T['io.flow.ratecard.v0.models.fuel_surcharge_percent'],
|
|
15330
|
-
T['io.flow.ratecard.v0.models.fuel_surcharge_by_weight'],
|
|
15331
|
-
]);
|
|
15332
|
-
|
|
15333
|
-
T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
|
|
15334
|
-
value: PropTypes.string.isRequired,
|
|
15335
|
-
units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
15336
|
-
});
|
|
15337
|
-
|
|
15338
|
-
T['io.flow.fulfillment.v0.models.option_weight_estimates'] = PropTypes.exact({
|
|
15339
|
-
gravitational: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
15340
|
-
dimensional: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
15341
|
-
});
|
|
15342
|
-
|
|
15343
|
-
T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
|
|
15344
|
-
depth: T['io.flow.common.v0.models.measurement'],
|
|
15345
|
-
diameter: T['io.flow.common.v0.models.measurement'],
|
|
15346
|
-
length: T['io.flow.common.v0.models.measurement'],
|
|
15347
|
-
weight: T['io.flow.common.v0.models.measurement'],
|
|
15348
|
-
width: T['io.flow.common.v0.models.measurement'],
|
|
15349
|
-
});
|
|
15350
|
-
|
|
15351
|
-
T['io.flow.shopify.merchant.config.v0.models.package_dimensions_form'] = PropTypes.exact({
|
|
15352
|
-
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
15353
|
-
});
|
|
15354
|
-
|
|
15355
|
-
T['io.flow.shopify.merchant.config.v0.models.package_dimensions'] = PropTypes.exact({
|
|
15356
|
-
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
15357
|
-
});
|
|
15358
|
-
|
|
15359
|
-
T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTypes.exact({
|
|
15360
|
-
discriminator: PropTypes.oneOf(['single_package_shipping_notification_form']).isRequired,
|
|
15361
|
-
fulfillment_key: PropTypes.string.isRequired,
|
|
15362
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
15363
|
-
package_dimensions: T['io.flow.common.v0.models.dimension'],
|
|
15364
|
-
service: PropTypes.string,
|
|
15365
|
-
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
15366
|
-
});
|
|
15367
|
-
|
|
15368
|
-
T['io.flow.ratecard.v0.models.estimated_dimensions'] = PropTypes.exact({
|
|
15369
|
-
depth: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
15370
|
-
length: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
15371
|
-
weight: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
15372
|
-
width: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
15373
|
-
});
|
|
15374
|
-
|
|
15375
|
-
T['io.flow.ratecard.v0.models.dimension_estimate_form'] = PropTypes.exact({
|
|
15376
|
-
q: PropTypes.string.isRequired,
|
|
15377
|
-
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
15378
|
-
position: PropTypes.number,
|
|
15379
|
-
});
|
|
15380
|
-
|
|
15381
|
-
T['io.flow.ratecard.v0.models.dimension_estimate'] = PropTypes.exact({
|
|
15382
|
-
id: PropTypes.string.isRequired,
|
|
15383
|
-
q: PropTypes.string.isRequired,
|
|
15384
|
-
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
15385
|
-
position: PropTypes.number.isRequired,
|
|
15386
|
-
});
|
|
15387
|
-
|
|
15388
|
-
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'] = PropTypes.exact({
|
|
15389
|
-
discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_upserted']).isRequired,
|
|
15390
|
-
event_id: PropTypes.string.isRequired,
|
|
15391
|
-
timestamp: PropTypes.string.isRequired,
|
|
15392
|
-
organization: PropTypes.string.isRequired,
|
|
15393
|
-
estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
|
|
15394
|
-
});
|
|
15395
|
-
|
|
15396
|
-
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'] = PropTypes.exact({
|
|
15397
|
-
discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_deleted']).isRequired,
|
|
15398
|
-
event_id: PropTypes.string.isRequired,
|
|
15399
|
-
timestamp: PropTypes.string.isRequired,
|
|
15400
|
-
organization: PropTypes.string.isRequired,
|
|
15401
|
-
estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
|
|
15402
|
-
});
|
|
15403
|
-
|
|
15404
|
-
T['io.flow.internal.v0.models.item_dimension_estimate'] = PropTypes.exact({
|
|
15405
|
-
id: PropTypes.string.isRequired,
|
|
15406
|
-
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
15407
|
-
q: PropTypes.string.isRequired,
|
|
15408
|
-
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
15409
|
-
});
|
|
15410
|
-
|
|
15411
|
-
T['io.flow.internal.v0.models.item_dimension_estimate_upserted_v2'] = PropTypes.exact({
|
|
15412
|
-
discriminator: PropTypes.oneOf(['item_dimension_estimate_upserted_v2']).isRequired,
|
|
15413
|
-
event_id: PropTypes.string.isRequired,
|
|
15414
|
-
timestamp: PropTypes.string.isRequired,
|
|
15415
|
-
organization: PropTypes.string.isRequired,
|
|
15416
|
-
estimate: T['io.flow.internal.v0.models.item_dimension_estimate'].isRequired,
|
|
15417
|
-
});
|
|
15418
|
-
|
|
15419
|
-
T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
|
|
15420
|
-
weight: PropTypes.number.isRequired,
|
|
15421
|
-
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
15422
|
-
});
|
|
15423
|
-
|
|
15424
15201
|
T['io.flow.internal.v0.enums.ftp_intent'] = PropTypes.oneOf([
|
|
15425
15202
|
'orders_from_flow',
|
|
15426
15203
|
'pricebooks_from_flow',
|
|
@@ -16497,6 +16274,134 @@ T['io.flow.internal.v0.models.discount_request_form'] = PropTypes.exact({
|
|
|
16497
16274
|
order_form: T['io.flow.internal.v0.models.discount_request_order_form'],
|
|
16498
16275
|
});
|
|
16499
16276
|
|
|
16277
|
+
T['io.flow.common.v0.enums.unit_of_measurement'] = PropTypes.oneOf([
|
|
16278
|
+
'millimeter',
|
|
16279
|
+
'centimeter',
|
|
16280
|
+
'inch',
|
|
16281
|
+
'foot',
|
|
16282
|
+
'cubic_inch',
|
|
16283
|
+
'cubic_meter',
|
|
16284
|
+
'gram',
|
|
16285
|
+
'kilogram',
|
|
16286
|
+
'meter',
|
|
16287
|
+
'ounce',
|
|
16288
|
+
'pound',
|
|
16289
|
+
]);
|
|
16290
|
+
|
|
16291
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_by_weight'] = PropTypes.exact({
|
|
16292
|
+
discriminator: PropTypes.oneOf(['fuel_surcharge_by_weight']).isRequired,
|
|
16293
|
+
amount: PropTypes.number.isRequired,
|
|
16294
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
16295
|
+
});
|
|
16296
|
+
|
|
16297
|
+
T['io.flow.ratecard.v0.unions.fuel_surcharge_rate'] = PropTypes.oneOfType([
|
|
16298
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_percent'],
|
|
16299
|
+
T['io.flow.ratecard.v0.models.fuel_surcharge_by_weight'],
|
|
16300
|
+
]);
|
|
16301
|
+
|
|
16302
|
+
T['io.flow.common.v0.models.measurement'] = PropTypes.exact({
|
|
16303
|
+
value: PropTypes.string.isRequired,
|
|
16304
|
+
units: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
16305
|
+
});
|
|
16306
|
+
|
|
16307
|
+
T['io.flow.fulfillment.v0.models.option_weight_estimates'] = PropTypes.exact({
|
|
16308
|
+
gravitational: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
16309
|
+
dimensional: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
16310
|
+
});
|
|
16311
|
+
|
|
16312
|
+
T['io.flow.common.v0.models.dimension'] = PropTypes.exact({
|
|
16313
|
+
depth: T['io.flow.common.v0.models.measurement'],
|
|
16314
|
+
diameter: T['io.flow.common.v0.models.measurement'],
|
|
16315
|
+
length: T['io.flow.common.v0.models.measurement'],
|
|
16316
|
+
weight: T['io.flow.common.v0.models.measurement'],
|
|
16317
|
+
width: T['io.flow.common.v0.models.measurement'],
|
|
16318
|
+
});
|
|
16319
|
+
|
|
16320
|
+
T['io.flow.shopify.merchant.config.v0.models.package_dimensions_form'] = PropTypes.exact({
|
|
16321
|
+
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
16322
|
+
});
|
|
16323
|
+
|
|
16324
|
+
T['io.flow.shopify.merchant.config.v0.models.package_dimensions'] = PropTypes.exact({
|
|
16325
|
+
dimensions: PropTypes.arrayOf(T['io.flow.common.v0.models.dimension']).isRequired,
|
|
16326
|
+
});
|
|
16327
|
+
|
|
16328
|
+
T['io.flow.label.v0.models.single_package_shipping_notification_form'] = PropTypes.exact({
|
|
16329
|
+
discriminator: PropTypes.oneOf(['single_package_shipping_notification_form']).isRequired,
|
|
16330
|
+
fulfillment_key: PropTypes.string.isRequired,
|
|
16331
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
16332
|
+
package_dimensions: T['io.flow.common.v0.models.dimension'],
|
|
16333
|
+
service: PropTypes.string,
|
|
16334
|
+
shipment_recipient: T['io.flow.label.v0.enums.shipment_recipient'],
|
|
16335
|
+
});
|
|
16336
|
+
|
|
16337
|
+
T['io.flow.ratecard.v0.models.estimated_dimensions'] = PropTypes.exact({
|
|
16338
|
+
depth: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
16339
|
+
length: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
16340
|
+
weight: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
16341
|
+
width: T['io.flow.common.v0.models.measurement'].isRequired,
|
|
16342
|
+
});
|
|
16343
|
+
|
|
16344
|
+
T['io.flow.ratecard.v0.models.dimension_estimate_form'] = PropTypes.exact({
|
|
16345
|
+
q: PropTypes.string.isRequired,
|
|
16346
|
+
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
16347
|
+
position: PropTypes.number,
|
|
16348
|
+
});
|
|
16349
|
+
|
|
16350
|
+
T['io.flow.ratecard.v0.models.dimension_estimate'] = PropTypes.exact({
|
|
16351
|
+
id: PropTypes.string.isRequired,
|
|
16352
|
+
q: PropTypes.string.isRequired,
|
|
16353
|
+
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
16354
|
+
position: PropTypes.number.isRequired,
|
|
16355
|
+
});
|
|
16356
|
+
|
|
16357
|
+
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'] = PropTypes.exact({
|
|
16358
|
+
discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_upserted']).isRequired,
|
|
16359
|
+
event_id: PropTypes.string.isRequired,
|
|
16360
|
+
timestamp: PropTypes.string.isRequired,
|
|
16361
|
+
organization: PropTypes.string.isRequired,
|
|
16362
|
+
estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
|
|
16363
|
+
});
|
|
16364
|
+
|
|
16365
|
+
T['io.flow.internal.v0.models.ratecard_dimension_estimate_deleted'] = PropTypes.exact({
|
|
16366
|
+
discriminator: PropTypes.oneOf(['ratecard_dimension_estimate_deleted']).isRequired,
|
|
16367
|
+
event_id: PropTypes.string.isRequired,
|
|
16368
|
+
timestamp: PropTypes.string.isRequired,
|
|
16369
|
+
organization: PropTypes.string.isRequired,
|
|
16370
|
+
estimate: T['io.flow.ratecard.v0.models.dimension_estimate'].isRequired,
|
|
16371
|
+
});
|
|
16372
|
+
|
|
16373
|
+
T['io.flow.internal.v0.models.item_dimension_estimate'] = PropTypes.exact({
|
|
16374
|
+
id: PropTypes.string.isRequired,
|
|
16375
|
+
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
16376
|
+
q: PropTypes.string.isRequired,
|
|
16377
|
+
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
16378
|
+
});
|
|
16379
|
+
|
|
16380
|
+
T['io.flow.internal.v0.models.item_dimension_estimate_upserted_v2'] = PropTypes.exact({
|
|
16381
|
+
discriminator: PropTypes.oneOf(['item_dimension_estimate_upserted_v2']).isRequired,
|
|
16382
|
+
event_id: PropTypes.string.isRequired,
|
|
16383
|
+
timestamp: PropTypes.string.isRequired,
|
|
16384
|
+
organization: PropTypes.string.isRequired,
|
|
16385
|
+
estimate: T['io.flow.internal.v0.models.item_dimension_estimate'].isRequired,
|
|
16386
|
+
});
|
|
16387
|
+
|
|
16388
|
+
T['io.flow.ratecard.v0.models.fee_weight'] = PropTypes.exact({
|
|
16389
|
+
weight: PropTypes.number.isRequired,
|
|
16390
|
+
unit: T['io.flow.common.v0.enums.unit_of_measurement'].isRequired,
|
|
16391
|
+
});
|
|
16392
|
+
|
|
16393
|
+
T['io.flow.internal.v0.models.dimension_estimate_ops_input'] = PropTypes.exact({
|
|
16394
|
+
organization_id: PropTypes.string.isRequired,
|
|
16395
|
+
length_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
16396
|
+
length_val: PropTypes.string,
|
|
16397
|
+
width_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
16398
|
+
width_val: PropTypes.string,
|
|
16399
|
+
depth_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
16400
|
+
depth_val: PropTypes.string,
|
|
16401
|
+
weight_unit: T['io.flow.common.v0.enums.unit_of_measurement'],
|
|
16402
|
+
weight_val: PropTypes.string,
|
|
16403
|
+
});
|
|
16404
|
+
|
|
16500
16405
|
T['io.flow.common.v0.models.experience_summary'] = PropTypes.exact({
|
|
16501
16406
|
id: PropTypes.string.isRequired,
|
|
16502
16407
|
key: PropTypes.string.isRequired,
|
|
@@ -16549,8 +16454,6 @@ T['io.flow.billing.v0.enums.pending_payout_transaction_reason_code'] = PropTypes
|
|
|
16549
16454
|
'waiting_for_positive_account_balance',
|
|
16550
16455
|
]);
|
|
16551
16456
|
|
|
16552
|
-
T['io.flow.internal.v0.enums.main_transaction_status'] = PropTypes.oneOf(['scheduled', 'pending_proof']);
|
|
16553
|
-
|
|
16554
16457
|
T['io.flow.internal.v0.models.debug_order_transaction_form_order_identifier'] = PropTypes.exact({
|
|
16555
16458
|
key: PropTypes.string,
|
|
16556
16459
|
value: PropTypes.string,
|
|
@@ -16665,6 +16568,8 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16665
16568
|
'capture_transactions_total',
|
|
16666
16569
|
'carrier_charge_transactions_count',
|
|
16667
16570
|
'carrier_charge_transactions_total',
|
|
16571
|
+
'carrier_fee_transactions_count',
|
|
16572
|
+
'carrier_fee_transactions_total',
|
|
16668
16573
|
'channel_transactions_processing_count',
|
|
16669
16574
|
'channel_transactions_processing_total',
|
|
16670
16575
|
'channel_transactions_adjustment_count',
|
|
@@ -16681,6 +16586,8 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16681
16586
|
'fully_subsidized_order_transactions_total',
|
|
16682
16587
|
'billable_label_transactions_count',
|
|
16683
16588
|
'billable_label_transactions_count_for_unique_orders',
|
|
16589
|
+
'billable_label_transactions_count_with_revenue_share',
|
|
16590
|
+
'billable_label_transactions_count_without_revenue_share',
|
|
16684
16591
|
'billable_label_transactions_total',
|
|
16685
16592
|
'revenue_share_label_transactions_count',
|
|
16686
16593
|
'revenue_share_label_transactions_count_for_unique_orders',
|
|
@@ -16757,6 +16664,9 @@ T['io.flow.internal.v0.enums.billing_metric_key'] = PropTypes.oneOf([
|
|
|
16757
16664
|
'accounts_with_final_statements_count',
|
|
16758
16665
|
'accounts_with_final_statements_pending_transaction_count',
|
|
16759
16666
|
'accounts_with_final_statements_pending_transaction_total',
|
|
16667
|
+
'orders_wyol_then_label_count',
|
|
16668
|
+
'orders_wyol_then_label_tax_subsidized_total',
|
|
16669
|
+
'orders_wyol_then_label_duty_subsidized_total',
|
|
16760
16670
|
]);
|
|
16761
16671
|
|
|
16762
16672
|
T['io.flow.internal.v0.models.daily_value'] = PropTypes.exact({
|
|
@@ -18512,6 +18422,7 @@ T['io.flow.internal.v0.enums.charge_input_type'] = PropTypes.oneOf([
|
|
|
18512
18422
|
'customs_clearance_surcharge',
|
|
18513
18423
|
'security_surcharge',
|
|
18514
18424
|
'duties_fx_surcharge',
|
|
18425
|
+
'electronic_export_information_surcharge',
|
|
18515
18426
|
]);
|
|
18516
18427
|
|
|
18517
18428
|
T['io.flow.internal.v0.models.transaction_reference'] = PropTypes.exact({
|
|
@@ -18963,11 +18874,6 @@ T['io.flow.billing.v0.models.channel_pending_payout_transaction'] = PropTypes.ex
|
|
|
18963
18874
|
deleted_at: PropTypes.string,
|
|
18964
18875
|
});
|
|
18965
18876
|
|
|
18966
|
-
T['io.flow.internal.v0.models.debug_transaction_details_status'] = PropTypes.exact({
|
|
18967
|
-
status: T['io.flow.internal.v0.enums.main_transaction_status'].isRequired,
|
|
18968
|
-
description: PropTypes.string.isRequired,
|
|
18969
|
-
});
|
|
18970
|
-
|
|
18971
18877
|
T['io.flow.internal.v0.models.debug_transaction_queued'] = PropTypes.exact({
|
|
18972
18878
|
id: PropTypes.string.isRequired,
|
|
18973
18879
|
reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -19193,6 +19099,7 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop'] = PropTypes
|
|
|
19193
19099
|
api_key_masked: PropTypes.string,
|
|
19194
19100
|
api_password_masked: PropTypes.string,
|
|
19195
19101
|
access_token_masked: PropTypes.string,
|
|
19102
|
+
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
19196
19103
|
});
|
|
19197
19104
|
|
|
19198
19105
|
T['io.flow.shopify.markets.internal.event.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
@@ -19228,6 +19135,7 @@ T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
|
19228
19135
|
api_key_masked: PropTypes.string,
|
|
19229
19136
|
api_password_masked: PropTypes.string,
|
|
19230
19137
|
access_token_masked: PropTypes.string,
|
|
19138
|
+
shopify_plan_name: T['io.flow.shopify.external.v0.enums.shopify_plan_name'],
|
|
19231
19139
|
});
|
|
19232
19140
|
|
|
19233
19141
|
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
@@ -19492,23 +19400,40 @@ T['io.flow.internal.v0.models.catalog_import_request'] = PropTypes.exact({
|
|
|
19492
19400
|
filename: PropTypes.string,
|
|
19493
19401
|
});
|
|
19494
19402
|
|
|
19495
|
-
T['io.flow.internal.v0.models.
|
|
19496
|
-
id: PropTypes.string.isRequired,
|
|
19497
|
-
});
|
|
19498
|
-
|
|
19499
|
-
T['io.flow.internal.v0.models.carrier_charge_file_result'] = PropTypes.exact({
|
|
19403
|
+
T['io.flow.internal.v0.models.carrier_file_result'] = PropTypes.exact({
|
|
19500
19404
|
processed_at: PropTypes.string.isRequired,
|
|
19501
19405
|
number_lines_successful: PropTypes.number.isRequired,
|
|
19502
19406
|
number_lines_with_errors: PropTypes.number.isRequired,
|
|
19503
19407
|
errors_url: PropTypes.string,
|
|
19504
19408
|
});
|
|
19505
19409
|
|
|
19506
|
-
T['io.flow.internal.v0.
|
|
19410
|
+
T['io.flow.internal.v0.enums.carrier_file_type'] = PropTypes.oneOf(['charge', 'fee']);
|
|
19411
|
+
|
|
19412
|
+
T['io.flow.internal.v0.models.carrier_file_form'] = PropTypes.exact({
|
|
19413
|
+
url: PropTypes.string.isRequired,
|
|
19414
|
+
type: T['io.flow.internal.v0.enums.carrier_file_type'].isRequired,
|
|
19415
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
19416
|
+
});
|
|
19417
|
+
|
|
19418
|
+
T['io.flow.internal.v0.models.carrier_file'] = PropTypes.exact({
|
|
19507
19419
|
id: PropTypes.string.isRequired,
|
|
19420
|
+
type: T['io.flow.internal.v0.enums.carrier_file_type'].isRequired,
|
|
19508
19421
|
url: PropTypes.string.isRequired,
|
|
19509
19422
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
19510
19423
|
created_at: PropTypes.string.isRequired,
|
|
19511
|
-
result: T['io.flow.internal.v0.models.
|
|
19424
|
+
result: T['io.flow.internal.v0.models.carrier_file_result'],
|
|
19425
|
+
});
|
|
19426
|
+
|
|
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
|
+
T['io.flow.internal.v0.models.carrier_charge_reference'] = PropTypes.exact({
|
|
19436
|
+
id: PropTypes.string.isRequired,
|
|
19512
19437
|
});
|
|
19513
19438
|
|
|
19514
19439
|
T['io.flow.internal.v0.models.label_surcharge_single_form'] = PropTypes.exact({
|
|
@@ -19540,7 +19465,7 @@ T['io.flow.billing.v0.models.transaction_metadata_carrier_charge'] = PropTypes.e
|
|
|
19540
19465
|
carrier_id: PropTypes.string.isRequired,
|
|
19541
19466
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
19542
19467
|
revenue_share_percentage: PropTypes.number.isRequired,
|
|
19543
|
-
outbound: T['io.flow.billing.v0.models.
|
|
19468
|
+
outbound: T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'],
|
|
19544
19469
|
});
|
|
19545
19470
|
|
|
19546
19471
|
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_carrier_charge'] = PropTypes.exact({
|
|
@@ -19585,7 +19510,9 @@ T['io.flow.billing.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
|
19585
19510
|
T['io.flow.billing.v0.models.transaction_metadata_channel'],
|
|
19586
19511
|
T['io.flow.billing.v0.models.transaction_metadata_trueup'],
|
|
19587
19512
|
T['io.flow.billing.v0.models.transaction_metadata_carrier_charge'],
|
|
19513
|
+
T['io.flow.billing.v0.models.transaction_metadata_carrier_fee'],
|
|
19588
19514
|
T['io.flow.billing.v0.models.transaction_metadata_manual'],
|
|
19515
|
+
T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'],
|
|
19589
19516
|
]);
|
|
19590
19517
|
|
|
19591
19518
|
T['io.flow.internal.v0.models.label_metadata'] = PropTypes.exact({
|
|
@@ -19608,6 +19535,32 @@ T['io.flow.internal.v0.models.label_surcharge_form'] = PropTypes.exact({
|
|
|
19608
19535
|
fixed_currency_conversion: T['io.flow.internal.v0.models.label_surcharge_single_form'],
|
|
19609
19536
|
});
|
|
19610
19537
|
|
|
19538
|
+
T['io.flow.internal.v0.models.carrier_fee_form'] = PropTypes.exact({
|
|
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({
|
|
19548
|
+
id: PropTypes.string.isRequired,
|
|
19549
|
+
label_invoice_request_id: PropTypes.string.isRequired,
|
|
19550
|
+
units: T['io.flow.internal.v0.models.carrier_fee_units'].isRequired,
|
|
19551
|
+
surcharges: T['io.flow.internal.v0.models.label_surcharge_form'].isRequired,
|
|
19552
|
+
total: PropTypes.number.isRequired,
|
|
19553
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
19554
|
+
});
|
|
19555
|
+
|
|
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
|
+
|
|
19611
19564
|
T['io.flow.trueup.v0.models.label_base'] = PropTypes.exact({
|
|
19612
19565
|
amount: PropTypes.number.isRequired,
|
|
19613
19566
|
weight: PropTypes.number.isRequired,
|
|
@@ -20435,6 +20388,7 @@ T['io.flow.internal.v0.enums.billing_statement_attachment_key'] = PropTypes.oneO
|
|
|
20435
20388
|
'duty',
|
|
20436
20389
|
'trueup',
|
|
20437
20390
|
'carrier_charge',
|
|
20391
|
+
'carrier_fee',
|
|
20438
20392
|
'all',
|
|
20439
20393
|
]);
|
|
20440
20394
|
|
|
@@ -20530,6 +20484,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
20530
20484
|
'trueup',
|
|
20531
20485
|
'carrier_charge',
|
|
20532
20486
|
'carrier_charge_revenue_share',
|
|
20487
|
+
'carrier_fee',
|
|
20533
20488
|
'platform_fee',
|
|
20534
20489
|
'tax',
|
|
20535
20490
|
'duty',
|
|
@@ -20554,6 +20509,7 @@ T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata'] = PropTypes.
|
|
|
20554
20509
|
shipping_label_revenue_share: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label_revenue_share'],
|
|
20555
20510
|
trueup: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'],
|
|
20556
20511
|
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'],
|
|
20557
20513
|
manual: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'],
|
|
20558
20514
|
});
|
|
20559
20515
|
|
|
@@ -20586,6 +20542,7 @@ T['io.flow.billing.internal.v0.enums.billing_transaction_type'] = PropTypes.oneO
|
|
|
20586
20542
|
'duty',
|
|
20587
20543
|
'trueup',
|
|
20588
20544
|
'carrier_charge',
|
|
20545
|
+
'carrier_fee',
|
|
20589
20546
|
]);
|
|
20590
20547
|
|
|
20591
20548
|
T['io.flow.billing.csv.v0.models.billing_csv_processing_transaction'] = PropTypes.exact({
|
|
@@ -20685,6 +20642,10 @@ T['io.flow.internal.v0.models.bank_payment_status_form'] = PropTypes.exact({
|
|
|
20685
20642
|
failure_reason: T['io.flow.billing.v0.enums.payout_status_failure_code'],
|
|
20686
20643
|
});
|
|
20687
20644
|
|
|
20645
|
+
T['io.flow.internal.v0.models.bank_payment_reference'] = PropTypes.exact({
|
|
20646
|
+
id: PropTypes.string.isRequired,
|
|
20647
|
+
});
|
|
20648
|
+
|
|
20688
20649
|
T['io.flow.billing.v0.models.payout_status_failed'] = PropTypes.exact({
|
|
20689
20650
|
code: PropTypes.oneOf(['failed']).isRequired,
|
|
20690
20651
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -20819,6 +20780,8 @@ T['io.flow.internal.v0.models.product_restriction_rule_decision'] = PropTypes.ex
|
|
|
20819
20780
|
updated_by_user_id: PropTypes.string.isRequired,
|
|
20820
20781
|
flagged_for_keywords_at: PropTypes.string,
|
|
20821
20782
|
automatically_restricted_at: PropTypes.string,
|
|
20783
|
+
auto_reviewed_at: PropTypes.string,
|
|
20784
|
+
auto_review_status: T['io.flow.internal.v0.enums.restriction_status'],
|
|
20822
20785
|
manually_reviewed_at: PropTypes.string,
|
|
20823
20786
|
manually_reviewed_by: PropTypes.string,
|
|
20824
20787
|
});
|
|
@@ -21112,6 +21075,7 @@ T['io.flow.internal.v0.models.order_validation_failure_summary'] = PropTypes.exa
|
|
|
21112
21075
|
destination: T['io.flow.fulfillment.v0.models.shipping_address'],
|
|
21113
21076
|
error: PropTypes.string.isRequired,
|
|
21114
21077
|
created_at: PropTypes.string.isRequired,
|
|
21078
|
+
cancelled_at: PropTypes.string,
|
|
21115
21079
|
});
|
|
21116
21080
|
|
|
21117
21081
|
T['io.flow.internal.v0.models.order_validation_failure'] = PropTypes.exact({
|
|
@@ -21173,6 +21137,7 @@ T['io.flow.internal.v0.models.console_label_request_form'] = PropTypes.exact({
|
|
|
21173
21137
|
order_number: PropTypes.string.isRequired,
|
|
21174
21138
|
destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
|
|
21175
21139
|
service: PropTypes.string,
|
|
21140
|
+
bypass_house_number_validation: PropTypes.bool,
|
|
21176
21141
|
});
|
|
21177
21142
|
|
|
21178
21143
|
T['io.flow.internal.v0.unions.console_label_validation_form'] = PropTypes.oneOfType([
|
|
@@ -22723,28 +22688,6 @@ T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
|
|
|
22723
22688
|
reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
|
|
22724
22689
|
});
|
|
22725
22690
|
|
|
22726
|
-
T['io.flow.internal.v0.models.debug_transaction_details'] = PropTypes.exact({
|
|
22727
|
-
transaction: T['io.flow.billing.v0.models.transaction'].isRequired,
|
|
22728
|
-
status: T['io.flow.internal.v0.models.debug_transaction_details_status'].isRequired,
|
|
22729
|
-
payout: T['io.flow.billing.v0.models.pending_payout_transaction_reason'],
|
|
22730
|
-
fx: T['io.flow.internal.v0.models.debug_transaction_fx'],
|
|
22731
|
-
});
|
|
22732
|
-
|
|
22733
|
-
T['io.flow.internal.v0.models.organization_debug_transaction'] = PropTypes.exact({
|
|
22734
|
-
debug: T['io.flow.internal.v0.models.debug_transaction_details'],
|
|
22735
|
-
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
22736
|
-
});
|
|
22737
|
-
|
|
22738
|
-
T['io.flow.internal.v0.models.internal_debug_transaction'] = PropTypes.exact({
|
|
22739
|
-
debug: T['io.flow.internal.v0.models.debug_transaction_details'],
|
|
22740
|
-
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
22741
|
-
});
|
|
22742
|
-
|
|
22743
|
-
T['io.flow.internal.v0.models.channel_debug_transaction'] = PropTypes.exact({
|
|
22744
|
-
debug: T['io.flow.internal.v0.models.debug_transaction_details'],
|
|
22745
|
-
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
22746
|
-
});
|
|
22747
|
-
|
|
22748
22691
|
T['io.flow.internal.v0.enums.address_configuration_setting_province_code'] = PropTypes.oneOf(['iso_3166_2', 'name']);
|
|
22749
22692
|
|
|
22750
22693
|
T['io.flow.internal.v0.models.address_configuration_setting_form'] = PropTypes.exact({
|
|
@@ -23772,11 +23715,6 @@ T['io.flow.internal.v0.models.return_summary'] = PropTypes.exact({
|
|
|
23772
23715
|
tracking_summary: T['io.flow.internal.v0.models.search_tracking_summary'],
|
|
23773
23716
|
});
|
|
23774
23717
|
|
|
23775
|
-
T['io.flow.payment.v0.models.virtual_card_form'] = PropTypes.exact({
|
|
23776
|
-
limit: T['io.flow.common.v0.models.money'].isRequired,
|
|
23777
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
23778
|
-
});
|
|
23779
|
-
|
|
23780
23718
|
T['io.flow.payment.v0.models.reversal'] = PropTypes.exact({
|
|
23781
23719
|
id: PropTypes.string.isRequired,
|
|
23782
23720
|
key: PropTypes.string.isRequired,
|
|
@@ -24565,12 +24503,32 @@ T['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'
|
|
|
24565
24503
|
number: PropTypes.string.isRequired,
|
|
24566
24504
|
});
|
|
24567
24505
|
|
|
24506
|
+
T['io.flow.billing.internal.v0.models.proof_of_posting_time_elapsed'] = PropTypes.exact({
|
|
24507
|
+
discriminator: PropTypes.oneOf(['time_elapsed']).isRequired,
|
|
24508
|
+
order: T['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
24509
|
+
created_at: PropTypes.string.isRequired,
|
|
24510
|
+
});
|
|
24511
|
+
|
|
24512
|
+
T['io.flow.billing.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
24513
|
+
T['io.flow.billing.internal.v0.models.proof_of_posting_fulfilled'],
|
|
24514
|
+
T['io.flow.billing.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
24515
|
+
T['io.flow.billing.internal.v0.models.proof_of_posting_shipping_notification'],
|
|
24516
|
+
T['io.flow.billing.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
24517
|
+
T['io.flow.billing.internal.v0.models.proof_of_posting_order_combined_shipment'],
|
|
24518
|
+
T['io.flow.billing.internal.v0.models.proof_of_posting_time_elapsed'],
|
|
24519
|
+
]);
|
|
24520
|
+
|
|
24568
24521
|
T['io.flow.billing.internal.v0.models.order_cancellation'] = PropTypes.exact({
|
|
24569
24522
|
id: PropTypes.string.isRequired,
|
|
24570
24523
|
order: T['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
24571
24524
|
evidence: T['io.flow.billing.internal.v0.unions.order_cancellation_evidence'].isRequired,
|
|
24572
24525
|
});
|
|
24573
24526
|
|
|
24527
|
+
T['io.flow.billing.internal.v0.models.lost_chargeback'] = PropTypes.exact({
|
|
24528
|
+
id: PropTypes.string.isRequired,
|
|
24529
|
+
order: T['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
24530
|
+
});
|
|
24531
|
+
|
|
24574
24532
|
T['io.flow.billing.internal.v0.models.external_fulfillment_proof'] = PropTypes.exact({
|
|
24575
24533
|
id: PropTypes.string.isRequired,
|
|
24576
24534
|
order: T['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
@@ -25217,27 +25175,60 @@ T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = Prop
|
|
|
25217
25175
|
number: PropTypes.string.isRequired,
|
|
25218
25176
|
});
|
|
25219
25177
|
|
|
25178
|
+
T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'] = PropTypes.exact({
|
|
25179
|
+
discriminator: PropTypes.oneOf(['time_elapsed']).isRequired,
|
|
25180
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25181
|
+
created_at: PropTypes.string.isRequired,
|
|
25182
|
+
});
|
|
25183
|
+
|
|
25184
|
+
T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
25185
|
+
T['io.flow.internal.v0.models.proof_of_posting_fulfilled'],
|
|
25186
|
+
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
25187
|
+
T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
|
|
25188
|
+
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
25189
|
+
T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'],
|
|
25190
|
+
T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'],
|
|
25191
|
+
]);
|
|
25192
|
+
|
|
25220
25193
|
T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
|
|
25221
25194
|
id: PropTypes.string.isRequired,
|
|
25222
25195
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25223
25196
|
evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
|
|
25224
25197
|
});
|
|
25225
25198
|
|
|
25199
|
+
T['io.flow.internal.v0.models.lost_chargeback'] = PropTypes.exact({
|
|
25200
|
+
id: PropTypes.string.isRequired,
|
|
25201
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25202
|
+
});
|
|
25203
|
+
|
|
25204
|
+
T['io.flow.internal.v0.models.bank_payment_order'] = PropTypes.exact({
|
|
25205
|
+
id: PropTypes.string.isRequired,
|
|
25206
|
+
payment: T['io.flow.internal.v0.models.bank_payment_reference'].isRequired,
|
|
25207
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
25208
|
+
});
|
|
25209
|
+
|
|
25226
25210
|
T['io.flow.internal.v0.models.order_reference'] = PropTypes.exact({
|
|
25227
25211
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25228
25212
|
number: PropTypes.string.isRequired,
|
|
25229
25213
|
});
|
|
25230
25214
|
|
|
25215
|
+
T['io.flow.internal.v0.models.accounting_pending_order_metadata'] = PropTypes.exact({
|
|
25216
|
+
discriminator: PropTypes.oneOf(['accounting_pending_order_metadata']).isRequired,
|
|
25217
|
+
order: T['io.flow.internal.v0.models.order_reference'].isRequired,
|
|
25218
|
+
fulfillment_id: PropTypes.string.isRequired,
|
|
25219
|
+
});
|
|
25220
|
+
|
|
25231
25221
|
T['io.flow.internal.v0.models.accounting_fulfillment_metadata'] = PropTypes.exact({
|
|
25232
25222
|
discriminator: PropTypes.oneOf(['accounting_fulfillment_metadata']).isRequired,
|
|
25233
25223
|
order: T['io.flow.internal.v0.models.order_reference'].isRequired,
|
|
25234
|
-
proof: T['io.flow.internal.v0.unions.fulfillment_proof']
|
|
25235
|
-
posting_cutoff: PropTypes.string,
|
|
25224
|
+
proof: T['io.flow.internal.v0.unions.fulfillment_proof'],
|
|
25225
|
+
posting_cutoff: PropTypes.string.isRequired,
|
|
25236
25226
|
});
|
|
25237
25227
|
|
|
25238
25228
|
T['io.flow.internal.v0.unions.task_metadata'] = PropTypes.oneOfType([
|
|
25239
25229
|
T['io.flow.internal.v0.models.statement_creation_metadata'],
|
|
25240
25230
|
T['io.flow.internal.v0.models.accounting_fulfillment_metadata'],
|
|
25231
|
+
T['io.flow.internal.v0.models.accounting_pending_order_metadata'],
|
|
25241
25232
|
]);
|
|
25242
25233
|
|
|
25243
25234
|
T['io.flow.common.v0.models.price'] = PropTypes.exact({
|
|
@@ -25627,6 +25618,19 @@ T['io.flow.billing.internal.v0.models.next_billing_statement'] = PropTypes.exact
|
|
|
25627
25618
|
conditions: PropTypes.string,
|
|
25628
25619
|
});
|
|
25629
25620
|
|
|
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
|
+
|
|
25630
25634
|
T['io.flow.billing.internal.v0.models.carrier_charge_transaction'] = PropTypes.exact({
|
|
25631
25635
|
discriminator: PropTypes.oneOf(['carrier_charge_transaction']).isRequired,
|
|
25632
25636
|
order: T['io.flow.billing.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
@@ -25677,6 +25681,7 @@ T['io.flow.billing.internal.v0.models.billing_statement_totals'] = PropTypes.exa
|
|
|
25677
25681
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
25678
25682
|
trueup: T['io.flow.common.v0.models.price'].isRequired,
|
|
25679
25683
|
carrier_charge: T['io.flow.common.v0.models.price'].isRequired,
|
|
25684
|
+
carrier_fee: T['io.flow.common.v0.models.price'].isRequired,
|
|
25680
25685
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
25681
25686
|
});
|
|
25682
25687
|
|
|
@@ -26628,6 +26633,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
26628
26633
|
duty: T['io.flow.common.v0.models.price'].isRequired,
|
|
26629
26634
|
trueup: T['io.flow.common.v0.models.price'].isRequired,
|
|
26630
26635
|
carrier_charge: T['io.flow.common.v0.models.price'].isRequired,
|
|
26636
|
+
carrier_fee: T['io.flow.common.v0.models.price'].isRequired,
|
|
26631
26637
|
ending_balance: T['io.flow.common.v0.models.price'].isRequired,
|
|
26632
26638
|
});
|
|
26633
26639
|
|
|
@@ -26853,6 +26859,7 @@ T['io.flow.billing.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
26853
26859
|
T['io.flow.billing.internal.v0.models.duty_transaction'],
|
|
26854
26860
|
T['io.flow.billing.internal.v0.models.trueup_transaction'],
|
|
26855
26861
|
T['io.flow.billing.internal.v0.models.carrier_charge_transaction'],
|
|
26862
|
+
T['io.flow.billing.internal.v0.models.carrier_fee_transaction'],
|
|
26856
26863
|
]);
|
|
26857
26864
|
|
|
26858
26865
|
T['io.flow.item.v0.models.local_item_attribute_pricing'] = PropTypes.exact({
|
|
@@ -27972,7 +27979,34 @@ T['io.flow.internal.v0.models.account_payment_hold_form'] = PropTypes.exact({
|
|
|
27972
27979
|
reason: T['io.flow.internal.v0.enums.account_payment_hold_reason'].isRequired,
|
|
27973
27980
|
});
|
|
27974
27981
|
|
|
27975
|
-
T['io.flow.internal.v0.enums.billing_transaction_status'] = PropTypes.oneOf(['
|
|
27982
|
+
T['io.flow.internal.v0.enums.billing_transaction_status'] = PropTypes.oneOf(['pending_proof', 'posted']);
|
|
27983
|
+
|
|
27984
|
+
T['io.flow.internal.v0.models.debug_transaction_details_status'] = PropTypes.exact({
|
|
27985
|
+
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
27986
|
+
description: PropTypes.string.isRequired,
|
|
27987
|
+
});
|
|
27988
|
+
|
|
27989
|
+
T['io.flow.internal.v0.models.debug_transaction_details'] = PropTypes.exact({
|
|
27990
|
+
transaction: T['io.flow.billing.v0.models.transaction'].isRequired,
|
|
27991
|
+
status: T['io.flow.internal.v0.models.debug_transaction_details_status'].isRequired,
|
|
27992
|
+
payout: T['io.flow.billing.v0.models.pending_payout_transaction_reason'],
|
|
27993
|
+
fx: T['io.flow.internal.v0.models.debug_transaction_fx'],
|
|
27994
|
+
});
|
|
27995
|
+
|
|
27996
|
+
T['io.flow.internal.v0.models.organization_debug_transaction'] = PropTypes.exact({
|
|
27997
|
+
debug: T['io.flow.internal.v0.models.debug_transaction_details'],
|
|
27998
|
+
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
27999
|
+
});
|
|
28000
|
+
|
|
28001
|
+
T['io.flow.internal.v0.models.internal_debug_transaction'] = PropTypes.exact({
|
|
28002
|
+
debug: T['io.flow.internal.v0.models.debug_transaction_details'],
|
|
28003
|
+
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
28004
|
+
});
|
|
28005
|
+
|
|
28006
|
+
T['io.flow.internal.v0.models.channel_debug_transaction'] = PropTypes.exact({
|
|
28007
|
+
debug: T['io.flow.internal.v0.models.debug_transaction_details'],
|
|
28008
|
+
queue: T['io.flow.internal.v0.models.debug_transaction_queued'],
|
|
28009
|
+
});
|
|
27976
28010
|
|
|
27977
28011
|
T['io.flow.internal.v0.models.account_transactions_export_request'] = PropTypes.exact({
|
|
27978
28012
|
discriminator: PropTypes.oneOf(['account_transactions_export_request']).isRequired,
|
|
@@ -28020,6 +28054,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
28020
28054
|
'duty',
|
|
28021
28055
|
'trueup',
|
|
28022
28056
|
'carrier_charge',
|
|
28057
|
+
'carrier_fee',
|
|
28023
28058
|
]);
|
|
28024
28059
|
|
|
28025
28060
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -28372,6 +28407,19 @@ T['io.flow.internal.v0.models.channel_billed_transaction_upserted'] = PropTypes.
|
|
|
28372
28407
|
channel_billed_transaction: T['io.flow.internal.v0.models.channel_billed_transaction'].isRequired,
|
|
28373
28408
|
});
|
|
28374
28409
|
|
|
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
|
+
|
|
28375
28423
|
T['io.flow.internal.v0.models.carrier_charge_transaction'] = PropTypes.exact({
|
|
28376
28424
|
discriminator: PropTypes.oneOf(['carrier_charge_transaction']).isRequired,
|
|
28377
28425
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
@@ -28404,6 +28452,7 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
28404
28452
|
T['io.flow.internal.v0.models.duty_transaction'],
|
|
28405
28453
|
T['io.flow.internal.v0.models.trueup_transaction'],
|
|
28406
28454
|
T['io.flow.internal.v0.models.carrier_charge_transaction'],
|
|
28455
|
+
T['io.flow.internal.v0.models.carrier_fee_transaction'],
|
|
28407
28456
|
]);
|
|
28408
28457
|
|
|
28409
28458
|
T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
|
|
@@ -28786,6 +28835,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28786
28835
|
T['io.flow.internal.v0.models.label_invoice_request_deleted'],
|
|
28787
28836
|
T['io.flow.internal.v0.models.carrier_charge_upserted'],
|
|
28788
28837
|
T['io.flow.internal.v0.models.carrier_charge_deleted'],
|
|
28838
|
+
T['io.flow.internal.v0.models.carrier_fee_upserted'],
|
|
28839
|
+
T['io.flow.internal.v0.models.carrier_fee_deleted'],
|
|
28789
28840
|
T['io.flow.internal.v0.models.fraud_review_upserted'],
|
|
28790
28841
|
T['io.flow.internal.v0.models.fraud_review_deleted'],
|
|
28791
28842
|
T['io.flow.internal.v0.models.fraud_pending_review_upserted'],
|
|
@@ -28889,8 +28940,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28889
28940
|
T['io.flow.internal.v0.models.payment_processor_account_deleted'],
|
|
28890
28941
|
T['io.flow.internal.v0.models.payment_processor_merchant_upserted'],
|
|
28891
28942
|
T['io.flow.internal.v0.models.payment_processor_merchant_deleted'],
|
|
28892
|
-
T['io.flow.internal.v0.models.virtual_card_provider_upserted'],
|
|
28893
|
-
T['io.flow.internal.v0.models.virtual_card_provider_deleted'],
|
|
28894
28943
|
T['io.flow.internal.v0.models.authorization_bundle_upserted'],
|
|
28895
28944
|
T['io.flow.internal.v0.models.authorization_bundle_deleted'],
|
|
28896
28945
|
T['io.flow.internal.v0.models.organization_payment_setting_upserted'],
|
|
@@ -28956,8 +29005,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28956
29005
|
T['io.flow.internal.v0.models.stripe_capture_upserted'],
|
|
28957
29006
|
T['io.flow.internal.v0.models.stripe_refund_deleted'],
|
|
28958
29007
|
T['io.flow.internal.v0.models.stripe_refund_upserted'],
|
|
28959
|
-
T['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted'],
|
|
28960
|
-
T['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'],
|
|
28961
29008
|
T['io.flow.internal.v0.models.liability_remittance_plan_upserted'],
|
|
28962
29009
|
T['io.flow.internal.v0.models.liability_remittance_plan_deleted'],
|
|
28963
29010
|
T['io.flow.internal.v0.models.svitlana_item_upserted'],
|
|
@@ -29095,6 +29142,7 @@ T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
|
|
|
29095
29142
|
]);
|
|
29096
29143
|
|
|
29097
29144
|
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']);
|
|
29098
29146
|
T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
|
|
29099
29147
|
T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
|
|
29100
29148
|
T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
|
|
@@ -29266,6 +29314,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29266
29314
|
'label_invoice_request_deleted',
|
|
29267
29315
|
'carrier_charge_upserted',
|
|
29268
29316
|
'carrier_charge_deleted',
|
|
29317
|
+
'carrier_fee_upserted',
|
|
29318
|
+
'carrier_fee_deleted',
|
|
29269
29319
|
'fraud_review_upserted',
|
|
29270
29320
|
'fraud_review_deleted',
|
|
29271
29321
|
'fraud_pending_review_upserted',
|
|
@@ -29369,8 +29419,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29369
29419
|
'payment_processor_account_deleted',
|
|
29370
29420
|
'payment_processor_merchant_upserted',
|
|
29371
29421
|
'payment_processor_merchant_deleted',
|
|
29372
|
-
'virtual_card_provider_upserted',
|
|
29373
|
-
'virtual_card_provider_deleted',
|
|
29374
29422
|
'authorization_bundle_upserted',
|
|
29375
29423
|
'authorization_bundle_deleted',
|
|
29376
29424
|
'organization_payment_setting_upserted',
|
|
@@ -29436,8 +29484,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29436
29484
|
'stripe_capture_upserted',
|
|
29437
29485
|
'stripe_refund_deleted',
|
|
29438
29486
|
'stripe_refund_upserted',
|
|
29439
|
-
'svb_virtual_card_clearing_upserted',
|
|
29440
|
-
'svb_virtual_card_clearing_deleted',
|
|
29441
29487
|
'liability_remittance_plan_upserted',
|
|
29442
29488
|
'liability_remittance_plan_deleted',
|
|
29443
29489
|
'svitlana_item_upserted',
|
|
@@ -29697,11 +29743,6 @@ T['io.flow.internal.v0.models.calculator_organization_settings_form'] = PropType
|
|
|
29697
29743
|
default_hs_code: PropTypes.string,
|
|
29698
29744
|
});
|
|
29699
29745
|
|
|
29700
|
-
T['io.flow.internal.v0.models.carrier_charge_file_form'] = PropTypes.exact({
|
|
29701
|
-
url: PropTypes.string.isRequired,
|
|
29702
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
29703
|
-
});
|
|
29704
|
-
|
|
29705
29746
|
T['io.flow.internal.v0.models.carrier_invoice'] = PropTypes.exact({
|
|
29706
29747
|
number: PropTypes.string.isRequired,
|
|
29707
29748
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -29980,12 +30021,6 @@ T['io.flow.internal.v0.models.experiment_session_query_form'] = PropTypes.exact(
|
|
|
29980
30021
|
session_query: PropTypes.string,
|
|
29981
30022
|
});
|
|
29982
30023
|
|
|
29983
|
-
T['io.flow.internal.v0.models.explicit_statement_form'] = PropTypes.exact({
|
|
29984
|
-
account_id: PropTypes.string.isRequired,
|
|
29985
|
-
reason: PropTypes.string.isRequired,
|
|
29986
|
-
transaction_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29987
|
-
});
|
|
29988
|
-
|
|
29989
30024
|
T['io.flow.internal.v0.models.feature_release_form'] = PropTypes.exact({
|
|
29990
30025
|
released_at: PropTypes.string,
|
|
29991
30026
|
});
|
|
@@ -30105,6 +30140,10 @@ T['io.flow.internal.v0.models.item_filter_values_form'] = PropTypes.exact({
|
|
|
30105
30140
|
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
30106
30141
|
});
|
|
30107
30142
|
|
|
30143
|
+
T['io.flow.internal.v0.models.item_form'] = PropTypes.exact({
|
|
30144
|
+
amount: PropTypes.number,
|
|
30145
|
+
});
|
|
30146
|
+
|
|
30108
30147
|
T['io.flow.internal.v0.models.item_restriction_post_form'] = PropTypes.exact({
|
|
30109
30148
|
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
30110
30149
|
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -30211,6 +30250,10 @@ T['io.flow.internal.v0.models.marketing_gateway_new_channel_request_form'] = Pro
|
|
|
30211
30250
|
channel_name: PropTypes.string.isRequired,
|
|
30212
30251
|
});
|
|
30213
30252
|
|
|
30253
|
+
T['io.flow.internal.v0.models.markets_order_summary'] = PropTypes.exact({
|
|
30254
|
+
id: PropTypes.string.isRequired,
|
|
30255
|
+
});
|
|
30256
|
+
|
|
30214
30257
|
T['io.flow.internal.v0.models.one_time_token_redemption_form'] = PropTypes.exact({
|
|
30215
30258
|
token: PropTypes.string.isRequired,
|
|
30216
30259
|
});
|
|
@@ -30399,6 +30442,13 @@ T['io.flow.internal.v0.models.restriction_product_request_form'] = PropTypes.exa
|
|
|
30399
30442
|
product_id: PropTypes.string,
|
|
30400
30443
|
});
|
|
30401
30444
|
|
|
30445
|
+
T['io.flow.internal.v0.models.restriction_rule_override'] = PropTypes.exact({
|
|
30446
|
+
id: PropTypes.string.isRequired,
|
|
30447
|
+
organization_id: PropTypes.string.isRequired,
|
|
30448
|
+
rule_id: PropTypes.string.isRequired,
|
|
30449
|
+
value_threshold_usd: PropTypes.number.isRequired,
|
|
30450
|
+
});
|
|
30451
|
+
|
|
30402
30452
|
T['io.flow.internal.v0.models.retracking'] = PropTypes.exact({
|
|
30403
30453
|
carrier: PropTypes.string.isRequired,
|
|
30404
30454
|
tracking_number: PropTypes.string,
|
|
@@ -30519,16 +30569,6 @@ T['io.flow.internal.v0.models.shopify_markets_queued_record'] = PropTypes.exact(
|
|
|
30519
30569
|
stacktrace: PropTypes.string,
|
|
30520
30570
|
});
|
|
30521
30571
|
|
|
30522
|
-
T['io.flow.internal.v0.models.shopify_markets_shop_form'] = PropTypes.exact({
|
|
30523
|
-
shop: PropTypes.string.isRequired,
|
|
30524
|
-
domain: PropTypes.string.isRequired,
|
|
30525
|
-
myshopify_domain: PropTypes.string.isRequired,
|
|
30526
|
-
shared_secret: PropTypes.string.isRequired,
|
|
30527
|
-
api_key: PropTypes.string,
|
|
30528
|
-
api_password: PropTypes.string,
|
|
30529
|
-
access_token: PropTypes.string,
|
|
30530
|
-
});
|
|
30531
|
-
|
|
30532
30572
|
T['io.flow.internal.v0.models.shopify_markets_sync'] = PropTypes.exact({
|
|
30533
30573
|
force_resync: PropTypes.bool,
|
|
30534
30574
|
});
|
|
@@ -30664,6 +30704,25 @@ T['io.flow.return.v0.models.return_reason_put_form'] = PropTypes.exact({
|
|
|
30664
30704
|
name: PropTypes.string,
|
|
30665
30705
|
});
|
|
30666
30706
|
|
|
30707
|
+
T['io.flow.payment.gateway.v0.models.payment_capture_form'] = PropTypes.exact({
|
|
30708
|
+
amount: PropTypes.number,
|
|
30709
|
+
currency: PropTypes.string,
|
|
30710
|
+
reference: PropTypes.string,
|
|
30711
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
30712
|
+
});
|
|
30713
|
+
|
|
30714
|
+
T['io.flow.payment.gateway.v0.models.payment_refund_form'] = PropTypes.exact({
|
|
30715
|
+
amount: PropTypes.number,
|
|
30716
|
+
currency: PropTypes.string,
|
|
30717
|
+
reference: PropTypes.string,
|
|
30718
|
+
});
|
|
30719
|
+
|
|
30720
|
+
T['io.flow.payment.gateway.v0.models.payment_reversal_form'] = PropTypes.exact({
|
|
30721
|
+
amount: PropTypes.number,
|
|
30722
|
+
currency: PropTypes.string,
|
|
30723
|
+
reference: PropTypes.string,
|
|
30724
|
+
});
|
|
30725
|
+
|
|
30667
30726
|
T['io.flow.channel.v0.models.channel_authorization'] = PropTypes.exact({
|
|
30668
30727
|
placeholder: PropTypes.string,
|
|
30669
30728
|
});
|
|
@@ -31030,6 +31089,10 @@ T['io.flow.shopify.markets.internal.v0.enums.shopify_markets_trade_sector'] = Pr
|
|
|
31030
31089
|
'other',
|
|
31031
31090
|
]);
|
|
31032
31091
|
|
|
31092
|
+
T['io.flow.shopify.markets.internal.v0.models.markets_order_summary'] = PropTypes.exact({
|
|
31093
|
+
id: PropTypes.string.isRequired,
|
|
31094
|
+
});
|
|
31095
|
+
|
|
31033
31096
|
T['io.flow.shopify.markets.internal.v0.models.shipping_lane'] = PropTypes.exact({
|
|
31034
31097
|
origin: PropTypes.string.isRequired,
|
|
31035
31098
|
destination: PropTypes.string.isRequired,
|
|
@@ -31047,16 +31110,6 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_queued_record'] =
|
|
|
31047
31110
|
stacktrace: PropTypes.string,
|
|
31048
31111
|
});
|
|
31049
31112
|
|
|
31050
|
-
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_shop_form'] = PropTypes.exact({
|
|
31051
|
-
shop: PropTypes.string.isRequired,
|
|
31052
|
-
domain: PropTypes.string.isRequired,
|
|
31053
|
-
myshopify_domain: PropTypes.string.isRequired,
|
|
31054
|
-
shared_secret: PropTypes.string.isRequired,
|
|
31055
|
-
api_key: PropTypes.string,
|
|
31056
|
-
api_password: PropTypes.string,
|
|
31057
|
-
access_token: PropTypes.string,
|
|
31058
|
-
});
|
|
31059
|
-
|
|
31060
31113
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_sync'] = PropTypes.exact({
|
|
31061
31114
|
force_resync: PropTypes.bool,
|
|
31062
31115
|
});
|
|
@@ -31332,26 +31385,6 @@ T['io.flow.shopify.markets.v0.models.shopify_webhook_shop_redact'] = PropTypes.e
|
|
|
31332
31385
|
shop_domain: PropTypes.string.isRequired,
|
|
31333
31386
|
});
|
|
31334
31387
|
|
|
31335
|
-
T['io.flow.svb.v0.models.email_response'] = PropTypes.exact({
|
|
31336
|
-
id: PropTypes.string.isRequired,
|
|
31337
|
-
});
|
|
31338
|
-
|
|
31339
|
-
T['io.flow.payment.gateway.v0.models.payment_capture_form'] = PropTypes.exact({
|
|
31340
|
-
amount: PropTypes.number,
|
|
31341
|
-
currency: PropTypes.string,
|
|
31342
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
31343
|
-
});
|
|
31344
|
-
|
|
31345
|
-
T['io.flow.payment.gateway.v0.models.payment_refund_form'] = PropTypes.exact({
|
|
31346
|
-
amount: PropTypes.number,
|
|
31347
|
-
currency: PropTypes.string,
|
|
31348
|
-
});
|
|
31349
|
-
|
|
31350
|
-
T['io.flow.payment.gateway.v0.models.payment_reversal_form'] = PropTypes.exact({
|
|
31351
|
-
amount: PropTypes.number,
|
|
31352
|
-
currency: PropTypes.string,
|
|
31353
|
-
});
|
|
31354
|
-
|
|
31355
31388
|
T['io.flow.channel.internal.v0.models.flow_channel_organization'] = PropTypes.exact({
|
|
31356
31389
|
placeholder: PropTypes.string,
|
|
31357
31390
|
});
|
|
@@ -31486,15 +31519,6 @@ T['io.flow.payment.internal.v0.models.payment_organization_settings_put_form'] =
|
|
|
31486
31519
|
payment_statement_suffix: PropTypes.string,
|
|
31487
31520
|
});
|
|
31488
31521
|
|
|
31489
|
-
T['io.flow.payment.internal.v0.models.virtual_card_provider'] = PropTypes.exact({
|
|
31490
|
-
id: PropTypes.string.isRequired,
|
|
31491
|
-
organization_id: PropTypes.string.isRequired,
|
|
31492
|
-
provider: PropTypes.string.isRequired,
|
|
31493
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
31494
|
-
created_at: PropTypes.string.isRequired,
|
|
31495
|
-
updated_at: PropTypes.string.isRequired,
|
|
31496
|
-
});
|
|
31497
|
-
|
|
31498
31522
|
T['io.flow.ftp.v0.models.ftp_file_form'] = PropTypes.exact({
|
|
31499
31523
|
url: PropTypes.string.isRequired,
|
|
31500
31524
|
directory: PropTypes.string.isRequired,
|
|
@@ -31776,12 +31800,12 @@ T['io.flow.billing.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf(
|
|
|
31776
31800
|
]);
|
|
31777
31801
|
|
|
31778
31802
|
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']);
|
|
31779
31804
|
T['io.flow.billing.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
|
|
31780
31805
|
T['io.flow.billing.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
|
|
31781
31806
|
T['io.flow.billing.internal.v0.enums.dispute_transaction_type'] = PropTypes.oneOf(['adjustment', 'dispute']);
|
|
31782
31807
|
T['io.flow.billing.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
|
|
31783
31808
|
T['io.flow.billing.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
|
|
31784
|
-
T['io.flow.billing.internal.v0.enums.main_transaction_status'] = PropTypes.oneOf(['scheduled', 'pending_proof']);
|
|
31785
31809
|
T['io.flow.billing.internal.v0.enums.order_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'order_service']);
|
|
31786
31810
|
T['io.flow.billing.internal.v0.enums.preferred_billing_schedule'] = PropTypes.oneOf(['monthly', 'bi-monthly']);
|
|
31787
31811
|
|
|
@@ -31877,12 +31901,6 @@ T['io.flow.billing.internal.v0.models.email_form'] = PropTypes.exact({
|
|
|
31877
31901
|
bcc: PropTypes.arrayOf(PropTypes.string),
|
|
31878
31902
|
});
|
|
31879
31903
|
|
|
31880
|
-
T['io.flow.billing.internal.v0.models.explicit_statement_form'] = PropTypes.exact({
|
|
31881
|
-
account_id: PropTypes.string.isRequired,
|
|
31882
|
-
reason: PropTypes.string.isRequired,
|
|
31883
|
-
transaction_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
31884
|
-
});
|
|
31885
|
-
|
|
31886
31904
|
T['io.flow.billing.internal.v0.models.payout_status_counts'] = PropTypes.exact({
|
|
31887
31905
|
scheduled: PropTypes.number.isRequired,
|
|
31888
31906
|
sent: PropTypes.number.isRequired,
|
|
@@ -32029,6 +32047,7 @@ T['io.flow.organization.onboarding.state.v0.models.activation_put_form'] = PropT
|
|
|
32029
32047
|
|
|
32030
32048
|
T['io.flow.organization.onboarding.state.v0.models.deactivation_put_form'] = PropTypes.exact({
|
|
32031
32049
|
reason: PropTypes.string.isRequired,
|
|
32050
|
+
deactivate_at: PropTypes.string,
|
|
32032
32051
|
});
|
|
32033
32052
|
|
|
32034
32053
|
T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
|
|
@@ -32101,6 +32120,7 @@ export const accountType = T['io.flow.internal.v0.enums.account_type'];
|
|
|
32101
32120
|
export const accountUpserted = T['io.flow.internal.v0.models.account_upserted'];
|
|
32102
32121
|
export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_v2'];
|
|
32103
32122
|
export const accountingFulfillmentMetadata = T['io.flow.internal.v0.models.accounting_fulfillment_metadata'];
|
|
32123
|
+
export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
|
|
32104
32124
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
32105
32125
|
export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
|
|
32106
32126
|
export const addressConfigurationProvinceSetting = T['io.flow.internal.v0.models.address_configuration_province_setting'];
|
|
@@ -32195,7 +32215,9 @@ export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_r
|
|
|
32195
32215
|
export const bankPayment = T['io.flow.internal.v0.models.bank_payment'];
|
|
32196
32216
|
export const bankPaymentDeletedV2 = T['io.flow.internal.v0.models.bank_payment_deleted_v2'];
|
|
32197
32217
|
export const bankPaymentForm = T['io.flow.internal.v0.models.bank_payment_form'];
|
|
32218
|
+
export const bankPaymentOrder = T['io.flow.internal.v0.models.bank_payment_order'];
|
|
32198
32219
|
export const bankPaymentPromiseCompletedMethod = T['io.flow.internal.v0.enums.bank_payment_promise_completed_method'];
|
|
32220
|
+
export const bankPaymentReference = T['io.flow.internal.v0.models.bank_payment_reference'];
|
|
32199
32221
|
export const bankPaymentStatusCode = T['io.flow.internal.v0.enums.bank_payment_status_code'];
|
|
32200
32222
|
export const bankPaymentStatusForm = T['io.flow.internal.v0.models.bank_payment_status_form'];
|
|
32201
32223
|
export const bankPaymentStatusImport = T['io.flow.internal.v0.models.bank_payment_status_import'];
|
|
@@ -32277,9 +32299,6 @@ export const carrierAccountUpsertedV2 = T['io.flow.internal.v0.models.carrier_ac
|
|
|
32277
32299
|
export const carrierAccountValidation = T['io.flow.internal.v0.models.carrier_account_validation'];
|
|
32278
32300
|
export const carrierCharge = T['io.flow.internal.v0.models.carrier_charge'];
|
|
32279
32301
|
export const carrierChargeDeleted = T['io.flow.internal.v0.models.carrier_charge_deleted'];
|
|
32280
|
-
export const carrierChargeFile = T['io.flow.internal.v0.models.carrier_charge_file'];
|
|
32281
|
-
export const carrierChargeFileForm = T['io.flow.internal.v0.models.carrier_charge_file_form'];
|
|
32282
|
-
export const carrierChargeFileResult = T['io.flow.internal.v0.models.carrier_charge_file_result'];
|
|
32283
32302
|
export const carrierChargeForm = T['io.flow.internal.v0.unions.carrier_charge_form'];
|
|
32284
32303
|
export const carrierChargeFormLabel = T['io.flow.internal.v0.models.carrier_charge_form_label'];
|
|
32285
32304
|
export const carrierChargeFormOther = T['io.flow.internal.v0.models.carrier_charge_form_other'];
|
|
@@ -32290,6 +32309,18 @@ export const carrierChargeType = T['io.flow.internal.v0.enums.carrier_charge_typ
|
|
|
32290
32309
|
export const carrierChargeUnits = T['io.flow.internal.v0.models.carrier_charge_units'];
|
|
32291
32310
|
export const carrierChargeUpserted = T['io.flow.internal.v0.models.carrier_charge_upserted'];
|
|
32292
32311
|
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
|
+
export const carrierFile = T['io.flow.internal.v0.models.carrier_file'];
|
|
32321
|
+
export const carrierFileForm = T['io.flow.internal.v0.models.carrier_file_form'];
|
|
32322
|
+
export const carrierFileResult = T['io.flow.internal.v0.models.carrier_file_result'];
|
|
32323
|
+
export const carrierFileType = T['io.flow.internal.v0.enums.carrier_file_type'];
|
|
32293
32324
|
export const carrierInvoice = T['io.flow.internal.v0.models.carrier_invoice'];
|
|
32294
32325
|
export const carrierLabelGenerationMethod = T['io.flow.internal.v0.enums.carrier_label_generation_method'];
|
|
32295
32326
|
export const carrierValidationStatus = T['io.flow.internal.v0.enums.carrier_validation_status'];
|
|
@@ -32544,6 +32575,7 @@ export const details = T['io.flow.internal.v0.models.details'];
|
|
|
32544
32575
|
export const dhl = T['io.flow.internal.v0.models.dhl'];
|
|
32545
32576
|
export const dhlEcommerce = T['io.flow.internal.v0.models.dhl_ecommerce'];
|
|
32546
32577
|
export const dict = T['io.flow.internal.v0.models.dict'];
|
|
32578
|
+
export const dimensionEstimateOpsInput = T['io.flow.internal.v0.models.dimension_estimate_ops_input'];
|
|
32547
32579
|
export const discount = T['io.flow.internal.v0.models.discount'];
|
|
32548
32580
|
export const discountCode = T['io.flow.internal.v0.models.discount_code'];
|
|
32549
32581
|
export const discountRequestForm = T['io.flow.internal.v0.models.discount_request_form'];
|
|
@@ -32665,7 +32697,9 @@ export const experimentSessionQueryForm = T['io.flow.internal.v0.models.experime
|
|
|
32665
32697
|
export const experimentUpserted = T['io.flow.internal.v0.models.experiment_upserted'];
|
|
32666
32698
|
export const experimentVersion = T['io.flow.internal.v0.models.experiment_version'];
|
|
32667
32699
|
export const explicitStatement = T['io.flow.internal.v0.models.explicit_statement'];
|
|
32668
|
-
export const explicitStatementForm = T['io.flow.internal.v0.
|
|
32700
|
+
export const explicitStatementForm = T['io.flow.internal.v0.unions.explicit_statement_form'];
|
|
32701
|
+
export const explicitStatementFormAllPendingPostedTransactions = T['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'];
|
|
32702
|
+
export const explicitStatementFormTransactionIds = T['io.flow.internal.v0.models.explicit_statement_form_transaction_ids'];
|
|
32669
32703
|
export const exportCompleted = T['io.flow.internal.v0.models.export_completed'];
|
|
32670
32704
|
export const exportContentType = T['io.flow.internal.v0.enums.export_content_type'];
|
|
32671
32705
|
export const exportFailed = T['io.flow.internal.v0.models.export_failed'];
|
|
@@ -32898,6 +32932,7 @@ export const itemDimensionEstimateUpsertedV2 = T['io.flow.internal.v0.models.ite
|
|
|
32898
32932
|
export const itemFilterResponse = T['io.flow.internal.v0.models.item_filter_response'];
|
|
32899
32933
|
export const itemFilterValueResponse = T['io.flow.internal.v0.models.item_filter_value_response'];
|
|
32900
32934
|
export const itemFilterValuesForm = T['io.flow.internal.v0.models.item_filter_values_form'];
|
|
32935
|
+
export const itemForm = T['io.flow.internal.v0.models.item_form'];
|
|
32901
32936
|
export const itemFormImportRequest = T['io.flow.internal.v0.models.item_form_import_request'];
|
|
32902
32937
|
export const itemHarmonization = T['io.flow.internal.v0.models.item_harmonization'];
|
|
32903
32938
|
export const itemHarmonizationDeleted = T['io.flow.internal.v0.models.item_harmonization_deleted'];
|
|
@@ -32998,7 +33033,11 @@ export const localizedPriceBookItemData = T['io.flow.internal.v0.models.localize
|
|
|
32998
33033
|
export const localizedPriceBookItemDeleted = T['io.flow.internal.v0.models.localized_price_book_item_deleted'];
|
|
32999
33034
|
export const localizedPriceBookItemUpserted = T['io.flow.internal.v0.models.localized_price_book_item_upserted'];
|
|
33000
33035
|
export const location = T['io.flow.internal.v0.models.location'];
|
|
33036
|
+
export const logisticsCapabilities = T['io.flow.internal.v0.models.logistics_capabilities'];
|
|
33037
|
+
export const logisticsCapabilitiesForm = T['io.flow.internal.v0.models.logistics_capabilities_form'];
|
|
33038
|
+
export const logisticsCapability = T['io.flow.internal.v0.enums.logistics_capability'];
|
|
33001
33039
|
export const logo = T['io.flow.internal.v0.models.logo'];
|
|
33040
|
+
export const lostChargeback = T['io.flow.internal.v0.models.lost_chargeback'];
|
|
33002
33041
|
export const loyaltyProgram = T['io.flow.internal.v0.models.loyalty_program'];
|
|
33003
33042
|
export const loyaltyProgramMessage = T['io.flow.internal.v0.models.loyalty_program_message'];
|
|
33004
33043
|
export const loyaltyProgramReward = T['io.flow.internal.v0.models.loyalty_program_reward'];
|
|
@@ -33007,7 +33046,6 @@ export const magentoInstallForm = T['io.flow.internal.v0.models.magento_install_
|
|
|
33007
33046
|
export const mainTransaction = T['io.flow.internal.v0.models.main_transaction'];
|
|
33008
33047
|
export const mainTransactionDeleted = T['io.flow.internal.v0.models.main_transaction_deleted'];
|
|
33009
33048
|
export const mainTransactionDeletedV2 = T['io.flow.internal.v0.models.main_transaction_deleted_v2'];
|
|
33010
|
-
export const mainTransactionStatus = T['io.flow.internal.v0.enums.main_transaction_status'];
|
|
33011
33049
|
export const mainTransactionUpserted = T['io.flow.internal.v0.models.main_transaction_upserted'];
|
|
33012
33050
|
export const mainTransactionUpsertedV2 = T['io.flow.internal.v0.models.main_transaction_upserted_v2'];
|
|
33013
33051
|
export const manualReviewRule = T['io.flow.internal.v0.models.manual_review_rule'];
|
|
@@ -33073,6 +33111,7 @@ export const marketingGatewaySchemaSummary = T['io.flow.internal.v0.models.marke
|
|
|
33073
33111
|
export const marketingGatewaySourceSummary = T['io.flow.internal.v0.unions.marketing_gateway_source_summary'];
|
|
33074
33112
|
export const marketingGatewaySupportedChannelDetails = T['io.flow.internal.v0.models.marketing_gateway_supported_channel_details'];
|
|
33075
33113
|
export const marketsOrder = T['io.flow.internal.v0.models.markets_order'];
|
|
33114
|
+
export const marketsOrderSummary = T['io.flow.internal.v0.models.markets_order_summary'];
|
|
33076
33115
|
export const matiasItem = T['io.flow.internal.v0.models.matias_item'];
|
|
33077
33116
|
export const matiasItemDeleted = T['io.flow.internal.v0.models.matias_item_deleted'];
|
|
33078
33117
|
export const matiasItemForm = T['io.flow.internal.v0.models.matias_item_form'];
|
|
@@ -33358,6 +33397,7 @@ export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_po
|
|
|
33358
33397
|
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
33359
33398
|
export const proofOfPostingOrderCombinedShipment = T['io.flow.internal.v0.models.proof_of_posting_order_combined_shipment'];
|
|
33360
33399
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
33400
|
+
export const proofOfPostingTimeElapsed = T['io.flow.internal.v0.models.proof_of_posting_time_elapsed'];
|
|
33361
33401
|
export const quote = T['io.flow.internal.v0.models.quote'];
|
|
33362
33402
|
export const quoteDeleted = T['io.flow.internal.v0.models.quote_deleted'];
|
|
33363
33403
|
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
@@ -33504,6 +33544,7 @@ export const restrictionRule = T['io.flow.internal.v0.models.restriction_rule'];
|
|
|
33504
33544
|
export const restrictionRuleDecisionForm = T['io.flow.internal.v0.models.restriction_rule_decision_form'];
|
|
33505
33545
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
33506
33546
|
export const restrictionRuleMetadata = T['io.flow.internal.v0.models.restriction_rule_metadata'];
|
|
33547
|
+
export const restrictionRuleOverride = T['io.flow.internal.v0.models.restriction_rule_override'];
|
|
33507
33548
|
export const restrictionRuleSummary = T['io.flow.internal.v0.models.restriction_rule_summary'];
|
|
33508
33549
|
export const restrictionStatus = T['io.flow.internal.v0.enums.restriction_status'];
|
|
33509
33550
|
export const restrictionStatusMetadata = T['io.flow.internal.v0.models.restriction_status_metadata'];
|
|
@@ -33748,9 +33789,6 @@ export const subscriptionFrequency = T['io.flow.internal.v0.enums.subscription_f
|
|
|
33748
33789
|
export const subscriptionTransaction = T['io.flow.internal.v0.models.subscription_transaction'];
|
|
33749
33790
|
export const suggestionAction = T['io.flow.internal.v0.enums.suggestion_action'];
|
|
33750
33791
|
export const supportedLabels = T['io.flow.internal.v0.models.supported_labels'];
|
|
33751
|
-
export const svbVirtualCardClearing = T['io.flow.internal.v0.models.svb_virtual_card_clearing'];
|
|
33752
|
-
export const svbVirtualCardClearingDeleted = T['io.flow.internal.v0.models.svb_virtual_card_clearing_deleted'];
|
|
33753
|
-
export const svbVirtualCardClearingUpserted = T['io.flow.internal.v0.models.svb_virtual_card_clearing_upserted'];
|
|
33754
33792
|
export const svitlanaItem = T['io.flow.internal.v0.models.svitlana_item'];
|
|
33755
33793
|
export const svitlanaItemDeleted = T['io.flow.internal.v0.models.svitlana_item_deleted'];
|
|
33756
33794
|
export const svitlanaItemForm = T['io.flow.internal.v0.models.svitlana_item_form'];
|
|
@@ -33875,9 +33913,6 @@ export const validationRule = T['io.flow.internal.v0.unions.validation_rule'];
|
|
|
33875
33913
|
export const variant = T['io.flow.internal.v0.unions.variant'];
|
|
33876
33914
|
export const variantForm = T['io.flow.internal.v0.unions.variant_form'];
|
|
33877
33915
|
export const viesResult = T['io.flow.internal.v0.models.vies_result'];
|
|
33878
|
-
export const virtualCardProvider = T['io.flow.internal.v0.models.virtual_card_provider'];
|
|
33879
|
-
export const virtualCardProviderDeleted = T['io.flow.internal.v0.models.virtual_card_provider_deleted'];
|
|
33880
|
-
export const virtualCardProviderUpserted = T['io.flow.internal.v0.models.virtual_card_provider_upserted'];
|
|
33881
33916
|
export const virtualCardTransaction = T['io.flow.internal.v0.models.virtual_card_transaction'];
|
|
33882
33917
|
export const wasteElectricalAndElectronicEquipmentComplianceData = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'];
|
|
33883
33918
|
export const wasteElectricalAndElectronicEquipmentComplianceForm = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_form'];
|