@flowio/api-internal-prop-types 9.24.47 → 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 +124 -104
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +124 -104
- package/src/api-internal.js +218 -167
package/src/api-internal.js
CHANGED
|
@@ -1869,22 +1869,6 @@ T['io.flow.shopify.markets.v0.models.shopify_order_metafield_form'] = PropTypes.
|
|
|
1869
1869
|
description: PropTypes.string,
|
|
1870
1870
|
});
|
|
1871
1871
|
|
|
1872
|
-
T['io.flow.shopify.markets.v0.models.shopify_order_origin_location'] = PropTypes.exact({
|
|
1873
|
-
id: PropTypes.number.isRequired,
|
|
1874
|
-
country_code: PropTypes.string.isRequired,
|
|
1875
|
-
province_code: PropTypes.string.isRequired,
|
|
1876
|
-
name: PropTypes.string.isRequired,
|
|
1877
|
-
address1: PropTypes.string.isRequired,
|
|
1878
|
-
address2: PropTypes.string.isRequired,
|
|
1879
|
-
city: PropTypes.string.isRequired,
|
|
1880
|
-
zip: PropTypes.string.isRequired,
|
|
1881
|
-
});
|
|
1882
|
-
|
|
1883
|
-
T['io.flow.shopify.markets.v0.models.shopify_order_property'] = PropTypes.exact({
|
|
1884
|
-
name: PropTypes.string.isRequired,
|
|
1885
|
-
value: PropTypes.string.isRequired,
|
|
1886
|
-
});
|
|
1887
|
-
|
|
1888
1872
|
T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_status'] = PropTypes.oneOf(['pending', 'open', 'success', 'cancelled', 'error', 'failure']);
|
|
1889
1873
|
|
|
1890
1874
|
T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_shipment_status'] = PropTypes.oneOf([
|
|
@@ -1998,6 +1982,91 @@ T['io.flow.shopify.markets.v0.models.fulfillment_order_line_item'] = PropTypes.e
|
|
|
1998
1982
|
variant_id: PropTypes.number,
|
|
1999
1983
|
});
|
|
2000
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
|
+
|
|
2001
2070
|
T['io.flow.shopify.markets.v0.models.shop'] = PropTypes.exact({
|
|
2002
2071
|
id: PropTypes.number.isRequired,
|
|
2003
2072
|
name: PropTypes.string.isRequired,
|
|
@@ -2927,15 +2996,7 @@ T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
|
|
|
2927
2996
|
});
|
|
2928
2997
|
|
|
2929
2998
|
T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
|
|
2930
|
-
|
|
2931
|
-
T['io.flow.adyen.v0.models.sdk_v3_on_complete_data'] = PropTypes.exact({
|
|
2932
|
-
details: PropTypes.object.isRequired,
|
|
2933
|
-
payment_data: PropTypes.string,
|
|
2934
|
-
});
|
|
2935
|
-
|
|
2936
|
-
T['io.flow.adyen.v0.models.sdk_v3_on_complete_result'] = PropTypes.exact({
|
|
2937
|
-
data: T['io.flow.adyen.v0.models.sdk_v3_on_complete_data'].isRequired,
|
|
2938
|
-
});
|
|
2999
|
+
T['io.flow.adyen.v0.enums.method'] = PropTypes.oneOf(['GET', 'POST']);
|
|
2939
3000
|
|
|
2940
3001
|
T['io.flow.adyen.v0.models.redirect_data'] = PropTypes.exact({
|
|
2941
3002
|
PaReq: PropTypes.string,
|
|
@@ -2943,6 +3004,12 @@ T['io.flow.adyen.v0.models.redirect_data'] = PropTypes.exact({
|
|
|
2943
3004
|
MD: PropTypes.string,
|
|
2944
3005
|
});
|
|
2945
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
|
+
|
|
2946
3013
|
T['io.flow.adyen.v0.models.authentication'] = PropTypes.exact({
|
|
2947
3014
|
'threeds2.fingerprintToken': PropTypes.string,
|
|
2948
3015
|
'threeds2.challengeToken': PropTypes.string,
|
|
@@ -2951,55 +3018,12 @@ T['io.flow.adyen.v0.models.authentication'] = PropTypes.exact({
|
|
|
2951
3018
|
T['io.flow.adyen.v0.models.payment_response_additional_data'] = PropTypes.exact({
|
|
2952
3019
|
authCode: PropTypes.string,
|
|
2953
3020
|
avsResultRaw: PropTypes.string,
|
|
2954
|
-
avsResult: PropTypes.string,
|
|
2955
3021
|
cvcResultRaw: PropTypes.string,
|
|
2956
|
-
cvcResult: PropTypes.string,
|
|
2957
|
-
refusalReasonRaw: PropTypes.string,
|
|
2958
3022
|
liabilityShift: PropTypes.string,
|
|
2959
3023
|
threeDAuthenticated: PropTypes.string,
|
|
2960
3024
|
threeDAuthenticatedResponse: PropTypes.string,
|
|
2961
3025
|
threeDOffered: PropTypes.string,
|
|
2962
3026
|
threeDOfferedResponse: PropTypes.string,
|
|
2963
|
-
threeDSVersion: PropTypes.string,
|
|
2964
|
-
eci: PropTypes.string,
|
|
2965
|
-
scaExemptionRequested: PropTypes.string,
|
|
2966
|
-
paymentMethod: PropTypes.string,
|
|
2967
|
-
paymentMethodVariant: PropTypes.string,
|
|
2968
|
-
tokenTxVariant: PropTypes.string,
|
|
2969
|
-
acquirerCode: PropTypes.string,
|
|
2970
|
-
acquirerAccountCode: PropTypes.string,
|
|
2971
|
-
cardPaymentMethod: PropTypes.string,
|
|
2972
|
-
coBrandedWith: PropTypes.string,
|
|
2973
|
-
cardIssuingCountry: PropTypes.string,
|
|
2974
|
-
cardIssuingCurrency: PropTypes.string,
|
|
2975
|
-
cardIssuingBank: PropTypes.string,
|
|
2976
|
-
cardBin: PropTypes.string,
|
|
2977
|
-
issuerBin: PropTypes.string,
|
|
2978
|
-
cardSummary: PropTypes.string,
|
|
2979
|
-
untokenisedCardSummary: PropTypes.string,
|
|
2980
|
-
ownerName: PropTypes.string,
|
|
2981
|
-
bankName: PropTypes.string,
|
|
2982
|
-
issuerCountry: PropTypes.string,
|
|
2983
|
-
iban: PropTypes.string,
|
|
2984
|
-
bic: PropTypes.string,
|
|
2985
|
-
iDealConsumerAccountNumber: PropTypes.string,
|
|
2986
|
-
iDealConsumerBIC: PropTypes.string,
|
|
2987
|
-
iDealConsumerCity: PropTypes.string,
|
|
2988
|
-
iDealConsumerIBAN: PropTypes.string,
|
|
2989
|
-
iDealConsumerName: PropTypes.string,
|
|
2990
|
-
iDealTransactionId: PropTypes.string,
|
|
2991
|
-
'recurring.recurringDetailReference': PropTypes.string,
|
|
2992
|
-
'recurring.shopperReference': PropTypes.string,
|
|
2993
|
-
networkTxReference: PropTypes.string,
|
|
2994
|
-
PaymentAccountReference: PropTypes.string,
|
|
2995
|
-
'networkToken.available': PropTypes.string,
|
|
2996
|
-
'networkToken.bin': PropTypes.string,
|
|
2997
|
-
'networkToken.tokenSummary': PropTypes.string,
|
|
2998
|
-
});
|
|
2999
|
-
|
|
3000
|
-
T['io.flow.adyen.v0.models.applepay'] = PropTypes.exact({
|
|
3001
|
-
type: PropTypes.oneOf(['applepay']).isRequired,
|
|
3002
|
-
applePayToken: PropTypes.string.isRequired,
|
|
3003
3027
|
});
|
|
3004
3028
|
|
|
3005
3029
|
T['io.flow.adyen.v0.models.scheme'] = PropTypes.exact({
|
|
@@ -3009,16 +3033,6 @@ T['io.flow.adyen.v0.models.scheme'] = PropTypes.exact({
|
|
|
3009
3033
|
holderName: PropTypes.string.isRequired,
|
|
3010
3034
|
number: PropTypes.string.isRequired,
|
|
3011
3035
|
cvc: PropTypes.string,
|
|
3012
|
-
storedPaymentMethodId: PropTypes.string,
|
|
3013
|
-
networkPaymentReference: PropTypes.string,
|
|
3014
|
-
});
|
|
3015
|
-
|
|
3016
|
-
T['io.flow.adyen.v0.enums.http_redirect_method'] = PropTypes.oneOf(['GET', 'POST']);
|
|
3017
|
-
|
|
3018
|
-
T['io.flow.adyen.v0.models.redirect'] = PropTypes.exact({
|
|
3019
|
-
data: T['io.flow.adyen.v0.models.redirect_data'],
|
|
3020
|
-
method: T['io.flow.adyen.v0.enums.http_redirect_method'],
|
|
3021
|
-
url: PropTypes.string,
|
|
3022
3036
|
});
|
|
3023
3037
|
|
|
3024
3038
|
T['io.flow.adyen.v0.enums.channel'] = PropTypes.oneOf(['web']);
|
|
@@ -3028,20 +3042,15 @@ T['io.flow.adyen.v0.models.threeds_additional_data'] = PropTypes.exact({
|
|
|
3028
3042
|
allow3DS2: PropTypes.bool,
|
|
3029
3043
|
});
|
|
3030
3044
|
|
|
3031
|
-
T['io.flow.adyen.v0.unions.payment_method_data'] = PropTypes.oneOfType(
|
|
3032
|
-
[T['io.flow.adyen.v0.models.scheme'], T['io.flow.adyen.v0.models.applepay']],
|
|
3033
|
-
);
|
|
3045
|
+
T['io.flow.adyen.v0.unions.payment_method_data'] = PropTypes.oneOfType([T['io.flow.adyen.v0.models.scheme']]);
|
|
3034
3046
|
|
|
3035
3047
|
T['io.flow.adyen.v0.enums.payment_method'] = PropTypes.oneOf([
|
|
3036
3048
|
'ach',
|
|
3037
3049
|
'alipay',
|
|
3038
|
-
'alipay_hk',
|
|
3039
3050
|
'alipay_wap',
|
|
3040
3051
|
'amex',
|
|
3041
3052
|
'bankTransfer_IBAN',
|
|
3042
3053
|
'bcmc',
|
|
3043
|
-
'bcmc_mobile',
|
|
3044
|
-
'blik',
|
|
3045
3054
|
'cartebancaire',
|
|
3046
3055
|
'cup',
|
|
3047
3056
|
'diners',
|
|
@@ -3052,27 +3061,21 @@ T['io.flow.adyen.v0.enums.payment_method'] = PropTypes.oneOf([
|
|
|
3052
3061
|
'dragonpay_gcash',
|
|
3053
3062
|
'dragonpay_otc_banking',
|
|
3054
3063
|
'ebanking_FI',
|
|
3055
|
-
'gcash',
|
|
3056
3064
|
'giropay',
|
|
3057
3065
|
'ideal',
|
|
3058
3066
|
'interac',
|
|
3059
3067
|
'jcb',
|
|
3060
|
-
'kakaopay',
|
|
3061
3068
|
'kcp_banktransfer',
|
|
3062
3069
|
'kcp_creditcard',
|
|
3063
3070
|
'kcp_payco',
|
|
3064
3071
|
'maestro',
|
|
3065
|
-
'mbway',
|
|
3066
3072
|
'mc',
|
|
3067
|
-
'mobilepay',
|
|
3068
3073
|
'molpay_points',
|
|
3069
3074
|
'multibanco',
|
|
3070
|
-
'onlineBanking_PL',
|
|
3071
3075
|
'qiwiwallet',
|
|
3072
3076
|
'sepadirectdebit',
|
|
3073
3077
|
'trustly',
|
|
3074
3078
|
'trustpay',
|
|
3075
|
-
'twint',
|
|
3076
3079
|
'unionpay',
|
|
3077
3080
|
'visa',
|
|
3078
3081
|
'wechatpay',
|
|
@@ -3271,12 +3274,7 @@ T['io.flow.adyen.v0.models.payment_request'] = PropTypes.exact({
|
|
|
3271
3274
|
browserInfo: T['io.flow.adyen.v0.unions.browser_info'],
|
|
3272
3275
|
origin: PropTypes.string,
|
|
3273
3276
|
channel: T['io.flow.adyen.v0.enums.channel'],
|
|
3274
|
-
|
|
3275
|
-
mcc: PropTypes.string,
|
|
3276
|
-
metadata: PropTypes.object,
|
|
3277
|
-
redirectToIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
|
|
3278
|
-
redirectFromIssuerMethod: T['io.flow.adyen.v0.enums.http_redirect_method'],
|
|
3279
|
-
storePaymentMethod: PropTypes.bool,
|
|
3277
|
+
returnURL: PropTypes.string,
|
|
3280
3278
|
});
|
|
3281
3279
|
|
|
3282
3280
|
T['io.flow.adyen.v0.models.modification_request'] = PropTypes.exact({
|
|
@@ -3332,8 +3330,6 @@ T['io.flow.adyen.v0.models.authorize_request'] = PropTypes.exact({
|
|
|
3332
3330
|
browserInfo: T['io.flow.adyen.v0.unions.browser_info'],
|
|
3333
3331
|
threeDS2RequestData: T['io.flow.adyen.v0.models.threeds2_request_data'],
|
|
3334
3332
|
recurringProcessingModel: T['io.flow.adyen.v0.enums.recurring_processing_model'],
|
|
3335
|
-
mcc: PropTypes.string,
|
|
3336
|
-
metadata: PropTypes.object,
|
|
3337
3333
|
});
|
|
3338
3334
|
|
|
3339
3335
|
T['io.flow.brickftp.v0.models.file_summary'] = PropTypes.exact({
|
|
@@ -6603,12 +6599,6 @@ T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'] = PropTyp
|
|
|
6603
6599
|
shipping_notification_id: PropTypes.string.isRequired,
|
|
6604
6600
|
});
|
|
6605
6601
|
|
|
6606
|
-
T['io.flow.internal.v0.models.proof_of_posting_fully_refunded'] = PropTypes.exact({
|
|
6607
|
-
discriminator: PropTypes.oneOf(['fully_refunded']).isRequired,
|
|
6608
|
-
capture_id: PropTypes.string.isRequired,
|
|
6609
|
-
refund_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
6610
|
-
});
|
|
6611
|
-
|
|
6612
6602
|
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'] = PropTypes.exact({
|
|
6613
6603
|
discriminator: PropTypes.oneOf(['external']).isRequired,
|
|
6614
6604
|
external_fulfillment_proof_id: PropTypes.string.isRequired,
|
|
@@ -6622,7 +6612,6 @@ T['io.flow.internal.v0.models.proof_of_posting_fulfilled'] = PropTypes.exact({
|
|
|
6622
6612
|
T['io.flow.internal.v0.unions.proof_of_posting'] = PropTypes.oneOfType([
|
|
6623
6613
|
T['io.flow.internal.v0.models.proof_of_posting_fulfilled'],
|
|
6624
6614
|
T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'],
|
|
6625
|
-
T['io.flow.internal.v0.models.proof_of_posting_fully_refunded'],
|
|
6626
6615
|
T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'],
|
|
6627
6616
|
T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'],
|
|
6628
6617
|
]);
|
|
@@ -7331,6 +7320,14 @@ T['io.flow.internal.v0.unions.feature_task_data'] = PropTypes.oneOfType([
|
|
|
7331
7320
|
T['io.flow.internal.v0.models.feature_task_data_sync_organization'],
|
|
7332
7321
|
]);
|
|
7333
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
|
+
|
|
7334
7331
|
T['io.flow.internal.v0.models.shopify_shop_deleted'] = PropTypes.exact({
|
|
7335
7332
|
discriminator: PropTypes.oneOf(['shopify_shop_deleted']).isRequired,
|
|
7336
7333
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8146,6 +8143,8 @@ T['io.flow.internal.v0.models.usd_spot_rate_upserted'] = PropTypes.exact({
|
|
|
8146
8143
|
usd_spot_rate: T['io.flow.internal.v0.models.usd_spot_rate'].isRequired,
|
|
8147
8144
|
});
|
|
8148
8145
|
|
|
8146
|
+
T['io.flow.internal.v0.enums.adjustment_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal']);
|
|
8147
|
+
|
|
8149
8148
|
T['io.flow.internal.v0.models.processing_transaction_reference'] = PropTypes.exact({
|
|
8150
8149
|
id: PropTypes.string.isRequired,
|
|
8151
8150
|
});
|
|
@@ -9809,6 +9808,18 @@ T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition']
|
|
|
9809
9808
|
started_at: PropTypes.string.isRequired,
|
|
9810
9809
|
});
|
|
9811
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
|
+
|
|
9812
9823
|
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
9813
9824
|
|
|
9814
9825
|
T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
|
|
@@ -9986,7 +9997,7 @@ T['io.flow.shopify.markets.v0.models.shopify_order_duty'] = PropTypes.exact({
|
|
|
9986
9997
|
T['io.flow.shopify.markets.v0.models.shopify_order_shipping_line'] = PropTypes.exact({
|
|
9987
9998
|
code: PropTypes.string,
|
|
9988
9999
|
price: PropTypes.string.isRequired,
|
|
9989
|
-
source: PropTypes.string
|
|
10000
|
+
source: PropTypes.string,
|
|
9990
10001
|
title: PropTypes.string.isRequired,
|
|
9991
10002
|
tax_lines: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_order_tax_line']).isRequired,
|
|
9992
10003
|
carrier_identifier: PropTypes.string,
|
|
@@ -10135,6 +10146,41 @@ T['io.flow.shopify.markets.v0.models.shopify_order_customer'] = PropTypes.exact(
|
|
|
10135
10146
|
default_address: T['io.flow.shopify.markets.v0.models.shopify_order_address'],
|
|
10136
10147
|
});
|
|
10137
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
|
+
|
|
10138
10184
|
T['io.flow.shopify.markets.v0.models.shopify_order'] = PropTypes.exact({
|
|
10139
10185
|
id: PropTypes.number.isRequired,
|
|
10140
10186
|
order_number: PropTypes.number.isRequired,
|
|
@@ -10209,11 +10255,6 @@ T['io.flow.shopify.markets.v0.models.shopify_order_wrapper'] = PropTypes.exact({
|
|
|
10209
10255
|
order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
10210
10256
|
});
|
|
10211
10257
|
|
|
10212
|
-
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review_order_details'] = PropTypes.exact({
|
|
10213
|
-
organization: PropTypes.string.isRequired,
|
|
10214
|
-
shopify_order: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
10215
|
-
});
|
|
10216
|
-
|
|
10217
10258
|
T['io.flow.internal.v0.models.shopify_markets_order'] = PropTypes.exact({
|
|
10218
10259
|
id: PropTypes.string.isRequired,
|
|
10219
10260
|
model: T['io.flow.shopify.markets.v0.models.shopify_order'].isRequired,
|
|
@@ -12609,12 +12650,13 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
12609
12650
|
'refund',
|
|
12610
12651
|
'dispute',
|
|
12611
12652
|
'adjustment',
|
|
12653
|
+
'reversal',
|
|
12612
12654
|
'shipping_label',
|
|
12613
12655
|
'shipping_label_service',
|
|
12614
12656
|
'shipping_label_revenue_share',
|
|
12615
12657
|
'platform_fee',
|
|
12616
12658
|
'tax',
|
|
12617
|
-
'
|
|
12659
|
+
'duty',
|
|
12618
12660
|
'other_adjustment',
|
|
12619
12661
|
'tax_adjustment',
|
|
12620
12662
|
'channel',
|
|
@@ -17270,6 +17312,14 @@ T['io.flow.internal.v0.models.shopify_markets_shop'] = PropTypes.exact({
|
|
|
17270
17312
|
access_token_masked: PropTypes.string,
|
|
17271
17313
|
});
|
|
17272
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
|
+
|
|
17273
17323
|
T['io.flow.internal.v0.models.internal_channel_rate'] = PropTypes.exact({
|
|
17274
17324
|
id: PropTypes.string.isRequired,
|
|
17275
17325
|
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
@@ -18371,6 +18421,16 @@ T['io.flow.session.v0.models.organization_session_authorization'] = PropTypes.ex
|
|
|
18371
18421
|
|
|
18372
18422
|
T['io.flow.session.v0.unions.session_authorization'] = PropTypes.oneOfType([T['io.flow.session.v0.models.organization_session_authorization']]);
|
|
18373
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
|
+
|
|
18374
18434
|
T['io.flow.checkout.v0.models.checkout_token'] = PropTypes.exact({
|
|
18375
18435
|
id: PropTypes.string.isRequired,
|
|
18376
18436
|
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
@@ -18459,13 +18519,11 @@ T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'] = PropTypes.exa
|
|
|
18459
18519
|
organization_reference: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
18460
18520
|
order_number: PropTypes.string.isRequired,
|
|
18461
18521
|
monitor: T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'].isRequired,
|
|
18462
|
-
created_at: PropTypes.string.isRequired,
|
|
18463
18522
|
});
|
|
18464
18523
|
|
|
18465
18524
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'] = PropTypes.exact({
|
|
18466
18525
|
id: PropTypes.string.isRequired,
|
|
18467
18526
|
order_monitor: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor'].isRequired,
|
|
18468
|
-
order_details: T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review_order_details'].isRequired,
|
|
18469
18527
|
status: T['io.flow.internal.v0.enums.shopify_monitoring_monitor_review_status'].isRequired,
|
|
18470
18528
|
});
|
|
18471
18529
|
|
|
@@ -18548,29 +18606,6 @@ T['io.flow.internal.v0.models.organization_boolean_value_deleted'] = PropTypes.e
|
|
|
18548
18606
|
value: T['io.flow.internal.v0.models.organization_boolean_value'].isRequired,
|
|
18549
18607
|
});
|
|
18550
18608
|
|
|
18551
|
-
T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'] = PropTypes.exact({
|
|
18552
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
18553
|
-
|
|
18554
|
-
transitions: PropTypes.arrayOf(
|
|
18555
|
-
T['io.flow.organization.onboarding.state.v0.models.onboarding_state_transition'],
|
|
18556
|
-
).isRequired,
|
|
18557
|
-
|
|
18558
|
-
current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
18559
|
-
});
|
|
18560
|
-
|
|
18561
|
-
T['io.flow.internal.v0.models.onboarding_organization'] = PropTypes.exact({
|
|
18562
|
-
age: PropTypes.number.isRequired,
|
|
18563
|
-
compliance_approved: PropTypes.bool.isRequired,
|
|
18564
|
-
compliance_full_review_required: PropTypes.bool.isRequired,
|
|
18565
|
-
application_received: PropTypes.string.isRequired,
|
|
18566
|
-
legal_name: PropTypes.string.isRequired,
|
|
18567
|
-
shop_name: PropTypes.string.isRequired,
|
|
18568
|
-
organization_id: PropTypes.string.isRequired,
|
|
18569
|
-
onboarding_state: T['io.flow.organization.onboarding.state.v0.models.organization_onboarding_state'].isRequired,
|
|
18570
|
-
onboarding_current_state: T['io.flow.organization.onboarding.state.v0.unions.onboarding_state'].isRequired,
|
|
18571
|
-
gmv: PropTypes.number.isRequired,
|
|
18572
|
-
});
|
|
18573
|
-
|
|
18574
18609
|
T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
18575
18610
|
discriminator: PropTypes.oneOf(['organization']).isRequired,
|
|
18576
18611
|
id: PropTypes.string.isRequired,
|
|
@@ -22087,6 +22122,7 @@ T['io.flow.internal.v0.models.transaction_adjustment_form'] = PropTypes.exact({
|
|
|
22087
22122
|
original_transaction_id: PropTypes.string.isRequired,
|
|
22088
22123
|
description: PropTypes.string.isRequired,
|
|
22089
22124
|
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
22125
|
+
type: T['io.flow.internal.v0.enums.adjustment_transaction_type'],
|
|
22090
22126
|
});
|
|
22091
22127
|
|
|
22092
22128
|
T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
@@ -22303,6 +22339,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
22303
22339
|
'invoice',
|
|
22304
22340
|
'transfer',
|
|
22305
22341
|
'adjustment',
|
|
22342
|
+
'reversal',
|
|
22306
22343
|
'capture',
|
|
22307
22344
|
'refund',
|
|
22308
22345
|
'virtual_card_capture',
|
|
@@ -23196,20 +23233,6 @@ T['io.flow.internal.v0.models.gift_card_authorization_error'] = PropTypes.exact(
|
|
|
23196
23233
|
gift_card_program: T['io.flow.internal.v0.models.gift_card_program'].isRequired,
|
|
23197
23234
|
});
|
|
23198
23235
|
|
|
23199
|
-
T['io.flow.internal.v0.models.fee'] = PropTypes.exact({
|
|
23200
|
-
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
23201
|
-
description: PropTypes.string,
|
|
23202
|
-
});
|
|
23203
|
-
|
|
23204
|
-
T['io.flow.internal.v0.models.fees'] = PropTypes.exact({
|
|
23205
|
-
processing: T['io.flow.internal.v0.models.fee'],
|
|
23206
|
-
rate_lock: T['io.flow.internal.v0.models.fee'].isRequired,
|
|
23207
|
-
mor: T['io.flow.internal.v0.models.fee'],
|
|
23208
|
-
fx: T['io.flow.internal.v0.models.fee'],
|
|
23209
|
-
duty_guarantee: T['io.flow.internal.v0.models.fee'],
|
|
23210
|
-
transfer: T['io.flow.internal.v0.models.fee'],
|
|
23211
|
-
});
|
|
23212
|
-
|
|
23213
23236
|
T['io.flow.internal.v0.models.duty_transaction'] = PropTypes.exact({
|
|
23214
23237
|
discriminator: PropTypes.oneOf(['duty_transaction']).isRequired,
|
|
23215
23238
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
@@ -23493,9 +23516,24 @@ T['io.flow.internal.v0.unions.checkout_info'] = PropTypes.oneOfType([
|
|
|
23493
23516
|
T['io.flow.internal.v0.models.checkout_info_translations'],
|
|
23494
23517
|
]);
|
|
23495
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
|
+
|
|
23496
23533
|
T['io.flow.internal.v0.models.channel_transaction'] = PropTypes.exact({
|
|
23497
23534
|
discriminator: PropTypes.oneOf(['channel_transaction']).isRequired,
|
|
23498
23535
|
transaction: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
23536
|
+
fees: PropTypes.arrayOf(T['io.flow.internal.v0.models.fee']).isRequired,
|
|
23499
23537
|
id: PropTypes.string.isRequired,
|
|
23500
23538
|
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
23501
23539
|
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
@@ -23553,6 +23591,7 @@ T['io.flow.internal.v0.models.billing_statement_totals'] = PropTypes.exact({
|
|
|
23553
23591
|
adjustment: T['io.flow.common.v0.models.price'].isRequired,
|
|
23554
23592
|
capture: T['io.flow.common.v0.models.price'].isRequired,
|
|
23555
23593
|
refund: T['io.flow.common.v0.models.price'].isRequired,
|
|
23594
|
+
reversal: T['io.flow.common.v0.models.price'].isRequired,
|
|
23556
23595
|
credit_payment: T['io.flow.common.v0.models.price'].isRequired,
|
|
23557
23596
|
fully_subsidized_order: T['io.flow.common.v0.models.price'].isRequired,
|
|
23558
23597
|
virtual_card_capture: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -24927,6 +24966,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
24927
24966
|
T['io.flow.internal.v0.models.shopify_experience_short_id_deleted'],
|
|
24928
24967
|
T['io.flow.internal.v0.models.shopify_markets_order_upserted'],
|
|
24929
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'],
|
|
24930
24971
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
24931
24972
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
24932
24973
|
T['io.flow.internal.v0.models.stripe_authorization_deleted'],
|
|
@@ -25170,15 +25211,15 @@ T['io.flow.internal.v0.enums.calculator_engine'] = PropTypes.oneOf([
|
|
|
25170
25211
|
]);
|
|
25171
25212
|
|
|
25172
25213
|
T['io.flow.internal.v0.enums.carrier_label_generation_method'] = PropTypes.oneOf(['direct', 'easypost']);
|
|
25173
|
-
T['io.flow.internal.v0.enums.channel_billed_transaction_type'] = PropTypes.oneOf(['adjustment', 'channel_initiated']);
|
|
25174
|
-
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']);
|
|
25175
25216
|
T['io.flow.internal.v0.enums.compliance_type'] = PropTypes.oneOf(['weee']);
|
|
25176
25217
|
T['io.flow.internal.v0.enums.content_type_cast'] = PropTypes.oneOf(['markdown_to_html', 'markdown_to_text']);
|
|
25177
25218
|
T['io.flow.internal.v0.enums.crossdock_tracking_status'] = PropTypes.oneOf(['notified', 'received', 'shipped']);
|
|
25178
25219
|
T['io.flow.internal.v0.enums.deminimis_adjustment_type'] = PropTypes.oneOf(['none', 'duty', 'vat', 'vat_and_duty']);
|
|
25179
25220
|
T['io.flow.internal.v0.enums.dispute_evidence'] = PropTypes.oneOf(['proof_of_delivery', 'proof_of_fulfillment', 'other']);
|
|
25180
25221
|
T['io.flow.internal.v0.enums.duty_exempt_item_types'] = PropTypes.oneOf(['gift_card', 'service', 'digital_item', 'personalization']);
|
|
25181
|
-
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'duty']);
|
|
25222
|
+
T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'duty']);
|
|
25182
25223
|
|
|
25183
25224
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
25184
25225
|
'adyen_authorization_deleted',
|
|
@@ -25425,6 +25466,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
25425
25466
|
'shopify_experience_short_id_deleted',
|
|
25426
25467
|
'shopify_markets_order_upserted',
|
|
25427
25468
|
'shopify_markets_order_deleted',
|
|
25469
|
+
'shopify_markets_shop_upserted',
|
|
25470
|
+
'shopify_markets_shop_deleted',
|
|
25428
25471
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
25429
25472
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
25430
25473
|
'stripe_authorization_deleted',
|
|
@@ -25456,13 +25499,13 @@ T['io.flow.internal.v0.enums.flow_app'] = PropTypes.oneOf(['console']);
|
|
|
25456
25499
|
T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
25457
25500
|
T['io.flow.internal.v0.enums.initial_input_data_source'] = PropTypes.oneOf(['session_persistence']);
|
|
25458
25501
|
T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
|
|
25459
|
-
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']);
|
|
25460
25503
|
T['io.flow.internal.v0.enums.marketing_gateway_feed_download_format'] = PropTypes.oneOf(['tsv', 'csv', 'txt']);
|
|
25461
25504
|
T['io.flow.internal.v0.enums.marketing_gateway_product_status'] = PropTypes.oneOf(['approved', 'not_approved', 'pending', 'not_found', 'excluded']);
|
|
25462
25505
|
T['io.flow.internal.v0.enums.onboarding_automation_process_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
|
|
25463
25506
|
T['io.flow.internal.v0.enums.onboarding_automation_task_state'] = PropTypes.oneOf(['not_started', 'in_progress', 'success', 'failed']);
|
|
25464
25507
|
T['io.flow.internal.v0.enums.order_lifecycle_event'] = PropTypes.oneOf(['order_placed', 'ready_to_fulfill']);
|
|
25465
|
-
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']);
|
|
25466
25509
|
T['io.flow.internal.v0.enums.output_style'] = PropTypes.oneOf(['flow', 'shopify_p1']);
|
|
25467
25510
|
T['io.flow.internal.v0.enums.preferred_billing_schedule'] = PropTypes.oneOf(['monthly', 'bi-monthly']);
|
|
25468
25511
|
|
|
@@ -25477,6 +25520,7 @@ T['io.flow.internal.v0.enums.price_selector'] = PropTypes.oneOf(['minimum', 'max
|
|
|
25477
25520
|
|
|
25478
25521
|
T['io.flow.internal.v0.enums.processing_transaction_type'] = PropTypes.oneOf([
|
|
25479
25522
|
'adjustment',
|
|
25523
|
+
'reversal',
|
|
25480
25524
|
'capture',
|
|
25481
25525
|
'refund',
|
|
25482
25526
|
'fully_subsidized_order',
|
|
@@ -25551,7 +25595,7 @@ T['io.flow.internal.v0.enums.task_processor_key'] = PropTypes.oneOf([
|
|
|
25551
25595
|
'ratecard',
|
|
25552
25596
|
]);
|
|
25553
25597
|
|
|
25554
|
-
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']);
|
|
25555
25599
|
T['io.flow.internal.v0.enums.timeseries_type'] = PropTypes.oneOf(['daily', 'weekly', 'monthly', 'yearly']);
|
|
25556
25600
|
T['io.flow.internal.v0.enums.tracking_integration_type'] = PropTypes.oneOf(['api', 'bulk', 'aftership']);
|
|
25557
25601
|
|
|
@@ -25891,6 +25935,11 @@ T['io.flow.internal.v0.models.google_shopping_setting'] = PropTypes.exact({
|
|
|
25891
25935
|
created_by_email: PropTypes.string.isRequired,
|
|
25892
25936
|
});
|
|
25893
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
|
+
|
|
25894
25943
|
T['io.flow.internal.v0.models.hs6_metadata'] = PropTypes.exact({
|
|
25895
25944
|
description: PropTypes.string.isRequired,
|
|
25896
25945
|
});
|
|
@@ -26736,14 +26785,6 @@ T['io.flow.adyen.v0.models.payment_details'] = PropTypes.exact({
|
|
|
26736
26785
|
paymentData: PropTypes.string,
|
|
26737
26786
|
});
|
|
26738
26787
|
|
|
26739
|
-
T['io.flow.adyen.v0.models.payment_details_v66_3ds2_challenge'] = PropTypes.exact({
|
|
26740
|
-
'threeds2.challengeResult': PropTypes.string.isRequired,
|
|
26741
|
-
});
|
|
26742
|
-
|
|
26743
|
-
T['io.flow.adyen.v0.models.payment_details_v66_3ds2_fingerprint'] = PropTypes.exact({
|
|
26744
|
-
'threeds2.fingerprint': PropTypes.string.isRequired,
|
|
26745
|
-
});
|
|
26746
|
-
|
|
26747
26788
|
T['io.flow.adyen.v0.models.request_for_information_additional_data'] = PropTypes.exact({
|
|
26748
26789
|
rfiSchemeCode: PropTypes.string.isRequired,
|
|
26749
26790
|
modificationMerchantReferences: PropTypes.string.isRequired,
|
|
@@ -26870,6 +26911,10 @@ T['io.flow.shopify.markets.v0.enums.shopify_order_fulfillment_order_status'] = P
|
|
|
26870
26911
|
|
|
26871
26912
|
T['io.flow.shopify.markets.v0.enums.shopify_order_status_type'] = PropTypes.oneOf(['open', 'closed', 'cancelled', 'any']);
|
|
26872
26913
|
|
|
26914
|
+
T['io.flow.shopify.markets.v0.models.shopify_draft_order_count'] = PropTypes.exact({
|
|
26915
|
+
count: PropTypes.number.isRequired,
|
|
26916
|
+
});
|
|
26917
|
+
|
|
26873
26918
|
T['io.flow.shopify.markets.v0.models.shopify_error'] = PropTypes.exact({
|
|
26874
26919
|
errors: PropTypes.object.isRequired,
|
|
26875
26920
|
});
|
|
@@ -26878,6 +26923,10 @@ T['io.flow.shopify.markets.v0.models.shopify_location_delete'] = PropTypes.exact
|
|
|
26878
26923
|
id: PropTypes.number.isRequired,
|
|
26879
26924
|
});
|
|
26880
26925
|
|
|
26926
|
+
T['io.flow.shopify.markets.v0.models.shopify_order_count'] = PropTypes.exact({
|
|
26927
|
+
count: PropTypes.number.isRequired,
|
|
26928
|
+
});
|
|
26929
|
+
|
|
26881
26930
|
T['io.flow.shopify.markets.v0.models.shopify_webhook_shop_redact'] = PropTypes.exact({
|
|
26882
26931
|
shop_id: PropTypes.number.isRequired,
|
|
26883
26932
|
shop_domain: PropTypes.string.isRequired,
|
|
@@ -27322,6 +27371,7 @@ export const adjustmentDetailsAmountPercentage = T['io.flow.internal.v0.models.a
|
|
|
27322
27371
|
export const adjustmentDetailsProcessingTransaction = T['io.flow.internal.v0.models.adjustment_details_processing_transaction'];
|
|
27323
27372
|
export const adjustmentDetailsProcessingTransactionFee = T['io.flow.internal.v0.models.adjustment_details_processing_transaction_fee'];
|
|
27324
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'];
|
|
27325
27375
|
export const adyenAccount = T['io.flow.internal.v0.models.adyen_account'];
|
|
27326
27376
|
export const adyenAccountModificationForm = T['io.flow.internal.v0.models.adyen_account_modification_form'];
|
|
27327
27377
|
export const adyenAccountPutForm = T['io.flow.internal.v0.models.adyen_account_put_form'];
|
|
@@ -28501,6 +28551,7 @@ export const heapWebsocketRequest = T['io.flow.internal.v0.models.heap_websocket
|
|
|
28501
28551
|
export const heapWebsocketResponse = T['io.flow.internal.v0.models.heap_websocket_response'];
|
|
28502
28552
|
export const heapWebsocketRetry = T['io.flow.internal.v0.models.heap_websocket_retry'];
|
|
28503
28553
|
export const href = T['io.flow.internal.v0.models.href'];
|
|
28554
|
+
export const hs6Detail = T['io.flow.internal.v0.models.hs6_detail'];
|
|
28504
28555
|
export const hs6Metadata = T['io.flow.internal.v0.models.hs6_metadata'];
|
|
28505
28556
|
export const httpMethod = T['io.flow.internal.v0.enums.http_method'];
|
|
28506
28557
|
export const hybrisCatalogItemsImportRequest = T['io.flow.internal.v0.models.hybris_catalog_items_import_request'];
|
|
@@ -28936,7 +28987,6 @@ export const promptTarget = T['io.flow.internal.v0.enums.prompt_target'];
|
|
|
28936
28987
|
export const proofOfPosting = T['io.flow.internal.v0.unions.proof_of_posting'];
|
|
28937
28988
|
export const proofOfPostingExternallyFulfilled = T['io.flow.internal.v0.models.proof_of_posting_externally_fulfilled'];
|
|
28938
28989
|
export const proofOfPostingFulfilled = T['io.flow.internal.v0.models.proof_of_posting_fulfilled'];
|
|
28939
|
-
export const proofOfPostingFullyRefunded = T['io.flow.internal.v0.models.proof_of_posting_fully_refunded'];
|
|
28940
28990
|
export const proofOfPostingOrderCancellation = T['io.flow.internal.v0.models.proof_of_posting_order_cancellation'];
|
|
28941
28991
|
export const proofOfPostingShippingNotification = T['io.flow.internal.v0.models.proof_of_posting_shipping_notification'];
|
|
28942
28992
|
export const quoteRequest = T['io.flow.internal.v0.models.quote_request'];
|
|
@@ -29082,8 +29132,10 @@ export const shopifyMarketsOrder = T['io.flow.internal.v0.models.shopify_markets
|
|
|
29082
29132
|
export const shopifyMarketsOrderDeleted = T['io.flow.internal.v0.models.shopify_markets_order_deleted'];
|
|
29083
29133
|
export const shopifyMarketsOrderUpserted = T['io.flow.internal.v0.models.shopify_markets_order_upserted'];
|
|
29084
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'];
|
|
29085
29136
|
export const shopifyMarketsShopForm = T['io.flow.internal.v0.models.shopify_markets_shop_form'];
|
|
29086
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'];
|
|
29087
29139
|
export const shopifyMarketsSubsidiaryCompany = T['io.flow.internal.v0.models.shopify_markets_subsidiary_company'];
|
|
29088
29140
|
export const shopifyMarketsSync = T['io.flow.internal.v0.models.shopify_markets_sync'];
|
|
29089
29141
|
export const shopifyMarketsTradeSector = T['io.flow.internal.v0.enums.shopify_markets_trade_sector'];
|
|
@@ -29097,7 +29149,6 @@ export const shopifyMonitoringOrderMonitor = T['io.flow.internal.v0.models.shopi
|
|
|
29097
29149
|
export const shopifyMonitoringOrderMonitorEventDeleted = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'];
|
|
29098
29150
|
export const shopifyMonitoringOrderMonitorEventUpserted = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'];
|
|
29099
29151
|
export const shopifyMonitoringOrderMonitorReview = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review'];
|
|
29100
|
-
export const shopifyMonitoringOrderMonitorReviewOrderDetails = T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_review_order_details'];
|
|
29101
29152
|
export const shopifyMonitoringOrderMonitorType = T['io.flow.internal.v0.unions.shopify_monitoring_order_monitor_type'];
|
|
29102
29153
|
export const shopifyMonitoringTrackingField = T['io.flow.internal.v0.enums.shopify_monitoring_tracking_field'];
|
|
29103
29154
|
export const shopifyMonitoringTrackingNumber = T['io.flow.internal.v0.models.shopify_monitoring_tracking_number'];
|