@flowio/api-internal-prop-types 9.24.46 → 9.24.48
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 +217 -110
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +217 -110
- package/src/api-internal.js +359 -202
package/src/api-internal.js
CHANGED
|
@@ -96,51 +96,12 @@ T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'] =
|
|
|
96
96
|
'business_street_address_is_po_box',
|
|
97
97
|
]);
|
|
98
98
|
|
|
99
|
-
T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTypes.exact({
|
|
100
|
-
discriminator: PropTypes.oneOf(['merchant_activated']).isRequired,
|
|
101
|
-
placeholder: PropTypes.bool,
|
|
102
|
-
});
|
|
103
|
-
|
|
104
|
-
T['io.flow.organization.onboarding.state.v0.models.setup_completed'] = PropTypes.exact({
|
|
105
|
-
discriminator: PropTypes.oneOf(['setup_completed']).isRequired,
|
|
106
|
-
placeholder: PropTypes.bool,
|
|
107
|
-
});
|
|
108
|
-
|
|
109
|
-
T['io.flow.organization.onboarding.state.v0.models.setup_blocked'] = PropTypes.exact({
|
|
110
|
-
discriminator: PropTypes.oneOf(['setup_blocked']).isRequired,
|
|
111
|
-
|
|
112
|
-
reasons: PropTypes.arrayOf(
|
|
113
|
-
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'],
|
|
114
|
-
).isRequired,
|
|
115
|
-
});
|
|
116
|
-
|
|
117
|
-
T['io.flow.organization.onboarding.state.v0.models.setup_in_progress'] = PropTypes.exact({
|
|
118
|
-
discriminator: PropTypes.oneOf(['setup_in_progress']).isRequired,
|
|
119
|
-
placeholder: PropTypes.bool,
|
|
120
|
-
});
|
|
121
|
-
|
|
122
|
-
T['io.flow.organization.onboarding.state.v0.models.in_compliance_review'] = PropTypes.exact({
|
|
123
|
-
discriminator: PropTypes.oneOf(['in_compliance_review']).isRequired,
|
|
124
|
-
placeholder: PropTypes.bool,
|
|
125
|
-
});
|
|
126
|
-
|
|
127
|
-
T['io.flow.organization.onboarding.state.v0.models.application_received'] = PropTypes.exact({
|
|
128
|
-
discriminator: PropTypes.oneOf(['application_received']).isRequired,
|
|
129
|
-
placeholder: PropTypes.bool,
|
|
130
|
-
});
|
|
131
|
-
|
|
132
99
|
T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'] = PropTypes.oneOf([
|
|
133
100
|
'merchant_ubo_is_pep',
|
|
134
101
|
'merchant_catalog_is_unsupportable',
|
|
135
102
|
'merchant_failed_kyb_review',
|
|
136
103
|
]);
|
|
137
104
|
|
|
138
|
-
T['io.flow.organization.onboarding.state.v0.models.merchant_rejected'] = PropTypes.exact({
|
|
139
|
-
discriminator: PropTypes.oneOf(['merchant_rejected']).isRequired,
|
|
140
|
-
reason: T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'].isRequired,
|
|
141
|
-
description: PropTypes.string,
|
|
142
|
-
});
|
|
143
|
-
|
|
144
105
|
T['io.flow.checkout.v0.models.checkout_urls'] = PropTypes.exact({
|
|
145
106
|
continue_shopping: PropTypes.string,
|
|
146
107
|
confirmation: PropTypes.string,
|
|
@@ -1908,22 +1869,6 @@ T['io.flow.shopify.markets.v0.models.shopify_order_metafield_form'] = PropTypes.
|
|
|
1908
1869
|
description: PropTypes.string,
|
|
1909
1870
|
});
|
|
1910
1871
|
|
|
1911
|
-
T['io.flow.shopify.markets.v0.models.shopify_order_origin_location'] = PropTypes.exact({
|
|
1912
|
-
id: PropTypes.number.isRequired,
|
|
1913
|
-
country_code: PropTypes.string.isRequired,
|
|
1914
|
-
province_code: PropTypes.string.isRequired,
|
|
1915
|
-
name: PropTypes.string.isRequired,
|
|
1916
|
-
address1: PropTypes.string.isRequired,
|
|
1917
|
-
address2: PropTypes.string.isRequired,
|
|
1918
|
-
city: PropTypes.string.isRequired,
|
|
1919
|
-
zip: PropTypes.string.isRequired,
|
|
1920
|
-
});
|
|
1921
|
-
|
|
1922
|
-
T['io.flow.shopify.markets.v0.models.shopify_order_property'] = PropTypes.exact({
|
|
1923
|
-
name: PropTypes.string.isRequired,
|
|
1924
|
-
value: PropTypes.string.isRequired,
|
|
1925
|
-
});
|
|
1926
|
-
|
|
1927
1872
|
T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_status'] = PropTypes.oneOf(['pending', 'open', 'success', 'cancelled', 'error', 'failure']);
|
|
1928
1873
|
|
|
1929
1874
|
T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_shipment_status'] = PropTypes.oneOf([
|
|
@@ -2037,6 +1982,91 @@ T['io.flow.shopify.markets.v0.models.fulfillment_order_line_item'] = PropTypes.e
|
|
|
2037
1982
|
variant_id: PropTypes.number,
|
|
2038
1983
|
});
|
|
2039
1984
|
|
|
1985
|
+
T['io.flow.shopify.markets.v0.models.shopify_payment_schedules'] = PropTypes.exact({
|
|
1986
|
+
amount: PropTypes.number,
|
|
1987
|
+
currency: PropTypes.string,
|
|
1988
|
+
issued_at: PropTypes.string,
|
|
1989
|
+
due_at: PropTypes.string,
|
|
1990
|
+
completed_at: PropTypes.string,
|
|
1991
|
+
expected_payment_method: PropTypes.string,
|
|
1992
|
+
});
|
|
1993
|
+
|
|
1994
|
+
T['io.flow.shopify.markets.v0.models.shopify_order_origin_location'] = PropTypes.exact({
|
|
1995
|
+
id: PropTypes.number.isRequired,
|
|
1996
|
+
country_code: PropTypes.string.isRequired,
|
|
1997
|
+
province_code: PropTypes.string.isRequired,
|
|
1998
|
+
name: PropTypes.string.isRequired,
|
|
1999
|
+
address1: PropTypes.string.isRequired,
|
|
2000
|
+
address2: PropTypes.string.isRequired,
|
|
2001
|
+
city: PropTypes.string.isRequired,
|
|
2002
|
+
zip: PropTypes.string.isRequired,
|
|
2003
|
+
});
|
|
2004
|
+
|
|
2005
|
+
T['io.flow.shopify.markets.v0.models.shopify_order_property'] = PropTypes.exact({
|
|
2006
|
+
name: PropTypes.string.isRequired,
|
|
2007
|
+
value: PropTypes.string.isRequired,
|
|
2008
|
+
});
|
|
2009
|
+
|
|
2010
|
+
T['io.flow.shopify.markets.v0.enums.shopify_tax_exemptions'] = PropTypes.oneOf([
|
|
2011
|
+
'EXEMPT_ALL',
|
|
2012
|
+
'CA_STATUS_CARD_EXEMPTION',
|
|
2013
|
+
'CA_DIPLOMAT_EXEMPTION',
|
|
2014
|
+
'CA_BC_RESELLER_EXEMPTION',
|
|
2015
|
+
'CA_MB_RESELLER_EXEMPTION',
|
|
2016
|
+
'CA_SK_RESELLER_EXEMPTION',
|
|
2017
|
+
'CA_BC_COMMERCIAL_FISHERY_EXEMPTION',
|
|
2018
|
+
'CA_MB_COMMERCIAL_FISHERY_EXEMPTION',
|
|
2019
|
+
'CA_NS_COMMERCIAL_FISHERY_EXEMPTION',
|
|
2020
|
+
'CA_PE_COMMERCIAL_FISHERY_EXEMPTION',
|
|
2021
|
+
'CA_SK_COMMERCIAL_FISHERY_EXEMPTION',
|
|
2022
|
+
'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION',
|
|
2023
|
+
'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION',
|
|
2024
|
+
'CA_BC_SUB_CONTRACTOR_EXEMPTION',
|
|
2025
|
+
'CA_SK_SUB_CONTRACTOR_EXEMPTION',
|
|
2026
|
+
'CA_BC_CONTRACTOR_EXEMPTION',
|
|
2027
|
+
'CA_SK_CONTRACTOR_EXEMPTION',
|
|
2028
|
+
'CA_ON_PURCHASE_EXEMPTION',
|
|
2029
|
+
'CA_MB_FARMER_EXEMPTION',
|
|
2030
|
+
'CA_NS_FARMER_EXEMPTION',
|
|
2031
|
+
'CA_SK_FARMER_EXEMPTION',
|
|
2032
|
+
]);
|
|
2033
|
+
|
|
2034
|
+
T['io.flow.shopify.markets.v0.enums.shopify_draft_order_status'] = PropTypes.oneOf([
|
|
2035
|
+
'open',
|
|
2036
|
+
'invoice_sent',
|
|
2037
|
+
'completed',
|
|
2038
|
+
'pending',
|
|
2039
|
+
'authorized',
|
|
2040
|
+
'partially_paid',
|
|
2041
|
+
'paid',
|
|
2042
|
+
'partially_refunded',
|
|
2043
|
+
'refunded',
|
|
2044
|
+
'voided',
|
|
2045
|
+
]);
|
|
2046
|
+
|
|
2047
|
+
T['io.flow.shopify.markets.v0.models.shopify_payment_terms'] = PropTypes.exact({
|
|
2048
|
+
amount: PropTypes.number,
|
|
2049
|
+
currency: PropTypes.string,
|
|
2050
|
+
payment_terms_name: PropTypes.string,
|
|
2051
|
+
payment_terms_type: PropTypes.number,
|
|
2052
|
+
due_in_days: PropTypes.number,
|
|
2053
|
+
payment_schedules: T['io.flow.shopify.markets.v0.models.shopify_payment_schedules'],
|
|
2054
|
+
});
|
|
2055
|
+
|
|
2056
|
+
T['io.flow.shopify.markets.v0.models.shopify_order_id'] = PropTypes.exact({
|
|
2057
|
+
id: PropTypes.number.isRequired,
|
|
2058
|
+
});
|
|
2059
|
+
|
|
2060
|
+
T['io.flow.shopify.markets.v0.enums.shopify_discount_value_type'] = PropTypes.oneOf(['fixed_amount', 'percentage']);
|
|
2061
|
+
|
|
2062
|
+
T['io.flow.shopify.markets.v0.models.shopify_applied_discount'] = PropTypes.exact({
|
|
2063
|
+
title: PropTypes.string,
|
|
2064
|
+
description: PropTypes.string,
|
|
2065
|
+
value: PropTypes.string,
|
|
2066
|
+
value_type: T['io.flow.shopify.markets.v0.enums.shopify_discount_value_type'],
|
|
2067
|
+
amount: PropTypes.number,
|
|
2068
|
+
});
|
|
2069
|
+
|
|
2040
2070
|
T['io.flow.shopify.markets.v0.models.shop'] = PropTypes.exact({
|
|
2041
2071
|
id: PropTypes.number.isRequired,
|
|
2042
2072
|
name: PropTypes.string.isRequired,
|
|
@@ -2731,7 +2761,6 @@ T['io.flow.shopify.external.v0.models.option'] = PropTypes.exact({
|
|
|
2731
2761
|
product_id: PropTypes.number.isRequired,
|
|
2732
2762
|
name: PropTypes.string.isRequired,
|
|
2733
2763
|
position: PropTypes.number.isRequired,
|
|
2734
|
-
values: PropTypes.arrayOf(PropTypes.string),
|
|
2735
2764
|
});
|
|
2736
2765
|
|
|
2737
2766
|
T['io.flow.shopify.external.v0.models.product_image'] = PropTypes.exact({
|
|
@@ -2967,15 +2996,7 @@ T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
|
|
|
2967
2996
|
});
|
|
2968
2997
|
|
|
2969
2998
|
T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
|
|
2970
|
-
|
|
2971
|
-
T['io.flow.adyen.v0.models.sdk_v3_on_complete_data'] = PropTypes.exact({
|
|
2972
|
-
details: PropTypes.object.isRequired,
|
|
2973
|
-
payment_data: PropTypes.string,
|
|
2974
|
-
});
|
|
2975
|
-
|
|
2976
|
-
T['io.flow.adyen.v0.models.sdk_v3_on_complete_result'] = PropTypes.exact({
|
|
2977
|
-
data: T['io.flow.adyen.v0.models.sdk_v3_on_complete_data'].isRequired,
|
|
2978
|
-
});
|
|
2999
|
+
T['io.flow.adyen.v0.enums.method'] = PropTypes.oneOf(['GET', 'POST']);
|
|
2979
3000
|
|
|
2980
3001
|
T['io.flow.adyen.v0.models.redirect_data'] = PropTypes.exact({
|
|
2981
3002
|
PaReq: PropTypes.string,
|
|
@@ -2983,6 +3004,12 @@ T['io.flow.adyen.v0.models.redirect_data'] = PropTypes.exact({
|
|
|
2983
3004
|
MD: PropTypes.string,
|
|
2984
3005
|
});
|
|
2985
3006
|
|
|
3007
|
+
T['io.flow.adyen.v0.models.redirect'] = PropTypes.exact({
|
|
3008
|
+
data: T['io.flow.adyen.v0.models.redirect_data'],
|
|
3009
|
+
method: T['io.flow.adyen.v0.enums.method'],
|
|
3010
|
+
url: PropTypes.string,
|
|
3011
|
+
});
|
|
3012
|
+
|
|
2986
3013
|
T['io.flow.adyen.v0.models.authentication'] = PropTypes.exact({
|
|
2987
3014
|
'threeds2.fingerprintToken': PropTypes.string,
|
|
2988
3015
|
'threeds2.challengeToken': PropTypes.string,
|
|
@@ -2991,55 +3018,12 @@ T['io.flow.adyen.v0.models.authentication'] = PropTypes.exact({
|
|
|
2991
3018
|
T['io.flow.adyen.v0.models.payment_response_additional_data'] = PropTypes.exact({
|
|
2992
3019
|
authCode: PropTypes.string,
|
|
2993
3020
|
avsResultRaw: PropTypes.string,
|
|
2994
|
-
avsResult: PropTypes.string,
|
|
2995
3021
|
cvcResultRaw: PropTypes.string,
|
|
2996
|
-
cvcResult: PropTypes.string,
|
|
2997
|
-
refusalReasonRaw: PropTypes.string,
|
|
2998
3022
|
liabilityShift: PropTypes.string,
|
|
2999
3023
|
threeDAuthenticated: PropTypes.string,
|
|
3000
3024
|
threeDAuthenticatedResponse: PropTypes.string,
|
|
3001
3025
|
threeDOffered: PropTypes.string,
|
|
3002
3026
|
threeDOfferedResponse: PropTypes.string,
|
|
3003
|
-
threeDSVersion: PropTypes.string,
|
|
3004
|
-
eci: PropTypes.string,
|
|
3005
|
-
scaExemptionRequested: PropTypes.string,
|
|
3006
|
-
paymentMethod: PropTypes.string,
|
|
3007
|
-
paymentMethodVariant: PropTypes.string,
|
|
3008
|
-
tokenTxVariant: PropTypes.string,
|
|
3009
|
-
acquirerCode: PropTypes.string,
|
|
3010
|
-
acquirerAccountCode: PropTypes.string,
|
|
3011
|
-
cardPaymentMethod: PropTypes.string,
|
|
3012
|
-
coBrandedWith: PropTypes.string,
|
|
3013
|
-
cardIssuingCountry: PropTypes.string,
|
|
3014
|
-
cardIssuingCurrency: PropTypes.string,
|
|
3015
|
-
cardIssuingBank: PropTypes.string,
|
|
3016
|
-
cardBin: PropTypes.string,
|
|
3017
|
-
issuerBin: PropTypes.string,
|
|
3018
|
-
cardSummary: PropTypes.string,
|
|
3019
|
-
untokenisedCardSummary: PropTypes.string,
|
|
3020
|
-
ownerName: PropTypes.string,
|
|
3021
|
-
bankName: PropTypes.string,
|
|
3022
|
-
issuerCountry: PropTypes.string,
|
|
3023
|
-
iban: PropTypes.string,
|
|
3024
|
-
bic: PropTypes.string,
|
|
3025
|
-
iDealConsumerAccountNumber: PropTypes.string,
|
|
3026
|
-
iDealConsumerBIC: PropTypes.string,
|
|
3027
|
-
iDealConsumerCity: PropTypes.string,
|
|
3028
|
-
iDealConsumerIBAN: PropTypes.string,
|
|
3029
|
-
iDealConsumerName: PropTypes.string,
|
|
3030
|
-
iDealTransactionId: PropTypes.string,
|
|
3031
|
-
'recurring.recurringDetailReference': PropTypes.string,
|
|
3032
|
-
'recurring.shopperReference': PropTypes.string,
|
|
3033
|
-
networkTxReference: PropTypes.string,
|
|
3034
|
-
PaymentAccountReference: PropTypes.string,
|
|
3035
|
-
'networkToken.available': PropTypes.string,
|
|
3036
|
-
'networkToken.bin': PropTypes.string,
|
|
3037
|
-
'networkToken.tokenSummary': PropTypes.string,
|
|
3038
|
-
});
|
|
3039
|
-
|
|
3040
|
-
T['io.flow.adyen.v0.models.applepay'] = PropTypes.exact({
|
|
3041
|
-
type: PropTypes.oneOf(['applepay']).isRequired,
|
|
3042
|
-
applePayToken: PropTypes.string.isRequired,
|
|
3043
3027
|
});
|
|
3044
3028
|
|
|
3045
3029
|
T['io.flow.adyen.v0.models.scheme'] = PropTypes.exact({
|
|
@@ -3049,16 +3033,6 @@ T['io.flow.adyen.v0.models.scheme'] = PropTypes.exact({
|
|
|
3049
3033
|
holderName: PropTypes.string.isRequired,
|
|
3050
3034
|
number: PropTypes.string.isRequired,
|
|
3051
3035
|
cvc: PropTypes.string,
|
|
3052
|
-
storedPaymentMethodId: PropTypes.string,
|
|
3053
|
-
networkPaymentReference: PropTypes.string,
|
|
3054
|
-
});
|
|
3055
|
-
|
|
3056
|
-
T['io.flow.adyen.v0.enums.http_redirect_method'] = PropTypes.oneOf(['GET', 'POST']);
|
|
3057
|
-
|
|
3058
|
-
T['io.flow.adyen.v0.models.redirect'] = PropTypes.exact({
|
|
3059
|
-
data: T['io.flow.adyen.v0.models.redirect_data'],
|
|
3060
|
-
method: T['io.flow.adyen.v0.enums.http_redirect_method'],
|
|
3061
|
-
url: PropTypes.string,
|
|
3062
3036
|
});
|
|
3063
3037
|
|
|
3064
3038
|
T['io.flow.adyen.v0.enums.channel'] = PropTypes.oneOf(['web']);
|
|
@@ -3068,20 +3042,15 @@ T['io.flow.adyen.v0.models.threeds_additional_data'] = PropTypes.exact({
|
|
|
3068
3042
|
allow3DS2: PropTypes.bool,
|
|
3069
3043
|
});
|
|
3070
3044
|
|
|
3071
|
-
T['io.flow.adyen.v0.unions.payment_method_data'] = PropTypes.oneOfType(
|
|
3072
|
-
[T['io.flow.adyen.v0.models.scheme'], T['io.flow.adyen.v0.models.applepay']],
|
|
3073
|
-
);
|
|
3045
|
+
T['io.flow.adyen.v0.unions.payment_method_data'] = PropTypes.oneOfType([T['io.flow.adyen.v0.models.scheme']]);
|
|
3074
3046
|
|
|
3075
3047
|
T['io.flow.adyen.v0.enums.payment_method'] = PropTypes.oneOf([
|
|
3076
3048
|
'ach',
|
|
3077
3049
|
'alipay',
|
|
3078
|
-
'alipay_hk',
|
|
3079
3050
|
'alipay_wap',
|
|
3080
3051
|
'amex',
|
|
3081
3052
|
'bankTransfer_IBAN',
|
|
3082
3053
|
'bcmc',
|
|
3083
|
-
'bcmc_mobile',
|
|
3084
|
-
'blik',
|
|
3085
3054
|
'cartebancaire',
|
|
3086
3055
|
'cup',
|
|
3087
3056
|
'diners',
|
|
@@ -3092,27 +3061,21 @@ T['io.flow.adyen.v0.enums.payment_method'] = PropTypes.oneOf([
|
|
|
3092
3061
|
'dragonpay_gcash',
|
|
3093
3062
|
'dragonpay_otc_banking',
|
|
3094
3063
|
'ebanking_FI',
|
|
3095
|
-
'gcash',
|
|
3096
3064
|
'giropay',
|
|
3097
3065
|
'ideal',
|
|
3098
3066
|
'interac',
|
|
3099
3067
|
'jcb',
|
|
3100
|
-
'kakaopay',
|
|
3101
3068
|
'kcp_banktransfer',
|
|
3102
3069
|
'kcp_creditcard',
|
|
3103
3070
|
'kcp_payco',
|
|
3104
3071
|
'maestro',
|
|
3105
|
-
'mbway',
|
|
3106
3072
|
'mc',
|
|
3107
|
-
'mobilepay',
|
|
3108
3073
|
'molpay_points',
|
|
3109
3074
|
'multibanco',
|
|
3110
|
-
'onlineBanking_PL',
|
|
3111
3075
|
'qiwiwallet',
|
|
3112
3076
|
'sepadirectdebit',
|
|
3113
3077
|
'trustly',
|
|
3114
3078
|
'trustpay',
|
|
3115
|
-
'twint',
|
|
3116
3079
|
'unionpay',
|
|
3117
3080
|
'visa',
|
|
3118
3081
|
'wechatpay',
|
|
@@ -3311,12 +3274,7 @@ T['io.flow.adyen.v0.models.payment_request'] = PropTypes.exact({
|
|
|
3311
3274
|
browserInfo: T['io.flow.adyen.v0.unions.browser_info'],
|
|
3312
3275
|
origin: PropTypes.string,
|
|
3313
3276
|
channel: T['io.flow.adyen.v0.enums.channel'],
|
|
3314
|
-
|
|
3315
|
-
mcc: PropTypes.string,
|
|
3316
|
-
metadata: PropTypes.object,
|
|
3317
|
-
redirectToIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
|
|
3318
|
-
redirectFromIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
|
|
3319
|
-
storePaymentMethod: PropTypes.bool,
|
|
3277
|
+
returnURL: PropTypes.string,
|
|
3320
3278
|
});
|
|
3321
3279
|
|
|
3322
3280
|
T['io.flow.adyen.v0.models.modification_request'] = PropTypes.exact({
|
|
@@ -3372,8 +3330,6 @@ T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
|
|
|
3372
3330
|
browserInfo: T['io.flow.adyen.v0.unions.browser_info'],
|
|
3373
3331
|
threeDS2RequestData: T['io.flow.adyen.v0.models.threeds2_request_data'],
|
|
3374
3332
|
recurringProcessingModel: T['io.flow.adyen.v0.enums.recurring_processing_model'],
|
|
3375
|
-
mcc: PropTypes.string,
|
|
3376
|
-
metadata: PropTypes.object,
|
|
3377
3333
|
});
|
|
3378
3334
|
|
|
3379
3335
|
T['io.flow.brickftp.v0.models.file_summary'] = PropTypes.exact({
|
|
@@ -6633,17 +6589,16 @@ T['io.flow.internal.v0.unions.spot_rate_metadata'] = PropTypes.oneOfType([
|
|
|
6633
6589
|
T['io.flow.internal.v0.models.spot_rate_metadata_rate'],
|
|
6634
6590
|
]);
|
|
6635
6591
|
|
|
6592
|
+
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'] = PropTypes.exact({
|
|
6593
|
+
discriminator: PropTypes.oneOf(['order_cancellation']).isRequired,
|
|
6594
|
+
order_cancellation_id: PropTypes.string.isRequired,
|
|
6595
|
+
});
|
|
6596
|
+
|
|
6636
6597
|
T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'] = PropTypes.exact({
|
|
6637
6598
|
discriminator: PropTypes.oneOf(['shipping_notification']).isRequired,
|
|
6638
6599
|
shipping_notification_id: PropTypes.string.isRequired,
|
|
6639
6600
|
});
|
|
6640
6601
|
|
|
6641
|
-
T['io.flow.internal.v0.models.proof_of_posting_fully_refunded'] = PropTypes.exact({
|
|
6642
|
-
discriminator: PropTypes.oneOf(['fully_refunded']).isRequired,
|
|
6643
|
-
capture_id: PropTypes.string.isRequired,
|
|
6644
|
-
refund_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
6645
|
-
});
|
|
6646
|
-
|
|
6647
6602
|
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'] = PropTypes.exact({
|
|
6648
6603
|
discriminator: PropTypes.oneOf(['external']).isRequired,
|
|
6649
6604
|
external_fulfillment_proof_id: PropTypes.string.isRequired,
|
|
@@ -6657,8 +6612,8 @@ T['io.flow.internal.v0.models.proof_of_posting_fulfilled'] = PropTypes.exact({
|
|
|
6657
6612
|
T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
6658
6613
|
T['io.flow.internal.v0.models.proof_of_posting_fulfilled'],
|
|
6659
6614
|
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
6660
|
-
T['io.flow.internal.v0.models.proof_of_posting_fully_refunded'],
|
|
6661
6615
|
T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
|
|
6616
|
+
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
6662
6617
|
]);
|
|
6663
6618
|
|
|
6664
6619
|
T['io.flow.internal.v0.models.online_authorization_completed'] = PropTypes.exact({
|
|
@@ -7365,6 +7320,14 @@ T['io.flow.internal.v0.unions.feature_task_data'] = PropTypes.oneOfType([
|
|
|
7365
7320
|
T['io.flow.internal.v0.models.feature_task_data_sync_organization'],
|
|
7366
7321
|
]);
|
|
7367
7322
|
|
|
7323
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_deleted'] = PropTypes.exact({
|
|
7324
|
+
discriminator: PropTypes.oneOf(['shopify_markets_shop_deleted']).isRequired,
|
|
7325
|
+
event_id: PropTypes.string.isRequired,
|
|
7326
|
+
timestamp: PropTypes.string.isRequired,
|
|
7327
|
+
organization: PropTypes.string.isRequired,
|
|
7328
|
+
id: PropTypes.string.isRequired,
|
|
7329
|
+
});
|
|
7330
|
+
|
|
7368
7331
|
T['io.flow.internal.v0.models.shopify_shop_deleted'] = PropTypes.exact({
|
|
7369
7332
|
discriminator: PropTypes.oneOf(['shopify_shop_deleted']).isRequired,
|
|
7370
7333
|
event_id: PropTypes.string.isRequired,
|
|
@@ -7846,6 +7809,13 @@ T['io.flow.internal.v0.models.calculator_organization_settings_deleted'] = PropT
|
|
|
7846
7809
|
id: PropTypes.string.isRequired,
|
|
7847
7810
|
});
|
|
7848
7811
|
|
|
7812
|
+
T['io.flow.internal.v0.models.duty_transaction_deleted'] = PropTypes.exact({
|
|
7813
|
+
discriminator: PropTypes.oneOf(['duty_transaction_deleted']).isRequired,
|
|
7814
|
+
event_id: PropTypes.string.isRequired,
|
|
7815
|
+
timestamp: PropTypes.string.isRequired,
|
|
7816
|
+
id: PropTypes.string.isRequired,
|
|
7817
|
+
});
|
|
7818
|
+
|
|
7849
7819
|
T['io.flow.internal.v0.models.tax_transaction_deleted'] = PropTypes.exact({
|
|
7850
7820
|
discriminator: PropTypes.oneOf(['tax_transaction_deleted']).isRequired,
|
|
7851
7821
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8173,6 +8143,8 @@ T['io.flow.internal.v0.models.usd_spot_rate_upserted'] = PropTypes.exact({
|
|
|
8173
8143
|
usd_spot_rate: T['io.flow.internal.v0.models.usd_spot_rate'].isRequired,
|
|
8174
8144
|
});
|
|
8175
8145
|
|
|
8146
|
+
T['io.flow.internal.v0.enums.adjustment_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal']);
|
|
8147
|
+
|
|
8176
8148
|
T['io.flow.internal.v0.models.processing_transaction_reference'] = PropTypes.exact({
|
|
8177
8149
|
id: PropTypes.string.isRequired,
|
|
8178
8150
|
});
|
|
@@ -9704,6 +9676,25 @@ T['io.flow.export.v0.models.order_export_type'] = PropTypes.exact({
|
|
|
9704
9676
|
sort: PropTypes.string,
|
|
9705
9677
|
});
|
|
9706
9678
|
|
|
9679
|
+
T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'] = PropTypes.exact({
|
|
9680
|
+
discriminator: PropTypes.oneOf(['fully_refunded_not_fulfilled']).isRequired,
|
|
9681
|
+
placeholder: PropTypes.string,
|
|
9682
|
+
});
|
|
9683
|
+
|
|
9684
|
+
T['io.flow.internal.v0.models.order_cancellation_evidence_manual'] = PropTypes.exact({
|
|
9685
|
+
discriminator: PropTypes.oneOf(['manual']).isRequired,
|
|
9686
|
+
description: PropTypes.string.isRequired,
|
|
9687
|
+
});
|
|
9688
|
+
|
|
9689
|
+
T['io.flow.internal.v0.models.order_cancellation_form'] = PropTypes.exact({
|
|
9690
|
+
evidence: T['io.flow.internal.v0.models.order_cancellation_evidence_manual'].isRequired,
|
|
9691
|
+
});
|
|
9692
|
+
|
|
9693
|
+
T['io.flow.internal.v0.unions.order_cancellation_evidence'] = PropTypes.oneOfType([
|
|
9694
|
+
T['io.flow.internal.v0.models.order_cancellation_evidence_manual'],
|
|
9695
|
+
T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'],
|
|
9696
|
+
]);
|
|
9697
|
+
|
|
9707
9698
|
T['io.flow.internal.v0.enums.order_attribute_intent'] = PropTypes.oneOf(['discount_code']);
|
|
9708
9699
|
T['io.flow.common.v0.enums.attribute_data_type'] = PropTypes.oneOf(['boolean', 'integer', 'decimal', 'string', 'json_array']);
|
|
9709
9700
|
|
|
@@ -9769,8 +9760,41 @@ T['io.flow.internal.v0.models.localizable_content_reference'] = PropTypes.exact(
|
|
|
9769
9760
|
|
|
9770
9761
|
T['io.flow.internal.v0.enums.prompt_target'] = PropTypes.oneOf(['browse', 'checkout']);
|
|
9771
9762
|
|
|
9763
|
+
T['io.flow.organization.onboarding.state.v0.models.merchant_activated'] = PropTypes.exact({
|
|
9764
|
+
discriminator: PropTypes.oneOf(['merchant_activated']).isRequired,
|
|
9765
|
+
placeholder: PropTypes.bool,
|
|
9766
|
+
});
|
|
9767
|
+
|
|
9768
|
+
T['io.flow.organization.onboarding.state.v0.models.setup_completed'] = PropTypes.exact({
|
|
9769
|
+
discriminator: PropTypes.oneOf(['setup_completed']).isRequired,
|
|
9770
|
+
placeholder: PropTypes.bool,
|
|
9771
|
+
});
|
|
9772
|
+
|
|
9773
|
+
T['io.flow.organization.onboarding.state.v0.models.setup_blocked'] = PropTypes.exact({
|
|
9774
|
+
discriminator: PropTypes.oneOf(['setup_blocked']).isRequired,
|
|
9775
|
+
|
|
9776
|
+
reasons: PropTypes.arrayOf(
|
|
9777
|
+
T['io.flow.organization.onboarding.state.v0.enums.onboarding_blocked_reason'],
|
|
9778
|
+
).isRequired,
|
|
9779
|
+
});
|
|
9780
|
+
|
|
9781
|
+
T['io.flow.organization.onboarding.state.v0.models.merchant_rejected'] = PropTypes.exact({
|
|
9782
|
+
discriminator: PropTypes.oneOf(['merchant_rejected']).isRequired,
|
|
9783
|
+
reason: T['io.flow.organization.onboarding.state.v0.enums.merchant_rejected_reason'].isRequired,
|
|
9784
|
+
description: PropTypes.string,
|
|
9785
|
+
});
|
|
9786
|
+
|
|
9787
|
+
T['io.flow.organization.onboarding.state.v0.models.setup_in_progress'] = PropTypes.exact({
|
|
9788
|
+
discriminator: PropTypes.oneOf(['setup_in_progress']).isRequired,
|
|
9789
|
+
placeholder: PropTypes.bool,
|
|
9790
|
+
});
|
|
9791
|
+
|
|
9792
|
+
T['io.flow.organization.onboarding.state.v0.models.in_compliance_review'] = PropTypes.exact({
|
|
9793
|
+
discriminator: PropTypes.oneOf(['in_compliance_review']).isRequired,
|
|
9794
|
+
placeholder: PropTypes.bool,
|
|
9795
|
+
});
|
|
9796
|
+
|
|
9772
9797
|
T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'] = PropTypes.oneOfType([
|
|
9773
|
-
T['io.flow.organization.onboarding.state.v0.models.application_received'],
|
|
9774
9798
|
T['io.flow.organization.onboarding.state.v0.models.in_compliance_review'],
|
|
9775
9799
|
T['io.flow.organization.onboarding.state.v0.models.setup_in_progress'],
|
|
9776
9800
|
T['io.flow.organization.onboarding.state.v0.models.merchant_rejected'],
|
|
@@ -9784,6 +9808,18 @@ T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition']
|
|
|
9784
9808
|
started_at: PropTypes.string.isRequired,
|
|
9785
9809
|
});
|
|
9786
9810
|
|
|
9811
|
+
T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
9812
|
+
age: PropTypes.number.isRequired,
|
|
9813
|
+
compliance_approved: PropTypes.bool.isRequired,
|
|
9814
|
+
compliance_full_review_required: PropTypes.bool.isRequired,
|
|
9815
|
+
application_received: PropTypes.string.isRequired,
|
|
9816
|
+
legal_name: PropTypes.string.isRequired,
|
|
9817
|
+
shop_name: PropTypes.string.isRequired,
|
|
9818
|
+
organization_id: PropTypes.string.isRequired,
|
|
9819
|
+
onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
9820
|
+
gmv: PropTypes.number.isRequired,
|
|
9821
|
+
});
|
|
9822
|
+
|
|
9787
9823
|
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
9788
9824
|
|
|
9789
9825
|
T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
|
|
@@ -9961,7 +9997,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_duty'] = PropTypes.exact({
|
|
|
9961
9997
|
T['io.flow.shopify.markets.v0.models.shopify_order_shipping_line'] = PropTypes.exact({
|
|
9962
9998
|
code: PropTypes.string,
|
|
9963
9999
|
price: PropTypes.string.isRequired,
|
|
9964
|
-
source: PropTypes.string
|
|
10000
|
+
source: PropTypes.string,
|
|
9965
10001
|
title: PropTypes.string.isRequired,
|
|
9966
10002
|
tax_lines: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_tax_line']).isRequired,
|
|
9967
10003
|
carrier_identifier: PropTypes.string,
|
|
@@ -10110,6 +10146,41 @@ T['io.flow.shopify.markets.v0.models.shopify_order_customer'] = PropTypes.exact(
|
|
|
10110
10146
|
default_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
|
|
10111
10147
|
});
|
|
10112
10148
|
|
|
10149
|
+
T['io.flow.shopify.markets.v0.models.shopify_draft_order'] = PropTypes.exact({
|
|
10150
|
+
applied_discount: T['io.flow.shopify.markets.v0.models.shopify_applied_discount'].isRequired,
|
|
10151
|
+
billing_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
|
|
10152
|
+
completed_at: PropTypes.string,
|
|
10153
|
+
created_at: PropTypes.string,
|
|
10154
|
+
currency: PropTypes.string,
|
|
10155
|
+
customer: T['io.flow.shopify.markets.v0.models.shopify_order_customer'],
|
|
10156
|
+
email: PropTypes.string,
|
|
10157
|
+
id: PropTypes.number,
|
|
10158
|
+
invoice_sent_at: PropTypes.string,
|
|
10159
|
+
invoice_url: PropTypes.string,
|
|
10160
|
+
line_items: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_line_item']).isRequired,
|
|
10161
|
+
name: PropTypes.string,
|
|
10162
|
+
note: PropTypes.string,
|
|
10163
|
+
note_attributes: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_attribute']).isRequired,
|
|
10164
|
+
order_id: T['io.flow.shopify.markets.v0.models.shopify_order_id'].isRequired,
|
|
10165
|
+
payment_terms: T['io.flow.shopify.markets.v0.models.shopify_payment_terms'].isRequired,
|
|
10166
|
+
shipping_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
|
|
10167
|
+
shipping_lines: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_shipping_line']).isRequired,
|
|
10168
|
+
source_name: PropTypes.string,
|
|
10169
|
+
subtotal_price: PropTypes.string,
|
|
10170
|
+
status: T['io.flow.shopify.markets.v0.enums.shopify_draft_order_status'],
|
|
10171
|
+
tags: PropTypes.string,
|
|
10172
|
+
tax_exemptions: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.enums.shopify_tax_exemptions']),
|
|
10173
|
+
tax_lines: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_tax_line']).isRequired,
|
|
10174
|
+
taxes_included: PropTypes.bool.isRequired,
|
|
10175
|
+
total_price: PropTypes.string,
|
|
10176
|
+
total_tax: PropTypes.string,
|
|
10177
|
+
updated_at: PropTypes.string,
|
|
10178
|
+
});
|
|
10179
|
+
|
|
10180
|
+
T['io.flow.shopify.markets.v0.models.shopify_draft_orders_wrapper'] = PropTypes.exact({
|
|
10181
|
+
draft_orders: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_draft_order']).isRequired,
|
|
10182
|
+
});
|
|
10183
|
+
|
|
10113
10184
|
T['io.flow.shopify.markets.v0.models.shopify_order'] = PropTypes.exact({
|
|
10114
10185
|
id: PropTypes.number.isRequired,
|
|
10115
10186
|
order_number: PropTypes.number.isRequired,
|
|
@@ -10184,11 +10255,6 @@ T['io.flow.shopify.markets.v0.models.shopify_order_wrapper'] = PropTypes.exact({
|
|
|
10184
10255
|
order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
10185
10256
|
});
|
|
10186
10257
|
|
|
10187
|
-
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review_order_details'] = PropTypes.exact({
|
|
10188
|
-
organization: PropTypes.string.isRequired,
|
|
10189
|
-
shopify_order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
10190
|
-
});
|
|
10191
|
-
|
|
10192
10258
|
T['io.flow.internal.v0.models.shopify_markets_order'] = PropTypes.exact({
|
|
10193
10259
|
id: PropTypes.string.isRequired,
|
|
10194
10260
|
model: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
@@ -11234,6 +11300,7 @@ T['io.flow.internal.v0.models.heap_card_error'] = PropTypes.exact({
|
|
|
11234
11300
|
T['io.flow.internal.v0.models.harmonization_ml_model_summary'] = PropTypes.exact({
|
|
11235
11301
|
id: PropTypes.string,
|
|
11236
11302
|
customs_description: PropTypes.string,
|
|
11303
|
+
score: PropTypes.number,
|
|
11237
11304
|
});
|
|
11238
11305
|
|
|
11239
11306
|
T['io.flow.internal.v0.models.google_linker'] = PropTypes.exact({
|
|
@@ -12248,6 +12315,27 @@ T['io.flow.reference.v0.models.region'] = PropTypes.exact({
|
|
|
12248
12315
|
timezones: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12249
12316
|
});
|
|
12250
12317
|
|
|
12318
|
+
T['io.flow.internal.v0.enums.erp_file_type'] = PropTypes.oneOf(['vendor']);
|
|
12319
|
+
|
|
12320
|
+
T['io.flow.internal.v0.models.erp_priority_file_form'] = PropTypes.exact({
|
|
12321
|
+
type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
|
|
12322
|
+
url: PropTypes.string.isRequired,
|
|
12323
|
+
});
|
|
12324
|
+
|
|
12325
|
+
T['io.flow.internal.v0.models.erp_priority_file'] = PropTypes.exact({
|
|
12326
|
+
id: PropTypes.string.isRequired,
|
|
12327
|
+
type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
|
|
12328
|
+
url: PropTypes.string.isRequired,
|
|
12329
|
+
created_at: PropTypes.string.isRequired,
|
|
12330
|
+
});
|
|
12331
|
+
|
|
12332
|
+
T['io.flow.internal.v0.models.erp_flow_file'] = PropTypes.exact({
|
|
12333
|
+
id: PropTypes.string.isRequired,
|
|
12334
|
+
type: T['io.flow.internal.v0.enums.erp_file_type'].isRequired,
|
|
12335
|
+
url: PropTypes.string.isRequired,
|
|
12336
|
+
created_at: PropTypes.string.isRequired,
|
|
12337
|
+
});
|
|
12338
|
+
|
|
12251
12339
|
T['io.flow.internal.v0.models.key_reference'] = PropTypes.exact({
|
|
12252
12340
|
id: PropTypes.string.isRequired,
|
|
12253
12341
|
});
|
|
@@ -12562,12 +12650,13 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
12562
12650
|
'refund',
|
|
12563
12651
|
'dispute',
|
|
12564
12652
|
'adjustment',
|
|
12653
|
+
'reversal',
|
|
12565
12654
|
'shipping_label',
|
|
12566
12655
|
'shipping_label_service',
|
|
12567
12656
|
'shipping_label_revenue_share',
|
|
12568
12657
|
'platform_fee',
|
|
12569
12658
|
'tax',
|
|
12570
|
-
'
|
|
12659
|
+
'duty',
|
|
12571
12660
|
'other_adjustment',
|
|
12572
12661
|
'tax_adjustment',
|
|
12573
12662
|
'channel',
|
|
@@ -17223,6 +17312,14 @@ T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
|
17223
17312
|
access_token_masked: PropTypes.string,
|
|
17224
17313
|
});
|
|
17225
17314
|
|
|
17315
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'] = PropTypes.exact({
|
|
17316
|
+
discriminator: PropTypes.oneOf(['shopify_markets_shop_upserted']).isRequired,
|
|
17317
|
+
event_id: PropTypes.string.isRequired,
|
|
17318
|
+
timestamp: PropTypes.string.isRequired,
|
|
17319
|
+
organization: PropTypes.string.isRequired,
|
|
17320
|
+
shopify_markets_shop: T['io.flow.internal.v0.models.shopify_markets_shop'].isRequired,
|
|
17321
|
+
});
|
|
17322
|
+
|
|
17226
17323
|
T['io.flow.internal.v0.models.internal_channel_rate'] = PropTypes.exact({
|
|
17227
17324
|
id: PropTypes.string.isRequired,
|
|
17228
17325
|
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
@@ -17666,6 +17763,8 @@ T['io.flow.internal.v0.models.harmonization_item_classification'] = PropTypes.ex
|
|
|
17666
17763
|
created_at: PropTypes.string.isRequired,
|
|
17667
17764
|
updated_at: PropTypes.string.isRequired,
|
|
17668
17765
|
updated_by_user_id: PropTypes.string.isRequired,
|
|
17766
|
+
hs6_code: PropTypes.string,
|
|
17767
|
+
hs6_description: PropTypes.string,
|
|
17669
17768
|
});
|
|
17670
17769
|
|
|
17671
17770
|
T['io.flow.internal.v0.models.harmonization_item_classification_upserted'] = PropTypes.exact({
|
|
@@ -18322,6 +18421,16 @@ T['io.flow.session.v0.models.organization_session_authorization'] = PropTypes.ex
|
|
|
18322
18421
|
|
|
18323
18422
|
T['io.flow.session.v0.unions.session_authorization'] = PropTypes.oneOfType([T['io.flow.session.v0.models.organization_session_authorization']]);
|
|
18324
18423
|
|
|
18424
|
+
T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
|
|
18425
|
+
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
18426
|
+
|
|
18427
|
+
transitions: PropTypes.arrayOf(
|
|
18428
|
+
T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
|
|
18429
|
+
).isRequired,
|
|
18430
|
+
|
|
18431
|
+
current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
18432
|
+
});
|
|
18433
|
+
|
|
18325
18434
|
T['io.flow.checkout.v0.models.checkout_token'] = PropTypes.exact({
|
|
18326
18435
|
id: PropTypes.string.isRequired,
|
|
18327
18436
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -18410,13 +18519,11 @@ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'] = PropTypes.exa
|
|
|
18410
18519
|
organization_reference: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
18411
18520
|
order_number: PropTypes.string.isRequired,
|
|
18412
18521
|
monitor: T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'].isRequired,
|
|
18413
|
-
created_at: PropTypes.string.isRequired,
|
|
18414
18522
|
});
|
|
18415
18523
|
|
|
18416
18524
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'] = PropTypes.exact({
|
|
18417
18525
|
id: PropTypes.string.isRequired,
|
|
18418
18526
|
order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
|
|
18419
|
-
order_details: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review_order_details'].isRequired,
|
|
18420
18527
|
status: T['io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status'].isRequired,
|
|
18421
18528
|
});
|
|
18422
18529
|
|
|
@@ -18499,28 +18606,6 @@ T['io.flow.internal.v0.models.organization_boolean_value_deleted'] = PropTypes.e
|
|
|
18499
18606
|
value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
|
|
18500
18607
|
});
|
|
18501
18608
|
|
|
18502
|
-
T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
|
|
18503
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
18504
|
-
|
|
18505
|
-
transitions: PropTypes.arrayOf(
|
|
18506
|
-
T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
|
|
18507
|
-
).isRequired,
|
|
18508
|
-
|
|
18509
|
-
current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
18510
|
-
});
|
|
18511
|
-
|
|
18512
|
-
T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
18513
|
-
age: PropTypes.number.isRequired,
|
|
18514
|
-
compliance_approved: PropTypes.bool.isRequired,
|
|
18515
|
-
compliance_full_review_required: PropTypes.bool.isRequired,
|
|
18516
|
-
application_received: PropTypes.string.isRequired,
|
|
18517
|
-
legal_name: PropTypes.string.isRequired,
|
|
18518
|
-
shop_name: PropTypes.string.isRequired,
|
|
18519
|
-
organization_id: PropTypes.string.isRequired,
|
|
18520
|
-
onboarding_state: T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'].isRequired,
|
|
18521
|
-
gmv: PropTypes.number.isRequired,
|
|
18522
|
-
});
|
|
18523
|
-
|
|
18524
18609
|
T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
18525
18610
|
discriminator: PropTypes.oneOf(['organization']).isRequired,
|
|
18526
18611
|
id: PropTypes.string.isRequired,
|
|
@@ -18602,6 +18687,12 @@ T['io.flow.internal.v0.models.billing_order_transaction_order_reference'] = Prop
|
|
|
18602
18687
|
number: PropTypes.string.isRequired,
|
|
18603
18688
|
});
|
|
18604
18689
|
|
|
18690
|
+
T['io.flow.internal.v0.models.order_cancellation'] = PropTypes.exact({
|
|
18691
|
+
id: PropTypes.string.isRequired,
|
|
18692
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
18693
|
+
evidence: T['io.flow.internal.v0.unions.order_cancellation_evidence'].isRequired,
|
|
18694
|
+
});
|
|
18695
|
+
|
|
18605
18696
|
T['io.flow.internal.v0.models.billing_order_destination'] = PropTypes.exact({
|
|
18606
18697
|
city: PropTypes.string,
|
|
18607
18698
|
province: PropTypes.string,
|
|
@@ -22031,6 +22122,7 @@ T['io.flow.internal.v0.models.transaction_adjustment_form'] = PropTypes.exact({
|
|
|
22031
22122
|
original_transaction_id: PropTypes.string.isRequired,
|
|
22032
22123
|
description: PropTypes.string.isRequired,
|
|
22033
22124
|
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
22125
|
+
type: T['io.flow.internal.v0.enums.adjustment_transaction_type'],
|
|
22034
22126
|
});
|
|
22035
22127
|
|
|
22036
22128
|
T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
@@ -22247,6 +22339,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
22247
22339
|
'invoice',
|
|
22248
22340
|
'transfer',
|
|
22249
22341
|
'adjustment',
|
|
22342
|
+
'reversal',
|
|
22250
22343
|
'capture',
|
|
22251
22344
|
'refund',
|
|
22252
22345
|
'virtual_card_capture',
|
|
@@ -22260,6 +22353,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
22260
22353
|
'order',
|
|
22261
22354
|
'channel_billed',
|
|
22262
22355
|
'tax',
|
|
22356
|
+
'duty',
|
|
22263
22357
|
]);
|
|
22264
22358
|
|
|
22265
22359
|
T['io.flow.internal.v0.models.account_orders_export_request'] = PropTypes.exact({
|
|
@@ -22350,6 +22444,7 @@ T['io.flow.fulfillment.v0.models.delivery_option_cost_component'] = PropTypes.ex
|
|
|
22350
22444
|
|
|
22351
22445
|
T['io.flow.fulfillment.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
|
|
22352
22446
|
source: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'].isRequired,
|
|
22447
|
+
ratecard_id: PropTypes.string,
|
|
22353
22448
|
currency: PropTypes.string.isRequired,
|
|
22354
22449
|
amount: PropTypes.number.isRequired,
|
|
22355
22450
|
label: PropTypes.string.isRequired,
|
|
@@ -23138,18 +23233,24 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
|
|
|
23138
23233
|
gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
|
|
23139
23234
|
});
|
|
23140
23235
|
|
|
23141
|
-
T['io.flow.internal.v0.models.
|
|
23236
|
+
T['io.flow.internal.v0.models.duty_transaction'] = PropTypes.exact({
|
|
23237
|
+
discriminator: PropTypes.oneOf(['duty_transaction']).isRequired,
|
|
23238
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
23239
|
+
id: PropTypes.string.isRequired,
|
|
23240
|
+
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
23241
|
+
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
23242
|
+
posted_at: PropTypes.string,
|
|
23142
23243
|
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
23143
|
-
description: PropTypes.string,
|
|
23244
|
+
description: PropTypes.string.isRequired,
|
|
23245
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
23246
|
+
created_at: PropTypes.string.isRequired,
|
|
23144
23247
|
});
|
|
23145
23248
|
|
|
23146
|
-
T['io.flow.internal.v0.models.
|
|
23147
|
-
|
|
23148
|
-
|
|
23149
|
-
|
|
23150
|
-
|
|
23151
|
-
duty_guarantee: T['io.flow.internal.v0.models.fee'],
|
|
23152
|
-
transfer: T['io.flow.internal.v0.models.fee'],
|
|
23249
|
+
T['io.flow.internal.v0.models.duty_transaction_upserted'] = PropTypes.exact({
|
|
23250
|
+
discriminator: PropTypes.oneOf(['duty_transaction_upserted']).isRequired,
|
|
23251
|
+
event_id: PropTypes.string.isRequired,
|
|
23252
|
+
timestamp: PropTypes.string.isRequired,
|
|
23253
|
+
duty_transaction: T['io.flow.internal.v0.models.duty_transaction'].isRequired,
|
|
23153
23254
|
});
|
|
23154
23255
|
|
|
23155
23256
|
T['io.flow.internal.v0.models.dispute_transaction'] = PropTypes.exact({
|
|
@@ -23415,9 +23516,24 @@ T['io.flow.internal.v0.unions.checkout_info'] = PropTypes.oneOfType([
|
|
|
23415
23516
|
T['io.flow.internal.v0.models.checkout_info_translations'],
|
|
23416
23517
|
]);
|
|
23417
23518
|
|
|
23519
|
+
T['io.flow.internal.v0.models.fee'] = PropTypes.exact({
|
|
23520
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
23521
|
+
description: PropTypes.string,
|
|
23522
|
+
});
|
|
23523
|
+
|
|
23524
|
+
T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
23525
|
+
processing: T['io.flow.internal.v0.models.fee'],
|
|
23526
|
+
rate_lock: T['io.flow.internal.v0.models.fee'].isRequired,
|
|
23527
|
+
mor: T['io.flow.internal.v0.models.fee'],
|
|
23528
|
+
fx: T['io.flow.internal.v0.models.fee'],
|
|
23529
|
+
duty_guarantee: T['io.flow.internal.v0.models.fee'],
|
|
23530
|
+
transfer: T['io.flow.internal.v0.models.fee'],
|
|
23531
|
+
});
|
|
23532
|
+
|
|
23418
23533
|
T['io.flow.internal.v0.models.channel_transaction'] = PropTypes.exact({
|
|
23419
23534
|
discriminator: PropTypes.oneOf(['channel_transaction']).isRequired,
|
|
23420
23535
|
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
23536
|
+
fees: PropTypes.arrayOf(T['io.flow.internal.v0.models.fee']).isRequired,
|
|
23421
23537
|
id: PropTypes.string.isRequired,
|
|
23422
23538
|
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
23423
23539
|
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
@@ -23475,6 +23591,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
23475
23591
|
adjustment: T['io.flow.common.v0.models.price'].isRequired,
|
|
23476
23592
|
capture: T['io.flow.common.v0.models.price'].isRequired,
|
|
23477
23593
|
refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
23594
|
+
reversal: T['io.flow.common.v0.models.price'].isRequired,
|
|
23478
23595
|
credit_payment: T['io.flow.common.v0.models.price'].isRequired,
|
|
23479
23596
|
fully_subsidized_order: T['io.flow.common.v0.models.price'].isRequired,
|
|
23480
23597
|
virtual_card_capture: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -23940,6 +24057,7 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
23940
24057
|
T['io.flow.internal.v0.models.order_transaction'],
|
|
23941
24058
|
T['io.flow.internal.v0.models.channel_billed_transaction'],
|
|
23942
24059
|
T['io.flow.internal.v0.models.tax_transaction'],
|
|
24060
|
+
T['io.flow.internal.v0.models.duty_transaction'],
|
|
23943
24061
|
]);
|
|
23944
24062
|
|
|
23945
24063
|
T['io.flow.internal.v0.models.processing_transaction_upserted'] = PropTypes.exact({
|
|
@@ -24651,6 +24769,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
24651
24769
|
T['io.flow.internal.v0.models.channel_billed_transaction_deleted'],
|
|
24652
24770
|
T['io.flow.internal.v0.models.tax_transaction_upserted'],
|
|
24653
24771
|
T['io.flow.internal.v0.models.tax_transaction_deleted'],
|
|
24772
|
+
T['io.flow.internal.v0.models.duty_transaction_upserted'],
|
|
24773
|
+
T['io.flow.internal.v0.models.duty_transaction_deleted'],
|
|
24654
24774
|
T['io.flow.internal.v0.models.calculator_organization_settings_upserted'],
|
|
24655
24775
|
T['io.flow.internal.v0.models.calculator_organization_settings_deleted'],
|
|
24656
24776
|
T['io.flow.internal.v0.models.carrier_account_upserted_v2'],
|
|
@@ -24846,6 +24966,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
24846
24966
|
T['io.flow.internal.v0.models.shopify_experience_short_id_deleted'],
|
|
24847
24967
|
T['io.flow.internal.v0.models.shopify_markets_order_upserted'],
|
|
24848
24968
|
T['io.flow.internal.v0.models.shopify_markets_order_deleted'],
|
|
24969
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_upserted'],
|
|
24970
|
+
T['io.flow.internal.v0.models.shopify_markets_shop_deleted'],
|
|
24849
24971
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
24850
24972
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
24851
24973
|
T['io.flow.internal.v0.models.stripe_authorization_deleted'],
|
|
@@ -25079,16 +25201,25 @@ T['io.flow.internal.v0.enums.billing_allocation_key'] = PropTypes.oneOf([
|
|
|
25079
25201
|
]);
|
|
25080
25202
|
|
|
25081
25203
|
T['io.flow.internal.v0.enums.billing_statement_batch_file_key'] = PropTypes.oneOf(['archive', 'summary']);
|
|
25082
|
-
|
|
25204
|
+
|
|
25205
|
+
T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
|
|
25206
|
+
'flow_rate_and_rule',
|
|
25207
|
+
'dtce',
|
|
25208
|
+
'dtce_two_calls',
|
|
25209
|
+
'dtce_with_deminimis',
|
|
25210
|
+
'dtce_merged_with_tax',
|
|
25211
|
+
]);
|
|
25212
|
+
|
|
25083
25213
|
T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
|
|
25084
|
-
T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'channel_initiated']);
|
|
25085
|
-
T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'processing']);
|
|
25214
|
+
T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'channel_initiated']);
|
|
25215
|
+
T['io.flow.internal.v0.enums.channel_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'processing']);
|
|
25086
25216
|
T['io.flow.internal.v0.enums.compliance_type'] = PropTypes.oneOf(['weee']);
|
|
25087
25217
|
T['io.flow.internal.v0.enums.content_type_cast'] = PropTypes.oneOf(['markdown_to_html', 'markdown_to_text']);
|
|
25088
25218
|
T['io.flow.internal.v0.enums.crossdock_tracking_status'] = PropTypes.oneOf(['notified', 'received', 'shipped']);
|
|
25089
25219
|
T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['none', 'duty', 'vat', 'vat_and_duty']);
|
|
25090
25220
|
T['io.flow.internal.v0.enums.dispute_evidence'] = PropTypes.oneOf(['proof_of_delivery', 'proof_of_fulfillment', 'other']);
|
|
25091
25221
|
T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_card', 'service', 'digital_item', 'personalization']);
|
|
25222
|
+
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
|
|
25092
25223
|
|
|
25093
25224
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
25094
25225
|
'adyen_authorization_deleted',
|
|
@@ -25138,6 +25269,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
25138
25269
|
'channel_billed_transaction_deleted',
|
|
25139
25270
|
'tax_transaction_upserted',
|
|
25140
25271
|
'tax_transaction_deleted',
|
|
25272
|
+
'duty_transaction_upserted',
|
|
25273
|
+
'duty_transaction_deleted',
|
|
25141
25274
|
'calculator_organization_settings_upserted',
|
|
25142
25275
|
'calculator_organization_settings_deleted',
|
|
25143
25276
|
'carrier_account_upserted_v2',
|
|
@@ -25333,6 +25466,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
25333
25466
|
'shopify_experience_short_id_deleted',
|
|
25334
25467
|
'shopify_markets_order_upserted',
|
|
25335
25468
|
'shopify_markets_order_deleted',
|
|
25469
|
+
'shopify_markets_shop_upserted',
|
|
25470
|
+
'shopify_markets_shop_deleted',
|
|
25336
25471
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
25337
25472
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
25338
25473
|
'stripe_authorization_deleted',
|
|
@@ -25364,13 +25499,13 @@ T['io.flow.internal.v0.enums.flow_app'] = PropTypes.oneOf(['console']);
|
|
|
25364
25499
|
T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
25365
25500
|
T['io.flow.internal.v0.enums.initial_input_data_source'] = PropTypes.oneOf(['session_persistence']);
|
|
25366
25501
|
T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
|
|
25367
|
-
T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'billable_label', 'fee', 'revenue_share']);
|
|
25502
|
+
T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
|
|
25368
25503
|
T['io.flow.internal.v0.enums.marketing_gateway_feed_download_format'] = PropTypes.oneOf(['tsv', 'csv', 'txt']);
|
|
25369
25504
|
T['io.flow.internal.v0.enums.marketing_gateway_product_status'] = PropTypes.oneOf(['approved', 'not_approved', 'pending', 'not_found', 'excluded']);
|
|
25370
25505
|
T['io.flow.internal.v0.enums.onboarding_automation_process_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
|
|
25371
25506
|
T['io.flow.internal.v0.enums.onboarding_automation_task_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
|
|
25372
25507
|
T['io.flow.internal.v0.enums.order_lifecycle_event'] = PropTypes.oneOf(['order_placed', 'ready_to_fulfill']);
|
|
25373
|
-
T['io.flow.internal.v0.enums.order_transaction_type'] = PropTypes.oneOf(['adjustment', 'order_service']);
|
|
25508
|
+
T['io.flow.internal.v0.enums.order_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'order_service']);
|
|
25374
25509
|
T['io.flow.internal.v0.enums.output_style'] = PropTypes.oneOf(['flow', 'shopify_p1']);
|
|
25375
25510
|
T['io.flow.internal.v0.enums.preferred_billing_schedule'] = PropTypes.oneOf(['monthly', 'bi-monthly']);
|
|
25376
25511
|
|
|
@@ -25385,6 +25520,7 @@ T['io.flow.internal.v0.enums.price_selector'] = PropTypes.oneOf(['minimum', 'max
|
|
|
25385
25520
|
|
|
25386
25521
|
T['io.flow.internal.v0.enums.processing_transaction_type'] = PropTypes.oneOf([
|
|
25387
25522
|
'adjustment',
|
|
25523
|
+
'reversal',
|
|
25388
25524
|
'capture',
|
|
25389
25525
|
'refund',
|
|
25390
25526
|
'fully_subsidized_order',
|
|
@@ -25459,7 +25595,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
25459
25595
|
'ratecard',
|
|
25460
25596
|
]);
|
|
25461
25597
|
|
|
25462
|
-
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'tax']);
|
|
25598
|
+
T['io.flow.internal.v0.enums.tax_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'tax']);
|
|
25463
25599
|
T['io.flow.internal.v0.enums.timeseries_type'] = PropTypes.oneOf(['daily', 'weekly', 'monthly', 'yearly']);
|
|
25464
25600
|
T['io.flow.internal.v0.enums.tracking_integration_type'] = PropTypes.oneOf(['api', 'bulk', 'aftership']);
|
|
25465
25601
|
|
|
@@ -25799,6 +25935,11 @@ T['io.flow.internal.v0.models.google_shopping_setting'] = PropTypes.exact({
|
|
|
25799
25935
|
created_by_email: PropTypes.string.isRequired,
|
|
25800
25936
|
});
|
|
25801
25937
|
|
|
25938
|
+
T['io.flow.internal.v0.models.hs6_detail'] = PropTypes.exact({
|
|
25939
|
+
hs6_code: PropTypes.string.isRequired,
|
|
25940
|
+
description: PropTypes.string.isRequired,
|
|
25941
|
+
});
|
|
25942
|
+
|
|
25802
25943
|
T['io.flow.internal.v0.models.hs6_metadata'] = PropTypes.exact({
|
|
25803
25944
|
description: PropTypes.string.isRequired,
|
|
25804
25945
|
});
|
|
@@ -26644,14 +26785,6 @@ T['io.flow.adyen.v0.models.payment_details'] = PropTypes.exact({
|
|
|
26644
26785
|
paymentData: PropTypes.string,
|
|
26645
26786
|
});
|
|
26646
26787
|
|
|
26647
|
-
T['io.flow.adyen.v0.models.payment_details_v66_3ds2_challenge'] = PropTypes.exact({
|
|
26648
|
-
'threeds2.challengeResult': PropTypes.string.isRequired,
|
|
26649
|
-
});
|
|
26650
|
-
|
|
26651
|
-
T['io.flow.adyen.v0.models.payment_details_v66_3ds2_fingerprint'] = PropTypes.exact({
|
|
26652
|
-
'threeds2.fingerprint': PropTypes.string.isRequired,
|
|
26653
|
-
});
|
|
26654
|
-
|
|
26655
26788
|
T['io.flow.adyen.v0.models.request_for_information_additional_data'] = PropTypes.exact({
|
|
26656
26789
|
rfiSchemeCode: PropTypes.string.isRequired,
|
|
26657
26790
|
modificationMerchantReferences: PropTypes.string.isRequired,
|
|
@@ -26778,6 +26911,10 @@ T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_order_status'] = P
|
|
|
26778
26911
|
|
|
26779
26912
|
T['io.flow.shopify.markets.v0.enums.shopify_order_status_type'] = PropTypes.oneOf(['open', 'closed', 'cancelled', 'any']);
|
|
26780
26913
|
|
|
26914
|
+
T['io.flow.shopify.markets.v0.models.shopify_draft_order_count'] = PropTypes.exact({
|
|
26915
|
+
count: PropTypes.number.isRequired,
|
|
26916
|
+
});
|
|
26917
|
+
|
|
26781
26918
|
T['io.flow.shopify.markets.v0.models.shopify_error'] = PropTypes.exact({
|
|
26782
26919
|
errors: PropTypes.object.isRequired,
|
|
26783
26920
|
});
|
|
@@ -26786,6 +26923,10 @@ T['io.flow.shopify.markets.v0.models.shopify_location_delete'] = PropTypes.exact
|
|
|
26786
26923
|
id: PropTypes.number.isRequired,
|
|
26787
26924
|
});
|
|
26788
26925
|
|
|
26926
|
+
T['io.flow.shopify.markets.v0.models.shopify_order_count'] = PropTypes.exact({
|
|
26927
|
+
count: PropTypes.number.isRequired,
|
|
26928
|
+
});
|
|
26929
|
+
|
|
26789
26930
|
T['io.flow.shopify.markets.v0.models.shopify_webhook_shop_redact'] = PropTypes.exact({
|
|
26790
26931
|
shop_id: PropTypes.number.isRequired,
|
|
26791
26932
|
shop_domain: PropTypes.string.isRequired,
|
|
@@ -27230,6 +27371,7 @@ export const adjustmentDetailsAmountPercentage = T['io.flow.internal.v0.models.a
|
|
|
27230
27371
|
export const adjustmentDetailsProcessingTransaction = T['io.flow.internal.v0.models.adjustment_details_processing_transaction'];
|
|
27231
27372
|
export const adjustmentDetailsProcessingTransactionFee = T['io.flow.internal.v0.models.adjustment_details_processing_transaction_fee'];
|
|
27232
27373
|
export const adjustmentDetailsProcessingTransactionWithholding = T['io.flow.internal.v0.models.adjustment_details_processing_transaction_withholding'];
|
|
27374
|
+
export const adjustmentTransactionType = T['io.flow.internal.v0.enums.adjustment_transaction_type'];
|
|
27233
27375
|
export const adyenAccount = T['io.flow.internal.v0.models.adyen_account'];
|
|
27234
27376
|
export const adyenAccountModificationForm = T['io.flow.internal.v0.models.adyen_account_modification_form'];
|
|
27235
27377
|
export const adyenAccountPutForm = T['io.flow.internal.v0.models.adyen_account_put_form'];
|
|
@@ -28160,11 +28302,19 @@ export const dutyRawUpserted = T['io.flow.internal.v0.models.duty_raw_upserted']
|
|
|
28160
28302
|
export const dutySelectionRule = T['io.flow.internal.v0.enums.duty_selection_rule'];
|
|
28161
28303
|
export const dutySimpleExpression = T['io.flow.internal.v0.models.duty_simple_expression'];
|
|
28162
28304
|
export const dutySimpleExpressionType = T['io.flow.internal.v0.enums.duty_simple_expression_type'];
|
|
28305
|
+
export const dutyTransaction = T['io.flow.internal.v0.models.duty_transaction'];
|
|
28306
|
+
export const dutyTransactionDeleted = T['io.flow.internal.v0.models.duty_transaction_deleted'];
|
|
28307
|
+
export const dutyTransactionType = T['io.flow.internal.v0.enums.duty_transaction_type'];
|
|
28308
|
+
export const dutyTransactionUpserted = T['io.flow.internal.v0.models.duty_transaction_upserted'];
|
|
28163
28309
|
export const emailForm = T['io.flow.internal.v0.models.email_form'];
|
|
28164
28310
|
export const emailModificationForm = T['io.flow.internal.v0.models.email_modification_form'];
|
|
28165
28311
|
export const emptyAttribute = T['io.flow.internal.v0.enums.empty_attribute'];
|
|
28166
28312
|
export const emptyClassificationForm = T['io.flow.internal.v0.models.empty_classification_form'];
|
|
28167
28313
|
export const encryption = T['io.flow.internal.v0.models.encryption'];
|
|
28314
|
+
export const erpFileType = T['io.flow.internal.v0.enums.erp_file_type'];
|
|
28315
|
+
export const erpFlowFile = T['io.flow.internal.v0.models.erp_flow_file'];
|
|
28316
|
+
export const erpPriorityFile = T['io.flow.internal.v0.models.erp_priority_file'];
|
|
28317
|
+
export const erpPriorityFileForm = T['io.flow.internal.v0.models.erp_priority_file_form'];
|
|
28168
28318
|
export const event = T['io.flow.internal.v0.unions.event'];
|
|
28169
28319
|
export const eventType = T['io.flow.internal.v0.enums.event_type'];
|
|
28170
28320
|
export const exclusionRuleDeleted = T['io.flow.internal.v0.models.exclusion_rule_deleted'];
|
|
@@ -28401,6 +28551,7 @@ export const heapWebsocketRequest = T['io.flow.internal.v0.models.heap_websocket
|
|
|
28401
28551
|
export const heapWebsocketResponse = T['io.flow.internal.v0.models.heap_websocket_response'];
|
|
28402
28552
|
export const heapWebsocketRetry = T['io.flow.internal.v0.models.heap_websocket_retry'];
|
|
28403
28553
|
export const href = T['io.flow.internal.v0.models.href'];
|
|
28554
|
+
export const hs6Detail = T['io.flow.internal.v0.models.hs6_detail'];
|
|
28404
28555
|
export const hs6Metadata = T['io.flow.internal.v0.models.hs6_metadata'];
|
|
28405
28556
|
export const httpMethod = T['io.flow.internal.v0.enums.http_method'];
|
|
28406
28557
|
export const hybrisCatalogItemsImportRequest = T['io.flow.internal.v0.models.hybris_catalog_items_import_request'];
|
|
@@ -28657,6 +28808,11 @@ export const orderAttribute = T['io.flow.internal.v0.models.order_attribute'];
|
|
|
28657
28808
|
export const orderAttributeDeleted = T['io.flow.internal.v0.models.order_attribute_deleted'];
|
|
28658
28809
|
export const orderAttributeIntent = T['io.flow.internal.v0.enums.order_attribute_intent'];
|
|
28659
28810
|
export const orderAttributeUpserted = T['io.flow.internal.v0.models.order_attribute_upserted'];
|
|
28811
|
+
export const orderCancellation = T['io.flow.internal.v0.models.order_cancellation'];
|
|
28812
|
+
export const orderCancellationEvidence = T['io.flow.internal.v0.unions.order_cancellation_evidence'];
|
|
28813
|
+
export const orderCancellationEvidenceFullyRefundedNotFulfilled = T['io.flow.internal.v0.models.order_cancellation_evidence_fully_refunded_not_fulfilled'];
|
|
28814
|
+
export const orderCancellationEvidenceManual = T['io.flow.internal.v0.models.order_cancellation_evidence_manual'];
|
|
28815
|
+
export const orderCancellationForm = T['io.flow.internal.v0.models.order_cancellation_form'];
|
|
28660
28816
|
export const orderChargeTrigger = T['io.flow.internal.v0.enums.order_charge_trigger'];
|
|
28661
28817
|
export const orderDetail = T['io.flow.internal.v0.models.order_detail'];
|
|
28662
28818
|
export const orderFulfillmentDeleted = T['io.flow.internal.v0.models.order_fulfillment_deleted'];
|
|
@@ -28831,7 +28987,7 @@ export const promptTarget = T['io.flow.internal.v0.enums.prompt_target'];
|
|
|
28831
28987
|
export const proofOfPosting = T['io.flow.internal.v0.unions.proof_of_posting'];
|
|
28832
28988
|
export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'];
|
|
28833
28989
|
export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
|
|
28834
|
-
export const
|
|
28990
|
+
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
28835
28991
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
28836
28992
|
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
28837
28993
|
export const quoteRequestType = T['io.flow.internal.v0.enums.quote_request_type'];
|
|
@@ -28976,8 +29132,10 @@ export const shopifyMarketsOrder = T['io.flow.internal.v0.models.shopify_markets
|
|
|
28976
29132
|
export const shopifyMarketsOrderDeleted = T['io.flow.internal.v0.models.shopify_markets_order_deleted'];
|
|
28977
29133
|
export const shopifyMarketsOrderUpserted = T['io.flow.internal.v0.models.shopify_markets_order_upserted'];
|
|
28978
29134
|
export const shopifyMarketsShop = T['io.flow.internal.v0.models.shopify_markets_shop'];
|
|
29135
|
+
export const shopifyMarketsShopDeleted = T['io.flow.internal.v0.models.shopify_markets_shop_deleted'];
|
|
28979
29136
|
export const shopifyMarketsShopForm = T['io.flow.internal.v0.models.shopify_markets_shop_form'];
|
|
28980
29137
|
export const shopifyMarketsShopSummary = T['io.flow.internal.v0.models.shopify_markets_shop_summary'];
|
|
29138
|
+
export const shopifyMarketsShopUpserted = T['io.flow.internal.v0.models.shopify_markets_shop_upserted'];
|
|
28981
29139
|
export const shopifyMarketsSubsidiaryCompany = T['io.flow.internal.v0.models.shopify_markets_subsidiary_company'];
|
|
28982
29140
|
export const shopifyMarketsSync = T['io.flow.internal.v0.models.shopify_markets_sync'];
|
|
28983
29141
|
export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_markets_trade_sector'];
|
|
@@ -28991,7 +29149,6 @@ export const shopifyMonitoringOrderMonitor = T['io.flow.internal.v0.models.shopi
|
|
|
28991
29149
|
export const shopifyMonitoringOrderMonitorEventDeleted = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'];
|
|
28992
29150
|
export const shopifyMonitoringOrderMonitorEventUpserted = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'];
|
|
28993
29151
|
export const shopifyMonitoringOrderMonitorReview = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'];
|
|
28994
|
-
export const shopifyMonitoringOrderMonitorReviewOrderDetails = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review_order_details'];
|
|
28995
29152
|
export const shopifyMonitoringOrderMonitorType = T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'];
|
|
28996
29153
|
export const shopifyMonitoringTrackingField = T['io.flow.internal.v0.enums.shopify_monitoring_tracking_field'];
|
|
28997
29154
|
export const shopifyMonitoringTrackingNumber = T['io.flow.internal.v0.models.shopify_monitoring_tracking_number'];
|