@flowio/api-internal-prop-types 9.24.97 → 9.24.100
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 +187 -71
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +187 -71
- package/src/api-internal.js +442 -239
package/lib/api-internal.d.ts
CHANGED
|
@@ -246,7 +246,7 @@ declare namespace io.flow.payment.gateway.v0.enums {
|
|
|
246
246
|
type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies' | 'order_missing';
|
|
247
247
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
248
248
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
249
|
-
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact' | 'twint' | 'przelewy24';
|
|
249
|
+
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact' | 'twint' | 'przelewy24' | 'mobilepay' | 'grabpay' | 'vipps' | 'kcp_creditcard';
|
|
250
250
|
}
|
|
251
251
|
|
|
252
252
|
declare namespace io.flow.payment.gateway.v0.models {
|
|
@@ -621,17 +621,32 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
621
621
|
readonly 'reference'?: string;
|
|
622
622
|
}
|
|
623
623
|
|
|
624
|
+
interface PaymentMethodDataInitGrabpay {
|
|
625
|
+
readonly 'type': 'init_grabpay';
|
|
626
|
+
readonly 'reference'?: string;
|
|
627
|
+
}
|
|
628
|
+
|
|
624
629
|
interface PaymentMethodDataInitIdeal {
|
|
625
630
|
readonly 'type': 'init_ideal';
|
|
626
631
|
readonly 'issuer'?: string;
|
|
627
632
|
readonly 'reference'?: string;
|
|
628
633
|
}
|
|
629
634
|
|
|
635
|
+
interface PaymentMethodDataInitKcpCreditcard {
|
|
636
|
+
readonly 'type': 'init_kcp_creditcard';
|
|
637
|
+
readonly 'reference'?: string;
|
|
638
|
+
}
|
|
639
|
+
|
|
630
640
|
interface PaymentMethodDataInitKlarna {
|
|
631
641
|
readonly 'type': 'init_klarna';
|
|
632
642
|
readonly 'reference'?: string;
|
|
633
643
|
}
|
|
634
644
|
|
|
645
|
+
interface PaymentMethodDataInitMobilepay {
|
|
646
|
+
readonly 'type': 'init_mobilepay';
|
|
647
|
+
readonly 'reference'?: string;
|
|
648
|
+
}
|
|
649
|
+
|
|
635
650
|
interface PaymentMethodDataInitPaypal {
|
|
636
651
|
readonly 'type': 'init_paypal';
|
|
637
652
|
readonly 'reference'?: string;
|
|
@@ -652,6 +667,11 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
652
667
|
readonly 'reference'?: string;
|
|
653
668
|
}
|
|
654
669
|
|
|
670
|
+
interface PaymentMethodDataInitVipps {
|
|
671
|
+
readonly 'type': 'init_vipps';
|
|
672
|
+
readonly 'reference'?: string;
|
|
673
|
+
}
|
|
674
|
+
|
|
655
675
|
interface PaymentMethodDataOptionLogoSvg {
|
|
656
676
|
readonly 'type': 'svg';
|
|
657
677
|
readonly 'url': string;
|
|
@@ -714,17 +734,32 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
714
734
|
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
715
735
|
}
|
|
716
736
|
|
|
737
|
+
interface PaymentMethodSummaryGrabpay {
|
|
738
|
+
readonly 'type': 'grabpay';
|
|
739
|
+
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
740
|
+
}
|
|
741
|
+
|
|
717
742
|
interface PaymentMethodSummaryIdeal {
|
|
718
743
|
readonly 'type': 'ideal';
|
|
719
744
|
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
720
745
|
readonly 'issuer'?: string;
|
|
721
746
|
}
|
|
722
747
|
|
|
748
|
+
interface PaymentMethodSummaryKcpCreditcard {
|
|
749
|
+
readonly 'type': 'kcp_creditcard';
|
|
750
|
+
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
751
|
+
}
|
|
752
|
+
|
|
723
753
|
interface PaymentMethodSummaryKlarna {
|
|
724
754
|
readonly 'type': 'klarna';
|
|
725
755
|
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
726
756
|
}
|
|
727
757
|
|
|
758
|
+
interface PaymentMethodSummaryMobilepay {
|
|
759
|
+
readonly 'type': 'mobilepay';
|
|
760
|
+
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
761
|
+
}
|
|
762
|
+
|
|
728
763
|
interface PaymentMethodSummaryPaypal {
|
|
729
764
|
readonly 'type': 'paypal';
|
|
730
765
|
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
@@ -745,6 +780,11 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
745
780
|
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
746
781
|
}
|
|
747
782
|
|
|
783
|
+
interface PaymentMethodSummaryVipps {
|
|
784
|
+
readonly 'type': 'vipps';
|
|
785
|
+
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
786
|
+
}
|
|
787
|
+
|
|
748
788
|
interface PaymentOrderDetailsLineItem {
|
|
749
789
|
readonly 'id'?: string;
|
|
750
790
|
readonly 'description': string;
|
|
@@ -894,12 +934,12 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
894
934
|
type OrderInformation = (io.flow.payment.gateway.v0.models.OrderInformationFlow | io.flow.payment.gateway.v0.models.OrderInformationDetails);
|
|
895
935
|
type PaymentCaptureOption = (io.flow.payment.gateway.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.payment.gateway.v0.models.PaymentCaptureOptionManual);
|
|
896
936
|
type PaymentMethodCard = (io.flow.payment.gateway.v0.models.PaymentMethodCardPciDetails | io.flow.payment.gateway.v0.models.PaymentMethodCardToken);
|
|
897
|
-
type PaymentMethodData = (io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataInitAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort | io.flow.payment.gateway.v0.models.PaymentMethodDataInitTwint | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPrzelewy24 | io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact | io.flow.payment.gateway.v0.models.PaymentMethodDataValidateApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeCard | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.payment.gateway.v0.models.PaymentMethodDataCompleteAuthorizationCard);
|
|
937
|
+
type PaymentMethodData = (io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataInitAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort | io.flow.payment.gateway.v0.models.PaymentMethodDataInitTwint | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPrzelewy24 | io.flow.payment.gateway.v0.models.PaymentMethodDataInitMobilepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitKcpCreditcard | io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact | io.flow.payment.gateway.v0.models.PaymentMethodDataInitGrabpay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitVipps | io.flow.payment.gateway.v0.models.PaymentMethodDataValidateApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeCard | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.payment.gateway.v0.models.PaymentMethodDataCompleteAuthorizationCard);
|
|
898
938
|
type PaymentMethodDataAuthorizeApplepayResult = (io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure);
|
|
899
939
|
type PaymentMethodDataAuthorizeKlarnaResult = (io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure);
|
|
900
940
|
type PaymentMethodDataOptionLogo = (io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg);
|
|
901
941
|
type PaymentMethodStoredDetailsCard = (io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardSubsequent);
|
|
902
|
-
type PaymentMethodSummary = (io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryTwint | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPrzelewy24 | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact);
|
|
942
|
+
type PaymentMethodSummary = (io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryTwint | io.flow.payment.gateway.v0.models.PaymentMethodSummaryVipps | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPrzelewy24 | io.flow.payment.gateway.v0.models.PaymentMethodSummaryMobilepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKcpCreditcard | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGrabpay);
|
|
903
943
|
type PaymentRequestCancellationReason = (io.flow.payment.gateway.v0.models.PaymentRequestCancellationReasonOrderMissing);
|
|
904
944
|
type SdkAdyenV3AuthenticationToken = (io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken);
|
|
905
945
|
}
|
|
@@ -1538,6 +1578,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1538
1578
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1539
1579
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1540
1580
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1581
|
+
type RefundFailureCategory = 'amount_too_high' | 'amount_too_low' | 'not_enough_balance' | 'insufficient_funds' | 'refund_period_expired' | 'dispute' | 'not_captured' | 'unsupported_payment_method' | 'unsupported_partial_refund' | 'invalid_currency' | 'card_no_longer_valid' | 'general';
|
|
1541
1582
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
1542
1583
|
type ReversalErrorCode = 'amount_exceeds_balance' | 'authorization_declined' | 'authorization_expired' | 'invalid_authorization' | 'invalid_key' | 'invalid_amount' | 'invalid_currency' | 'no_remaining_balance' | 'partial_reversal_not_supported' | 'unknown';
|
|
1543
1584
|
type ReversalStatus = 'pending' | 'processed' | 'failed';
|
|
@@ -2241,6 +2282,8 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2241
2282
|
readonly 'attributes'?: Record<string, string>;
|
|
2242
2283
|
readonly 'status'?: io.flow.payment.v0.enums.RefundStatus;
|
|
2243
2284
|
readonly 'base'?: io.flow.common.v0.models.Money;
|
|
2285
|
+
readonly 'failure_category'?: io.flow.payment.v0.enums.RefundFailureCategory;
|
|
2286
|
+
readonly 'failure_psp_reason'?: string;
|
|
2244
2287
|
}
|
|
2245
2288
|
|
|
2246
2289
|
interface RefundCapture {
|
|
@@ -2573,7 +2616,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2573
2616
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
2574
2617
|
type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
|
|
2575
2618
|
type PreferredLocaleKlarna = 'de-AT' | 'en-AT' | 'nl-BE' | 'fr-BE' | 'en-BE' | 'de-DE' | 'en-DE' | 'da-DK' | 'en-DK' | 'es-ES' | 'en-ES' | 'fi-FI' | 'sv-FI' | 'en-FI' | 'en-GB' | 'en-IE' | 'it-IT' | 'en-IT' | 'nl-NL' | 'en-NL' | 'nb-NO' | 'en-NO' | 'sv-SE' | 'en-SE' | 'en-US' | 'es-US' | 'fr-FR' | 'en-FR' | 'cs-CZ' | 'en-CZ' | 'el-GR' | 'en-GR' | 'en-AU' | 'en-NZ' | 'en-CA' | 'fr-CA' | 'pl-PL' | 'en-PL' | 'pt-PT' | 'en-PT' | 'de-CH' | 'fr-CH' | 'it-CH' | 'en-CH';
|
|
2576
|
-
type RefundFailureReason = '
|
|
2619
|
+
type RefundFailureReason = 'charge_for_pending_refund_disputed' | 'declined' | 'expired_or_canceled_card' | 'insufficient_funds' | 'lost_or_stolen_card' | 'merchant_request' | 'unknown';
|
|
2577
2620
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
2578
2621
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
2579
2622
|
type RequestThreeDSecureType = 'automatic' | 'any';
|
|
@@ -3843,6 +3886,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3843
3886
|
readonly 'items'?: io.flow.common.v0.models.LineItemForm[];
|
|
3844
3887
|
readonly 'package'?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
3845
3888
|
readonly 'origin'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3889
|
+
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
3846
3890
|
}
|
|
3847
3891
|
|
|
3848
3892
|
interface CrossdockShipment {
|
|
@@ -3941,6 +3985,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3941
3985
|
readonly 'additional_services_requested'?: io.flow.label.v0.models.AdditionalServicesRequested[];
|
|
3942
3986
|
readonly 'created_at'?: string;
|
|
3943
3987
|
readonly 'updated_at'?: string;
|
|
3988
|
+
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
3944
3989
|
}
|
|
3945
3990
|
|
|
3946
3991
|
interface ShippingLabelDocument {
|
|
@@ -4041,6 +4086,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4041
4086
|
readonly 'order_number': string;
|
|
4042
4087
|
readonly 'items': io.flow.common.v0.models.LineItemForm[];
|
|
4043
4088
|
readonly 'center_key'?: string;
|
|
4089
|
+
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
4044
4090
|
}
|
|
4045
4091
|
|
|
4046
4092
|
interface SummaryShippingNotificationForm {
|
|
@@ -4169,7 +4215,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4169
4215
|
}
|
|
4170
4216
|
|
|
4171
4217
|
interface CanceledRecurringBilling {
|
|
4172
|
-
readonly 'expected_refund'?: io.flow.external.paypal.v1.models.
|
|
4218
|
+
readonly 'expected_refund'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4173
4219
|
readonly 'cancellation_details'?: io.flow.external.paypal.v1.models.CancellationDetails;
|
|
4174
4220
|
}
|
|
4175
4221
|
|
|
@@ -4188,7 +4234,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4188
4234
|
|
|
4189
4235
|
interface CreditNotProcessed {
|
|
4190
4236
|
readonly 'issue_type'?: io.flow.external.paypal.v1.enums.IssueType;
|
|
4191
|
-
readonly 'expected_refund'?: io.flow.external.paypal.v1.models.
|
|
4237
|
+
readonly 'expected_refund'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4192
4238
|
readonly 'cancellation_details'?: io.flow.external.paypal.v1.models.CancellationDetails;
|
|
4193
4239
|
readonly 'product_details'?: io.flow.external.paypal.v1.models.ProductDetails;
|
|
4194
4240
|
readonly 'service_details'?: io.flow.external.paypal.v1.models.ServiceDetails;
|
|
@@ -4202,7 +4248,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4202
4248
|
readonly 'disputed_transactions': io.flow.external.paypal.v1.models.TransactionInfo[];
|
|
4203
4249
|
readonly 'reason': io.flow.external.paypal.v1.enums.DisputeReason;
|
|
4204
4250
|
readonly 'status': io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
4205
|
-
readonly 'dispute_amount': io.flow.external.paypal.v1.models.
|
|
4251
|
+
readonly 'dispute_amount': io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4206
4252
|
readonly 'fee_policy'?: any/*object*/;
|
|
4207
4253
|
readonly 'external_reason_code'?: string;
|
|
4208
4254
|
readonly 'dispute_outcome'?: io.flow.external.paypal.v1.models.DisputeOutcome;
|
|
@@ -4239,9 +4285,14 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4239
4285
|
readonly 'links': io.flow.external.paypal.v1.models.Link[];
|
|
4240
4286
|
}
|
|
4241
4287
|
|
|
4288
|
+
interface DisputeMoney {
|
|
4289
|
+
readonly 'currency_code': string;
|
|
4290
|
+
readonly 'value': string;
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4242
4293
|
interface DisputeOutcome {
|
|
4243
4294
|
readonly 'outcome_code'?: io.flow.external.paypal.v1.enums.DisputeOutcomeCode;
|
|
4244
|
-
readonly 'amount_refunded'?: io.flow.external.paypal.v1.models.
|
|
4295
|
+
readonly 'amount_refunded'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4245
4296
|
}
|
|
4246
4297
|
|
|
4247
4298
|
interface DisputeSummary {
|
|
@@ -4250,7 +4301,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4250
4301
|
readonly 'update_time': string;
|
|
4251
4302
|
readonly 'reason': io.flow.external.paypal.v1.enums.DisputeReason;
|
|
4252
4303
|
readonly 'status': io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
4253
|
-
readonly 'dispute_amount': io.flow.external.paypal.v1.models.
|
|
4304
|
+
readonly 'dispute_amount': io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4254
4305
|
readonly 'dispute_life_cycle_stage': io.flow.external.paypal.v1.enums.DisputeLifeCycleStage;
|
|
4255
4306
|
readonly 'links': io.flow.external.paypal.v1.models.Link[];
|
|
4256
4307
|
}
|
|
@@ -4296,7 +4347,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4296
4347
|
}
|
|
4297
4348
|
|
|
4298
4349
|
interface IncorrectTransactionAmount {
|
|
4299
|
-
readonly 'correct_transaction_amount'?: io.flow.external.paypal.v1.models.
|
|
4350
|
+
readonly 'correct_transaction_amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4300
4351
|
readonly 'correct_transaction_time'?: string;
|
|
4301
4352
|
}
|
|
4302
4353
|
|
|
@@ -4316,7 +4367,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4316
4367
|
readonly 'item_quantity'?: string;
|
|
4317
4368
|
readonly 'partner_transaction_id'?: string;
|
|
4318
4369
|
readonly 'reason'?: io.flow.external.paypal.v1.enums.DisputeReason;
|
|
4319
|
-
readonly 'dispute_amount'?: io.flow.external.paypal.v1.models.
|
|
4370
|
+
readonly 'dispute_amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4320
4371
|
readonly 'notes'?: string;
|
|
4321
4372
|
}
|
|
4322
4373
|
|
|
@@ -4349,21 +4400,21 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4349
4400
|
}
|
|
4350
4401
|
|
|
4351
4402
|
interface Money {
|
|
4352
|
-
readonly 'currency_code'
|
|
4353
|
-
readonly 'value'
|
|
4403
|
+
readonly 'currency_code'?: string;
|
|
4404
|
+
readonly 'value'?: string;
|
|
4354
4405
|
}
|
|
4355
4406
|
|
|
4356
4407
|
interface MoneyMovement {
|
|
4357
4408
|
readonly 'affected_party'?: io.flow.external.paypal.v1.enums.AffectedParty;
|
|
4358
|
-
readonly 'amount'?: io.flow.external.paypal.v1.models.
|
|
4409
|
+
readonly 'amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4359
4410
|
readonly 'initiated_time'?: string;
|
|
4360
4411
|
readonly 'type'?: io.flow.external.paypal.v1.enums.MoneyMovementType;
|
|
4361
4412
|
readonly 'reason'?: io.flow.external.paypal.v1.enums.MoneyMovementReason;
|
|
4362
4413
|
}
|
|
4363
4414
|
|
|
4364
4415
|
interface Offer {
|
|
4365
|
-
readonly 'buyer_requested_amount'?: io.flow.external.paypal.v1.models.
|
|
4366
|
-
readonly 'seller_offered_amount'?: io.flow.external.paypal.v1.models.
|
|
4416
|
+
readonly 'buyer_requested_amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4417
|
+
readonly 'seller_offered_amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4367
4418
|
readonly 'offer_type'?: io.flow.external.paypal.v1.enums.OfferType;
|
|
4368
4419
|
}
|
|
4369
4420
|
|
|
@@ -4467,7 +4518,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4467
4518
|
}
|
|
4468
4519
|
|
|
4469
4520
|
interface RefundDetails {
|
|
4470
|
-
readonly 'allowed_refund_amount'?: io.flow.external.paypal.v1.models.
|
|
4521
|
+
readonly 'allowed_refund_amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4471
4522
|
}
|
|
4472
4523
|
|
|
4473
4524
|
interface RefundId {
|
|
@@ -4602,7 +4653,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4602
4653
|
readonly 'reference_id'?: string;
|
|
4603
4654
|
readonly 'create_time'?: string;
|
|
4604
4655
|
readonly 'transaction_status'?: io.flow.external.paypal.v1.enums.TransactionStatus;
|
|
4605
|
-
readonly 'gross_amount'?: io.flow.external.paypal.v1.models.
|
|
4656
|
+
readonly 'gross_amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4606
4657
|
readonly 'invoice_number': string;
|
|
4607
4658
|
readonly 'custom'?: string;
|
|
4608
4659
|
readonly 'buyer'?: io.flow.external.paypal.v1.models.Buyer;
|
|
@@ -4916,6 +4967,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
4916
4967
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
4917
4968
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
4918
4969
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
4970
|
+
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog';
|
|
4919
4971
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
4920
4972
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
4921
4973
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -4924,6 +4976,12 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
4924
4976
|
}
|
|
4925
4977
|
|
|
4926
4978
|
declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
4979
|
+
interface BulkDutyUpdateValidationError {
|
|
4980
|
+
readonly 'message': string;
|
|
4981
|
+
readonly 'reason': string;
|
|
4982
|
+
readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
4983
|
+
}
|
|
4984
|
+
|
|
4927
4985
|
interface CatalogPublicationSyncValidationError {
|
|
4928
4986
|
readonly 'message': string;
|
|
4929
4987
|
readonly 'reason': string;
|
|
@@ -5151,10 +5209,10 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
5151
5209
|
type Channel = 'web';
|
|
5152
5210
|
type Contract = 'RECURRING';
|
|
5153
5211
|
type DeviceChannel = 'app' | 'browser';
|
|
5154
|
-
type EventCode = 'AUTHORISATION' | 'CANCELLATION' | 'REFUND' | 'CANCEL_OR_REFUND' | 'CAPTURE' | 'CAPTURE_FAILED' | 'REFUND_FAILED' | 'REFUNDED_REVERSED' | 'PAIDOUT_REVERSED' | 'REQUEST_FOR_INFORMATION' | 'CHARGEBACK' | 'CHARGEBACK_REVERSED' | 'NOTIFICATION_OF_CHARGEBACK' | 'NOTIFICATION_OF_FRAUD' | 'MANUAL_REVIEW_ACCEPT' | 'MANUAL_REVIEW_REJECT' | 'RECURRING_CONTRACT' | 'PAYOUT_EXPIRE' | 'PAYOUT_DECLINE' | 'PAYOUT_THIRDPARTY' | 'REFUND_WITH_DATA' | 'AUTHORISE_REFERRAL' | 'EXPIRE' | 'FRAUD_ONLY' | 'FUND_TRANSFER' | 'HANDLED_EXTERNALLY' | 'OFFER_CLOSED' | 'ORDER_OPENED' | 'ORDER_CLOSED' | 'PENDING' | 'PROCESS_RETRY' | 'REPORT_AVAILABLE' | 'SECOND_CHARGEBACK' | 'PREARBITRATION_WON' | 'PREARBITRATION_LOST';
|
|
5212
|
+
type EventCode = 'AUTHORISATION' | 'CANCELLATION' | 'REFUND' | 'CANCEL_OR_REFUND' | 'CAPTURE' | 'CAPTURE_FAILED' | 'REFUND_FAILED' | 'REFUNDED_REVERSED' | 'PAIDOUT_REVERSED' | 'REQUEST_FOR_INFORMATION' | 'CHARGEBACK' | 'CHARGEBACK_REVERSED' | 'NOTIFICATION_OF_CHARGEBACK' | 'NOTIFICATION_OF_FRAUD' | 'MANUAL_REVIEW_ACCEPT' | 'MANUAL_REVIEW_REJECT' | 'RECURRING_CONTRACT' | 'PAYOUT_EXPIRE' | 'PAYOUT_DECLINE' | 'PAYOUT_THIRDPARTY' | 'REFUND_WITH_DATA' | 'AUTHORISE_REFERRAL' | 'EXPIRE' | 'FRAUD_ONLY' | 'FUND_TRANSFER' | 'HANDLED_EXTERNALLY' | 'OFFER_CLOSED' | 'ORDER_OPENED' | 'ORDER_CLOSED' | 'PENDING' | 'PROCESS_RETRY' | 'REPORT_AVAILABLE' | 'SECOND_CHARGEBACK' | 'PREARBITRATION_WON' | 'PREARBITRATION_LOST' | 'INFORMATION_SUPPLIED' | 'DISPUTE_DEFENSE_PERIOD_ENDED' | 'ISSUER_RESPONSE_TIMEFRAME_EXPIRED';
|
|
5155
5213
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
5156
5214
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
5157
|
-
type PaymentMethod = 'ach' | 'alipay' | 'alipay_hk' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'bcmc_mobile' | 'blik' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'gcash' | 'giropay' | 'ideal' | 'interac' | 'jcb' | 'kakaopay' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mbway' | 'mc' | 'mobilepay' | 'molpay_points' | 'multibanco' | 'onlineBanking_PL' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'visa' | 'wechatpay' | 'unknowncard';
|
|
5215
|
+
type PaymentMethod = 'ach' | 'alipay' | 'alipay_hk' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'bcmc_mobile' | 'blik' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'gcash' | 'giropay' | 'grabpay_MY' | 'grabpay_PH' | 'grabpay_SG' | 'ideal' | 'interac' | 'jcb' | 'kakaopay' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mbway' | 'mc' | 'mobilepay' | 'molpay_points' | 'multibanco' | 'onlineBanking_PL' | 'paywithgoogle' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'vipps' | 'visa' | 'wechatpay' | 'unknowncard';
|
|
5158
5216
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
5159
5217
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
5160
5218
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -5171,6 +5229,11 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5171
5229
|
readonly 'country'?: string;
|
|
5172
5230
|
}
|
|
5173
5231
|
|
|
5232
|
+
interface AdyenDisputeEvent {
|
|
5233
|
+
readonly 'live': string;
|
|
5234
|
+
readonly 'notificationItems': io.flow.adyen.v0.models.OuterNotificationRequestItem[];
|
|
5235
|
+
}
|
|
5236
|
+
|
|
5174
5237
|
interface Amount {
|
|
5175
5238
|
readonly 'value': number;
|
|
5176
5239
|
readonly 'currency': string;
|
|
@@ -5303,6 +5366,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5303
5366
|
readonly 'chargebackReasonCode': string;
|
|
5304
5367
|
readonly 'modificationMerchantReferences': string;
|
|
5305
5368
|
readonly 'chargebackSchemeCode': string;
|
|
5369
|
+
readonly 'defensePeriodEndsAt'?: string;
|
|
5306
5370
|
}
|
|
5307
5371
|
|
|
5308
5372
|
interface Error {
|
|
@@ -5666,7 +5730,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5666
5730
|
}
|
|
5667
5731
|
|
|
5668
5732
|
interface GraphqlMeasurement {
|
|
5669
|
-
readonly 'weight'
|
|
5733
|
+
readonly 'weight'?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
5670
5734
|
}
|
|
5671
5735
|
|
|
5672
5736
|
interface GraphqlOption {
|
|
@@ -7006,7 +7070,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7006
7070
|
readonly 'created_at': string;
|
|
7007
7071
|
readonly 'notify_customer': boolean;
|
|
7008
7072
|
readonly 'order_id': number;
|
|
7009
|
-
readonly 'staff_note'
|
|
7073
|
+
readonly 'staff_note'?: string;
|
|
7010
7074
|
readonly 'user_id'?: number;
|
|
7011
7075
|
readonly 'line_items': io.flow.shopify.markets.v0.models.ShopifyOrderEditLineItems;
|
|
7012
7076
|
readonly 'discounts': any/*object*/;
|
|
@@ -7052,6 +7116,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7052
7116
|
}
|
|
7053
7117
|
|
|
7054
7118
|
interface ShopifyOrderLineItem {
|
|
7119
|
+
readonly 'current_quantity'?: number;
|
|
7055
7120
|
readonly 'fulfillable_quantity'?: number;
|
|
7056
7121
|
readonly 'fulfillment_status'?: io.flow.shopify.markets.v0.enums.ShopifyOrderFulfillmentStatusType;
|
|
7057
7122
|
readonly 'grams'?: number;
|
|
@@ -7226,6 +7291,13 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7226
7291
|
readonly 'payment_schedules'?: io.flow.shopify.markets.v0.models.ShopifyPaymentSchedules;
|
|
7227
7292
|
}
|
|
7228
7293
|
|
|
7294
|
+
interface ShopifyProductVariantInventoryItemWrapper {
|
|
7295
|
+
readonly 'product_id': number;
|
|
7296
|
+
readonly 'variant_id': number;
|
|
7297
|
+
readonly 'harmonized_system_code': string;
|
|
7298
|
+
readonly 'country_harmonized_system_codes': io.flow.shopify.markets.v0.models.ShopifyCountryHarmonizedSystemCode[];
|
|
7299
|
+
}
|
|
7300
|
+
|
|
7229
7301
|
interface ShopifyRefund {
|
|
7230
7302
|
readonly 'notify_x': boolean;
|
|
7231
7303
|
readonly 'note'?: string;
|
|
@@ -10398,7 +10470,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
10398
10470
|
|
|
10399
10471
|
declare namespace io.flow.trueup.v0.enums {
|
|
10400
10472
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
10401
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup';
|
|
10473
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
|
|
10402
10474
|
}
|
|
10403
10475
|
|
|
10404
10476
|
declare namespace io.flow.trueup.v0.models {
|
|
@@ -11497,7 +11569,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11497
11569
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11498
11570
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
|
|
11499
11571
|
type StatementAttachmentType = 'csv';
|
|
11500
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout';
|
|
11572
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund';
|
|
11501
11573
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
11502
11574
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11503
11575
|
}
|
|
@@ -13120,7 +13192,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
13120
13192
|
|
|
13121
13193
|
declare namespace io.flow.merchant.of.record.v0.enums {
|
|
13122
13194
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
13123
|
-
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can';
|
|
13195
|
+
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
|
|
13124
13196
|
}
|
|
13125
13197
|
|
|
13126
13198
|
declare namespace io.flow.checkout.v0.models {
|
|
@@ -13818,10 +13890,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13818
13890
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
13819
13891
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
13820
13892
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
13821
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction';
|
|
13893
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate';
|
|
13822
13894
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
13823
13895
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
13824
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
|
|
13896
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'tax_refund';
|
|
13825
13897
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
13826
13898
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
|
|
13827
13899
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -13871,7 +13943,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13871
13943
|
type DisputeImportStatus = 'new' | 'processing' | 'completed' | 'failed';
|
|
13872
13944
|
type DisputeImportType = 'adyen_dispute' | 'paypal_dispute';
|
|
13873
13945
|
type DisputeLiability = 'flow' | 'organization';
|
|
13874
|
-
type DisputeProcessor = 'adyen' | 'paypal';
|
|
13946
|
+
type DisputeProcessor = 'adyen' | 'paypal' | 'stripe';
|
|
13875
13947
|
type DisputeReportingCategory = 'charge_issues' | 'delivery' | 'fraud' | 'general' | 'product' | 'returns';
|
|
13876
13948
|
type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
|
|
13877
13949
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
@@ -13883,9 +13955,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13883
13955
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
13884
13956
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
13885
13957
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
13958
|
+
type EldarItemType = 'digital' | 'physical';
|
|
13886
13959
|
type EmptyAttribute = 'irrelevant';
|
|
13887
13960
|
type ErpFileType = 'vendor';
|
|
13888
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13961
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'eldar_item_upserted' | 'eldar_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13889
13962
|
type ExperienceImportType = 'experience_with_settings';
|
|
13890
13963
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13891
13964
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13903,6 +13976,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13903
13976
|
type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
|
|
13904
13977
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
13905
13978
|
type GoogleAnalyticsPlugin = 'ec';
|
|
13979
|
+
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog';
|
|
13906
13980
|
type HarinathItemType = 'digital' | 'physical';
|
|
13907
13981
|
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
13908
13982
|
type HttpMethod = 'get' | 'post';
|
|
@@ -13957,7 +14031,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13957
14031
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
13958
14032
|
type OrderValidationStatus = 'success' | 'failed' | 'label_created' | 'unresolvable' | 'cancelled' | 'breached';
|
|
13959
14033
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
13960
|
-
type OrganizationMetricType = '
|
|
14034
|
+
type OrganizationMetricType = 'organization_restriction_status';
|
|
13961
14035
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
13962
14036
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
13963
14037
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason' | 'additional_rejection_info';
|
|
@@ -14010,7 +14084,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14010
14084
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
14011
14085
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
14012
14086
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
14013
|
-
type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'order_edit' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations' | 'channel_organization_identifier' | 'bulk_product_ingestion';
|
|
14087
|
+
type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'order_edit' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations' | 'channel_organization_identifier' | 'bulk_product_ingestion' | 'bulk_duty_update';
|
|
14014
14088
|
type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
|
|
14015
14089
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
14016
14090
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
@@ -14035,7 +14109,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14035
14109
|
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
14036
14110
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
14037
14111
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
14038
|
-
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
14112
|
+
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
14039
14113
|
type ThiagoItemType = 'digital' | 'physical';
|
|
14040
14114
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
14041
14115
|
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
@@ -15113,6 +15187,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15113
15187
|
readonly 'trueup': io.flow.common.v0.models.Price;
|
|
15114
15188
|
readonly 'carrier_charge': io.flow.common.v0.models.Price;
|
|
15115
15189
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
15190
|
+
readonly 'tax_refund': io.flow.common.v0.models.Price;
|
|
15116
15191
|
}
|
|
15117
15192
|
|
|
15118
15193
|
interface BillingStatementUpserted {
|
|
@@ -15270,11 +15345,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15270
15345
|
readonly 'actions': io.flow.internal.v0.models.SingleClassificationAction[];
|
|
15271
15346
|
}
|
|
15272
15347
|
|
|
15273
|
-
interface
|
|
15274
|
-
readonly '
|
|
15275
|
-
readonly '
|
|
15276
|
-
readonly '
|
|
15277
|
-
readonly 'restricted_product_count': number;
|
|
15348
|
+
interface BulkDutyUpdateValidationError {
|
|
15349
|
+
readonly 'message': string;
|
|
15350
|
+
readonly 'reason': string;
|
|
15351
|
+
readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
15278
15352
|
}
|
|
15279
15353
|
|
|
15280
15354
|
interface CalculatedTaxAmount {
|
|
@@ -16547,6 +16621,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16547
16621
|
readonly 'transaction_date': string;
|
|
16548
16622
|
readonly 'origin': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
16549
16623
|
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
16624
|
+
readonly 'billing_address'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
16550
16625
|
readonly 'service': string;
|
|
16551
16626
|
readonly 'flow_tracking_number': string;
|
|
16552
16627
|
readonly 'rex_number'?: string;
|
|
@@ -16574,6 +16649,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16574
16649
|
readonly 'show_us_outbound_signature': boolean;
|
|
16575
16650
|
readonly 'show_us_outbound_stamp': boolean;
|
|
16576
16651
|
readonly 'invoice_url'?: string;
|
|
16652
|
+
readonly 'invoice_number'?: string;
|
|
16577
16653
|
}
|
|
16578
16654
|
|
|
16579
16655
|
interface CommercialInvoiceInternalDeleted {
|
|
@@ -17184,6 +17260,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17184
17260
|
readonly 'category': io.flow.internal.v0.enums.DisputeCategory;
|
|
17185
17261
|
readonly 'reporting_category'?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
17186
17262
|
readonly 'reason': string;
|
|
17263
|
+
readonly 'code'?: string;
|
|
17187
17264
|
readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
|
|
17188
17265
|
readonly 'liability': io.flow.internal.v0.enums.DisputeLiability;
|
|
17189
17266
|
readonly 'billable': io.flow.internal.v0.enums.DisputeBillable;
|
|
@@ -17217,6 +17294,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17217
17294
|
readonly 'original_transaction_id': string;
|
|
17218
17295
|
readonly 'transaction_invoice_id': string;
|
|
17219
17296
|
readonly 'case_id': string;
|
|
17297
|
+
readonly 'dispute_channel'?: string;
|
|
17220
17298
|
}
|
|
17221
17299
|
|
|
17222
17300
|
interface DisputeDetailsStripe {
|
|
@@ -17464,6 +17542,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17464
17542
|
readonly 'duty_transaction': io.flow.internal.v0.models.DutyTransaction;
|
|
17465
17543
|
}
|
|
17466
17544
|
|
|
17545
|
+
interface EldarItem {
|
|
17546
|
+
readonly 'id': string;
|
|
17547
|
+
readonly 'number': string;
|
|
17548
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
17549
|
+
readonly 'description'?: string;
|
|
17550
|
+
readonly 'type': io.flow.internal.v0.enums.EldarItemType;
|
|
17551
|
+
readonly 'added_on': string;
|
|
17552
|
+
}
|
|
17553
|
+
|
|
17554
|
+
interface EldarItemDeleted {
|
|
17555
|
+
readonly 'discriminator': 'eldar_item_deleted';
|
|
17556
|
+
readonly 'event_id': string;
|
|
17557
|
+
readonly 'timestamp': string;
|
|
17558
|
+
readonly 'id': string;
|
|
17559
|
+
}
|
|
17560
|
+
|
|
17561
|
+
interface EldarItemForm {
|
|
17562
|
+
readonly 'number': string;
|
|
17563
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
17564
|
+
readonly 'description'?: string;
|
|
17565
|
+
readonly 'type': io.flow.internal.v0.enums.EldarItemType;
|
|
17566
|
+
readonly 'added_on': string;
|
|
17567
|
+
}
|
|
17568
|
+
|
|
17569
|
+
interface EldarItemUpserted {
|
|
17570
|
+
readonly 'discriminator': 'eldar_item_upserted';
|
|
17571
|
+
readonly 'event_id': string;
|
|
17572
|
+
readonly 'timestamp': string;
|
|
17573
|
+
readonly 'item': io.flow.internal.v0.models.EldarItem;
|
|
17574
|
+
}
|
|
17575
|
+
|
|
17467
17576
|
interface EmailForm {
|
|
17468
17577
|
readonly 'to': string[];
|
|
17469
17578
|
readonly 'cc'?: string[];
|
|
@@ -19687,6 +19796,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19687
19796
|
readonly 'carrier_id'?: string;
|
|
19688
19797
|
readonly 'service_id'?: string;
|
|
19689
19798
|
readonly 'errors': string[];
|
|
19799
|
+
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
19690
19800
|
}
|
|
19691
19801
|
|
|
19692
19802
|
interface LabelRequestErrorDeleted {
|
|
@@ -19739,6 +19849,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19739
19849
|
readonly 'direct_delivery'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19740
19850
|
readonly 'saturday_stop'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19741
19851
|
readonly 'residential_extended_area_pickup'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19852
|
+
readonly 'package_level_detail'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19742
19853
|
}
|
|
19743
19854
|
|
|
19744
19855
|
interface LabelSurchargeSingleForm {
|
|
@@ -20689,6 +20800,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20689
20800
|
readonly 'duty': number;
|
|
20690
20801
|
readonly 'freight': number;
|
|
20691
20802
|
readonly 'total': number;
|
|
20803
|
+
readonly 'tax_refund'?: number;
|
|
20692
20804
|
}
|
|
20693
20805
|
|
|
20694
20806
|
interface MerchantUpserted {
|
|
@@ -21249,6 +21361,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21249
21361
|
readonly 'resolved_at'?: string;
|
|
21250
21362
|
readonly 'last_failure'?: io.flow.internal.v0.models.LastFailureSummary;
|
|
21251
21363
|
readonly 'sla_breach_at'?: string;
|
|
21364
|
+
readonly 'capabilities_at_creation'?: io.flow.internal.v0.enums.LogisticsCapability[];
|
|
21365
|
+
readonly 'first_globale_address_repair_failure_at'?: string;
|
|
21252
21366
|
}
|
|
21253
21367
|
|
|
21254
21368
|
interface OrderValidationDeleted {
|
|
@@ -21299,6 +21413,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21299
21413
|
readonly 'created_at': string;
|
|
21300
21414
|
readonly 'cancelled_at'?: string;
|
|
21301
21415
|
readonly 'resolved_at'?: string;
|
|
21416
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
21302
21417
|
}
|
|
21303
21418
|
|
|
21304
21419
|
interface OrderValidationFailureUpserted {
|
|
@@ -21605,34 +21720,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21605
21720
|
readonly 'onboarding_first_viewed_at'?: string;
|
|
21606
21721
|
}
|
|
21607
21722
|
|
|
21608
|
-
interface OrganizationRestrictionSnapshot {
|
|
21609
|
-
readonly 'id': string;
|
|
21610
|
-
readonly 'organization_id': string;
|
|
21611
|
-
readonly 'organization_channel_id': string;
|
|
21612
|
-
readonly 'organization_status': string;
|
|
21613
|
-
readonly 'product_count': number;
|
|
21614
|
-
readonly 'open_decision_count': number;
|
|
21615
|
-
readonly 'restricted_product_count': number;
|
|
21616
|
-
readonly 'count_by_rule': io.flow.internal.v0.models.ByRuleSnapshot[];
|
|
21617
|
-
readonly 'earliest_pending_decision_date': string;
|
|
21618
|
-
readonly 'earliest_product_receipt_date': string;
|
|
21619
|
-
readonly 'date': string;
|
|
21620
|
-
}
|
|
21621
|
-
|
|
21622
|
-
interface OrganizationRestrictionSnapshotDeleted {
|
|
21623
|
-
readonly 'discriminator': 'organization_restriction_snapshot_deleted';
|
|
21624
|
-
readonly 'event_id': string;
|
|
21625
|
-
readonly 'timestamp': string;
|
|
21626
|
-
readonly 'organization_restriction_snapshot': io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
21627
|
-
}
|
|
21628
|
-
|
|
21629
|
-
interface OrganizationRestrictionSnapshotUpserted {
|
|
21630
|
-
readonly 'discriminator': 'organization_restriction_snapshot_upserted';
|
|
21631
|
-
readonly 'event_id': string;
|
|
21632
|
-
readonly 'timestamp': string;
|
|
21633
|
-
readonly 'organization_restriction_snapshot': io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
21634
|
-
}
|
|
21635
|
-
|
|
21636
21723
|
interface OrganizationRestrictionStatus {
|
|
21637
21724
|
readonly 'id': string;
|
|
21638
21725
|
readonly 'organization_id': string;
|
|
@@ -22391,6 +22478,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22391
22478
|
|
|
22392
22479
|
interface ProcessedPaymentSummary {
|
|
22393
22480
|
readonly 'type': io.flow.reference.v0.enums.PaymentMethodCapability;
|
|
22481
|
+
readonly 'amount': number;
|
|
22394
22482
|
readonly 'currency': io.flow.reference.v0.models.Currency;
|
|
22395
22483
|
readonly 'method': io.flow.reference.v0.models.PaymentMethod;
|
|
22396
22484
|
readonly 'card_issuer_country'?: io.flow.reference.v0.models.Country;
|
|
@@ -23295,6 +23383,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23295
23383
|
readonly 'lvg'?: boolean;
|
|
23296
23384
|
readonly 'tax_inclusive'?: boolean;
|
|
23297
23385
|
readonly 'duty_inclusive'?: boolean;
|
|
23386
|
+
readonly 'manual_payment'?: boolean;
|
|
23387
|
+
readonly 'partial_fulfillment'?: boolean;
|
|
23388
|
+
readonly 'partial_refund'?: boolean;
|
|
23298
23389
|
}
|
|
23299
23390
|
|
|
23300
23391
|
interface ReportingFx {
|
|
@@ -23340,6 +23431,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23340
23431
|
readonly 'freight': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23341
23432
|
readonly 'discount'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23342
23433
|
readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23434
|
+
readonly 'tax_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23343
23435
|
}
|
|
23344
23436
|
|
|
23345
23437
|
interface ReportingMonetaryValue {
|
|
@@ -23539,7 +23631,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23539
23631
|
readonly 'priority_score': number;
|
|
23540
23632
|
readonly 'date': string;
|
|
23541
23633
|
readonly 'statuses': io.flow.internal.v0.models.RestrictionStatusMetadata[];
|
|
23542
|
-
readonly 'rules': io.flow.internal.v0.models.RestrictionRuleMetadata[];
|
|
23543
23634
|
readonly 'count': number;
|
|
23544
23635
|
}
|
|
23545
23636
|
|
|
@@ -25508,6 +25599,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25508
25599
|
readonly 'analysis': io.flow.internal.v0.models.TrackingAssuranceAnalysis;
|
|
25509
25600
|
}
|
|
25510
25601
|
|
|
25602
|
+
interface TrackingAssuranceJob {
|
|
25603
|
+
readonly 'id': string;
|
|
25604
|
+
readonly 'created_at': string;
|
|
25605
|
+
}
|
|
25606
|
+
|
|
25607
|
+
interface TrackingAssuranceJobDeleted {
|
|
25608
|
+
readonly 'discriminator': 'tracking_assurance_job_deleted';
|
|
25609
|
+
readonly 'event_id': string;
|
|
25610
|
+
readonly 'timestamp': string;
|
|
25611
|
+
readonly 'id': string;
|
|
25612
|
+
}
|
|
25613
|
+
|
|
25614
|
+
interface TrackingAssuranceJobUpserted {
|
|
25615
|
+
readonly 'discriminator': 'tracking_assurance_job_upserted';
|
|
25616
|
+
readonly 'event_id': string;
|
|
25617
|
+
readonly 'timestamp': string;
|
|
25618
|
+
readonly 'job': io.flow.internal.v0.models.TrackingAssuranceJob;
|
|
25619
|
+
}
|
|
25620
|
+
|
|
25511
25621
|
interface TrackingDebugForceTransitForm {
|
|
25512
25622
|
readonly 'description': string;
|
|
25513
25623
|
}
|
|
@@ -25970,7 +26080,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25970
26080
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
25971
26081
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
25972
26082
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
25973
|
-
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26083
|
+
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.EldarItemUpserted | io.flow.internal.v0.models.EldarItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
25974
26084
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
25975
26085
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
25976
26086
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26109,6 +26219,7 @@ export const dutyRateUnitOfMeasure: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
26109
26219
|
export const dutySelectionRule: PropTypes.Requireable<io.flow.internal.v0.enums.DutySelectionRule>;
|
|
26110
26220
|
export const dutySimpleExpressionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutySimpleExpressionType>;
|
|
26111
26221
|
export const dutyTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutyTransactionType>;
|
|
26222
|
+
export const eldarItemType: PropTypes.Requireable<io.flow.internal.v0.enums.EldarItemType>;
|
|
26112
26223
|
export const emptyAttribute: PropTypes.Requireable<io.flow.internal.v0.enums.EmptyAttribute>;
|
|
26113
26224
|
export const erpFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ErpFileType>;
|
|
26114
26225
|
export const eventType: PropTypes.Requireable<io.flow.internal.v0.enums.EventType>;
|
|
@@ -26129,6 +26240,7 @@ export const fraudReviewResponsibleParty: PropTypes.Requireable<io.flow.internal
|
|
|
26129
26240
|
export const ftpIntent: PropTypes.Requireable<io.flow.internal.v0.enums.FtpIntent>;
|
|
26130
26241
|
export const ftpProtocol: PropTypes.Requireable<io.flow.internal.v0.enums.FtpProtocol>;
|
|
26131
26242
|
export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.enums.GoogleAnalyticsPlugin>;
|
|
26243
|
+
export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
|
|
26132
26244
|
export const harinathItemType: PropTypes.Requireable<io.flow.internal.v0.enums.HarinathItemType>;
|
|
26133
26245
|
export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
|
|
26134
26246
|
export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
|
|
@@ -26437,7 +26549,7 @@ export const browserBundlePaymentMethod: PropTypes.Requireable<io.flow.internal.
|
|
|
26437
26549
|
export const browserBundlePaymentMethodForm: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundlePaymentMethodForm>;
|
|
26438
26550
|
export const browserBundlePaymentMethods: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundlePaymentMethods>;
|
|
26439
26551
|
export const bulkClassificationAction: PropTypes.Requireable<io.flow.internal.v0.models.BulkClassificationAction>;
|
|
26440
|
-
export const
|
|
26552
|
+
export const bulkDutyUpdateValidationError: PropTypes.Requireable<io.flow.internal.v0.models.BulkDutyUpdateValidationError>;
|
|
26441
26553
|
export const calculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.CalculatedTaxAmount>;
|
|
26442
26554
|
export const calculationStampingLineItem: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingLineItem>;
|
|
26443
26555
|
export const calculationStampingShippingLine: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingShippingLine>;
|
|
@@ -26726,6 +26838,10 @@ export const dutySimpleExpression: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
26726
26838
|
export const dutyTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransaction>;
|
|
26727
26839
|
export const dutyTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionDeleted>;
|
|
26728
26840
|
export const dutyTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionUpserted>;
|
|
26841
|
+
export const eldarItem: PropTypes.Requireable<io.flow.internal.v0.models.EldarItem>;
|
|
26842
|
+
export const eldarItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.EldarItemDeleted>;
|
|
26843
|
+
export const eldarItemForm: PropTypes.Requireable<io.flow.internal.v0.models.EldarItemForm>;
|
|
26844
|
+
export const eldarItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.EldarItemUpserted>;
|
|
26729
26845
|
export const emailForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailForm>;
|
|
26730
26846
|
export const emailModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailModificationForm>;
|
|
26731
26847
|
export const emptyClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmptyClassificationForm>;
|
|
@@ -27259,9 +27375,6 @@ export const organizationPaymentSettingUpserted: PropTypes.Requireable<io.flow.i
|
|
|
27259
27375
|
export const organizationPaymentSettingVersion: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingVersion>;
|
|
27260
27376
|
export const organizationRestrictionNoteForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionNoteForm>;
|
|
27261
27377
|
export const organizationRestrictionScreeningDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionScreeningDecisionForm>;
|
|
27262
|
-
export const organizationRestrictionSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionSnapshot>;
|
|
27263
|
-
export const organizationRestrictionSnapshotDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted>;
|
|
27264
|
-
export const organizationRestrictionSnapshotUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted>;
|
|
27265
27378
|
export const organizationRestrictionStatus: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionStatus>;
|
|
27266
27379
|
export const organizationRestrictionStatusDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted>;
|
|
27267
27380
|
export const organizationRestrictionStatusNote: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionStatusNote>;
|
|
@@ -27790,6 +27903,9 @@ export const timeWithTimezone: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
27790
27903
|
export const trackingAssuranceAnalysis: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysis>;
|
|
27791
27904
|
export const trackingAssuranceAnalysisDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted>;
|
|
27792
27905
|
export const trackingAssuranceAnalysisUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted>;
|
|
27906
|
+
export const trackingAssuranceJob: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceJob>;
|
|
27907
|
+
export const trackingAssuranceJobDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceJobDeleted>;
|
|
27908
|
+
export const trackingAssuranceJobUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceJobUpserted>;
|
|
27793
27909
|
export const trackingDebugForceTransitForm: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugForceTransitForm>;
|
|
27794
27910
|
export const trackingDebugLabel: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabel>;
|
|
27795
27911
|
export const trackingDebugLabelEvent: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabelEvent>;
|