@flowio/api-internal-prop-types 9.24.99 → 9.24.101
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 +331 -31
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +331 -31
- package/src/api-internal.js +573 -193
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' | 'mobilepay';
|
|
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,12 +621,22 @@ 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;
|
|
@@ -657,6 +667,11 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
657
667
|
readonly 'reference'?: string;
|
|
658
668
|
}
|
|
659
669
|
|
|
670
|
+
interface PaymentMethodDataInitVipps {
|
|
671
|
+
readonly 'type': 'init_vipps';
|
|
672
|
+
readonly 'reference'?: string;
|
|
673
|
+
}
|
|
674
|
+
|
|
660
675
|
interface PaymentMethodDataOptionLogoSvg {
|
|
661
676
|
readonly 'type': 'svg';
|
|
662
677
|
readonly 'url': string;
|
|
@@ -719,12 +734,22 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
719
734
|
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
720
735
|
}
|
|
721
736
|
|
|
737
|
+
interface PaymentMethodSummaryGrabpay {
|
|
738
|
+
readonly 'type': 'grabpay';
|
|
739
|
+
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
740
|
+
}
|
|
741
|
+
|
|
722
742
|
interface PaymentMethodSummaryIdeal {
|
|
723
743
|
readonly 'type': 'ideal';
|
|
724
744
|
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
725
745
|
readonly 'issuer'?: string;
|
|
726
746
|
}
|
|
727
747
|
|
|
748
|
+
interface PaymentMethodSummaryKcpCreditcard {
|
|
749
|
+
readonly 'type': 'kcp_creditcard';
|
|
750
|
+
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
751
|
+
}
|
|
752
|
+
|
|
728
753
|
interface PaymentMethodSummaryKlarna {
|
|
729
754
|
readonly 'type': 'klarna';
|
|
730
755
|
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
@@ -755,6 +780,11 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
755
780
|
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
756
781
|
}
|
|
757
782
|
|
|
783
|
+
interface PaymentMethodSummaryVipps {
|
|
784
|
+
readonly 'type': 'vipps';
|
|
785
|
+
readonly 'merchant_of_record': io.flow.common.v0.enums.MerchantOfRecord;
|
|
786
|
+
}
|
|
787
|
+
|
|
758
788
|
interface PaymentOrderDetailsLineItem {
|
|
759
789
|
readonly 'id'?: string;
|
|
760
790
|
readonly 'description': string;
|
|
@@ -904,12 +934,12 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
904
934
|
type OrderInformation = (io.flow.payment.gateway.v0.models.OrderInformationFlow | io.flow.payment.gateway.v0.models.OrderInformationDetails);
|
|
905
935
|
type PaymentCaptureOption = (io.flow.payment.gateway.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.payment.gateway.v0.models.PaymentCaptureOptionManual);
|
|
906
936
|
type PaymentMethodCard = (io.flow.payment.gateway.v0.models.PaymentMethodCardPciDetails | io.flow.payment.gateway.v0.models.PaymentMethodCardToken);
|
|
907
|
-
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.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);
|
|
908
938
|
type PaymentMethodDataAuthorizeApplepayResult = (io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure);
|
|
909
939
|
type PaymentMethodDataAuthorizeKlarnaResult = (io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure);
|
|
910
940
|
type PaymentMethodDataOptionLogo = (io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg);
|
|
911
941
|
type PaymentMethodStoredDetailsCard = (io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardSubsequent);
|
|
912
|
-
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.PaymentMethodSummaryMobilepay | 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);
|
|
913
943
|
type PaymentRequestCancellationReason = (io.flow.payment.gateway.v0.models.PaymentRequestCancellationReasonOrderMissing);
|
|
914
944
|
type SdkAdyenV3AuthenticationToken = (io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken);
|
|
915
945
|
}
|
|
@@ -1548,6 +1578,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1548
1578
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1549
1579
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1550
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';
|
|
1551
1582
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
1552
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';
|
|
1553
1584
|
type ReversalStatus = 'pending' | 'processed' | 'failed';
|
|
@@ -2251,6 +2282,8 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2251
2282
|
readonly 'attributes'?: Record<string, string>;
|
|
2252
2283
|
readonly 'status'?: io.flow.payment.v0.enums.RefundStatus;
|
|
2253
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;
|
|
2254
2287
|
}
|
|
2255
2288
|
|
|
2256
2289
|
interface RefundCapture {
|
|
@@ -2583,7 +2616,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2583
2616
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
2584
2617
|
type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
|
|
2585
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';
|
|
2586
|
-
type RefundFailureReason = '
|
|
2619
|
+
type RefundFailureReason = 'charge_for_pending_refund_disputed' | 'declined' | 'expired_or_canceled_card' | 'insufficient_funds' | 'lost_or_stolen_card' | 'merchant_request' | 'unknown';
|
|
2587
2620
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
2588
2621
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
2589
2622
|
type RequestThreeDSecureType = 'automatic' | 'any';
|
|
@@ -4182,7 +4215,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4182
4215
|
}
|
|
4183
4216
|
|
|
4184
4217
|
interface CanceledRecurringBilling {
|
|
4185
|
-
readonly 'expected_refund'?: io.flow.external.paypal.v1.models.
|
|
4218
|
+
readonly 'expected_refund'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4186
4219
|
readonly 'cancellation_details'?: io.flow.external.paypal.v1.models.CancellationDetails;
|
|
4187
4220
|
}
|
|
4188
4221
|
|
|
@@ -4201,7 +4234,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4201
4234
|
|
|
4202
4235
|
interface CreditNotProcessed {
|
|
4203
4236
|
readonly 'issue_type'?: io.flow.external.paypal.v1.enums.IssueType;
|
|
4204
|
-
readonly 'expected_refund'?: io.flow.external.paypal.v1.models.
|
|
4237
|
+
readonly 'expected_refund'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4205
4238
|
readonly 'cancellation_details'?: io.flow.external.paypal.v1.models.CancellationDetails;
|
|
4206
4239
|
readonly 'product_details'?: io.flow.external.paypal.v1.models.ProductDetails;
|
|
4207
4240
|
readonly 'service_details'?: io.flow.external.paypal.v1.models.ServiceDetails;
|
|
@@ -4215,7 +4248,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4215
4248
|
readonly 'disputed_transactions': io.flow.external.paypal.v1.models.TransactionInfo[];
|
|
4216
4249
|
readonly 'reason': io.flow.external.paypal.v1.enums.DisputeReason;
|
|
4217
4250
|
readonly 'status': io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
4218
|
-
readonly 'dispute_amount': io.flow.external.paypal.v1.models.
|
|
4251
|
+
readonly 'dispute_amount': io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4219
4252
|
readonly 'fee_policy'?: any/*object*/;
|
|
4220
4253
|
readonly 'external_reason_code'?: string;
|
|
4221
4254
|
readonly 'dispute_outcome'?: io.flow.external.paypal.v1.models.DisputeOutcome;
|
|
@@ -4234,6 +4267,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4234
4267
|
readonly 'supporting_info'?: io.flow.external.paypal.v1.models.SupportingInfo;
|
|
4235
4268
|
readonly 'allowed_response_options'?: io.flow.external.paypal.v1.models.AllowedResponseOptions;
|
|
4236
4269
|
readonly 'links'?: io.flow.external.paypal.v1.models.Link[];
|
|
4270
|
+
readonly 'previous_status'?: io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
4237
4271
|
}
|
|
4238
4272
|
|
|
4239
4273
|
interface DisputeExtension {
|
|
@@ -4252,9 +4286,14 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4252
4286
|
readonly 'links': io.flow.external.paypal.v1.models.Link[];
|
|
4253
4287
|
}
|
|
4254
4288
|
|
|
4289
|
+
interface DisputeMoney {
|
|
4290
|
+
readonly 'currency_code': string;
|
|
4291
|
+
readonly 'value': string;
|
|
4292
|
+
}
|
|
4293
|
+
|
|
4255
4294
|
interface DisputeOutcome {
|
|
4256
4295
|
readonly 'outcome_code'?: io.flow.external.paypal.v1.enums.DisputeOutcomeCode;
|
|
4257
|
-
readonly 'amount_refunded'?: io.flow.external.paypal.v1.models.
|
|
4296
|
+
readonly 'amount_refunded'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4258
4297
|
}
|
|
4259
4298
|
|
|
4260
4299
|
interface DisputeSummary {
|
|
@@ -4263,7 +4302,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4263
4302
|
readonly 'update_time': string;
|
|
4264
4303
|
readonly 'reason': io.flow.external.paypal.v1.enums.DisputeReason;
|
|
4265
4304
|
readonly 'status': io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
4266
|
-
readonly 'dispute_amount': io.flow.external.paypal.v1.models.
|
|
4305
|
+
readonly 'dispute_amount': io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4267
4306
|
readonly 'dispute_life_cycle_stage': io.flow.external.paypal.v1.enums.DisputeLifeCycleStage;
|
|
4268
4307
|
readonly 'links': io.flow.external.paypal.v1.models.Link[];
|
|
4269
4308
|
}
|
|
@@ -4309,7 +4348,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4309
4348
|
}
|
|
4310
4349
|
|
|
4311
4350
|
interface IncorrectTransactionAmount {
|
|
4312
|
-
readonly 'correct_transaction_amount'?: io.flow.external.paypal.v1.models.
|
|
4351
|
+
readonly 'correct_transaction_amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4313
4352
|
readonly 'correct_transaction_time'?: string;
|
|
4314
4353
|
}
|
|
4315
4354
|
|
|
@@ -4329,7 +4368,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4329
4368
|
readonly 'item_quantity'?: string;
|
|
4330
4369
|
readonly 'partner_transaction_id'?: string;
|
|
4331
4370
|
readonly 'reason'?: io.flow.external.paypal.v1.enums.DisputeReason;
|
|
4332
|
-
readonly 'dispute_amount'?: io.flow.external.paypal.v1.models.
|
|
4371
|
+
readonly 'dispute_amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4333
4372
|
readonly 'notes'?: string;
|
|
4334
4373
|
}
|
|
4335
4374
|
|
|
@@ -4362,21 +4401,21 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4362
4401
|
}
|
|
4363
4402
|
|
|
4364
4403
|
interface Money {
|
|
4365
|
-
readonly 'currency_code'
|
|
4366
|
-
readonly 'value'
|
|
4404
|
+
readonly 'currency_code'?: string;
|
|
4405
|
+
readonly 'value'?: string;
|
|
4367
4406
|
}
|
|
4368
4407
|
|
|
4369
4408
|
interface MoneyMovement {
|
|
4370
4409
|
readonly 'affected_party'?: io.flow.external.paypal.v1.enums.AffectedParty;
|
|
4371
|
-
readonly 'amount'?: io.flow.external.paypal.v1.models.
|
|
4410
|
+
readonly 'amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4372
4411
|
readonly 'initiated_time'?: string;
|
|
4373
4412
|
readonly 'type'?: io.flow.external.paypal.v1.enums.MoneyMovementType;
|
|
4374
4413
|
readonly 'reason'?: io.flow.external.paypal.v1.enums.MoneyMovementReason;
|
|
4375
4414
|
}
|
|
4376
4415
|
|
|
4377
4416
|
interface Offer {
|
|
4378
|
-
readonly 'buyer_requested_amount'?: io.flow.external.paypal.v1.models.
|
|
4379
|
-
readonly 'seller_offered_amount'?: io.flow.external.paypal.v1.models.
|
|
4417
|
+
readonly 'buyer_requested_amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4418
|
+
readonly 'seller_offered_amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4380
4419
|
readonly 'offer_type'?: io.flow.external.paypal.v1.enums.OfferType;
|
|
4381
4420
|
}
|
|
4382
4421
|
|
|
@@ -4480,7 +4519,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4480
4519
|
}
|
|
4481
4520
|
|
|
4482
4521
|
interface RefundDetails {
|
|
4483
|
-
readonly 'allowed_refund_amount'?: io.flow.external.paypal.v1.models.
|
|
4522
|
+
readonly 'allowed_refund_amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4484
4523
|
}
|
|
4485
4524
|
|
|
4486
4525
|
interface RefundId {
|
|
@@ -4615,7 +4654,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4615
4654
|
readonly 'reference_id'?: string;
|
|
4616
4655
|
readonly 'create_time'?: string;
|
|
4617
4656
|
readonly 'transaction_status'?: io.flow.external.paypal.v1.enums.TransactionStatus;
|
|
4618
|
-
readonly 'gross_amount'?: io.flow.external.paypal.v1.models.
|
|
4657
|
+
readonly 'gross_amount'?: io.flow.external.paypal.v1.models.DisputeMoney;
|
|
4619
4658
|
readonly 'invoice_number': string;
|
|
4620
4659
|
readonly 'custom'?: string;
|
|
4621
4660
|
readonly 'buyer'?: io.flow.external.paypal.v1.models.Buyer;
|
|
@@ -4938,6 +4977,12 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
4938
4977
|
}
|
|
4939
4978
|
|
|
4940
4979
|
declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
4980
|
+
interface BulkDutyUpdateValidationError {
|
|
4981
|
+
readonly 'message': string;
|
|
4982
|
+
readonly 'reason': string;
|
|
4983
|
+
readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
4984
|
+
}
|
|
4985
|
+
|
|
4941
4986
|
interface CatalogPublicationSyncValidationError {
|
|
4942
4987
|
readonly 'message': string;
|
|
4943
4988
|
readonly 'reason': string;
|
|
@@ -5165,10 +5210,11 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
5165
5210
|
type Channel = 'web';
|
|
5166
5211
|
type Contract = 'RECURRING';
|
|
5167
5212
|
type DeviceChannel = 'app' | 'browser';
|
|
5213
|
+
type DisputeStatus = 'Accepted' | 'Expired' | 'Lost' | 'Pending' | 'Responded' | 'Undefended' | 'Unresponded' | 'Won';
|
|
5168
5214
|
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';
|
|
5169
5215
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
5170
5216
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
5171
|
-
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' | 'paywithgoogle' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'visa' | 'wechatpay' | 'unknowncard';
|
|
5217
|
+
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';
|
|
5172
5218
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
5173
5219
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
5174
5220
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -5323,6 +5369,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5323
5369
|
readonly 'modificationMerchantReferences': string;
|
|
5324
5370
|
readonly 'chargebackSchemeCode': string;
|
|
5325
5371
|
readonly 'defensePeriodEndsAt'?: string;
|
|
5372
|
+
readonly 'disputeStatus'?: io.flow.adyen.v0.enums.DisputeStatus;
|
|
5373
|
+
readonly 'defendable'?: string;
|
|
5326
5374
|
}
|
|
5327
5375
|
|
|
5328
5376
|
interface Error {
|
|
@@ -5686,7 +5734,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5686
5734
|
}
|
|
5687
5735
|
|
|
5688
5736
|
interface GraphqlMeasurement {
|
|
5689
|
-
readonly 'weight'
|
|
5737
|
+
readonly 'weight'?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
5690
5738
|
}
|
|
5691
5739
|
|
|
5692
5740
|
interface GraphqlOption {
|
|
@@ -7026,7 +7074,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7026
7074
|
readonly 'created_at': string;
|
|
7027
7075
|
readonly 'notify_customer': boolean;
|
|
7028
7076
|
readonly 'order_id': number;
|
|
7029
|
-
readonly 'staff_note'
|
|
7077
|
+
readonly 'staff_note'?: string;
|
|
7030
7078
|
readonly 'user_id'?: number;
|
|
7031
7079
|
readonly 'line_items': io.flow.shopify.markets.v0.models.ShopifyOrderEditLineItems;
|
|
7032
7080
|
readonly 'discounts': any/*object*/;
|
|
@@ -7072,6 +7120,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7072
7120
|
}
|
|
7073
7121
|
|
|
7074
7122
|
interface ShopifyOrderLineItem {
|
|
7123
|
+
readonly 'current_quantity'?: number;
|
|
7075
7124
|
readonly 'fulfillable_quantity'?: number;
|
|
7076
7125
|
readonly 'fulfillment_status'?: io.flow.shopify.markets.v0.enums.ShopifyOrderFulfillmentStatusType;
|
|
7077
7126
|
readonly 'grams'?: number;
|
|
@@ -7175,6 +7224,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7175
7224
|
readonly 'location_id'?: number;
|
|
7176
7225
|
readonly 'subtotal'?: number;
|
|
7177
7226
|
readonly 'total_tax'?: number;
|
|
7227
|
+
readonly 'total_tax_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7178
7228
|
}
|
|
7179
7229
|
|
|
7180
7230
|
interface ShopifyOrderShippingLine {
|
|
@@ -7246,6 +7296,13 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7246
7296
|
readonly 'payment_schedules'?: io.flow.shopify.markets.v0.models.ShopifyPaymentSchedules;
|
|
7247
7297
|
}
|
|
7248
7298
|
|
|
7299
|
+
interface ShopifyProductVariantInventoryItemWrapper {
|
|
7300
|
+
readonly 'product_id': number;
|
|
7301
|
+
readonly 'variant_id': number;
|
|
7302
|
+
readonly 'harmonized_system_code': string;
|
|
7303
|
+
readonly 'country_harmonized_system_codes': io.flow.shopify.markets.v0.models.ShopifyCountryHarmonizedSystemCode[];
|
|
7304
|
+
}
|
|
7305
|
+
|
|
7249
7306
|
interface ShopifyRefund {
|
|
7250
7307
|
readonly 'notify_x': boolean;
|
|
7251
7308
|
readonly 'note'?: string;
|
|
@@ -8590,6 +8647,12 @@ declare namespace io.flow.experience.v0.models {
|
|
|
8590
8647
|
readonly 'display'?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
8591
8648
|
}
|
|
8592
8649
|
|
|
8650
|
+
interface DestinationContactDetail {
|
|
8651
|
+
readonly 'title': string;
|
|
8652
|
+
readonly 'country': string;
|
|
8653
|
+
readonly 'import_identifier': string;
|
|
8654
|
+
}
|
|
8655
|
+
|
|
8593
8656
|
interface Discount {
|
|
8594
8657
|
readonly 'discriminator': 'discount';
|
|
8595
8658
|
readonly 'id': string;
|
|
@@ -8952,6 +9015,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
8952
9015
|
readonly 'tax_registration'?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
8953
9016
|
readonly 'geo'?: io.flow.experience.v0.models.OrderGeo;
|
|
8954
9017
|
readonly 'device_details'?: io.flow.payment.v0.unions.DeviceDetails;
|
|
9018
|
+
readonly 'destination_contact_details'?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
8955
9019
|
}
|
|
8956
9020
|
|
|
8957
9021
|
interface OrderAddress {
|
|
@@ -10604,6 +10668,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
10604
10668
|
readonly 'in_transit': io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10605
10669
|
readonly 'delivered'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10606
10670
|
readonly 'rejected'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10671
|
+
readonly 'returned'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10607
10672
|
}
|
|
10608
10673
|
|
|
10609
10674
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -10984,6 +11049,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
10984
11049
|
readonly 'local'?: io.flow.catalog.v0.models.Local;
|
|
10985
11050
|
readonly 'created_at'?: string;
|
|
10986
11051
|
readonly 'updated_at'?: string;
|
|
11052
|
+
readonly 'deleted_at'?: string;
|
|
10987
11053
|
}
|
|
10988
11054
|
|
|
10989
11055
|
interface ItemAttributesPatchForm {
|
|
@@ -11001,6 +11067,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11001
11067
|
readonly 'attributes'?: Record<string, string>;
|
|
11002
11068
|
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
11003
11069
|
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
11070
|
+
readonly 'deleted_at'?: string;
|
|
11004
11071
|
}
|
|
11005
11072
|
|
|
11006
11073
|
interface ItemFormOverlay {
|
|
@@ -11014,6 +11081,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11014
11081
|
readonly 'attributes'?: Record<string, string>;
|
|
11015
11082
|
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
11016
11083
|
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
11084
|
+
readonly 'deleted_at'?: string;
|
|
11017
11085
|
}
|
|
11018
11086
|
|
|
11019
11087
|
interface ItemFormOverlayForm {
|
|
@@ -11026,6 +11094,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11026
11094
|
readonly 'attributes'?: Record<string, string>;
|
|
11027
11095
|
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
11028
11096
|
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
11097
|
+
readonly 'deleted_at'?: string;
|
|
11029
11098
|
}
|
|
11030
11099
|
|
|
11031
11100
|
interface ItemPriceUpdateForm {
|
|
@@ -11515,9 +11584,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11515
11584
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
|
|
11516
11585
|
type PayoutAttachmentType = 'transactions';
|
|
11517
11586
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11518
|
-
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';
|
|
11587
|
+
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' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
11519
11588
|
type StatementAttachmentType = 'csv';
|
|
11520
|
-
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';
|
|
11589
|
+
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';
|
|
11521
11590
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
11522
11591
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11523
11592
|
}
|
|
@@ -13838,10 +13907,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13838
13907
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
13839
13908
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
13840
13909
|
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';
|
|
13841
|
-
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_total' | '
|
|
13910
|
+
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';
|
|
13842
13911
|
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';
|
|
13843
13912
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
13844
|
-
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';
|
|
13913
|
+
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';
|
|
13845
13914
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
13846
13915
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
|
|
13847
13916
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -13887,11 +13956,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13887
13956
|
type DiscountRequestOrderEntitlementKey = 'subtotal';
|
|
13888
13957
|
type DisputeBillable = 'flow' | 'organization';
|
|
13889
13958
|
type DisputeCategory = 'friendly_fraud' | 'true_fraud' | 'processing_error';
|
|
13959
|
+
type DisputeDefenseOutcome = 'defended' | 'undefended' | 'undefendable';
|
|
13890
13960
|
type DisputeEvidence = 'proof_of_delivery' | 'proof_of_fulfillment' | 'other';
|
|
13891
13961
|
type DisputeImportStatus = 'new' | 'processing' | 'completed' | 'failed';
|
|
13892
13962
|
type DisputeImportType = 'adyen_dispute' | 'paypal_dispute';
|
|
13893
13963
|
type DisputeLiability = 'flow' | 'organization';
|
|
13894
|
-
type DisputeProcessor = 'adyen' | 'paypal';
|
|
13964
|
+
type DisputeProcessor = 'adyen' | 'paypal' | 'stripe';
|
|
13895
13965
|
type DisputeReportingCategory = 'charge_issues' | 'delivery' | 'fraud' | 'general' | 'product' | 'returns';
|
|
13896
13966
|
type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
|
|
13897
13967
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
@@ -13903,9 +13973,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13903
13973
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
13904
13974
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
13905
13975
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
13976
|
+
type EldarItemType = 'digital' | 'physical';
|
|
13906
13977
|
type EmptyAttribute = 'irrelevant';
|
|
13907
13978
|
type ErpFileType = 'vendor';
|
|
13908
|
-
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' | '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';
|
|
13979
|
+
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | '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' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_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_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13909
13980
|
type ExperienceImportType = 'experience_with_settings';
|
|
13910
13981
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13911
13982
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13940,6 +14011,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13940
14011
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
13941
14012
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
13942
14013
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system';
|
|
14014
|
+
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
14015
|
+
type LabelRequestResultState = 'success' | 'failure';
|
|
13943
14016
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
13944
14017
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
13945
14018
|
type LogisticsCapability = 'logistics_address_correction';
|
|
@@ -14031,7 +14104,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14031
14104
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
14032
14105
|
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';
|
|
14033
14106
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
14034
|
-
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';
|
|
14107
|
+
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';
|
|
14035
14108
|
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';
|
|
14036
14109
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
14037
14110
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
@@ -14056,9 +14129,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14056
14129
|
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
14057
14130
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
14058
14131
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
14059
|
-
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
14132
|
+
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
14060
14133
|
type ThiagoItemType = 'digital' | 'physical';
|
|
14061
14134
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
14135
|
+
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
14062
14136
|
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
14063
14137
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
14064
14138
|
type TransferMethod = 'ach';
|
|
@@ -14330,6 +14404,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14330
14404
|
readonly 'province_code': io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
14331
14405
|
}
|
|
14332
14406
|
|
|
14407
|
+
interface AdjustedEstimates {
|
|
14408
|
+
readonly 'id': string;
|
|
14409
|
+
readonly 'organization_id': string;
|
|
14410
|
+
readonly 'label_id': string;
|
|
14411
|
+
readonly 'estimates': io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
14412
|
+
}
|
|
14413
|
+
|
|
14414
|
+
interface AdjustedEstimatesDeleted {
|
|
14415
|
+
readonly 'discriminator': 'adjusted_estimates_deleted';
|
|
14416
|
+
readonly 'event_id': string;
|
|
14417
|
+
readonly 'timestamp': string;
|
|
14418
|
+
readonly 'organization': string;
|
|
14419
|
+
readonly 'id': string;
|
|
14420
|
+
}
|
|
14421
|
+
|
|
14422
|
+
interface AdjustedEstimatesUpserted {
|
|
14423
|
+
readonly 'discriminator': 'adjusted_estimates_upserted';
|
|
14424
|
+
readonly 'event_id': string;
|
|
14425
|
+
readonly 'timestamp': string;
|
|
14426
|
+
readonly 'organization': string;
|
|
14427
|
+
readonly 'adjusted_estimates': io.flow.internal.v0.models.AdjustedEstimates;
|
|
14428
|
+
}
|
|
14429
|
+
|
|
14333
14430
|
interface AdjustmentAmountFixed {
|
|
14334
14431
|
readonly 'discriminator': 'fixed';
|
|
14335
14432
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -14783,6 +14880,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14783
14880
|
readonly 'value': string;
|
|
14784
14881
|
}
|
|
14785
14882
|
|
|
14883
|
+
interface AttemptStatistics {
|
|
14884
|
+
readonly 'merchant_count': number;
|
|
14885
|
+
readonly 'amount': number;
|
|
14886
|
+
readonly 'failed_merchant_count': number;
|
|
14887
|
+
readonly 'failed_amount': number;
|
|
14888
|
+
readonly 'success_ratio': number;
|
|
14889
|
+
}
|
|
14890
|
+
|
|
14786
14891
|
interface AttributeLabel {
|
|
14787
14892
|
readonly 'value': string;
|
|
14788
14893
|
readonly 'unverified': boolean;
|
|
@@ -15134,6 +15239,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15134
15239
|
readonly 'trueup': io.flow.common.v0.models.Price;
|
|
15135
15240
|
readonly 'carrier_charge': io.flow.common.v0.models.Price;
|
|
15136
15241
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
15242
|
+
readonly 'tax_refund': io.flow.common.v0.models.Price;
|
|
15137
15243
|
}
|
|
15138
15244
|
|
|
15139
15245
|
interface BillingStatementUpserted {
|
|
@@ -15291,6 +15397,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15291
15397
|
readonly 'actions': io.flow.internal.v0.models.SingleClassificationAction[];
|
|
15292
15398
|
}
|
|
15293
15399
|
|
|
15400
|
+
interface BulkDutyUpdateValidationError {
|
|
15401
|
+
readonly 'message': string;
|
|
15402
|
+
readonly 'reason': string;
|
|
15403
|
+
readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
15404
|
+
}
|
|
15405
|
+
|
|
15294
15406
|
interface CalculatedTaxAmount {
|
|
15295
15407
|
readonly 'discriminator': 'calculated_tax_amount';
|
|
15296
15408
|
readonly 'amount': number;
|
|
@@ -16388,6 +16500,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16388
16500
|
readonly 'customs_description_suggestions': io.flow.internal.v0.models.CustomsDescriptionSuggestion[];
|
|
16389
16501
|
}
|
|
16390
16502
|
|
|
16503
|
+
interface ClassificationMerchant {
|
|
16504
|
+
readonly 'MerchantId': string;
|
|
16505
|
+
readonly 'PlatformId': io.flow.internal.v0.enums.ClassificationPlatform;
|
|
16506
|
+
readonly 'Name': string;
|
|
16507
|
+
readonly 'DateLastUpdated'?: string;
|
|
16508
|
+
readonly 'Order': number;
|
|
16509
|
+
}
|
|
16510
|
+
|
|
16511
|
+
interface ClassificationMerchantEnvelope {
|
|
16512
|
+
readonly 'messageType': string[];
|
|
16513
|
+
readonly 'message': io.flow.internal.v0.models.ClassificationMerchant;
|
|
16514
|
+
}
|
|
16515
|
+
|
|
16391
16516
|
interface ClassificationProduct {
|
|
16392
16517
|
readonly 'organization_id': string;
|
|
16393
16518
|
readonly 'product_id'?: string;
|
|
@@ -16561,11 +16686,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16561
16686
|
readonly 'transaction_date': string;
|
|
16562
16687
|
readonly 'origin': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
16563
16688
|
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
16689
|
+
readonly 'billing_address'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
16564
16690
|
readonly 'service': string;
|
|
16565
16691
|
readonly 'flow_tracking_number': string;
|
|
16566
16692
|
readonly 'rex_number'?: string;
|
|
16567
16693
|
readonly 'wee_number'?: string;
|
|
16568
16694
|
readonly 'business_gst_numbers': string[];
|
|
16695
|
+
readonly 'destination_gst_numbers'?: string[];
|
|
16569
16696
|
readonly 'vat_name': string;
|
|
16570
16697
|
readonly 'shipping_price': string;
|
|
16571
16698
|
readonly 'shipment_recipient'?: string;
|
|
@@ -16588,6 +16715,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16588
16715
|
readonly 'show_us_outbound_signature': boolean;
|
|
16589
16716
|
readonly 'show_us_outbound_stamp': boolean;
|
|
16590
16717
|
readonly 'invoice_url'?: string;
|
|
16718
|
+
readonly 'invoice_number'?: string;
|
|
16591
16719
|
}
|
|
16592
16720
|
|
|
16593
16721
|
interface CommercialInvoiceInternalDeleted {
|
|
@@ -17189,7 +17317,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17189
17317
|
interface Dispute {
|
|
17190
17318
|
readonly 'id': string;
|
|
17191
17319
|
readonly 'organization_id': string;
|
|
17192
|
-
readonly 'order'
|
|
17320
|
+
readonly 'order'?: io.flow.internal.v0.models.DisputeOrderReference;
|
|
17193
17321
|
readonly 'authorization': io.flow.internal.v0.models.DisputeAuthorizationReference;
|
|
17194
17322
|
readonly 'processor': io.flow.internal.v0.enums.DisputeProcessor;
|
|
17195
17323
|
readonly 'key': string;
|
|
@@ -17198,9 +17326,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17198
17326
|
readonly 'category': io.flow.internal.v0.enums.DisputeCategory;
|
|
17199
17327
|
readonly 'reporting_category'?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
17200
17328
|
readonly 'reason': string;
|
|
17329
|
+
readonly 'code'?: string;
|
|
17201
17330
|
readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
|
|
17202
17331
|
readonly 'liability': io.flow.internal.v0.enums.DisputeLiability;
|
|
17203
17332
|
readonly 'billable': io.flow.internal.v0.enums.DisputeBillable;
|
|
17333
|
+
readonly 'defense_outcome'?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
17204
17334
|
readonly 'details': io.flow.internal.v0.unions.DisputeDetails;
|
|
17205
17335
|
readonly 'issued_at': string;
|
|
17206
17336
|
readonly 'expires_at'?: string;
|
|
@@ -17220,6 +17350,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17220
17350
|
readonly 'id': string;
|
|
17221
17351
|
}
|
|
17222
17352
|
|
|
17353
|
+
interface DisputeDetail {
|
|
17354
|
+
readonly 'authorization': io.flow.internal.v0.models.SearchAuthorization;
|
|
17355
|
+
readonly 'dispute': io.flow.internal.v0.models.Dispute;
|
|
17356
|
+
}
|
|
17357
|
+
|
|
17223
17358
|
interface DisputeDetailsAdyen {
|
|
17224
17359
|
readonly 'discriminator': 'adyen';
|
|
17225
17360
|
readonly 'psp_reference': string;
|
|
@@ -17231,6 +17366,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17231
17366
|
readonly 'original_transaction_id': string;
|
|
17232
17367
|
readonly 'transaction_invoice_id': string;
|
|
17233
17368
|
readonly 'case_id': string;
|
|
17369
|
+
readonly 'dispute_channel'?: string;
|
|
17234
17370
|
}
|
|
17235
17371
|
|
|
17236
17372
|
interface DisputeDetailsStripe {
|
|
@@ -17270,6 +17406,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17270
17406
|
readonly 'id': string;
|
|
17271
17407
|
}
|
|
17272
17408
|
|
|
17409
|
+
interface DisputeOverrideUpdateForm {
|
|
17410
|
+
readonly 'billable'?: io.flow.internal.v0.enums.DisputeBillable;
|
|
17411
|
+
readonly 'reporting_category'?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
17412
|
+
readonly 'category'?: io.flow.internal.v0.enums.DisputeCategory;
|
|
17413
|
+
readonly 'status'?: io.flow.internal.v0.enums.DisputeStatus;
|
|
17414
|
+
}
|
|
17415
|
+
|
|
17273
17416
|
interface DisputeStatusForm {
|
|
17274
17417
|
readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
|
|
17275
17418
|
}
|
|
@@ -17478,6 +17621,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17478
17621
|
readonly 'duty_transaction': io.flow.internal.v0.models.DutyTransaction;
|
|
17479
17622
|
}
|
|
17480
17623
|
|
|
17624
|
+
interface EldarItem {
|
|
17625
|
+
readonly 'id': string;
|
|
17626
|
+
readonly 'number': string;
|
|
17627
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
17628
|
+
readonly 'description'?: string;
|
|
17629
|
+
readonly 'type': io.flow.internal.v0.enums.EldarItemType;
|
|
17630
|
+
readonly 'added_on': string;
|
|
17631
|
+
}
|
|
17632
|
+
|
|
17633
|
+
interface EldarItemDeleted {
|
|
17634
|
+
readonly 'discriminator': 'eldar_item_deleted';
|
|
17635
|
+
readonly 'event_id': string;
|
|
17636
|
+
readonly 'timestamp': string;
|
|
17637
|
+
readonly 'id': string;
|
|
17638
|
+
}
|
|
17639
|
+
|
|
17640
|
+
interface EldarItemForm {
|
|
17641
|
+
readonly 'number': string;
|
|
17642
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
17643
|
+
readonly 'description'?: string;
|
|
17644
|
+
readonly 'type': io.flow.internal.v0.enums.EldarItemType;
|
|
17645
|
+
readonly 'added_on': string;
|
|
17646
|
+
}
|
|
17647
|
+
|
|
17648
|
+
interface EldarItemUpserted {
|
|
17649
|
+
readonly 'discriminator': 'eldar_item_upserted';
|
|
17650
|
+
readonly 'event_id': string;
|
|
17651
|
+
readonly 'timestamp': string;
|
|
17652
|
+
readonly 'item': io.flow.internal.v0.models.EldarItem;
|
|
17653
|
+
}
|
|
17654
|
+
|
|
17481
17655
|
interface EmailForm {
|
|
17482
17656
|
readonly 'to': string[];
|
|
17483
17657
|
readonly 'cc'?: string[];
|
|
@@ -17823,6 +17997,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17823
17997
|
readonly 'description'?: string;
|
|
17824
17998
|
readonly 'order_number'?: string;
|
|
17825
17999
|
readonly 'raw_carrier_event_code'?: string;
|
|
18000
|
+
readonly 'aggregator_status_code'?: string;
|
|
17826
18001
|
readonly 'created_at'?: string;
|
|
17827
18002
|
}
|
|
17828
18003
|
|
|
@@ -18577,6 +18752,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18577
18752
|
readonly 'id': string;
|
|
18578
18753
|
}
|
|
18579
18754
|
|
|
18755
|
+
interface FulfillmentFallbacks {
|
|
18756
|
+
readonly 'id': string;
|
|
18757
|
+
readonly 'packaging': io.flow.fulfillment.v0.models.Packaging[];
|
|
18758
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
18759
|
+
readonly 'location'?: io.flow.common.v0.models.Address;
|
|
18760
|
+
}
|
|
18761
|
+
|
|
18762
|
+
interface FulfillmentFallbacksDeleted {
|
|
18763
|
+
readonly 'discriminator': 'fulfillment_fallbacks_deleted';
|
|
18764
|
+
readonly 'event_id': string;
|
|
18765
|
+
readonly 'timestamp': string;
|
|
18766
|
+
readonly 'organization': string;
|
|
18767
|
+
readonly 'id': string;
|
|
18768
|
+
}
|
|
18769
|
+
|
|
18770
|
+
interface FulfillmentFallbacksUpserted {
|
|
18771
|
+
readonly 'discriminator': 'fulfillment_fallbacks_upserted';
|
|
18772
|
+
readonly 'event_id': string;
|
|
18773
|
+
readonly 'timestamp': string;
|
|
18774
|
+
readonly 'organization': string;
|
|
18775
|
+
readonly 'fulfillment_fallbacks': io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
18776
|
+
}
|
|
18777
|
+
|
|
18580
18778
|
interface FulfillmentInternalExperienceReference {
|
|
18581
18779
|
readonly 'id': string;
|
|
18582
18780
|
readonly 'key': string;
|
|
@@ -19720,6 +19918,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19720
19918
|
readonly 'label_request_error': io.flow.internal.v0.models.LabelRequestError;
|
|
19721
19919
|
}
|
|
19722
19920
|
|
|
19921
|
+
interface LabelRequestResult {
|
|
19922
|
+
readonly 'id': string;
|
|
19923
|
+
readonly 'created_at': string;
|
|
19924
|
+
readonly 'state': io.flow.internal.v0.enums.LabelRequestResultState;
|
|
19925
|
+
readonly 'organization_id': string;
|
|
19926
|
+
readonly 'order_number': string;
|
|
19927
|
+
readonly 'label_request_method': io.flow.label.v0.enums.LabelRequestMethod;
|
|
19928
|
+
readonly 'carrier_id'?: string;
|
|
19929
|
+
readonly 'carrier_tracking_number'?: string;
|
|
19930
|
+
readonly 'url'?: string;
|
|
19931
|
+
readonly 'error'?: string;
|
|
19932
|
+
readonly 'suggested_responsibility'?: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
19933
|
+
readonly 'origin_country'?: string;
|
|
19934
|
+
readonly 'destination_country'?: string;
|
|
19935
|
+
}
|
|
19936
|
+
|
|
19723
19937
|
interface LabelSummary {
|
|
19724
19938
|
readonly 'id': string;
|
|
19725
19939
|
readonly 'commercial_invoice'?: string;
|
|
@@ -20705,6 +20919,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20705
20919
|
readonly 'duty': number;
|
|
20706
20920
|
readonly 'freight': number;
|
|
20707
20921
|
readonly 'total': number;
|
|
20922
|
+
readonly 'tax_refund'?: number;
|
|
20708
20923
|
}
|
|
20709
20924
|
|
|
20710
20925
|
interface MerchantUpserted {
|
|
@@ -20796,6 +21011,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20796
21011
|
readonly 'percent': number;
|
|
20797
21012
|
}
|
|
20798
21013
|
|
|
21014
|
+
interface NegativeDebitMetrics {
|
|
21015
|
+
readonly 'current_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21016
|
+
readonly 'second_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21017
|
+
readonly 'third_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21018
|
+
}
|
|
21019
|
+
|
|
20799
21020
|
interface NextBillingStatement {
|
|
20800
21021
|
readonly 'date': string;
|
|
20801
21022
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -21072,6 +21293,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21072
21293
|
readonly 'created_at': string;
|
|
21073
21294
|
readonly 'updated_at': string;
|
|
21074
21295
|
readonly 'shopify_order_id'?: string;
|
|
21296
|
+
readonly 'disputes': io.flow.internal.v0.models.DisputeDetail[];
|
|
21075
21297
|
}
|
|
21076
21298
|
|
|
21077
21299
|
interface OrderFulfillmentDeleted {
|
|
@@ -21265,6 +21487,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21265
21487
|
readonly 'resolved_at'?: string;
|
|
21266
21488
|
readonly 'last_failure'?: io.flow.internal.v0.models.LastFailureSummary;
|
|
21267
21489
|
readonly 'sla_breach_at'?: string;
|
|
21490
|
+
readonly 'capabilities_at_creation'?: io.flow.internal.v0.enums.LogisticsCapability[];
|
|
21491
|
+
readonly 'first_globale_address_repair_failure_at'?: string;
|
|
21268
21492
|
}
|
|
21269
21493
|
|
|
21270
21494
|
interface OrderValidationDeleted {
|
|
@@ -23286,6 +23510,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23286
23510
|
readonly 'tax_inclusive'?: boolean;
|
|
23287
23511
|
readonly 'duty_inclusive'?: boolean;
|
|
23288
23512
|
readonly 'manual_payment'?: boolean;
|
|
23513
|
+
readonly 'partial_fulfillment'?: boolean;
|
|
23514
|
+
readonly 'partial_refund'?: boolean;
|
|
23289
23515
|
}
|
|
23290
23516
|
|
|
23291
23517
|
interface ReportingFx {
|
|
@@ -23331,6 +23557,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23331
23557
|
readonly 'freight': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23332
23558
|
readonly 'discount'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23333
23559
|
readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23560
|
+
readonly 'tax_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23334
23561
|
}
|
|
23335
23562
|
|
|
23336
23563
|
interface ReportingMonetaryValue {
|
|
@@ -25498,6 +25725,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25498
25725
|
readonly 'analysis': io.flow.internal.v0.models.TrackingAssuranceAnalysis;
|
|
25499
25726
|
}
|
|
25500
25727
|
|
|
25728
|
+
interface TrackingAssuranceJob {
|
|
25729
|
+
readonly 'id': string;
|
|
25730
|
+
readonly 'created_at': string;
|
|
25731
|
+
}
|
|
25732
|
+
|
|
25733
|
+
interface TrackingAssuranceJobDeleted {
|
|
25734
|
+
readonly 'discriminator': 'tracking_assurance_job_deleted';
|
|
25735
|
+
readonly 'event_id': string;
|
|
25736
|
+
readonly 'timestamp': string;
|
|
25737
|
+
readonly 'id': string;
|
|
25738
|
+
}
|
|
25739
|
+
|
|
25740
|
+
interface TrackingAssuranceJobUpserted {
|
|
25741
|
+
readonly 'discriminator': 'tracking_assurance_job_upserted';
|
|
25742
|
+
readonly 'event_id': string;
|
|
25743
|
+
readonly 'timestamp': string;
|
|
25744
|
+
readonly 'job': io.flow.internal.v0.models.TrackingAssuranceJob;
|
|
25745
|
+
}
|
|
25746
|
+
|
|
25501
25747
|
interface TrackingDebugForceTransitForm {
|
|
25502
25748
|
readonly 'description': string;
|
|
25503
25749
|
}
|
|
@@ -25541,6 +25787,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25541
25787
|
readonly 'tracking_label': io.flow.internal.v0.models.ExportTrackingLabel;
|
|
25542
25788
|
}
|
|
25543
25789
|
|
|
25790
|
+
interface TrackingLabelDimensions {
|
|
25791
|
+
readonly 'id': string;
|
|
25792
|
+
readonly 'organization_id': string;
|
|
25793
|
+
readonly 'tracking_label_id': string;
|
|
25794
|
+
readonly 'source': io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
|
|
25795
|
+
readonly 'created_at': string;
|
|
25796
|
+
readonly 'dimensions': io.flow.common.v0.models.Dimensions;
|
|
25797
|
+
}
|
|
25798
|
+
|
|
25799
|
+
interface TrackingLabelDimensionsDeleted {
|
|
25800
|
+
readonly 'discriminator': 'tracking_label_dimensions_deleted';
|
|
25801
|
+
readonly 'event_id': string;
|
|
25802
|
+
readonly 'timestamp': string;
|
|
25803
|
+
readonly 'organization': string;
|
|
25804
|
+
readonly 'id': string;
|
|
25805
|
+
}
|
|
25806
|
+
|
|
25807
|
+
interface TrackingLabelDimensionsUpserted {
|
|
25808
|
+
readonly 'discriminator': 'tracking_label_dimensions_upserted';
|
|
25809
|
+
readonly 'event_id': string;
|
|
25810
|
+
readonly 'timestamp': string;
|
|
25811
|
+
readonly 'organization': string;
|
|
25812
|
+
readonly 'tracking_label_dimensions': io.flow.internal.v0.models.TrackingLabelDimensions;
|
|
25813
|
+
}
|
|
25814
|
+
|
|
25544
25815
|
interface TrackingLabelEventDeletedV2 {
|
|
25545
25816
|
readonly 'discriminator': 'tracking_label_event_deleted_v2';
|
|
25546
25817
|
readonly 'event_id': string;
|
|
@@ -25960,7 +26231,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25960
26231
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
25961
26232
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
25962
26233
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
25963
|
-
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.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);
|
|
26234
|
+
type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | 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.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | 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.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
25964
26235
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
25965
26236
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
25966
26237
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26083,6 +26354,7 @@ export const deminimisAdjustmentType: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26083
26354
|
export const discountRequestOrderEntitlementKey: PropTypes.Requireable<io.flow.internal.v0.enums.DiscountRequestOrderEntitlementKey>;
|
|
26084
26355
|
export const disputeBillable: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeBillable>;
|
|
26085
26356
|
export const disputeCategory: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeCategory>;
|
|
26357
|
+
export const disputeDefenseOutcome: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeDefenseOutcome>;
|
|
26086
26358
|
export const disputeEvidence: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeEvidence>;
|
|
26087
26359
|
export const disputeImportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeImportStatus>;
|
|
26088
26360
|
export const disputeImportType: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeImportType>;
|
|
@@ -26099,6 +26371,7 @@ export const dutyRateUnitOfMeasure: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
26099
26371
|
export const dutySelectionRule: PropTypes.Requireable<io.flow.internal.v0.enums.DutySelectionRule>;
|
|
26100
26372
|
export const dutySimpleExpressionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutySimpleExpressionType>;
|
|
26101
26373
|
export const dutyTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutyTransactionType>;
|
|
26374
|
+
export const eldarItemType: PropTypes.Requireable<io.flow.internal.v0.enums.EldarItemType>;
|
|
26102
26375
|
export const emptyAttribute: PropTypes.Requireable<io.flow.internal.v0.enums.EmptyAttribute>;
|
|
26103
26376
|
export const erpFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ErpFileType>;
|
|
26104
26377
|
export const eventType: PropTypes.Requireable<io.flow.internal.v0.enums.EventType>;
|
|
@@ -26136,6 +26409,8 @@ export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enu
|
|
|
26136
26409
|
export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
|
|
26137
26410
|
export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
|
|
26138
26411
|
export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility>;
|
|
26412
|
+
export const labelRequestResultOrganizationType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultOrganizationType>;
|
|
26413
|
+
export const labelRequestResultState: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultState>;
|
|
26139
26414
|
export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
|
|
26140
26415
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
26141
26416
|
export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsCapability>;
|
|
@@ -26255,6 +26530,7 @@ export const taxParty: PropTypes.Requireable<io.flow.internal.v0.enums.TaxParty>
|
|
|
26255
26530
|
export const taxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TaxTransactionType>;
|
|
26256
26531
|
export const thiagoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.ThiagoItemType>;
|
|
26257
26532
|
export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
|
|
26533
|
+
export const trackingLabelDimensionsSource: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingLabelDimensionsSource>;
|
|
26258
26534
|
export const trackingProcessingFailureClassification: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingProcessingFailureClassification>;
|
|
26259
26535
|
export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
|
|
26260
26536
|
export const transferMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransferMethod>;
|
|
@@ -26294,6 +26570,9 @@ export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26294
26570
|
export const addressConfigurationProvinceSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationProvinceSetting>;
|
|
26295
26571
|
export const addressConfigurationSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSetting>;
|
|
26296
26572
|
export const addressConfigurationSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSettingForm>;
|
|
26573
|
+
export const adjustedEstimates: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimates>;
|
|
26574
|
+
export const adjustedEstimatesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimatesDeleted>;
|
|
26575
|
+
export const adjustedEstimatesUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimatesUpserted>;
|
|
26297
26576
|
export const adjustmentAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountFixed>;
|
|
26298
26577
|
export const adjustmentAmountPercentage: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountPercentage>;
|
|
26299
26578
|
export const adjustmentDetailsAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentDetailsAmountFixed>;
|
|
@@ -26355,6 +26634,7 @@ export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.All
|
|
|
26355
26634
|
export const apmContent: PropTypes.Requireable<io.flow.internal.v0.models.ApmContent>;
|
|
26356
26635
|
export const applePayAuthorizationPayload: PropTypes.Requireable<io.flow.internal.v0.models.ApplePayAuthorizationPayload>;
|
|
26357
26636
|
export const applyAtValueForm: PropTypes.Requireable<io.flow.internal.v0.models.ApplyAtValueForm>;
|
|
26637
|
+
export const attemptStatistics: PropTypes.Requireable<io.flow.internal.v0.models.AttemptStatistics>;
|
|
26358
26638
|
export const attributeLabel: PropTypes.Requireable<io.flow.internal.v0.models.AttributeLabel>;
|
|
26359
26639
|
export const authenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.AuthenticationForm>;
|
|
26360
26640
|
export const authorizationBundle: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizationBundle>;
|
|
@@ -26428,6 +26708,7 @@ export const browserBundlePaymentMethod: PropTypes.Requireable<io.flow.internal.
|
|
|
26428
26708
|
export const browserBundlePaymentMethodForm: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundlePaymentMethodForm>;
|
|
26429
26709
|
export const browserBundlePaymentMethods: PropTypes.Requireable<io.flow.internal.v0.models.BrowserBundlePaymentMethods>;
|
|
26430
26710
|
export const bulkClassificationAction: PropTypes.Requireable<io.flow.internal.v0.models.BulkClassificationAction>;
|
|
26711
|
+
export const bulkDutyUpdateValidationError: PropTypes.Requireable<io.flow.internal.v0.models.BulkDutyUpdateValidationError>;
|
|
26431
26712
|
export const calculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.CalculatedTaxAmount>;
|
|
26432
26713
|
export const calculationStampingLineItem: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingLineItem>;
|
|
26433
26714
|
export const calculationStampingShippingLine: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingShippingLine>;
|
|
@@ -26570,6 +26851,8 @@ export const classificationDetails: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
26570
26851
|
export const classificationError: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationError>;
|
|
26571
26852
|
export const classificationFormWrapper: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationFormWrapper>;
|
|
26572
26853
|
export const classificationItem: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationItem>;
|
|
26854
|
+
export const classificationMerchant: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationMerchant>;
|
|
26855
|
+
export const classificationMerchantEnvelope: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationMerchantEnvelope>;
|
|
26573
26856
|
export const classificationProduct: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProduct>;
|
|
26574
26857
|
export const classificationProductHarmonization: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductHarmonization>;
|
|
26575
26858
|
export const classificationProductId: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductId>;
|
|
@@ -26682,6 +26965,7 @@ export const discountRequestOrderForm: PropTypes.Requireable<io.flow.internal.v0
|
|
|
26682
26965
|
export const dispute: PropTypes.Requireable<io.flow.internal.v0.models.Dispute>;
|
|
26683
26966
|
export const disputeAuthorizationReference: PropTypes.Requireable<io.flow.internal.v0.models.DisputeAuthorizationReference>;
|
|
26684
26967
|
export const disputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDeleted>;
|
|
26968
|
+
export const disputeDetail: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDetail>;
|
|
26685
26969
|
export const disputeDetailsAdyen: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDetailsAdyen>;
|
|
26686
26970
|
export const disputeDetailsPaypal: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDetailsPaypal>;
|
|
26687
26971
|
export const disputeDetailsStripe: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDetailsStripe>;
|
|
@@ -26691,6 +26975,7 @@ export const disputeImportErrors: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26691
26975
|
export const disputeImportForm: PropTypes.Requireable<io.flow.internal.v0.models.DisputeImportForm>;
|
|
26692
26976
|
export const disputeOrderReference: PropTypes.Requireable<io.flow.internal.v0.models.DisputeOrderReference>;
|
|
26693
26977
|
export const disputeOrganizationReference: PropTypes.Requireable<io.flow.internal.v0.models.DisputeOrganizationReference>;
|
|
26978
|
+
export const disputeOverrideUpdateForm: PropTypes.Requireable<io.flow.internal.v0.models.DisputeOverrideUpdateForm>;
|
|
26694
26979
|
export const disputeStatusForm: PropTypes.Requireable<io.flow.internal.v0.models.DisputeStatusForm>;
|
|
26695
26980
|
export const disputeTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DisputeTransaction>;
|
|
26696
26981
|
export const disputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DisputeUpserted>;
|
|
@@ -26716,6 +27001,10 @@ export const dutySimpleExpression: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
26716
27001
|
export const dutyTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransaction>;
|
|
26717
27002
|
export const dutyTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionDeleted>;
|
|
26718
27003
|
export const dutyTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionUpserted>;
|
|
27004
|
+
export const eldarItem: PropTypes.Requireable<io.flow.internal.v0.models.EldarItem>;
|
|
27005
|
+
export const eldarItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.EldarItemDeleted>;
|
|
27006
|
+
export const eldarItemForm: PropTypes.Requireable<io.flow.internal.v0.models.EldarItemForm>;
|
|
27007
|
+
export const eldarItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.EldarItemUpserted>;
|
|
26719
27008
|
export const emailForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailForm>;
|
|
26720
27009
|
export const emailModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailModificationForm>;
|
|
26721
27010
|
export const emptyClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmptyClassificationForm>;
|
|
@@ -26843,6 +27132,9 @@ export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26843
27132
|
export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
|
|
26844
27133
|
export const fulfillmentCarrier: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCarrier>;
|
|
26845
27134
|
export const fulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentDeleted>;
|
|
27135
|
+
export const fulfillmentFallbacks: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacks>;
|
|
27136
|
+
export const fulfillmentFallbacksDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacksDeleted>;
|
|
27137
|
+
export const fulfillmentFallbacksUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacksUpserted>;
|
|
26846
27138
|
export const fulfillmentInternalExperienceReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentInternalExperienceReference>;
|
|
26847
27139
|
export const fulfillmentOrigin: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentOrigin>;
|
|
26848
27140
|
export const fulfillmentProofExternalFulfillmentProofReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference>;
|
|
@@ -27000,6 +27292,7 @@ export const labelMetadata: PropTypes.Requireable<io.flow.internal.v0.models.Lab
|
|
|
27000
27292
|
export const labelRequestError: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestError>;
|
|
27001
27293
|
export const labelRequestErrorDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorDeleted>;
|
|
27002
27294
|
export const labelRequestErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorUpserted>;
|
|
27295
|
+
export const labelRequestResult: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestResult>;
|
|
27003
27296
|
export const labelSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelSummary>;
|
|
27004
27297
|
export const labelSurchargeForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeForm>;
|
|
27005
27298
|
export const labelSurchargeSingleForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeSingleForm>;
|
|
@@ -27142,6 +27435,7 @@ export const miljenkoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27142
27435
|
export const miljenkoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemForm>;
|
|
27143
27436
|
export const miljenkoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemUpserted>;
|
|
27144
27437
|
export const moneyPercentage: PropTypes.Requireable<io.flow.internal.v0.models.MoneyPercentage>;
|
|
27438
|
+
export const negativeDebitMetrics: PropTypes.Requireable<io.flow.internal.v0.models.NegativeDebitMetrics>;
|
|
27145
27439
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
27146
27440
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
27147
27441
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
@@ -27777,6 +28071,9 @@ export const timeWithTimezone: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
27777
28071
|
export const trackingAssuranceAnalysis: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysis>;
|
|
27778
28072
|
export const trackingAssuranceAnalysisDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted>;
|
|
27779
28073
|
export const trackingAssuranceAnalysisUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted>;
|
|
28074
|
+
export const trackingAssuranceJob: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceJob>;
|
|
28075
|
+
export const trackingAssuranceJobDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceJobDeleted>;
|
|
28076
|
+
export const trackingAssuranceJobUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceJobUpserted>;
|
|
27780
28077
|
export const trackingDebugForceTransitForm: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugForceTransitForm>;
|
|
27781
28078
|
export const trackingDebugLabel: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabel>;
|
|
27782
28079
|
export const trackingDebugLabelEvent: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDebugLabelEvent>;
|
|
@@ -27784,6 +28081,9 @@ export const trackingDebugLabelLocation: PropTypes.Requireable<io.flow.internal.
|
|
|
27784
28081
|
export const trackingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDeleted>;
|
|
27785
28082
|
export const trackingEvent: PropTypes.Requireable<io.flow.internal.v0.models.TrackingEvent>;
|
|
27786
28083
|
export const trackingLabelDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelDeleted>;
|
|
28084
|
+
export const trackingLabelDimensions: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelDimensions>;
|
|
28085
|
+
export const trackingLabelDimensionsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelDimensionsDeleted>;
|
|
28086
|
+
export const trackingLabelDimensionsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelDimensionsUpserted>;
|
|
27787
28087
|
export const trackingLabelEventDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelEventDeletedV2>;
|
|
27788
28088
|
export const trackingLabelEventUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelEventUpsertedV2>;
|
|
27789
28089
|
export const trackingLabelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelUpserted>;
|