@flowio/api-internal-prop-types 9.24.77 → 9.24.79
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 +106 -67
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +106 -67
- package/src/api-internal.js +156 -99
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-internal-prop-types",
|
|
3
|
-
"version": "9.24.
|
|
3
|
+
"version": "9.24.79",
|
|
4
4
|
"description": "PropType validators that work with internal Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"prop-types": "^15.7.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "1855db886db2701e6ba2ae9ede907ce6abbcaa38"
|
|
34
34
|
}
|
package/src/api-internal.d.ts
CHANGED
|
@@ -2214,6 +2214,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2214
2214
|
interface BillingCsvTransactionMetadata {
|
|
2215
2215
|
readonly 'channel'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataChannel;
|
|
2216
2216
|
readonly 'shipping_label'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabel;
|
|
2217
|
+
readonly 'shipping_label_revenue_share'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabelRevenueShare;
|
|
2217
2218
|
readonly 'trueup'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
|
|
2218
2219
|
readonly 'manual'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
|
|
2219
2220
|
}
|
|
@@ -2232,6 +2233,12 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2232
2233
|
readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
2233
2234
|
}
|
|
2234
2235
|
|
|
2236
|
+
interface BillingCsvTransactionMetadataShippingLabelRevenueShare {
|
|
2237
|
+
readonly 'label_id': string;
|
|
2238
|
+
readonly 'base_amount'?: number;
|
|
2239
|
+
readonly 'percentage'?: number;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2235
2242
|
interface BillingCsvTransactionMetadataTrueup {
|
|
2236
2243
|
readonly 'original': io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
2237
2244
|
}
|
|
@@ -2317,10 +2324,12 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2317
2324
|
type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
|
|
2318
2325
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
2319
2326
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
2320
|
-
type DeclineCode = 'approve_with_id' | 'call_issuer' | 'card_not_supported' | 'card_velocity_exceeded' | 'currency_not_supported' | 'do_not_honor' | 'do_not_try_again' | 'duplicate_transaction' | 'expired_card' | 'fraudulent' | 'generic_decline' | 'incorrect_number' | 'incorrect_cvc' | 'incorrect_pin' | 'incorrect_zip' | 'insufficient_funds' | 'invalid_account' | 'invalid_amount' | 'invalid_cvc' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_number' | 'invalid_pin' | 'issuer_not_available' | 'lost_card' | 'new_account_information_available' | 'no_action_taken' | 'not_permitted' | 'pickup_card' | 'pin_try_exceeded' | 'processing_error' | 'reenter_transaction' | 'restricted_card' | 'revocation_of_all_authorizations' | 'revocation_of_authorization' | 'security_violation' | 'service_not_allowed' | 'stolen_card' | 'stop_payment_order' | 'testmode_decline' | 'transaction_not_allowed' | 'try_again_later' | 'withdrawal_count_limit_exceeded';
|
|
2327
|
+
type DeclineCode = 'approve_with_id' | 'call_issuer' | 'card_not_supported' | 'card_velocity_exceeded' | 'currency_not_supported' | 'do_not_honor' | 'do_not_try_again' | 'duplicate_transaction' | 'expired_card' | 'fraudulent' | 'generic_decline' | 'incorrect_number' | 'incorrect_cvc' | 'incorrect_pin' | 'incorrect_zip' | 'insufficient_funds' | 'invalid_account' | 'invalid_amount' | 'invalid_cvc' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_number' | 'invalid_pin' | 'issuer_not_available' | 'lost_card' | 'new_account_information_available' | 'no_action_taken' | 'not_permitted' | 'pickup_card' | 'pin_try_exceeded' | 'processing_error' | 'reenter_transaction' | 'restricted_card' | 'revocation_of_all_authorizations' | 'revocation_of_authorization' | 'security_violation' | 'service_not_allowed' | 'stolen_card' | 'stop_payment_order' | 'testmode_decline' | 'transaction_not_allowed' | 'try_again_later' | 'withdrawal_count_limit_exceeded' | 'previously_declined_do_not_retry' | 'highest_risk_level' | 'requested_block_on_incorrect_cvc';
|
|
2321
2328
|
type ErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'country_code_invalid' | 'email_invalid' | 'postal_code_invalid' | 'invalid_characters' | 'url_invalid' | 'invalid_charge_amount' | 'incorrect_number' | 'incorrect_address' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'expired_card' | 'missing' | 'processing_error' | 'account_closed' | 'amount_too_small' | 'amount_too_large' | 'api_key_expired' | 'authentication_required' | 'capture_charge_authorization_expired' | 'capture_unauthorized_payment' | 'card_decline_rate_limit_exceeded' | 'charge_already_captured' | 'charge_already_refunded' | 'charge_disputed' | 'charge_exceeds_source_limit' | 'charge_expired_for_capture' | 'charge_invalid_parameter' | 'charge_not_refundable' | 'insufficient_funds' | 'intent_invalid_state' | 'livemode_mismatch' | 'parameter_invalid_empty' | 'parameter_invalid_integer' | 'parameter_invalid_string_blank' | 'parameter_invalid_string_empty' | 'parameter_missing' | 'parameter_unknown' | 'parameters_exclusive' | 'payment_intent_action_required' | 'payment_intent_authentication_failure' | 'payment_intent_incompatible_payment_method' | 'payment_intent_payment_attempt_expired' | 'payment_intent_payment_attempt_failed' | 'payment_intent_unexpected_state' | 'payment_intent_invalid_parameter' | 'payment_method_billing_details_address_missing' | 'payment_method_customer_decline' | 'payment_method_currency_mismatch' | 'payment_method_invalid_parameter' | 'payment_method_invalid_parameter_testmode' | 'payment_method_not_available' | 'payment_method_provider_decline' | 'payment_method_provider_timeout' | 'payment_method_unactivated' | 'payment_method_unexpected_state' | 'payment_method_unsupported_type' | 'platform_api_key_expired' | 'refund_disputed_payment' | 'testmode_charges_only' | 'tls_version_unsupported' | 'setup_attempt_failed' | 'setup_intent_authentication_failure' | 'setup_intent_invalid_parameter' | 'setup_intent_setup_attempt_expired' | 'setup_intent_unexpected_state';
|
|
2322
2329
|
type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
|
|
2323
2330
|
type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
|
|
2331
|
+
type ExtendedAuthorizationStatus = 'enabled' | 'disabled';
|
|
2332
|
+
type FeatureAvailability = 'available' | 'unavailable';
|
|
2324
2333
|
type KlarnaPaymentMethodCategoryType = 'direct_bank_transfer' | 'direct_debit' | 'pay_later' | 'pay_now' | 'pay_over_time';
|
|
2325
2334
|
type KlarnaProduct = 'payment';
|
|
2326
2335
|
type NetworkStatus = 'approved_by_network' | 'declined_by_network' | 'not_sent_to_network' | 'reversed_after_approval';
|
|
@@ -2468,6 +2477,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2468
2477
|
readonly 'currency': string;
|
|
2469
2478
|
readonly 'customer'?: string;
|
|
2470
2479
|
readonly 'outcome'?: io.flow.stripe.v0.models.PaymentOutcome;
|
|
2480
|
+
readonly 'disputed'?: boolean;
|
|
2471
2481
|
readonly 'paid': boolean;
|
|
2472
2482
|
readonly 'refunded': boolean;
|
|
2473
2483
|
readonly 'refunds'?: io.flow.stripe.v0.models.Refunds;
|
|
@@ -2487,6 +2497,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2487
2497
|
readonly 'calculated_statement_descriptor'?: string;
|
|
2488
2498
|
readonly 'statement_descriptor'?: string;
|
|
2489
2499
|
readonly 'payment_method_details'?: io.flow.stripe.v0.unions.PaymentMethodDetails;
|
|
2500
|
+
readonly 'payment_method'?: string;
|
|
2490
2501
|
}
|
|
2491
2502
|
|
|
2492
2503
|
interface ChargeDestination {
|
|
@@ -2515,6 +2526,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2515
2526
|
readonly 'amount_refunded': number;
|
|
2516
2527
|
readonly 'authorization_code'?: string;
|
|
2517
2528
|
readonly 'captured': boolean;
|
|
2529
|
+
readonly 'disputed'?: boolean;
|
|
2518
2530
|
readonly 'created': number;
|
|
2519
2531
|
readonly 'currency': string;
|
|
2520
2532
|
readonly 'customer'?: string;
|
|
@@ -2538,6 +2550,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2538
2550
|
readonly 'calculated_statement_descriptor'?: string;
|
|
2539
2551
|
readonly 'statement_descriptor'?: string;
|
|
2540
2552
|
readonly 'payment_method_details'?: io.flow.stripe.v0.unions.PaymentMethodDetails;
|
|
2553
|
+
readonly 'payment_method'?: string;
|
|
2541
2554
|
}
|
|
2542
2555
|
|
|
2543
2556
|
interface CodeVerification {
|
|
@@ -2565,6 +2578,14 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2565
2578
|
readonly 'error': io.flow.stripe.v0.models.StripeError;
|
|
2566
2579
|
}
|
|
2567
2580
|
|
|
2581
|
+
interface ExtendedAuthorization {
|
|
2582
|
+
readonly 'status'?: io.flow.stripe.v0.enums.ExtendedAuthorizationStatus;
|
|
2583
|
+
}
|
|
2584
|
+
|
|
2585
|
+
interface IncrementalAuthorization {
|
|
2586
|
+
readonly 'status'?: io.flow.stripe.v0.enums.FeatureAvailability;
|
|
2587
|
+
}
|
|
2588
|
+
|
|
2568
2589
|
interface Keys {
|
|
2569
2590
|
readonly 'secret'?: string;
|
|
2570
2591
|
readonly 'publishable'?: string;
|
|
@@ -2604,6 +2625,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2604
2625
|
readonly 'payment_request_order_reference'?: string;
|
|
2605
2626
|
}
|
|
2606
2627
|
|
|
2628
|
+
interface Multicapture {
|
|
2629
|
+
readonly 'status'?: io.flow.stripe.v0.enums.FeatureAvailability;
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2607
2632
|
interface NetworkTokenUsed {
|
|
2608
2633
|
readonly 'used'?: boolean;
|
|
2609
2634
|
}
|
|
@@ -2651,6 +2676,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2651
2676
|
readonly 'shipping'?: io.flow.stripe.v0.models.Shipping;
|
|
2652
2677
|
}
|
|
2653
2678
|
|
|
2679
|
+
interface Overcapture {
|
|
2680
|
+
readonly 'maximum_amount_capturable'?: number;
|
|
2681
|
+
readonly 'status'?: io.flow.stripe.v0.enums.FeatureAvailability;
|
|
2682
|
+
}
|
|
2683
|
+
|
|
2654
2684
|
interface Owner {
|
|
2655
2685
|
readonly 'address'?: io.flow.stripe.v0.models.Address;
|
|
2656
2686
|
readonly 'email'?: string;
|
|
@@ -2724,7 +2754,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2724
2754
|
readonly 'off_session'?: boolean;
|
|
2725
2755
|
readonly 'payment_method'?: string;
|
|
2726
2756
|
readonly 'payment_method_data'?: io.flow.stripe.v0.unions.PaymentMethodData;
|
|
2727
|
-
readonly 'payment_method_options'?: io.flow.stripe.v0.models.
|
|
2757
|
+
readonly 'payment_method_options'?: io.flow.stripe.v0.models.PaymentMethodOptionsForm;
|
|
2728
2758
|
readonly 'payment_method_types'?: string[];
|
|
2729
2759
|
readonly 'receipt_email'?: string;
|
|
2730
2760
|
readonly 'save_payment_method'?: boolean;
|
|
@@ -2745,7 +2775,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2745
2775
|
readonly 'on_behalf_of'?: string;
|
|
2746
2776
|
readonly 'payment_method'?: string;
|
|
2747
2777
|
readonly 'payment_method_data'?: io.flow.stripe.v0.unions.PaymentMethodData;
|
|
2748
|
-
readonly 'payment_method_options'?: io.flow.stripe.v0.models.
|
|
2778
|
+
readonly 'payment_method_options'?: io.flow.stripe.v0.models.PaymentMethodOptionsForm;
|
|
2749
2779
|
readonly 'payment_method_types'?: string[];
|
|
2750
2780
|
readonly 'receipt_email'?: string;
|
|
2751
2781
|
readonly 'return_url'?: string;
|
|
@@ -2851,6 +2881,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2851
2881
|
readonly 'issuer'?: string;
|
|
2852
2882
|
readonly 'wallet'?: io.flow.stripe.v0.unions.CardWallet;
|
|
2853
2883
|
readonly 'network_transaction_id'?: string;
|
|
2884
|
+
readonly 'extended_authorization'?: io.flow.stripe.v0.models.ExtendedAuthorization;
|
|
2885
|
+
readonly 'incremental_authorization'?: io.flow.stripe.v0.models.IncrementalAuthorization;
|
|
2886
|
+
readonly 'multicapture'?: io.flow.stripe.v0.models.Multicapture;
|
|
2887
|
+
readonly 'overcapture'?: io.flow.stripe.v0.models.Overcapture;
|
|
2854
2888
|
}
|
|
2855
2889
|
|
|
2856
2890
|
interface PaymentMethodDetailsKlarna {
|
|
@@ -2879,6 +2913,18 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2879
2913
|
readonly 'request_three_d_secure'?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
|
|
2880
2914
|
readonly 'stored_credential_transaction_type'?: io.flow.stripe.v0.enums.StoredCredentialTransactionType;
|
|
2881
2915
|
readonly 'mcc'?: string;
|
|
2916
|
+
readonly 'capture_before'?: number;
|
|
2917
|
+
}
|
|
2918
|
+
|
|
2919
|
+
interface PaymentMethodOptionsCardForm {
|
|
2920
|
+
readonly 'network'?: string;
|
|
2921
|
+
readonly 'request_three_d_secure'?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
|
|
2922
|
+
readonly 'stored_credential_transaction_type'?: io.flow.stripe.v0.enums.StoredCredentialTransactionType;
|
|
2923
|
+
readonly 'mcc'?: string;
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2926
|
+
interface PaymentMethodOptionsForm {
|
|
2927
|
+
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
2882
2928
|
}
|
|
2883
2929
|
|
|
2884
2930
|
interface PaymentOutcome {
|
|
@@ -7728,6 +7774,11 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7728
7774
|
readonly 'order_updated_at'?: string;
|
|
7729
7775
|
}
|
|
7730
7776
|
|
|
7777
|
+
interface ChannelOrderAcceptanceDetails {
|
|
7778
|
+
readonly 'order_acceptance': io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
7779
|
+
readonly 'external_order': any/*object*/;
|
|
7780
|
+
}
|
|
7781
|
+
|
|
7731
7782
|
interface ChannelOrderAcceptanceForm {
|
|
7732
7783
|
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
7733
7784
|
}
|
|
@@ -9276,65 +9327,25 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
9276
9327
|
readonly 'shipping': boolean;
|
|
9277
9328
|
}
|
|
9278
9329
|
|
|
9330
|
+
interface RecordReference {
|
|
9331
|
+
readonly 'id': string;
|
|
9332
|
+
}
|
|
9333
|
+
|
|
9279
9334
|
interface RefundRecord {
|
|
9280
|
-
readonly '
|
|
9281
|
-
readonly '
|
|
9282
|
-
readonly '
|
|
9283
|
-
readonly '
|
|
9284
|
-
readonly '
|
|
9285
|
-
readonly '
|
|
9286
|
-
readonly '
|
|
9287
|
-
readonly '
|
|
9288
|
-
readonly '
|
|
9289
|
-
readonly '
|
|
9290
|
-
readonly '
|
|
9291
|
-
readonly '
|
|
9292
|
-
readonly '
|
|
9293
|
-
readonly '
|
|
9294
|
-
readonly 'merchant_name': string;
|
|
9295
|
-
readonly 'destination_country': string;
|
|
9296
|
-
readonly 'shopper_country_is_eu': boolean;
|
|
9297
|
-
readonly 'order_refund_reason_name': string;
|
|
9298
|
-
readonly 'order_refund_status_name': string;
|
|
9299
|
-
readonly 'original_ccy': string;
|
|
9300
|
-
readonly 'transaction_ccy': string;
|
|
9301
|
-
readonly 'total_refund_amount_exc_vat_in_transaction_ccy'?: number;
|
|
9302
|
-
readonly 'refund_vat_in_transaction_ccy'?: number;
|
|
9303
|
-
readonly 'total_refund_amount_inc_vat_in_transaction_ccy'?: number;
|
|
9304
|
-
readonly 'merchant_total_products_refund_amount_exc_vat_in_original_ccy': number;
|
|
9305
|
-
readonly 'merchant_shipping_refund_amount_exc_vat_in_transaction_ccy'?: number;
|
|
9306
|
-
readonly 'merchant_shipping_refund_amount_exc_vat_in_original_ccy': number;
|
|
9307
|
-
readonly 'total_refund_amount_exc_tax_collected_in_shopper_ccy'?: number;
|
|
9308
|
-
readonly 'tax_collected_amount_in_shopper_ccy': number;
|
|
9309
|
-
readonly 'total_refund_amount_inc_tax_collected_in_shopper_ccy'?: number;
|
|
9310
|
-
readonly 'payment_gateway': string;
|
|
9311
|
-
readonly 'min_product_customer_vat_rate'?: number;
|
|
9312
|
-
readonly 'is_virtual_order': boolean;
|
|
9313
|
-
readonly 'is_mixed_virtual_order': boolean;
|
|
9314
|
-
readonly 'total_refund_amount_exc_tax_collected_in_usd': number;
|
|
9315
|
-
readonly 'tax_collected_amount_in_usd': number;
|
|
9316
|
-
readonly 'total_refund_amount_inc_tax_collected_in_usd': number;
|
|
9317
|
-
readonly 'total_refund_amount_exc_tax_collected_in_eur': number;
|
|
9318
|
-
readonly 'tax_collected_amount_in_eur': number;
|
|
9319
|
-
readonly 'total_refund_amount_inc_tax_collected_in_eur': number;
|
|
9320
|
-
readonly 'is_wyol_order': boolean;
|
|
9321
|
-
readonly 'is_duties_guaranteed': boolean;
|
|
9322
|
-
readonly 'invoice_id'?: string;
|
|
9323
|
-
readonly 'total_refund_amount_exc_vat_in_entity_ccy': number;
|
|
9324
|
-
readonly 'refund_vat_in_entity_ccy': number;
|
|
9325
|
-
readonly 'total_refund_amount_inc_vat_in_entity_ccy': number;
|
|
9326
|
-
readonly 'merchant_total_products_refund_amount_exc_vat_in_entity_ccy': number;
|
|
9327
|
-
readonly 'merchant_shipping_refund_amount_exc_vat_in_entity_ccy': number;
|
|
9328
|
-
readonly 'merchant_duties_and_taxes_refund_amount_in_entity_ccy': number;
|
|
9329
|
-
readonly 'merchant_service_gesture_amount_exc_vat_in_entity_ccy': number;
|
|
9330
|
-
readonly 'customer_prepaid_refund_amount_exc_vat_in_entity_ccy': number;
|
|
9331
|
-
readonly 'total_refund_amount_exc_tax_collected_in_entity_ccy': number;
|
|
9332
|
-
readonly 'tax_collected_amount_in_entity_ccy': number;
|
|
9333
|
-
readonly 'total_refund_amount_inc_tax_collected_in_entity_ccy': number;
|
|
9334
|
-
readonly 'conversion_rate_transaction_to_entity_ccy': number;
|
|
9335
|
-
readonly 'merchant_order_id': string;
|
|
9336
|
-
readonly 'transaction_date': string;
|
|
9337
|
-
readonly 'debug_console_order_link': string;
|
|
9335
|
+
readonly 'id': string;
|
|
9336
|
+
readonly 'parent'?: io.flow.billing.reporting.csv.v0.models.RecordReference;
|
|
9337
|
+
readonly 'merchant': io.flow.billing.reporting.csv.v0.models.ReportingOrganizationSummary;
|
|
9338
|
+
readonly 'order': io.flow.billing.reporting.csv.v0.models.ReportingOrderSummary;
|
|
9339
|
+
readonly 'entity': io.flow.billing.reporting.csv.v0.models.ReportingEntity;
|
|
9340
|
+
readonly 'vendor': io.flow.billing.reporting.csv.v0.models.ReportingVendor;
|
|
9341
|
+
readonly 'currencies': io.flow.billing.reporting.csv.v0.models.ReportingCurrencies;
|
|
9342
|
+
readonly 'conversion_rate': io.flow.billing.reporting.csv.v0.models.ReportingConversionRates;
|
|
9343
|
+
readonly 'reconciliation': io.flow.billing.reporting.csv.v0.models.ReportingReconciliation;
|
|
9344
|
+
readonly 'merchant_subsidies': io.flow.billing.reporting.csv.v0.models.ReportingMerchantSubsidies;
|
|
9345
|
+
readonly 'merchant_fees': io.flow.billing.reporting.csv.v0.models.ReportingMerchantFees;
|
|
9346
|
+
readonly 'merchant_transactions': io.flow.billing.reporting.csv.v0.models.ReportingMerchantTransactions;
|
|
9347
|
+
readonly 'debug': io.flow.billing.reporting.csv.v0.models.ReportingDebug;
|
|
9348
|
+
readonly 'return'?: io.flow.billing.reporting.csv.v0.models.ReportingReturn;
|
|
9338
9349
|
}
|
|
9339
9350
|
|
|
9340
9351
|
interface ReportingAuthorizationReference {
|
|
@@ -9468,6 +9479,7 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
9468
9479
|
readonly 'tax': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9469
9480
|
readonly 'duty': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9470
9481
|
readonly 'freight': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9482
|
+
readonly 'refund': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9471
9483
|
}
|
|
9472
9484
|
|
|
9473
9485
|
interface ReportingMonetaryValue {
|
|
@@ -9500,6 +9512,10 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
9500
9512
|
readonly 'year': number;
|
|
9501
9513
|
}
|
|
9502
9514
|
|
|
9515
|
+
interface ReportingReturn {
|
|
9516
|
+
readonly 'placeholder': string;
|
|
9517
|
+
}
|
|
9518
|
+
|
|
9503
9519
|
interface ReportingShopperFees {
|
|
9504
9520
|
readonly 'fuel': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9505
9521
|
readonly 'remote_area': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
@@ -9528,24 +9544,24 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
9528
9544
|
|
|
9529
9545
|
interface SalesRecord {
|
|
9530
9546
|
readonly 'id': string;
|
|
9531
|
-
readonly 'parent'?: io.flow.billing.reporting.csv.v0.models.
|
|
9547
|
+
readonly 'parent'?: io.flow.billing.reporting.csv.v0.models.RecordReference;
|
|
9532
9548
|
readonly 'merchant': io.flow.billing.reporting.csv.v0.models.ReportingOrganizationSummary;
|
|
9533
9549
|
readonly 'order': io.flow.billing.reporting.csv.v0.models.ReportingOrderSummary;
|
|
9534
9550
|
readonly 'entity': io.flow.billing.reporting.csv.v0.models.ReportingEntity;
|
|
9535
9551
|
readonly 'vendor': io.flow.billing.reporting.csv.v0.models.ReportingVendor;
|
|
9536
9552
|
readonly 'currencies': io.flow.billing.reporting.csv.v0.models.ReportingCurrencies;
|
|
9537
9553
|
readonly 'conversion_rate': io.flow.billing.reporting.csv.v0.models.ReportingConversionRates;
|
|
9538
|
-
readonly 'fulfillment': io.flow.billing.reporting.csv.v0.models.ReportingFulfillment;
|
|
9539
9554
|
readonly 'reconciliation': io.flow.billing.reporting.csv.v0.models.ReportingReconciliation;
|
|
9540
|
-
readonly 'marked_as_final': io.flow.billing.reporting.csv.v0.models.MarkedAsFinal;
|
|
9541
9555
|
readonly 'merchant_subsidies': io.flow.billing.reporting.csv.v0.models.ReportingMerchantSubsidies;
|
|
9542
9556
|
readonly 'merchant_fees': io.flow.billing.reporting.csv.v0.models.ReportingMerchantFees;
|
|
9543
9557
|
readonly 'merchant_transactions': io.flow.billing.reporting.csv.v0.models.ReportingMerchantTransactions;
|
|
9544
|
-
readonly 'vat_remittance': io.flow.billing.reporting.csv.v0.models.ReportingVatRemittance;
|
|
9545
9558
|
readonly 'debug': io.flow.billing.reporting.csv.v0.models.ReportingDebug;
|
|
9559
|
+
readonly 'fulfillment': io.flow.billing.reporting.csv.v0.models.ReportingFulfillment;
|
|
9560
|
+
readonly 'vat_remittance': io.flow.billing.reporting.csv.v0.models.ReportingVatRemittance;
|
|
9561
|
+
readonly 'marked_as_final': io.flow.billing.reporting.csv.v0.models.MarkedAsFinal;
|
|
9546
9562
|
}
|
|
9547
9563
|
|
|
9548
|
-
interface
|
|
9564
|
+
interface TransactionReference {
|
|
9549
9565
|
readonly 'id': string;
|
|
9550
9566
|
}
|
|
9551
9567
|
}
|
|
@@ -15870,6 +15886,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15870
15886
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
15871
15887
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
15872
15888
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
15889
|
+
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
15890
|
+
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'remote_area_delivery';
|
|
15873
15891
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
15874
15892
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
15875
15893
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -16045,6 +16063,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16045
16063
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
16046
16064
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
16047
16065
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason' | 'additional_rejection_info';
|
|
16066
|
+
type OrganizationRestrictionReviewType = 'all_pending' | 'pending_verification';
|
|
16048
16067
|
type OrganizationRestrictionRiskLevel = '5' | '15';
|
|
16049
16068
|
type OrganizationRestrictionScreeningStatus = 'in_review' | 'fully_reviewed' | 'rejected' | 'unscreened';
|
|
16050
16069
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
@@ -16064,7 +16083,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16064
16083
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
16065
16084
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
16066
16085
|
type PromptTarget = 'browse' | 'checkout';
|
|
16067
|
-
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event' | 'credit_and_subsidy' | 'negative_balance_guarantee';
|
|
16086
|
+
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'return_refund' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event' | 'credit_and_subsidy' | 'negative_balance_guarantee';
|
|
16068
16087
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
16069
16088
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
16070
16089
|
type RateSource = 'calculated' | 'market';
|
|
@@ -17886,6 +17905,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17886
17905
|
readonly 'flow_tracking_status'?: io.flow.tracking.v0.enums.TrackingStatus;
|
|
17887
17906
|
readonly 'order_items': io.flow.experience.v0.models.LocalizedLineItem[];
|
|
17888
17907
|
readonly 'label_items': io.flow.experience.v0.models.LocalizedLineItem[];
|
|
17908
|
+
readonly 'carrier'?: io.flow.reference.v0.models.CarrierService;
|
|
17889
17909
|
readonly 'tracking_numbers'?: string[];
|
|
17890
17910
|
}
|
|
17891
17911
|
|
|
@@ -17942,6 +17962,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17942
17962
|
readonly 'channel_order_acceptance': io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
17943
17963
|
}
|
|
17944
17964
|
|
|
17965
|
+
interface ChannelOrderAcceptanceDetails {
|
|
17966
|
+
readonly 'order_acceptance': io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
17967
|
+
readonly 'external_order': any/*object*/;
|
|
17968
|
+
}
|
|
17969
|
+
|
|
17945
17970
|
interface ChannelOrderAcceptanceForm {
|
|
17946
17971
|
readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
17947
17972
|
}
|
|
@@ -18057,6 +18082,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18057
18082
|
readonly 'channel_transaction': io.flow.internal.v0.models.ChannelTransaction;
|
|
18058
18083
|
}
|
|
18059
18084
|
|
|
18085
|
+
interface ChargeInput {
|
|
18086
|
+
readonly 'charge_input_code': io.flow.internal.v0.enums.ChargeInputType;
|
|
18087
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
18088
|
+
readonly 'charge_input_source': io.flow.internal.v0.enums.ChargeEstimateSource;
|
|
18089
|
+
}
|
|
18090
|
+
|
|
18060
18091
|
interface Chargeback {
|
|
18061
18092
|
readonly 'id': string;
|
|
18062
18093
|
readonly 'key': string;
|
|
@@ -24051,6 +24082,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24051
24082
|
readonly 'organization': string;
|
|
24052
24083
|
readonly 'shipping_label_form': io.flow.label.v0.unions.ShippingLabelForm;
|
|
24053
24084
|
readonly 'shipment_cost'?: io.flow.common.v0.models.Money;
|
|
24085
|
+
readonly 'charges'?: io.flow.internal.v0.models.ChargeInput[];
|
|
24054
24086
|
readonly 'reference_id'?: string;
|
|
24055
24087
|
}
|
|
24056
24088
|
|
|
@@ -25734,6 +25766,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25734
25766
|
readonly 'organization_id': string;
|
|
25735
25767
|
readonly 'approval_status': io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
25736
25768
|
readonly 'screening_status': io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
25769
|
+
readonly 'review_type'?: io.flow.internal.v0.enums.OrganizationRestrictionReviewType;
|
|
25737
25770
|
readonly 'risk_level'?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
25738
25771
|
readonly 'hs_code'?: string;
|
|
25739
25772
|
readonly 'merchant_category_code'?: string;
|
|
@@ -27184,6 +27217,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27184
27217
|
readonly 'url'?: string;
|
|
27185
27218
|
readonly 'approval_status'?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
27186
27219
|
readonly 'screening_status'?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
27220
|
+
readonly 'review_type'?: io.flow.internal.v0.enums.OrganizationRestrictionReviewType;
|
|
27187
27221
|
readonly 'risk_level'?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
27188
27222
|
readonly 'hs_code'?: string;
|
|
27189
27223
|
readonly 'merchant_category_code'?: string;
|
|
@@ -29522,6 +29556,8 @@ export const channelOrderAcceptanceRejectionReason: PropTypes.Requireable<io.flo
|
|
|
29522
29556
|
export const channelOrderAcceptanceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus>;
|
|
29523
29557
|
export const channelOrderFulfillmentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode>;
|
|
29524
29558
|
export const channelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelTransactionType>;
|
|
29559
|
+
export const chargeEstimateSource: PropTypes.Requireable<io.flow.internal.v0.enums.ChargeEstimateSource>;
|
|
29560
|
+
export const chargeInputType: PropTypes.Requireable<io.flow.internal.v0.enums.ChargeInputType>;
|
|
29525
29561
|
export const chargebackPaymentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChargebackPaymentStatus>;
|
|
29526
29562
|
export const chargebackProcessStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChargebackProcessStatus>;
|
|
29527
29563
|
export const checkoutAddAuthorizationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.CheckoutAddAuthorizationErrorCode>;
|
|
@@ -29697,6 +29733,7 @@ export const organizationMetricType: PropTypes.Requireable<io.flow.internal.v0.e
|
|
|
29697
29733
|
export const organizationPaymentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationPaymentStatus>;
|
|
29698
29734
|
export const organizationRestrictionApprovalStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus>;
|
|
29699
29735
|
export const organizationRestrictionNoteType: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionNoteType>;
|
|
29736
|
+
export const organizationRestrictionReviewType: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionReviewType>;
|
|
29700
29737
|
export const organizationRestrictionRiskLevel: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel>;
|
|
29701
29738
|
export const organizationRestrictionScreeningStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus>;
|
|
29702
29739
|
export const outputStyle: PropTypes.Requireable<io.flow.internal.v0.enums.OutputStyle>;
|
|
@@ -30020,6 +30057,7 @@ export const channelMembershipPutForm: PropTypes.Requireable<io.flow.internal.v0
|
|
|
30020
30057
|
export const channelOrder: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrder>;
|
|
30021
30058
|
export const channelOrderAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptance>;
|
|
30022
30059
|
export const channelOrderAcceptanceDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted>;
|
|
30060
|
+
export const channelOrderAcceptanceDetails: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceDetails>;
|
|
30023
30061
|
export const channelOrderAcceptanceForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceForm>;
|
|
30024
30062
|
export const channelOrderAcceptanceReason: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceReason>;
|
|
30025
30063
|
export const channelOrderAcceptanceUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted>;
|
|
@@ -30036,6 +30074,7 @@ export const channelTransaction: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
30036
30074
|
export const channelTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionDeleted>;
|
|
30037
30075
|
export const channelTransactionRate: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionRate>;
|
|
30038
30076
|
export const channelTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionUpserted>;
|
|
30077
|
+
export const chargeInput: PropTypes.Requireable<io.flow.internal.v0.models.ChargeInput>;
|
|
30039
30078
|
export const chargeback: PropTypes.Requireable<io.flow.internal.v0.models.Chargeback>;
|
|
30040
30079
|
export const chargebackDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChargebackDeleted>;
|
|
30041
30080
|
export const chargebackUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChargebackUpserted>;
|