@flowio/api-internal-prop-types 9.24.94 → 9.24.95
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 +1400 -1357
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +1400 -1357
- package/src/api-internal.js +1775 -1587
package/src/api-internal.js
CHANGED
|
@@ -1,6 +1,133 @@
|
|
|
1
1
|
import PropTypes from 'prop-types';
|
|
2
2
|
const T = {};
|
|
3
3
|
|
|
4
|
+
T['io.flow.experiment.internal.v0.models.feature_value_reference'] = PropTypes.exact({
|
|
5
|
+
feature_key: PropTypes.string.isRequired,
|
|
6
|
+
value: PropTypes.string.isRequired,
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
T['io.flow.experiment.internal.v0.models.feature_variant_summary'] = PropTypes.exact({
|
|
10
|
+
key: PropTypes.string.isRequired,
|
|
11
|
+
feature_value: T['io.flow.experiment.internal.v0.models.feature_value_reference'].isRequired,
|
|
12
|
+
name: PropTypes.string,
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
T['io.flow.experiment.internal.v0.models.experiment_reference'] = PropTypes.exact({
|
|
16
|
+
key: PropTypes.string.isRequired,
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
T['io.flow.experiment.internal.v0.models.experiment_milestone'] = PropTypes.exact({
|
|
20
|
+
id: PropTypes.string.isRequired,
|
|
21
|
+
experiment: T['io.flow.experiment.internal.v0.models.experiment_reference'].isRequired,
|
|
22
|
+
timestamp: PropTypes.string.isRequired,
|
|
23
|
+
description: PropTypes.string.isRequired,
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
T['io.flow.experiment.internal.v0.enums.scope'] = PropTypes.oneOf(['organization', 'global']);
|
|
27
|
+
|
|
28
|
+
T['io.flow.experiment.internal.v0.models.experiment_form_default_discriminator_value'] = PropTypes.exact({
|
|
29
|
+
key: PropTypes.string.isRequired,
|
|
30
|
+
name: PropTypes.string.isRequired,
|
|
31
|
+
scope: T['io.flow.experiment.internal.v0.enums.scope'].isRequired,
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
T['io.flow.experiment.internal.v0.enums.experiment_discriminator_key'] = PropTypes.oneOf(['experience', 'feature']);
|
|
35
|
+
|
|
36
|
+
T['io.flow.experiment.internal.v0.models.experiment_form_default_variant'] = PropTypes.exact({
|
|
37
|
+
key: PropTypes.string.isRequired,
|
|
38
|
+
name: PropTypes.string.isRequired,
|
|
39
|
+
traffic_percentage: PropTypes.number,
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
T['io.flow.experiment.internal.v0.models.experiment_form_default_discriminator'] = PropTypes.exact({
|
|
43
|
+
key: T['io.flow.experiment.internal.v0.enums.experiment_discriminator_key'].isRequired,
|
|
44
|
+
|
|
45
|
+
values: PropTypes.arrayOf(
|
|
46
|
+
T['io.flow.experiment.internal.v0.models.experiment_form_default_discriminator_value'],
|
|
47
|
+
).isRequired,
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
T['io.flow.experiment.internal.v0.models.experiment_form_default'] = PropTypes.exact({
|
|
51
|
+
discriminator: T['io.flow.experiment.internal.v0.models.experiment_form_default_discriminator'].isRequired,
|
|
52
|
+
variants: PropTypes.arrayOf(T['io.flow.experiment.internal.v0.models.experiment_form_default_variant']),
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
T['io.flow.experiment.internal.v0.models.feature_variant_form'] = PropTypes.exact({
|
|
56
|
+
discriminator: PropTypes.oneOf(['feature']).isRequired,
|
|
57
|
+
key: PropTypes.string.isRequired,
|
|
58
|
+
traffic_percentage: PropTypes.number.isRequired,
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
T['io.flow.experiment.internal.v0.models.experience_variant_form'] = PropTypes.exact({
|
|
62
|
+
discriminator: PropTypes.oneOf(['experience']).isRequired,
|
|
63
|
+
key: PropTypes.string.isRequired,
|
|
64
|
+
traffic_percentage: PropTypes.number.isRequired,
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
T['io.flow.experiment.internal.v0.unions.variant_form'] = PropTypes.oneOfType([
|
|
68
|
+
T['io.flow.experiment.internal.v0.models.experience_variant_form'],
|
|
69
|
+
T['io.flow.experiment.internal.v0.models.feature_variant_form'],
|
|
70
|
+
]);
|
|
71
|
+
|
|
72
|
+
T['io.flow.experiment.internal.v0.models.experiment_results'] = PropTypes.exact({
|
|
73
|
+
id: PropTypes.string.isRequired,
|
|
74
|
+
experiment_key: PropTypes.string.isRequired,
|
|
75
|
+
experiment_variant_key: PropTypes.string.isRequired,
|
|
76
|
+
visitor_count: PropTypes.number.isRequired,
|
|
77
|
+
visitors_with_transactions_count: PropTypes.number.isRequired,
|
|
78
|
+
conversion_rate: PropTypes.number.isRequired,
|
|
79
|
+
lower_bound: PropTypes.number.isRequired,
|
|
80
|
+
upper_bound: PropTypes.number.isRequired,
|
|
81
|
+
probability_of_being_best: PropTypes.number,
|
|
82
|
+
currency: PropTypes.string,
|
|
83
|
+
average_order_value: PropTypes.number,
|
|
84
|
+
revenue_generated: PropTypes.number,
|
|
85
|
+
total_order_count: PropTypes.number,
|
|
86
|
+
conversion_rate_uplift: PropTypes.number,
|
|
87
|
+
average_order_value_uplift: PropTypes.number,
|
|
88
|
+
revenue_generated_uplift: PropTypes.number,
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
T['io.flow.experiment.internal.v0.models.feature_variant'] = PropTypes.exact({
|
|
92
|
+
discriminator: PropTypes.oneOf(['feature_variant']).isRequired,
|
|
93
|
+
value: T['io.flow.experiment.internal.v0.models.feature_variant_summary'].isRequired,
|
|
94
|
+
traffic_percentage: PropTypes.number.isRequired,
|
|
95
|
+
experiment_results: T['io.flow.experiment.internal.v0.models.experiment_results'],
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
T['io.flow.experiment.internal.v0.models.experiment_results_with_timestamp'] = PropTypes.exact({
|
|
99
|
+
timestamp: PropTypes.string.isRequired,
|
|
100
|
+
results: PropTypes.arrayOf(T['io.flow.experiment.internal.v0.models.experiment_results']).isRequired,
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
T['io.flow.experiment.internal.v0.models.experience_variant_summary'] = PropTypes.exact({
|
|
104
|
+
key: PropTypes.string.isRequired,
|
|
105
|
+
name: PropTypes.string,
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
T['io.flow.experiment.internal.v0.enums.significance_action'] = PropTypes.oneOf(['end_and_implement_winner', 'end_and_revert', 'do_nothing']);
|
|
109
|
+
|
|
110
|
+
T['io.flow.experiment.internal.v0.models.experiment_form'] = PropTypes.exact({
|
|
111
|
+
name: PropTypes.string.isRequired,
|
|
112
|
+
description: PropTypes.string,
|
|
113
|
+
emails: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
114
|
+
variants: PropTypes.arrayOf(T['io.flow.experiment.internal.v0.unions.variant_form']).isRequired,
|
|
115
|
+
significance_action: T['io.flow.experiment.internal.v0.enums.significance_action'],
|
|
116
|
+
session_query: PropTypes.string,
|
|
117
|
+
});
|
|
118
|
+
|
|
119
|
+
T['io.flow.experiment.internal.v0.models.experience_variant'] = PropTypes.exact({
|
|
120
|
+
discriminator: PropTypes.oneOf(['experience_variant']).isRequired,
|
|
121
|
+
experience: T['io.flow.experiment.internal.v0.models.experience_variant_summary'].isRequired,
|
|
122
|
+
traffic_percentage: PropTypes.number.isRequired,
|
|
123
|
+
experiment_results: T['io.flow.experiment.internal.v0.models.experiment_results'],
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
T['io.flow.experiment.internal.v0.unions.variant'] = PropTypes.oneOfType([
|
|
127
|
+
T['io.flow.experiment.internal.v0.models.experience_variant'],
|
|
128
|
+
T['io.flow.experiment.internal.v0.models.feature_variant'],
|
|
129
|
+
]);
|
|
130
|
+
|
|
4
131
|
T['io.flow.session.v0.models.session_experiment_variant_form'] = PropTypes.exact({
|
|
5
132
|
key: PropTypes.string.isRequired,
|
|
6
133
|
});
|
|
@@ -100,6 +227,11 @@ T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'] = P
|
|
|
100
227
|
'merchant_failed_kyb_review',
|
|
101
228
|
]);
|
|
102
229
|
|
|
230
|
+
T['io.flow.organization.onboarding.state.v0.models.rejection_put_form'] = PropTypes.exact({
|
|
231
|
+
reason: T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'].isRequired,
|
|
232
|
+
description: PropTypes.string.isRequired,
|
|
233
|
+
});
|
|
234
|
+
|
|
103
235
|
T['io.flow.organization.onboarding.state.v0.enums.merchant_disabled_reason'] = PropTypes.oneOf(['merchant_deactivated', 'merchant_rejected']);
|
|
104
236
|
|
|
105
237
|
T['io.flow.checkout.v0.models.checkout_urls'] = PropTypes.exact({
|
|
@@ -410,10 +542,6 @@ T['io.flow.billing.v0.models.transaction_metadata_shipping_label_carrier'] = Pro
|
|
|
410
542
|
tracking_number: PropTypes.string.isRequired,
|
|
411
543
|
});
|
|
412
544
|
|
|
413
|
-
T['io.flow.billing.v0.models.transaction_reference'] = PropTypes.exact({
|
|
414
|
-
id: PropTypes.string.isRequired,
|
|
415
|
-
});
|
|
416
|
-
|
|
417
545
|
T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'] = PropTypes.exact({
|
|
418
546
|
transaction_id: PropTypes.string.isRequired,
|
|
419
547
|
});
|
|
@@ -424,6 +552,11 @@ T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'] = PropTy
|
|
|
424
552
|
key: PropTypes.string,
|
|
425
553
|
});
|
|
426
554
|
|
|
555
|
+
T['io.flow.billing.v0.models.transaction_metadata_channel_organization_transaction'] = PropTypes.exact({
|
|
556
|
+
id: PropTypes.string.isRequired,
|
|
557
|
+
metadata: T['io.flow.billing.v0.models.transaction_metadata_payment_transaction'].isRequired,
|
|
558
|
+
});
|
|
559
|
+
|
|
427
560
|
T['io.flow.billing.v0.models.settlement_no_payout'] = PropTypes.exact({
|
|
428
561
|
discriminator: PropTypes.oneOf(['no_payout']).isRequired,
|
|
429
562
|
placeholder: PropTypes.string,
|
|
@@ -643,6 +776,33 @@ T['io.flow.billing.internal.v0.models.manual_transaction_form_order'] = PropType
|
|
|
643
776
|
number: PropTypes.string.isRequired,
|
|
644
777
|
});
|
|
645
778
|
|
|
779
|
+
T['io.flow.billing.internal.v0.enums.manual_transaction_category'] = PropTypes.oneOf([
|
|
780
|
+
'cancelled_order_refund',
|
|
781
|
+
'client_accepted_chargeback',
|
|
782
|
+
'fee_reimbursement',
|
|
783
|
+
'platform_fee',
|
|
784
|
+
'shipping_true_up',
|
|
785
|
+
'tax_credit',
|
|
786
|
+
'carrier_credit',
|
|
787
|
+
'negative_balance_guarantee',
|
|
788
|
+
'bank_payment_failure',
|
|
789
|
+
]);
|
|
790
|
+
|
|
791
|
+
T['io.flow.billing.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
792
|
+
amount: PropTypes.number.isRequired,
|
|
793
|
+
currency: PropTypes.string,
|
|
794
|
+
description: PropTypes.string.isRequired,
|
|
795
|
+
category: T['io.flow.billing.internal.v0.enums.manual_transaction_category'],
|
|
796
|
+
order: T['io.flow.billing.internal.v0.models.manual_transaction_form_order'],
|
|
797
|
+
original_transaction_id: PropTypes.string,
|
|
798
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
799
|
+
});
|
|
800
|
+
|
|
801
|
+
T['io.flow.billing.internal.v0.models.discount'] = PropTypes.exact({
|
|
802
|
+
amount: PropTypes.number.isRequired,
|
|
803
|
+
description: PropTypes.string,
|
|
804
|
+
});
|
|
805
|
+
|
|
646
806
|
T['io.flow.billing.internal.v0.models.billing_label_tracking_summary_reference'] = PropTypes.exact({
|
|
647
807
|
id: PropTypes.string.isRequired,
|
|
648
808
|
});
|
|
@@ -746,6 +906,31 @@ T['io.flow.billing.internal.v0.models.explicit_statement'] = PropTypes.exact({
|
|
|
746
906
|
|
|
747
907
|
T['io.flow.billing.internal.v0.enums.billing_transaction_status'] = PropTypes.oneOf(['pending_proof', 'posted']);
|
|
748
908
|
|
|
909
|
+
T['io.flow.billing.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
910
|
+
'manual',
|
|
911
|
+
'subscription',
|
|
912
|
+
'invoice',
|
|
913
|
+
'transfer',
|
|
914
|
+
'adjustment',
|
|
915
|
+
'reversal',
|
|
916
|
+
'capture',
|
|
917
|
+
'refund',
|
|
918
|
+
'virtual_card_capture',
|
|
919
|
+
'virtual_card_refund',
|
|
920
|
+
'tax_remittance',
|
|
921
|
+
'fully_subsidized_order',
|
|
922
|
+
'credit_payment',
|
|
923
|
+
'dispute',
|
|
924
|
+
'channel',
|
|
925
|
+
'label',
|
|
926
|
+
'order',
|
|
927
|
+
'channel_billed',
|
|
928
|
+
'tax',
|
|
929
|
+
'duty',
|
|
930
|
+
'trueup',
|
|
931
|
+
'carrier_charge',
|
|
932
|
+
]);
|
|
933
|
+
|
|
749
934
|
T['io.flow.billing.internal.v0.enums.billing_statement_attachment_key'] = PropTypes.oneOf([
|
|
750
935
|
'invoice',
|
|
751
936
|
'statement',
|
|
@@ -780,6 +965,21 @@ T['io.flow.billing.internal.v0.models.billing_statement_attachment'] = PropTypes
|
|
|
780
965
|
url: PropTypes.string.isRequired,
|
|
781
966
|
});
|
|
782
967
|
|
|
968
|
+
T['io.flow.billing.internal.v0.models.billing_order_destination'] = PropTypes.exact({
|
|
969
|
+
city: PropTypes.string,
|
|
970
|
+
province: PropTypes.string,
|
|
971
|
+
postal: PropTypes.string,
|
|
972
|
+
country: PropTypes.string.isRequired,
|
|
973
|
+
});
|
|
974
|
+
|
|
975
|
+
T['io.flow.billing.internal.v0.models.billing_order_summary'] = PropTypes.exact({
|
|
976
|
+
number: PropTypes.string.isRequired,
|
|
977
|
+
submitted_at: PropTypes.string.isRequired,
|
|
978
|
+
primary_identifier: PropTypes.string,
|
|
979
|
+
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
980
|
+
destination: T['io.flow.billing.internal.v0.models.billing_order_destination'],
|
|
981
|
+
});
|
|
982
|
+
|
|
783
983
|
T['io.flow.billing.internal.v0.models.bank_payment_status_import_result'] = PropTypes.exact({
|
|
784
984
|
processed_at: PropTypes.string.isRequired,
|
|
785
985
|
number_lines_successful: PropTypes.number.isRequired,
|
|
@@ -793,6 +993,8 @@ T['io.flow.billing.internal.v0.models.bank_payment_status_import'] = PropTypes.e
|
|
|
793
993
|
result: T['io.flow.billing.internal.v0.models.bank_payment_status_import_result'],
|
|
794
994
|
});
|
|
795
995
|
|
|
996
|
+
T['io.flow.billing.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
997
|
+
|
|
796
998
|
T['io.flow.billing.internal.v0.models.bank_payment_reference'] = PropTypes.exact({
|
|
797
999
|
id: PropTypes.string.isRequired,
|
|
798
1000
|
});
|
|
@@ -834,7 +1036,7 @@ T['io.flow.billing.internal.v0.models.account_processing_rates_form'] = PropType
|
|
|
834
1036
|
processing_rates: PropTypes.arrayOf(T['io.flow.billing.internal.v0.models.account_processing_rate_form']).isRequired,
|
|
835
1037
|
});
|
|
836
1038
|
|
|
837
|
-
T['io.flow.billing.internal.v0.enums.account_payment_hold_reason'] = PropTypes.oneOf(['fraudulent', 'invalid_bank_account']);
|
|
1039
|
+
T['io.flow.billing.internal.v0.enums.account_payment_hold_reason'] = PropTypes.oneOf(['fraudulent', 'frozen', 'invalid_bank_account']);
|
|
838
1040
|
|
|
839
1041
|
T['io.flow.billing.internal.v0.models.account_payment_hold_form'] = PropTypes.exact({
|
|
840
1042
|
account_id: PropTypes.string.isRequired,
|
|
@@ -1689,6 +1891,14 @@ T['io.flow.experience.v0.models.address_configuration_province_translation'] = P
|
|
|
1689
1891
|
name: PropTypes.string.isRequired,
|
|
1690
1892
|
});
|
|
1691
1893
|
|
|
1894
|
+
T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_deleted'] = PropTypes.exact({
|
|
1895
|
+
discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_deleted']).isRequired,
|
|
1896
|
+
event_id: PropTypes.string.isRequired,
|
|
1897
|
+
timestamp: PropTypes.string.isRequired,
|
|
1898
|
+
organization: PropTypes.string.isRequired,
|
|
1899
|
+
id: PropTypes.string.isRequired,
|
|
1900
|
+
});
|
|
1901
|
+
|
|
1692
1902
|
T['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_deleted'] = PropTypes.exact({
|
|
1693
1903
|
discriminator: PropTypes.oneOf(['channel_organization_identifier_deleted']).isRequired,
|
|
1694
1904
|
event_id: PropTypes.string.isRequired,
|
|
@@ -1740,6 +1950,8 @@ T['io.flow.shopify.markets.internal.v0.models.shopify_shop_statistics'] = PropTy
|
|
|
1740
1950
|
id: PropTypes.string.isRequired,
|
|
1741
1951
|
initial_catalog_synced_at: PropTypes.string,
|
|
1742
1952
|
catalog_sync_duration: PropTypes.number,
|
|
1953
|
+
restrictions_sync_duration: PropTypes.number,
|
|
1954
|
+
classifications_sync_duration: PropTypes.number,
|
|
1743
1955
|
catalog_products_count: PropTypes.number,
|
|
1744
1956
|
initial_product_restrictions_synced_at: PropTypes.string,
|
|
1745
1957
|
});
|
|
@@ -1972,6 +2184,22 @@ T['io.flow.payment.internal.v0.models.afterpay_authentication'] = PropTypes.exac
|
|
|
1972
2184
|
password_reference: PropTypes.string.isRequired,
|
|
1973
2185
|
});
|
|
1974
2186
|
|
|
2187
|
+
T['io.flow.payment.internal.v0.enums.processor'] = PropTypes.oneOf([
|
|
2188
|
+
'adyen',
|
|
2189
|
+
'afterpay',
|
|
2190
|
+
'bitpay',
|
|
2191
|
+
'stripe',
|
|
2192
|
+
'paypal',
|
|
2193
|
+
'flow_sandbox',
|
|
2194
|
+
'fiserv',
|
|
2195
|
+
'crypto',
|
|
2196
|
+
]);
|
|
2197
|
+
|
|
2198
|
+
T['io.flow.payment.internal.v0.models.routing_processor'] = PropTypes.exact({
|
|
2199
|
+
discriminator: PropTypes.oneOf(['routing_processor']).isRequired,
|
|
2200
|
+
processor: T['io.flow.payment.internal.v0.enums.processor'].isRequired,
|
|
2201
|
+
});
|
|
2202
|
+
|
|
1975
2203
|
T['io.flow.payment.internal.v0.enums.adyen_integration_type'] = PropTypes.oneOf(['hosted_payment_page', 'checkout_payments_api', 'classic_authorise_api']);
|
|
1976
2204
|
|
|
1977
2205
|
T['io.flow.payment.internal.v0.models.adyen_authentication_data_reference'] = PropTypes.exact({
|
|
@@ -2004,6 +2232,16 @@ T['io.flow.payment.internal.v0.models.adyen_authentication_form'] = PropTypes.ex
|
|
|
2004
2232
|
T['io.flow.payment.internal.v0.enums.organization_capability'] = PropTypes.oneOf(['organization', 'flow', 'dynamic']);
|
|
2005
2233
|
T['io.flow.payment.internal.v0.enums.processor_entity_status'] = PropTypes.oneOf(['active', 'draft', 'archived']);
|
|
2006
2234
|
|
|
2235
|
+
T['io.flow.payment.internal.v0.models.processor_merchant_reference'] = PropTypes.exact({
|
|
2236
|
+
id: PropTypes.string.isRequired,
|
|
2237
|
+
organization_id: PropTypes.string.isRequired,
|
|
2238
|
+
key: PropTypes.string.isRequired,
|
|
2239
|
+
processor: T['io.flow.payment.internal.v0.enums.processor'].isRequired,
|
|
2240
|
+
country: PropTypes.string.isRequired,
|
|
2241
|
+
status: T['io.flow.payment.internal.v0.enums.processor_entity_status'].isRequired,
|
|
2242
|
+
organization_capability: T['io.flow.payment.internal.v0.enums.organization_capability'].isRequired,
|
|
2243
|
+
});
|
|
2244
|
+
|
|
2007
2245
|
T['io.flow.payment.internal.v0.models.processor_entity_status_form'] = PropTypes.exact({
|
|
2008
2246
|
status: T['io.flow.payment.internal.v0.enums.processor_entity_status'].isRequired,
|
|
2009
2247
|
});
|
|
@@ -2257,6 +2495,80 @@ T['io.flow.payment.internal.v0.models.afterpay_account'] = PropTypes.exact({
|
|
|
2257
2495
|
updated_at: PropTypes.string.isRequired,
|
|
2258
2496
|
});
|
|
2259
2497
|
|
|
2498
|
+
T['io.flow.payment.internal.v0.models.processor_account_reference'] = PropTypes.exact({
|
|
2499
|
+
id: PropTypes.string.isRequired,
|
|
2500
|
+
organization_id: PropTypes.string.isRequired,
|
|
2501
|
+
key: PropTypes.string.isRequired,
|
|
2502
|
+
processor: T['io.flow.payment.internal.v0.enums.processor'].isRequired,
|
|
2503
|
+
country: PropTypes.string.isRequired,
|
|
2504
|
+
owner: T['io.flow.payment.internal.v0.enums.owner'].isRequired,
|
|
2505
|
+
status: T['io.flow.payment.internal.v0.enums.processor_entity_status'].isRequired,
|
|
2506
|
+
organization_capability: T['io.flow.payment.internal.v0.enums.organization_capability'].isRequired,
|
|
2507
|
+
});
|
|
2508
|
+
|
|
2509
|
+
T['io.flow.payment.internal.v0.models.routing_merchant'] = PropTypes.exact({
|
|
2510
|
+
discriminator: PropTypes.oneOf(['routing_merchant']).isRequired,
|
|
2511
|
+
processor: T['io.flow.payment.internal.v0.enums.processor'].isRequired,
|
|
2512
|
+
processor_account: T['io.flow.payment.internal.v0.models.processor_account_reference'].isRequired,
|
|
2513
|
+
processor_merchant: T['io.flow.payment.internal.v0.models.processor_merchant_reference'].isRequired,
|
|
2514
|
+
});
|
|
2515
|
+
|
|
2516
|
+
T['io.flow.payment.internal.v0.models.routing_account'] = PropTypes.exact({
|
|
2517
|
+
discriminator: PropTypes.oneOf(['routing_account']).isRequired,
|
|
2518
|
+
processor: T['io.flow.payment.internal.v0.enums.processor'].isRequired,
|
|
2519
|
+
processor_account: T['io.flow.payment.internal.v0.models.processor_account_reference'].isRequired,
|
|
2520
|
+
});
|
|
2521
|
+
|
|
2522
|
+
T['io.flow.payment.internal.v0.unions.routing_entity'] = PropTypes.oneOfType([
|
|
2523
|
+
T['io.flow.payment.internal.v0.models.routing_processor'],
|
|
2524
|
+
T['io.flow.payment.internal.v0.models.routing_account'],
|
|
2525
|
+
T['io.flow.payment.internal.v0.models.routing_merchant'],
|
|
2526
|
+
]);
|
|
2527
|
+
|
|
2528
|
+
T['io.flow.payment.internal.v0.models.paypal_merchant'] = PropTypes.exact({
|
|
2529
|
+
discriminator: PropTypes.oneOf(['paypal_merchant']).isRequired,
|
|
2530
|
+
id: PropTypes.string.isRequired,
|
|
2531
|
+
key: PropTypes.string.isRequired,
|
|
2532
|
+
organization_id: PropTypes.string.isRequired,
|
|
2533
|
+
external_id: PropTypes.string.isRequired,
|
|
2534
|
+
processor_account_reference: T['io.flow.payment.internal.v0.models.processor_account_reference'].isRequired,
|
|
2535
|
+
country: PropTypes.string.isRequired,
|
|
2536
|
+
status: T['io.flow.payment.internal.v0.enums.processor_entity_status'].isRequired,
|
|
2537
|
+
organization_capability: T['io.flow.payment.internal.v0.enums.organization_capability'].isRequired,
|
|
2538
|
+
created_at: PropTypes.string.isRequired,
|
|
2539
|
+
updated_at: PropTypes.string.isRequired,
|
|
2540
|
+
});
|
|
2541
|
+
|
|
2542
|
+
T['io.flow.payment.internal.v0.models.fiserv_merchant'] = PropTypes.exact({
|
|
2543
|
+
discriminator: PropTypes.oneOf(['fiserv_merchant']).isRequired,
|
|
2544
|
+
id: PropTypes.string.isRequired,
|
|
2545
|
+
key: PropTypes.string.isRequired,
|
|
2546
|
+
organization_id: PropTypes.string.isRequired,
|
|
2547
|
+
external_id: PropTypes.string.isRequired,
|
|
2548
|
+
processor_account_reference: T['io.flow.payment.internal.v0.models.processor_account_reference'].isRequired,
|
|
2549
|
+
base_currency: PropTypes.string.isRequired,
|
|
2550
|
+
funding_currency: PropTypes.string.isRequired,
|
|
2551
|
+
country: PropTypes.string.isRequired,
|
|
2552
|
+
status: T['io.flow.payment.internal.v0.enums.processor_entity_status'].isRequired,
|
|
2553
|
+
organization_capability: T['io.flow.payment.internal.v0.enums.organization_capability'].isRequired,
|
|
2554
|
+
created_at: PropTypes.string.isRequired,
|
|
2555
|
+
updated_at: PropTypes.string.isRequired,
|
|
2556
|
+
});
|
|
2557
|
+
|
|
2558
|
+
T['io.flow.payment.internal.v0.models.adyen_merchant'] = PropTypes.exact({
|
|
2559
|
+
discriminator: PropTypes.oneOf(['adyen_merchant']).isRequired,
|
|
2560
|
+
id: PropTypes.string.isRequired,
|
|
2561
|
+
key: PropTypes.string.isRequired,
|
|
2562
|
+
organization_id: PropTypes.string.isRequired,
|
|
2563
|
+
external_id: PropTypes.string.isRequired,
|
|
2564
|
+
processor_account_reference: T['io.flow.payment.internal.v0.models.processor_account_reference'].isRequired,
|
|
2565
|
+
country: PropTypes.string.isRequired,
|
|
2566
|
+
status: T['io.flow.payment.internal.v0.enums.processor_entity_status'].isRequired,
|
|
2567
|
+
organization_capability: T['io.flow.payment.internal.v0.enums.organization_capability'].isRequired,
|
|
2568
|
+
created_at: PropTypes.string.isRequired,
|
|
2569
|
+
updated_at: PropTypes.string.isRequired,
|
|
2570
|
+
});
|
|
2571
|
+
|
|
2260
2572
|
T['io.flow.payment.internal.v0.models.adyen_account_put_form'] = PropTypes.exact({
|
|
2261
2573
|
discriminator: PropTypes.oneOf(['adyen_account_put_form']).isRequired,
|
|
2262
2574
|
owner: T['io.flow.payment.internal.v0.enums.owner'],
|
|
@@ -2343,129 +2655,12 @@ T['io.flow.billing.reporting.v0.models.reporting_vat_remittance_rate'] = PropTyp
|
|
|
2343
2655
|
entity: PropTypes.number.isRequired,
|
|
2344
2656
|
});
|
|
2345
2657
|
|
|
2346
|
-
T['io.flow.billing.reporting.v0.models.reporting_payment_metadata_additional_authorizations'] = PropTypes.exact({
|
|
2347
|
-
ids: PropTypes.string.isRequired,
|
|
2348
|
-
});
|
|
2349
|
-
|
|
2350
|
-
T['io.flow.billing.reporting.v0.models.reporting_authorization_reference'] = PropTypes.exact({
|
|
2351
|
-
id: PropTypes.string.isRequired,
|
|
2352
|
-
});
|
|
2353
|
-
|
|
2354
|
-
T['io.flow.payment.internal.v0.enums.processor'] = PropTypes.oneOf([
|
|
2355
|
-
'adyen',
|
|
2356
|
-
'afterpay',
|
|
2357
|
-
'bitpay',
|
|
2358
|
-
'stripe',
|
|
2359
|
-
'paypal',
|
|
2360
|
-
'flow_sandbox',
|
|
2361
|
-
'fiserv',
|
|
2362
|
-
'crypto',
|
|
2363
|
-
]);
|
|
2364
|
-
|
|
2365
|
-
T['io.flow.payment.internal.v0.models.routing_processor'] = PropTypes.exact({
|
|
2366
|
-
discriminator: PropTypes.oneOf(['routing_processor']).isRequired,
|
|
2367
|
-
processor: T['io.flow.payment.internal.v0.enums.processor'].isRequired,
|
|
2368
|
-
});
|
|
2369
|
-
|
|
2370
|
-
T['io.flow.payment.internal.v0.models.processor_merchant_reference'] = PropTypes.exact({
|
|
2371
|
-
id: PropTypes.string.isRequired,
|
|
2372
|
-
organization_id: PropTypes.string.isRequired,
|
|
2373
|
-
key: PropTypes.string.isRequired,
|
|
2374
|
-
processor: T['io.flow.payment.internal.v0.enums.processor'].isRequired,
|
|
2375
|
-
country: PropTypes.string.isRequired,
|
|
2376
|
-
status: T['io.flow.payment.internal.v0.enums.processor_entity_status'].isRequired,
|
|
2377
|
-
organization_capability: T['io.flow.payment.internal.v0.enums.organization_capability'].isRequired,
|
|
2378
|
-
});
|
|
2379
|
-
|
|
2380
|
-
T['io.flow.payment.internal.v0.models.processor_account_reference'] = PropTypes.exact({
|
|
2381
|
-
id: PropTypes.string.isRequired,
|
|
2382
|
-
organization_id: PropTypes.string.isRequired,
|
|
2383
|
-
key: PropTypes.string.isRequired,
|
|
2384
|
-
processor: T['io.flow.payment.internal.v0.enums.processor'].isRequired,
|
|
2385
|
-
country: PropTypes.string.isRequired,
|
|
2386
|
-
owner: T['io.flow.payment.internal.v0.enums.owner'].isRequired,
|
|
2387
|
-
status: T['io.flow.payment.internal.v0.enums.processor_entity_status'].isRequired,
|
|
2388
|
-
organization_capability: T['io.flow.payment.internal.v0.enums.organization_capability'].isRequired,
|
|
2389
|
-
});
|
|
2390
|
-
|
|
2391
|
-
T['io.flow.payment.internal.v0.models.routing_merchant'] = PropTypes.exact({
|
|
2392
|
-
discriminator: PropTypes.oneOf(['routing_merchant']).isRequired,
|
|
2393
|
-
processor: T['io.flow.payment.internal.v0.enums.processor'].isRequired,
|
|
2394
|
-
processor_account: T['io.flow.payment.internal.v0.models.processor_account_reference'].isRequired,
|
|
2395
|
-
processor_merchant: T['io.flow.payment.internal.v0.models.processor_merchant_reference'].isRequired,
|
|
2396
|
-
});
|
|
2397
|
-
|
|
2398
|
-
T['io.flow.payment.internal.v0.models.routing_account'] = PropTypes.exact({
|
|
2399
|
-
discriminator: PropTypes.oneOf(['routing_account']).isRequired,
|
|
2400
|
-
processor: T['io.flow.payment.internal.v0.enums.processor'].isRequired,
|
|
2401
|
-
processor_account: T['io.flow.payment.internal.v0.models.processor_account_reference'].isRequired,
|
|
2402
|
-
});
|
|
2403
|
-
|
|
2404
|
-
T['io.flow.payment.internal.v0.unions.routing_entity'] = PropTypes.oneOfType([
|
|
2405
|
-
T['io.flow.payment.internal.v0.models.routing_processor'],
|
|
2406
|
-
T['io.flow.payment.internal.v0.models.routing_account'],
|
|
2407
|
-
T['io.flow.payment.internal.v0.models.routing_merchant'],
|
|
2408
|
-
]);
|
|
2409
|
-
|
|
2410
|
-
T['io.flow.payment.internal.v0.models.paypal_merchant'] = PropTypes.exact({
|
|
2411
|
-
discriminator: PropTypes.oneOf(['paypal_merchant']).isRequired,
|
|
2412
|
-
id: PropTypes.string.isRequired,
|
|
2413
|
-
key: PropTypes.string.isRequired,
|
|
2414
|
-
organization_id: PropTypes.string.isRequired,
|
|
2415
|
-
external_id: PropTypes.string.isRequired,
|
|
2416
|
-
processor_account_reference: T['io.flow.payment.internal.v0.models.processor_account_reference'].isRequired,
|
|
2417
|
-
country: PropTypes.string.isRequired,
|
|
2418
|
-
status: T['io.flow.payment.internal.v0.enums.processor_entity_status'].isRequired,
|
|
2419
|
-
organization_capability: T['io.flow.payment.internal.v0.enums.organization_capability'].isRequired,
|
|
2420
|
-
created_at: PropTypes.string.isRequired,
|
|
2421
|
-
updated_at: PropTypes.string.isRequired,
|
|
2422
|
-
});
|
|
2423
|
-
|
|
2424
|
-
T['io.flow.payment.internal.v0.models.fiserv_merchant'] = PropTypes.exact({
|
|
2425
|
-
discriminator: PropTypes.oneOf(['fiserv_merchant']).isRequired,
|
|
2426
|
-
id: PropTypes.string.isRequired,
|
|
2427
|
-
key: PropTypes.string.isRequired,
|
|
2428
|
-
organization_id: PropTypes.string.isRequired,
|
|
2429
|
-
external_id: PropTypes.string.isRequired,
|
|
2430
|
-
processor_account_reference: T['io.flow.payment.internal.v0.models.processor_account_reference'].isRequired,
|
|
2431
|
-
base_currency: PropTypes.string.isRequired,
|
|
2432
|
-
funding_currency: PropTypes.string.isRequired,
|
|
2433
|
-
country: PropTypes.string.isRequired,
|
|
2434
|
-
status: T['io.flow.payment.internal.v0.enums.processor_entity_status'].isRequired,
|
|
2435
|
-
organization_capability: T['io.flow.payment.internal.v0.enums.organization_capability'].isRequired,
|
|
2436
|
-
created_at: PropTypes.string.isRequired,
|
|
2437
|
-
updated_at: PropTypes.string.isRequired,
|
|
2438
|
-
});
|
|
2439
|
-
|
|
2440
|
-
T['io.flow.payment.internal.v0.models.adyen_merchant'] = PropTypes.exact({
|
|
2441
|
-
discriminator: PropTypes.oneOf(['adyen_merchant']).isRequired,
|
|
2442
|
-
id: PropTypes.string.isRequired,
|
|
2443
|
-
key: PropTypes.string.isRequired,
|
|
2444
|
-
organization_id: PropTypes.string.isRequired,
|
|
2445
|
-
external_id: PropTypes.string.isRequired,
|
|
2446
|
-
processor_account_reference: T['io.flow.payment.internal.v0.models.processor_account_reference'].isRequired,
|
|
2447
|
-
country: PropTypes.string.isRequired,
|
|
2448
|
-
status: T['io.flow.payment.internal.v0.enums.processor_entity_status'].isRequired,
|
|
2449
|
-
organization_capability: T['io.flow.payment.internal.v0.enums.organization_capability'].isRequired,
|
|
2450
|
-
created_at: PropTypes.string.isRequired,
|
|
2451
|
-
updated_at: PropTypes.string.isRequired,
|
|
2452
|
-
});
|
|
2453
|
-
|
|
2454
2658
|
T['io.flow.billing.reporting.v0.models.reporting_usd'] = PropTypes.exact({
|
|
2455
2659
|
usd: PropTypes.number.isRequired,
|
|
2456
2660
|
});
|
|
2457
2661
|
|
|
2458
2662
|
T['io.flow.billing.reporting.v0.enums.reporting_fulfillment_is_virtual'] = PropTypes.oneOf(['all', 'mixed', 'none']);
|
|
2459
2663
|
|
|
2460
|
-
T['io.flow.billing.reporting.v0.models.reporting_payment_metadata'] = PropTypes.exact({
|
|
2461
|
-
gateway: T['io.flow.payment.internal.v0.enums.processor'].isRequired,
|
|
2462
|
-
method: PropTypes.string.isRequired,
|
|
2463
|
-
psp_reference: PropTypes.string,
|
|
2464
|
-
authorization: T['io.flow.billing.reporting.v0.models.reporting_authorization_reference'],
|
|
2465
|
-
settlement_date: PropTypes.string.isRequired,
|
|
2466
|
-
additional_authorizations: T['io.flow.billing.reporting.v0.models.reporting_payment_metadata_additional_authorizations'],
|
|
2467
|
-
});
|
|
2468
|
-
|
|
2469
2664
|
T['io.flow.billing.reporting.v0.models.reporting_business'] = PropTypes.exact({
|
|
2470
2665
|
vat_registration_number: PropTypes.string.isRequired,
|
|
2471
2666
|
name: PropTypes.string,
|
|
@@ -2477,6 +2672,7 @@ T['io.flow.billing.reporting.v0.models.reporting_fx'] = PropTypes.exact({
|
|
|
2477
2672
|
product: T['io.flow.billing.reporting.v0.models.reporting_usd'].isRequired,
|
|
2478
2673
|
tax: T['io.flow.billing.reporting.v0.models.reporting_usd'].isRequired,
|
|
2479
2674
|
duty: T['io.flow.billing.reporting.v0.models.reporting_usd'].isRequired,
|
|
2675
|
+
tips: T['io.flow.billing.reporting.v0.models.reporting_usd'],
|
|
2480
2676
|
total: T['io.flow.billing.reporting.v0.models.reporting_usd'].isRequired,
|
|
2481
2677
|
});
|
|
2482
2678
|
|
|
@@ -2491,6 +2687,9 @@ T['io.flow.billing.reporting.v0.models.reporting_fulfillment_is'] = PropTypes.ex
|
|
|
2491
2687
|
wyol: PropTypes.bool.isRequired,
|
|
2492
2688
|
b2b: PropTypes.bool.isRequired,
|
|
2493
2689
|
domestic: PropTypes.bool.isRequired,
|
|
2690
|
+
combined_shipment: PropTypes.bool,
|
|
2691
|
+
order_cancelled: PropTypes.bool,
|
|
2692
|
+
lvg: PropTypes.bool,
|
|
2494
2693
|
});
|
|
2495
2694
|
|
|
2496
2695
|
T['io.flow.billing.reporting.v0.models.reporting_refund_reference'] = PropTypes.exact({
|
|
@@ -2523,15 +2722,20 @@ T['io.flow.billing.reporting.v0.models.report_order_reference'] = PropTypes.exac
|
|
|
2523
2722
|
order_number: PropTypes.string.isRequired,
|
|
2524
2723
|
});
|
|
2525
2724
|
|
|
2725
|
+
T['io.flow.billing.internal.v0.enums.account_type'] = PropTypes.oneOf(['channel', 'organization']);
|
|
2526
2726
|
T['io.flow.billing.reporting.v0.enums.report_payment_type'] = PropTypes.oneOf(['credit', 'debit']);
|
|
2527
2727
|
|
|
2528
2728
|
T['io.flow.billing.reporting.v0.enums.report_type'] = PropTypes.oneOf([
|
|
2529
2729
|
'sales_record',
|
|
2730
|
+
'refund_record',
|
|
2731
|
+
'other_record',
|
|
2732
|
+
'pending_record',
|
|
2530
2733
|
'trueup_overview',
|
|
2531
2734
|
'non_channel_payment_bank_account',
|
|
2532
2735
|
'scheduled_payment',
|
|
2533
2736
|
'account_quarterly_balances',
|
|
2534
2737
|
'invariants',
|
|
2738
|
+
'payments',
|
|
2535
2739
|
]);
|
|
2536
2740
|
|
|
2537
2741
|
T['io.flow.billing.reporting.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -2555,6 +2759,23 @@ T['io.flow.billing.reporting.v0.models.report'] = PropTypes.exact({
|
|
|
2555
2759
|
processed_at: PropTypes.string,
|
|
2556
2760
|
});
|
|
2557
2761
|
|
|
2762
|
+
T['io.flow.billing.internal.v0.models.account_source'] = PropTypes.exact({
|
|
2763
|
+
id: PropTypes.string.isRequired,
|
|
2764
|
+
type: T['io.flow.billing.internal.v0.enums.account_type'].isRequired,
|
|
2765
|
+
});
|
|
2766
|
+
|
|
2767
|
+
T['io.flow.billing.internal.v0.models.account_summary'] = PropTypes.exact({
|
|
2768
|
+
id: PropTypes.string.isRequired,
|
|
2769
|
+
currency: PropTypes.string.isRequired,
|
|
2770
|
+
source: T['io.flow.billing.internal.v0.models.account_source'].isRequired,
|
|
2771
|
+
});
|
|
2772
|
+
|
|
2773
|
+
T['io.flow.billing.reporting.v0.models.report_account'] = PropTypes.exact({
|
|
2774
|
+
id: PropTypes.string.isRequired,
|
|
2775
|
+
currency: PropTypes.string.isRequired,
|
|
2776
|
+
source: T['io.flow.billing.internal.v0.models.account_source'].isRequired,
|
|
2777
|
+
});
|
|
2778
|
+
|
|
2558
2779
|
T['io.flow.billing.reporting.v0.models.report_bank_account'] = PropTypes.exact({
|
|
2559
2780
|
id: PropTypes.string,
|
|
2560
2781
|
last4: PropTypes.string,
|
|
@@ -2566,6 +2787,21 @@ T['io.flow.billing.reporting.v0.models.report_payment'] = PropTypes.exact({
|
|
|
2566
2787
|
created_at: PropTypes.string.isRequired,
|
|
2567
2788
|
});
|
|
2568
2789
|
|
|
2790
|
+
T['io.flow.billing.reporting.v0.models.scheduled_payment'] = PropTypes.exact({
|
|
2791
|
+
payment: T['io.flow.billing.reporting.v0.models.report_payment'].isRequired,
|
|
2792
|
+
bank_account: T['io.flow.billing.reporting.v0.models.report_bank_account_cleartext'].isRequired,
|
|
2793
|
+
account: T['io.flow.billing.reporting.v0.models.report_account'].isRequired,
|
|
2794
|
+
merchant: T['io.flow.billing.reporting.v0.models.report_merchant'].isRequired,
|
|
2795
|
+
owner: T['io.flow.billing.reporting.v0.models.report_owner'].isRequired,
|
|
2796
|
+
description: PropTypes.string.isRequired,
|
|
2797
|
+
});
|
|
2798
|
+
|
|
2799
|
+
T['io.flow.billing.reporting.v0.models.non_channel_payment_bank_account'] = PropTypes.exact({
|
|
2800
|
+
payment: T['io.flow.billing.reporting.v0.models.report_payment'].isRequired,
|
|
2801
|
+
bank_account: T['io.flow.billing.reporting.v0.models.report_bank_account'].isRequired,
|
|
2802
|
+
account: T['io.flow.billing.reporting.v0.models.report_account'].isRequired,
|
|
2803
|
+
});
|
|
2804
|
+
|
|
2569
2805
|
T['io.flow.billing.reporting.v0.models.reporting_monetary_value'] = PropTypes.exact({
|
|
2570
2806
|
transaction: PropTypes.number.isRequired,
|
|
2571
2807
|
merchant: PropTypes.number.isRequired,
|
|
@@ -2575,9 +2811,11 @@ T['io.flow.billing.reporting.v0.models.reporting_monetary_value'] = PropTypes.ex
|
|
|
2575
2811
|
});
|
|
2576
2812
|
|
|
2577
2813
|
T['io.flow.billing.reporting.v0.models.reporting_payment'] = PropTypes.exact({
|
|
2578
|
-
metadata: T['io.flow.billing.reporting.v0.models.reporting_payment_metadata'],
|
|
2579
2814
|
psp: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2580
2815
|
credit: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2816
|
+
subsidized: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2817
|
+
manual: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2818
|
+
cod: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2581
2819
|
total: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2582
2820
|
});
|
|
2583
2821
|
|
|
@@ -2588,6 +2826,7 @@ T['io.flow.billing.reporting.v0.models.reporting_shopper_fees'] = PropTypes.exac
|
|
|
2588
2826
|
ccf: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2589
2827
|
emergency: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2590
2828
|
peak: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2829
|
+
total: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'],
|
|
2591
2830
|
});
|
|
2592
2831
|
|
|
2593
2832
|
T['io.flow.billing.reporting.v0.models.fulfillment_shopper_breakdown'] = PropTypes.exact({
|
|
@@ -2597,6 +2836,7 @@ T['io.flow.billing.reporting.v0.models.fulfillment_shopper_breakdown'] = PropTyp
|
|
|
2597
2836
|
subtotal: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2598
2837
|
tax: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2599
2838
|
duty: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2839
|
+
tips: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'],
|
|
2600
2840
|
discount: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2601
2841
|
total: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
2602
2842
|
});
|
|
@@ -3955,6 +4195,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
|
3955
4195
|
published_at: PropTypes.string,
|
|
3956
4196
|
created_at: PropTypes.string.isRequired,
|
|
3957
4197
|
updated_at: PropTypes.string.isRequired,
|
|
4198
|
+
has_variants_that_requires_components: PropTypes.bool,
|
|
3958
4199
|
});
|
|
3959
4200
|
|
|
3960
4201
|
T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
|
|
@@ -4387,79 +4628,6 @@ T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
|
|
|
4387
4628
|
captureDelayHours: PropTypes.number,
|
|
4388
4629
|
});
|
|
4389
4630
|
|
|
4390
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount_form'] = PropTypes.exact({
|
|
4391
|
-
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
4392
|
-
price: PropTypes.number.isRequired,
|
|
4393
|
-
});
|
|
4394
|
-
|
|
4395
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_reference'] = PropTypes.exact({
|
|
4396
|
-
id: PropTypes.string.isRequired,
|
|
4397
|
-
key: PropTypes.string.isRequired,
|
|
4398
|
-
number: PropTypes.string.isRequired,
|
|
4399
|
-
});
|
|
4400
|
-
|
|
4401
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'] = PropTypes.exact({
|
|
4402
|
-
rate: PropTypes.number.isRequired,
|
|
4403
|
-
amount: PropTypes.number.isRequired,
|
|
4404
|
-
});
|
|
4405
|
-
|
|
4406
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping_form'] = PropTypes.exact({
|
|
4407
|
-
discriminator: PropTypes.oneOf(['shipping']).isRequired,
|
|
4408
|
-
price: PropTypes.number.isRequired,
|
|
4409
|
-
discount: PropTypes.number,
|
|
4410
|
-
tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
4411
|
-
duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
4412
|
-
});
|
|
4413
|
-
|
|
4414
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item_form'] = PropTypes.exact({
|
|
4415
|
-
discriminator: PropTypes.oneOf(['item']).isRequired,
|
|
4416
|
-
item_number: PropTypes.string.isRequired,
|
|
4417
|
-
quantity: PropTypes.number.isRequired,
|
|
4418
|
-
unit_price: PropTypes.number.isRequired,
|
|
4419
|
-
unit_discount: PropTypes.number,
|
|
4420
|
-
unit_tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
4421
|
-
unit_duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy_form'],
|
|
4422
|
-
});
|
|
4423
|
-
|
|
4424
|
-
T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line_form'] = PropTypes.oneOfType([
|
|
4425
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item_form'],
|
|
4426
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount_form'],
|
|
4427
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping_form'],
|
|
4428
|
-
]);
|
|
4429
|
-
|
|
4430
|
-
T['io.flow.consumer.invoice.v0.models.credit_memo_form'] = PropTypes.exact({
|
|
4431
|
-
refund_id: PropTypes.string,
|
|
4432
|
-
refund_key: PropTypes.string,
|
|
4433
|
-
refund_identifier: PropTypes.string,
|
|
4434
|
-
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line_form']).isRequired,
|
|
4435
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
4436
|
-
});
|
|
4437
|
-
|
|
4438
|
-
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_customer_type'] = PropTypes.oneOf(['business_eu_verified', 'business_non_verified', 'individual']);
|
|
4439
|
-
T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
|
|
4440
|
-
|
|
4441
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'] = PropTypes.exact({
|
|
4442
|
-
id: PropTypes.string.isRequired,
|
|
4443
|
-
number: PropTypes.string.isRequired,
|
|
4444
|
-
submitted_at: PropTypes.string.isRequired,
|
|
4445
|
-
});
|
|
4446
|
-
|
|
4447
|
-
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_document_type'] = PropTypes.oneOf(['pdf']);
|
|
4448
|
-
T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'] = PropTypes.oneOf(['self_bill_invoice', 'invoice']);
|
|
4449
|
-
|
|
4450
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_document'] = PropTypes.exact({
|
|
4451
|
-
type: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_document_type'].isRequired,
|
|
4452
|
-
language: PropTypes.string.isRequired,
|
|
4453
|
-
url: PropTypes.string.isRequired,
|
|
4454
|
-
});
|
|
4455
|
-
|
|
4456
|
-
T['io.flow.consumer.invoice.v0.models.b2b_invoice_reference'] = PropTypes.exact({
|
|
4457
|
-
id: PropTypes.string.isRequired,
|
|
4458
|
-
key: PropTypes.string.isRequired,
|
|
4459
|
-
number: PropTypes.string.isRequired,
|
|
4460
|
-
});
|
|
4461
|
-
|
|
4462
|
-
T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'] = PropTypes.oneOf(['pending', 'available', 'invalid']);
|
|
4463
4631
|
T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'] = PropTypes.oneOf(['accepted', 'rejected', 'review', 'edit_review', 'edit_accepted']);
|
|
4464
4632
|
|
|
4465
4633
|
T['io.flow.channel.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact({
|
|
@@ -4518,6 +4686,7 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason']
|
|
|
4518
4686
|
'unsupported_virtual_goods',
|
|
4519
4687
|
'non_matching_currencies',
|
|
4520
4688
|
'unsupported_order_edit',
|
|
4689
|
+
'order_missing',
|
|
4521
4690
|
]);
|
|
4522
4691
|
|
|
4523
4692
|
T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
|
|
@@ -4525,6 +4694,28 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTy
|
|
|
4525
4694
|
rejection_reason: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'],
|
|
4526
4695
|
});
|
|
4527
4696
|
|
|
4697
|
+
T['io.flow.shopify.markets.internal.v0.enums.tax_and_duty_inclusivity_setting'] = PropTypes.oneOf([
|
|
4698
|
+
'duty_exclusive_tax_exclusive',
|
|
4699
|
+
'duty_inclusive_tax_exclusive',
|
|
4700
|
+
'duty_exclusive_tax_inclusive',
|
|
4701
|
+
'duty_inclusive_tax_inclusive',
|
|
4702
|
+
]);
|
|
4703
|
+
|
|
4704
|
+
T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
4705
|
+
id: PropTypes.string.isRequired,
|
|
4706
|
+
organization_id: PropTypes.string.isRequired,
|
|
4707
|
+
shopify_order_id: PropTypes.string.isRequired,
|
|
4708
|
+
order_number: PropTypes.string.isRequired,
|
|
4709
|
+
tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
4710
|
+
});
|
|
4711
|
+
|
|
4712
|
+
T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
4713
|
+
discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
|
|
4714
|
+
event_id: PropTypes.string.isRequired,
|
|
4715
|
+
timestamp: PropTypes.string.isRequired,
|
|
4716
|
+
order_tax_and_duty_inclusivity_setting: T['io.flow.shopify.markets.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
4717
|
+
});
|
|
4718
|
+
|
|
4528
4719
|
T['io.flow.shopify.markets.internal.v0.enums.channel_order_fulfillment_status_code'] = PropTypes.oneOf(['unfulfilled', 'fulfilled', 'partial', 'cancelled']);
|
|
4529
4720
|
|
|
4530
4721
|
T['io.flow.shopify.markets.internal.v0.models.channel_order_summary_fulfillment_details'] = PropTypes.exact({
|
|
@@ -5714,6 +5905,14 @@ T['io.flow.stripe.v0.models.stripe_event'] = PropTypes.exact({
|
|
|
5714
5905
|
type: PropTypes.string.isRequired,
|
|
5715
5906
|
});
|
|
5716
5907
|
|
|
5908
|
+
T['io.flow.stripe.v0.enums.dispute_event_type'] = PropTypes.oneOf([
|
|
5909
|
+
'charge.dispute.closed',
|
|
5910
|
+
'charge.dispute.created',
|
|
5911
|
+
'charge.dispute.funds_reinstated',
|
|
5912
|
+
'charge.dispute.funds_withdrawn',
|
|
5913
|
+
'charge.dispute.updated',
|
|
5914
|
+
]);
|
|
5915
|
+
|
|
5717
5916
|
T['io.flow.stripe.v0.enums.use_stripe_sdk_type'] = PropTypes.oneOf(['three_d_secure_redirect', 'stripe_3ds2_fingerprint']);
|
|
5718
5917
|
|
|
5719
5918
|
T['io.flow.stripe.v0.models.three_d_secure_redirect'] = PropTypes.exact({
|
|
@@ -5826,6 +6025,54 @@ T['io.flow.stripe.v0.models.payment_method_details_klarna_information'] = PropTy
|
|
|
5826
6025
|
preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
|
|
5827
6026
|
});
|
|
5828
6027
|
|
|
6028
|
+
T['io.flow.stripe.v0.enums.bic_ideal'] = PropTypes.oneOf([
|
|
6029
|
+
'ABNANL2A',
|
|
6030
|
+
'ASNBNL21',
|
|
6031
|
+
'BITSNL2A',
|
|
6032
|
+
'BUNQNL2A',
|
|
6033
|
+
'FVLBNL22',
|
|
6034
|
+
'HANDNL2A',
|
|
6035
|
+
'INGBNL2A',
|
|
6036
|
+
'KNABNL2H',
|
|
6037
|
+
'MOYONL21',
|
|
6038
|
+
'NNBANL2G',
|
|
6039
|
+
'NTSBDEB1',
|
|
6040
|
+
'RABONL2U',
|
|
6041
|
+
'RBRBNL21',
|
|
6042
|
+
'REVOIE23',
|
|
6043
|
+
'REVOLT21',
|
|
6044
|
+
'SNSBNL2A',
|
|
6045
|
+
'TRIONL2U',
|
|
6046
|
+
]);
|
|
6047
|
+
|
|
6048
|
+
T['io.flow.stripe.v0.enums.bank_ideal'] = PropTypes.oneOf([
|
|
6049
|
+
'abn_amro',
|
|
6050
|
+
'asn_bank',
|
|
6051
|
+
'bunq',
|
|
6052
|
+
'handelsbanken',
|
|
6053
|
+
'ing',
|
|
6054
|
+
'knab',
|
|
6055
|
+
'moneyou',
|
|
6056
|
+
'n26',
|
|
6057
|
+
'nn',
|
|
6058
|
+
'rabobank',
|
|
6059
|
+
'regiobank',
|
|
6060
|
+
'revolut',
|
|
6061
|
+
'sns_bank',
|
|
6062
|
+
'triodos_bank',
|
|
6063
|
+
'van_lanschot',
|
|
6064
|
+
'yoursafe',
|
|
6065
|
+
]);
|
|
6066
|
+
|
|
6067
|
+
T['io.flow.stripe.v0.models.payment_method_details_ideal_information'] = PropTypes.exact({
|
|
6068
|
+
bank: T['io.flow.stripe.v0.enums.bank_ideal'],
|
|
6069
|
+
bic: T['io.flow.stripe.v0.enums.bic_ideal'],
|
|
6070
|
+
generated_sepa_debit: PropTypes.string,
|
|
6071
|
+
generated_sepa_debit_mandate: PropTypes.string,
|
|
6072
|
+
iban_last4: PropTypes.string,
|
|
6073
|
+
verified_name: PropTypes.string,
|
|
6074
|
+
});
|
|
6075
|
+
|
|
5829
6076
|
T['io.flow.stripe.v0.enums.three_ds_result_reason'] = PropTypes.oneOf([
|
|
5830
6077
|
'card_not_enrolled',
|
|
5831
6078
|
'network_not_supported',
|
|
@@ -5883,6 +6130,19 @@ T['io.flow.stripe.v0.models.plan'] = PropTypes.exact({
|
|
|
5883
6130
|
type: PropTypes.string,
|
|
5884
6131
|
});
|
|
5885
6132
|
|
|
6133
|
+
T['io.flow.stripe.v0.enums.preferred_language_bancontact'] = PropTypes.oneOf(['de', 'en', 'fr', 'nl']);
|
|
6134
|
+
|
|
6135
|
+
T['io.flow.stripe.v0.models.payment_method_details_bancontact_information'] = PropTypes.exact({
|
|
6136
|
+
bank_code: PropTypes.string,
|
|
6137
|
+
bank_name: PropTypes.string,
|
|
6138
|
+
bic: PropTypes.string,
|
|
6139
|
+
generated_sepa_debit: PropTypes.string,
|
|
6140
|
+
generated_sepa_debit_mandate: PropTypes.string,
|
|
6141
|
+
iban_last4: PropTypes.string,
|
|
6142
|
+
preferred_language: T['io.flow.stripe.v0.enums.preferred_language_bancontact'],
|
|
6143
|
+
verified_name: PropTypes.string,
|
|
6144
|
+
});
|
|
6145
|
+
|
|
5886
6146
|
T['io.flow.stripe.v0.models.klarna_dob_form'] = PropTypes.exact({
|
|
5887
6147
|
day: PropTypes.number.isRequired,
|
|
5888
6148
|
month: PropTypes.number.isRequired,
|
|
@@ -5893,6 +6153,10 @@ T['io.flow.stripe.v0.models.payment_method_klarna_form'] = PropTypes.exact({
|
|
|
5893
6153
|
dob: T['io.flow.stripe.v0.models.klarna_dob_form'],
|
|
5894
6154
|
});
|
|
5895
6155
|
|
|
6156
|
+
T['io.flow.stripe.v0.models.payment_method_ideal_form'] = PropTypes.exact({
|
|
6157
|
+
bank: PropTypes.string,
|
|
6158
|
+
});
|
|
6159
|
+
|
|
5896
6160
|
T['io.flow.stripe.v0.models.payment_method_card_form'] = PropTypes.exact({
|
|
5897
6161
|
exp_month: PropTypes.string.isRequired,
|
|
5898
6162
|
exp_year: PropTypes.string.isRequired,
|
|
@@ -5909,6 +6173,10 @@ T['io.flow.stripe.v0.models.card_networks'] = PropTypes.exact({
|
|
|
5909
6173
|
preferred: PropTypes.string,
|
|
5910
6174
|
});
|
|
5911
6175
|
|
|
6176
|
+
T['io.flow.stripe.v0.models.payment_method_options_bancontact_form'] = PropTypes.exact({
|
|
6177
|
+
preferred_language: T['io.flow.stripe.v0.enums.preferred_language_bancontact'].isRequired,
|
|
6178
|
+
});
|
|
6179
|
+
|
|
5912
6180
|
T['io.flow.stripe.v0.models.payment_method_options_card_form'] = PropTypes.exact({
|
|
5913
6181
|
network: PropTypes.string,
|
|
5914
6182
|
request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
|
|
@@ -5916,6 +6184,10 @@ T['io.flow.stripe.v0.models.payment_method_options_card_form'] = PropTypes.exact
|
|
|
5916
6184
|
mcc: PropTypes.string,
|
|
5917
6185
|
});
|
|
5918
6186
|
|
|
6187
|
+
T['io.flow.stripe.v0.models.payment_method_options_bancontact'] = PropTypes.exact({
|
|
6188
|
+
preferred_language: T['io.flow.stripe.v0.enums.preferred_language_bancontact'].isRequired,
|
|
6189
|
+
});
|
|
6190
|
+
|
|
5919
6191
|
T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
|
|
5920
6192
|
network: PropTypes.string,
|
|
5921
6193
|
request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
|
|
@@ -5935,6 +6207,15 @@ T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
|
|
|
5935
6207
|
]);
|
|
5936
6208
|
|
|
5937
6209
|
T['io.flow.stripe.v0.enums.setup_future_usage'] = PropTypes.oneOf(['on_session', 'off_session']);
|
|
6210
|
+
|
|
6211
|
+
T['io.flow.stripe.v0.models.payment_method_options_ideal_form'] = PropTypes.exact({
|
|
6212
|
+
setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
|
|
6213
|
+
});
|
|
6214
|
+
|
|
6215
|
+
T['io.flow.stripe.v0.models.payment_method_options_ideal'] = PropTypes.exact({
|
|
6216
|
+
setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
|
|
6217
|
+
});
|
|
6218
|
+
|
|
5938
6219
|
T['io.flow.stripe.v0.enums.confirmation_method'] = PropTypes.oneOf(['automatic', 'manual']);
|
|
5939
6220
|
T['io.flow.stripe.v0.enums.capture_method'] = PropTypes.oneOf(['automatic', 'manual']);
|
|
5940
6221
|
|
|
@@ -5971,7 +6252,9 @@ T['io.flow.stripe.v0.models.payment_method_options_klarna_form'] = PropTypes.exa
|
|
|
5971
6252
|
|
|
5972
6253
|
T['io.flow.stripe.v0.models.payment_method_options_form'] = PropTypes.exact({
|
|
5973
6254
|
card: T['io.flow.stripe.v0.models.payment_method_options_card_form'],
|
|
6255
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_options_ideal_form'],
|
|
5974
6256
|
klarna: T['io.flow.stripe.v0.models.payment_method_options_klarna_form'],
|
|
6257
|
+
bancontact: T['io.flow.stripe.v0.models.payment_method_options_bancontact_form'],
|
|
5975
6258
|
});
|
|
5976
6259
|
|
|
5977
6260
|
T['io.flow.stripe.v0.models.payment_method_options_klarna'] = PropTypes.exact({
|
|
@@ -5983,7 +6266,9 @@ T['io.flow.stripe.v0.models.payment_method_options_klarna'] = PropTypes.exact({
|
|
|
5983
6266
|
|
|
5984
6267
|
T['io.flow.stripe.v0.models.payment_method_options'] = PropTypes.exact({
|
|
5985
6268
|
card: T['io.flow.stripe.v0.models.payment_method_options_card'],
|
|
6269
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_options_ideal'],
|
|
5986
6270
|
klarna: T['io.flow.stripe.v0.models.payment_method_options_klarna'],
|
|
6271
|
+
bancontact: T['io.flow.stripe.v0.models.payment_method_options_bancontact'],
|
|
5987
6272
|
});
|
|
5988
6273
|
|
|
5989
6274
|
T['io.flow.stripe.v0.enums.order_item_type'] = PropTypes.oneOf(['sku', 'tax', 'shipping', 'discount']);
|
|
@@ -6056,6 +6341,13 @@ T['io.flow.stripe.v0.models.payment_method_form_klarna'] = PropTypes.exact({
|
|
|
6056
6341
|
klarna: T['io.flow.stripe.v0.models.payment_method_klarna_form'].isRequired,
|
|
6057
6342
|
});
|
|
6058
6343
|
|
|
6344
|
+
T['io.flow.stripe.v0.models.payment_method_form_ideal'] = PropTypes.exact({
|
|
6345
|
+
type: PropTypes.oneOf(['ideal']).isRequired,
|
|
6346
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
6347
|
+
metadata: PropTypes.object,
|
|
6348
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_ideal_form'].isRequired,
|
|
6349
|
+
});
|
|
6350
|
+
|
|
6059
6351
|
T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
|
|
6060
6352
|
type: PropTypes.oneOf(['card']).isRequired,
|
|
6061
6353
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
@@ -6063,9 +6355,18 @@ T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
|
|
|
6063
6355
|
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
6064
6356
|
});
|
|
6065
6357
|
|
|
6358
|
+
T['io.flow.stripe.v0.models.payment_method_form_bancontact'] = PropTypes.exact({
|
|
6359
|
+
type: PropTypes.oneOf(['bancontact']).isRequired,
|
|
6360
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
6361
|
+
metadata: PropTypes.object,
|
|
6362
|
+
bancontact: PropTypes.object.isRequired,
|
|
6363
|
+
});
|
|
6364
|
+
|
|
6066
6365
|
T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([
|
|
6067
6366
|
T['io.flow.stripe.v0.models.payment_method_form_card'],
|
|
6367
|
+
T['io.flow.stripe.v0.models.payment_method_form_ideal'],
|
|
6068
6368
|
T['io.flow.stripe.v0.models.payment_method_form_klarna'],
|
|
6369
|
+
T['io.flow.stripe.v0.models.payment_method_form_bancontact'],
|
|
6069
6370
|
]);
|
|
6070
6371
|
|
|
6071
6372
|
T['io.flow.stripe.v0.models.payment_method_data_klarna'] = PropTypes.exact({
|
|
@@ -6075,6 +6376,13 @@ T['io.flow.stripe.v0.models.payment_method_data_klarna'] = PropTypes.exact({
|
|
|
6075
6376
|
klarna: T['io.flow.stripe.v0.models.payment_method_klarna_form'].isRequired,
|
|
6076
6377
|
});
|
|
6077
6378
|
|
|
6379
|
+
T['io.flow.stripe.v0.models.payment_method_data_ideal'] = PropTypes.exact({
|
|
6380
|
+
type: PropTypes.oneOf(['ideal']).isRequired,
|
|
6381
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
6382
|
+
metadata: PropTypes.object,
|
|
6383
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_ideal_form'].isRequired,
|
|
6384
|
+
});
|
|
6385
|
+
|
|
6078
6386
|
T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
|
|
6079
6387
|
type: PropTypes.oneOf(['card']).isRequired,
|
|
6080
6388
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
@@ -6082,9 +6390,17 @@ T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
|
|
|
6082
6390
|
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
6083
6391
|
});
|
|
6084
6392
|
|
|
6393
|
+
T['io.flow.stripe.v0.models.payment_method_data_bancontact'] = PropTypes.exact({
|
|
6394
|
+
type: PropTypes.oneOf(['bancontact']).isRequired,
|
|
6395
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
6396
|
+
metadata: PropTypes.object,
|
|
6397
|
+
});
|
|
6398
|
+
|
|
6085
6399
|
T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([
|
|
6086
6400
|
T['io.flow.stripe.v0.models.payment_method_data_card'],
|
|
6401
|
+
T['io.flow.stripe.v0.models.payment_method_data_ideal'],
|
|
6087
6402
|
T['io.flow.stripe.v0.models.payment_method_data_klarna'],
|
|
6403
|
+
T['io.flow.stripe.v0.models.payment_method_data_bancontact'],
|
|
6088
6404
|
]);
|
|
6089
6405
|
|
|
6090
6406
|
T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
|
|
@@ -6236,6 +6552,102 @@ T['io.flow.stripe.v0.enums.error_type'] = PropTypes.oneOf([
|
|
|
6236
6552
|
'validation_error',
|
|
6237
6553
|
]);
|
|
6238
6554
|
|
|
6555
|
+
T['io.flow.stripe.v0.enums.dispute_payment_method_details_card_case_type'] = PropTypes.oneOf(['chargeback', 'inquiry']);
|
|
6556
|
+
T['io.flow.stripe.v0.enums.dispute_payment_method_details_type'] = PropTypes.oneOf(['card', 'klarna', 'paypal']);
|
|
6557
|
+
|
|
6558
|
+
T['io.flow.stripe.v0.models.dispute_payment_method_details_paypal'] = PropTypes.exact({
|
|
6559
|
+
case_id: PropTypes.string,
|
|
6560
|
+
reason_code: PropTypes.string,
|
|
6561
|
+
});
|
|
6562
|
+
|
|
6563
|
+
T['io.flow.stripe.v0.models.dispute_payment_method_details_klarna'] = PropTypes.exact({
|
|
6564
|
+
reason_code: PropTypes.string,
|
|
6565
|
+
});
|
|
6566
|
+
|
|
6567
|
+
T['io.flow.stripe.v0.models.dispute_payment_method_details_card'] = PropTypes.exact({
|
|
6568
|
+
brand: PropTypes.string.isRequired,
|
|
6569
|
+
case_type: T['io.flow.stripe.v0.enums.dispute_payment_method_details_card_case_type'].isRequired,
|
|
6570
|
+
network_reason_code: PropTypes.string,
|
|
6571
|
+
});
|
|
6572
|
+
|
|
6573
|
+
T['io.flow.stripe.v0.models.dispute_payment_method_details'] = PropTypes.exact({
|
|
6574
|
+
card: T['io.flow.stripe.v0.models.dispute_payment_method_details_card'],
|
|
6575
|
+
klarna: T['io.flow.stripe.v0.models.dispute_payment_method_details_klarna'],
|
|
6576
|
+
paypal: T['io.flow.stripe.v0.models.dispute_payment_method_details_paypal'],
|
|
6577
|
+
type: T['io.flow.stripe.v0.enums.dispute_payment_method_details_type'].isRequired,
|
|
6578
|
+
});
|
|
6579
|
+
|
|
6580
|
+
T['io.flow.stripe.v0.models.dispute_evidence_details'] = PropTypes.exact({
|
|
6581
|
+
due_by: PropTypes.number,
|
|
6582
|
+
has_evidence: PropTypes.bool.isRequired,
|
|
6583
|
+
past_due: PropTypes.bool.isRequired,
|
|
6584
|
+
submission_count: PropTypes.number.isRequired,
|
|
6585
|
+
});
|
|
6586
|
+
|
|
6587
|
+
T['io.flow.stripe.v0.enums.dispute_status'] = PropTypes.oneOf([
|
|
6588
|
+
'warning_needs_response',
|
|
6589
|
+
'warning_under_review',
|
|
6590
|
+
'warning_closed',
|
|
6591
|
+
'needs_response',
|
|
6592
|
+
'under_review',
|
|
6593
|
+
'won',
|
|
6594
|
+
'lost',
|
|
6595
|
+
]);
|
|
6596
|
+
|
|
6597
|
+
T['io.flow.stripe.v0.enums.dispute_reason'] = PropTypes.oneOf([
|
|
6598
|
+
'bank_cannot_process',
|
|
6599
|
+
'check_returned',
|
|
6600
|
+
'credit_not_processed',
|
|
6601
|
+
'customer_initiated',
|
|
6602
|
+
'debit_not_authorized',
|
|
6603
|
+
'duplicate',
|
|
6604
|
+
'fraudulent',
|
|
6605
|
+
'general',
|
|
6606
|
+
'incorrect_account_details',
|
|
6607
|
+
'insufficient_funds',
|
|
6608
|
+
'product_not_received',
|
|
6609
|
+
'product_unacceptable',
|
|
6610
|
+
'subscription_canceled',
|
|
6611
|
+
'unrecognized',
|
|
6612
|
+
]);
|
|
6613
|
+
|
|
6614
|
+
T['io.flow.stripe.v0.models.dispute'] = PropTypes.exact({
|
|
6615
|
+
id: PropTypes.string.isRequired,
|
|
6616
|
+
amount: PropTypes.number.isRequired,
|
|
6617
|
+
charge: PropTypes.string.isRequired,
|
|
6618
|
+
currency: PropTypes.string.isRequired,
|
|
6619
|
+
evidence: PropTypes.object.isRequired,
|
|
6620
|
+
metadata: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
6621
|
+
payment_intent: PropTypes.string.isRequired,
|
|
6622
|
+
reason: T['io.flow.stripe.v0.enums.dispute_reason'].isRequired,
|
|
6623
|
+
status: T['io.flow.stripe.v0.enums.dispute_status'].isRequired,
|
|
6624
|
+
object: PropTypes.string.isRequired,
|
|
6625
|
+
balance_transactions: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
6626
|
+
created: PropTypes.number.isRequired,
|
|
6627
|
+
evidence_details: T['io.flow.stripe.v0.models.dispute_evidence_details'].isRequired,
|
|
6628
|
+
is_charge_refundable: PropTypes.bool.isRequired,
|
|
6629
|
+
livemode: PropTypes.bool.isRequired,
|
|
6630
|
+
payment_method_details: T['io.flow.stripe.v0.models.dispute_payment_method_details'],
|
|
6631
|
+
});
|
|
6632
|
+
|
|
6633
|
+
T['io.flow.stripe.v0.models.stripe_dispute_event_data'] = PropTypes.exact({
|
|
6634
|
+
object: T['io.flow.stripe.v0.models.dispute'].isRequired,
|
|
6635
|
+
previous_attributes: PropTypes.object,
|
|
6636
|
+
});
|
|
6637
|
+
|
|
6638
|
+
T['io.flow.stripe.v0.models.stripe_dispute_event'] = PropTypes.exact({
|
|
6639
|
+
id: PropTypes.string.isRequired,
|
|
6640
|
+
api_version: PropTypes.string,
|
|
6641
|
+
data: T['io.flow.stripe.v0.models.stripe_dispute_event_data'].isRequired,
|
|
6642
|
+
request: PropTypes.object,
|
|
6643
|
+
type: T['io.flow.stripe.v0.enums.dispute_event_type'].isRequired,
|
|
6644
|
+
object: PropTypes.string.isRequired,
|
|
6645
|
+
account: PropTypes.string,
|
|
6646
|
+
created: PropTypes.number.isRequired,
|
|
6647
|
+
livemode: PropTypes.bool.isRequired,
|
|
6648
|
+
pending_webhooks: PropTypes.number.isRequired,
|
|
6649
|
+
});
|
|
6650
|
+
|
|
6239
6651
|
T['io.flow.stripe.v0.enums.code_verification_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed']);
|
|
6240
6652
|
|
|
6241
6653
|
T['io.flow.stripe.v0.models.transfer_data'] = PropTypes.exact({
|
|
@@ -6332,11 +6744,21 @@ T['io.flow.stripe.v0.models.charge_request'] = PropTypes.exact({
|
|
|
6332
6744
|
transfer_data: T['io.flow.stripe.v0.models.transfer_data'],
|
|
6333
6745
|
});
|
|
6334
6746
|
|
|
6747
|
+
T['io.flow.stripe.v0.models.payment_method_details_bancontact'] = PropTypes.exact({
|
|
6748
|
+
type: PropTypes.oneOf(['bancontact']).isRequired,
|
|
6749
|
+
bancontact: T['io.flow.stripe.v0.models.payment_method_details_bancontact_information'].isRequired,
|
|
6750
|
+
});
|
|
6751
|
+
|
|
6335
6752
|
T['io.flow.stripe.v0.models.payment_method_details_klarna'] = PropTypes.exact({
|
|
6336
6753
|
type: PropTypes.oneOf(['klarna']).isRequired,
|
|
6337
6754
|
klarna: T['io.flow.stripe.v0.models.payment_method_details_klarna_information'].isRequired,
|
|
6338
6755
|
});
|
|
6339
6756
|
|
|
6757
|
+
T['io.flow.stripe.v0.models.payment_method_details_ideal'] = PropTypes.exact({
|
|
6758
|
+
type: PropTypes.oneOf(['ideal']).isRequired,
|
|
6759
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_details_ideal_information'].isRequired,
|
|
6760
|
+
});
|
|
6761
|
+
|
|
6340
6762
|
T['io.flow.stripe.v0.models.source_order'] = PropTypes.exact({
|
|
6341
6763
|
amount: PropTypes.number,
|
|
6342
6764
|
currency: PropTypes.string,
|
|
@@ -6584,8 +7006,10 @@ T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
|
|
|
6584
7006
|
id: PropTypes.string.isRequired,
|
|
6585
7007
|
object: PropTypes.string.isRequired,
|
|
6586
7008
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
7009
|
+
bancontact: PropTypes.object,
|
|
6587
7010
|
card: T['io.flow.stripe.v0.models.payment_method_card_details'],
|
|
6588
7011
|
card_present: PropTypes.object,
|
|
7012
|
+
ideal: PropTypes.object,
|
|
6589
7013
|
klarna: PropTypes.object,
|
|
6590
7014
|
created: PropTypes.number.isRequired,
|
|
6591
7015
|
customer: PropTypes.string,
|
|
@@ -6644,7 +7068,9 @@ T['io.flow.stripe.v0.models.payment_method_details_card'] = PropTypes.exact({
|
|
|
6644
7068
|
|
|
6645
7069
|
T['io.flow.stripe.v0.unions.payment_method_details'] = PropTypes.oneOfType([
|
|
6646
7070
|
T['io.flow.stripe.v0.models.payment_method_details_card'],
|
|
7071
|
+
T['io.flow.stripe.v0.models.payment_method_details_ideal'],
|
|
6647
7072
|
T['io.flow.stripe.v0.models.payment_method_details_klarna'],
|
|
7073
|
+
T['io.flow.stripe.v0.models.payment_method_details_bancontact'],
|
|
6648
7074
|
]);
|
|
6649
7075
|
|
|
6650
7076
|
T['io.flow.stripe.v0.enums.requested_capabilities'] = PropTypes.oneOf(['card_payments', 'legacy_payments', 'transfers']);
|
|
@@ -6876,389 +7302,6 @@ T['io.flow.field.validation.v0.unions.field_validation_rule'] = PropTypes.oneOfT
|
|
|
6876
7302
|
T['io.flow.field.validation.v0.models.field_validation_pattern'],
|
|
6877
7303
|
]);
|
|
6878
7304
|
|
|
6879
|
-
T['io.flow.billing.internal.v0.enums.bank_payment_status_code'] = PropTypes.oneOf(['scheduled', 'sent', 'failed']);
|
|
6880
|
-
|
|
6881
|
-
T['io.flow.billing.csv.v0.models.flow_finance_payment_summary'] = PropTypes.exact({
|
|
6882
|
-
id: PropTypes.string.isRequired,
|
|
6883
|
-
status: T['io.flow.billing.internal.v0.enums.bank_payment_status_code'].isRequired,
|
|
6884
|
-
amount: PropTypes.number.isRequired,
|
|
6885
|
-
bank_account_last4: PropTypes.string,
|
|
6886
|
-
});
|
|
6887
|
-
|
|
6888
|
-
T['io.flow.billing.csv.v0.models.flow_finance_statement_summary'] = PropTypes.exact({
|
|
6889
|
-
account_id: PropTypes.string.isRequired,
|
|
6890
|
-
payment: T['io.flow.billing.csv.v0.models.flow_finance_payment_summary'],
|
|
6891
|
-
statement_id: PropTypes.string.isRequired,
|
|
6892
|
-
settlement_currency: PropTypes.string.isRequired,
|
|
6893
|
-
starting_balance: PropTypes.number.isRequired,
|
|
6894
|
-
balance_forward: PropTypes.number.isRequired,
|
|
6895
|
-
transactions_posted: PropTypes.number.isRequired,
|
|
6896
|
-
platform_fee: PropTypes.number.isRequired,
|
|
6897
|
-
account_balance: PropTypes.number.isRequired,
|
|
6898
|
-
dispute_balance: PropTypes.number.isRequired,
|
|
6899
|
-
one_time_adjustments: PropTypes.objectOf(PropTypes.number).isRequired,
|
|
6900
|
-
});
|
|
6901
|
-
|
|
6902
|
-
T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'] = PropTypes.exact({
|
|
6903
|
-
iin: PropTypes.string.isRequired,
|
|
6904
|
-
country: PropTypes.string.isRequired,
|
|
6905
|
-
});
|
|
6906
|
-
|
|
6907
|
-
T['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'] = PropTypes.exact({
|
|
6908
|
-
id: PropTypes.string.isRequired,
|
|
6909
|
-
});
|
|
6910
|
-
|
|
6911
|
-
T['io.flow.billing.v0.models.transaction_metadata_failed_payout'] = PropTypes.exact({
|
|
6912
|
-
discriminator: PropTypes.oneOf(['failed_payout']).isRequired,
|
|
6913
|
-
failed_payout: T['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'].isRequired,
|
|
6914
|
-
});
|
|
6915
|
-
|
|
6916
|
-
T['io.flow.billing.internal.v0.enums.manual_transaction_category'] = PropTypes.oneOf([
|
|
6917
|
-
'cancelled_order_refund',
|
|
6918
|
-
'client_accepted_chargeback',
|
|
6919
|
-
'fee_reimbursement',
|
|
6920
|
-
'platform_fee',
|
|
6921
|
-
'shipping_true_up',
|
|
6922
|
-
'tax_credit',
|
|
6923
|
-
'carrier_credit',
|
|
6924
|
-
'negative_balance_guarantee',
|
|
6925
|
-
'bank_payment_failure',
|
|
6926
|
-
]);
|
|
6927
|
-
|
|
6928
|
-
T['io.flow.billing.internal.v0.models.manual_transaction_form'] = PropTypes.exact({
|
|
6929
|
-
amount: PropTypes.number.isRequired,
|
|
6930
|
-
currency: PropTypes.string,
|
|
6931
|
-
description: PropTypes.string.isRequired,
|
|
6932
|
-
category: T['io.flow.billing.internal.v0.enums.manual_transaction_category'],
|
|
6933
|
-
order: T['io.flow.billing.internal.v0.models.manual_transaction_form_order'],
|
|
6934
|
-
original_transaction_id: PropTypes.string,
|
|
6935
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
6936
|
-
});
|
|
6937
|
-
|
|
6938
|
-
T['io.flow.billing.v0.models.transaction_metadata_original_transaction'] = PropTypes.exact({
|
|
6939
|
-
id: PropTypes.string.isRequired,
|
|
6940
|
-
});
|
|
6941
|
-
|
|
6942
|
-
T['io.flow.billing.v0.models.transaction_metadata_manual'] = PropTypes.exact({
|
|
6943
|
-
discriminator: PropTypes.oneOf(['manual']).isRequired,
|
|
6944
|
-
description: PropTypes.string.isRequired,
|
|
6945
|
-
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'],
|
|
6946
|
-
url: PropTypes.string,
|
|
6947
|
-
});
|
|
6948
|
-
|
|
6949
|
-
T['io.flow.billing.internal.v0.enums.account_type'] = PropTypes.oneOf(['channel', 'organization']);
|
|
6950
|
-
|
|
6951
|
-
T['io.flow.billing.internal.v0.models.account_source'] = PropTypes.exact({
|
|
6952
|
-
id: PropTypes.string.isRequired,
|
|
6953
|
-
type: T['io.flow.billing.internal.v0.enums.account_type'].isRequired,
|
|
6954
|
-
});
|
|
6955
|
-
|
|
6956
|
-
T['io.flow.billing.internal.v0.models.account_summary'] = PropTypes.exact({
|
|
6957
|
-
id: PropTypes.string.isRequired,
|
|
6958
|
-
currency: PropTypes.string.isRequired,
|
|
6959
|
-
source: T['io.flow.billing.internal.v0.models.account_source'].isRequired,
|
|
6960
|
-
});
|
|
6961
|
-
|
|
6962
|
-
T['io.flow.billing.reporting.v0.models.report_account'] = PropTypes.exact({
|
|
6963
|
-
id: PropTypes.string.isRequired,
|
|
6964
|
-
currency: PropTypes.string.isRequired,
|
|
6965
|
-
source: T['io.flow.billing.internal.v0.models.account_source'].isRequired,
|
|
6966
|
-
});
|
|
6967
|
-
|
|
6968
|
-
T['io.flow.billing.reporting.v0.models.scheduled_payment'] = PropTypes.exact({
|
|
6969
|
-
payment: T['io.flow.billing.reporting.v0.models.report_payment'].isRequired,
|
|
6970
|
-
bank_account: T['io.flow.billing.reporting.v0.models.report_bank_account_cleartext'].isRequired,
|
|
6971
|
-
account: T['io.flow.billing.reporting.v0.models.report_account'].isRequired,
|
|
6972
|
-
merchant: T['io.flow.billing.reporting.v0.models.report_merchant'].isRequired,
|
|
6973
|
-
owner: T['io.flow.billing.reporting.v0.models.report_owner'].isRequired,
|
|
6974
|
-
description: PropTypes.string.isRequired,
|
|
6975
|
-
});
|
|
6976
|
-
|
|
6977
|
-
T['io.flow.billing.reporting.v0.models.non_channel_payment_bank_account'] = PropTypes.exact({
|
|
6978
|
-
payment: T['io.flow.billing.reporting.v0.models.report_payment'].isRequired,
|
|
6979
|
-
bank_account: T['io.flow.billing.reporting.v0.models.report_bank_account'].isRequired,
|
|
6980
|
-
account: T['io.flow.billing.reporting.v0.models.report_account'].isRequired,
|
|
6981
|
-
});
|
|
6982
|
-
|
|
6983
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary_identifiers'] = PropTypes.exact({
|
|
6984
|
-
shopify_order_id: PropTypes.string,
|
|
6985
|
-
});
|
|
6986
|
-
|
|
6987
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_failed_payout'] = PropTypes.exact({
|
|
6988
|
-
failed_payment: T['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'].isRequired,
|
|
6989
|
-
});
|
|
6990
|
-
|
|
6991
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_manual'] = PropTypes.exact({
|
|
6992
|
-
description: PropTypes.string.isRequired,
|
|
6993
|
-
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'],
|
|
6994
|
-
category: T['io.flow.billing.internal.v0.enums.manual_transaction_category'],
|
|
6995
|
-
url: PropTypes.string,
|
|
6996
|
-
});
|
|
6997
|
-
|
|
6998
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_trueup'] = PropTypes.exact({
|
|
6999
|
-
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
7000
|
-
label_transaction_id: PropTypes.string.isRequired,
|
|
7001
|
-
label_invoice_request_id: PropTypes.string.isRequired,
|
|
7002
|
-
carrier_charge_id: PropTypes.string.isRequired,
|
|
7003
|
-
});
|
|
7004
|
-
|
|
7005
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label_revenue_share'] = PropTypes.exact({
|
|
7006
|
-
label_id: PropTypes.string.isRequired,
|
|
7007
|
-
base_amount: PropTypes.number,
|
|
7008
|
-
percentage: PropTypes.number,
|
|
7009
|
-
});
|
|
7010
|
-
|
|
7011
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction_account_source_summary'] = PropTypes.exact({
|
|
7012
|
-
id: PropTypes.string.isRequired,
|
|
7013
|
-
type: T['io.flow.billing.internal.v0.enums.account_type'].isRequired,
|
|
7014
|
-
});
|
|
7015
|
-
|
|
7016
|
-
T['io.flow.billing.csv.v0.models.billing_csv_merchant_reference'] = PropTypes.exact({
|
|
7017
|
-
id: PropTypes.string.isRequired,
|
|
7018
|
-
});
|
|
7019
|
-
|
|
7020
|
-
T['io.flow.billing.csv.v0.models.billing_csv_order_detail'] = PropTypes.exact({
|
|
7021
|
-
currency: PropTypes.string.isRequired,
|
|
7022
|
-
adjustment: PropTypes.number.isRequired,
|
|
7023
|
-
subtotal: PropTypes.number.isRequired,
|
|
7024
|
-
vat: PropTypes.number.isRequired,
|
|
7025
|
-
duty: PropTypes.number.isRequired,
|
|
7026
|
-
shipping: PropTypes.number.isRequired,
|
|
7027
|
-
insurance: PropTypes.number.isRequired,
|
|
7028
|
-
discount: PropTypes.number.isRequired,
|
|
7029
|
-
total: PropTypes.number.isRequired,
|
|
7030
|
-
freight: PropTypes.number.isRequired,
|
|
7031
|
-
});
|
|
7032
|
-
|
|
7033
|
-
T['io.flow.billing.internal.v0.models.discount'] = PropTypes.exact({
|
|
7034
|
-
amount: PropTypes.number.isRequired,
|
|
7035
|
-
description: PropTypes.string,
|
|
7036
|
-
});
|
|
7037
|
-
|
|
7038
|
-
T['io.flow.billing.csv.v0.models.billing_csv_delivery_cost_detail'] = PropTypes.exact({
|
|
7039
|
-
ratecard_base_cost: PropTypes.number.isRequired,
|
|
7040
|
-
ratecard_ddp_fee: PropTypes.number.isRequired,
|
|
7041
|
-
ratecard_emergency_situation_surcharge: PropTypes.number.isRequired,
|
|
7042
|
-
ratecard_peak_surcharge: PropTypes.number.isRequired,
|
|
7043
|
-
ratecard_fuel_surcharge: PropTypes.number.isRequired,
|
|
7044
|
-
ratecard_oversized_shipment_fee: PropTypes.number.isRequired,
|
|
7045
|
-
ratecard_rural_shipment_fee: PropTypes.number.isRequired,
|
|
7046
|
-
center_commercial_invoice_fee: PropTypes.number.isRequired,
|
|
7047
|
-
center_inbound_carton_fee: PropTypes.number.isRequired,
|
|
7048
|
-
center_outbound_carton_fee: PropTypes.number.isRequired,
|
|
7049
|
-
});
|
|
7050
|
-
|
|
7051
|
-
T['io.flow.billing.csv.v0.models.billing_csv_center'] = PropTypes.exact({
|
|
7052
|
-
key: PropTypes.string.isRequired,
|
|
7053
|
-
});
|
|
7054
|
-
|
|
7055
|
-
T['io.flow.billing.internal.v0.models.billing_order_destination'] = PropTypes.exact({
|
|
7056
|
-
city: PropTypes.string,
|
|
7057
|
-
province: PropTypes.string,
|
|
7058
|
-
postal: PropTypes.string,
|
|
7059
|
-
country: PropTypes.string.isRequired,
|
|
7060
|
-
});
|
|
7061
|
-
|
|
7062
|
-
T['io.flow.billing.internal.v0.models.billing_order_summary'] = PropTypes.exact({
|
|
7063
|
-
number: PropTypes.string.isRequired,
|
|
7064
|
-
submitted_at: PropTypes.string.isRequired,
|
|
7065
|
-
primary_identifier: PropTypes.string,
|
|
7066
|
-
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
7067
|
-
destination: T['io.flow.billing.internal.v0.models.billing_order_destination'],
|
|
7068
|
-
});
|
|
7069
|
-
|
|
7070
|
-
T['io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_summary'] = PropTypes.exact({
|
|
7071
|
-
id: PropTypes.string.isRequired,
|
|
7072
|
-
number: PropTypes.string.isRequired,
|
|
7073
|
-
date: PropTypes.string.isRequired,
|
|
7074
|
-
key: PropTypes.string.isRequired,
|
|
7075
|
-
});
|
|
7076
|
-
|
|
7077
|
-
T['io.flow.billing.csv.v0.models.billing_csv_fee'] = PropTypes.exact({
|
|
7078
|
-
amount: PropTypes.number.isRequired,
|
|
7079
|
-
description: PropTypes.string,
|
|
7080
|
-
});
|
|
7081
|
-
|
|
7082
|
-
T['io.flow.billing.csv.v0.models.billing_csv_exchange_rate'] = PropTypes.exact({
|
|
7083
|
-
base_currency: PropTypes.string.isRequired,
|
|
7084
|
-
local_currency: PropTypes.string.isRequired,
|
|
7085
|
-
rate: PropTypes.number.isRequired,
|
|
7086
|
-
});
|
|
7087
|
-
|
|
7088
|
-
T['io.flow.billing.csv.v0.models.billing_csv_order_summary'] = PropTypes.exact({
|
|
7089
|
-
number: PropTypes.string.isRequired,
|
|
7090
|
-
identifiers: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
7091
|
-
});
|
|
7092
|
-
|
|
7093
|
-
T['io.flow.billing.csv.v0.models.account_summary'] = PropTypes.exact({
|
|
7094
|
-
id: PropTypes.string.isRequired,
|
|
7095
|
-
currency: PropTypes.string.isRequired,
|
|
7096
|
-
});
|
|
7097
|
-
|
|
7098
|
-
T['io.flow.billing.csv.v0.models.billing_csv_channel_transaction_processing_transaction'] = PropTypes.exact({
|
|
7099
|
-
id: PropTypes.string.isRequired,
|
|
7100
|
-
account: T['io.flow.billing.csv.v0.models.account_summary'].isRequired,
|
|
7101
|
-
local_currency: PropTypes.string.isRequired,
|
|
7102
|
-
base_amount: PropTypes.number.isRequired,
|
|
7103
|
-
total_fees: PropTypes.number.isRequired,
|
|
7104
|
-
payment_method: PropTypes.string.isRequired,
|
|
7105
|
-
});
|
|
7106
|
-
|
|
7107
|
-
T['io.flow.billing.csv.v0.models.billing_csv_tier'] = PropTypes.exact({
|
|
7108
|
-
name: PropTypes.string.isRequired,
|
|
7109
|
-
});
|
|
7110
|
-
|
|
7111
|
-
T['io.flow.billing.csv.v0.models.billing_csv_service'] = PropTypes.exact({
|
|
7112
|
-
id: PropTypes.string.isRequired,
|
|
7113
|
-
});
|
|
7114
|
-
|
|
7115
|
-
T['io.flow.billing.csv.v0.models.billing_csv_carrier'] = PropTypes.exact({
|
|
7116
|
-
id: PropTypes.string.isRequired,
|
|
7117
|
-
});
|
|
7118
|
-
|
|
7119
|
-
T['io.flow.billing.csv.v0.models.billing_channel_csv_order_detail'] = PropTypes.exact({
|
|
7120
|
-
currency: PropTypes.string.isRequired,
|
|
7121
|
-
freight: PropTypes.number.isRequired,
|
|
7122
|
-
total: PropTypes.number.isRequired,
|
|
7123
|
-
subtotal: PropTypes.number.isRequired,
|
|
7124
|
-
vat: PropTypes.number.isRequired,
|
|
7125
|
-
duty: PropTypes.number.isRequired,
|
|
7126
|
-
discount: PropTypes.number.isRequired,
|
|
7127
|
-
adjustment: PropTypes.number.isRequired,
|
|
7128
|
-
insurance: PropTypes.number.isRequired,
|
|
7129
|
-
shipping: PropTypes.number.isRequired,
|
|
7130
|
-
});
|
|
7131
|
-
|
|
7132
|
-
T['io.flow.google.pay.v0.models.direct_payment_method_token'] = PropTypes.exact({
|
|
7133
|
-
discriminator: PropTypes.oneOf(['direct_payment_method_token']).isRequired,
|
|
7134
|
-
protocolVersion: PropTypes.string.isRequired,
|
|
7135
|
-
signature: PropTypes.string.isRequired,
|
|
7136
|
-
signedMessage: PropTypes.string.isRequired,
|
|
7137
|
-
});
|
|
7138
|
-
|
|
7139
|
-
T['io.flow.stripe.v0.models.card'] = PropTypes.exact({
|
|
7140
|
-
id: PropTypes.string.isRequired,
|
|
7141
|
-
object: PropTypes.string.isRequired,
|
|
7142
|
-
address_city: PropTypes.string,
|
|
7143
|
-
address_country: PropTypes.string,
|
|
7144
|
-
address_line1: PropTypes.string,
|
|
7145
|
-
address_line1_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
7146
|
-
address_line2: PropTypes.string,
|
|
7147
|
-
address_state: PropTypes.string,
|
|
7148
|
-
address_zip: PropTypes.string,
|
|
7149
|
-
address_zip_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
7150
|
-
brand: T['io.flow.stripe.v0.enums.card_brand'],
|
|
7151
|
-
country: PropTypes.string,
|
|
7152
|
-
currency: PropTypes.string,
|
|
7153
|
-
cvc_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
7154
|
-
dynamic_last4: PropTypes.string,
|
|
7155
|
-
exp_month: PropTypes.number.isRequired,
|
|
7156
|
-
exp_year: PropTypes.number.isRequired,
|
|
7157
|
-
fingerprint: PropTypes.string,
|
|
7158
|
-
funding: T['io.flow.stripe.v0.enums.card_funding_type'],
|
|
7159
|
-
last4: PropTypes.string,
|
|
7160
|
-
name: PropTypes.string,
|
|
7161
|
-
tokenization_method: PropTypes.string,
|
|
7162
|
-
});
|
|
7163
|
-
|
|
7164
|
-
T['io.flow.stripe.v0.enums.token_type'] = PropTypes.oneOf(['account', 'bank_account', 'card', 'pii']);
|
|
7165
|
-
|
|
7166
|
-
T['io.flow.stripe.v0.models.token'] = PropTypes.exact({
|
|
7167
|
-
id: PropTypes.string.isRequired,
|
|
7168
|
-
object: PropTypes.string.isRequired,
|
|
7169
|
-
client_ip: PropTypes.string.isRequired,
|
|
7170
|
-
created: PropTypes.number.isRequired,
|
|
7171
|
-
livemode: PropTypes.bool.isRequired,
|
|
7172
|
-
type: T['io.flow.stripe.v0.enums.token_type'].isRequired,
|
|
7173
|
-
used: PropTypes.bool.isRequired,
|
|
7174
|
-
card: T['io.flow.stripe.v0.models.card'],
|
|
7175
|
-
});
|
|
7176
|
-
|
|
7177
|
-
T['io.flow.google.pay.v0.models.stripe_payment_method_token'] = PropTypes.exact({
|
|
7178
|
-
discriminator: PropTypes.oneOf(['stripe_payment_method_token']).isRequired,
|
|
7179
|
-
token: T['io.flow.stripe.v0.models.token'].isRequired,
|
|
7180
|
-
});
|
|
7181
|
-
|
|
7182
|
-
T['io.flow.google.pay.v0.unions.payment_method_token'] = PropTypes.oneOfType([
|
|
7183
|
-
T['io.flow.google.pay.v0.models.direct_payment_method_token'],
|
|
7184
|
-
T['io.flow.google.pay.v0.models.stripe_payment_method_token'],
|
|
7185
|
-
]);
|
|
7186
|
-
|
|
7187
|
-
T['io.flow.google.pay.v0.enums.tokenization_type'] = PropTypes.oneOf(['PAYMENT_GATEWAY', 'DIRECT']);
|
|
7188
|
-
T['io.flow.google.pay.v0.enums.total_price_status'] = PropTypes.oneOf(['NOT_CURRENTLY_KNOWN', 'ESTIMATED', 'FINAL']);
|
|
7189
|
-
|
|
7190
|
-
T['io.flow.google.pay.v0.models.payment_method_tokenization_data'] = PropTypes.exact({
|
|
7191
|
-
type: PropTypes.string.isRequired,
|
|
7192
|
-
token: PropTypes.string,
|
|
7193
|
-
});
|
|
7194
|
-
|
|
7195
|
-
T['io.flow.google.pay.v0.models.payment_method_tokenization_specification'] = PropTypes.exact({
|
|
7196
|
-
type: T['io.flow.google.pay.v0.enums.tokenization_type'].isRequired,
|
|
7197
|
-
parameters: PropTypes.object.isRequired,
|
|
7198
|
-
});
|
|
7199
|
-
|
|
7200
|
-
T['io.flow.google.pay.v0.enums.payment_method_type'] = PropTypes.oneOf(['CARD']);
|
|
7201
|
-
T['io.flow.google.pay.v0.enums.card_network'] = PropTypes.oneOf(['AMEX', 'DISCOVER', 'JCB', 'MASTERCARD', 'VISA']);
|
|
7202
|
-
T['io.flow.google.pay.v0.enums.auth_method'] = PropTypes.oneOf(['PAN_ONLY', 'CRYPTOGRAM_3DS']);
|
|
7203
|
-
|
|
7204
|
-
T['io.flow.google.pay.v0.models.payment_method_details'] = PropTypes.exact({
|
|
7205
|
-
pan: PropTypes.string.isRequired,
|
|
7206
|
-
expirationMonth: PropTypes.number.isRequired,
|
|
7207
|
-
expirationYear: PropTypes.number.isRequired,
|
|
7208
|
-
authMethod: T['io.flow.google.pay.v0.enums.auth_method'].isRequired,
|
|
7209
|
-
cryptogram: PropTypes.string,
|
|
7210
|
-
eciIndicator: PropTypes.string,
|
|
7211
|
-
});
|
|
7212
|
-
|
|
7213
|
-
T['io.flow.google.pay.v0.models.address'] = PropTypes.exact({
|
|
7214
|
-
name: PropTypes.string.isRequired,
|
|
7215
|
-
postalCode: PropTypes.string.isRequired,
|
|
7216
|
-
countryCode: PropTypes.string.isRequired,
|
|
7217
|
-
phoneNumber: PropTypes.string.isRequired,
|
|
7218
|
-
companyName: PropTypes.string.isRequired,
|
|
7219
|
-
address1: PropTypes.string.isRequired,
|
|
7220
|
-
address2: PropTypes.string.isRequired,
|
|
7221
|
-
address3: PropTypes.string.isRequired,
|
|
7222
|
-
locality: PropTypes.string.isRequired,
|
|
7223
|
-
administrativeArea: PropTypes.string.isRequired,
|
|
7224
|
-
sortingCode: PropTypes.string.isRequired,
|
|
7225
|
-
});
|
|
7226
|
-
|
|
7227
|
-
T['io.flow.google.pay.v0.models.card_payment_method_data_info'] = PropTypes.exact({
|
|
7228
|
-
cardDetails: PropTypes.string.isRequired,
|
|
7229
|
-
cardNetwork: PropTypes.string.isRequired,
|
|
7230
|
-
billingAddress: T['io.flow.google.pay.v0.models.address'],
|
|
7231
|
-
});
|
|
7232
|
-
|
|
7233
|
-
T['io.flow.google.pay.v0.models.payment_method_data'] = PropTypes.exact({
|
|
7234
|
-
type: T['io.flow.google.pay.v0.enums.payment_method_type'].isRequired,
|
|
7235
|
-
description: PropTypes.string.isRequired,
|
|
7236
|
-
info: T['io.flow.google.pay.v0.models.card_payment_method_data_info'].isRequired,
|
|
7237
|
-
tokenizationData: T['io.flow.google.pay.v0.models.payment_method_tokenization_data'].isRequired,
|
|
7238
|
-
});
|
|
7239
|
-
|
|
7240
|
-
T['io.flow.google.pay.v0.models.payment_data'] = PropTypes.exact({
|
|
7241
|
-
apiVersion: PropTypes.number.isRequired,
|
|
7242
|
-
apiVersionMinor: PropTypes.number.isRequired,
|
|
7243
|
-
paymentMethodData: T['io.flow.google.pay.v0.models.payment_method_data'].isRequired,
|
|
7244
|
-
email: PropTypes.string,
|
|
7245
|
-
shippingAddress: T['io.flow.google.pay.v0.models.address'],
|
|
7246
|
-
});
|
|
7247
|
-
|
|
7248
|
-
T['io.flow.google.pay.v0.enums.billing_address_format'] = PropTypes.oneOf(['MIN', 'FULL']);
|
|
7249
|
-
|
|
7250
|
-
T['io.flow.google.pay.v0.models.billing_address_parameters'] = PropTypes.exact({
|
|
7251
|
-
format: T['io.flow.google.pay.v0.enums.billing_address_format'],
|
|
7252
|
-
phoneNumberRequired: PropTypes.bool,
|
|
7253
|
-
});
|
|
7254
|
-
|
|
7255
|
-
T['io.flow.google.pay.v0.models.card_payment_method_parameters'] = PropTypes.exact({
|
|
7256
|
-
allowedAuthMethods: PropTypes.arrayOf(T['io.flow.google.pay.v0.enums.auth_method']).isRequired,
|
|
7257
|
-
allowedCardNetworks: PropTypes.arrayOf(T['io.flow.google.pay.v0.enums.card_network']).isRequired,
|
|
7258
|
-
billingAddressRequired: PropTypes.bool,
|
|
7259
|
-
billingAddressParameters: T['io.flow.google.pay.v0.models.billing_address_parameters'],
|
|
7260
|
-
});
|
|
7261
|
-
|
|
7262
7305
|
T['io.flow.payment.v0.models.merchant_of_record_payment_form'] = PropTypes.exact({
|
|
7263
7306
|
discriminator: PropTypes.oneOf(['merchant_of_record_payment_form']).isRequired,
|
|
7264
7307
|
method: PropTypes.string.isRequired,
|
|
@@ -7323,6 +7366,15 @@ T['io.flow.payment.v0.models.refund_order_summary'] = PropTypes.exact({
|
|
|
7323
7366
|
amounts: T['io.flow.payment.v0.models.refund_order_summary_amounts'].isRequired,
|
|
7324
7367
|
});
|
|
7325
7368
|
|
|
7369
|
+
T['io.flow.payment.v0.models.payment_processor_transaction_details_apm'] = PropTypes.exact({
|
|
7370
|
+
discriminator: PropTypes.oneOf(['apm']).isRequired,
|
|
7371
|
+
transaction_identifier: PropTypes.string,
|
|
7372
|
+
capture_identifier: PropTypes.string,
|
|
7373
|
+
method_type: PropTypes.string,
|
|
7374
|
+
result_status: PropTypes.string,
|
|
7375
|
+
reason_code: PropTypes.string,
|
|
7376
|
+
});
|
|
7377
|
+
|
|
7326
7378
|
T['io.flow.payment.v0.models.payment_processor_transaction_details_card'] = PropTypes.exact({
|
|
7327
7379
|
discriminator: PropTypes.oneOf(['card']).isRequired,
|
|
7328
7380
|
transaction_identifier: PropTypes.string,
|
|
@@ -7382,6 +7434,7 @@ T['io.flow.payment.v0.models.redirect_authorization_details'] = PropTypes.exact(
|
|
|
7382
7434
|
T['io.flow.payment.v0.models.paypal_authorization_details'] = PropTypes.exact({
|
|
7383
7435
|
discriminator: PropTypes.oneOf(['paypal_authorization_details']).isRequired,
|
|
7384
7436
|
payment_id: PropTypes.string.isRequired,
|
|
7437
|
+
internal_payment_id: PropTypes.string,
|
|
7385
7438
|
payment_method: PropTypes.string,
|
|
7386
7439
|
payment_state: PropTypes.string,
|
|
7387
7440
|
payer_id: PropTypes.string,
|
|
@@ -8154,31 +8207,6 @@ T['io.flow.billing.internal.v0.models.external_fulfillment_proof_form'] = PropTy
|
|
|
8154
8207
|
),
|
|
8155
8208
|
});
|
|
8156
8209
|
|
|
8157
|
-
T['io.flow.billing.csv.v0.models.billing_csv_processing_transaction_delivery'] = PropTypes.exact({
|
|
8158
|
-
delivery_option_id: PropTypes.string.isRequired,
|
|
8159
|
-
ratecard_owner: T['io.flow.billing.internal.v0.enums.responsible_party'].isRequired,
|
|
8160
|
-
service: T['io.flow.billing.csv.v0.models.billing_csv_service'].isRequired,
|
|
8161
|
-
center: T['io.flow.billing.csv.v0.models.billing_csv_center'].isRequired,
|
|
8162
|
-
ship_from_country: PropTypes.string.isRequired,
|
|
8163
|
-
delivered_duty: PropTypes.string.isRequired,
|
|
8164
|
-
});
|
|
8165
|
-
|
|
8166
|
-
T['io.flow.billing.csv.v0.models.billing_csv_processing_transaction_order_detail'] = PropTypes.exact({
|
|
8167
|
-
total: PropTypes.number.isRequired,
|
|
8168
|
-
subtotal: PropTypes.number.isRequired,
|
|
8169
|
-
discount: PropTypes.number.isRequired,
|
|
8170
|
-
vat: PropTypes.number.isRequired,
|
|
8171
|
-
duty: PropTypes.number.isRequired,
|
|
8172
|
-
shipping: PropTypes.number.isRequired,
|
|
8173
|
-
vat_subsidy: PropTypes.number,
|
|
8174
|
-
duty_subsidy: PropTypes.number,
|
|
8175
|
-
estimated_freight: PropTypes.number.isRequired,
|
|
8176
|
-
|
|
8177
|
-
selected_deliveries: PropTypes.arrayOf(
|
|
8178
|
-
T['io.flow.billing.csv.v0.models.billing_csv_processing_transaction_delivery'],
|
|
8179
|
-
).isRequired,
|
|
8180
|
-
});
|
|
8181
|
-
|
|
8182
8210
|
T['io.flow.billing.accounting.v0.models.fulfillment_carrier'] = PropTypes.exact({
|
|
8183
8211
|
id: PropTypes.string.isRequired,
|
|
8184
8212
|
service_id: PropTypes.string,
|
|
@@ -8197,6 +8225,15 @@ T['io.flow.billing.accounting.v0.models.merchant_summary'] = PropTypes.exact({
|
|
|
8197
8225
|
total: PropTypes.number.isRequired,
|
|
8198
8226
|
});
|
|
8199
8227
|
|
|
8228
|
+
T['io.flow.billing.accounting.v0.models.payment_summary'] = PropTypes.exact({
|
|
8229
|
+
psp: PropTypes.number.isRequired,
|
|
8230
|
+
credit: PropTypes.number.isRequired,
|
|
8231
|
+
subsidized: PropTypes.number.isRequired,
|
|
8232
|
+
manual: PropTypes.number.isRequired,
|
|
8233
|
+
cod: PropTypes.number.isRequired,
|
|
8234
|
+
total: PropTypes.number.isRequired,
|
|
8235
|
+
});
|
|
8236
|
+
|
|
8200
8237
|
T['io.flow.billing.accounting.v0.models.remittance_responsibility'] = PropTypes.exact({
|
|
8201
8238
|
tax: T['io.flow.billing.internal.v0.enums.responsible_party'].isRequired,
|
|
8202
8239
|
duty: T['io.flow.billing.internal.v0.enums.responsible_party'].isRequired,
|
|
@@ -8213,11 +8250,11 @@ T['io.flow.billing.reporting.v0.models.reporting_fulfillment'] = PropTypes.exact
|
|
|
8213
8250
|
sequence_number: PropTypes.number.isRequired,
|
|
8214
8251
|
fulfilled_at: PropTypes.string.isRequired,
|
|
8215
8252
|
completes_order: PropTypes.bool.isRequired,
|
|
8216
|
-
payment: T['io.flow.billing.reporting.v0.models.reporting_payment'].isRequired,
|
|
8217
8253
|
refund: T['io.flow.billing.reporting.v0.models.reporting_refund_reference'],
|
|
8218
8254
|
value: T['io.flow.billing.reporting.v0.models.fulfillment_shopper_breakdown'].isRequired,
|
|
8219
8255
|
dispatch_country: T['io.flow.billing.reporting.v0.models.reporting_country'],
|
|
8220
8256
|
destination: T['io.flow.billing.reporting.v0.models.reporting_destination'],
|
|
8257
|
+
payment: T['io.flow.billing.reporting.v0.models.reporting_payment'],
|
|
8221
8258
|
shipment: T['io.flow.billing.reporting.v0.models.reporting_shipment'],
|
|
8222
8259
|
is: T['io.flow.billing.reporting.v0.models.reporting_fulfillment_is'].isRequired,
|
|
8223
8260
|
has: T['io.flow.billing.reporting.v0.models.reporting_fulfillment_has'].isRequired,
|
|
@@ -8272,6 +8309,15 @@ T['io.flow.billing.internal.v0.models.account_settings'] = PropTypes.exact({
|
|
|
8272
8309
|
enable_negative_debits: PropTypes.bool.isRequired,
|
|
8273
8310
|
});
|
|
8274
8311
|
|
|
8312
|
+
T['io.flow.payment.gateway.v0.models.payment_request_cancellation_reason_order_missing'] = PropTypes.exact({
|
|
8313
|
+
type: PropTypes.oneOf(['order_missing']).isRequired,
|
|
8314
|
+
description: PropTypes.string,
|
|
8315
|
+
});
|
|
8316
|
+
|
|
8317
|
+
T['io.flow.payment.gateway.v0.unions.payment_request_cancellation_reason'] = PropTypes.oneOfType([
|
|
8318
|
+
T['io.flow.payment.gateway.v0.models.payment_request_cancellation_reason_order_missing'],
|
|
8319
|
+
]);
|
|
8320
|
+
|
|
8275
8321
|
T['io.flow.payment.v0.enums.reversal_error_code'] = PropTypes.oneOf([
|
|
8276
8322
|
'amount_exceeds_balance',
|
|
8277
8323
|
'authorization_declined',
|
|
@@ -8305,6 +8351,7 @@ T['io.flow.payment.gateway.v0.enums.payment_request_review_check_type'] = PropTy
|
|
|
8305
8351
|
'order_missing_information',
|
|
8306
8352
|
'order_domestic',
|
|
8307
8353
|
'order_mismatched_currencies',
|
|
8354
|
+
'order_missing',
|
|
8308
8355
|
]);
|
|
8309
8356
|
|
|
8310
8357
|
T['io.flow.payment.gateway.v0.models.payment_method_data_selected_payment_option'] = PropTypes.exact({
|
|
@@ -8699,46 +8746,6 @@ T['io.flow.payment.gateway.v0.models.klarna_payment_category'] = PropTypes.exact
|
|
|
8699
8746
|
descriptive_asset_url: PropTypes.string,
|
|
8700
8747
|
});
|
|
8701
8748
|
|
|
8702
|
-
T['io.flow.google.pay.v0.models.shipping_address_parameters'] = PropTypes.exact({
|
|
8703
|
-
allowedCountryCodes: PropTypes.arrayOf(PropTypes.string),
|
|
8704
|
-
});
|
|
8705
|
-
|
|
8706
|
-
T['io.flow.google.pay.v0.models.transaction_info'] = PropTypes.exact({
|
|
8707
|
-
totalPriceStatus: T['io.flow.google.pay.v0.enums.total_price_status'].isRequired,
|
|
8708
|
-
totalPrice: PropTypes.string,
|
|
8709
|
-
currencyCode: PropTypes.string,
|
|
8710
|
-
});
|
|
8711
|
-
|
|
8712
|
-
T['io.flow.google.pay.v0.models.payment_method'] = PropTypes.exact({
|
|
8713
|
-
type: T['io.flow.google.pay.v0.enums.payment_method_type'].isRequired,
|
|
8714
|
-
parameters: T['io.flow.google.pay.v0.models.card_payment_method_parameters'].isRequired,
|
|
8715
|
-
tokenizationSpecification: T['io.flow.google.pay.v0.models.payment_method_tokenization_specification'].isRequired,
|
|
8716
|
-
});
|
|
8717
|
-
|
|
8718
|
-
T['io.flow.google.pay.v0.models.encrypted_message'] = PropTypes.exact({
|
|
8719
|
-
messageExpiration: PropTypes.string.isRequired,
|
|
8720
|
-
messageId: PropTypes.string.isRequired,
|
|
8721
|
-
paymentMethod: T['io.flow.google.pay.v0.models.payment_method'].isRequired,
|
|
8722
|
-
paymentMethodDetails: T['io.flow.google.pay.v0.models.payment_method_details'].isRequired,
|
|
8723
|
-
});
|
|
8724
|
-
|
|
8725
|
-
T['io.flow.google.pay.v0.models.merchant_info'] = PropTypes.exact({
|
|
8726
|
-
merchantId: PropTypes.string.isRequired,
|
|
8727
|
-
merchantName: PropTypes.string,
|
|
8728
|
-
authJwt: PropTypes.string,
|
|
8729
|
-
});
|
|
8730
|
-
|
|
8731
|
-
T['io.flow.google.pay.v0.models.payment_data_request'] = PropTypes.exact({
|
|
8732
|
-
apiVersion: PropTypes.number.isRequired,
|
|
8733
|
-
apiVersionMinor: PropTypes.number.isRequired,
|
|
8734
|
-
merchantInfo: T['io.flow.google.pay.v0.models.merchant_info'].isRequired,
|
|
8735
|
-
allowedPaymentMethods: PropTypes.arrayOf(T['io.flow.google.pay.v0.models.payment_method']).isRequired,
|
|
8736
|
-
transactionInfo: T['io.flow.google.pay.v0.models.transaction_info'].isRequired,
|
|
8737
|
-
emailRequired: PropTypes.bool,
|
|
8738
|
-
shippingAddressRequired: PropTypes.bool,
|
|
8739
|
-
shippingAddressParameters: T['io.flow.google.pay.v0.models.shipping_address_parameters'],
|
|
8740
|
-
});
|
|
8741
|
-
|
|
8742
8749
|
T['io.flow.apple.pay.v0.models.apple_pay_payment_contact'] = PropTypes.exact({
|
|
8743
8750
|
email_address: PropTypes.string,
|
|
8744
8751
|
family_name: PropTypes.string,
|
|
@@ -8888,6 +8895,176 @@ T['io.flow.return.v0.models.return_order_reference'] = PropTypes.exact({
|
|
|
8888
8895
|
number: PropTypes.string.isRequired,
|
|
8889
8896
|
});
|
|
8890
8897
|
|
|
8898
|
+
T['io.flow.google.pay.v0.models.direct_payment_method_token'] = PropTypes.exact({
|
|
8899
|
+
discriminator: PropTypes.oneOf(['direct_payment_method_token']).isRequired,
|
|
8900
|
+
protocolVersion: PropTypes.string.isRequired,
|
|
8901
|
+
signature: PropTypes.string.isRequired,
|
|
8902
|
+
signedMessage: PropTypes.string.isRequired,
|
|
8903
|
+
});
|
|
8904
|
+
|
|
8905
|
+
T['io.flow.stripe.v0.models.card'] = PropTypes.exact({
|
|
8906
|
+
id: PropTypes.string.isRequired,
|
|
8907
|
+
object: PropTypes.string.isRequired,
|
|
8908
|
+
address_city: PropTypes.string,
|
|
8909
|
+
address_country: PropTypes.string,
|
|
8910
|
+
address_line1: PropTypes.string,
|
|
8911
|
+
address_line1_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
8912
|
+
address_line2: PropTypes.string,
|
|
8913
|
+
address_state: PropTypes.string,
|
|
8914
|
+
address_zip: PropTypes.string,
|
|
8915
|
+
address_zip_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
8916
|
+
brand: T['io.flow.stripe.v0.enums.card_brand'],
|
|
8917
|
+
country: PropTypes.string,
|
|
8918
|
+
currency: PropTypes.string,
|
|
8919
|
+
cvc_check: T['io.flow.stripe.v0.enums.check_outcome'],
|
|
8920
|
+
dynamic_last4: PropTypes.string,
|
|
8921
|
+
exp_month: PropTypes.number.isRequired,
|
|
8922
|
+
exp_year: PropTypes.number.isRequired,
|
|
8923
|
+
fingerprint: PropTypes.string,
|
|
8924
|
+
funding: T['io.flow.stripe.v0.enums.card_funding_type'],
|
|
8925
|
+
last4: PropTypes.string,
|
|
8926
|
+
name: PropTypes.string,
|
|
8927
|
+
tokenization_method: PropTypes.string,
|
|
8928
|
+
});
|
|
8929
|
+
|
|
8930
|
+
T['io.flow.stripe.v0.enums.token_type'] = PropTypes.oneOf(['account', 'bank_account', 'card', 'pii']);
|
|
8931
|
+
|
|
8932
|
+
T['io.flow.stripe.v0.models.token'] = PropTypes.exact({
|
|
8933
|
+
id: PropTypes.string.isRequired,
|
|
8934
|
+
object: PropTypes.string.isRequired,
|
|
8935
|
+
client_ip: PropTypes.string.isRequired,
|
|
8936
|
+
created: PropTypes.number.isRequired,
|
|
8937
|
+
livemode: PropTypes.bool.isRequired,
|
|
8938
|
+
type: T['io.flow.stripe.v0.enums.token_type'].isRequired,
|
|
8939
|
+
used: PropTypes.bool.isRequired,
|
|
8940
|
+
card: T['io.flow.stripe.v0.models.card'],
|
|
8941
|
+
});
|
|
8942
|
+
|
|
8943
|
+
T['io.flow.google.pay.v0.models.stripe_payment_method_token'] = PropTypes.exact({
|
|
8944
|
+
discriminator: PropTypes.oneOf(['stripe_payment_method_token']).isRequired,
|
|
8945
|
+
token: T['io.flow.stripe.v0.models.token'].isRequired,
|
|
8946
|
+
});
|
|
8947
|
+
|
|
8948
|
+
T['io.flow.google.pay.v0.unions.payment_method_token'] = PropTypes.oneOfType([
|
|
8949
|
+
T['io.flow.google.pay.v0.models.direct_payment_method_token'],
|
|
8950
|
+
T['io.flow.google.pay.v0.models.stripe_payment_method_token'],
|
|
8951
|
+
]);
|
|
8952
|
+
|
|
8953
|
+
T['io.flow.google.pay.v0.enums.tokenization_type'] = PropTypes.oneOf(['PAYMENT_GATEWAY', 'DIRECT']);
|
|
8954
|
+
T['io.flow.google.pay.v0.enums.total_price_status'] = PropTypes.oneOf(['NOT_CURRENTLY_KNOWN', 'ESTIMATED', 'FINAL']);
|
|
8955
|
+
|
|
8956
|
+
T['io.flow.google.pay.v0.models.shipping_address_parameters'] = PropTypes.exact({
|
|
8957
|
+
allowedCountryCodes: PropTypes.arrayOf(PropTypes.string),
|
|
8958
|
+
});
|
|
8959
|
+
|
|
8960
|
+
T['io.flow.google.pay.v0.models.transaction_info'] = PropTypes.exact({
|
|
8961
|
+
totalPriceStatus: T['io.flow.google.pay.v0.enums.total_price_status'].isRequired,
|
|
8962
|
+
totalPrice: PropTypes.string,
|
|
8963
|
+
currencyCode: PropTypes.string,
|
|
8964
|
+
});
|
|
8965
|
+
|
|
8966
|
+
T['io.flow.google.pay.v0.models.merchant_info'] = PropTypes.exact({
|
|
8967
|
+
merchantId: PropTypes.string.isRequired,
|
|
8968
|
+
merchantName: PropTypes.string,
|
|
8969
|
+
authJwt: PropTypes.string,
|
|
8970
|
+
});
|
|
8971
|
+
|
|
8972
|
+
T['io.flow.google.pay.v0.models.payment_method_tokenization_data'] = PropTypes.exact({
|
|
8973
|
+
type: PropTypes.string.isRequired,
|
|
8974
|
+
token: PropTypes.string,
|
|
8975
|
+
});
|
|
8976
|
+
|
|
8977
|
+
T['io.flow.google.pay.v0.models.payment_method_tokenization_specification'] = PropTypes.exact({
|
|
8978
|
+
type: T['io.flow.google.pay.v0.enums.tokenization_type'].isRequired,
|
|
8979
|
+
parameters: PropTypes.object.isRequired,
|
|
8980
|
+
});
|
|
8981
|
+
|
|
8982
|
+
T['io.flow.google.pay.v0.enums.payment_method_type'] = PropTypes.oneOf(['CARD']);
|
|
8983
|
+
T['io.flow.google.pay.v0.enums.card_network'] = PropTypes.oneOf(['AMEX', 'DISCOVER', 'JCB', 'MASTERCARD', 'VISA']);
|
|
8984
|
+
T['io.flow.google.pay.v0.enums.auth_method'] = PropTypes.oneOf(['PAN_ONLY', 'CRYPTOGRAM_3DS']);
|
|
8985
|
+
|
|
8986
|
+
T['io.flow.google.pay.v0.models.payment_method_details'] = PropTypes.exact({
|
|
8987
|
+
pan: PropTypes.string.isRequired,
|
|
8988
|
+
expirationMonth: PropTypes.number.isRequired,
|
|
8989
|
+
expirationYear: PropTypes.number.isRequired,
|
|
8990
|
+
authMethod: T['io.flow.google.pay.v0.enums.auth_method'].isRequired,
|
|
8991
|
+
cryptogram: PropTypes.string,
|
|
8992
|
+
eciIndicator: PropTypes.string,
|
|
8993
|
+
});
|
|
8994
|
+
|
|
8995
|
+
T['io.flow.google.pay.v0.models.address'] = PropTypes.exact({
|
|
8996
|
+
name: PropTypes.string.isRequired,
|
|
8997
|
+
postalCode: PropTypes.string.isRequired,
|
|
8998
|
+
countryCode: PropTypes.string.isRequired,
|
|
8999
|
+
phoneNumber: PropTypes.string.isRequired,
|
|
9000
|
+
companyName: PropTypes.string.isRequired,
|
|
9001
|
+
address1: PropTypes.string.isRequired,
|
|
9002
|
+
address2: PropTypes.string.isRequired,
|
|
9003
|
+
address3: PropTypes.string.isRequired,
|
|
9004
|
+
locality: PropTypes.string.isRequired,
|
|
9005
|
+
administrativeArea: PropTypes.string.isRequired,
|
|
9006
|
+
sortingCode: PropTypes.string.isRequired,
|
|
9007
|
+
});
|
|
9008
|
+
|
|
9009
|
+
T['io.flow.google.pay.v0.models.card_payment_method_data_info'] = PropTypes.exact({
|
|
9010
|
+
cardDetails: PropTypes.string.isRequired,
|
|
9011
|
+
cardNetwork: PropTypes.string.isRequired,
|
|
9012
|
+
billingAddress: T['io.flow.google.pay.v0.models.address'],
|
|
9013
|
+
});
|
|
9014
|
+
|
|
9015
|
+
T['io.flow.google.pay.v0.models.payment_method_data'] = PropTypes.exact({
|
|
9016
|
+
type: T['io.flow.google.pay.v0.enums.payment_method_type'].isRequired,
|
|
9017
|
+
description: PropTypes.string.isRequired,
|
|
9018
|
+
info: T['io.flow.google.pay.v0.models.card_payment_method_data_info'].isRequired,
|
|
9019
|
+
tokenizationData: T['io.flow.google.pay.v0.models.payment_method_tokenization_data'].isRequired,
|
|
9020
|
+
});
|
|
9021
|
+
|
|
9022
|
+
T['io.flow.google.pay.v0.models.payment_data'] = PropTypes.exact({
|
|
9023
|
+
apiVersion: PropTypes.number.isRequired,
|
|
9024
|
+
apiVersionMinor: PropTypes.number.isRequired,
|
|
9025
|
+
paymentMethodData: T['io.flow.google.pay.v0.models.payment_method_data'].isRequired,
|
|
9026
|
+
email: PropTypes.string,
|
|
9027
|
+
shippingAddress: T['io.flow.google.pay.v0.models.address'],
|
|
9028
|
+
});
|
|
9029
|
+
|
|
9030
|
+
T['io.flow.google.pay.v0.enums.billing_address_format'] = PropTypes.oneOf(['MIN', 'FULL']);
|
|
9031
|
+
|
|
9032
|
+
T['io.flow.google.pay.v0.models.billing_address_parameters'] = PropTypes.exact({
|
|
9033
|
+
format: T['io.flow.google.pay.v0.enums.billing_address_format'],
|
|
9034
|
+
phoneNumberRequired: PropTypes.bool,
|
|
9035
|
+
});
|
|
9036
|
+
|
|
9037
|
+
T['io.flow.google.pay.v0.models.card_payment_method_parameters'] = PropTypes.exact({
|
|
9038
|
+
allowedAuthMethods: PropTypes.arrayOf(T['io.flow.google.pay.v0.enums.auth_method']).isRequired,
|
|
9039
|
+
allowedCardNetworks: PropTypes.arrayOf(T['io.flow.google.pay.v0.enums.card_network']).isRequired,
|
|
9040
|
+
billingAddressRequired: PropTypes.bool,
|
|
9041
|
+
billingAddressParameters: T['io.flow.google.pay.v0.models.billing_address_parameters'],
|
|
9042
|
+
});
|
|
9043
|
+
|
|
9044
|
+
T['io.flow.google.pay.v0.models.payment_method'] = PropTypes.exact({
|
|
9045
|
+
type: T['io.flow.google.pay.v0.enums.payment_method_type'].isRequired,
|
|
9046
|
+
parameters: T['io.flow.google.pay.v0.models.card_payment_method_parameters'].isRequired,
|
|
9047
|
+
tokenizationSpecification: T['io.flow.google.pay.v0.models.payment_method_tokenization_specification'].isRequired,
|
|
9048
|
+
});
|
|
9049
|
+
|
|
9050
|
+
T['io.flow.google.pay.v0.models.payment_data_request'] = PropTypes.exact({
|
|
9051
|
+
apiVersion: PropTypes.number.isRequired,
|
|
9052
|
+
apiVersionMinor: PropTypes.number.isRequired,
|
|
9053
|
+
merchantInfo: T['io.flow.google.pay.v0.models.merchant_info'].isRequired,
|
|
9054
|
+
allowedPaymentMethods: PropTypes.arrayOf(T['io.flow.google.pay.v0.models.payment_method']).isRequired,
|
|
9055
|
+
transactionInfo: T['io.flow.google.pay.v0.models.transaction_info'].isRequired,
|
|
9056
|
+
emailRequired: PropTypes.bool,
|
|
9057
|
+
shippingAddressRequired: PropTypes.bool,
|
|
9058
|
+
shippingAddressParameters: T['io.flow.google.pay.v0.models.shipping_address_parameters'],
|
|
9059
|
+
});
|
|
9060
|
+
|
|
9061
|
+
T['io.flow.google.pay.v0.models.encrypted_message'] = PropTypes.exact({
|
|
9062
|
+
messageExpiration: PropTypes.string.isRequired,
|
|
9063
|
+
messageId: PropTypes.string.isRequired,
|
|
9064
|
+
paymentMethod: T['io.flow.google.pay.v0.models.payment_method'].isRequired,
|
|
9065
|
+
paymentMethodDetails: T['io.flow.google.pay.v0.models.payment_method_details'].isRequired,
|
|
9066
|
+
});
|
|
9067
|
+
|
|
8891
9068
|
T['io.flow.label.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
8892
9069
|
T['io.flow.fulfillment.v0.enums.item_availability_status'] = PropTypes.oneOf(['available', 'low', 'out_of_stock']);
|
|
8893
9070
|
|
|
@@ -9292,6 +9469,14 @@ T['io.flow.internal.v0.unions.explicit_statement_form'] = PropTypes.oneOfType([
|
|
|
9292
9469
|
T['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'],
|
|
9293
9470
|
]);
|
|
9294
9471
|
|
|
9472
|
+
T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'] = PropTypes.exact({
|
|
9473
|
+
discriminator: PropTypes.oneOf(['tracking_assurance_analysis_deleted']).isRequired,
|
|
9474
|
+
event_id: PropTypes.string.isRequired,
|
|
9475
|
+
timestamp: PropTypes.string.isRequired,
|
|
9476
|
+
organization: PropTypes.string.isRequired,
|
|
9477
|
+
id: PropTypes.string.isRequired,
|
|
9478
|
+
});
|
|
9479
|
+
|
|
9295
9480
|
T['io.flow.internal.v0.models.tracking_processing_error_deleted'] = PropTypes.exact({
|
|
9296
9481
|
discriminator: PropTypes.oneOf(['tracking_processing_error_deleted']).isRequired,
|
|
9297
9482
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9313,6 +9498,20 @@ T['io.flow.internal.v0.models.shruti_demo_item_deleted'] = PropTypes.exact({
|
|
|
9313
9498
|
id: PropTypes.string.isRequired,
|
|
9314
9499
|
});
|
|
9315
9500
|
|
|
9501
|
+
T['io.flow.internal.v0.models.miljenko_item_deleted'] = PropTypes.exact({
|
|
9502
|
+
discriminator: PropTypes.oneOf(['miljenko_item_deleted']).isRequired,
|
|
9503
|
+
event_id: PropTypes.string.isRequired,
|
|
9504
|
+
timestamp: PropTypes.string.isRequired,
|
|
9505
|
+
id: PropTypes.string.isRequired,
|
|
9506
|
+
});
|
|
9507
|
+
|
|
9508
|
+
T['io.flow.internal.v0.models.michaelyan_item_deleted'] = PropTypes.exact({
|
|
9509
|
+
discriminator: PropTypes.oneOf(['michaelyan_item_deleted']).isRequired,
|
|
9510
|
+
event_id: PropTypes.string.isRequired,
|
|
9511
|
+
timestamp: PropTypes.string.isRequired,
|
|
9512
|
+
id: PropTypes.string.isRequired,
|
|
9513
|
+
});
|
|
9514
|
+
|
|
9316
9515
|
T['io.flow.internal.v0.models.matias_item_deleted'] = PropTypes.exact({
|
|
9317
9516
|
discriminator: PropTypes.oneOf(['matias_item_deleted']).isRequired,
|
|
9318
9517
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9320,6 +9519,20 @@ T['io.flow.internal.v0.models.matias_item_deleted'] = PropTypes.exact({
|
|
|
9320
9519
|
id: PropTypes.string.isRequired,
|
|
9321
9520
|
});
|
|
9322
9521
|
|
|
9522
|
+
T['io.flow.internal.v0.models.konstantin_item_deleted'] = PropTypes.exact({
|
|
9523
|
+
discriminator: PropTypes.oneOf(['konstantin_item_deleted']).isRequired,
|
|
9524
|
+
event_id: PropTypes.string.isRequired,
|
|
9525
|
+
timestamp: PropTypes.string.isRequired,
|
|
9526
|
+
id: PropTypes.string.isRequired,
|
|
9527
|
+
});
|
|
9528
|
+
|
|
9529
|
+
T['io.flow.internal.v0.models.harinath_item_deleted'] = PropTypes.exact({
|
|
9530
|
+
discriminator: PropTypes.oneOf(['harinath_item_deleted']).isRequired,
|
|
9531
|
+
event_id: PropTypes.string.isRequired,
|
|
9532
|
+
timestamp: PropTypes.string.isRequired,
|
|
9533
|
+
id: PropTypes.string.isRequired,
|
|
9534
|
+
});
|
|
9535
|
+
|
|
9323
9536
|
T['io.flow.internal.v0.models.colm_item_deleted'] = PropTypes.exact({
|
|
9324
9537
|
discriminator: PropTypes.oneOf(['colm_item_deleted']).isRequired,
|
|
9325
9538
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9341,6 +9554,14 @@ T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = Pr
|
|
|
9341
9554
|
id: PropTypes.string.isRequired,
|
|
9342
9555
|
});
|
|
9343
9556
|
|
|
9557
|
+
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'] = PropTypes.exact({
|
|
9558
|
+
discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_deleted']).isRequired,
|
|
9559
|
+
event_id: PropTypes.string.isRequired,
|
|
9560
|
+
timestamp: PropTypes.string.isRequired,
|
|
9561
|
+
organization: PropTypes.string.isRequired,
|
|
9562
|
+
id: PropTypes.string.isRequired,
|
|
9563
|
+
});
|
|
9564
|
+
|
|
9344
9565
|
T['io.flow.internal.v0.models.channel_organization_identifier_deleted'] = PropTypes.exact({
|
|
9345
9566
|
discriminator: PropTypes.oneOf(['channel_organization_identifier_deleted']).isRequired,
|
|
9346
9567
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9457,6 +9678,14 @@ T['io.flow.internal.v0.models.partner_organization_settings_deleted'] = PropType
|
|
|
9457
9678
|
id: PropTypes.string.isRequired,
|
|
9458
9679
|
});
|
|
9459
9680
|
|
|
9681
|
+
T['io.flow.internal.v0.models.organization_metadata_deleted'] = PropTypes.exact({
|
|
9682
|
+
discriminator: PropTypes.oneOf(['organization_metadata_deleted']).isRequired,
|
|
9683
|
+
event_id: PropTypes.string.isRequired,
|
|
9684
|
+
timestamp: PropTypes.string.isRequired,
|
|
9685
|
+
organization: PropTypes.string.isRequired,
|
|
9686
|
+
id: PropTypes.string.isRequired,
|
|
9687
|
+
});
|
|
9688
|
+
|
|
9460
9689
|
T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'] = PropTypes.exact({
|
|
9461
9690
|
discriminator: PropTypes.oneOf(['merchant_guid_assignment_deleted']).isRequired,
|
|
9462
9691
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9708,6 +9937,30 @@ T['io.flow.internal.v0.models.manual_review_rule_deleted'] = PropTypes.exact({
|
|
|
9708
9937
|
id: PropTypes.string.isRequired,
|
|
9709
9938
|
});
|
|
9710
9939
|
|
|
9940
|
+
T['io.flow.internal.v0.models.fraud_review_authorization_decision_deleted'] = PropTypes.exact({
|
|
9941
|
+
discriminator: PropTypes.oneOf(['fraud_review_authorization_decision_deleted']).isRequired,
|
|
9942
|
+
event_id: PropTypes.string.isRequired,
|
|
9943
|
+
timestamp: PropTypes.string.isRequired,
|
|
9944
|
+
organization: PropTypes.string.isRequired,
|
|
9945
|
+
id: PropTypes.string.isRequired,
|
|
9946
|
+
});
|
|
9947
|
+
|
|
9948
|
+
T['io.flow.internal.v0.models.fraud_pending_review_authorization_deleted'] = PropTypes.exact({
|
|
9949
|
+
discriminator: PropTypes.oneOf(['fraud_pending_review_authorization_deleted']).isRequired,
|
|
9950
|
+
event_id: PropTypes.string.isRequired,
|
|
9951
|
+
timestamp: PropTypes.string.isRequired,
|
|
9952
|
+
organization: PropTypes.string.isRequired,
|
|
9953
|
+
id: PropTypes.string.isRequired,
|
|
9954
|
+
});
|
|
9955
|
+
|
|
9956
|
+
T['io.flow.internal.v0.models.fraud_review_authorization_deleted'] = PropTypes.exact({
|
|
9957
|
+
discriminator: PropTypes.oneOf(['fraud_review_authorization_deleted']).isRequired,
|
|
9958
|
+
event_id: PropTypes.string.isRequired,
|
|
9959
|
+
timestamp: PropTypes.string.isRequired,
|
|
9960
|
+
organization: PropTypes.string.isRequired,
|
|
9961
|
+
id: PropTypes.string.isRequired,
|
|
9962
|
+
});
|
|
9963
|
+
|
|
9711
9964
|
T['io.flow.internal.v0.models.fraud_review_decision_deleted'] = PropTypes.exact({
|
|
9712
9965
|
discriminator: PropTypes.oneOf(['fraud_review_decision_deleted']).isRequired,
|
|
9713
9966
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9830,22 +10083,6 @@ T['io.flow.internal.v0.models.export_completed'] = PropTypes.exact({
|
|
|
9830
10083
|
url: PropTypes.string.isRequired,
|
|
9831
10084
|
});
|
|
9832
10085
|
|
|
9833
|
-
T['io.flow.internal.v0.models.experiment_milestone_deleted'] = PropTypes.exact({
|
|
9834
|
-
discriminator: PropTypes.oneOf(['experiment_milestone_deleted']).isRequired,
|
|
9835
|
-
event_id: PropTypes.string.isRequired,
|
|
9836
|
-
timestamp: PropTypes.string.isRequired,
|
|
9837
|
-
organization: PropTypes.string.isRequired,
|
|
9838
|
-
id: PropTypes.string.isRequired,
|
|
9839
|
-
});
|
|
9840
|
-
|
|
9841
|
-
T['io.flow.internal.v0.models.experiment_deleted'] = PropTypes.exact({
|
|
9842
|
-
discriminator: PropTypes.oneOf(['experiment_deleted']).isRequired,
|
|
9843
|
-
event_id: PropTypes.string.isRequired,
|
|
9844
|
-
timestamp: PropTypes.string.isRequired,
|
|
9845
|
-
organization_id: PropTypes.string.isRequired,
|
|
9846
|
-
id: PropTypes.string.isRequired,
|
|
9847
|
-
});
|
|
9848
|
-
|
|
9849
10086
|
T['io.flow.internal.v0.models.experience_export_request'] = PropTypes.exact({
|
|
9850
10087
|
discriminator: PropTypes.oneOf(['experience_export_request']).isRequired,
|
|
9851
10088
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10040,6 +10277,13 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
|
|
|
10040
10277
|
id: PropTypes.string.isRequired,
|
|
10041
10278
|
});
|
|
10042
10279
|
|
|
10280
|
+
T['io.flow.internal.v0.models.other_record_deleted'] = PropTypes.exact({
|
|
10281
|
+
discriminator: PropTypes.oneOf(['other_record_deleted']).isRequired,
|
|
10282
|
+
event_id: PropTypes.string.isRequired,
|
|
10283
|
+
timestamp: PropTypes.string.isRequired,
|
|
10284
|
+
id: PropTypes.string.isRequired,
|
|
10285
|
+
});
|
|
10286
|
+
|
|
10043
10287
|
T['io.flow.internal.v0.models.revenue_record_deleted'] = PropTypes.exact({
|
|
10044
10288
|
discriminator: PropTypes.oneOf(['revenue_record_deleted']).isRequired,
|
|
10045
10289
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10358,6 +10602,35 @@ T['io.flow.internal.v0.models.tracking_debug_label_location'] = PropTypes.exact(
|
|
|
10358
10602
|
country: PropTypes.string.isRequired,
|
|
10359
10603
|
});
|
|
10360
10604
|
|
|
10605
|
+
T['io.flow.internal.v0.models.tracking_assurance_analysis'] = PropTypes.exact({
|
|
10606
|
+
id: PropTypes.string.isRequired,
|
|
10607
|
+
job_id: PropTypes.string.isRequired,
|
|
10608
|
+
label_id: PropTypes.string.isRequired,
|
|
10609
|
+
order_number: PropTypes.string.isRequired,
|
|
10610
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
10611
|
+
flow_tracking_number: PropTypes.string.isRequired,
|
|
10612
|
+
carrier_status: PropTypes.string.isRequired,
|
|
10613
|
+
aftership_status: PropTypes.string.isRequired,
|
|
10614
|
+
flow_status: PropTypes.string.isRequired,
|
|
10615
|
+
latest_carrier_event_date: PropTypes.string.isRequired,
|
|
10616
|
+
latest_aftership_event_date: PropTypes.string.isRequired,
|
|
10617
|
+
latest_flow_event_date: PropTypes.string.isRequired,
|
|
10618
|
+
label_created_at: PropTypes.string.isRequired,
|
|
10619
|
+
carrier_id: PropTypes.string.isRequired,
|
|
10620
|
+
carrier_origin_country: PropTypes.string,
|
|
10621
|
+
label_origin_country: PropTypes.string.isRequired,
|
|
10622
|
+
label_destination_country: PropTypes.string.isRequired,
|
|
10623
|
+
carrier_destination_country: PropTypes.string,
|
|
10624
|
+
});
|
|
10625
|
+
|
|
10626
|
+
T['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'] = PropTypes.exact({
|
|
10627
|
+
discriminator: PropTypes.oneOf(['tracking_assurance_analysis_upserted']).isRequired,
|
|
10628
|
+
event_id: PropTypes.string.isRequired,
|
|
10629
|
+
timestamp: PropTypes.string.isRequired,
|
|
10630
|
+
organization: PropTypes.string.isRequired,
|
|
10631
|
+
analysis: T['io.flow.internal.v0.models.tracking_assurance_analysis'].isRequired,
|
|
10632
|
+
});
|
|
10633
|
+
|
|
10361
10634
|
T['io.flow.internal.v0.models.time_to_classify'] = PropTypes.exact({
|
|
10362
10635
|
discriminator: PropTypes.oneOf(['time-to-classify']).isRequired,
|
|
10363
10636
|
key: PropTypes.string.isRequired,
|
|
@@ -10411,6 +10684,8 @@ T['io.flow.internal.v0.models.time_to_classify_aggregated_deleted'] = PropTypes.
|
|
|
10411
10684
|
time_to_classify_aggregated: T['io.flow.internal.v0.models.time_to_classify_aggregated'].isRequired,
|
|
10412
10685
|
});
|
|
10413
10686
|
|
|
10687
|
+
T['io.flow.internal.v0.enums.thiago_item_type'] = PropTypes.oneOf(['digital', 'physical']);
|
|
10688
|
+
|
|
10414
10689
|
T['io.flow.internal.v0.models.taxonomy_node'] = PropTypes.exact({
|
|
10415
10690
|
id: PropTypes.string.isRequired,
|
|
10416
10691
|
children: PropTypes.arrayOf(PropTypes.any),
|
|
@@ -11140,6 +11415,8 @@ T['io.flow.internal.v0.models.shopify_shop_statistics'] = PropTypes.exact({
|
|
|
11140
11415
|
id: PropTypes.string.isRequired,
|
|
11141
11416
|
initial_catalog_synced_at: PropTypes.string,
|
|
11142
11417
|
catalog_sync_duration: PropTypes.number,
|
|
11418
|
+
restrictions_sync_duration: PropTypes.number,
|
|
11419
|
+
classifications_sync_duration: PropTypes.number,
|
|
11143
11420
|
catalog_products_count: PropTypes.number,
|
|
11144
11421
|
initial_product_restrictions_synced_at: PropTypes.string,
|
|
11145
11422
|
});
|
|
@@ -11302,6 +11579,7 @@ T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] =
|
|
|
11302
11579
|
'business_street_address_is_po_box',
|
|
11303
11580
|
'exception_merchant',
|
|
11304
11581
|
'application_missing',
|
|
11582
|
+
'missing_logistics_contact_info',
|
|
11305
11583
|
]);
|
|
11306
11584
|
|
|
11307
11585
|
T['io.flow.internal.v0.models.setup_block_put_form'] = PropTypes.exact({
|
|
@@ -11325,6 +11603,52 @@ T['io.flow.internal.v0.models.session_countries'] = PropTypes.exact({
|
|
|
11325
11603
|
countries: PropTypes.arrayOf(T['io.flow.internal.v0.models.session_country']).isRequired,
|
|
11326
11604
|
});
|
|
11327
11605
|
|
|
11606
|
+
T['io.flow.experiment.internal.v0.enums.status'] = PropTypes.oneOf(['draft', 'scheduled', 'live', 'ended', 'archived']);
|
|
11607
|
+
|
|
11608
|
+
T['io.flow.experiment.internal.v0.models.feature_experiment'] = PropTypes.exact({
|
|
11609
|
+
discriminator: PropTypes.oneOf(['feature']).isRequired,
|
|
11610
|
+
id: PropTypes.string.isRequired,
|
|
11611
|
+
key: PropTypes.string.isRequired,
|
|
11612
|
+
name: PropTypes.string.isRequired,
|
|
11613
|
+
description: PropTypes.string,
|
|
11614
|
+
status: T['io.flow.experiment.internal.v0.enums.status'].isRequired,
|
|
11615
|
+
emails: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11616
|
+
scope: T['io.flow.experiment.internal.v0.enums.scope'].isRequired,
|
|
11617
|
+
started_at: PropTypes.string,
|
|
11618
|
+
ended_at: PropTypes.string,
|
|
11619
|
+
variants: PropTypes.arrayOf(T['io.flow.experiment.internal.v0.models.feature_variant']).isRequired,
|
|
11620
|
+
transitions: PropTypes.arrayOf(T['io.flow.experiment.internal.v0.enums.status']),
|
|
11621
|
+
significance_action: T['io.flow.experiment.internal.v0.enums.significance_action'],
|
|
11622
|
+
session_query: PropTypes.string,
|
|
11623
|
+
});
|
|
11624
|
+
|
|
11625
|
+
T['io.flow.experiment.internal.v0.models.experience_experiment'] = PropTypes.exact({
|
|
11626
|
+
discriminator: PropTypes.oneOf(['experience']).isRequired,
|
|
11627
|
+
id: PropTypes.string.isRequired,
|
|
11628
|
+
key: PropTypes.string.isRequired,
|
|
11629
|
+
name: PropTypes.string.isRequired,
|
|
11630
|
+
description: PropTypes.string,
|
|
11631
|
+
status: T['io.flow.experiment.internal.v0.enums.status'].isRequired,
|
|
11632
|
+
emails: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
11633
|
+
started_at: PropTypes.string,
|
|
11634
|
+
ended_at: PropTypes.string,
|
|
11635
|
+
variants: PropTypes.arrayOf(T['io.flow.experiment.internal.v0.models.experience_variant']).isRequired,
|
|
11636
|
+
transitions: PropTypes.arrayOf(T['io.flow.experiment.internal.v0.enums.status']),
|
|
11637
|
+
significance_action: T['io.flow.experiment.internal.v0.enums.significance_action'],
|
|
11638
|
+
});
|
|
11639
|
+
|
|
11640
|
+
T['io.flow.experiment.internal.v0.unions.experiment'] = PropTypes.oneOfType([
|
|
11641
|
+
T['io.flow.experiment.internal.v0.models.experience_experiment'],
|
|
11642
|
+
T['io.flow.experiment.internal.v0.models.feature_experiment'],
|
|
11643
|
+
]);
|
|
11644
|
+
|
|
11645
|
+
T['io.flow.internal.v0.models.search_experiment_summary'] = PropTypes.exact({
|
|
11646
|
+
discriminator: PropTypes.oneOf(['search_experiment_summary']).isRequired,
|
|
11647
|
+
key: PropTypes.string.isRequired,
|
|
11648
|
+
name: PropTypes.string.isRequired,
|
|
11649
|
+
status: T['io.flow.experiment.internal.v0.enums.status'].isRequired,
|
|
11650
|
+
});
|
|
11651
|
+
|
|
11328
11652
|
T['io.flow.experience.v0.enums.experience_status'] = PropTypes.oneOf(['draft', 'active', 'archiving', 'archived']);
|
|
11329
11653
|
|
|
11330
11654
|
T['io.flow.experience.v0.models.experience_status_form'] = PropTypes.exact({
|
|
@@ -11338,9 +11662,10 @@ T['io.flow.internal.v0.models.search_experience_summary'] = PropTypes.exact({
|
|
|
11338
11662
|
status: T['io.flow.experience.v0.enums.experience_status'].isRequired,
|
|
11339
11663
|
});
|
|
11340
11664
|
|
|
11341
|
-
T['io.flow.payment.v0.unions.payment_processor_transaction_details'] = PropTypes.oneOfType(
|
|
11342
|
-
|
|
11343
|
-
|
|
11665
|
+
T['io.flow.payment.v0.unions.payment_processor_transaction_details'] = PropTypes.oneOfType([
|
|
11666
|
+
T['io.flow.payment.v0.models.payment_processor_transaction_details_card'],
|
|
11667
|
+
T['io.flow.payment.v0.models.payment_processor_transaction_details_apm'],
|
|
11668
|
+
]);
|
|
11344
11669
|
|
|
11345
11670
|
T['io.flow.payment.v0.models.payment_processor_identifier'] = PropTypes.exact({
|
|
11346
11671
|
id: PropTypes.string.isRequired,
|
|
@@ -11473,7 +11798,6 @@ T['io.flow.billing.reporting.csv.v0.models.reporting_fulfillment'] = PropTypes.e
|
|
|
11473
11798
|
sequence_number: PropTypes.number.isRequired,
|
|
11474
11799
|
fulfilled_at: PropTypes.string.isRequired,
|
|
11475
11800
|
completes_order: PropTypes.bool.isRequired,
|
|
11476
|
-
payment: T['io.flow.billing.reporting.v0.models.reporting_payment'].isRequired,
|
|
11477
11801
|
value: T['io.flow.billing.reporting.v0.models.fulfillment_shopper_breakdown'].isRequired,
|
|
11478
11802
|
dispatch_country: T['io.flow.billing.reporting.v0.models.reporting_country'],
|
|
11479
11803
|
destination: T['io.flow.billing.reporting.v0.models.reporting_destination'].isRequired,
|
|
@@ -11498,6 +11822,8 @@ T['io.flow.billing.reporting.v0.models.reporting_merchant_transactions'] = PropT
|
|
|
11498
11822
|
tax: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11499
11823
|
duty: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11500
11824
|
freight: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11825
|
+
discount: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'],
|
|
11826
|
+
total: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'],
|
|
11501
11827
|
});
|
|
11502
11828
|
|
|
11503
11829
|
T['io.flow.billing.reporting.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
@@ -11508,6 +11834,7 @@ T['io.flow.billing.reporting.v0.models.reporting_merchant_fees'] = PropTypes.exa
|
|
|
11508
11834
|
processing: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11509
11835
|
rate_lock: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11510
11836
|
transfer: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11837
|
+
total: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'],
|
|
11511
11838
|
});
|
|
11512
11839
|
|
|
11513
11840
|
T['io.flow.billing.reporting.v0.models.reporting_merchant_subsidies'] = PropTypes.exact({
|
|
@@ -11515,6 +11842,7 @@ T['io.flow.billing.reporting.v0.models.reporting_merchant_subsidies'] = PropType
|
|
|
11515
11842
|
tax: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11516
11843
|
duty: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11517
11844
|
ccf: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'].isRequired,
|
|
11845
|
+
total: T['io.flow.billing.reporting.v0.models.reporting_monetary_value'],
|
|
11518
11846
|
});
|
|
11519
11847
|
|
|
11520
11848
|
T['io.flow.billing.reporting.v0.models.reporting_merchant_breakdown'] = PropTypes.exact({
|
|
@@ -11755,14 +12083,6 @@ T['io.flow.internal.v0.models.reporting_vat_remittance'] = PropTypes.exact({
|
|
|
11755
12083
|
rate: T['io.flow.internal.v0.models.reporting_vat_remittance_rate'].isRequired,
|
|
11756
12084
|
});
|
|
11757
12085
|
|
|
11758
|
-
T['io.flow.internal.v0.models.reporting_payment_metadata_additional_authorizations'] = PropTypes.exact({
|
|
11759
|
-
ids: PropTypes.string.isRequired,
|
|
11760
|
-
});
|
|
11761
|
-
|
|
11762
|
-
T['io.flow.internal.v0.models.reporting_authorization_reference'] = PropTypes.exact({
|
|
11763
|
-
id: PropTypes.string.isRequired,
|
|
11764
|
-
});
|
|
11765
|
-
|
|
11766
12086
|
T['io.flow.internal.v0.models.reporting_usd'] = PropTypes.exact({
|
|
11767
12087
|
usd: PropTypes.number.isRequired,
|
|
11768
12088
|
});
|
|
@@ -11780,6 +12100,7 @@ T['io.flow.internal.v0.models.reporting_fx'] = PropTypes.exact({
|
|
|
11780
12100
|
product: T['io.flow.internal.v0.models.reporting_usd'].isRequired,
|
|
11781
12101
|
tax: T['io.flow.internal.v0.models.reporting_usd'].isRequired,
|
|
11782
12102
|
duty: T['io.flow.internal.v0.models.reporting_usd'].isRequired,
|
|
12103
|
+
tips: T['io.flow.internal.v0.models.reporting_usd'],
|
|
11783
12104
|
total: T['io.flow.internal.v0.models.reporting_usd'].isRequired,
|
|
11784
12105
|
});
|
|
11785
12106
|
|
|
@@ -11794,6 +12115,11 @@ T['io.flow.internal.v0.models.reporting_fulfillment_is'] = PropTypes.exact({
|
|
|
11794
12115
|
wyol: PropTypes.bool.isRequired,
|
|
11795
12116
|
b2b: PropTypes.bool.isRequired,
|
|
11796
12117
|
domestic: PropTypes.bool.isRequired,
|
|
12118
|
+
combined_shipment: PropTypes.bool,
|
|
12119
|
+
order_cancelled: PropTypes.bool,
|
|
12120
|
+
lvg: PropTypes.bool,
|
|
12121
|
+
tax_inclusive: PropTypes.bool,
|
|
12122
|
+
duty_inclusive: PropTypes.bool,
|
|
11797
12123
|
});
|
|
11798
12124
|
|
|
11799
12125
|
T['io.flow.internal.v0.models.reporting_refund_reference'] = PropTypes.exact({
|
|
@@ -11838,11 +12164,15 @@ T['io.flow.internal.v0.enums.report_payment_type'] = PropTypes.oneOf(['credit',
|
|
|
11838
12164
|
|
|
11839
12165
|
T['io.flow.internal.v0.enums.report_type'] = PropTypes.oneOf([
|
|
11840
12166
|
'sales_record',
|
|
12167
|
+
'refund_record',
|
|
12168
|
+
'other_record',
|
|
12169
|
+
'pending_record',
|
|
11841
12170
|
'trueup_overview',
|
|
11842
12171
|
'non_channel_payment_bank_account',
|
|
11843
12172
|
'scheduled_payment',
|
|
11844
12173
|
'account_quarterly_balances',
|
|
11845
12174
|
'invariants',
|
|
12175
|
+
'payments',
|
|
11846
12176
|
]);
|
|
11847
12177
|
|
|
11848
12178
|
T['io.flow.internal.v0.models.report_form'] = PropTypes.exact({
|
|
@@ -12522,6 +12852,31 @@ T['io.flow.internal.v0.models.partner_organization_settings_upserted'] = PropTyp
|
|
|
12522
12852
|
partner_organization_settings: T['io.flow.internal.v0.models.partner_organization_settings'].isRequired,
|
|
12523
12853
|
});
|
|
12524
12854
|
|
|
12855
|
+
T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'] = PropTypes.exact({
|
|
12856
|
+
iin: PropTypes.string.isRequired,
|
|
12857
|
+
country: PropTypes.string.isRequired,
|
|
12858
|
+
});
|
|
12859
|
+
|
|
12860
|
+
T['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'] = PropTypes.exact({
|
|
12861
|
+
id: PropTypes.string.isRequired,
|
|
12862
|
+
});
|
|
12863
|
+
|
|
12864
|
+
T['io.flow.billing.v0.models.transaction_metadata_failed_payout'] = PropTypes.exact({
|
|
12865
|
+
discriminator: PropTypes.oneOf(['failed_payout']).isRequired,
|
|
12866
|
+
failed_payout: T['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'].isRequired,
|
|
12867
|
+
});
|
|
12868
|
+
|
|
12869
|
+
T['io.flow.billing.v0.models.transaction_metadata_original_transaction'] = PropTypes.exact({
|
|
12870
|
+
id: PropTypes.string.isRequired,
|
|
12871
|
+
});
|
|
12872
|
+
|
|
12873
|
+
T['io.flow.billing.v0.models.transaction_metadata_manual'] = PropTypes.exact({
|
|
12874
|
+
discriminator: PropTypes.oneOf(['manual']).isRequired,
|
|
12875
|
+
description: PropTypes.string.isRequired,
|
|
12876
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'],
|
|
12877
|
+
url: PropTypes.string,
|
|
12878
|
+
});
|
|
12879
|
+
|
|
12525
12880
|
T['io.flow.common.v0.enums.currency_label_formatter'] = PropTypes.oneOf(['strip_trailing_zeros', 'symbol_prefix', 'symbol_suffix']);
|
|
12526
12881
|
T['io.flow.common.v0.enums.currency_symbol_format'] = PropTypes.oneOf(['narrow', 'primary']);
|
|
12527
12882
|
|
|
@@ -12690,6 +13045,26 @@ T['io.flow.payment.gateway.v0.models.payment_capture_option_automatic_immediate'
|
|
|
12690
13045
|
|
|
12691
13046
|
T['io.flow.internal.v0.enums.organization_payment_status'] = PropTypes.oneOf(['active', 'archived']);
|
|
12692
13047
|
|
|
13048
|
+
T['io.flow.internal.v0.models.organization_metadata'] = PropTypes.exact({
|
|
13049
|
+
id: PropTypes.string.isRequired,
|
|
13050
|
+
organization_id: PropTypes.string.isRequired,
|
|
13051
|
+
pending_restriction_count: PropTypes.number.isRequired,
|
|
13052
|
+
pending_verification_count: PropTypes.number.isRequired,
|
|
13053
|
+
oldest_pending_restriction_date: PropTypes.string,
|
|
13054
|
+
oldest_pending_verification_date: PropTypes.string,
|
|
13055
|
+
product_count: PropTypes.number.isRequired,
|
|
13056
|
+
restricted_product_count: PropTypes.number.isRequired,
|
|
13057
|
+
last_order_submitted_at: PropTypes.string,
|
|
13058
|
+
});
|
|
13059
|
+
|
|
13060
|
+
T['io.flow.internal.v0.models.organization_metadata_upserted'] = PropTypes.exact({
|
|
13061
|
+
discriminator: PropTypes.oneOf(['organization_metadata_upserted']).isRequired,
|
|
13062
|
+
event_id: PropTypes.string.isRequired,
|
|
13063
|
+
timestamp: PropTypes.string.isRequired,
|
|
13064
|
+
organization: PropTypes.string.isRequired,
|
|
13065
|
+
organization_metadata: T['io.flow.internal.v0.models.organization_metadata'].isRequired,
|
|
13066
|
+
});
|
|
13067
|
+
|
|
12693
13068
|
T['io.flow.internal.v0.models.organization_deactivation'] = PropTypes.exact({
|
|
12694
13069
|
id: PropTypes.string.isRequired,
|
|
12695
13070
|
deactivate_at: PropTypes.string.isRequired,
|
|
@@ -12773,6 +13148,28 @@ T['io.flow.internal.v0.models.order_validation_upserted'] = PropTypes.exact({
|
|
|
12773
13148
|
order_validation: T['io.flow.internal.v0.models.order_validation'].isRequired,
|
|
12774
13149
|
});
|
|
12775
13150
|
|
|
13151
|
+
T['io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting'] = PropTypes.oneOf([
|
|
13152
|
+
'duty_exclusive_tax_exclusive',
|
|
13153
|
+
'duty_inclusive_tax_exclusive',
|
|
13154
|
+
'duty_exclusive_tax_inclusive',
|
|
13155
|
+
'duty_inclusive_tax_inclusive',
|
|
13156
|
+
]);
|
|
13157
|
+
|
|
13158
|
+
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'] = PropTypes.exact({
|
|
13159
|
+
id: PropTypes.string.isRequired,
|
|
13160
|
+
organization_id: PropTypes.string.isRequired,
|
|
13161
|
+
shopify_order_id: PropTypes.string.isRequired,
|
|
13162
|
+
order_number: PropTypes.string.isRequired,
|
|
13163
|
+
tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting'].isRequired,
|
|
13164
|
+
});
|
|
13165
|
+
|
|
13166
|
+
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted'] = PropTypes.exact({
|
|
13167
|
+
discriminator: PropTypes.oneOf(['order_tax_and_duty_inclusivity_setting_upserted']).isRequired,
|
|
13168
|
+
event_id: PropTypes.string.isRequired,
|
|
13169
|
+
timestamp: PropTypes.string.isRequired,
|
|
13170
|
+
order_tax_and_duty_inclusivity_setting: T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'].isRequired,
|
|
13171
|
+
});
|
|
13172
|
+
|
|
12776
13173
|
T['io.flow.return.v0.models.return_line_item'] = PropTypes.exact({
|
|
12777
13174
|
item_number: PropTypes.string.isRequired,
|
|
12778
13175
|
order_number: PropTypes.string,
|
|
@@ -13001,6 +13398,9 @@ T['io.flow.internal.v0.models.report_payment'] = PropTypes.exact({
|
|
|
13001
13398
|
created_at: PropTypes.string.isRequired,
|
|
13002
13399
|
});
|
|
13003
13400
|
|
|
13401
|
+
T['io.flow.internal.v0.enums.miljenko_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
13402
|
+
T['io.flow.internal.v0.enums.michaelyan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
13403
|
+
|
|
13004
13404
|
T['io.flow.internal.v0.models.shipping_method_reference'] = PropTypes.exact({
|
|
13005
13405
|
id: PropTypes.string.isRequired,
|
|
13006
13406
|
});
|
|
@@ -13837,6 +14237,23 @@ T['io.flow.internal.v0.models.loyalty_program_message'] = PropTypes.exact({
|
|
|
13837
14237
|
content: PropTypes.string.isRequired,
|
|
13838
14238
|
});
|
|
13839
14239
|
|
|
14240
|
+
T['io.flow.internal.v0.enums.logistics_payout_resolution_method'] = PropTypes.oneOf([
|
|
14241
|
+
'order_combined_shipment',
|
|
14242
|
+
'intransit_label_event',
|
|
14243
|
+
'shipping_notification',
|
|
14244
|
+
]);
|
|
14245
|
+
|
|
14246
|
+
T['io.flow.internal.v0.models.logistics_payout_request'] = PropTypes.exact({
|
|
14247
|
+
organization_id: PropTypes.string.isRequired,
|
|
14248
|
+
order_number: PropTypes.string.isRequired,
|
|
14249
|
+
carrier: PropTypes.string.isRequired,
|
|
14250
|
+
carrier_tracking_number: PropTypes.string.isRequired,
|
|
14251
|
+
dry_run: PropTypes.bool.isRequired,
|
|
14252
|
+
payout_resolution_method: T['io.flow.internal.v0.enums.logistics_payout_resolution_method'].isRequired,
|
|
14253
|
+
label_id: PropTypes.string,
|
|
14254
|
+
combined_shipment_order_number: PropTypes.string,
|
|
14255
|
+
});
|
|
14256
|
+
|
|
13840
14257
|
T['io.flow.internal.v0.enums.logistics_capability'] = PropTypes.oneOf(['logistics_address_correction']);
|
|
13841
14258
|
|
|
13842
14259
|
T['io.flow.internal.v0.models.logistics_capabilities_form'] = PropTypes.exact({
|
|
@@ -14136,10 +14553,6 @@ T['io.flow.billing.v0.models.transaction_metadata_shipping_label'] = PropTypes.e
|
|
|
14136
14553
|
revenue_share_percentage: PropTypes.number,
|
|
14137
14554
|
});
|
|
14138
14555
|
|
|
14139
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_shipping_label'] = PropTypes.exact({
|
|
14140
|
-
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
14141
|
-
});
|
|
14142
|
-
|
|
14143
14556
|
T['io.flow.internal.v0.models.label_request_error'] = PropTypes.exact({
|
|
14144
14557
|
id: PropTypes.string.isRequired,
|
|
14145
14558
|
order_number: PropTypes.string.isRequired,
|
|
@@ -14219,23 +14632,6 @@ T['io.flow.billing.v0.models.transaction_metadata_trueup_surcharge'] = PropTypes
|
|
|
14219
14632
|
|
|
14220
14633
|
T['io.flow.label.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
14221
14634
|
|
|
14222
|
-
T['io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_summary_cost'] = PropTypes.exact({
|
|
14223
|
-
amount: PropTypes.number.isRequired,
|
|
14224
|
-
currency: PropTypes.string.isRequired,
|
|
14225
|
-
source: T['io.flow.label.v0.enums.cost_estimate_source'],
|
|
14226
|
-
});
|
|
14227
|
-
|
|
14228
|
-
T['io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_summary'] = PropTypes.exact({
|
|
14229
|
-
id: PropTypes.string.isRequired,
|
|
14230
|
-
owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
|
|
14231
|
-
carrier_id: PropTypes.string.isRequired,
|
|
14232
|
-
carrier_tracking_number: PropTypes.string.isRequired,
|
|
14233
|
-
cost: T['io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_summary_cost'].isRequired,
|
|
14234
|
-
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
14235
|
-
trigger_method: T['io.flow.label.v0.enums.label_trigger_method'],
|
|
14236
|
-
identifiers: PropTypes.objectOf(PropTypes.string),
|
|
14237
|
-
});
|
|
14238
|
-
|
|
14239
14635
|
T['io.flow.internal.v0.models.label_destination'] = PropTypes.exact({
|
|
14240
14636
|
country: PropTypes.string.isRequired,
|
|
14241
14637
|
postal: PropTypes.string,
|
|
@@ -14296,6 +14692,8 @@ T['io.flow.internal.v0.models.lab_project_settings_form'] = PropTypes.exact({
|
|
|
14296
14692
|
terms: T['io.flow.internal.v0.models.lab_project_settings_form_acceptance'],
|
|
14297
14693
|
});
|
|
14298
14694
|
|
|
14695
|
+
T['io.flow.internal.v0.enums.konstantin_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
14696
|
+
|
|
14299
14697
|
T['io.flow.internal.v0.models.klarna_payment_method_category'] = PropTypes.exact({
|
|
14300
14698
|
id: PropTypes.string.isRequired,
|
|
14301
14699
|
name: PropTypes.string,
|
|
@@ -14341,6 +14739,7 @@ T['io.flow.billing.accounting.v0.models.shopper_summary'] = PropTypes.exact({
|
|
|
14341
14739
|
product: T['io.flow.billing.accounting.v0.models.shopper_lines'].isRequired,
|
|
14342
14740
|
fees: T['io.flow.billing.accounting.v0.models.shopper_fees'].isRequired,
|
|
14343
14741
|
freight: T['io.flow.billing.accounting.v0.models.shopper_freight'].isRequired,
|
|
14742
|
+
tips: PropTypes.number,
|
|
14344
14743
|
order_discount: PropTypes.number.isRequired,
|
|
14345
14744
|
total: PropTypes.number.isRequired,
|
|
14346
14745
|
});
|
|
@@ -14375,6 +14774,7 @@ T['io.flow.internal.v0.models.item_sales_margin'] = PropTypes.exact({
|
|
|
14375
14774
|
position: PropTypes.number.isRequired,
|
|
14376
14775
|
});
|
|
14377
14776
|
|
|
14777
|
+
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'legacy_model', 'enterprise_model']);
|
|
14378
14778
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
14379
14779
|
|
|
14380
14780
|
T['io.flow.common.v0.models.item_reference'] = PropTypes.exact({
|
|
@@ -14491,23 +14891,6 @@ T['io.flow.payment.v0.enums.card_type'] = PropTypes.oneOf([
|
|
|
14491
14891
|
'visa',
|
|
14492
14892
|
]);
|
|
14493
14893
|
|
|
14494
|
-
T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'] = PropTypes.exact({
|
|
14495
|
-
type: T['io.flow.payment.v0.enums.card_type'].isRequired,
|
|
14496
|
-
issuer: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'].isRequired,
|
|
14497
|
-
});
|
|
14498
|
-
|
|
14499
|
-
T['io.flow.billing.v0.models.transaction_metadata_channel'] = PropTypes.exact({
|
|
14500
|
-
discriminator: PropTypes.oneOf(['channel']).isRequired,
|
|
14501
|
-
method: PropTypes.string.isRequired,
|
|
14502
|
-
card: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'],
|
|
14503
|
-
organization_transaction: T['io.flow.billing.v0.models.transaction_reference'].isRequired,
|
|
14504
|
-
});
|
|
14505
|
-
|
|
14506
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata_channel'] = PropTypes.exact({
|
|
14507
|
-
method: PropTypes.string.isRequired,
|
|
14508
|
-
card: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'],
|
|
14509
|
-
});
|
|
14510
|
-
|
|
14511
14894
|
T['io.flow.payment.v0.models.card_confirmation_summary'] = PropTypes.exact({
|
|
14512
14895
|
discriminator: PropTypes.oneOf(['card_confirmation_summary']).isRequired,
|
|
14513
14896
|
type: T['io.flow.payment.v0.enums.card_type'],
|
|
@@ -14523,6 +14906,18 @@ T['io.flow.payment.v0.unions.confirmation_details'] = PropTypes.oneOfType([
|
|
|
14523
14906
|
T['io.flow.payment.v0.models.card_confirmation_summary'],
|
|
14524
14907
|
]);
|
|
14525
14908
|
|
|
14909
|
+
T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'] = PropTypes.exact({
|
|
14910
|
+
type: T['io.flow.payment.v0.enums.card_type'].isRequired,
|
|
14911
|
+
issuer: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'].isRequired,
|
|
14912
|
+
});
|
|
14913
|
+
|
|
14914
|
+
T['io.flow.billing.v0.models.transaction_metadata_channel'] = PropTypes.exact({
|
|
14915
|
+
discriminator: PropTypes.oneOf(['channel']).isRequired,
|
|
14916
|
+
method: PropTypes.string.isRequired,
|
|
14917
|
+
card: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'],
|
|
14918
|
+
organization_transaction: T['io.flow.billing.v0.models.transaction_metadata_channel_organization_transaction'].isRequired,
|
|
14919
|
+
});
|
|
14920
|
+
|
|
14526
14921
|
T['io.flow.payment.v0.enums.cvv_result_code'] = PropTypes.oneOf(['matched', 'not_available', 'not_checked', 'not_matched']);
|
|
14527
14922
|
T['io.flow.payment.v0.enums.address_verification_result_field_code'] = PropTypes.oneOf(['matched', 'not_available', 'not_checked', 'not_matched']);
|
|
14528
14923
|
|
|
@@ -14904,6 +15299,8 @@ T['io.flow.internal.v0.models.harmonization_ml_model_summary'] = PropTypes.exact
|
|
|
14904
15299
|
score: PropTypes.number,
|
|
14905
15300
|
});
|
|
14906
15301
|
|
|
15302
|
+
T['io.flow.internal.v0.enums.harinath_item_type'] = PropTypes.oneOf(['digital', 'physical']);
|
|
15303
|
+
|
|
14907
15304
|
T['io.flow.internal.v0.models.google_linker'] = PropTypes.exact({
|
|
14908
15305
|
domains: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14909
15306
|
});
|
|
@@ -14957,12 +15354,6 @@ T['io.flow.internal.v0.models.fx_revenue_recognition_account_rate'] = PropTypes.
|
|
|
14957
15354
|
|
|
14958
15355
|
T['io.flow.common.v0.enums.merchant_of_record'] = PropTypes.oneOf(['flow', 'organization']);
|
|
14959
15356
|
|
|
14960
|
-
T['io.flow.billing.csv.v0.models.billing_csv_order_with_mor_summary'] = PropTypes.exact({
|
|
14961
|
-
number: PropTypes.string.isRequired,
|
|
14962
|
-
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
14963
|
-
identifiers: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
14964
|
-
});
|
|
14965
|
-
|
|
14966
15357
|
T['io.flow.payment.gateway.v0.models.payment_payment_method'] = PropTypes.exact({
|
|
14967
15358
|
id: PropTypes.string.isRequired,
|
|
14968
15359
|
name: PropTypes.string.isRequired,
|
|
@@ -15138,6 +15529,8 @@ T['io.flow.internal.v0.models.reporting_merchant_transactions'] = PropTypes.exac
|
|
|
15138
15529
|
tax: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15139
15530
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15140
15531
|
freight: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15532
|
+
discount: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15533
|
+
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15141
15534
|
});
|
|
15142
15535
|
|
|
15143
15536
|
T['io.flow.internal.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
@@ -15148,6 +15541,7 @@ T['io.flow.internal.v0.models.reporting_merchant_fees'] = PropTypes.exact({
|
|
|
15148
15541
|
processing: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15149
15542
|
rate_lock: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15150
15543
|
transfer: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15544
|
+
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15151
15545
|
});
|
|
15152
15546
|
|
|
15153
15547
|
T['io.flow.internal.v0.models.reporting_merchant_subsidies'] = PropTypes.exact({
|
|
@@ -15155,6 +15549,7 @@ T['io.flow.internal.v0.models.reporting_merchant_subsidies'] = PropTypes.exact({
|
|
|
15155
15549
|
tax: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15156
15550
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15157
15551
|
ccf: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15552
|
+
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15158
15553
|
});
|
|
15159
15554
|
|
|
15160
15555
|
T['io.flow.internal.v0.models.reporting_merchant_breakdown'] = PropTypes.exact({
|
|
@@ -15163,6 +15558,15 @@ T['io.flow.internal.v0.models.reporting_merchant_breakdown'] = PropTypes.exact({
|
|
|
15163
15558
|
transactions: T['io.flow.internal.v0.models.reporting_merchant_transactions'].isRequired,
|
|
15164
15559
|
});
|
|
15165
15560
|
|
|
15561
|
+
T['io.flow.internal.v0.models.reporting_payment'] = PropTypes.exact({
|
|
15562
|
+
psp: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15563
|
+
credit: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15564
|
+
subsidized: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15565
|
+
manual: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15566
|
+
cod: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15567
|
+
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15568
|
+
});
|
|
15569
|
+
|
|
15166
15570
|
T['io.flow.internal.v0.models.reporting_shopper_fees'] = PropTypes.exact({
|
|
15167
15571
|
fuel: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15168
15572
|
remote_area: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
@@ -15170,6 +15574,7 @@ T['io.flow.internal.v0.models.reporting_shopper_fees'] = PropTypes.exact({
|
|
|
15170
15574
|
ccf: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15171
15575
|
emergency: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15172
15576
|
peak: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15577
|
+
total: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15173
15578
|
});
|
|
15174
15579
|
|
|
15175
15580
|
T['io.flow.internal.v0.models.fulfillment_shopper_breakdown'] = PropTypes.exact({
|
|
@@ -15179,6 +15584,7 @@ T['io.flow.internal.v0.models.fulfillment_shopper_breakdown'] = PropTypes.exact(
|
|
|
15179
15584
|
subtotal: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15180
15585
|
tax: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15181
15586
|
duty: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15587
|
+
tips: T['io.flow.internal.v0.models.reporting_monetary_value'],
|
|
15182
15588
|
discount: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15183
15589
|
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
15184
15590
|
});
|
|
@@ -15321,10 +15727,20 @@ T['io.flow.internal.v0.models.merchant_summary'] = PropTypes.exact({
|
|
|
15321
15727
|
total: PropTypes.number.isRequired,
|
|
15322
15728
|
});
|
|
15323
15729
|
|
|
15730
|
+
T['io.flow.internal.v0.models.payment_summary'] = PropTypes.exact({
|
|
15731
|
+
psp: PropTypes.number.isRequired,
|
|
15732
|
+
credit: PropTypes.number.isRequired,
|
|
15733
|
+
subsidized: PropTypes.number.isRequired,
|
|
15734
|
+
manual: PropTypes.number.isRequired,
|
|
15735
|
+
cod: PropTypes.number.isRequired,
|
|
15736
|
+
total: PropTypes.number.isRequired,
|
|
15737
|
+
});
|
|
15738
|
+
|
|
15324
15739
|
T['io.flow.internal.v0.models.shopper_summary'] = PropTypes.exact({
|
|
15325
15740
|
product: T['io.flow.internal.v0.models.shopper_lines'].isRequired,
|
|
15326
15741
|
fees: T['io.flow.internal.v0.models.shopper_fees'].isRequired,
|
|
15327
15742
|
freight: T['io.flow.internal.v0.models.shopper_freight'].isRequired,
|
|
15743
|
+
tips: PropTypes.number,
|
|
15328
15744
|
order_discount: PropTypes.number.isRequired,
|
|
15329
15745
|
total: PropTypes.number.isRequired,
|
|
15330
15746
|
});
|
|
@@ -15391,8 +15807,6 @@ T['io.flow.internal.v0.models.ftp_file_to_process_uploaded'] = PropTypes.exact({
|
|
|
15391
15807
|
emails: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15392
15808
|
});
|
|
15393
15809
|
|
|
15394
|
-
T['io.flow.internal.v0.enums.risk_evaluation'] = PropTypes.oneOf(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']);
|
|
15395
|
-
T['io.flow.internal.v0.enums.fraud_review_responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
|
|
15396
15810
|
T['io.flow.internal.v0.enums.fraud_provider_status'] = PropTypes.oneOf(['active', 'archived']);
|
|
15397
15811
|
|
|
15398
15812
|
T['io.flow.internal.v0.models.fraud_provider_configuration_form_riskified'] = PropTypes.exact({
|
|
@@ -15432,6 +15846,8 @@ T['io.flow.internal.v0.models.fraud_provider_configuration_deleted'] = PropTypes
|
|
|
15432
15846
|
|
|
15433
15847
|
T['io.flow.internal.v0.enums.fraud_provider'] = PropTypes.oneOf(['flow', 'forter', 'paypal', 'riskified', 'rps', 'other', 'none']);
|
|
15434
15848
|
T['io.flow.fraud.v0.enums.fraud_liability'] = PropTypes.oneOf(['flow', 'organization']);
|
|
15849
|
+
T['io.flow.internal.v0.enums.risk_evaluation'] = PropTypes.oneOf(['Pending', 'High-Risk', 'Low-Risk', 'Restricted-Party', 'none']);
|
|
15850
|
+
T['io.flow.internal.v0.enums.fraud_review_responsible_party'] = PropTypes.oneOf(['flow', 'organization']);
|
|
15435
15851
|
T['io.flow.fraud.v0.enums.fraud_status'] = PropTypes.oneOf(['pending', 'approved', 'declined', 'review']);
|
|
15436
15852
|
|
|
15437
15853
|
T['io.flow.internal.v0.models.fraud_review_decision_form'] = PropTypes.exact({
|
|
@@ -15618,11 +16034,6 @@ T['io.flow.internal.v0.models.marketing_gateway_schema_summary'] = PropTypes.exa
|
|
|
15618
16034
|
schema_compatibility: T['io.flow.internal.v0.enums.marketing_gateway_schema_compatibility'].isRequired,
|
|
15619
16035
|
});
|
|
15620
16036
|
|
|
15621
|
-
T['io.flow.internal.v0.models.feature_value_reference'] = PropTypes.exact({
|
|
15622
|
-
feature_key: PropTypes.string.isRequired,
|
|
15623
|
-
value: PropTypes.string.isRequired,
|
|
15624
|
-
});
|
|
15625
|
-
|
|
15626
16037
|
T['io.flow.internal.v0.models.string_feature_rule_form'] = PropTypes.exact({
|
|
15627
16038
|
discriminator: PropTypes.oneOf(['string']).isRequired,
|
|
15628
16039
|
query: PropTypes.string.isRequired,
|
|
@@ -15640,12 +16051,6 @@ T['io.flow.internal.v0.unions.feature_rule_form'] = PropTypes.oneOfType([
|
|
|
15640
16051
|
T['io.flow.internal.v0.models.string_feature_rule_form'],
|
|
15641
16052
|
]);
|
|
15642
16053
|
|
|
15643
|
-
T['io.flow.internal.v0.models.feature_variant_summary'] = PropTypes.exact({
|
|
15644
|
-
key: PropTypes.string.isRequired,
|
|
15645
|
-
feature_value: T['io.flow.internal.v0.models.feature_value_reference'].isRequired,
|
|
15646
|
-
name: PropTypes.string,
|
|
15647
|
-
});
|
|
15648
|
-
|
|
15649
16054
|
T['io.flow.internal.v0.models.string_feature_default_value'] = PropTypes.exact({
|
|
15650
16055
|
discriminator: PropTypes.oneOf(['string']).isRequired,
|
|
15651
16056
|
value: PropTypes.string.isRequired,
|
|
@@ -15771,71 +16176,6 @@ T['io.flow.internal.v0.models.localized_items_export_settings'] = PropTypes.exac
|
|
|
15771
16176
|
delta_export_schedule: T['io.flow.internal.v0.unions.export_schedule'],
|
|
15772
16177
|
});
|
|
15773
16178
|
|
|
15774
|
-
T['io.flow.internal.v0.models.experiment_reference'] = PropTypes.exact({
|
|
15775
|
-
key: PropTypes.string.isRequired,
|
|
15776
|
-
});
|
|
15777
|
-
|
|
15778
|
-
T['io.flow.internal.v0.models.experiment_milestone'] = PropTypes.exact({
|
|
15779
|
-
id: PropTypes.string.isRequired,
|
|
15780
|
-
experiment: T['io.flow.internal.v0.models.experiment_reference'].isRequired,
|
|
15781
|
-
timestamp: PropTypes.string.isRequired,
|
|
15782
|
-
description: PropTypes.string.isRequired,
|
|
15783
|
-
});
|
|
15784
|
-
|
|
15785
|
-
T['io.flow.internal.v0.models.experiment_milestone_upserted'] = PropTypes.exact({
|
|
15786
|
-
discriminator: PropTypes.oneOf(['experiment_milestone_upserted']).isRequired,
|
|
15787
|
-
event_id: PropTypes.string.isRequired,
|
|
15788
|
-
timestamp: PropTypes.string.isRequired,
|
|
15789
|
-
organization: PropTypes.string.isRequired,
|
|
15790
|
-
experiment_milestone: T['io.flow.internal.v0.models.experiment_milestone'].isRequired,
|
|
15791
|
-
});
|
|
15792
|
-
|
|
15793
|
-
T['io.flow.internal.v0.enums.scope'] = PropTypes.oneOf(['organization', 'global']);
|
|
15794
|
-
|
|
15795
|
-
T['io.flow.internal.v0.models.experiment_form_default_discriminator_value'] = PropTypes.exact({
|
|
15796
|
-
key: PropTypes.string.isRequired,
|
|
15797
|
-
name: PropTypes.string.isRequired,
|
|
15798
|
-
scope: T['io.flow.internal.v0.enums.scope'].isRequired,
|
|
15799
|
-
});
|
|
15800
|
-
|
|
15801
|
-
T['io.flow.internal.v0.enums.experiment_discriminator_key'] = PropTypes.oneOf(['experience', 'feature']);
|
|
15802
|
-
|
|
15803
|
-
T['io.flow.internal.v0.models.experiment_form_default_variant'] = PropTypes.exact({
|
|
15804
|
-
key: PropTypes.string.isRequired,
|
|
15805
|
-
name: PropTypes.string.isRequired,
|
|
15806
|
-
traffic_percentage: PropTypes.number,
|
|
15807
|
-
});
|
|
15808
|
-
|
|
15809
|
-
T['io.flow.internal.v0.models.experiment_form_default_discriminator'] = PropTypes.exact({
|
|
15810
|
-
key: T['io.flow.internal.v0.enums.experiment_discriminator_key'].isRequired,
|
|
15811
|
-
|
|
15812
|
-
values: PropTypes.arrayOf(
|
|
15813
|
-
T['io.flow.internal.v0.models.experiment_form_default_discriminator_value'],
|
|
15814
|
-
).isRequired,
|
|
15815
|
-
});
|
|
15816
|
-
|
|
15817
|
-
T['io.flow.internal.v0.models.experiment_form_default'] = PropTypes.exact({
|
|
15818
|
-
discriminator: T['io.flow.internal.v0.models.experiment_form_default_discriminator'].isRequired,
|
|
15819
|
-
variants: PropTypes.arrayOf(T['io.flow.internal.v0.models.experiment_form_default_variant']),
|
|
15820
|
-
});
|
|
15821
|
-
|
|
15822
|
-
T['io.flow.internal.v0.models.feature_variant_form'] = PropTypes.exact({
|
|
15823
|
-
discriminator: PropTypes.oneOf(['feature']).isRequired,
|
|
15824
|
-
key: PropTypes.string.isRequired,
|
|
15825
|
-
traffic_percentage: PropTypes.number.isRequired,
|
|
15826
|
-
});
|
|
15827
|
-
|
|
15828
|
-
T['io.flow.internal.v0.models.experience_variant_form'] = PropTypes.exact({
|
|
15829
|
-
discriminator: PropTypes.oneOf(['experience']).isRequired,
|
|
15830
|
-
key: PropTypes.string.isRequired,
|
|
15831
|
-
traffic_percentage: PropTypes.number.isRequired,
|
|
15832
|
-
});
|
|
15833
|
-
|
|
15834
|
-
T['io.flow.internal.v0.unions.variant_form'] = PropTypes.oneOfType([
|
|
15835
|
-
T['io.flow.internal.v0.models.experience_variant_form'],
|
|
15836
|
-
T['io.flow.internal.v0.models.feature_variant_form'],
|
|
15837
|
-
]);
|
|
15838
|
-
|
|
15839
16179
|
T['io.flow.internal.v0.enums.experience_order_action'] = PropTypes.oneOf(['submit', 'refund_gift_cards']);
|
|
15840
16180
|
T['io.flow.internal.v0.enums.experience_order_action_trigger'] = PropTypes.oneOf(['zero_balance', 'unsubmitted_order']);
|
|
15841
16181
|
|
|
@@ -15875,135 +16215,6 @@ T['io.flow.internal.v0.models.experience_import_request'] = PropTypes.exact({
|
|
|
15875
16215
|
filename: PropTypes.string,
|
|
15876
16216
|
});
|
|
15877
16217
|
|
|
15878
|
-
T['io.flow.internal.v0.models.experiment_results'] = PropTypes.exact({
|
|
15879
|
-
id: PropTypes.string.isRequired,
|
|
15880
|
-
experiment_key: PropTypes.string.isRequired,
|
|
15881
|
-
experiment_variant_key: PropTypes.string.isRequired,
|
|
15882
|
-
visitor_count: PropTypes.number.isRequired,
|
|
15883
|
-
visitors_with_transactions_count: PropTypes.number.isRequired,
|
|
15884
|
-
conversion_rate: PropTypes.number.isRequired,
|
|
15885
|
-
lower_bound: PropTypes.number.isRequired,
|
|
15886
|
-
upper_bound: PropTypes.number.isRequired,
|
|
15887
|
-
probability_of_being_best: PropTypes.number,
|
|
15888
|
-
currency: PropTypes.string,
|
|
15889
|
-
average_order_value: PropTypes.number,
|
|
15890
|
-
revenue_generated: PropTypes.number,
|
|
15891
|
-
total_order_count: PropTypes.number,
|
|
15892
|
-
conversion_rate_uplift: PropTypes.number,
|
|
15893
|
-
average_order_value_uplift: PropTypes.number,
|
|
15894
|
-
revenue_generated_uplift: PropTypes.number,
|
|
15895
|
-
});
|
|
15896
|
-
|
|
15897
|
-
T['io.flow.internal.v0.models.feature_variant'] = PropTypes.exact({
|
|
15898
|
-
discriminator: PropTypes.oneOf(['feature_variant']).isRequired,
|
|
15899
|
-
value: T['io.flow.internal.v0.models.feature_variant_summary'].isRequired,
|
|
15900
|
-
traffic_percentage: PropTypes.number.isRequired,
|
|
15901
|
-
experiment_results: T['io.flow.internal.v0.models.experiment_results'],
|
|
15902
|
-
});
|
|
15903
|
-
|
|
15904
|
-
T['io.flow.internal.v0.models.experiment_results_with_timestamp'] = PropTypes.exact({
|
|
15905
|
-
timestamp: PropTypes.string.isRequired,
|
|
15906
|
-
results: PropTypes.arrayOf(T['io.flow.internal.v0.models.experiment_results']).isRequired,
|
|
15907
|
-
});
|
|
15908
|
-
|
|
15909
|
-
T['io.flow.internal.v0.models.experiment_results_upserted'] = PropTypes.exact({
|
|
15910
|
-
discriminator: PropTypes.oneOf(['experiment_results_upserted']).isRequired,
|
|
15911
|
-
event_id: PropTypes.string.isRequired,
|
|
15912
|
-
timestamp: PropTypes.string.isRequired,
|
|
15913
|
-
organization_id: PropTypes.string.isRequired,
|
|
15914
|
-
experiment_results: T['io.flow.internal.v0.models.experiment_results'].isRequired,
|
|
15915
|
-
});
|
|
15916
|
-
|
|
15917
|
-
T['io.flow.internal.v0.models.experiment_results_deleted'] = PropTypes.exact({
|
|
15918
|
-
discriminator: PropTypes.oneOf(['experiment_results_deleted']).isRequired,
|
|
15919
|
-
event_id: PropTypes.string.isRequired,
|
|
15920
|
-
timestamp: PropTypes.string.isRequired,
|
|
15921
|
-
organization_id: PropTypes.string.isRequired,
|
|
15922
|
-
experiment_results: T['io.flow.internal.v0.models.experiment_results'].isRequired,
|
|
15923
|
-
});
|
|
15924
|
-
|
|
15925
|
-
T['io.flow.internal.v0.models.experience_variant_summary'] = PropTypes.exact({
|
|
15926
|
-
key: PropTypes.string.isRequired,
|
|
15927
|
-
name: PropTypes.string,
|
|
15928
|
-
});
|
|
15929
|
-
|
|
15930
|
-
T['io.flow.internal.v0.enums.significance_action'] = PropTypes.oneOf(['end_and_implement_winner', 'end_and_revert', 'do_nothing']);
|
|
15931
|
-
|
|
15932
|
-
T['io.flow.internal.v0.models.experiment_form'] = PropTypes.exact({
|
|
15933
|
-
name: PropTypes.string.isRequired,
|
|
15934
|
-
description: PropTypes.string,
|
|
15935
|
-
emails: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15936
|
-
variants: PropTypes.arrayOf(T['io.flow.internal.v0.unions.variant_form']).isRequired,
|
|
15937
|
-
significance_action: T['io.flow.internal.v0.enums.significance_action'],
|
|
15938
|
-
session_query: PropTypes.string,
|
|
15939
|
-
});
|
|
15940
|
-
|
|
15941
|
-
T['io.flow.internal.v0.models.experience_variant'] = PropTypes.exact({
|
|
15942
|
-
discriminator: PropTypes.oneOf(['experience_variant']).isRequired,
|
|
15943
|
-
experience: T['io.flow.internal.v0.models.experience_variant_summary'].isRequired,
|
|
15944
|
-
traffic_percentage: PropTypes.number.isRequired,
|
|
15945
|
-
experiment_results: T['io.flow.internal.v0.models.experiment_results'],
|
|
15946
|
-
});
|
|
15947
|
-
|
|
15948
|
-
T['io.flow.internal.v0.unions.variant'] = PropTypes.oneOfType([
|
|
15949
|
-
T['io.flow.internal.v0.models.experience_variant'],
|
|
15950
|
-
T['io.flow.internal.v0.models.feature_variant'],
|
|
15951
|
-
]);
|
|
15952
|
-
|
|
15953
|
-
T['io.flow.internal.v0.enums.status'] = PropTypes.oneOf(['draft', 'scheduled', 'live', 'ended', 'archived']);
|
|
15954
|
-
|
|
15955
|
-
T['io.flow.internal.v0.models.search_experiment_summary'] = PropTypes.exact({
|
|
15956
|
-
discriminator: PropTypes.oneOf(['search_experiment_summary']).isRequired,
|
|
15957
|
-
key: PropTypes.string.isRequired,
|
|
15958
|
-
name: PropTypes.string.isRequired,
|
|
15959
|
-
status: T['io.flow.internal.v0.enums.status'].isRequired,
|
|
15960
|
-
});
|
|
15961
|
-
|
|
15962
|
-
T['io.flow.internal.v0.models.feature_experiment'] = PropTypes.exact({
|
|
15963
|
-
discriminator: PropTypes.oneOf(['feature']).isRequired,
|
|
15964
|
-
id: PropTypes.string.isRequired,
|
|
15965
|
-
key: PropTypes.string.isRequired,
|
|
15966
|
-
name: PropTypes.string.isRequired,
|
|
15967
|
-
description: PropTypes.string,
|
|
15968
|
-
status: T['io.flow.internal.v0.enums.status'].isRequired,
|
|
15969
|
-
emails: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15970
|
-
scope: T['io.flow.internal.v0.enums.scope'].isRequired,
|
|
15971
|
-
started_at: PropTypes.string,
|
|
15972
|
-
ended_at: PropTypes.string,
|
|
15973
|
-
variants: PropTypes.arrayOf(T['io.flow.internal.v0.models.feature_variant']).isRequired,
|
|
15974
|
-
transitions: PropTypes.arrayOf(T['io.flow.internal.v0.enums.status']),
|
|
15975
|
-
significance_action: T['io.flow.internal.v0.enums.significance_action'],
|
|
15976
|
-
session_query: PropTypes.string,
|
|
15977
|
-
});
|
|
15978
|
-
|
|
15979
|
-
T['io.flow.internal.v0.models.experience_experiment'] = PropTypes.exact({
|
|
15980
|
-
discriminator: PropTypes.oneOf(['experience']).isRequired,
|
|
15981
|
-
id: PropTypes.string.isRequired,
|
|
15982
|
-
key: PropTypes.string.isRequired,
|
|
15983
|
-
name: PropTypes.string.isRequired,
|
|
15984
|
-
description: PropTypes.string,
|
|
15985
|
-
status: T['io.flow.internal.v0.enums.status'].isRequired,
|
|
15986
|
-
emails: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
15987
|
-
started_at: PropTypes.string,
|
|
15988
|
-
ended_at: PropTypes.string,
|
|
15989
|
-
variants: PropTypes.arrayOf(T['io.flow.internal.v0.models.experience_variant']).isRequired,
|
|
15990
|
-
transitions: PropTypes.arrayOf(T['io.flow.internal.v0.enums.status']),
|
|
15991
|
-
significance_action: T['io.flow.internal.v0.enums.significance_action'],
|
|
15992
|
-
});
|
|
15993
|
-
|
|
15994
|
-
T['io.flow.internal.v0.unions.experiment'] = PropTypes.oneOfType([
|
|
15995
|
-
T['io.flow.internal.v0.models.experience_experiment'],
|
|
15996
|
-
T['io.flow.internal.v0.models.feature_experiment'],
|
|
15997
|
-
]);
|
|
15998
|
-
|
|
15999
|
-
T['io.flow.internal.v0.models.experiment_upserted'] = PropTypes.exact({
|
|
16000
|
-
discriminator: PropTypes.oneOf(['experiment_upserted']).isRequired,
|
|
16001
|
-
event_id: PropTypes.string.isRequired,
|
|
16002
|
-
timestamp: PropTypes.string.isRequired,
|
|
16003
|
-
organization_id: PropTypes.string.isRequired,
|
|
16004
|
-
experiment: T['io.flow.internal.v0.unions.experiment'].isRequired,
|
|
16005
|
-
});
|
|
16006
|
-
|
|
16007
16218
|
T['io.flow.catalog.exclusion.v0.enums.exclusion_rule_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
|
|
16008
16219
|
|
|
16009
16220
|
T['io.flow.export.v0.models.exclusion_rules_export_type'] = PropTypes.exact({
|
|
@@ -16055,6 +16266,53 @@ T['io.flow.internal.v0.models.erp_vendor_status_flow_file'] = PropTypes.exact({
|
|
|
16055
16266
|
created_at: PropTypes.string.isRequired,
|
|
16056
16267
|
});
|
|
16057
16268
|
|
|
16269
|
+
T['io.flow.internal.v0.enums.company'] = PropTypes.oneOf(['globale', 'flow']);
|
|
16270
|
+
|
|
16271
|
+
T['io.flow.internal.v0.models.erp_priority_vendor_form'] = PropTypes.exact({
|
|
16272
|
+
company: T['io.flow.internal.v0.enums.company'],
|
|
16273
|
+
acc_des: PropTypes.string,
|
|
16274
|
+
tax_code: PropTypes.string,
|
|
16275
|
+
tax_code_2: PropTypes.string,
|
|
16276
|
+
vat_flag: PropTypes.string,
|
|
16277
|
+
country_name: PropTypes.string,
|
|
16278
|
+
w_tax_percent: PropTypes.string,
|
|
16279
|
+
iban: PropTypes.string,
|
|
16280
|
+
confirmed_date: PropTypes.string,
|
|
16281
|
+
w_tax_date: PropTypes.string,
|
|
16282
|
+
w_tax_num_expl: PropTypes.string,
|
|
16283
|
+
acng_code: PropTypes.string,
|
|
16284
|
+
phone: PropTypes.string,
|
|
16285
|
+
address: PropTypes.string,
|
|
16286
|
+
address_a: PropTypes.string,
|
|
16287
|
+
address_2: PropTypes.string,
|
|
16288
|
+
address_3: PropTypes.string,
|
|
16289
|
+
state_name: PropTypes.string,
|
|
16290
|
+
code: PropTypes.string,
|
|
16291
|
+
zip: PropTypes.string,
|
|
16292
|
+
pay_account: PropTypes.string,
|
|
16293
|
+
comp_num: PropTypes.string,
|
|
16294
|
+
w_tax_num: PropTypes.string,
|
|
16295
|
+
vat_num: PropTypes.string,
|
|
16296
|
+
orig_acc_name: PropTypes.string,
|
|
16297
|
+
branch: PropTypes.string,
|
|
16298
|
+
form_1099_code: PropTypes.string,
|
|
16299
|
+
trial_bal_code: PropTypes.string,
|
|
16300
|
+
sec_name: PropTypes.string,
|
|
16301
|
+
state: PropTypes.string,
|
|
16302
|
+
state_a: PropTypes.string,
|
|
16303
|
+
fax: PropTypes.string,
|
|
16304
|
+
details: PropTypes.string,
|
|
16305
|
+
bank_code: PropTypes.string,
|
|
16306
|
+
state_code: PropTypes.string,
|
|
16307
|
+
tax_office_code: PropTypes.string,
|
|
16308
|
+
pay_code: PropTypes.string,
|
|
16309
|
+
eacc_des: PropTypes.string,
|
|
16310
|
+
acng_des: PropTypes.string,
|
|
16311
|
+
branch_des: PropTypes.string,
|
|
16312
|
+
debit_entry_code: PropTypes.string,
|
|
16313
|
+
credit_entry_code: PropTypes.string,
|
|
16314
|
+
});
|
|
16315
|
+
|
|
16058
16316
|
T['io.flow.internal.v0.models.entity_reference'] = PropTypes.exact({
|
|
16059
16317
|
id: PropTypes.string.isRequired,
|
|
16060
16318
|
});
|
|
@@ -16841,42 +17099,6 @@ T['io.flow.internal.v0.models.daily_value_upserted'] = PropTypes.exact({
|
|
|
16841
17099
|
daily_value: T['io.flow.internal.v0.models.daily_value'].isRequired,
|
|
16842
17100
|
});
|
|
16843
17101
|
|
|
16844
|
-
T['io.flow.internal.v0.models.daily_experiment_results'] = PropTypes.exact({
|
|
16845
|
-
id: PropTypes.string.isRequired,
|
|
16846
|
-
day: PropTypes.string.isRequired,
|
|
16847
|
-
experiment_key: PropTypes.string.isRequired,
|
|
16848
|
-
experiment_variant_key: PropTypes.string.isRequired,
|
|
16849
|
-
visitor_count: PropTypes.number.isRequired,
|
|
16850
|
-
visitors_with_transactions_count: PropTypes.number.isRequired,
|
|
16851
|
-
conversion_rate: PropTypes.number.isRequired,
|
|
16852
|
-
lower_bound: PropTypes.number.isRequired,
|
|
16853
|
-
upper_bound: PropTypes.number.isRequired,
|
|
16854
|
-
probability_of_being_best: PropTypes.number,
|
|
16855
|
-
currency: PropTypes.string,
|
|
16856
|
-
average_order_value: PropTypes.number,
|
|
16857
|
-
revenue_generated: PropTypes.number,
|
|
16858
|
-
total_order_count: PropTypes.number,
|
|
16859
|
-
conversion_rate_uplift: PropTypes.number,
|
|
16860
|
-
average_order_value_uplift: PropTypes.number,
|
|
16861
|
-
revenue_generated_uplift: PropTypes.number,
|
|
16862
|
-
});
|
|
16863
|
-
|
|
16864
|
-
T['io.flow.internal.v0.models.daily_experiment_results_upserted'] = PropTypes.exact({
|
|
16865
|
-
discriminator: PropTypes.oneOf(['daily_experiment_results_upserted']).isRequired,
|
|
16866
|
-
event_id: PropTypes.string.isRequired,
|
|
16867
|
-
timestamp: PropTypes.string.isRequired,
|
|
16868
|
-
organization_id: PropTypes.string.isRequired,
|
|
16869
|
-
daily_experiment_results: T['io.flow.internal.v0.models.daily_experiment_results'].isRequired,
|
|
16870
|
-
});
|
|
16871
|
-
|
|
16872
|
-
T['io.flow.internal.v0.models.daily_experiment_results_deleted'] = PropTypes.exact({
|
|
16873
|
-
discriminator: PropTypes.oneOf(['daily_experiment_results_deleted']).isRequired,
|
|
16874
|
-
event_id: PropTypes.string.isRequired,
|
|
16875
|
-
timestamp: PropTypes.string.isRequired,
|
|
16876
|
-
organization_id: PropTypes.string.isRequired,
|
|
16877
|
-
daily_experiment_results: T['io.flow.internal.v0.models.daily_experiment_results'].isRequired,
|
|
16878
|
-
});
|
|
16879
|
-
|
|
16880
17102
|
T['io.flow.internal.v0.models.customs_product_attribute_label'] = PropTypes.exact({
|
|
16881
17103
|
value: PropTypes.string.isRequired,
|
|
16882
17104
|
});
|
|
@@ -16975,6 +17197,47 @@ T['io.flow.internal.v0.models.customs_description_tariff_code_duty'] = PropTypes
|
|
|
16975
17197
|
tariff_codes_metadata: PropTypes.objectOf(PropTypes.string),
|
|
16976
17198
|
});
|
|
16977
17199
|
|
|
17200
|
+
T['io.flow.internal.v0.models.other_record_order_summary_identifiers'] = PropTypes.exact({
|
|
17201
|
+
shopify_order_id: PropTypes.string,
|
|
17202
|
+
});
|
|
17203
|
+
|
|
17204
|
+
T['io.flow.internal.v0.models.other_record_metadata_failed_payout'] = PropTypes.exact({
|
|
17205
|
+
failed_payment: T['io.flow.billing.v0.models.transaction_metadata_failed_payout_reference'].isRequired,
|
|
17206
|
+
});
|
|
17207
|
+
|
|
17208
|
+
T['io.flow.internal.v0.models.other_record_metadata_manual'] = PropTypes.exact({
|
|
17209
|
+
description: PropTypes.string.isRequired,
|
|
17210
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'],
|
|
17211
|
+
category: T['io.flow.internal.v0.enums.manual_transaction_category'],
|
|
17212
|
+
url: PropTypes.string,
|
|
17213
|
+
});
|
|
17214
|
+
|
|
17215
|
+
T['io.flow.internal.v0.models.other_record_metadata_trueup'] = PropTypes.exact({
|
|
17216
|
+
original: T['io.flow.billing.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
17217
|
+
label_transaction_id: PropTypes.string.isRequired,
|
|
17218
|
+
label_invoice_request_id: PropTypes.string.isRequired,
|
|
17219
|
+
carrier_charge_id: PropTypes.string.isRequired,
|
|
17220
|
+
});
|
|
17221
|
+
|
|
17222
|
+
T['io.flow.internal.v0.models.other_record_metadata_shipping_label_revenue_share'] = PropTypes.exact({
|
|
17223
|
+
label_id: PropTypes.string.isRequired,
|
|
17224
|
+
base_amount: PropTypes.number,
|
|
17225
|
+
percentage: PropTypes.number,
|
|
17226
|
+
});
|
|
17227
|
+
|
|
17228
|
+
T['io.flow.internal.v0.models.other_record_metadata_shipping_label'] = PropTypes.exact({
|
|
17229
|
+
request_method: T['io.flow.label.v0.enums.label_request_method'],
|
|
17230
|
+
});
|
|
17231
|
+
|
|
17232
|
+
T['io.flow.internal.v0.models.other_record_metadata_channel'] = PropTypes.exact({
|
|
17233
|
+
method: PropTypes.string.isRequired,
|
|
17234
|
+
card: T['io.flow.billing.v0.models.transaction_metadata_channel_card_metadata'],
|
|
17235
|
+
});
|
|
17236
|
+
|
|
17237
|
+
T['io.flow.internal.v0.models.other_record_merchant_reference'] = PropTypes.exact({
|
|
17238
|
+
id: PropTypes.string.isRequired,
|
|
17239
|
+
});
|
|
17240
|
+
|
|
16978
17241
|
T['io.flow.internal.v0.models.crypto_authentication_form'] = PropTypes.exact({
|
|
16979
17242
|
public_key: PropTypes.string.isRequired,
|
|
16980
17243
|
secret_key: PropTypes.string.isRequired,
|
|
@@ -17158,13 +17421,6 @@ T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa'] = PropType
|
|
|
17158
17421
|
|
|
17159
17422
|
T['io.flow.shopify.merchant.config.v0.unions.know_your_business'] = PropTypes.oneOfType([T['io.flow.shopify.merchant.config.v0.models.know_your_business_usa']]);
|
|
17160
17423
|
|
|
17161
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'] = PropTypes.exact({
|
|
17162
|
-
id: PropTypes.string.isRequired,
|
|
17163
|
-
key: PropTypes.string.isRequired,
|
|
17164
|
-
name: PropTypes.string.isRequired,
|
|
17165
|
-
address: T['io.flow.common.v0.models.address'].isRequired,
|
|
17166
|
-
});
|
|
17167
|
-
|
|
17168
17424
|
T['io.flow.shopify.markets.internal.v0.models.shopify_order_destination_form'] = PropTypes.exact({
|
|
17169
17425
|
destination: T['io.flow.common.v0.models.address'].isRequired,
|
|
17170
17426
|
order_note: PropTypes.string,
|
|
@@ -17330,28 +17586,38 @@ T['io.flow.internal.v0.enums.classification_decision'] = PropTypes.oneOf(['Accep
|
|
|
17330
17586
|
T['io.flow.internal.v0.enums.classification_platform'] = PropTypes.oneOf(['GlobalE', 'Flow', 'Borderfree']);
|
|
17331
17587
|
|
|
17332
17588
|
T['io.flow.internal.v0.models.classification_product_result'] = PropTypes.exact({
|
|
17333
|
-
|
|
17334
|
-
|
|
17335
|
-
|
|
17336
|
-
|
|
17589
|
+
productId: PropTypes.string.isRequired,
|
|
17590
|
+
merchantId: PropTypes.string.isRequired,
|
|
17591
|
+
platformId: T['io.flow.internal.v0.enums.classification_platform'].isRequired,
|
|
17592
|
+
hsCode: PropTypes.string,
|
|
17337
17593
|
probability: PropTypes.number,
|
|
17338
|
-
|
|
17339
|
-
|
|
17340
|
-
|
|
17594
|
+
classificationDecision: T['io.flow.internal.v0.enums.classification_decision'].isRequired,
|
|
17595
|
+
classificationType: T['io.flow.internal.v0.enums.classification_type'].isRequired,
|
|
17596
|
+
clothingAgeClassification: T['io.flow.internal.v0.enums.clothing_age_classification'],
|
|
17597
|
+
});
|
|
17598
|
+
|
|
17599
|
+
T['io.flow.internal.v0.models.classification_product_result_envelope'] = PropTypes.exact({
|
|
17600
|
+
messageType: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
17601
|
+
message: T['io.flow.internal.v0.models.classification_product_result'].isRequired,
|
|
17341
17602
|
});
|
|
17342
17603
|
|
|
17343
17604
|
T['io.flow.internal.v0.models.classification_product_request'] = PropTypes.exact({
|
|
17344
|
-
|
|
17345
|
-
|
|
17346
|
-
|
|
17347
|
-
|
|
17348
|
-
|
|
17349
|
-
|
|
17350
|
-
|
|
17351
|
-
|
|
17352
|
-
|
|
17353
|
-
|
|
17354
|
-
|
|
17605
|
+
MerchantId: PropTypes.string.isRequired,
|
|
17606
|
+
ProductName: PropTypes.string.isRequired,
|
|
17607
|
+
ProductDescription: PropTypes.string.isRequired,
|
|
17608
|
+
ProductIdInternal: PropTypes.string.isRequired,
|
|
17609
|
+
ProductIdExternal: PropTypes.string.isRequired,
|
|
17610
|
+
ProductGroupCode: PropTypes.string,
|
|
17611
|
+
ProductUrl: PropTypes.string,
|
|
17612
|
+
ProductImage: PropTypes.string,
|
|
17613
|
+
ProductAttributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
17614
|
+
Categories: PropTypes.arrayOf(PropTypes.string),
|
|
17615
|
+
PlatformId: T['io.flow.internal.v0.enums.classification_platform'].isRequired,
|
|
17616
|
+
});
|
|
17617
|
+
|
|
17618
|
+
T['io.flow.internal.v0.models.classification_product_request_envelope'] = PropTypes.exact({
|
|
17619
|
+
messageType: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
17620
|
+
message: T['io.flow.internal.v0.models.classification_product_request'].isRequired,
|
|
17355
17621
|
});
|
|
17356
17622
|
|
|
17357
17623
|
T['io.flow.internal.v0.models.attribute_label'] = PropTypes.exact({
|
|
@@ -17405,6 +17671,7 @@ T['io.flow.internal.v0.models.item_harmonization'] = PropTypes.exact({
|
|
|
17405
17671
|
price_amount: PropTypes.number,
|
|
17406
17672
|
status: T['io.flow.internal.v0.enums.item_harmonization_status'].isRequired,
|
|
17407
17673
|
tariffs: PropTypes.objectOf(T['io.flow.internal.v0.models.tariff_code_duty']),
|
|
17674
|
+
decision_source: T['io.flow.internal.v0.enums.harmonization_decision_source'],
|
|
17408
17675
|
created_at: PropTypes.string,
|
|
17409
17676
|
updated_at: PropTypes.string,
|
|
17410
17677
|
updated_by_user_id: PropTypes.string,
|
|
@@ -18112,43 +18379,6 @@ T['io.flow.experience.v0.models.experience'] = PropTypes.exact({
|
|
|
18112
18379
|
status: T['io.flow.experience.v0.enums.experience_status'],
|
|
18113
18380
|
});
|
|
18114
18381
|
|
|
18115
|
-
T['io.flow.billing.csv.v0.models.billing_csv_delivery'] = PropTypes.exact({
|
|
18116
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
18117
|
-
carrier: T['io.flow.billing.csv.v0.models.billing_csv_carrier'].isRequired,
|
|
18118
|
-
center: T['io.flow.billing.csv.v0.models.billing_csv_center'].isRequired,
|
|
18119
|
-
service: T['io.flow.billing.csv.v0.models.billing_csv_service'].isRequired,
|
|
18120
|
-
tier: T['io.flow.billing.csv.v0.models.billing_csv_tier'].isRequired,
|
|
18121
|
-
cost: T['io.flow.billing.csv.v0.models.billing_csv_delivery_cost_detail'].isRequired,
|
|
18122
|
-
ratecard_owner: T['io.flow.billing.internal.v0.enums.responsible_party'].isRequired,
|
|
18123
|
-
});
|
|
18124
|
-
|
|
18125
|
-
T['io.flow.billing.csv.v0.models.billing_csv_order'] = PropTypes.exact({
|
|
18126
|
-
number: PropTypes.string.isRequired,
|
|
18127
|
-
primary_identifier: PropTypes.string,
|
|
18128
|
-
submitted_at: PropTypes.string,
|
|
18129
|
-
timezone: PropTypes.string.isRequired,
|
|
18130
|
-
local: T['io.flow.billing.csv.v0.models.billing_csv_order_detail'].isRequired,
|
|
18131
|
-
base: T['io.flow.billing.csv.v0.models.billing_csv_order_detail'].isRequired,
|
|
18132
|
-
transaction_amount: PropTypes.number.isRequired,
|
|
18133
|
-
deliveries: PropTypes.arrayOf(T['io.flow.billing.csv.v0.models.billing_csv_delivery']).isRequired,
|
|
18134
|
-
exchange_rate: T['io.flow.billing.csv.v0.models.billing_csv_exchange_rate'],
|
|
18135
|
-
});
|
|
18136
|
-
|
|
18137
|
-
T['io.flow.billing.csv.v0.models.billing_channel_csv_order_delivery'] = PropTypes.exact({
|
|
18138
|
-
carrier: T['io.flow.billing.csv.v0.models.billing_csv_carrier'].isRequired,
|
|
18139
|
-
service: T['io.flow.billing.csv.v0.models.billing_csv_service'].isRequired,
|
|
18140
|
-
delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
|
|
18141
|
-
ratecard_owner: T['io.flow.billing.internal.v0.enums.responsible_party'].isRequired,
|
|
18142
|
-
tier: T['io.flow.billing.csv.v0.models.billing_csv_tier'].isRequired,
|
|
18143
|
-
});
|
|
18144
|
-
|
|
18145
|
-
T['io.flow.billing.csv.v0.models.billing_channel_csv_order'] = PropTypes.exact({
|
|
18146
|
-
number: PropTypes.string.isRequired,
|
|
18147
|
-
submitted_at: PropTypes.string.isRequired,
|
|
18148
|
-
local: T['io.flow.billing.csv.v0.models.billing_channel_csv_order_detail'].isRequired,
|
|
18149
|
-
deliveries: PropTypes.arrayOf(T['io.flow.billing.csv.v0.models.billing_channel_csv_order_delivery']).isRequired,
|
|
18150
|
-
});
|
|
18151
|
-
|
|
18152
18382
|
T['io.flow.internal.v0.models.delivered_duty_preference_form'] = PropTypes.exact({
|
|
18153
18383
|
methods: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
|
|
18154
18384
|
'default': T['io.flow.common.v0.enums.delivered_duty'],
|
|
@@ -18418,6 +18648,13 @@ T['io.flow.internal.v0.models.checkout_analytics'] = PropTypes.exact({
|
|
|
18418
18648
|
|
|
18419
18649
|
T['io.flow.common.v0.enums.change_type'] = PropTypes.oneOf(['insert', 'update', 'delete']);
|
|
18420
18650
|
|
|
18651
|
+
T['io.flow.experiment.internal.v0.models.experiment_version'] = PropTypes.exact({
|
|
18652
|
+
id: PropTypes.string.isRequired,
|
|
18653
|
+
timestamp: PropTypes.string.isRequired,
|
|
18654
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
18655
|
+
experiment: T['io.flow.experiment.internal.v0.unions.experiment'].isRequired,
|
|
18656
|
+
});
|
|
18657
|
+
|
|
18421
18658
|
T['io.flow.currency.v0.models.rate_version'] = PropTypes.exact({
|
|
18422
18659
|
id: PropTypes.string.isRequired,
|
|
18423
18660
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -18587,13 +18824,6 @@ T['io.flow.internal.v0.models.ftp_setting_version'] = PropTypes.exact({
|
|
|
18587
18824
|
ftp_setting: T['io.flow.internal.v0.models.ftp_setting'].isRequired,
|
|
18588
18825
|
});
|
|
18589
18826
|
|
|
18590
|
-
T['io.flow.internal.v0.models.experiment_version'] = PropTypes.exact({
|
|
18591
|
-
id: PropTypes.string.isRequired,
|
|
18592
|
-
timestamp: PropTypes.string.isRequired,
|
|
18593
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
18594
|
-
experiment: T['io.flow.internal.v0.unions.experiment'].isRequired,
|
|
18595
|
-
});
|
|
18596
|
-
|
|
18597
18827
|
T['io.flow.internal.v0.enums.chargeback_process_status'] = PropTypes.oneOf(['inquiry', 'open', 'closed']);
|
|
18598
18828
|
T['io.flow.internal.v0.enums.chargeback_payment_status'] = PropTypes.oneOf(['captured', 'refunded']);
|
|
18599
18829
|
T['io.flow.internal.v0.enums.charge_estimate_source'] = PropTypes.oneOf(['global-e', 'shopify']);
|
|
@@ -18696,6 +18926,7 @@ T['io.flow.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropT
|
|
|
18696
18926
|
'unsupported_virtual_goods',
|
|
18697
18927
|
'non_matching_currencies',
|
|
18698
18928
|
'unsupported_order_edit',
|
|
18929
|
+
'order_missing',
|
|
18699
18930
|
]);
|
|
18700
18931
|
|
|
18701
18932
|
T['io.flow.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
|
|
@@ -18846,6 +19077,7 @@ T['io.flow.internal.v0.models.export_tracking_label_event'] = PropTypes.exact({
|
|
|
18846
19077
|
delivery_estimate: PropTypes.string,
|
|
18847
19078
|
description: PropTypes.string,
|
|
18848
19079
|
order_number: PropTypes.string,
|
|
19080
|
+
raw_carrier_event_code: PropTypes.string,
|
|
18849
19081
|
});
|
|
18850
19082
|
|
|
18851
19083
|
T['io.flow.internal.v0.models.tracking_label_event_upserted_v2'] = PropTypes.exact({
|
|
@@ -19671,7 +19903,7 @@ T['io.flow.billing.v0.models.transaction_metadata_carrier_charge'] = PropTypes.e
|
|
|
19671
19903
|
outbound: T['io.flow.billing.v0.models.transaction_metadata_outbound_transaction'],
|
|
19672
19904
|
});
|
|
19673
19905
|
|
|
19674
|
-
T['io.flow.
|
|
19906
|
+
T['io.flow.internal.v0.models.other_record_metadata_carrier_charge'] = PropTypes.exact({
|
|
19675
19907
|
reason: T['io.flow.trueup.v0.enums.carrier_charge_reason'].isRequired,
|
|
19676
19908
|
label_created_at: PropTypes.string.isRequired,
|
|
19677
19909
|
carrier_id: PropTypes.string.isRequired,
|
|
@@ -20662,23 +20894,23 @@ T['io.flow.internal.v0.models.billing_order_summary'] = PropTypes.exact({
|
|
|
20662
20894
|
destination: T['io.flow.internal.v0.models.billing_order_destination'],
|
|
20663
20895
|
});
|
|
20664
20896
|
|
|
20665
|
-
T['io.flow.
|
|
20897
|
+
T['io.flow.internal.v0.models.other_record_identifiers'] = PropTypes.exact({
|
|
20666
20898
|
reference_id: PropTypes.string,
|
|
20667
20899
|
});
|
|
20668
20900
|
|
|
20669
|
-
T['io.flow.
|
|
20901
|
+
T['io.flow.internal.v0.models.other_record_discount'] = PropTypes.exact({
|
|
20670
20902
|
amount: PropTypes.number.isRequired,
|
|
20671
20903
|
description: PropTypes.string,
|
|
20672
20904
|
});
|
|
20673
20905
|
|
|
20674
|
-
T['io.flow.
|
|
20906
|
+
T['io.flow.internal.v0.models.other_record_withholdings'] = PropTypes.exact({
|
|
20675
20907
|
tax: PropTypes.number.isRequired,
|
|
20676
20908
|
duty: PropTypes.number.isRequired,
|
|
20677
20909
|
freight: PropTypes.number.isRequired,
|
|
20678
20910
|
insurance: PropTypes.number.isRequired,
|
|
20679
20911
|
});
|
|
20680
20912
|
|
|
20681
|
-
T['io.flow.
|
|
20913
|
+
T['io.flow.internal.v0.models.other_record_fees'] = PropTypes.exact({
|
|
20682
20914
|
duty_guarantee: PropTypes.number.isRequired,
|
|
20683
20915
|
mor: PropTypes.number.isRequired,
|
|
20684
20916
|
fraud: PropTypes.number.isRequired,
|
|
@@ -20722,96 +20954,14 @@ T['io.flow.billing.v0.models.parent_transaction_summary'] = PropTypes.exact({
|
|
|
20722
20954
|
source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
|
|
20723
20955
|
});
|
|
20724
20956
|
|
|
20725
|
-
T['io.flow.
|
|
20726
|
-
channel: T['io.flow.
|
|
20727
|
-
shipping_label: T['io.flow.
|
|
20728
|
-
shipping_label_revenue_share: T['io.flow.
|
|
20729
|
-
trueup: T['io.flow.
|
|
20730
|
-
carrier_charge: T['io.flow.
|
|
20731
|
-
manual: T['io.flow.
|
|
20732
|
-
failed_payout: T['io.flow.
|
|
20733
|
-
});
|
|
20734
|
-
|
|
20735
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction_account'] = PropTypes.exact({
|
|
20736
|
-
id: PropTypes.string.isRequired,
|
|
20737
|
-
merchant: T['io.flow.billing.csv.v0.models.billing_csv_merchant_reference'],
|
|
20738
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
20739
|
-
source: T['io.flow.billing.csv.v0.models.billing_csv_transaction_account_source_summary'].isRequired,
|
|
20740
|
-
});
|
|
20741
|
-
|
|
20742
|
-
T['io.flow.billing.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
20743
|
-
'manual',
|
|
20744
|
-
'subscription',
|
|
20745
|
-
'invoice',
|
|
20746
|
-
'transfer',
|
|
20747
|
-
'adjustment',
|
|
20748
|
-
'reversal',
|
|
20749
|
-
'capture',
|
|
20750
|
-
'refund',
|
|
20751
|
-
'virtual_card_capture',
|
|
20752
|
-
'virtual_card_refund',
|
|
20753
|
-
'tax_remittance',
|
|
20754
|
-
'fully_subsidized_order',
|
|
20755
|
-
'credit_payment',
|
|
20756
|
-
'dispute',
|
|
20757
|
-
'channel',
|
|
20758
|
-
'label',
|
|
20759
|
-
'order',
|
|
20760
|
-
'channel_billed',
|
|
20761
|
-
'tax',
|
|
20762
|
-
'duty',
|
|
20763
|
-
'trueup',
|
|
20764
|
-
'carrier_charge',
|
|
20765
|
-
]);
|
|
20766
|
-
|
|
20767
|
-
T['io.flow.billing.csv.v0.models.billing_csv_processing_transaction'] = PropTypes.exact({
|
|
20768
|
-
id: PropTypes.string.isRequired,
|
|
20769
|
-
reference: PropTypes.string.isRequired,
|
|
20770
|
-
primary_identifier: PropTypes.string,
|
|
20771
|
-
parent_id: PropTypes.string,
|
|
20772
|
-
created_at: PropTypes.string,
|
|
20773
|
-
merchant_of_record: T['io.flow.common.v0.enums.merchant_of_record'].isRequired,
|
|
20774
|
-
posted_at: PropTypes.string,
|
|
20775
|
-
type: T['io.flow.billing.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
20776
|
-
timezone: PropTypes.string.isRequired,
|
|
20777
|
-
order_number: PropTypes.string,
|
|
20778
|
-
order_primary_identifier: PropTypes.string,
|
|
20779
|
-
order_identifiers: PropTypes.objectOf(PropTypes.string),
|
|
20780
|
-
order_submitted_at: PropTypes.string,
|
|
20781
|
-
order: T['io.flow.billing.internal.v0.models.billing_order_summary'],
|
|
20782
|
-
payment_method: PropTypes.string.isRequired,
|
|
20783
|
-
local_amount: PropTypes.number.isRequired,
|
|
20784
|
-
local_currency: PropTypes.string.isRequired,
|
|
20785
|
-
base_amount: PropTypes.number.isRequired,
|
|
20786
|
-
base_currency: PropTypes.string.isRequired,
|
|
20787
|
-
processing_fee: PropTypes.number,
|
|
20788
|
-
processing_fee_description: PropTypes.string,
|
|
20789
|
-
rate_lock_fee: PropTypes.number.isRequired,
|
|
20790
|
-
rate_lock_fee_description: PropTypes.string,
|
|
20791
|
-
vat_withholding: PropTypes.number.isRequired,
|
|
20792
|
-
duty_withholding: PropTypes.number.isRequired,
|
|
20793
|
-
freight_withholding: PropTypes.number,
|
|
20794
|
-
insurance_withholding: PropTypes.number.isRequired,
|
|
20795
|
-
revenue_share: PropTypes.number,
|
|
20796
|
-
revenue_share_currency: PropTypes.string,
|
|
20797
|
-
amount: PropTypes.number.isRequired,
|
|
20798
|
-
order_detail: T['io.flow.billing.csv.v0.models.billing_csv_processing_transaction_order_detail'],
|
|
20799
|
-
mor_fee: PropTypes.number,
|
|
20800
|
-
mor_fee_description: PropTypes.string,
|
|
20801
|
-
fx_fee: PropTypes.number,
|
|
20802
|
-
fx_fee_description: PropTypes.string,
|
|
20803
|
-
duty_guarantee_fee: PropTypes.number,
|
|
20804
|
-
duty_guarantee_fee_description: PropTypes.string,
|
|
20805
|
-
negative_balance_fee: PropTypes.number,
|
|
20806
|
-
negative_balance_fee_description: PropTypes.string,
|
|
20807
|
-
});
|
|
20808
|
-
|
|
20809
|
-
T['io.flow.billing.csv.v0.models.billing_csv_generic_transaction'] = PropTypes.exact({
|
|
20810
|
-
id: PropTypes.string.isRequired,
|
|
20811
|
-
posted_at: PropTypes.string,
|
|
20812
|
-
type: T['io.flow.billing.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
20813
|
-
amount: PropTypes.number.isRequired,
|
|
20814
|
-
description: PropTypes.string.isRequired,
|
|
20957
|
+
T['io.flow.internal.v0.models.other_record_metadata'] = PropTypes.exact({
|
|
20958
|
+
channel: T['io.flow.internal.v0.models.other_record_metadata_channel'],
|
|
20959
|
+
shipping_label: T['io.flow.internal.v0.models.other_record_metadata_shipping_label'],
|
|
20960
|
+
shipping_label_revenue_share: T['io.flow.internal.v0.models.other_record_metadata_shipping_label_revenue_share'],
|
|
20961
|
+
trueup: T['io.flow.internal.v0.models.other_record_metadata_trueup'],
|
|
20962
|
+
carrier_charge: T['io.flow.internal.v0.models.other_record_metadata_carrier_charge'],
|
|
20963
|
+
manual: T['io.flow.internal.v0.models.other_record_metadata_manual'],
|
|
20964
|
+
failed_payout: T['io.flow.internal.v0.models.other_record_metadata_failed_payout'],
|
|
20815
20965
|
});
|
|
20816
20966
|
|
|
20817
20967
|
T['io.flow.internal.v0.models.bank_payment_status_import_result'] = PropTypes.exact({
|
|
@@ -21751,6 +21901,50 @@ T['io.flow.internal.v0.models.fraud_pending_review_upserted'] = PropTypes.exact(
|
|
|
21751
21901
|
fraud_pending_review: T['io.flow.internal.v0.models.fraud_pending_review'].isRequired,
|
|
21752
21902
|
});
|
|
21753
21903
|
|
|
21904
|
+
T['io.flow.internal.v0.models.fraud_pending_review_authorization'] = PropTypes.exact({
|
|
21905
|
+
id: PropTypes.string.isRequired,
|
|
21906
|
+
fraud_review_authorization_id: PropTypes.string.isRequired,
|
|
21907
|
+
order: T['io.flow.experience.v0.models.order_reference'].isRequired,
|
|
21908
|
+
fraud_order_reference: T['io.flow.fraud.v0.unions.fraud_order_reference'],
|
|
21909
|
+
recommended_status: T['io.flow.fraud.v0.enums.fraud_status'].isRequired,
|
|
21910
|
+
apply_at: PropTypes.string,
|
|
21911
|
+
liability: T['io.flow.fraud.v0.enums.fraud_liability'],
|
|
21912
|
+
});
|
|
21913
|
+
|
|
21914
|
+
T['io.flow.internal.v0.models.fraud_pending_review_authorization_upserted'] = PropTypes.exact({
|
|
21915
|
+
discriminator: PropTypes.oneOf(['fraud_pending_review_authorization_upserted']).isRequired,
|
|
21916
|
+
event_id: PropTypes.string.isRequired,
|
|
21917
|
+
timestamp: PropTypes.string.isRequired,
|
|
21918
|
+
organization: PropTypes.string.isRequired,
|
|
21919
|
+
fraud_pending_review_authorization: T['io.flow.internal.v0.models.fraud_pending_review_authorization'].isRequired,
|
|
21920
|
+
});
|
|
21921
|
+
|
|
21922
|
+
T['io.flow.internal.v0.models.fraud_review_authorization'] = PropTypes.exact({
|
|
21923
|
+
id: PropTypes.string.isRequired,
|
|
21924
|
+
organization_id: PropTypes.string.isRequired,
|
|
21925
|
+
order: T['io.flow.experience.v0.models.order_reference'].isRequired,
|
|
21926
|
+
fraud_order_reference: T['io.flow.fraud.v0.unions.fraud_order_reference'],
|
|
21927
|
+
status: T['io.flow.fraud.v0.enums.fraud_status'].isRequired,
|
|
21928
|
+
responsible_party: T['io.flow.internal.v0.enums.fraud_review_responsible_party'].isRequired,
|
|
21929
|
+
description: PropTypes.string,
|
|
21930
|
+
risk_evaluation: T['io.flow.internal.v0.enums.risk_evaluation'],
|
|
21931
|
+
liability: T['io.flow.fraud.v0.enums.fraud_liability'],
|
|
21932
|
+
status_updated_at: PropTypes.string,
|
|
21933
|
+
attributes: PropTypes.objectOf(PropTypes.string),
|
|
21934
|
+
provider: T['io.flow.internal.v0.enums.fraud_provider'],
|
|
21935
|
+
payment_authorization_id: PropTypes.string,
|
|
21936
|
+
decline_reason: T['io.flow.internal.v0.unions.decline_reason'],
|
|
21937
|
+
created_at: PropTypes.string,
|
|
21938
|
+
});
|
|
21939
|
+
|
|
21940
|
+
T['io.flow.internal.v0.models.fraud_review_authorization_upserted'] = PropTypes.exact({
|
|
21941
|
+
discriminator: PropTypes.oneOf(['fraud_review_authorization_upserted']).isRequired,
|
|
21942
|
+
event_id: PropTypes.string.isRequired,
|
|
21943
|
+
timestamp: PropTypes.string.isRequired,
|
|
21944
|
+
organization: PropTypes.string.isRequired,
|
|
21945
|
+
fraud_review_authorization: T['io.flow.internal.v0.models.fraud_review_authorization'].isRequired,
|
|
21946
|
+
});
|
|
21947
|
+
|
|
21754
21948
|
T['io.flow.payment.v0.models.authorization_reference'] = PropTypes.exact({
|
|
21755
21949
|
id: PropTypes.string.isRequired,
|
|
21756
21950
|
key: PropTypes.string.isRequired,
|
|
@@ -22144,22 +22338,6 @@ T['io.flow.internal.v0.models.routing_processor'] = PropTypes.exact({
|
|
|
22144
22338
|
processor: T['io.flow.internal.v0.enums.processor'].isRequired,
|
|
22145
22339
|
});
|
|
22146
22340
|
|
|
22147
|
-
T['io.flow.internal.v0.models.reporting_payment_metadata'] = PropTypes.exact({
|
|
22148
|
-
gateway: T['io.flow.internal.v0.enums.processor'].isRequired,
|
|
22149
|
-
method: PropTypes.string.isRequired,
|
|
22150
|
-
psp_reference: PropTypes.string,
|
|
22151
|
-
authorization: T['io.flow.internal.v0.models.reporting_authorization_reference'],
|
|
22152
|
-
settlement_date: PropTypes.string.isRequired,
|
|
22153
|
-
additional_authorizations: T['io.flow.internal.v0.models.reporting_payment_metadata_additional_authorizations'],
|
|
22154
|
-
});
|
|
22155
|
-
|
|
22156
|
-
T['io.flow.internal.v0.models.reporting_payment'] = PropTypes.exact({
|
|
22157
|
-
metadata: T['io.flow.internal.v0.models.reporting_payment_metadata'],
|
|
22158
|
-
psp: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
22159
|
-
credit: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
22160
|
-
total: T['io.flow.internal.v0.models.reporting_monetary_value'].isRequired,
|
|
22161
|
-
});
|
|
22162
|
-
|
|
22163
22341
|
T['io.flow.internal.v0.models.internal_authorization'] = PropTypes.exact({
|
|
22164
22342
|
id: PropTypes.string.isRequired,
|
|
22165
22343
|
processor: T['io.flow.internal.v0.enums.processor'].isRequired,
|
|
@@ -24759,95 +24937,10 @@ T['io.flow.shopify.markets.internal.event.v0.unions.shopify_markets_internal_eve
|
|
|
24759
24937
|
T['io.flow.shopify.markets.internal.event.v0.models.channel_order_summary_deleted'],
|
|
24760
24938
|
T['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_upserted'],
|
|
24761
24939
|
T['io.flow.shopify.markets.internal.event.v0.models.channel_organization_identifier_deleted'],
|
|
24940
|
+
T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_upserted'],
|
|
24941
|
+
T['io.flow.shopify.markets.internal.event.v0.models.order_tax_and_duty_inclusivity_setting_deleted'],
|
|
24762
24942
|
]);
|
|
24763
24943
|
|
|
24764
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary'] = PropTypes.exact({
|
|
24765
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24766
|
-
number: PropTypes.string.isRequired,
|
|
24767
|
-
identifiers: T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary_identifiers'].isRequired,
|
|
24768
|
-
});
|
|
24769
|
-
|
|
24770
|
-
T['io.flow.billing.csv.v0.models.billing_csv_transaction'] = PropTypes.exact({
|
|
24771
|
-
id: PropTypes.string.isRequired,
|
|
24772
|
-
type: T['io.flow.billing.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
24773
|
-
account: T['io.flow.billing.csv.v0.models.billing_csv_transaction_account'].isRequired,
|
|
24774
|
-
metadata: T['io.flow.billing.csv.v0.models.billing_csv_transaction_metadata'],
|
|
24775
|
-
order: T['io.flow.billing.csv.v0.models.billing_csv_transaction_order_summary'],
|
|
24776
|
-
currency: PropTypes.string.isRequired,
|
|
24777
|
-
source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
|
|
24778
|
-
parent: T['io.flow.billing.v0.models.parent_transaction_summary'],
|
|
24779
|
-
gross: PropTypes.number.isRequired,
|
|
24780
|
-
fees: T['io.flow.billing.csv.v0.models.billing_csv_transaction_fees'].isRequired,
|
|
24781
|
-
withholdings: T['io.flow.billing.csv.v0.models.billing_csv_transaction_withholdings'].isRequired,
|
|
24782
|
-
discount: T['io.flow.billing.csv.v0.models.billing_csv_transaction_discount'].isRequired,
|
|
24783
|
-
net: PropTypes.number.isRequired,
|
|
24784
|
-
identifiers: T['io.flow.billing.csv.v0.models.billing_csv_transaction_identifiers'].isRequired,
|
|
24785
|
-
created_at: PropTypes.string.isRequired,
|
|
24786
|
-
updated_at: PropTypes.string.isRequired,
|
|
24787
|
-
});
|
|
24788
|
-
|
|
24789
|
-
T['io.flow.internal.v0.models.billing_csv_transaction_upserted'] = PropTypes.exact({
|
|
24790
|
-
discriminator: PropTypes.oneOf(['billing_csv_transaction_upserted']).isRequired,
|
|
24791
|
-
event_id: PropTypes.string.isRequired,
|
|
24792
|
-
timestamp: PropTypes.string.isRequired,
|
|
24793
|
-
transaction: T['io.flow.billing.csv.v0.models.billing_csv_transaction'].isRequired,
|
|
24794
|
-
});
|
|
24795
|
-
|
|
24796
|
-
T['io.flow.billing.csv.v0.models.billing_csv_order_transaction'] = PropTypes.exact({
|
|
24797
|
-
id: PropTypes.string.isRequired,
|
|
24798
|
-
type: PropTypes.string.isRequired,
|
|
24799
|
-
amount: PropTypes.number.isRequired,
|
|
24800
|
-
description: PropTypes.string,
|
|
24801
|
-
account: T['io.flow.billing.csv.v0.models.account_summary'].isRequired,
|
|
24802
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24803
|
-
order: T['io.flow.billing.csv.v0.models.billing_csv_order_with_mor_summary'].isRequired,
|
|
24804
|
-
});
|
|
24805
|
-
|
|
24806
|
-
T['io.flow.billing.csv.v0.models.billing_csv_label_transaction'] = PropTypes.exact({
|
|
24807
|
-
id: PropTypes.string.isRequired,
|
|
24808
|
-
type: PropTypes.string.isRequired,
|
|
24809
|
-
gross: PropTypes.number.isRequired,
|
|
24810
|
-
net: PropTypes.number.isRequired,
|
|
24811
|
-
discounts: PropTypes.arrayOf(T['io.flow.billing.internal.v0.models.discount']).isRequired,
|
|
24812
|
-
description: PropTypes.string,
|
|
24813
|
-
account: T['io.flow.billing.csv.v0.models.account_summary'].isRequired,
|
|
24814
|
-
label: T['io.flow.billing.csv.v0.models.billing_csv_label_transaction_billable_label_summary'].isRequired,
|
|
24815
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24816
|
-
order: T['io.flow.billing.csv.v0.models.billing_csv_order_with_mor_summary'],
|
|
24817
|
-
});
|
|
24818
|
-
|
|
24819
|
-
T['io.flow.billing.csv.v0.models.billing_csv_channel_transaction'] = PropTypes.exact({
|
|
24820
|
-
id: PropTypes.string.isRequired,
|
|
24821
|
-
account: T['io.flow.billing.csv.v0.models.account_summary'].isRequired,
|
|
24822
|
-
type: PropTypes.string.isRequired,
|
|
24823
|
-
description: PropTypes.string,
|
|
24824
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
24825
|
-
order: T['io.flow.billing.csv.v0.models.billing_csv_order_with_mor_summary'].isRequired,
|
|
24826
|
-
processing_transaction: T['io.flow.billing.csv.v0.models.billing_csv_channel_transaction_processing_transaction'].isRequired,
|
|
24827
|
-
spot_rate: T['io.flow.billing.csv.v0.models.billing_csv_exchange_rate'].isRequired,
|
|
24828
|
-
processing_transaction_base_amount_in_channel_account_currency: PropTypes.number.isRequired,
|
|
24829
|
-
processing_transaction_total_fees_in_channel_account_currency: PropTypes.number.isRequired,
|
|
24830
|
-
processing_fee: T['io.flow.billing.csv.v0.models.billing_csv_fee'],
|
|
24831
|
-
fraud_fee: T['io.flow.billing.csv.v0.models.billing_csv_fee'],
|
|
24832
|
-
mor_fee: T['io.flow.billing.csv.v0.models.billing_csv_fee'],
|
|
24833
|
-
fx_fee: T['io.flow.billing.csv.v0.models.billing_csv_fee'],
|
|
24834
|
-
duty_guarantee_fee: T['io.flow.billing.csv.v0.models.billing_csv_fee'],
|
|
24835
|
-
rate_lock_fee: T['io.flow.billing.csv.v0.models.billing_csv_fee'],
|
|
24836
|
-
transfer_fee: T['io.flow.billing.csv.v0.models.billing_csv_fee'],
|
|
24837
|
-
total_fees: PropTypes.number.isRequired,
|
|
24838
|
-
amount: PropTypes.number.isRequired,
|
|
24839
|
-
});
|
|
24840
|
-
|
|
24841
|
-
T['io.flow.billing.csv.v0.models.billing_csv_channel_billed_transaction'] = PropTypes.exact({
|
|
24842
|
-
id: PropTypes.string.isRequired,
|
|
24843
|
-
type: PropTypes.string.isRequired,
|
|
24844
|
-
net: PropTypes.number.isRequired,
|
|
24845
|
-
description: PropTypes.string.isRequired,
|
|
24846
|
-
account: T['io.flow.billing.csv.v0.models.account_summary'].isRequired,
|
|
24847
|
-
organization: T['io.flow.common.v0.models.organization_reference'],
|
|
24848
|
-
order: T['io.flow.billing.csv.v0.models.billing_csv_order_summary'],
|
|
24849
|
-
});
|
|
24850
|
-
|
|
24851
24944
|
T['io.flow.export.v0.models.marketing_feeds_export_type'] = PropTypes.exact({
|
|
24852
24945
|
discriminator: PropTypes.oneOf(['marketing_feeds_export_type']).isRequired,
|
|
24853
24946
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -24929,6 +25022,7 @@ T['io.flow.billing.accounting.v0.models.return'] = PropTypes.exact({
|
|
|
24929
25022
|
shopper: T['io.flow.billing.accounting.v0.models.shopper_summary'].isRequired,
|
|
24930
25023
|
merchant: T['io.flow.billing.accounting.v0.models.merchant_summary'].isRequired,
|
|
24931
25024
|
remittance: T['io.flow.billing.accounting.v0.models.remittance_responsibility'].isRequired,
|
|
25025
|
+
payment: T['io.flow.billing.accounting.v0.models.payment_summary'],
|
|
24932
25026
|
sequence_number: PropTypes.number.isRequired,
|
|
24933
25027
|
posting_cutoff: PropTypes.string.isRequired,
|
|
24934
25028
|
trigger: T['io.flow.billing.accounting.v0.unions.return_trigger'].isRequired,
|
|
@@ -24941,6 +25035,7 @@ T['io.flow.billing.accounting.v0.models.pending_order'] = PropTypes.exact({
|
|
|
24941
25035
|
order: T['io.flow.billing.accounting.v0.models.order_summary'].isRequired,
|
|
24942
25036
|
shopper: T['io.flow.billing.accounting.v0.models.shopper_summary'].isRequired,
|
|
24943
25037
|
merchant: T['io.flow.billing.accounting.v0.models.merchant_summary'].isRequired,
|
|
25038
|
+
payment: T['io.flow.billing.accounting.v0.models.payment_summary'],
|
|
24944
25039
|
remittance: T['io.flow.billing.accounting.v0.models.remittance_responsibility'].isRequired,
|
|
24945
25040
|
sequence_number: PropTypes.number.isRequired,
|
|
24946
25041
|
posting_cutoff: PropTypes.string.isRequired,
|
|
@@ -24951,6 +25046,7 @@ T['io.flow.billing.accounting.v0.models.fulfillment'] = PropTypes.exact({
|
|
|
24951
25046
|
order: T['io.flow.billing.accounting.v0.models.order_summary'].isRequired,
|
|
24952
25047
|
shopper: T['io.flow.billing.accounting.v0.models.shopper_summary'].isRequired,
|
|
24953
25048
|
remittance: T['io.flow.billing.accounting.v0.models.remittance_responsibility'].isRequired,
|
|
25049
|
+
payment: T['io.flow.billing.accounting.v0.models.payment_summary'],
|
|
24954
25050
|
merchant: T['io.flow.billing.accounting.v0.models.merchant_summary'].isRequired,
|
|
24955
25051
|
sequence_number: PropTypes.number.isRequired,
|
|
24956
25052
|
posting_cutoff: PropTypes.string.isRequired,
|
|
@@ -25195,6 +25291,12 @@ T['io.flow.internal.v0.models.order_summary'] = PropTypes.exact({
|
|
|
25195
25291
|
currency: PropTypes.string.isRequired,
|
|
25196
25292
|
});
|
|
25197
25293
|
|
|
25294
|
+
T['io.flow.internal.v0.models.other_record_order_summary'] = PropTypes.exact({
|
|
25295
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25296
|
+
number: PropTypes.string.isRequired,
|
|
25297
|
+
identifiers: T['io.flow.internal.v0.models.other_record_order_summary_identifiers'].isRequired,
|
|
25298
|
+
});
|
|
25299
|
+
|
|
25198
25300
|
T['io.flow.common.v0.models.merchant_of_record_entity'] = PropTypes.exact({
|
|
25199
25301
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
25200
25302
|
name: PropTypes.string.isRequired,
|
|
@@ -26173,143 +26275,6 @@ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exac
|
|
|
26173
26275
|
name: PropTypes.string,
|
|
26174
26276
|
});
|
|
26175
26277
|
|
|
26176
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'] = PropTypes.exact({
|
|
26177
|
-
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
26178
|
-
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
26179
|
-
});
|
|
26180
|
-
|
|
26181
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_payment'] = PropTypes.exact({
|
|
26182
|
-
date: PropTypes.string.isRequired,
|
|
26183
|
-
description: PropTypes.string.isRequired,
|
|
26184
|
-
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
26185
|
-
billing_address: T['io.flow.common.v0.models.billing_address'],
|
|
26186
|
-
});
|
|
26187
|
-
|
|
26188
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'] = PropTypes.exact({
|
|
26189
|
-
rate: PropTypes.number.isRequired,
|
|
26190
|
-
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
26191
|
-
});
|
|
26192
|
-
|
|
26193
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping'] = PropTypes.exact({
|
|
26194
|
-
discriminator: PropTypes.oneOf(['shipping']).isRequired,
|
|
26195
|
-
price: T['io.flow.common.v0.models.price'].isRequired,
|
|
26196
|
-
discount: T['io.flow.common.v0.models.price'],
|
|
26197
|
-
tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
26198
|
-
duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
26199
|
-
});
|
|
26200
|
-
|
|
26201
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item'] = PropTypes.exact({
|
|
26202
|
-
discriminator: PropTypes.oneOf(['item']).isRequired,
|
|
26203
|
-
item: T['io.flow.common.v0.models.item_reference'].isRequired,
|
|
26204
|
-
description: PropTypes.string.isRequired,
|
|
26205
|
-
quantity: PropTypes.number.isRequired,
|
|
26206
|
-
unit_price: T['io.flow.common.v0.models.price'].isRequired,
|
|
26207
|
-
unit_discount: T['io.flow.common.v0.models.price'],
|
|
26208
|
-
unit_tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
26209
|
-
unit_duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
26210
|
-
});
|
|
26211
|
-
|
|
26212
|
-
T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line'] = PropTypes.oneOfType([
|
|
26213
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item'],
|
|
26214
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'],
|
|
26215
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping'],
|
|
26216
|
-
]);
|
|
26217
|
-
|
|
26218
|
-
T['io.flow.consumer.invoice.v0.models.credit_memo'] = PropTypes.exact({
|
|
26219
|
-
id: PropTypes.string.isRequired,
|
|
26220
|
-
number: PropTypes.string,
|
|
26221
|
-
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
26222
|
-
date: PropTypes.string.isRequired,
|
|
26223
|
-
key: PropTypes.string.isRequired,
|
|
26224
|
-
invoice: T['io.flow.consumer.invoice.v0.models.consumer_invoice_reference'].isRequired,
|
|
26225
|
-
entity: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
26226
|
-
payments: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_payment']).isRequired,
|
|
26227
|
-
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
26228
|
-
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
26229
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
26230
|
-
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
26231
|
-
});
|
|
26232
|
-
|
|
26233
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice'] = PropTypes.exact({
|
|
26234
|
-
id: PropTypes.string.isRequired,
|
|
26235
|
-
number: PropTypes.string.isRequired,
|
|
26236
|
-
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
26237
|
-
date: PropTypes.string.isRequired,
|
|
26238
|
-
key: PropTypes.string.isRequired,
|
|
26239
|
-
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'].isRequired,
|
|
26240
|
-
entity: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
26241
|
-
payments: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_payment']).isRequired,
|
|
26242
|
-
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
26243
|
-
destination: T['io.flow.experience.v0.models.order_address'].isRequired,
|
|
26244
|
-
billing_address: T['io.flow.common.v0.models.billing_address'],
|
|
26245
|
-
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
26246
|
-
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
26247
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
26248
|
-
tax_registration: T['io.flow.harmonization.v0.models.tax_registration'],
|
|
26249
|
-
customer_type: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_customer_type'],
|
|
26250
|
-
estimated_delivery_date: PropTypes.string,
|
|
26251
|
-
});
|
|
26252
|
-
|
|
26253
|
-
T['io.flow.consumer.invoice.v0.models.b2b_invoice'] = PropTypes.exact({
|
|
26254
|
-
id: PropTypes.string.isRequired,
|
|
26255
|
-
number: PropTypes.string.isRequired,
|
|
26256
|
-
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
26257
|
-
seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
26258
|
-
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
26259
|
-
date: PropTypes.string.isRequired,
|
|
26260
|
-
key: PropTypes.string.isRequired,
|
|
26261
|
-
order: T['io.flow.consumer.invoice.v0.models.consumer_invoice_order_summary'].isRequired,
|
|
26262
|
-
economic_title_location: T['io.flow.merchant.of.record.v0.enums.economic_title_location'].isRequired,
|
|
26263
|
-
center: T['io.flow.consumer.invoice.v0.models.consumer_invoice_center_reference'],
|
|
26264
|
-
destination: T['io.flow.experience.v0.models.order_address'],
|
|
26265
|
-
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
26266
|
-
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
26267
|
-
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
26268
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
26269
|
-
estimated_delivery_date: PropTypes.string,
|
|
26270
|
-
b2b_invoice_type: T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'].isRequired,
|
|
26271
|
-
});
|
|
26272
|
-
|
|
26273
|
-
T['io.flow.consumer.invoice.v0.models.b2b_credit_memo'] = PropTypes.exact({
|
|
26274
|
-
id: PropTypes.string.isRequired,
|
|
26275
|
-
number: PropTypes.string.isRequired,
|
|
26276
|
-
buyer: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
26277
|
-
seller: T['io.flow.common.v0.models.merchant_of_record_entity'].isRequired,
|
|
26278
|
-
status: T['io.flow.consumer.invoice.v0.enums.consumer_invoice_status'].isRequired,
|
|
26279
|
-
date: PropTypes.string.isRequired,
|
|
26280
|
-
key: PropTypes.string.isRequired,
|
|
26281
|
-
invoice: T['io.flow.consumer.invoice.v0.models.b2b_invoice_reference'].isRequired,
|
|
26282
|
-
lines: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line']).isRequired,
|
|
26283
|
-
documents: PropTypes.arrayOf(T['io.flow.consumer.invoice.v0.models.consumer_invoice_document']).isRequired,
|
|
26284
|
-
attributes: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
26285
|
-
b2b_invoice_type: T['io.flow.consumer.invoice.v0.enums.b2b_invoice_type'].isRequired,
|
|
26286
|
-
});
|
|
26287
|
-
|
|
26288
|
-
T['io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_line_detail'] = PropTypes.exact({
|
|
26289
|
-
discriminator: PropTypes.string.isRequired,
|
|
26290
|
-
item_number: PropTypes.string,
|
|
26291
|
-
quantity: PropTypes.number.isRequired,
|
|
26292
|
-
unit_price: T['io.flow.common.v0.models.price'].isRequired,
|
|
26293
|
-
unit_discount: T['io.flow.common.v0.models.price'],
|
|
26294
|
-
unit_tax: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
26295
|
-
unit_duty: T['io.flow.consumer.invoice.v0.models.consumer_invoice_levy'],
|
|
26296
|
-
});
|
|
26297
|
-
|
|
26298
|
-
T['io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_line'] = PropTypes.exact({
|
|
26299
|
-
invoice: T['io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_summary'].isRequired,
|
|
26300
|
-
order: T['io.flow.billing.internal.v0.models.billing_order_summary'].isRequired,
|
|
26301
|
-
line: T['io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_line_detail'].isRequired,
|
|
26302
|
-
});
|
|
26303
|
-
|
|
26304
|
-
T['io.flow.billing.csv.v0.models.billing_csv_consumer_invoice'] = PropTypes.exact({
|
|
26305
|
-
invoice: T['io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_summary'].isRequired,
|
|
26306
|
-
order: T['io.flow.billing.internal.v0.models.billing_order_summary'].isRequired,
|
|
26307
|
-
|
|
26308
|
-
lines: PropTypes.arrayOf(
|
|
26309
|
-
T['io.flow.billing.csv.v0.models.billing_csv_consumer_invoice_line_detail'],
|
|
26310
|
-
).isRequired,
|
|
26311
|
-
});
|
|
26312
|
-
|
|
26313
26278
|
T['io.flow.payment.v0.models.virtual_card'] = PropTypes.exact({
|
|
26314
26279
|
id: PropTypes.string.isRequired,
|
|
26315
26280
|
key: PropTypes.string.isRequired,
|
|
@@ -26454,6 +26419,23 @@ T['io.flow.return.v0.models.return_version'] = PropTypes.exact({
|
|
|
26454
26419
|
'return': T['io.flow.return.v0.models.return'].isRequired,
|
|
26455
26420
|
});
|
|
26456
26421
|
|
|
26422
|
+
T['io.flow.internal.v0.models.thiago_item_form'] = PropTypes.exact({
|
|
26423
|
+
number: PropTypes.string.isRequired,
|
|
26424
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26425
|
+
description: PropTypes.string,
|
|
26426
|
+
type: T['io.flow.internal.v0.enums.thiago_item_type'].isRequired,
|
|
26427
|
+
added_on: PropTypes.string.isRequired,
|
|
26428
|
+
});
|
|
26429
|
+
|
|
26430
|
+
T['io.flow.internal.v0.models.thiago_item'] = PropTypes.exact({
|
|
26431
|
+
id: PropTypes.string.isRequired,
|
|
26432
|
+
number: PropTypes.string.isRequired,
|
|
26433
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26434
|
+
description: PropTypes.string,
|
|
26435
|
+
type: T['io.flow.internal.v0.enums.thiago_item_type'].isRequired,
|
|
26436
|
+
added_on: PropTypes.string.isRequired,
|
|
26437
|
+
});
|
|
26438
|
+
|
|
26457
26439
|
T['io.flow.internal.v0.models.tam_item_form'] = PropTypes.exact({
|
|
26458
26440
|
number: PropTypes.string.isRequired,
|
|
26459
26441
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -26584,6 +26566,54 @@ T['io.flow.internal.v0.models.order_revenue_region_chart'] = PropTypes.exact({
|
|
|
26584
26566
|
data: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_revenue_region_data_point']).isRequired,
|
|
26585
26567
|
});
|
|
26586
26568
|
|
|
26569
|
+
T['io.flow.internal.v0.models.miljenko_item_form'] = PropTypes.exact({
|
|
26570
|
+
number: PropTypes.string.isRequired,
|
|
26571
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26572
|
+
description: PropTypes.string,
|
|
26573
|
+
type: T['io.flow.internal.v0.enums.miljenko_item_type'].isRequired,
|
|
26574
|
+
added_on: PropTypes.string.isRequired,
|
|
26575
|
+
});
|
|
26576
|
+
|
|
26577
|
+
T['io.flow.internal.v0.models.miljenko_item'] = PropTypes.exact({
|
|
26578
|
+
id: PropTypes.string.isRequired,
|
|
26579
|
+
number: PropTypes.string.isRequired,
|
|
26580
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26581
|
+
description: PropTypes.string,
|
|
26582
|
+
type: T['io.flow.internal.v0.enums.miljenko_item_type'].isRequired,
|
|
26583
|
+
added_on: PropTypes.string.isRequired,
|
|
26584
|
+
});
|
|
26585
|
+
|
|
26586
|
+
T['io.flow.internal.v0.models.miljenko_item_upserted'] = PropTypes.exact({
|
|
26587
|
+
discriminator: PropTypes.oneOf(['miljenko_item_upserted']).isRequired,
|
|
26588
|
+
event_id: PropTypes.string.isRequired,
|
|
26589
|
+
timestamp: PropTypes.string.isRequired,
|
|
26590
|
+
item: T['io.flow.internal.v0.models.miljenko_item'].isRequired,
|
|
26591
|
+
});
|
|
26592
|
+
|
|
26593
|
+
T['io.flow.internal.v0.models.michaelyan_item_form'] = PropTypes.exact({
|
|
26594
|
+
number: PropTypes.string.isRequired,
|
|
26595
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26596
|
+
description: PropTypes.string,
|
|
26597
|
+
type: T['io.flow.internal.v0.enums.michaelyan_item_type'].isRequired,
|
|
26598
|
+
added_on: PropTypes.string.isRequired,
|
|
26599
|
+
});
|
|
26600
|
+
|
|
26601
|
+
T['io.flow.internal.v0.models.michaelyan_item'] = PropTypes.exact({
|
|
26602
|
+
id: PropTypes.string.isRequired,
|
|
26603
|
+
number: PropTypes.string.isRequired,
|
|
26604
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26605
|
+
description: PropTypes.string,
|
|
26606
|
+
type: T['io.flow.internal.v0.enums.michaelyan_item_type'].isRequired,
|
|
26607
|
+
added_on: PropTypes.string.isRequired,
|
|
26608
|
+
});
|
|
26609
|
+
|
|
26610
|
+
T['io.flow.internal.v0.models.michaelyan_item_upserted'] = PropTypes.exact({
|
|
26611
|
+
discriminator: PropTypes.oneOf(['michaelyan_item_upserted']).isRequired,
|
|
26612
|
+
event_id: PropTypes.string.isRequired,
|
|
26613
|
+
timestamp: PropTypes.string.isRequired,
|
|
26614
|
+
item: T['io.flow.internal.v0.models.michaelyan_item'].isRequired,
|
|
26615
|
+
});
|
|
26616
|
+
|
|
26587
26617
|
T['io.flow.internal.v0.models.matias_item_form'] = PropTypes.exact({
|
|
26588
26618
|
number: PropTypes.string.isRequired,
|
|
26589
26619
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -26608,12 +26638,60 @@ T['io.flow.internal.v0.models.matias_item_upserted'] = PropTypes.exact({
|
|
|
26608
26638
|
item: T['io.flow.internal.v0.models.matias_item'].isRequired,
|
|
26609
26639
|
});
|
|
26610
26640
|
|
|
26641
|
+
T['io.flow.internal.v0.models.konstantin_item_form'] = PropTypes.exact({
|
|
26642
|
+
number: PropTypes.string.isRequired,
|
|
26643
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26644
|
+
description: PropTypes.string,
|
|
26645
|
+
type: T['io.flow.internal.v0.enums.konstantin_item_type'].isRequired,
|
|
26646
|
+
added_on: PropTypes.string.isRequired,
|
|
26647
|
+
});
|
|
26648
|
+
|
|
26649
|
+
T['io.flow.internal.v0.models.konstantin_item'] = PropTypes.exact({
|
|
26650
|
+
id: PropTypes.string.isRequired,
|
|
26651
|
+
number: PropTypes.string.isRequired,
|
|
26652
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26653
|
+
description: PropTypes.string,
|
|
26654
|
+
type: T['io.flow.internal.v0.enums.konstantin_item_type'].isRequired,
|
|
26655
|
+
added_on: PropTypes.string.isRequired,
|
|
26656
|
+
});
|
|
26657
|
+
|
|
26658
|
+
T['io.flow.internal.v0.models.konstantin_item_upserted'] = PropTypes.exact({
|
|
26659
|
+
discriminator: PropTypes.oneOf(['konstantin_item_upserted']).isRequired,
|
|
26660
|
+
event_id: PropTypes.string.isRequired,
|
|
26661
|
+
timestamp: PropTypes.string.isRequired,
|
|
26662
|
+
item: T['io.flow.internal.v0.models.konstantin_item'].isRequired,
|
|
26663
|
+
});
|
|
26664
|
+
|
|
26611
26665
|
T['io.flow.internal.v0.models.invoice_line'] = PropTypes.exact({
|
|
26612
26666
|
id: PropTypes.string.isRequired,
|
|
26613
26667
|
description: PropTypes.string.isRequired,
|
|
26614
26668
|
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
26615
26669
|
});
|
|
26616
26670
|
|
|
26671
|
+
T['io.flow.internal.v0.models.harinath_item_form'] = PropTypes.exact({
|
|
26672
|
+
number: PropTypes.string.isRequired,
|
|
26673
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26674
|
+
description: PropTypes.string,
|
|
26675
|
+
type: T['io.flow.internal.v0.enums.harinath_item_type'].isRequired,
|
|
26676
|
+
added_on: PropTypes.string.isRequired,
|
|
26677
|
+
});
|
|
26678
|
+
|
|
26679
|
+
T['io.flow.internal.v0.models.harinath_item'] = PropTypes.exact({
|
|
26680
|
+
id: PropTypes.string.isRequired,
|
|
26681
|
+
number: PropTypes.string.isRequired,
|
|
26682
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
26683
|
+
description: PropTypes.string,
|
|
26684
|
+
type: T['io.flow.internal.v0.enums.harinath_item_type'].isRequired,
|
|
26685
|
+
added_on: PropTypes.string.isRequired,
|
|
26686
|
+
});
|
|
26687
|
+
|
|
26688
|
+
T['io.flow.internal.v0.models.harinath_item_upserted'] = PropTypes.exact({
|
|
26689
|
+
discriminator: PropTypes.oneOf(['harinath_item_upserted']).isRequired,
|
|
26690
|
+
event_id: PropTypes.string.isRequired,
|
|
26691
|
+
timestamp: PropTypes.string.isRequired,
|
|
26692
|
+
item: T['io.flow.internal.v0.models.harinath_item'].isRequired,
|
|
26693
|
+
});
|
|
26694
|
+
|
|
26617
26695
|
T['io.flow.internal.v0.models.gift_card'] = PropTypes.exact({
|
|
26618
26696
|
id: PropTypes.string.isRequired,
|
|
26619
26697
|
number: PropTypes.string.isRequired,
|
|
@@ -27866,6 +27944,18 @@ T['io.flow.internal.v0.models.account_upserted'] = PropTypes.exact({
|
|
|
27866
27944
|
|
|
27867
27945
|
T['io.flow.internal.v0.enums.account_type'] = PropTypes.oneOf(['channel', 'organization']);
|
|
27868
27946
|
|
|
27947
|
+
T['io.flow.internal.v0.models.other_record_account_source_summary'] = PropTypes.exact({
|
|
27948
|
+
id: PropTypes.string.isRequired,
|
|
27949
|
+
type: T['io.flow.internal.v0.enums.account_type'].isRequired,
|
|
27950
|
+
});
|
|
27951
|
+
|
|
27952
|
+
T['io.flow.internal.v0.models.other_record_account'] = PropTypes.exact({
|
|
27953
|
+
id: PropTypes.string.isRequired,
|
|
27954
|
+
merchant: T['io.flow.internal.v0.models.other_record_merchant_reference'],
|
|
27955
|
+
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
27956
|
+
source: T['io.flow.internal.v0.models.other_record_account_source_summary'].isRequired,
|
|
27957
|
+
});
|
|
27958
|
+
|
|
27869
27959
|
T['io.flow.internal.v0.models.account_source'] = PropTypes.exact({
|
|
27870
27960
|
id: PropTypes.string.isRequired,
|
|
27871
27961
|
type: T['io.flow.internal.v0.enums.account_type'].isRequired,
|
|
@@ -27976,6 +28066,7 @@ T['io.flow.internal.v0.models.return'] = PropTypes.exact({
|
|
|
27976
28066
|
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
27977
28067
|
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
27978
28068
|
remittance: T['io.flow.internal.v0.models.remittance_responsibility'].isRequired,
|
|
28069
|
+
payment: T['io.flow.internal.v0.models.payment_summary'],
|
|
27979
28070
|
sequence_number: PropTypes.number.isRequired,
|
|
27980
28071
|
posting_cutoff: PropTypes.string.isRequired,
|
|
27981
28072
|
trigger: T['io.flow.internal.v0.unions.return_trigger'].isRequired,
|
|
@@ -27994,11 +28085,11 @@ T['io.flow.internal.v0.models.reporting_fulfillment'] = PropTypes.exact({
|
|
|
27994
28085
|
sequence_number: PropTypes.number.isRequired,
|
|
27995
28086
|
fulfilled_at: PropTypes.string.isRequired,
|
|
27996
28087
|
completes_order: PropTypes.bool.isRequired,
|
|
27997
|
-
payment: T['io.flow.internal.v0.models.reporting_payment'].isRequired,
|
|
27998
28088
|
refund: T['io.flow.internal.v0.models.reporting_refund_reference'],
|
|
27999
28089
|
value: T['io.flow.internal.v0.models.fulfillment_shopper_breakdown'].isRequired,
|
|
28000
28090
|
dispatch_country: T['io.flow.internal.v0.models.reporting_country'],
|
|
28001
28091
|
destination: T['io.flow.internal.v0.models.reporting_destination'],
|
|
28092
|
+
payment: T['io.flow.internal.v0.models.reporting_payment'],
|
|
28002
28093
|
shipment: T['io.flow.internal.v0.models.reporting_shipment'],
|
|
28003
28094
|
is: T['io.flow.internal.v0.models.reporting_fulfillment_is'].isRequired,
|
|
28004
28095
|
has: T['io.flow.internal.v0.models.reporting_fulfillment_has'].isRequired,
|
|
@@ -28037,6 +28128,7 @@ T['io.flow.internal.v0.models.pending_order'] = PropTypes.exact({
|
|
|
28037
28128
|
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
28038
28129
|
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
28039
28130
|
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
28131
|
+
payment: T['io.flow.internal.v0.models.payment_summary'],
|
|
28040
28132
|
remittance: T['io.flow.internal.v0.models.remittance_responsibility'].isRequired,
|
|
28041
28133
|
sequence_number: PropTypes.number.isRequired,
|
|
28042
28134
|
posting_cutoff: PropTypes.string.isRequired,
|
|
@@ -28047,6 +28139,7 @@ T['io.flow.internal.v0.models.fulfillment'] = PropTypes.exact({
|
|
|
28047
28139
|
order: T['io.flow.internal.v0.models.order_summary'].isRequired,
|
|
28048
28140
|
shopper: T['io.flow.internal.v0.models.shopper_summary'].isRequired,
|
|
28049
28141
|
remittance: T['io.flow.internal.v0.models.remittance_responsibility'].isRequired,
|
|
28142
|
+
payment: T['io.flow.internal.v0.models.payment_summary'],
|
|
28050
28143
|
merchant: T['io.flow.internal.v0.models.merchant_summary'].isRequired,
|
|
28051
28144
|
sequence_number: PropTypes.number.isRequired,
|
|
28052
28145
|
posting_cutoff: PropTypes.string.isRequired,
|
|
@@ -28181,7 +28274,7 @@ T['io.flow.internal.v0.models.account_processing_rates_form'] = PropTypes.exact(
|
|
|
28181
28274
|
processing_rates: PropTypes.arrayOf(T['io.flow.internal.v0.models.account_processing_rate_form']).isRequired,
|
|
28182
28275
|
});
|
|
28183
28276
|
|
|
28184
|
-
T['io.flow.internal.v0.enums.account_payment_hold_reason'] = PropTypes.oneOf(['fraudulent', 'invalid_bank_account']);
|
|
28277
|
+
T['io.flow.internal.v0.enums.account_payment_hold_reason'] = PropTypes.oneOf(['fraudulent', 'frozen', 'invalid_bank_account']);
|
|
28185
28278
|
|
|
28186
28279
|
T['io.flow.internal.v0.models.account_payment_hold_form'] = PropTypes.exact({
|
|
28187
28280
|
account_id: PropTypes.string.isRequired,
|
|
@@ -28433,6 +28526,32 @@ T['io.flow.internal.v0.models.processing_transaction_deleted'] = PropTypes.exact
|
|
|
28433
28526
|
processing_transaction: T['io.flow.internal.v0.models.processing_transaction'].isRequired,
|
|
28434
28527
|
});
|
|
28435
28528
|
|
|
28529
|
+
T['io.flow.internal.v0.models.other_record'] = PropTypes.exact({
|
|
28530
|
+
id: PropTypes.string.isRequired,
|
|
28531
|
+
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
28532
|
+
account: T['io.flow.internal.v0.models.other_record_account'].isRequired,
|
|
28533
|
+
metadata: T['io.flow.internal.v0.models.other_record_metadata'],
|
|
28534
|
+
order: T['io.flow.internal.v0.models.other_record_order_summary'],
|
|
28535
|
+
currency: PropTypes.string.isRequired,
|
|
28536
|
+
source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
|
|
28537
|
+
parent: T['io.flow.billing.v0.models.parent_transaction_summary'],
|
|
28538
|
+
gross: PropTypes.number.isRequired,
|
|
28539
|
+
fees: T['io.flow.internal.v0.models.other_record_fees'].isRequired,
|
|
28540
|
+
withholdings: T['io.flow.internal.v0.models.other_record_withholdings'].isRequired,
|
|
28541
|
+
discount: T['io.flow.internal.v0.models.other_record_discount'].isRequired,
|
|
28542
|
+
net: PropTypes.number.isRequired,
|
|
28543
|
+
identifiers: T['io.flow.internal.v0.models.other_record_identifiers'].isRequired,
|
|
28544
|
+
created_at: PropTypes.string.isRequired,
|
|
28545
|
+
updated_at: PropTypes.string.isRequired,
|
|
28546
|
+
});
|
|
28547
|
+
|
|
28548
|
+
T['io.flow.internal.v0.models.other_record_upserted'] = PropTypes.exact({
|
|
28549
|
+
discriminator: PropTypes.oneOf(['other_record_upserted']).isRequired,
|
|
28550
|
+
event_id: PropTypes.string.isRequired,
|
|
28551
|
+
timestamp: PropTypes.string.isRequired,
|
|
28552
|
+
other_record: T['io.flow.internal.v0.models.other_record'].isRequired,
|
|
28553
|
+
});
|
|
28554
|
+
|
|
28436
28555
|
T['io.flow.internal.v0.models.order_transaction'] = PropTypes.exact({
|
|
28437
28556
|
discriminator: PropTypes.oneOf(['order_transaction']).isRequired,
|
|
28438
28557
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
@@ -28660,6 +28779,32 @@ T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
|
|
|
28660
28779
|
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
28661
28780
|
});
|
|
28662
28781
|
|
|
28782
|
+
T['io.flow.internal.v0.models.csv_transaction'] = PropTypes.exact({
|
|
28783
|
+
id: PropTypes.string.isRequired,
|
|
28784
|
+
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
28785
|
+
account: T['io.flow.internal.v0.models.other_record_account'].isRequired,
|
|
28786
|
+
metadata: T['io.flow.internal.v0.models.other_record_metadata'],
|
|
28787
|
+
order: T['io.flow.internal.v0.models.other_record_order_summary'],
|
|
28788
|
+
currency: PropTypes.string.isRequired,
|
|
28789
|
+
source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
|
|
28790
|
+
parent: T['io.flow.billing.v0.models.parent_transaction_summary'],
|
|
28791
|
+
gross: PropTypes.number.isRequired,
|
|
28792
|
+
fees: T['io.flow.internal.v0.models.other_record_fees'].isRequired,
|
|
28793
|
+
withholdings: T['io.flow.internal.v0.models.other_record_withholdings'].isRequired,
|
|
28794
|
+
discount: T['io.flow.internal.v0.models.other_record_discount'].isRequired,
|
|
28795
|
+
net: PropTypes.number.isRequired,
|
|
28796
|
+
identifiers: T['io.flow.internal.v0.models.other_record_identifiers'].isRequired,
|
|
28797
|
+
created_at: PropTypes.string.isRequired,
|
|
28798
|
+
updated_at: PropTypes.string.isRequired,
|
|
28799
|
+
});
|
|
28800
|
+
|
|
28801
|
+
T['io.flow.internal.v0.models.billing_csv_transaction_upserted'] = PropTypes.exact({
|
|
28802
|
+
discriminator: PropTypes.oneOf(['billing_csv_transaction_upserted']).isRequired,
|
|
28803
|
+
event_id: PropTypes.string.isRequired,
|
|
28804
|
+
timestamp: PropTypes.string.isRequired,
|
|
28805
|
+
transaction: T['io.flow.internal.v0.models.csv_transaction'].isRequired,
|
|
28806
|
+
});
|
|
28807
|
+
|
|
28663
28808
|
T['io.flow.internal.v0.models.account_orders_export_request'] = PropTypes.exact({
|
|
28664
28809
|
discriminator: PropTypes.oneOf(['account_orders_export_request']).isRequired,
|
|
28665
28810
|
event_id: PropTypes.string.isRequired,
|
|
@@ -28842,38 +28987,32 @@ T['io.flow.internal.v0.models.fraud_review_decision'] = PropTypes.exact({
|
|
|
28842
28987
|
updated_by_user: T['io.flow.common.v0.models.user_reference'],
|
|
28843
28988
|
});
|
|
28844
28989
|
|
|
28845
|
-
T['io.flow.internal.v0.models.
|
|
28846
|
-
discriminator: PropTypes.oneOf(['
|
|
28847
|
-
|
|
28848
|
-
|
|
28849
|
-
|
|
28990
|
+
T['io.flow.internal.v0.models.fraud_review_decision_upserted'] = PropTypes.exact({
|
|
28991
|
+
discriminator: PropTypes.oneOf(['fraud_review_decision_upserted']).isRequired,
|
|
28992
|
+
event_id: PropTypes.string.isRequired,
|
|
28993
|
+
timestamp: PropTypes.string.isRequired,
|
|
28994
|
+
organization: PropTypes.string.isRequired,
|
|
28995
|
+
id: PropTypes.string.isRequired,
|
|
28996
|
+
fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'].isRequired,
|
|
28850
28997
|
});
|
|
28851
28998
|
|
|
28852
|
-
T['io.flow.internal.v0.
|
|
28853
|
-
|
|
28854
|
-
|
|
28855
|
-
]
|
|
28856
|
-
|
|
28857
|
-
T['io.flow.
|
|
28858
|
-
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
28859
|
-
status: T['io.flow.experience.v0.enums.order_status'].isRequired,
|
|
28860
|
-
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.unions.transaction_summary']).isRequired,
|
|
28861
|
-
trackings: PropTypes.arrayOf(T['io.flow.internal.v0.models.search_tracking_summary']).isRequired,
|
|
28862
|
-
returns: PropTypes.arrayOf(T['io.flow.internal.v0.models.return_summary']).isRequired,
|
|
28863
|
-
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_note']).isRequired,
|
|
28864
|
-
submitted_at: PropTypes.string,
|
|
28999
|
+
T['io.flow.internal.v0.models.fraud_review_authorization_decision'] = PropTypes.exact({
|
|
29000
|
+
id: PropTypes.string.isRequired,
|
|
29001
|
+
fraud_review_authorization_id: PropTypes.string.isRequired,
|
|
29002
|
+
order: T['io.flow.experience.v0.models.order_reference'].isRequired,
|
|
29003
|
+
fraud_order_reference: T['io.flow.fraud.v0.unions.fraud_order_reference'],
|
|
29004
|
+
status: T['io.flow.fraud.v0.enums.fraud_status'].isRequired,
|
|
28865
29005
|
created_at: PropTypes.string.isRequired,
|
|
28866
|
-
|
|
28867
|
-
|
|
29006
|
+
liability: T['io.flow.fraud.v0.enums.fraud_liability'],
|
|
29007
|
+
updated_by_user: T['io.flow.common.v0.models.user_reference'],
|
|
28868
29008
|
});
|
|
28869
29009
|
|
|
28870
|
-
T['io.flow.internal.v0.models.
|
|
28871
|
-
discriminator: PropTypes.oneOf(['
|
|
29010
|
+
T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = PropTypes.exact({
|
|
29011
|
+
discriminator: PropTypes.oneOf(['fraud_review_authorization_decision_upserted']).isRequired,
|
|
28872
29012
|
event_id: PropTypes.string.isRequired,
|
|
28873
29013
|
timestamp: PropTypes.string.isRequired,
|
|
28874
29014
|
organization: PropTypes.string.isRequired,
|
|
28875
|
-
|
|
28876
|
-
fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'].isRequired,
|
|
29015
|
+
fraud_review_authorization_decision: T['io.flow.internal.v0.models.fraud_review_authorization_decision'].isRequired,
|
|
28877
29016
|
});
|
|
28878
29017
|
|
|
28879
29018
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
@@ -28939,6 +29078,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
28939
29078
|
T['io.flow.internal.v0.models.sales_record_deleted'],
|
|
28940
29079
|
T['io.flow.internal.v0.models.revenue_record_upserted'],
|
|
28941
29080
|
T['io.flow.internal.v0.models.revenue_record_deleted'],
|
|
29081
|
+
T['io.flow.internal.v0.models.other_record_upserted'],
|
|
29082
|
+
T['io.flow.internal.v0.models.other_record_deleted'],
|
|
28942
29083
|
T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
|
|
28943
29084
|
T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
|
|
28944
29085
|
T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
|
|
@@ -29001,14 +29142,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29001
29142
|
T['io.flow.internal.v0.models.experience_import_request'],
|
|
29002
29143
|
T['io.flow.internal.v0.models.submitted_order_upserted'],
|
|
29003
29144
|
T['io.flow.internal.v0.models.levy_rate_summary_upserted'],
|
|
29004
|
-
T['io.flow.internal.v0.models.experiment_upserted'],
|
|
29005
|
-
T['io.flow.internal.v0.models.experiment_deleted'],
|
|
29006
|
-
T['io.flow.internal.v0.models.experiment_results_upserted'],
|
|
29007
|
-
T['io.flow.internal.v0.models.experiment_results_deleted'],
|
|
29008
|
-
T['io.flow.internal.v0.models.daily_experiment_results_upserted'],
|
|
29009
|
-
T['io.flow.internal.v0.models.daily_experiment_results_deleted'],
|
|
29010
|
-
T['io.flow.internal.v0.models.experiment_milestone_upserted'],
|
|
29011
|
-
T['io.flow.internal.v0.models.experiment_milestone_deleted'],
|
|
29012
29145
|
T['io.flow.internal.v0.models.export_completed'],
|
|
29013
29146
|
T['io.flow.internal.v0.models.export_failed'],
|
|
29014
29147
|
T['io.flow.internal.v0.models.feature_upserted'],
|
|
@@ -29043,6 +29176,12 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29043
29176
|
T['io.flow.internal.v0.models.fraud_pending_review_deleted'],
|
|
29044
29177
|
T['io.flow.internal.v0.models.fraud_review_decision_upserted'],
|
|
29045
29178
|
T['io.flow.internal.v0.models.fraud_review_decision_deleted'],
|
|
29179
|
+
T['io.flow.internal.v0.models.fraud_review_authorization_upserted'],
|
|
29180
|
+
T['io.flow.internal.v0.models.fraud_review_authorization_deleted'],
|
|
29181
|
+
T['io.flow.internal.v0.models.fraud_pending_review_authorization_upserted'],
|
|
29182
|
+
T['io.flow.internal.v0.models.fraud_pending_review_authorization_deleted'],
|
|
29183
|
+
T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'],
|
|
29184
|
+
T['io.flow.internal.v0.models.fraud_review_authorization_decision_deleted'],
|
|
29046
29185
|
T['io.flow.internal.v0.models.fraud_provider_configuration_upserted'],
|
|
29047
29186
|
T['io.flow.internal.v0.models.fraud_provider_configuration_deleted'],
|
|
29048
29187
|
T['io.flow.internal.v0.models.manual_review_rule_upserted'],
|
|
@@ -29120,6 +29259,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29120
29259
|
T['io.flow.internal.v0.models.organization_deactivation_deleted'],
|
|
29121
29260
|
T['io.flow.internal.v0.models.merchant_guid_assignment_upserted'],
|
|
29122
29261
|
T['io.flow.internal.v0.models.merchant_guid_assignment_deleted'],
|
|
29262
|
+
T['io.flow.internal.v0.models.organization_metadata_upserted'],
|
|
29263
|
+
T['io.flow.internal.v0.models.organization_metadata_deleted'],
|
|
29123
29264
|
T['io.flow.internal.v0.models.partner_organization_settings_upserted'],
|
|
29124
29265
|
T['io.flow.internal.v0.models.partner_organization_settings_deleted'],
|
|
29125
29266
|
T['io.flow.internal.v0.models.unassigned_merchant_guid_upserted'],
|
|
@@ -29195,6 +29336,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29195
29336
|
T['io.flow.internal.v0.models.channel_order_summary_deleted'],
|
|
29196
29337
|
T['io.flow.internal.v0.models.channel_organization_identifier_upserted'],
|
|
29197
29338
|
T['io.flow.internal.v0.models.channel_organization_identifier_deleted'],
|
|
29339
|
+
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted'],
|
|
29340
|
+
T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'],
|
|
29198
29341
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
29199
29342
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
29200
29343
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
@@ -29213,8 +29356,16 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29213
29356
|
T['io.flow.internal.v0.models.svitlana_item_deleted'],
|
|
29214
29357
|
T['io.flow.internal.v0.models.colm_item_upserted'],
|
|
29215
29358
|
T['io.flow.internal.v0.models.colm_item_deleted'],
|
|
29359
|
+
T['io.flow.internal.v0.models.harinath_item_upserted'],
|
|
29360
|
+
T['io.flow.internal.v0.models.harinath_item_deleted'],
|
|
29361
|
+
T['io.flow.internal.v0.models.konstantin_item_upserted'],
|
|
29362
|
+
T['io.flow.internal.v0.models.konstantin_item_deleted'],
|
|
29216
29363
|
T['io.flow.internal.v0.models.matias_item_upserted'],
|
|
29217
29364
|
T['io.flow.internal.v0.models.matias_item_deleted'],
|
|
29365
|
+
T['io.flow.internal.v0.models.michaelyan_item_upserted'],
|
|
29366
|
+
T['io.flow.internal.v0.models.michaelyan_item_deleted'],
|
|
29367
|
+
T['io.flow.internal.v0.models.miljenko_item_upserted'],
|
|
29368
|
+
T['io.flow.internal.v0.models.miljenko_item_deleted'],
|
|
29218
29369
|
T['io.flow.internal.v0.models.shruti_demo_item_upserted'],
|
|
29219
29370
|
T['io.flow.internal.v0.models.shruti_demo_item_deleted'],
|
|
29220
29371
|
T['io.flow.internal.v0.models.tam_item_upserted'],
|
|
@@ -29227,12 +29378,46 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29227
29378
|
T['io.flow.internal.v0.models.tracking_label_deleted'],
|
|
29228
29379
|
T['io.flow.internal.v0.models.tracking_upserted'],
|
|
29229
29380
|
T['io.flow.internal.v0.models.tracking_deleted'],
|
|
29381
|
+
T['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'],
|
|
29382
|
+
T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'],
|
|
29230
29383
|
T['io.flow.internal.v0.models.tracking_request_upserted'],
|
|
29231
29384
|
T['io.flow.internal.v0.models.tracking_response_upserted'],
|
|
29232
29385
|
T['io.flow.internal.v0.models.user_upserted_v2'],
|
|
29233
29386
|
T['io.flow.internal.v0.models.user_deleted_v2'],
|
|
29234
29387
|
]);
|
|
29235
29388
|
|
|
29389
|
+
T['io.flow.internal.v0.models.fraud_authorization_summary'] = PropTypes.exact({
|
|
29390
|
+
fraud_review_authorization: T['io.flow.internal.v0.models.fraud_review_authorization'].isRequired,
|
|
29391
|
+
fraud_pending_review_authorization: T['io.flow.internal.v0.models.fraud_pending_review_authorization'],
|
|
29392
|
+
fraud_review_authorization_decision: T['io.flow.internal.v0.models.fraud_review_authorization_decision'],
|
|
29393
|
+
});
|
|
29394
|
+
|
|
29395
|
+
T['io.flow.internal.v0.models.fraud_summary'] = PropTypes.exact({
|
|
29396
|
+
discriminator: PropTypes.oneOf(['fraud_summary']).isRequired,
|
|
29397
|
+
fraud_review: T['io.flow.internal.v0.models.fraud_review'].isRequired,
|
|
29398
|
+
fraud_pending_review: T['io.flow.internal.v0.models.fraud_pending_review'],
|
|
29399
|
+
fraud_review_decision: T['io.flow.internal.v0.models.fraud_review_decision'],
|
|
29400
|
+
fraud_review_authorizations: PropTypes.arrayOf(T['io.flow.internal.v0.models.fraud_authorization_summary']),
|
|
29401
|
+
});
|
|
29402
|
+
|
|
29403
|
+
T['io.flow.internal.v0.unions.transaction_summary'] = PropTypes.oneOfType([
|
|
29404
|
+
T['io.flow.internal.v0.models.payment_summary_v2'],
|
|
29405
|
+
T['io.flow.internal.v0.models.fraud_summary'],
|
|
29406
|
+
]);
|
|
29407
|
+
|
|
29408
|
+
T['io.flow.internal.v0.models.order_detail'] = PropTypes.exact({
|
|
29409
|
+
order: T['io.flow.experience.v0.models.order'].isRequired,
|
|
29410
|
+
status: T['io.flow.experience.v0.enums.order_status'].isRequired,
|
|
29411
|
+
transactions: PropTypes.arrayOf(T['io.flow.internal.v0.unions.transaction_summary']).isRequired,
|
|
29412
|
+
trackings: PropTypes.arrayOf(T['io.flow.internal.v0.models.search_tracking_summary']).isRequired,
|
|
29413
|
+
returns: PropTypes.arrayOf(T['io.flow.internal.v0.models.return_summary']).isRequired,
|
|
29414
|
+
notes: PropTypes.arrayOf(T['io.flow.internal.v0.models.order_note']).isRequired,
|
|
29415
|
+
submitted_at: PropTypes.string,
|
|
29416
|
+
created_at: PropTypes.string.isRequired,
|
|
29417
|
+
updated_at: PropTypes.string.isRequired,
|
|
29418
|
+
shopify_order_id: PropTypes.string,
|
|
29419
|
+
});
|
|
29420
|
+
|
|
29236
29421
|
T['io.flow.internal.v0.models.cli_log_entry'] = PropTypes.exact({
|
|
29237
29422
|
id: PropTypes.string.isRequired,
|
|
29238
29423
|
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
@@ -29425,6 +29610,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29425
29610
|
'sales_record_deleted',
|
|
29426
29611
|
'revenue_record_upserted',
|
|
29427
29612
|
'revenue_record_deleted',
|
|
29613
|
+
'other_record_upserted',
|
|
29614
|
+
'other_record_deleted',
|
|
29428
29615
|
'calculator_organization_settings_upserted',
|
|
29429
29616
|
'calculator_organization_settings_deleted',
|
|
29430
29617
|
'carrier_account_upserted_v2',
|
|
@@ -29487,14 +29674,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29487
29674
|
'experience_import_request',
|
|
29488
29675
|
'submitted_order_upserted',
|
|
29489
29676
|
'levy_rate_summary_upserted',
|
|
29490
|
-
'experiment_upserted',
|
|
29491
|
-
'experiment_deleted',
|
|
29492
|
-
'experiment_results_upserted',
|
|
29493
|
-
'experiment_results_deleted',
|
|
29494
|
-
'daily_experiment_results_upserted',
|
|
29495
|
-
'daily_experiment_results_deleted',
|
|
29496
|
-
'experiment_milestone_upserted',
|
|
29497
|
-
'experiment_milestone_deleted',
|
|
29498
29677
|
'export_completed',
|
|
29499
29678
|
'export_failed',
|
|
29500
29679
|
'feature_upserted',
|
|
@@ -29529,6 +29708,12 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29529
29708
|
'fraud_pending_review_deleted',
|
|
29530
29709
|
'fraud_review_decision_upserted',
|
|
29531
29710
|
'fraud_review_decision_deleted',
|
|
29711
|
+
'fraud_review_authorization_upserted',
|
|
29712
|
+
'fraud_review_authorization_deleted',
|
|
29713
|
+
'fraud_pending_review_authorization_upserted',
|
|
29714
|
+
'fraud_pending_review_authorization_deleted',
|
|
29715
|
+
'fraud_review_authorization_decision_upserted',
|
|
29716
|
+
'fraud_review_authorization_decision_deleted',
|
|
29532
29717
|
'fraud_provider_configuration_upserted',
|
|
29533
29718
|
'fraud_provider_configuration_deleted',
|
|
29534
29719
|
'manual_review_rule_upserted',
|
|
@@ -29606,6 +29791,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29606
29791
|
'organization_deactivation_deleted',
|
|
29607
29792
|
'merchant_guid_assignment_upserted',
|
|
29608
29793
|
'merchant_guid_assignment_deleted',
|
|
29794
|
+
'organization_metadata_upserted',
|
|
29795
|
+
'organization_metadata_deleted',
|
|
29609
29796
|
'partner_organization_settings_upserted',
|
|
29610
29797
|
'partner_organization_settings_deleted',
|
|
29611
29798
|
'unassigned_merchant_guid_upserted',
|
|
@@ -29681,6 +29868,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29681
29868
|
'channel_order_summary_deleted',
|
|
29682
29869
|
'channel_organization_identifier_upserted',
|
|
29683
29870
|
'channel_organization_identifier_deleted',
|
|
29871
|
+
'order_tax_and_duty_inclusivity_setting_upserted',
|
|
29872
|
+
'order_tax_and_duty_inclusivity_setting_deleted',
|
|
29684
29873
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
29685
29874
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
29686
29875
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -29699,8 +29888,16 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29699
29888
|
'svitlana_item_deleted',
|
|
29700
29889
|
'colm_item_upserted',
|
|
29701
29890
|
'colm_item_deleted',
|
|
29891
|
+
'harinath_item_upserted',
|
|
29892
|
+
'harinath_item_deleted',
|
|
29893
|
+
'konstantin_item_upserted',
|
|
29894
|
+
'konstantin_item_deleted',
|
|
29702
29895
|
'matias_item_upserted',
|
|
29703
29896
|
'matias_item_deleted',
|
|
29897
|
+
'michaelyan_item_upserted',
|
|
29898
|
+
'michaelyan_item_deleted',
|
|
29899
|
+
'miljenko_item_upserted',
|
|
29900
|
+
'miljenko_item_deleted',
|
|
29704
29901
|
'shruti_demo_item_upserted',
|
|
29705
29902
|
'shruti_demo_item_deleted',
|
|
29706
29903
|
'tam_item_upserted',
|
|
@@ -29713,6 +29910,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
29713
29910
|
'tracking_label_deleted',
|
|
29714
29911
|
'tracking_upserted',
|
|
29715
29912
|
'tracking_deleted',
|
|
29913
|
+
'tracking_assurance_analysis_upserted',
|
|
29914
|
+
'tracking_assurance_analysis_deleted',
|
|
29716
29915
|
'tracking_request_upserted',
|
|
29717
29916
|
'tracking_response_upserted',
|
|
29718
29917
|
'user_upserted_v2',
|
|
@@ -29734,6 +29933,7 @@ T['io.flow.internal.v0.enums.onboarding_state_source'] = PropTypes.oneOf([
|
|
|
29734
29933
|
'unit_test',
|
|
29735
29934
|
'api',
|
|
29736
29935
|
'api_activation',
|
|
29936
|
+
'api_reject',
|
|
29737
29937
|
'audit_auto_activation',
|
|
29738
29938
|
'api_deactivation',
|
|
29739
29939
|
'api_sandbox_setup',
|
|
@@ -29852,7 +30052,6 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
29852
30052
|
]);
|
|
29853
30053
|
|
|
29854
30054
|
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax']);
|
|
29855
|
-
T['io.flow.internal.v0.enums.timeseries_type'] = PropTypes.oneOf(['daily', 'weekly', 'monthly', 'yearly']);
|
|
29856
30055
|
T['io.flow.internal.v0.enums.tracking_integration_type'] = PropTypes.oneOf(['api', 'bulk', 'aftership']);
|
|
29857
30056
|
T['io.flow.internal.v0.enums.trueup_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'trueup']);
|
|
29858
30057
|
|
|
@@ -29910,17 +30109,6 @@ T['io.flow.internal.v0.models.authorization_metadata'] = PropTypes.exact({
|
|
|
29910
30109
|
limit: PropTypes.number,
|
|
29911
30110
|
});
|
|
29912
30111
|
|
|
29913
|
-
T['io.flow.internal.v0.models.backfill'] = PropTypes.exact({
|
|
29914
|
-
days_to_backfill: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
29915
|
-
});
|
|
29916
|
-
|
|
29917
|
-
T['io.flow.internal.v0.models.backfill_form'] = PropTypes.exact({
|
|
29918
|
-
start_date: PropTypes.string.isRequired,
|
|
29919
|
-
end_date: PropTypes.string.isRequired,
|
|
29920
|
-
organization_id: PropTypes.string,
|
|
29921
|
-
experiment_key: PropTypes.string,
|
|
29922
|
-
});
|
|
29923
|
-
|
|
29924
30112
|
T['io.flow.internal.v0.models.bank_payment_form'] = PropTypes.exact({
|
|
29925
30113
|
account_id: PropTypes.string.isRequired,
|
|
29926
30114
|
reference: PropTypes.string,
|
|
@@ -30075,17 +30263,6 @@ T['io.flow.internal.v0.models.customs_description_statistics'] = PropTypes.exact
|
|
|
30075
30263
|
mismatching_hs6: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
30076
30264
|
});
|
|
30077
30265
|
|
|
30078
|
-
T['io.flow.internal.v0.models.daily_experiment_engine_results'] = PropTypes.exact({
|
|
30079
|
-
day: PropTypes.string.isRequired,
|
|
30080
|
-
organization_id: PropTypes.string.isRequired,
|
|
30081
|
-
experiment_key: PropTypes.string.isRequired,
|
|
30082
|
-
experiment_variant_key: PropTypes.string.isRequired,
|
|
30083
|
-
distinct_visitors_count: PropTypes.number.isRequired,
|
|
30084
|
-
visitors_with_transactions_count: PropTypes.number.isRequired,
|
|
30085
|
-
total_visitors_count: PropTypes.number.isRequired,
|
|
30086
|
-
total_revenue: PropTypes.number.isRequired,
|
|
30087
|
-
});
|
|
30088
|
-
|
|
30089
30266
|
T['io.flow.internal.v0.models.decrypt_cipher_form'] = PropTypes.exact({
|
|
30090
30267
|
id: PropTypes.string.isRequired,
|
|
30091
30268
|
password: PropTypes.string.isRequired,
|
|
@@ -30168,74 +30345,10 @@ T['io.flow.internal.v0.models.erp_priority_vendor'] = PropTypes.exact({
|
|
|
30168
30345
|
branch_des: PropTypes.string,
|
|
30169
30346
|
});
|
|
30170
30347
|
|
|
30171
|
-
T['io.flow.internal.v0.models.erp_priority_vendor_form'] = PropTypes.exact({
|
|
30172
|
-
acc_des: PropTypes.string,
|
|
30173
|
-
tax_code: PropTypes.string,
|
|
30174
|
-
tax_code_2: PropTypes.string,
|
|
30175
|
-
vat_flag: PropTypes.string,
|
|
30176
|
-
country_name: PropTypes.string,
|
|
30177
|
-
w_tax_percent: PropTypes.string,
|
|
30178
|
-
iban: PropTypes.string,
|
|
30179
|
-
confirmed_date: PropTypes.string,
|
|
30180
|
-
w_tax_date: PropTypes.string,
|
|
30181
|
-
w_tax_num_expl: PropTypes.string,
|
|
30182
|
-
acng_code: PropTypes.string,
|
|
30183
|
-
phone: PropTypes.string,
|
|
30184
|
-
address: PropTypes.string,
|
|
30185
|
-
address_a: PropTypes.string,
|
|
30186
|
-
address_2: PropTypes.string,
|
|
30187
|
-
address_3: PropTypes.string,
|
|
30188
|
-
state_name: PropTypes.string,
|
|
30189
|
-
code: PropTypes.string,
|
|
30190
|
-
zip: PropTypes.string,
|
|
30191
|
-
pay_account: PropTypes.string,
|
|
30192
|
-
comp_num: PropTypes.string,
|
|
30193
|
-
w_tax_num: PropTypes.string,
|
|
30194
|
-
vat_num: PropTypes.string,
|
|
30195
|
-
orig_acc_name: PropTypes.string,
|
|
30196
|
-
branch: PropTypes.string,
|
|
30197
|
-
form_1099_code: PropTypes.string,
|
|
30198
|
-
trial_bal_code: PropTypes.string,
|
|
30199
|
-
sec_name: PropTypes.string,
|
|
30200
|
-
state: PropTypes.string,
|
|
30201
|
-
state_a: PropTypes.string,
|
|
30202
|
-
fax: PropTypes.string,
|
|
30203
|
-
details: PropTypes.string,
|
|
30204
|
-
bank_code: PropTypes.string,
|
|
30205
|
-
state_code: PropTypes.string,
|
|
30206
|
-
tax_office_code: PropTypes.string,
|
|
30207
|
-
pay_code: PropTypes.string,
|
|
30208
|
-
eacc_des: PropTypes.string,
|
|
30209
|
-
acng_des: PropTypes.string,
|
|
30210
|
-
branch_des: PropTypes.string,
|
|
30211
|
-
debit_entry_code: PropTypes.string,
|
|
30212
|
-
credit_entry_code: PropTypes.string,
|
|
30213
|
-
});
|
|
30214
|
-
|
|
30215
30348
|
T['io.flow.internal.v0.models.erp_vendor'] = PropTypes.exact({
|
|
30216
30349
|
placeholder: PropTypes.string,
|
|
30217
30350
|
});
|
|
30218
30351
|
|
|
30219
|
-
T['io.flow.internal.v0.models.experiment_engine_results'] = PropTypes.exact({
|
|
30220
|
-
organization_id: PropTypes.string.isRequired,
|
|
30221
|
-
experiment_key: PropTypes.string.isRequired,
|
|
30222
|
-
experiment_variant_key: PropTypes.string.isRequired,
|
|
30223
|
-
distinct_visitors_count: PropTypes.number.isRequired,
|
|
30224
|
-
visitors_with_transactions_count: PropTypes.number.isRequired,
|
|
30225
|
-
total_visitors_count: PropTypes.number.isRequired,
|
|
30226
|
-
total_revenue: PropTypes.number.isRequired,
|
|
30227
|
-
day: PropTypes.string,
|
|
30228
|
-
});
|
|
30229
|
-
|
|
30230
|
-
T['io.flow.internal.v0.models.experiment_milestone_form'] = PropTypes.exact({
|
|
30231
|
-
timestamp: PropTypes.string,
|
|
30232
|
-
description: PropTypes.string.isRequired,
|
|
30233
|
-
});
|
|
30234
|
-
|
|
30235
|
-
T['io.flow.internal.v0.models.experiment_session_query_form'] = PropTypes.exact({
|
|
30236
|
-
session_query: PropTypes.string,
|
|
30237
|
-
});
|
|
30238
|
-
|
|
30239
30352
|
T['io.flow.internal.v0.models.feature_release_form'] = PropTypes.exact({
|
|
30240
30353
|
released_at: PropTypes.string,
|
|
30241
30354
|
});
|
|
@@ -30285,10 +30398,6 @@ T['io.flow.internal.v0.models.flow_label_setting_form'] = PropTypes.exact({
|
|
|
30285
30398
|
default_contents: PropTypes.string.isRequired,
|
|
30286
30399
|
});
|
|
30287
30400
|
|
|
30288
|
-
T['io.flow.internal.v0.models.force_transit_form'] = PropTypes.exact({
|
|
30289
|
-
description: PropTypes.string.isRequired,
|
|
30290
|
-
});
|
|
30291
|
-
|
|
30292
30401
|
T['io.flow.internal.v0.models.fulfillment_reference'] = PropTypes.exact({
|
|
30293
30402
|
id: PropTypes.string.isRequired,
|
|
30294
30403
|
});
|
|
@@ -30430,6 +30539,15 @@ T['io.flow.internal.v0.models.landed_cost_item'] = PropTypes.exact({
|
|
|
30430
30539
|
destination: PropTypes.string.isRequired,
|
|
30431
30540
|
});
|
|
30432
30541
|
|
|
30542
|
+
T['io.flow.internal.v0.models.logistics_payout_request_form'] = PropTypes.exact({
|
|
30543
|
+
organization_id: PropTypes.string.isRequired,
|
|
30544
|
+
order_identifier: PropTypes.string.isRequired,
|
|
30545
|
+
carrier_id: PropTypes.string,
|
|
30546
|
+
carrier_name: PropTypes.string,
|
|
30547
|
+
carrier_tracking_number: PropTypes.string,
|
|
30548
|
+
external_reference_number: PropTypes.string,
|
|
30549
|
+
});
|
|
30550
|
+
|
|
30433
30551
|
T['io.flow.internal.v0.models.magento_install_form'] = PropTypes.exact({
|
|
30434
30552
|
token: PropTypes.string.isRequired,
|
|
30435
30553
|
});
|
|
@@ -30645,6 +30763,10 @@ T['io.flow.internal.v0.models.report_summary'] = PropTypes.exact({
|
|
|
30645
30763
|
task_id: PropTypes.string.isRequired,
|
|
30646
30764
|
});
|
|
30647
30765
|
|
|
30766
|
+
T['io.flow.internal.v0.models.reporting_authorization_reference'] = PropTypes.exact({
|
|
30767
|
+
id: PropTypes.string.isRequired,
|
|
30768
|
+
});
|
|
30769
|
+
|
|
30648
30770
|
T['io.flow.internal.v0.models.requeue_request_form'] = PropTypes.exact({
|
|
30649
30771
|
product_ids: PropTypes.arrayOf(PropTypes.string),
|
|
30650
30772
|
hs6_codes: PropTypes.arrayOf(PropTypes.string),
|
|
@@ -30653,6 +30775,10 @@ T['io.flow.internal.v0.models.requeue_request_form'] = PropTypes.exact({
|
|
|
30653
30775
|
select_mismatching_item_types: PropTypes.bool.isRequired,
|
|
30654
30776
|
});
|
|
30655
30777
|
|
|
30778
|
+
T['io.flow.internal.v0.models.rescreen_restrictions_products'] = PropTypes.exact({
|
|
30779
|
+
placeholder: PropTypes.bool,
|
|
30780
|
+
});
|
|
30781
|
+
|
|
30656
30782
|
T['io.flow.internal.v0.models.restriction_category'] = PropTypes.exact({
|
|
30657
30783
|
category: PropTypes.string.isRequired,
|
|
30658
30784
|
});
|
|
@@ -30881,6 +31007,10 @@ T['io.flow.internal.v0.models.third_party_logistics_pick_up_time_window'] = Prop
|
|
|
30881
31007
|
to: PropTypes.string.isRequired,
|
|
30882
31008
|
});
|
|
30883
31009
|
|
|
31010
|
+
T['io.flow.internal.v0.models.tracking_debug_force_transit_form'] = PropTypes.exact({
|
|
31011
|
+
description: PropTypes.string.isRequired,
|
|
31012
|
+
});
|
|
31013
|
+
|
|
30884
31014
|
T['io.flow.internal.v0.models.unclassified_products_purge_request'] = PropTypes.exact({
|
|
30885
31015
|
num_deleted_products: PropTypes.objectOf(PropTypes.number).isRequired,
|
|
30886
31016
|
});
|
|
@@ -30902,6 +31032,24 @@ T['io.flow.internal.v0.models.webhook'] = PropTypes.exact({
|
|
|
30902
31032
|
placeholder: PropTypes.string,
|
|
30903
31033
|
});
|
|
30904
31034
|
|
|
31035
|
+
T['io.flow.google.pay.v0.enums.card_gateway'] = PropTypes.oneOf(['adyen', 'stripe']);
|
|
31036
|
+
|
|
31037
|
+
T['io.flow.google.pay.v0.models.card_adyen_tokenization_parameters'] = PropTypes.exact({
|
|
31038
|
+
gateway: PropTypes.string.isRequired,
|
|
31039
|
+
gatewayMerchantId: PropTypes.string.isRequired,
|
|
31040
|
+
});
|
|
31041
|
+
|
|
31042
|
+
T['io.flow.google.pay.v0.models.card_direct_tokenization_parameters'] = PropTypes.exact({
|
|
31043
|
+
protocolVersion: PropTypes.string.isRequired,
|
|
31044
|
+
publicKey: PropTypes.string.isRequired,
|
|
31045
|
+
});
|
|
31046
|
+
|
|
31047
|
+
T['io.flow.google.pay.v0.models.signed_message'] = PropTypes.exact({
|
|
31048
|
+
encryptedMessage: PropTypes.string.isRequired,
|
|
31049
|
+
ephemeralPublicKey: PropTypes.string.isRequired,
|
|
31050
|
+
tag: PropTypes.string.isRequired,
|
|
31051
|
+
});
|
|
31052
|
+
|
|
30905
31053
|
T['io.flow.return.v0.enums.return_status'] = PropTypes.oneOf(['open', 'refunded']);
|
|
30906
31054
|
|
|
30907
31055
|
T['io.flow.return.v0.models.return_item_reference'] = PropTypes.exact({
|
|
@@ -31022,31 +31170,6 @@ T['io.flow.payment.v0.models.reversal_put_form'] = PropTypes.exact({
|
|
|
31022
31170
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
31023
31171
|
});
|
|
31024
31172
|
|
|
31025
|
-
T['io.flow.google.pay.v0.enums.card_gateway'] = PropTypes.oneOf(['adyen', 'stripe']);
|
|
31026
|
-
|
|
31027
|
-
T['io.flow.google.pay.v0.models.card_adyen_tokenization_parameters'] = PropTypes.exact({
|
|
31028
|
-
gateway: PropTypes.string.isRequired,
|
|
31029
|
-
gatewayMerchantId: PropTypes.string.isRequired,
|
|
31030
|
-
});
|
|
31031
|
-
|
|
31032
|
-
T['io.flow.google.pay.v0.models.card_direct_tokenization_parameters'] = PropTypes.exact({
|
|
31033
|
-
protocolVersion: PropTypes.string.isRequired,
|
|
31034
|
-
publicKey: PropTypes.string.isRequired,
|
|
31035
|
-
});
|
|
31036
|
-
|
|
31037
|
-
T['io.flow.google.pay.v0.models.signed_message'] = PropTypes.exact({
|
|
31038
|
-
encryptedMessage: PropTypes.string.isRequired,
|
|
31039
|
-
ephemeralPublicKey: PropTypes.string.isRequired,
|
|
31040
|
-
tag: PropTypes.string.isRequired,
|
|
31041
|
-
});
|
|
31042
|
-
|
|
31043
|
-
T['io.flow.billing.csv.v0.models.billing_csv_order_destination'] = PropTypes.exact({
|
|
31044
|
-
city: PropTypes.string,
|
|
31045
|
-
province: PropTypes.string,
|
|
31046
|
-
postal: PropTypes.string,
|
|
31047
|
-
country: PropTypes.string,
|
|
31048
|
-
});
|
|
31049
|
-
|
|
31050
31173
|
T['io.flow.stripe.v0.enums.event_type'] = PropTypes.oneOf([
|
|
31051
31174
|
'charge.captured',
|
|
31052
31175
|
'charge.failed',
|
|
@@ -31056,6 +31179,11 @@ T['io.flow.stripe.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
31056
31179
|
'charge.succeeded',
|
|
31057
31180
|
'charge.updated',
|
|
31058
31181
|
'charge.refund.updated',
|
|
31182
|
+
'charge.dispute.closed',
|
|
31183
|
+
'charge.dispute.created',
|
|
31184
|
+
'charge.dispute.funds_reinstated',
|
|
31185
|
+
'charge.dispute.funds_withdrawn',
|
|
31186
|
+
'charge.dispute.updated',
|
|
31059
31187
|
'payment_intent.created',
|
|
31060
31188
|
'payment_intent.amount_capturable_updated',
|
|
31061
31189
|
'payment_intent.payment_failed',
|
|
@@ -31076,7 +31204,7 @@ T['io.flow.stripe.v0.enums.klarna_payment_method_category_type'] = PropTypes.one
|
|
|
31076
31204
|
'pay_over_time',
|
|
31077
31205
|
]);
|
|
31078
31206
|
|
|
31079
|
-
T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present', 'klarna']);
|
|
31207
|
+
T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present', 'ideal', 'klarna', 'bancontact']);
|
|
31080
31208
|
|
|
31081
31209
|
T['io.flow.stripe.v0.models.card_request'] = PropTypes.exact({
|
|
31082
31210
|
object: PropTypes.string.isRequired,
|
|
@@ -31345,24 +31473,6 @@ T['io.flow.shopify.markets.internal.v0.models.webhook'] = PropTypes.exact({
|
|
|
31345
31473
|
placeholder: PropTypes.string,
|
|
31346
31474
|
});
|
|
31347
31475
|
|
|
31348
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_form'] = PropTypes.exact({
|
|
31349
|
-
order_number: PropTypes.string.isRequired,
|
|
31350
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
31351
|
-
});
|
|
31352
|
-
|
|
31353
|
-
T['io.flow.consumer.invoice.v0.models.consumer_invoice_form_by_order'] = PropTypes.exact({
|
|
31354
|
-
attributes: PropTypes.objectOf(PropTypes.string),
|
|
31355
|
-
});
|
|
31356
|
-
|
|
31357
|
-
T['io.flow.consumer.invoice.v0.models.invoice_export'] = PropTypes.exact({
|
|
31358
|
-
id: PropTypes.string.isRequired,
|
|
31359
|
-
});
|
|
31360
|
-
|
|
31361
|
-
T['io.flow.consumer.invoice.v0.models.invoice_export_form'] = PropTypes.exact({
|
|
31362
|
-
date_from: PropTypes.string,
|
|
31363
|
-
date_to: PropTypes.string,
|
|
31364
|
-
});
|
|
31365
|
-
|
|
31366
31476
|
T['io.flow.adyen.v0.models.authorize_request_3d'] = PropTypes.exact({
|
|
31367
31477
|
merchantAccount: PropTypes.string.isRequired,
|
|
31368
31478
|
md: PropTypes.string.isRequired,
|
|
@@ -31562,7 +31672,15 @@ T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_order_status'] = P
|
|
|
31562
31672
|
'closed',
|
|
31563
31673
|
]);
|
|
31564
31674
|
|
|
31565
|
-
T['io.flow.shopify.markets.v0.enums.shopify_order_payment_gateway_names'] = PropTypes.oneOf([
|
|
31675
|
+
T['io.flow.shopify.markets.v0.enums.shopify_order_payment_gateway_names'] = PropTypes.oneOf([
|
|
31676
|
+
'flow_commerce',
|
|
31677
|
+
'gift_card',
|
|
31678
|
+
'manual',
|
|
31679
|
+
'shopify_payments',
|
|
31680
|
+
'shop_cash',
|
|
31681
|
+
'shopify_store_credit',
|
|
31682
|
+
]);
|
|
31683
|
+
|
|
31566
31684
|
T['io.flow.shopify.markets.v0.enums.shopify_order_status_type'] = PropTypes.oneOf(['open', 'closed', 'cancelled', 'any']);
|
|
31567
31685
|
|
|
31568
31686
|
T['io.flow.shopify.markets.v0.models.shopify_draft_order_count'] = PropTypes.exact({
|
|
@@ -31636,6 +31754,10 @@ T['io.flow.common.v0.models.line_item_quantity_form'] = PropTypes.exact({
|
|
|
31636
31754
|
quantity: PropTypes.number.isRequired,
|
|
31637
31755
|
});
|
|
31638
31756
|
|
|
31757
|
+
T['io.flow.billing.reporting.v0.models.reporting_authorization_reference'] = PropTypes.exact({
|
|
31758
|
+
id: PropTypes.string.isRequired,
|
|
31759
|
+
});
|
|
31760
|
+
|
|
31639
31761
|
T['io.flow.payment.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
31640
31762
|
T['io.flow.payment.internal.v0.enums.risk_check'] = PropTypes.oneOf(['three_d_secure']);
|
|
31641
31763
|
|
|
@@ -32141,6 +32263,10 @@ T['io.flow.billing.v0.models.payout_reference'] = PropTypes.exact({
|
|
|
32141
32263
|
id: PropTypes.string.isRequired,
|
|
32142
32264
|
});
|
|
32143
32265
|
|
|
32266
|
+
T['io.flow.billing.v0.models.transaction_reference'] = PropTypes.exact({
|
|
32267
|
+
id: PropTypes.string.isRequired,
|
|
32268
|
+
});
|
|
32269
|
+
|
|
32144
32270
|
T['io.flow.harmonization.v0.models.harmonized_category_reference'] = PropTypes.exact({
|
|
32145
32271
|
id: PropTypes.string.isRequired,
|
|
32146
32272
|
});
|
|
@@ -32253,6 +32379,8 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
|
|
|
32253
32379
|
paymentData: PropTypes.object.isRequired,
|
|
32254
32380
|
});
|
|
32255
32381
|
|
|
32382
|
+
T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
|
|
32383
|
+
|
|
32256
32384
|
T['io.flow.organization.onboarding.state.v0.models.activation_put_form'] = PropTypes.exact({
|
|
32257
32385
|
placeholder: PropTypes.bool,
|
|
32258
32386
|
});
|
|
@@ -32300,6 +32428,37 @@ T['io.flow.session.v0.models.session_put_form'] = PropTypes.exact({
|
|
|
32300
32428
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
32301
32429
|
});
|
|
32302
32430
|
|
|
32431
|
+
T['io.flow.experiment.internal.v0.enums.timeseries_type'] = PropTypes.oneOf(['daily', 'weekly', 'monthly', 'yearly']);
|
|
32432
|
+
|
|
32433
|
+
T['io.flow.experiment.internal.v0.models.daily_experiment_results'] = PropTypes.exact({
|
|
32434
|
+
id: PropTypes.string.isRequired,
|
|
32435
|
+
day: PropTypes.string.isRequired,
|
|
32436
|
+
experiment_key: PropTypes.string.isRequired,
|
|
32437
|
+
experiment_variant_key: PropTypes.string.isRequired,
|
|
32438
|
+
visitor_count: PropTypes.number.isRequired,
|
|
32439
|
+
visitors_with_transactions_count: PropTypes.number.isRequired,
|
|
32440
|
+
conversion_rate: PropTypes.number.isRequired,
|
|
32441
|
+
lower_bound: PropTypes.number.isRequired,
|
|
32442
|
+
upper_bound: PropTypes.number.isRequired,
|
|
32443
|
+
probability_of_being_best: PropTypes.number,
|
|
32444
|
+
currency: PropTypes.string,
|
|
32445
|
+
average_order_value: PropTypes.number,
|
|
32446
|
+
revenue_generated: PropTypes.number,
|
|
32447
|
+
total_order_count: PropTypes.number,
|
|
32448
|
+
conversion_rate_uplift: PropTypes.number,
|
|
32449
|
+
average_order_value_uplift: PropTypes.number,
|
|
32450
|
+
revenue_generated_uplift: PropTypes.number,
|
|
32451
|
+
});
|
|
32452
|
+
|
|
32453
|
+
T['io.flow.experiment.internal.v0.models.experiment_milestone_form'] = PropTypes.exact({
|
|
32454
|
+
timestamp: PropTypes.string,
|
|
32455
|
+
description: PropTypes.string.isRequired,
|
|
32456
|
+
});
|
|
32457
|
+
|
|
32458
|
+
T['io.flow.experiment.internal.v0.models.experiment_session_query_form'] = PropTypes.exact({
|
|
32459
|
+
session_query: PropTypes.string,
|
|
32460
|
+
});
|
|
32461
|
+
|
|
32303
32462
|
export const acceptance = T['io.flow.internal.v0.models.acceptance'];
|
|
32304
32463
|
export const accountContact = T['io.flow.internal.v0.models.account_contact'];
|
|
32305
32464
|
export const accountContactDeleted = T['io.flow.internal.v0.models.account_contact_deleted'];
|
|
@@ -32420,8 +32579,6 @@ export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_or
|
|
|
32420
32579
|
export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
|
|
32421
32580
|
export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
|
|
32422
32581
|
export const autoReviewCriteria = T['io.flow.internal.v0.models.auto_review_criteria'];
|
|
32423
|
-
export const backfill = T['io.flow.internal.v0.models.backfill'];
|
|
32424
|
-
export const backfillForm = T['io.flow.internal.v0.models.backfill_form'];
|
|
32425
32582
|
export const bankAccountReference = T['io.flow.internal.v0.models.bank_account_reference'];
|
|
32426
32583
|
export const bankPayment = T['io.flow.internal.v0.models.bank_payment'];
|
|
32427
32584
|
export const bankPaymentDeletedV2 = T['io.flow.internal.v0.models.bank_payment_deleted_v2'];
|
|
@@ -32677,7 +32834,9 @@ export const classificationProduct = T['io.flow.internal.v0.models.classificatio
|
|
|
32677
32834
|
export const classificationProductHarmonization = T['io.flow.internal.v0.models.classification_product_harmonization'];
|
|
32678
32835
|
export const classificationProductId = T['io.flow.internal.v0.models.classification_product_id'];
|
|
32679
32836
|
export const classificationProductRequest = T['io.flow.internal.v0.models.classification_product_request'];
|
|
32837
|
+
export const classificationProductRequestEnvelope = T['io.flow.internal.v0.models.classification_product_request_envelope'];
|
|
32680
32838
|
export const classificationProductResult = T['io.flow.internal.v0.models.classification_product_result'];
|
|
32839
|
+
export const classificationProductResultEnvelope = T['io.flow.internal.v0.models.classification_product_result_envelope'];
|
|
32681
32840
|
export const classificationProductSummary = T['io.flow.internal.v0.models.classification_product_summary'];
|
|
32682
32841
|
export const classificationProductSummaryPage = T['io.flow.internal.v0.models.classification_product_summary_page'];
|
|
32683
32842
|
export const classificationRequeueRequest = T['io.flow.internal.v0.models.classification_requeue_request'];
|
|
@@ -32702,6 +32861,7 @@ export const commercialInvoiceInternal = T['io.flow.internal.v0.models.commercia
|
|
|
32702
32861
|
export const commercialInvoiceInternalDeleted = T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'];
|
|
32703
32862
|
export const commercialInvoiceInternalUpserted = T['io.flow.internal.v0.models.commercial_invoice_internal_upserted'];
|
|
32704
32863
|
export const commercialInvoiceSummary = T['io.flow.internal.v0.models.commercial_invoice_summary'];
|
|
32864
|
+
export const company = T['io.flow.internal.v0.enums.company'];
|
|
32705
32865
|
export const companyReference = T['io.flow.internal.v0.models.company_reference'];
|
|
32706
32866
|
export const compliance = T['io.flow.internal.v0.models.compliance'];
|
|
32707
32867
|
export const complianceData = T['io.flow.internal.v0.unions.compliance_data'];
|
|
@@ -32736,6 +32896,7 @@ export const cryptoAccountModificationForm = T['io.flow.internal.v0.models.crypt
|
|
|
32736
32896
|
export const cryptoAccountPutForm = T['io.flow.internal.v0.models.crypto_account_put_form'];
|
|
32737
32897
|
export const cryptoAuthentication = T['io.flow.internal.v0.models.crypto_authentication'];
|
|
32738
32898
|
export const cryptoAuthenticationForm = T['io.flow.internal.v0.models.crypto_authentication_form'];
|
|
32899
|
+
export const csvTransaction = T['io.flow.internal.v0.models.csv_transaction'];
|
|
32739
32900
|
export const currencyInternalRate = T['io.flow.internal.v0.models.currency_internal_rate'];
|
|
32740
32901
|
export const customerPurgeUpserted = T['io.flow.internal.v0.models.customer_purge_upserted'];
|
|
32741
32902
|
export const customerSecret = T['io.flow.internal.v0.models.customer_secret'];
|
|
@@ -32749,10 +32910,6 @@ export const customsDetails = T['io.flow.internal.v0.models.customs_details'];
|
|
|
32749
32910
|
export const customsDetailsForm = T['io.flow.internal.v0.models.customs_details_form'];
|
|
32750
32911
|
export const customsProductAttributeLabel = T['io.flow.internal.v0.models.customs_product_attribute_label'];
|
|
32751
32912
|
export const customsProductLabels = T['io.flow.internal.v0.models.customs_product_labels'];
|
|
32752
|
-
export const dailyExperimentEngineResults = T['io.flow.internal.v0.models.daily_experiment_engine_results'];
|
|
32753
|
-
export const dailyExperimentResults = T['io.flow.internal.v0.models.daily_experiment_results'];
|
|
32754
|
-
export const dailyExperimentResultsDeleted = T['io.flow.internal.v0.models.daily_experiment_results_deleted'];
|
|
32755
|
-
export const dailyExperimentResultsUpserted = T['io.flow.internal.v0.models.daily_experiment_results_upserted'];
|
|
32756
32913
|
export const dailyValue = T['io.flow.internal.v0.models.daily_value'];
|
|
32757
32914
|
export const dailyValueDeleted = T['io.flow.internal.v0.models.daily_value_deleted'];
|
|
32758
32915
|
export const dailyValueUpserted = T['io.flow.internal.v0.models.daily_value_upserted'];
|
|
@@ -32882,7 +33039,6 @@ export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule
|
|
|
32882
33039
|
export const exclusionRuleExportRequest = T['io.flow.internal.v0.models.exclusion_rule_export_request'];
|
|
32883
33040
|
export const exclusionRuleUpserted = T['io.flow.internal.v0.models.exclusion_rule_upserted'];
|
|
32884
33041
|
export const expectedOrderSummary = T['io.flow.internal.v0.models.expected_order_summary'];
|
|
32885
|
-
export const experienceExperiment = T['io.flow.internal.v0.models.experience_experiment'];
|
|
32886
33042
|
export const experienceExportRequest = T['io.flow.internal.v0.models.experience_export_request'];
|
|
32887
33043
|
export const experienceImportRequest = T['io.flow.internal.v0.models.experience_import_request'];
|
|
32888
33044
|
export const experienceImportType = T['io.flow.internal.v0.enums.experience_import_type'];
|
|
@@ -32890,30 +33046,6 @@ export const experienceOrderAction = T['io.flow.internal.v0.enums.experience_ord
|
|
|
32890
33046
|
export const experienceOrderActionRule = T['io.flow.internal.v0.models.experience_order_action_rule'];
|
|
32891
33047
|
export const experienceOrderActionTrigger = T['io.flow.internal.v0.enums.experience_order_action_trigger'];
|
|
32892
33048
|
export const experienceSessionReference = T['io.flow.internal.v0.models.experience_session_reference'];
|
|
32893
|
-
export const experienceVariant = T['io.flow.internal.v0.models.experience_variant'];
|
|
32894
|
-
export const experienceVariantForm = T['io.flow.internal.v0.models.experience_variant_form'];
|
|
32895
|
-
export const experienceVariantSummary = T['io.flow.internal.v0.models.experience_variant_summary'];
|
|
32896
|
-
export const experiment = T['io.flow.internal.v0.unions.experiment'];
|
|
32897
|
-
export const experimentDeleted = T['io.flow.internal.v0.models.experiment_deleted'];
|
|
32898
|
-
export const experimentDiscriminatorKey = T['io.flow.internal.v0.enums.experiment_discriminator_key'];
|
|
32899
|
-
export const experimentEngineResults = T['io.flow.internal.v0.models.experiment_engine_results'];
|
|
32900
|
-
export const experimentForm = T['io.flow.internal.v0.models.experiment_form'];
|
|
32901
|
-
export const experimentFormDefault = T['io.flow.internal.v0.models.experiment_form_default'];
|
|
32902
|
-
export const experimentFormDefaultDiscriminator = T['io.flow.internal.v0.models.experiment_form_default_discriminator'];
|
|
32903
|
-
export const experimentFormDefaultDiscriminatorValue = T['io.flow.internal.v0.models.experiment_form_default_discriminator_value'];
|
|
32904
|
-
export const experimentFormDefaultVariant = T['io.flow.internal.v0.models.experiment_form_default_variant'];
|
|
32905
|
-
export const experimentMilestone = T['io.flow.internal.v0.models.experiment_milestone'];
|
|
32906
|
-
export const experimentMilestoneDeleted = T['io.flow.internal.v0.models.experiment_milestone_deleted'];
|
|
32907
|
-
export const experimentMilestoneForm = T['io.flow.internal.v0.models.experiment_milestone_form'];
|
|
32908
|
-
export const experimentMilestoneUpserted = T['io.flow.internal.v0.models.experiment_milestone_upserted'];
|
|
32909
|
-
export const experimentReference = T['io.flow.internal.v0.models.experiment_reference'];
|
|
32910
|
-
export const experimentResults = T['io.flow.internal.v0.models.experiment_results'];
|
|
32911
|
-
export const experimentResultsDeleted = T['io.flow.internal.v0.models.experiment_results_deleted'];
|
|
32912
|
-
export const experimentResultsUpserted = T['io.flow.internal.v0.models.experiment_results_upserted'];
|
|
32913
|
-
export const experimentResultsWithTimestamp = T['io.flow.internal.v0.models.experiment_results_with_timestamp'];
|
|
32914
|
-
export const experimentSessionQueryForm = T['io.flow.internal.v0.models.experiment_session_query_form'];
|
|
32915
|
-
export const experimentUpserted = T['io.flow.internal.v0.models.experiment_upserted'];
|
|
32916
|
-
export const experimentVersion = T['io.flow.internal.v0.models.experiment_version'];
|
|
32917
33049
|
export const explicitStatement = T['io.flow.internal.v0.models.explicit_statement'];
|
|
32918
33050
|
export const explicitStatementForm = T['io.flow.internal.v0.unions.explicit_statement_form'];
|
|
32919
33051
|
export const explicitStatementFormAllPendingPostedTransactions = T['io.flow.internal.v0.models.explicit_statement_form_all_pending_posted_transactions'];
|
|
@@ -32936,7 +33068,6 @@ export const feature = T['io.flow.internal.v0.models.feature'];
|
|
|
32936
33068
|
export const featureContextForm = T['io.flow.internal.v0.models.feature_context_form'];
|
|
32937
33069
|
export const featureDefaultValue = T['io.flow.internal.v0.unions.feature_default_value'];
|
|
32938
33070
|
export const featureDeleted = T['io.flow.internal.v0.models.feature_deleted'];
|
|
32939
|
-
export const featureExperiment = T['io.flow.internal.v0.models.feature_experiment'];
|
|
32940
33071
|
export const featureForm = T['io.flow.internal.v0.models.feature_form'];
|
|
32941
33072
|
export const featureGeoForm = T['io.flow.internal.v0.models.feature_geo_form'];
|
|
32942
33073
|
export const featureIdReference = T['io.flow.internal.v0.models.feature_id_reference'];
|
|
@@ -32954,11 +33085,7 @@ export const featureType = T['io.flow.internal.v0.enums.feature_type'];
|
|
|
32954
33085
|
export const featureUpserted = T['io.flow.internal.v0.models.feature_upserted'];
|
|
32955
33086
|
export const featureValue = T['io.flow.internal.v0.unions.feature_value'];
|
|
32956
33087
|
export const featureValueForm = T['io.flow.internal.v0.models.feature_value_form'];
|
|
32957
|
-
export const featureValueReference = T['io.flow.internal.v0.models.feature_value_reference'];
|
|
32958
33088
|
export const featureValueResult = T['io.flow.internal.v0.models.feature_value_result'];
|
|
32959
|
-
export const featureVariant = T['io.flow.internal.v0.models.feature_variant'];
|
|
32960
|
-
export const featureVariantForm = T['io.flow.internal.v0.models.feature_variant_form'];
|
|
32961
|
-
export const featureVariantSummary = T['io.flow.internal.v0.models.feature_variant_summary'];
|
|
32962
33089
|
export const fedex = T['io.flow.internal.v0.models.fedex'];
|
|
32963
33090
|
export const fedexCrossborder = T['io.flow.internal.v0.models.fedex_crossborder'];
|
|
32964
33091
|
export const fee = T['io.flow.internal.v0.models.fee'];
|
|
@@ -32993,9 +33120,12 @@ export const flowLabProjectPutForm = T['io.flow.internal.v0.models.flow_lab_proj
|
|
|
32993
33120
|
export const flowLabelSetting = T['io.flow.internal.v0.models.flow_label_setting'];
|
|
32994
33121
|
export const flowLabelSettingForm = T['io.flow.internal.v0.models.flow_label_setting_form'];
|
|
32995
33122
|
export const flowShopValidationError = T['io.flow.internal.v0.models.flow_shop_validation_error'];
|
|
32996
|
-
export const forceTransitForm = T['io.flow.internal.v0.models.force_transit_form'];
|
|
32997
33123
|
export const format = T['io.flow.internal.v0.enums.format'];
|
|
33124
|
+
export const fraudAuthorizationSummary = T['io.flow.internal.v0.models.fraud_authorization_summary'];
|
|
32998
33125
|
export const fraudPendingReview = T['io.flow.internal.v0.models.fraud_pending_review'];
|
|
33126
|
+
export const fraudPendingReviewAuthorization = T['io.flow.internal.v0.models.fraud_pending_review_authorization'];
|
|
33127
|
+
export const fraudPendingReviewAuthorizationDeleted = T['io.flow.internal.v0.models.fraud_pending_review_authorization_deleted'];
|
|
33128
|
+
export const fraudPendingReviewAuthorizationUpserted = T['io.flow.internal.v0.models.fraud_pending_review_authorization_upserted'];
|
|
32999
33129
|
export const fraudPendingReviewDeleted = T['io.flow.internal.v0.models.fraud_pending_review_deleted'];
|
|
33000
33130
|
export const fraudPendingReviewDetail = T['io.flow.internal.v0.models.fraud_pending_review_detail'];
|
|
33001
33131
|
export const fraudPendingReviewUpserted = T['io.flow.internal.v0.models.fraud_pending_review_upserted'];
|
|
@@ -33008,6 +33138,12 @@ export const fraudProviderConfigurationRiskified = T['io.flow.internal.v0.models
|
|
|
33008
33138
|
export const fraudProviderConfigurationUpserted = T['io.flow.internal.v0.models.fraud_provider_configuration_upserted'];
|
|
33009
33139
|
export const fraudProviderStatus = T['io.flow.internal.v0.enums.fraud_provider_status'];
|
|
33010
33140
|
export const fraudReview = T['io.flow.internal.v0.models.fraud_review'];
|
|
33141
|
+
export const fraudReviewAuthorization = T['io.flow.internal.v0.models.fraud_review_authorization'];
|
|
33142
|
+
export const fraudReviewAuthorizationDecision = T['io.flow.internal.v0.models.fraud_review_authorization_decision'];
|
|
33143
|
+
export const fraudReviewAuthorizationDecisionDeleted = T['io.flow.internal.v0.models.fraud_review_authorization_decision_deleted'];
|
|
33144
|
+
export const fraudReviewAuthorizationDecisionUpserted = T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'];
|
|
33145
|
+
export const fraudReviewAuthorizationDeleted = T['io.flow.internal.v0.models.fraud_review_authorization_deleted'];
|
|
33146
|
+
export const fraudReviewAuthorizationUpserted = T['io.flow.internal.v0.models.fraud_review_authorization_upserted'];
|
|
33011
33147
|
export const fraudReviewDecision = T['io.flow.internal.v0.models.fraud_review_decision'];
|
|
33012
33148
|
export const fraudReviewDecisionDeleted = T['io.flow.internal.v0.models.fraud_review_decision_deleted'];
|
|
33013
33149
|
export const fraudReviewDecisionForm = T['io.flow.internal.v0.models.fraud_review_decision_form'];
|
|
@@ -33075,10 +33211,16 @@ export const googleLinker = T['io.flow.internal.v0.models.google_linker'];
|
|
|
33075
33211
|
export const googleShoppingAccountParameters = T['io.flow.internal.v0.models.google_shopping_account_parameters'];
|
|
33076
33212
|
export const googleShoppingSetting = T['io.flow.internal.v0.models.google_shopping_setting'];
|
|
33077
33213
|
export const googleTagManager = T['io.flow.internal.v0.models.google_tag_manager'];
|
|
33214
|
+
export const harinathItem = T['io.flow.internal.v0.models.harinath_item'];
|
|
33215
|
+
export const harinathItemDeleted = T['io.flow.internal.v0.models.harinath_item_deleted'];
|
|
33216
|
+
export const harinathItemForm = T['io.flow.internal.v0.models.harinath_item_form'];
|
|
33217
|
+
export const harinathItemType = T['io.flow.internal.v0.enums.harinath_item_type'];
|
|
33218
|
+
export const harinathItemUpserted = T['io.flow.internal.v0.models.harinath_item_upserted'];
|
|
33078
33219
|
export const harmonizationClassificationStatisticsData = T['io.flow.internal.v0.models.harmonization_classification_statistics_data'];
|
|
33079
33220
|
export const harmonizationClassificationStatisticsPublished = T['io.flow.internal.v0.models.harmonization_classification_statistics_published'];
|
|
33080
33221
|
export const harmonizationCodesImport = T['io.flow.internal.v0.models.harmonization_codes_import'];
|
|
33081
33222
|
export const harmonizationColumnSetting = T['io.flow.internal.v0.models.harmonization_column_setting'];
|
|
33223
|
+
export const harmonizationDecisionSource = T['io.flow.internal.v0.enums.harmonization_decision_source'];
|
|
33082
33224
|
export const harmonizationItemClassification = T['io.flow.internal.v0.models.harmonization_item_classification'];
|
|
33083
33225
|
export const harmonizationItemClassificationDeleted = T['io.flow.internal.v0.models.harmonization_item_classification_deleted'];
|
|
33084
33226
|
export const harmonizationItemClassificationUpserted = T['io.flow.internal.v0.models.harmonization_item_classification_upserted'];
|
|
@@ -33182,6 +33324,11 @@ export const keyReference = T['io.flow.internal.v0.models.key_reference'];
|
|
|
33182
33324
|
export const keywordType = T['io.flow.internal.v0.enums.keyword_type'];
|
|
33183
33325
|
export const klarnaAuthorizationParameters = T['io.flow.internal.v0.models.klarna_authorization_parameters'];
|
|
33184
33326
|
export const klarnaPaymentMethodCategory = T['io.flow.internal.v0.models.klarna_payment_method_category'];
|
|
33327
|
+
export const konstantinItem = T['io.flow.internal.v0.models.konstantin_item'];
|
|
33328
|
+
export const konstantinItemDeleted = T['io.flow.internal.v0.models.konstantin_item_deleted'];
|
|
33329
|
+
export const konstantinItemForm = T['io.flow.internal.v0.models.konstantin_item_form'];
|
|
33330
|
+
export const konstantinItemType = T['io.flow.internal.v0.enums.konstantin_item_type'];
|
|
33331
|
+
export const konstantinItemUpserted = T['io.flow.internal.v0.models.konstantin_item_upserted'];
|
|
33185
33332
|
export const labProjectSettings = T['io.flow.internal.v0.models.lab_project_settings'];
|
|
33186
33333
|
export const labProjectSettingsForm = T['io.flow.internal.v0.models.lab_project_settings_form'];
|
|
33187
33334
|
export const labProjectSettingsFormAcceptance = T['io.flow.internal.v0.models.lab_project_settings_form_acceptance'];
|
|
@@ -33258,6 +33405,9 @@ export const location = T['io.flow.internal.v0.models.location'];
|
|
|
33258
33405
|
export const logisticsCapabilities = T['io.flow.internal.v0.models.logistics_capabilities'];
|
|
33259
33406
|
export const logisticsCapabilitiesForm = T['io.flow.internal.v0.models.logistics_capabilities_form'];
|
|
33260
33407
|
export const logisticsCapability = T['io.flow.internal.v0.enums.logistics_capability'];
|
|
33408
|
+
export const logisticsPayoutRequest = T['io.flow.internal.v0.models.logistics_payout_request'];
|
|
33409
|
+
export const logisticsPayoutRequestForm = T['io.flow.internal.v0.models.logistics_payout_request_form'];
|
|
33410
|
+
export const logisticsPayoutResolutionMethod = T['io.flow.internal.v0.enums.logistics_payout_resolution_method'];
|
|
33261
33411
|
export const logo = T['io.flow.internal.v0.models.logo'];
|
|
33262
33412
|
export const lostChargeback = T['io.flow.internal.v0.models.lost_chargeback'];
|
|
33263
33413
|
export const loyaltyProgram = T['io.flow.internal.v0.models.loyalty_program'];
|
|
@@ -33357,6 +33507,16 @@ export const merchantUpserted = T['io.flow.internal.v0.models.merchant_upserted'
|
|
|
33357
33507
|
export const messageStamp = T['io.flow.internal.v0.models.message_stamp'];
|
|
33358
33508
|
export const metadataProposition = T['io.flow.internal.v0.models.metadata_proposition'];
|
|
33359
33509
|
export const metadataRatecard = T['io.flow.internal.v0.models.metadata_ratecard'];
|
|
33510
|
+
export const michaelyanItem = T['io.flow.internal.v0.models.michaelyan_item'];
|
|
33511
|
+
export const michaelyanItemDeleted = T['io.flow.internal.v0.models.michaelyan_item_deleted'];
|
|
33512
|
+
export const michaelyanItemForm = T['io.flow.internal.v0.models.michaelyan_item_form'];
|
|
33513
|
+
export const michaelyanItemType = T['io.flow.internal.v0.enums.michaelyan_item_type'];
|
|
33514
|
+
export const michaelyanItemUpserted = T['io.flow.internal.v0.models.michaelyan_item_upserted'];
|
|
33515
|
+
export const miljenkoItem = T['io.flow.internal.v0.models.miljenko_item'];
|
|
33516
|
+
export const miljenkoItemDeleted = T['io.flow.internal.v0.models.miljenko_item_deleted'];
|
|
33517
|
+
export const miljenkoItemForm = T['io.flow.internal.v0.models.miljenko_item_form'];
|
|
33518
|
+
export const miljenkoItemType = T['io.flow.internal.v0.enums.miljenko_item_type'];
|
|
33519
|
+
export const miljenkoItemUpserted = T['io.flow.internal.v0.models.miljenko_item_upserted'];
|
|
33360
33520
|
export const mixedBagWeight = T['io.flow.internal.v0.enums.mixed_bag_weight'];
|
|
33361
33521
|
export const natureOfSale = T['io.flow.internal.v0.enums.nature_of_sale'];
|
|
33362
33522
|
export const nextBillingStatement = T['io.flow.internal.v0.models.next_billing_statement'];
|
|
@@ -33431,6 +33591,9 @@ export const orderServiceChangeCsvForm = T['io.flow.internal.v0.models.order_ser
|
|
|
33431
33591
|
export const orderShipped = T['io.flow.internal.v0.models.order_shipped'];
|
|
33432
33592
|
export const orderSubmissionForm = T['io.flow.internal.v0.models.order_submission_form'];
|
|
33433
33593
|
export const orderSummary = T['io.flow.internal.v0.models.order_summary'];
|
|
33594
|
+
export const orderTaxAndDutyInclusivitySetting = T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting'];
|
|
33595
|
+
export const orderTaxAndDutyInclusivitySettingDeleted = T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_deleted'];
|
|
33596
|
+
export const orderTaxAndDutyInclusivitySettingUpserted = T['io.flow.internal.v0.models.order_tax_and_duty_inclusivity_setting_upserted'];
|
|
33434
33597
|
export const orderTransaction = T['io.flow.internal.v0.models.order_transaction'];
|
|
33435
33598
|
export const orderTransactionDeleted = T['io.flow.internal.v0.models.order_transaction_deleted'];
|
|
33436
33599
|
export const orderTransactionType = T['io.flow.internal.v0.enums.order_transaction_type'];
|
|
@@ -33470,6 +33633,9 @@ export const organizationDebugTransaction = T['io.flow.internal.v0.models.organi
|
|
|
33470
33633
|
export const organizationInvitationAcceptForm = T['io.flow.internal.v0.models.organization_invitation_accept_form'];
|
|
33471
33634
|
export const organizationMembershipCopy = T['io.flow.internal.v0.models.organization_membership_copy'];
|
|
33472
33635
|
export const organizationMembershipCopyForm = T['io.flow.internal.v0.models.organization_membership_copy_form'];
|
|
33636
|
+
export const organizationMetadata = T['io.flow.internal.v0.models.organization_metadata'];
|
|
33637
|
+
export const organizationMetadataDeleted = T['io.flow.internal.v0.models.organization_metadata_deleted'];
|
|
33638
|
+
export const organizationMetadataUpserted = T['io.flow.internal.v0.models.organization_metadata_upserted'];
|
|
33473
33639
|
export const organizationMetricType = T['io.flow.internal.v0.enums.organization_metric_type'];
|
|
33474
33640
|
export const organizationOnboardingStateAdjustmentResult = T['io.flow.internal.v0.models.organization_onboarding_state_adjustment_result'];
|
|
33475
33641
|
export const organizationOnboardingStateAuditResult = T['io.flow.internal.v0.models.organization_onboarding_state_audit_result'];
|
|
@@ -33499,6 +33665,26 @@ export const organizationStatusChange = T['io.flow.internal.v0.models.organizati
|
|
|
33499
33665
|
export const organizationStatusChangeDeleted = T['io.flow.internal.v0.models.organization_status_change_deleted'];
|
|
33500
33666
|
export const organizationStatusChangeUpserted = T['io.flow.internal.v0.models.organization_status_change_upserted'];
|
|
33501
33667
|
export const organizationsAuditCheckReport = T['io.flow.internal.v0.models.organizations_audit_check_report'];
|
|
33668
|
+
export const otherRecord = T['io.flow.internal.v0.models.other_record'];
|
|
33669
|
+
export const otherRecordAccount = T['io.flow.internal.v0.models.other_record_account'];
|
|
33670
|
+
export const otherRecordAccountSourceSummary = T['io.flow.internal.v0.models.other_record_account_source_summary'];
|
|
33671
|
+
export const otherRecordDeleted = T['io.flow.internal.v0.models.other_record_deleted'];
|
|
33672
|
+
export const otherRecordDiscount = T['io.flow.internal.v0.models.other_record_discount'];
|
|
33673
|
+
export const otherRecordFees = T['io.flow.internal.v0.models.other_record_fees'];
|
|
33674
|
+
export const otherRecordIdentifiers = T['io.flow.internal.v0.models.other_record_identifiers'];
|
|
33675
|
+
export const otherRecordMerchantReference = T['io.flow.internal.v0.models.other_record_merchant_reference'];
|
|
33676
|
+
export const otherRecordMetadata = T['io.flow.internal.v0.models.other_record_metadata'];
|
|
33677
|
+
export const otherRecordMetadataCarrierCharge = T['io.flow.internal.v0.models.other_record_metadata_carrier_charge'];
|
|
33678
|
+
export const otherRecordMetadataChannel = T['io.flow.internal.v0.models.other_record_metadata_channel'];
|
|
33679
|
+
export const otherRecordMetadataFailedPayout = T['io.flow.internal.v0.models.other_record_metadata_failed_payout'];
|
|
33680
|
+
export const otherRecordMetadataManual = T['io.flow.internal.v0.models.other_record_metadata_manual'];
|
|
33681
|
+
export const otherRecordMetadataShippingLabel = T['io.flow.internal.v0.models.other_record_metadata_shipping_label'];
|
|
33682
|
+
export const otherRecordMetadataShippingLabelRevenueShare = T['io.flow.internal.v0.models.other_record_metadata_shipping_label_revenue_share'];
|
|
33683
|
+
export const otherRecordMetadataTrueup = T['io.flow.internal.v0.models.other_record_metadata_trueup'];
|
|
33684
|
+
export const otherRecordOrderSummary = T['io.flow.internal.v0.models.other_record_order_summary'];
|
|
33685
|
+
export const otherRecordOrderSummaryIdentifiers = T['io.flow.internal.v0.models.other_record_order_summary_identifiers'];
|
|
33686
|
+
export const otherRecordUpserted = T['io.flow.internal.v0.models.other_record_upserted'];
|
|
33687
|
+
export const otherRecordWithholdings = T['io.flow.internal.v0.models.other_record_withholdings'];
|
|
33502
33688
|
export const outputStyle = T['io.flow.internal.v0.enums.output_style'];
|
|
33503
33689
|
export const owner = T['io.flow.internal.v0.enums.owner'];
|
|
33504
33690
|
export const partner = T['io.flow.internal.v0.models.partner'];
|
|
@@ -33528,6 +33714,7 @@ export const paymentProcessorAccountUpserted = T['io.flow.internal.v0.models.pay
|
|
|
33528
33714
|
export const paymentProcessorMerchantDeleted = T['io.flow.internal.v0.models.payment_processor_merchant_deleted'];
|
|
33529
33715
|
export const paymentProcessorMerchantUpserted = T['io.flow.internal.v0.models.payment_processor_merchant_upserted'];
|
|
33530
33716
|
export const paymentRedirect = T['io.flow.internal.v0.unions.payment_redirect'];
|
|
33717
|
+
export const paymentSummary = T['io.flow.internal.v0.models.payment_summary'];
|
|
33531
33718
|
export const paymentSummaryDetails = T['io.flow.internal.v0.unions.payment_summary_details'];
|
|
33532
33719
|
export const paymentSummaryStatus = T['io.flow.internal.v0.enums.payment_summary_status'];
|
|
33533
33720
|
export const paymentSummaryType = T['io.flow.internal.v0.enums.payment_summary_type'];
|
|
@@ -33729,8 +33916,6 @@ export const reportingMonetaryValue = T['io.flow.internal.v0.models.reporting_mo
|
|
|
33729
33916
|
export const reportingOrderSummary = T['io.flow.internal.v0.models.reporting_order_summary'];
|
|
33730
33917
|
export const reportingOrganizationSummary = T['io.flow.internal.v0.models.reporting_organization_summary'];
|
|
33731
33918
|
export const reportingPayment = T['io.flow.internal.v0.models.reporting_payment'];
|
|
33732
|
-
export const reportingPaymentMetadata = T['io.flow.internal.v0.models.reporting_payment_metadata'];
|
|
33733
|
-
export const reportingPaymentMetadataAdditionalAuthorizations = T['io.flow.internal.v0.models.reporting_payment_metadata_additional_authorizations'];
|
|
33734
33919
|
export const reportingProvince = T['io.flow.internal.v0.models.reporting_province'];
|
|
33735
33920
|
export const reportingReconciliation = T['io.flow.internal.v0.models.reporting_reconciliation'];
|
|
33736
33921
|
export const reportingRefundReference = T['io.flow.internal.v0.models.reporting_refund_reference'];
|
|
@@ -33742,6 +33927,7 @@ export const reportingVatRemittance = T['io.flow.internal.v0.models.reporting_va
|
|
|
33742
33927
|
export const reportingVatRemittanceRate = T['io.flow.internal.v0.models.reporting_vat_remittance_rate'];
|
|
33743
33928
|
export const reportingVendor = T['io.flow.internal.v0.models.reporting_vendor'];
|
|
33744
33929
|
export const requeueRequestForm = T['io.flow.internal.v0.models.requeue_request_form'];
|
|
33930
|
+
export const rescreenRestrictionsProducts = T['io.flow.internal.v0.models.rescreen_restrictions_products'];
|
|
33745
33931
|
export const responsibleParty = T['io.flow.internal.v0.enums.responsible_party'];
|
|
33746
33932
|
export const restrictionAction = T['io.flow.internal.v0.enums.restriction_action'];
|
|
33747
33933
|
export const restrictionCategory = T['io.flow.internal.v0.models.restriction_category'];
|
|
@@ -33802,7 +33988,6 @@ export const salesRecordUpserted = T['io.flow.internal.v0.models.sales_record_up
|
|
|
33802
33988
|
export const sandboxSetup = T['io.flow.internal.v0.models.sandbox_setup'];
|
|
33803
33989
|
export const sandboxSetupForm = T['io.flow.internal.v0.models.sandbox_setup_form'];
|
|
33804
33990
|
export const scheduledPayment = T['io.flow.internal.v0.models.scheduled_payment'];
|
|
33805
|
-
export const scope = T['io.flow.internal.v0.enums.scope'];
|
|
33806
33991
|
export const screen = T['io.flow.internal.v0.models.screen'];
|
|
33807
33992
|
export const screenForm = T['io.flow.internal.v0.models.screen_form'];
|
|
33808
33993
|
export const screeningStatusChange = T['io.flow.internal.v0.models.screening_status_change'];
|
|
@@ -33948,7 +34133,6 @@ export const shrutiDemoItemDeleted = T['io.flow.internal.v0.models.shruti_demo_i
|
|
|
33948
34133
|
export const shrutiDemoItemForm = T['io.flow.internal.v0.models.shruti_demo_item_form'];
|
|
33949
34134
|
export const shrutiDemoItemUpserted = T['io.flow.internal.v0.models.shruti_demo_item_upserted'];
|
|
33950
34135
|
export const shrutiDemoType = T['io.flow.internal.v0.enums.shruti_demo_type'];
|
|
33951
|
-
export const significanceAction = T['io.flow.internal.v0.enums.significance_action'];
|
|
33952
34136
|
export const simpleAccountReference = T['io.flow.internal.v0.models.simple_account_reference'];
|
|
33953
34137
|
export const simpleRoundingStrategy = T['io.flow.internal.v0.enums.simple_rounding_strategy'];
|
|
33954
34138
|
export const simplifiedClassificationTaxonomy = T['io.flow.internal.v0.unions.simplified_classification_taxonomy'];
|
|
@@ -33978,7 +34162,6 @@ export const statementCreationMetadata = T['io.flow.internal.v0.models.statement
|
|
|
33978
34162
|
export const statementStatus = T['io.flow.internal.v0.enums.statement_status'];
|
|
33979
34163
|
export const statementTransferTransactionLocation = T['io.flow.internal.v0.enums.statement_transfer_transaction_location'];
|
|
33980
34164
|
export const statisticType = T['io.flow.internal.v0.enums.statistic_type'];
|
|
33981
|
-
export const status = T['io.flow.internal.v0.enums.status'];
|
|
33982
34165
|
export const storeConnection = T['io.flow.internal.v0.models.store_connection'];
|
|
33983
34166
|
export const storeConnectionForm = T['io.flow.internal.v0.models.store_connection_form'];
|
|
33984
34167
|
export const stringFeatureDefaultValue = T['io.flow.internal.v0.models.string_feature_default_value'];
|
|
@@ -34041,6 +34224,7 @@ export const taskProcessQueuedEvent = T['io.flow.internal.v0.models.task_process
|
|
|
34041
34224
|
export const taskProcessorKey = T['io.flow.internal.v0.enums.task_processor_key'];
|
|
34042
34225
|
export const taskSummarizeCode = T['io.flow.internal.v0.models.task_summarize_code'];
|
|
34043
34226
|
export const taxAmount = T['io.flow.internal.v0.unions.tax_amount'];
|
|
34227
|
+
export const taxAndDutyInclusivitySetting = T['io.flow.internal.v0.enums.tax_and_duty_inclusivity_setting'];
|
|
34044
34228
|
export const taxCalculation = T['io.flow.internal.v0.models.tax_calculation'];
|
|
34045
34229
|
export const taxCalculationError = T['io.flow.internal.v0.models.tax_calculation_error'];
|
|
34046
34230
|
export const taxCalculationErrorCode = T['io.flow.internal.v0.enums.tax_calculation_error_code'];
|
|
@@ -34060,6 +34244,9 @@ export const taxonomyNode = PropTypes.any;
|
|
|
34060
34244
|
export const techOnboardingDescription = T['io.flow.internal.v0.models.tech_onboarding_description'];
|
|
34061
34245
|
export const test = T['io.flow.internal.v0.models.test'];
|
|
34062
34246
|
export const testForm = T['io.flow.internal.v0.models.test_form'];
|
|
34247
|
+
export const thiagoItem = T['io.flow.internal.v0.models.thiago_item'];
|
|
34248
|
+
export const thiagoItemForm = T['io.flow.internal.v0.models.thiago_item_form'];
|
|
34249
|
+
export const thiagoItemType = T['io.flow.internal.v0.enums.thiago_item_type'];
|
|
34063
34250
|
export const thirdPartyLogisticsPartner = T['io.flow.internal.v0.models.third_party_logistics_partner'];
|
|
34064
34251
|
export const thirdPartyLogisticsPickUpTimeWindow = T['io.flow.internal.v0.models.third_party_logistics_pick_up_time_window'];
|
|
34065
34252
|
export const tieredFee = T['io.flow.internal.v0.models.tiered_fee'];
|
|
@@ -34071,8 +34258,11 @@ export const timeToClassifyAggregatedUpserted = T['io.flow.internal.v0.models.ti
|
|
|
34071
34258
|
export const timeToClassifyDeleted = T['io.flow.internal.v0.models.time_to_classify_deleted'];
|
|
34072
34259
|
export const timeToClassifyUpserted = T['io.flow.internal.v0.models.time_to_classify_upserted'];
|
|
34073
34260
|
export const timeWithTimezone = T['io.flow.internal.v0.models.time_with_timezone'];
|
|
34074
|
-
export const timeseriesType = T['io.flow.internal.v0.enums.timeseries_type'];
|
|
34075
34261
|
export const tracker = T['io.flow.internal.v0.unions.tracker'];
|
|
34262
|
+
export const trackingAssuranceAnalysis = T['io.flow.internal.v0.models.tracking_assurance_analysis'];
|
|
34263
|
+
export const trackingAssuranceAnalysisDeleted = T['io.flow.internal.v0.models.tracking_assurance_analysis_deleted'];
|
|
34264
|
+
export const trackingAssuranceAnalysisUpserted = T['io.flow.internal.v0.models.tracking_assurance_analysis_upserted'];
|
|
34265
|
+
export const trackingDebugForceTransitForm = T['io.flow.internal.v0.models.tracking_debug_force_transit_form'];
|
|
34076
34266
|
export const trackingDebugLabel = T['io.flow.internal.v0.models.tracking_debug_label'];
|
|
34077
34267
|
export const trackingDebugLabelEvent = T['io.flow.internal.v0.models.tracking_debug_label_event'];
|
|
34078
34268
|
export const trackingDebugLabelLocation = T['io.flow.internal.v0.models.tracking_debug_label_location'];
|
|
@@ -34135,8 +34325,6 @@ export const userUpsertedV2 = T['io.flow.internal.v0.models.user_upserted_v2'];
|
|
|
34135
34325
|
export const v1Checkout = T['io.flow.internal.v0.models.v1_checkout'];
|
|
34136
34326
|
export const validationCharacterLength = T['io.flow.internal.v0.models.validation_character_length'];
|
|
34137
34327
|
export const validationRule = T['io.flow.internal.v0.unions.validation_rule'];
|
|
34138
|
-
export const variant = T['io.flow.internal.v0.unions.variant'];
|
|
34139
|
-
export const variantForm = T['io.flow.internal.v0.unions.variant_form'];
|
|
34140
34328
|
export const viesResult = T['io.flow.internal.v0.models.vies_result'];
|
|
34141
34329
|
export const virtualCardTransaction = T['io.flow.internal.v0.models.virtual_card_transaction'];
|
|
34142
34330
|
export const wasteElectricalAndElectronicEquipmentComplianceData = T['io.flow.internal.v0.models.waste_electrical_and_electronic_equipment_compliance_data'];
|