@flowio/types 11.24.98 → 11.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/dist/api-internal.d.ts +35 -47
- package/dist/api.d.ts +18 -5
- package/package.json +2 -2
- package/src/api-internal.ts +65 -55
- package/src/api.ts +24 -3
package/dist/api-internal.d.ts
CHANGED
|
@@ -209,7 +209,7 @@ declare namespace io.flow.payment.gateway.v0.enums {
|
|
|
209
209
|
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';
|
|
210
210
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
211
211
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
212
|
-
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact' | 'twint' | 'przelewy24';
|
|
212
|
+
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact' | 'twint' | 'przelewy24' | 'mobilepay';
|
|
213
213
|
}
|
|
214
214
|
declare namespace io.flow.payment.gateway.v0.models {
|
|
215
215
|
interface ActionDisplayInlineWindow {
|
|
@@ -534,6 +534,10 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
534
534
|
readonly type: 'init_klarna';
|
|
535
535
|
readonly reference?: string;
|
|
536
536
|
}
|
|
537
|
+
interface PaymentMethodDataInitMobilepay {
|
|
538
|
+
readonly type: 'init_mobilepay';
|
|
539
|
+
readonly reference?: string;
|
|
540
|
+
}
|
|
537
541
|
interface PaymentMethodDataInitPaypal {
|
|
538
542
|
readonly type: 'init_paypal';
|
|
539
543
|
readonly reference?: string;
|
|
@@ -610,6 +614,10 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
610
614
|
readonly type: 'klarna';
|
|
611
615
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
612
616
|
}
|
|
617
|
+
interface PaymentMethodSummaryMobilepay {
|
|
618
|
+
readonly type: 'mobilepay';
|
|
619
|
+
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
620
|
+
}
|
|
613
621
|
interface PaymentMethodSummaryPaypal {
|
|
614
622
|
readonly type: 'paypal';
|
|
615
623
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
@@ -759,12 +767,12 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
759
767
|
type OrderInformation = io.flow.payment.gateway.v0.models.OrderInformationFlow | io.flow.payment.gateway.v0.models.OrderInformationDetails;
|
|
760
768
|
type PaymentCaptureOption = io.flow.payment.gateway.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.payment.gateway.v0.models.PaymentCaptureOptionManual;
|
|
761
769
|
type PaymentMethodCard = io.flow.payment.gateway.v0.models.PaymentMethodCardPciDetails | io.flow.payment.gateway.v0.models.PaymentMethodCardToken;
|
|
762
|
-
type PaymentMethodData = io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataInitAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort | io.flow.payment.gateway.v0.models.PaymentMethodDataInitTwint | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPrzelewy24 | io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact | io.flow.payment.gateway.v0.models.PaymentMethodDataValidateApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeCard | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.payment.gateway.v0.models.PaymentMethodDataCompleteAuthorizationCard;
|
|
770
|
+
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;
|
|
763
771
|
type PaymentMethodDataAuthorizeApplepayResult = io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
|
|
764
772
|
type PaymentMethodDataAuthorizeKlarnaResult = io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
|
|
765
773
|
type PaymentMethodDataOptionLogo = io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg;
|
|
766
774
|
type PaymentMethodStoredDetailsCard = io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardSubsequent;
|
|
767
|
-
type PaymentMethodSummary = io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryTwint | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPrzelewy24 | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact;
|
|
775
|
+
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;
|
|
768
776
|
type PaymentRequestCancellationReason = io.flow.payment.gateway.v0.models.PaymentRequestCancellationReasonOrderMissing;
|
|
769
777
|
type SdkAdyenV3AuthenticationToken = io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken;
|
|
770
778
|
}
|
|
@@ -3353,6 +3361,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3353
3361
|
readonly items?: io.flow.common.v0.models.LineItemForm[];
|
|
3354
3362
|
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
3355
3363
|
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3364
|
+
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
3356
3365
|
}
|
|
3357
3366
|
interface CrossdockShipment {
|
|
3358
3367
|
readonly partner_id: string;
|
|
@@ -3442,6 +3451,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3442
3451
|
readonly additional_services_requested?: io.flow.label.v0.models.AdditionalServicesRequested[];
|
|
3443
3452
|
readonly created_at?: string;
|
|
3444
3453
|
readonly updated_at?: string;
|
|
3454
|
+
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
3445
3455
|
}
|
|
3446
3456
|
interface ShippingLabelDocument {
|
|
3447
3457
|
readonly zpl?: string;
|
|
@@ -3530,6 +3540,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3530
3540
|
readonly order_number: string;
|
|
3531
3541
|
readonly items: io.flow.common.v0.models.LineItemForm[];
|
|
3532
3542
|
readonly center_key?: string;
|
|
3543
|
+
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
3533
3544
|
}
|
|
3534
3545
|
interface SummaryShippingNotificationForm {
|
|
3535
3546
|
readonly discriminator: 'summary_shipping_notification_form';
|
|
@@ -4301,6 +4312,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
4301
4312
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
4302
4313
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
4303
4314
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
4315
|
+
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog';
|
|
4304
4316
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
4305
4317
|
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';
|
|
4306
4318
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -4499,10 +4511,10 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
4499
4511
|
type Channel = 'web';
|
|
4500
4512
|
type Contract = 'RECURRING';
|
|
4501
4513
|
type DeviceChannel = 'app' | 'browser';
|
|
4502
|
-
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';
|
|
4514
|
+
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';
|
|
4503
4515
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
4504
4516
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
4505
|
-
type PaymentMethod = 'ach' | 'alipay' | 'alipay_hk' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'bcmc_mobile' | 'blik' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'gcash' | 'giropay' | 'ideal' | 'interac' | 'jcb' | 'kakaopay' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mbway' | 'mc' | 'mobilepay' | 'molpay_points' | 'multibanco' | 'onlineBanking_PL' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'visa' | 'wechatpay' | 'unknowncard';
|
|
4517
|
+
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';
|
|
4506
4518
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
4507
4519
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
4508
4520
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -4517,6 +4529,10 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4517
4529
|
readonly stateOrProvince?: string;
|
|
4518
4530
|
readonly country?: string;
|
|
4519
4531
|
}
|
|
4532
|
+
interface AdyenDisputeEvent {
|
|
4533
|
+
readonly live: string;
|
|
4534
|
+
readonly notificationItems: io.flow.adyen.v0.models.OuterNotificationRequestItem[];
|
|
4535
|
+
}
|
|
4520
4536
|
interface Amount {
|
|
4521
4537
|
readonly value: number;
|
|
4522
4538
|
readonly currency: string;
|
|
@@ -4634,6 +4650,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4634
4650
|
readonly chargebackReasonCode: string;
|
|
4635
4651
|
readonly modificationMerchantReferences: string;
|
|
4636
4652
|
readonly chargebackSchemeCode: string;
|
|
4653
|
+
readonly defensePeriodEndsAt?: string;
|
|
4637
4654
|
}
|
|
4638
4655
|
interface Error {
|
|
4639
4656
|
readonly status: number;
|
|
@@ -9072,7 +9089,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
9072
9089
|
}
|
|
9073
9090
|
declare namespace io.flow.trueup.v0.enums {
|
|
9074
9091
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
9075
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup';
|
|
9092
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
|
|
9076
9093
|
}
|
|
9077
9094
|
declare namespace io.flow.trueup.v0.models {
|
|
9078
9095
|
interface DeadWeight {
|
|
@@ -11413,7 +11430,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
11413
11430
|
}
|
|
11414
11431
|
declare namespace io.flow.merchant.of.record.v0.enums {
|
|
11415
11432
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
11416
|
-
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can';
|
|
11433
|
+
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
|
|
11417
11434
|
}
|
|
11418
11435
|
declare namespace io.flow.checkout.v0.models {
|
|
11419
11436
|
interface CheckoutToken {
|
|
@@ -12008,7 +12025,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12008
12025
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
12009
12026
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12010
12027
|
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';
|
|
12011
|
-
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';
|
|
12028
|
+
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' | 'negative_balance_debited_total' | 'negative_balance_failed_to_be_debited_total' | 'number_of_orgs_eligible_to_negative_balance_debit' | 'number_of_orgs_with_failed_negative_debit' | 'negative_debit_success_rate';
|
|
12012
12029
|
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';
|
|
12013
12030
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
12014
12031
|
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';
|
|
@@ -12075,7 +12092,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12075
12092
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
12076
12093
|
type EmptyAttribute = 'irrelevant';
|
|
12077
12094
|
type ErpFileType = 'vendor';
|
|
12078
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12095
|
+
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';
|
|
12079
12096
|
type ExperienceImportType = 'experience_with_settings';
|
|
12080
12097
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12081
12098
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12093,6 +12110,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12093
12110
|
type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
|
|
12094
12111
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
12095
12112
|
type GoogleAnalyticsPlugin = 'ec';
|
|
12113
|
+
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog';
|
|
12096
12114
|
type HarinathItemType = 'digital' | 'physical';
|
|
12097
12115
|
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
12098
12116
|
type HttpMethod = 'get' | 'post';
|
|
@@ -12147,7 +12165,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12147
12165
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
12148
12166
|
type OrderValidationStatus = 'success' | 'failed' | 'label_created' | 'unresolvable' | 'cancelled' | 'breached';
|
|
12149
12167
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
12150
|
-
type OrganizationMetricType = '
|
|
12168
|
+
type OrganizationMetricType = 'organization_restriction_status';
|
|
12151
12169
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
12152
12170
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
12153
12171
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason' | 'additional_rejection_info';
|
|
@@ -13291,12 +13309,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13291
13309
|
readonly discriminator: 'bulk';
|
|
13292
13310
|
readonly actions: io.flow.internal.v0.models.SingleClassificationAction[];
|
|
13293
13311
|
}
|
|
13294
|
-
interface ByRuleSnapshot {
|
|
13295
|
-
readonly id: string;
|
|
13296
|
-
readonly name: string;
|
|
13297
|
-
readonly open_decision_count: number;
|
|
13298
|
-
readonly restricted_product_count: number;
|
|
13299
|
-
}
|
|
13300
13312
|
interface CalculatedTaxAmount {
|
|
13301
13313
|
readonly discriminator: 'calculated_tax_amount';
|
|
13302
13314
|
readonly amount: number;
|
|
@@ -17138,6 +17150,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17138
17150
|
readonly carrier_id?: string;
|
|
17139
17151
|
readonly service_id?: string;
|
|
17140
17152
|
readonly errors: string[];
|
|
17153
|
+
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
17141
17154
|
}
|
|
17142
17155
|
interface LabelRequestErrorDeleted {
|
|
17143
17156
|
readonly discriminator: 'label_request_error_deleted';
|
|
@@ -17186,6 +17199,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17186
17199
|
readonly direct_delivery?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
17187
17200
|
readonly saturday_stop?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
17188
17201
|
readonly residential_extended_area_pickup?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
17202
|
+
readonly package_level_detail?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
17189
17203
|
}
|
|
17190
17204
|
interface LabelSurchargeSingleForm {
|
|
17191
17205
|
readonly amount: number;
|
|
@@ -18538,6 +18552,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18538
18552
|
readonly created_at: string;
|
|
18539
18553
|
readonly cancelled_at?: string;
|
|
18540
18554
|
readonly resolved_at?: string;
|
|
18555
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
18541
18556
|
}
|
|
18542
18557
|
interface OrderValidationFailureUpserted {
|
|
18543
18558
|
readonly discriminator: 'order_validation_failure_upserted';
|
|
@@ -18804,31 +18819,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18804
18819
|
readonly screening_first_viewed_at?: string;
|
|
18805
18820
|
readonly onboarding_first_viewed_at?: string;
|
|
18806
18821
|
}
|
|
18807
|
-
interface OrganizationRestrictionSnapshot {
|
|
18808
|
-
readonly id: string;
|
|
18809
|
-
readonly organization_id: string;
|
|
18810
|
-
readonly organization_channel_id: string;
|
|
18811
|
-
readonly organization_status: string;
|
|
18812
|
-
readonly product_count: number;
|
|
18813
|
-
readonly open_decision_count: number;
|
|
18814
|
-
readonly restricted_product_count: number;
|
|
18815
|
-
readonly count_by_rule: io.flow.internal.v0.models.ByRuleSnapshot[];
|
|
18816
|
-
readonly earliest_pending_decision_date: string;
|
|
18817
|
-
readonly earliest_product_receipt_date: string;
|
|
18818
|
-
readonly date: string;
|
|
18819
|
-
}
|
|
18820
|
-
interface OrganizationRestrictionSnapshotDeleted {
|
|
18821
|
-
readonly discriminator: 'organization_restriction_snapshot_deleted';
|
|
18822
|
-
readonly event_id: string;
|
|
18823
|
-
readonly timestamp: string;
|
|
18824
|
-
readonly organization_restriction_snapshot: io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
18825
|
-
}
|
|
18826
|
-
interface OrganizationRestrictionSnapshotUpserted {
|
|
18827
|
-
readonly discriminator: 'organization_restriction_snapshot_upserted';
|
|
18828
|
-
readonly event_id: string;
|
|
18829
|
-
readonly timestamp: string;
|
|
18830
|
-
readonly organization_restriction_snapshot: io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
18831
|
-
}
|
|
18832
18822
|
interface OrganizationRestrictionStatus {
|
|
18833
18823
|
readonly id: string;
|
|
18834
18824
|
readonly organization_id: string;
|
|
@@ -19488,6 +19478,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19488
19478
|
}
|
|
19489
19479
|
interface ProcessedPaymentSummary {
|
|
19490
19480
|
readonly type: io.flow.reference.v0.enums.PaymentMethodCapability;
|
|
19481
|
+
readonly amount: number;
|
|
19491
19482
|
readonly currency: io.flow.reference.v0.models.Currency;
|
|
19492
19483
|
readonly method: io.flow.reference.v0.models.PaymentMethod;
|
|
19493
19484
|
readonly card_issuer_country?: io.flow.reference.v0.models.Country;
|
|
@@ -20269,6 +20260,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20269
20260
|
readonly lvg?: boolean;
|
|
20270
20261
|
readonly tax_inclusive?: boolean;
|
|
20271
20262
|
readonly duty_inclusive?: boolean;
|
|
20263
|
+
readonly manual_payment?: boolean;
|
|
20272
20264
|
}
|
|
20273
20265
|
interface ReportingFx {
|
|
20274
20266
|
readonly shipping: io.flow.internal.v0.models.ReportingUsd;
|
|
@@ -20481,7 +20473,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20481
20473
|
readonly priority_score: number;
|
|
20482
20474
|
readonly date: string;
|
|
20483
20475
|
readonly statuses: io.flow.internal.v0.models.RestrictionStatusMetadata[];
|
|
20484
|
-
readonly rules: io.flow.internal.v0.models.RestrictionRuleMetadata[];
|
|
20485
20476
|
readonly count: number;
|
|
20486
20477
|
}
|
|
20487
20478
|
interface RestrictionOrganizationStatus {
|
|
@@ -22576,7 +22567,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22576
22567
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22577
22568
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
22578
22569
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22579
|
-
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22570
|
+
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;
|
|
22580
22571
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
22581
22572
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22582
22573
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22826,7 +22817,6 @@ export declare type BrowserBundlePaymentMethod = io.flow.internal.v0.models.Brow
|
|
|
22826
22817
|
export declare type BrowserBundlePaymentMethodForm = io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
|
|
22827
22818
|
export declare type BrowserBundlePaymentMethods = io.flow.internal.v0.models.BrowserBundlePaymentMethods;
|
|
22828
22819
|
export declare type BulkClassificationAction = io.flow.internal.v0.models.BulkClassificationAction;
|
|
22829
|
-
export declare type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
22830
22820
|
export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
22831
22821
|
export declare type CalculationStampingLineItem = io.flow.internal.v0.models.CalculationStampingLineItem;
|
|
22832
22822
|
export declare type CalculationStampingShippingLine = io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
@@ -23394,6 +23384,7 @@ export declare type GoogleLinker = io.flow.internal.v0.models.GoogleLinker;
|
|
|
23394
23384
|
export declare type GoogleShoppingAccountParameters = io.flow.internal.v0.models.GoogleShoppingAccountParameters;
|
|
23395
23385
|
export declare type GoogleShoppingSetting = io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
23396
23386
|
export declare type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
23387
|
+
export declare type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
23397
23388
|
export declare type HarinathItem = io.flow.internal.v0.models.HarinathItem;
|
|
23398
23389
|
export declare type HarinathItemDeleted = io.flow.internal.v0.models.HarinathItemDeleted;
|
|
23399
23390
|
export declare type HarinathItemForm = io.flow.internal.v0.models.HarinathItemForm;
|
|
@@ -23842,9 +23833,6 @@ export declare type OrganizationRestrictionReviewType = io.flow.internal.v0.enum
|
|
|
23842
23833
|
export declare type OrganizationRestrictionRiskLevel = io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
23843
23834
|
export declare type OrganizationRestrictionScreeningDecisionForm = io.flow.internal.v0.models.OrganizationRestrictionScreeningDecisionForm;
|
|
23844
23835
|
export declare type OrganizationRestrictionScreeningStatus = io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
23845
|
-
export declare type OrganizationRestrictionSnapshot = io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
23846
|
-
export declare type OrganizationRestrictionSnapshotDeleted = io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted;
|
|
23847
|
-
export declare type OrganizationRestrictionSnapshotUpserted = io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted;
|
|
23848
23836
|
export declare type OrganizationRestrictionStatus = io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
23849
23837
|
export declare type OrganizationRestrictionStatusDeleted = io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted;
|
|
23850
23838
|
export declare type OrganizationRestrictionStatusNote = io.flow.internal.v0.models.OrganizationRestrictionStatusNote;
|
package/dist/api.d.ts
CHANGED
|
@@ -2229,7 +2229,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2229
2229
|
type ExporterOfRecord = 'flow' | 'organization';
|
|
2230
2230
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
|
|
2231
2231
|
type FlowBehavior = 'view_consumer_data';
|
|
2232
|
-
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can';
|
|
2232
|
+
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
|
|
2233
2233
|
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
2234
2234
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
2235
2235
|
type FraudLiability = 'flow' | 'organization';
|
|
@@ -2300,7 +2300,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2300
2300
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
2301
2301
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
2302
2302
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
2303
|
-
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact' | 'twint' | 'przelewy24';
|
|
2303
|
+
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact' | 'twint' | 'przelewy24' | 'mobilepay';
|
|
2304
2304
|
type PayoutAttachmentType = 'transactions';
|
|
2305
2305
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
2306
2306
|
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';
|
|
@@ -2367,7 +2367,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2367
2367
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
2368
2368
|
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';
|
|
2369
2369
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
2370
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup';
|
|
2370
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
|
|
2371
2371
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
2372
2372
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
2373
2373
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
@@ -3157,6 +3157,7 @@ declare namespace io.flow.v0.models {
|
|
|
3157
3157
|
readonly items?: io.flow.v0.models.LineItemForm[];
|
|
3158
3158
|
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
3159
3159
|
readonly origin?: io.flow.v0.models.ShippingAddress;
|
|
3160
|
+
readonly direction?: io.flow.v0.enums.Direction;
|
|
3160
3161
|
}
|
|
3161
3162
|
interface BrowseOptinResponses {
|
|
3162
3163
|
readonly id: string;
|
|
@@ -8024,6 +8025,10 @@ declare namespace io.flow.v0.models {
|
|
|
8024
8025
|
readonly type: 'init_klarna';
|
|
8025
8026
|
readonly reference?: string;
|
|
8026
8027
|
}
|
|
8028
|
+
interface PaymentMethodDataInitMobilepay {
|
|
8029
|
+
readonly type: 'init_mobilepay';
|
|
8030
|
+
readonly reference?: string;
|
|
8031
|
+
}
|
|
8027
8032
|
interface PaymentMethodDataInitPaypal {
|
|
8028
8033
|
readonly type: 'init_paypal';
|
|
8029
8034
|
readonly reference?: string;
|
|
@@ -8128,6 +8133,10 @@ declare namespace io.flow.v0.models {
|
|
|
8128
8133
|
readonly type: 'klarna';
|
|
8129
8134
|
readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
|
|
8130
8135
|
}
|
|
8136
|
+
interface PaymentMethodSummaryMobilepay {
|
|
8137
|
+
readonly type: 'mobilepay';
|
|
8138
|
+
readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
|
|
8139
|
+
}
|
|
8131
8140
|
interface PaymentMethodSummaryPaypal {
|
|
8132
8141
|
readonly type: 'paypal';
|
|
8133
8142
|
readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
|
|
@@ -9837,6 +9846,7 @@ declare namespace io.flow.v0.models {
|
|
|
9837
9846
|
readonly additional_services_requested?: io.flow.v0.models.AdditionalServicesRequested[];
|
|
9838
9847
|
readonly created_at?: string;
|
|
9839
9848
|
readonly updated_at?: string;
|
|
9849
|
+
readonly direction?: io.flow.v0.enums.Direction;
|
|
9840
9850
|
}
|
|
9841
9851
|
interface ShippingLabelDocument {
|
|
9842
9852
|
readonly zpl?: string;
|
|
@@ -10432,6 +10442,7 @@ declare namespace io.flow.v0.models {
|
|
|
10432
10442
|
readonly order_number: string;
|
|
10433
10443
|
readonly items: io.flow.v0.models.LineItemForm[];
|
|
10434
10444
|
readonly center_key?: string;
|
|
10445
|
+
readonly direction?: io.flow.v0.enums.Direction;
|
|
10435
10446
|
}
|
|
10436
10447
|
interface SummaryShippingNotificationForm {
|
|
10437
10448
|
readonly discriminator: 'summary_shipping_notification_form';
|
|
@@ -11345,12 +11356,12 @@ declare namespace io.flow.v0.unions {
|
|
|
11345
11356
|
type PaymentCaptureOption = io.flow.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.v0.models.PaymentCaptureOptionManual;
|
|
11346
11357
|
type PaymentForm = io.flow.v0.models.MerchantOfRecordPaymentForm;
|
|
11347
11358
|
type PaymentMethodCard = io.flow.v0.models.PaymentMethodCardPciDetails | io.flow.v0.models.PaymentMethodCardToken;
|
|
11348
|
-
type PaymentMethodData = io.flow.v0.models.PaymentMethodDataInitKlarna | io.flow.v0.models.PaymentMethodDataInitAfterpay | io.flow.v0.models.PaymentMethodDataInitApplepay | io.flow.v0.models.PaymentMethodDataInitGooglepay | io.flow.v0.models.PaymentMethodDataInitPaypal | io.flow.v0.models.PaymentMethodDataInitIdeal | io.flow.v0.models.PaymentMethodDataInitSofort | io.flow.v0.models.PaymentMethodDataInitTwint | io.flow.v0.models.PaymentMethodDataInitPrzelewy24 | io.flow.v0.models.PaymentMethodDataInitBancontact | io.flow.v0.models.PaymentMethodDataValidateApplepay | io.flow.v0.models.PaymentMethodDataAuthorizeCard | io.flow.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.v0.models.PaymentMethodDataCompleteAuthorizationCard;
|
|
11359
|
+
type PaymentMethodData = io.flow.v0.models.PaymentMethodDataInitKlarna | io.flow.v0.models.PaymentMethodDataInitAfterpay | io.flow.v0.models.PaymentMethodDataInitApplepay | io.flow.v0.models.PaymentMethodDataInitGooglepay | io.flow.v0.models.PaymentMethodDataInitPaypal | io.flow.v0.models.PaymentMethodDataInitIdeal | io.flow.v0.models.PaymentMethodDataInitSofort | io.flow.v0.models.PaymentMethodDataInitTwint | io.flow.v0.models.PaymentMethodDataInitPrzelewy24 | io.flow.v0.models.PaymentMethodDataInitMobilepay | io.flow.v0.models.PaymentMethodDataInitBancontact | io.flow.v0.models.PaymentMethodDataValidateApplepay | io.flow.v0.models.PaymentMethodDataAuthorizeCard | io.flow.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.v0.models.PaymentMethodDataCompleteAuthorizationCard;
|
|
11349
11360
|
type PaymentMethodDataAuthorizeApplepayResult = io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
|
|
11350
11361
|
type PaymentMethodDataAuthorizeKlarnaResult = io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
|
|
11351
11362
|
type PaymentMethodDataOptionLogo = io.flow.v0.models.PaymentMethodDataOptionLogoSvg;
|
|
11352
11363
|
type PaymentMethodStoredDetailsCard = io.flow.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.v0.models.PaymentMethodStoredDetailsCardSubsequent;
|
|
11353
|
-
type PaymentMethodSummary = io.flow.v0.models.PaymentMethodSummaryCard | io.flow.v0.models.PaymentMethodSummaryKlarna | io.flow.v0.models.PaymentMethodSummaryAfterpay | io.flow.v0.models.PaymentMethodSummaryApplepay | io.flow.v0.models.PaymentMethodSummaryGooglepay | io.flow.v0.models.PaymentMethodSummaryPaypal | io.flow.v0.models.PaymentMethodSummaryIdeal | io.flow.v0.models.PaymentMethodSummaryTwint | io.flow.v0.models.PaymentMethodSummaryPrzelewy24 | io.flow.v0.models.PaymentMethodSummarySofort | io.flow.v0.models.PaymentMethodSummaryBancontact;
|
|
11364
|
+
type PaymentMethodSummary = io.flow.v0.models.PaymentMethodSummaryCard | io.flow.v0.models.PaymentMethodSummaryKlarna | io.flow.v0.models.PaymentMethodSummaryAfterpay | io.flow.v0.models.PaymentMethodSummaryApplepay | io.flow.v0.models.PaymentMethodSummaryGooglepay | io.flow.v0.models.PaymentMethodSummaryPaypal | io.flow.v0.models.PaymentMethodSummaryIdeal | io.flow.v0.models.PaymentMethodSummaryTwint | io.flow.v0.models.PaymentMethodSummaryPrzelewy24 | io.flow.v0.models.PaymentMethodSummaryMobilepay | io.flow.v0.models.PaymentMethodSummarySofort | io.flow.v0.models.PaymentMethodSummaryBancontact;
|
|
11354
11365
|
type PaymentMethodTag = {
|
|
11355
11366
|
discriminator: 'organization_payment_method_tag';
|
|
11356
11367
|
value: io.flow.v0.enums.OrganizationPaymentMethodTag;
|
|
@@ -12514,6 +12525,7 @@ export declare type PaymentMethodDataInitBancontact = io.flow.v0.models.PaymentM
|
|
|
12514
12525
|
export declare type PaymentMethodDataInitGooglepay = io.flow.v0.models.PaymentMethodDataInitGooglepay;
|
|
12515
12526
|
export declare type PaymentMethodDataInitIdeal = io.flow.v0.models.PaymentMethodDataInitIdeal;
|
|
12516
12527
|
export declare type PaymentMethodDataInitKlarna = io.flow.v0.models.PaymentMethodDataInitKlarna;
|
|
12528
|
+
export declare type PaymentMethodDataInitMobilepay = io.flow.v0.models.PaymentMethodDataInitMobilepay;
|
|
12517
12529
|
export declare type PaymentMethodDataInitPaypal = io.flow.v0.models.PaymentMethodDataInitPaypal;
|
|
12518
12530
|
export declare type PaymentMethodDataInitPrzelewy24 = io.flow.v0.models.PaymentMethodDataInitPrzelewy24;
|
|
12519
12531
|
export declare type PaymentMethodDataInitSofort = io.flow.v0.models.PaymentMethodDataInitSofort;
|
|
@@ -12541,6 +12553,7 @@ export declare type PaymentMethodSummaryCard = io.flow.v0.models.PaymentMethodSu
|
|
|
12541
12553
|
export declare type PaymentMethodSummaryGooglepay = io.flow.v0.models.PaymentMethodSummaryGooglepay;
|
|
12542
12554
|
export declare type PaymentMethodSummaryIdeal = io.flow.v0.models.PaymentMethodSummaryIdeal;
|
|
12543
12555
|
export declare type PaymentMethodSummaryKlarna = io.flow.v0.models.PaymentMethodSummaryKlarna;
|
|
12556
|
+
export declare type PaymentMethodSummaryMobilepay = io.flow.v0.models.PaymentMethodSummaryMobilepay;
|
|
12544
12557
|
export declare type PaymentMethodSummaryPaypal = io.flow.v0.models.PaymentMethodSummaryPaypal;
|
|
12545
12558
|
export declare type PaymentMethodSummaryPrzelewy24 = io.flow.v0.models.PaymentMethodSummaryPrzelewy24;
|
|
12546
12559
|
export declare type PaymentMethodSummarySofort = io.flow.v0.models.PaymentMethodSummarySofort;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.101",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "e3d3fbfffe0108db636d2d051ab48c20d6726685"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -326,7 +326,8 @@ declare namespace io.flow.payment.gateway.v0.enums {
|
|
|
326
326
|
| 'afterpay'
|
|
327
327
|
| 'bancontact'
|
|
328
328
|
| 'twint'
|
|
329
|
-
| 'przelewy24'
|
|
329
|
+
| 'przelewy24'
|
|
330
|
+
| 'mobilepay';
|
|
330
331
|
}
|
|
331
332
|
|
|
332
333
|
declare namespace io.flow.payment.gateway.v0.models {
|
|
@@ -712,6 +713,11 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
712
713
|
readonly reference?: string;
|
|
713
714
|
}
|
|
714
715
|
|
|
716
|
+
interface PaymentMethodDataInitMobilepay {
|
|
717
|
+
readonly type: 'init_mobilepay';
|
|
718
|
+
readonly reference?: string;
|
|
719
|
+
}
|
|
720
|
+
|
|
715
721
|
interface PaymentMethodDataInitPaypal {
|
|
716
722
|
readonly type: 'init_paypal';
|
|
717
723
|
readonly reference?: string;
|
|
@@ -805,6 +811,11 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
805
811
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
806
812
|
}
|
|
807
813
|
|
|
814
|
+
interface PaymentMethodSummaryMobilepay {
|
|
815
|
+
readonly type: 'mobilepay';
|
|
816
|
+
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
817
|
+
}
|
|
818
|
+
|
|
808
819
|
interface PaymentMethodSummaryPaypal {
|
|
809
820
|
readonly type: 'paypal';
|
|
810
821
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
@@ -1008,6 +1019,7 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
1008
1019
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort
|
|
1009
1020
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataInitTwint
|
|
1010
1021
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataInitPrzelewy24
|
|
1022
|
+
| io.flow.payment.gateway.v0.models.PaymentMethodDataInitMobilepay
|
|
1011
1023
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact
|
|
1012
1024
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataValidateApplepay
|
|
1013
1025
|
| io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeCard
|
|
@@ -1038,6 +1050,7 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
1038
1050
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal
|
|
1039
1051
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryTwint
|
|
1040
1052
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryPrzelewy24
|
|
1053
|
+
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryMobilepay
|
|
1041
1054
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort
|
|
1042
1055
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact;
|
|
1043
1056
|
type PaymentRequestCancellationReason =
|
|
@@ -4580,6 +4593,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4580
4593
|
readonly items?: io.flow.common.v0.models.LineItemForm[];
|
|
4581
4594
|
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
4582
4595
|
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
4596
|
+
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
4583
4597
|
}
|
|
4584
4598
|
|
|
4585
4599
|
interface CrossdockShipment {
|
|
@@ -4678,6 +4692,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4678
4692
|
readonly additional_services_requested?: io.flow.label.v0.models.AdditionalServicesRequested[];
|
|
4679
4693
|
readonly created_at?: string;
|
|
4680
4694
|
readonly updated_at?: string;
|
|
4695
|
+
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
4681
4696
|
}
|
|
4682
4697
|
|
|
4683
4698
|
interface ShippingLabelDocument {
|
|
@@ -4778,6 +4793,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4778
4793
|
readonly order_number: string;
|
|
4779
4794
|
readonly items: io.flow.common.v0.models.LineItemForm[];
|
|
4780
4795
|
readonly center_key?: string;
|
|
4796
|
+
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
4781
4797
|
}
|
|
4782
4798
|
|
|
4783
4799
|
interface SummaryShippingNotificationForm {
|
|
@@ -6029,6 +6045,16 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
6029
6045
|
| 'fulfilled'
|
|
6030
6046
|
| 'partial'
|
|
6031
6047
|
| 'cancelled';
|
|
6048
|
+
type GraphqlServiceTypes =
|
|
6049
|
+
| 'order_update_mutation'
|
|
6050
|
+
| 'shipping_address_validation'
|
|
6051
|
+
| 'bulk_publication_status'
|
|
6052
|
+
| 'country_catalog_sync'
|
|
6053
|
+
| 'inventory_item'
|
|
6054
|
+
| 'product_bundle'
|
|
6055
|
+
| 'shopify_location'
|
|
6056
|
+
| 'shopify_order'
|
|
6057
|
+
| 'sync_product_catalog';
|
|
6032
6058
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
6033
6059
|
type ShopifyMarketsDangerousGoods =
|
|
6034
6060
|
| 'aerosols'
|
|
@@ -6335,7 +6361,10 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6335
6361
|
| 'REPORT_AVAILABLE'
|
|
6336
6362
|
| 'SECOND_CHARGEBACK'
|
|
6337
6363
|
| 'PREARBITRATION_WON'
|
|
6338
|
-
| 'PREARBITRATION_LOST'
|
|
6364
|
+
| 'PREARBITRATION_LOST'
|
|
6365
|
+
| 'INFORMATION_SUPPLIED'
|
|
6366
|
+
| 'DISPUTE_DEFENSE_PERIOD_ENDED'
|
|
6367
|
+
| 'ISSUER_RESPONSE_TIMEFRAME_EXPIRED';
|
|
6339
6368
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
6340
6369
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
6341
6370
|
type PaymentMethod =
|
|
@@ -6374,6 +6403,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6374
6403
|
| 'molpay_points'
|
|
6375
6404
|
| 'multibanco'
|
|
6376
6405
|
| 'onlineBanking_PL'
|
|
6406
|
+
| 'paywithgoogle'
|
|
6377
6407
|
| 'qiwiwallet'
|
|
6378
6408
|
| 'sepadirectdebit'
|
|
6379
6409
|
| 'trustly'
|
|
@@ -6411,6 +6441,11 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
6411
6441
|
readonly country?: string;
|
|
6412
6442
|
}
|
|
6413
6443
|
|
|
6444
|
+
interface AdyenDisputeEvent {
|
|
6445
|
+
readonly live: string;
|
|
6446
|
+
readonly notificationItems: io.flow.adyen.v0.models.OuterNotificationRequestItem[];
|
|
6447
|
+
}
|
|
6448
|
+
|
|
6414
6449
|
interface Amount {
|
|
6415
6450
|
readonly value: number;
|
|
6416
6451
|
readonly currency: string;
|
|
@@ -6543,6 +6578,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
6543
6578
|
readonly chargebackReasonCode: string;
|
|
6544
6579
|
readonly modificationMerchantReferences: string;
|
|
6545
6580
|
readonly chargebackSchemeCode: string;
|
|
6581
|
+
readonly defensePeriodEndsAt?: string;
|
|
6546
6582
|
}
|
|
6547
6583
|
|
|
6548
6584
|
interface Error {
|
|
@@ -12242,7 +12278,8 @@ declare namespace io.flow.trueup.v0.enums {
|
|
|
12242
12278
|
| 'signature_required'
|
|
12243
12279
|
| 'direct_delivery'
|
|
12244
12280
|
| 'saturday_stop'
|
|
12245
|
-
| 'residential_extended_area_pickup'
|
|
12281
|
+
| 'residential_extended_area_pickup'
|
|
12282
|
+
| 'package_level_detail';
|
|
12246
12283
|
}
|
|
12247
12284
|
|
|
12248
12285
|
declare namespace io.flow.trueup.v0.models {
|
|
@@ -15246,7 +15283,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
15246
15283
|
|
|
15247
15284
|
declare namespace io.flow.merchant.of.record.v0.enums {
|
|
15248
15285
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
15249
|
-
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can';
|
|
15286
|
+
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
|
|
15250
15287
|
}
|
|
15251
15288
|
|
|
15252
15289
|
declare namespace io.flow.checkout.v0.models {
|
|
@@ -16149,7 +16186,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16149
16186
|
| 'accounts_with_final_statements_pending_transaction_count'
|
|
16150
16187
|
| 'accounts_with_final_statements_pending_transaction_total'
|
|
16151
16188
|
| 'edited_order_tax_amount_exceeding_transaction'
|
|
16152
|
-
| 'edited_order_duty_amount_exceeding_transaction'
|
|
16189
|
+
| 'edited_order_duty_amount_exceeding_transaction'
|
|
16190
|
+
| 'negative_balance_scheduled_total'
|
|
16191
|
+
| 'negative_balance_debited_total'
|
|
16192
|
+
| 'negative_balance_failed_to_be_debited_total'
|
|
16193
|
+
| 'number_of_orgs_eligible_to_negative_balance_debit'
|
|
16194
|
+
| 'number_of_orgs_with_failed_negative_debit'
|
|
16195
|
+
| 'negative_debit_success_rate';
|
|
16153
16196
|
type BillingStatementAttachmentKey =
|
|
16154
16197
|
| 'invoice'
|
|
16155
16198
|
| 'statement'
|
|
@@ -16667,8 +16710,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16667
16710
|
| 'ratecard_rate_level_ratecard_deleted'
|
|
16668
16711
|
| 'ratecard_rate_level_organization_upserted'
|
|
16669
16712
|
| 'ratecard_rate_level_organization_deleted'
|
|
16670
|
-
| 'organization_restriction_snapshot_upserted'
|
|
16671
|
-
| 'organization_restriction_snapshot_deleted'
|
|
16672
16713
|
| 'restriction_organization_status_upserted'
|
|
16673
16714
|
| 'restriction_organization_status_deleted'
|
|
16674
16715
|
| 'organization_restriction_status_upserted'
|
|
@@ -16774,6 +16815,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16774
16815
|
| 'inventory_to_flow';
|
|
16775
16816
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
16776
16817
|
type GoogleAnalyticsPlugin = 'ec';
|
|
16818
|
+
type GraphqlServiceTypes =
|
|
16819
|
+
| 'order_update_mutation'
|
|
16820
|
+
| 'shipping_address_validation'
|
|
16821
|
+
| 'bulk_publication_status'
|
|
16822
|
+
| 'country_catalog_sync'
|
|
16823
|
+
| 'inventory_item'
|
|
16824
|
+
| 'product_bundle'
|
|
16825
|
+
| 'shopify_location'
|
|
16826
|
+
| 'shopify_order'
|
|
16827
|
+
| 'sync_product_catalog';
|
|
16777
16828
|
type HarinathItemType = 'digital' | 'physical';
|
|
16778
16829
|
type HarmonizationDecisionSource =
|
|
16779
16830
|
| 'human'
|
|
@@ -16985,9 +17036,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16985
17036
|
| 'cancelled'
|
|
16986
17037
|
| 'breached';
|
|
16987
17038
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
16988
|
-
type OrganizationMetricType =
|
|
16989
|
-
| 'organization_restriction_snapshot'
|
|
16990
|
-
| 'organization_restriction_status';
|
|
17039
|
+
type OrganizationMetricType = 'organization_restriction_status';
|
|
16991
17040
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
16992
17041
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
16993
17042
|
type OrganizationRestrictionNoteType =
|
|
@@ -18475,13 +18524,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18475
18524
|
readonly actions: io.flow.internal.v0.models.SingleClassificationAction[];
|
|
18476
18525
|
}
|
|
18477
18526
|
|
|
18478
|
-
interface ByRuleSnapshot {
|
|
18479
|
-
readonly id: string;
|
|
18480
|
-
readonly name: string;
|
|
18481
|
-
readonly open_decision_count: number;
|
|
18482
|
-
readonly restricted_product_count: number;
|
|
18483
|
-
}
|
|
18484
|
-
|
|
18485
18527
|
interface CalculatedTaxAmount {
|
|
18486
18528
|
readonly discriminator: 'calculated_tax_amount';
|
|
18487
18529
|
readonly amount: number;
|
|
@@ -22907,6 +22949,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22907
22949
|
readonly carrier_id?: string;
|
|
22908
22950
|
readonly service_id?: string;
|
|
22909
22951
|
readonly errors: string[];
|
|
22952
|
+
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
22910
22953
|
}
|
|
22911
22954
|
|
|
22912
22955
|
interface LabelRequestErrorDeleted {
|
|
@@ -22959,6 +23002,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22959
23002
|
readonly direct_delivery?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
22960
23003
|
readonly saturday_stop?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
22961
23004
|
readonly residential_extended_area_pickup?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
23005
|
+
readonly package_level_detail?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
22962
23006
|
}
|
|
22963
23007
|
|
|
22964
23008
|
interface LabelSurchargeSingleForm {
|
|
@@ -24525,6 +24569,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24525
24569
|
readonly created_at: string;
|
|
24526
24570
|
readonly cancelled_at?: string;
|
|
24527
24571
|
readonly resolved_at?: string;
|
|
24572
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
24528
24573
|
}
|
|
24529
24574
|
|
|
24530
24575
|
interface OrderValidationFailureUpserted {
|
|
@@ -24831,34 +24876,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24831
24876
|
readonly onboarding_first_viewed_at?: string;
|
|
24832
24877
|
}
|
|
24833
24878
|
|
|
24834
|
-
interface OrganizationRestrictionSnapshot {
|
|
24835
|
-
readonly id: string;
|
|
24836
|
-
readonly organization_id: string;
|
|
24837
|
-
readonly organization_channel_id: string;
|
|
24838
|
-
readonly organization_status: string;
|
|
24839
|
-
readonly product_count: number;
|
|
24840
|
-
readonly open_decision_count: number;
|
|
24841
|
-
readonly restricted_product_count: number;
|
|
24842
|
-
readonly count_by_rule: io.flow.internal.v0.models.ByRuleSnapshot[];
|
|
24843
|
-
readonly earliest_pending_decision_date: string;
|
|
24844
|
-
readonly earliest_product_receipt_date: string;
|
|
24845
|
-
readonly date: string;
|
|
24846
|
-
}
|
|
24847
|
-
|
|
24848
|
-
interface OrganizationRestrictionSnapshotDeleted {
|
|
24849
|
-
readonly discriminator: 'organization_restriction_snapshot_deleted';
|
|
24850
|
-
readonly event_id: string;
|
|
24851
|
-
readonly timestamp: string;
|
|
24852
|
-
readonly organization_restriction_snapshot: io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
24853
|
-
}
|
|
24854
|
-
|
|
24855
|
-
interface OrganizationRestrictionSnapshotUpserted {
|
|
24856
|
-
readonly discriminator: 'organization_restriction_snapshot_upserted';
|
|
24857
|
-
readonly event_id: string;
|
|
24858
|
-
readonly timestamp: string;
|
|
24859
|
-
readonly organization_restriction_snapshot: io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
24860
|
-
}
|
|
24861
|
-
|
|
24862
24879
|
interface OrganizationRestrictionStatus {
|
|
24863
24880
|
readonly id: string;
|
|
24864
24881
|
readonly organization_id: string;
|
|
@@ -25617,6 +25634,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25617
25634
|
|
|
25618
25635
|
interface ProcessedPaymentSummary {
|
|
25619
25636
|
readonly type: io.flow.reference.v0.enums.PaymentMethodCapability;
|
|
25637
|
+
readonly amount: number;
|
|
25620
25638
|
readonly currency: io.flow.reference.v0.models.Currency;
|
|
25621
25639
|
readonly method: io.flow.reference.v0.models.PaymentMethod;
|
|
25622
25640
|
readonly card_issuer_country?: io.flow.reference.v0.models.Country;
|
|
@@ -26521,6 +26539,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26521
26539
|
readonly lvg?: boolean;
|
|
26522
26540
|
readonly tax_inclusive?: boolean;
|
|
26523
26541
|
readonly duty_inclusive?: boolean;
|
|
26542
|
+
readonly manual_payment?: boolean;
|
|
26524
26543
|
}
|
|
26525
26544
|
|
|
26526
26545
|
interface ReportingFx {
|
|
@@ -26765,7 +26784,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26765
26784
|
readonly priority_score: number;
|
|
26766
26785
|
readonly date: string;
|
|
26767
26786
|
readonly statuses: io.flow.internal.v0.models.RestrictionStatusMetadata[];
|
|
26768
|
-
readonly rules: io.flow.internal.v0.models.RestrictionRuleMetadata[];
|
|
26769
26787
|
readonly count: number;
|
|
26770
26788
|
}
|
|
26771
26789
|
|
|
@@ -29545,8 +29563,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29545
29563
|
| io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted
|
|
29546
29564
|
| io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted
|
|
29547
29565
|
| io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted
|
|
29548
|
-
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted
|
|
29549
|
-
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted
|
|
29550
29566
|
| io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted
|
|
29551
29567
|
| io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted
|
|
29552
29568
|
| io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted
|
|
@@ -30175,7 +30191,6 @@ export type BrowserBundlePaymentMethods =
|
|
|
30175
30191
|
io.flow.internal.v0.models.BrowserBundlePaymentMethods;
|
|
30176
30192
|
export type BulkClassificationAction =
|
|
30177
30193
|
io.flow.internal.v0.models.BulkClassificationAction;
|
|
30178
|
-
export type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
30179
30194
|
export type CalculatedTaxAmount =
|
|
30180
30195
|
io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
30181
30196
|
export type CalculationStampingLineItem =
|
|
@@ -31077,6 +31092,7 @@ export type GoogleShoppingAccountParameters =
|
|
|
31077
31092
|
export type GoogleShoppingSetting =
|
|
31078
31093
|
io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
31079
31094
|
export type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
31095
|
+
export type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
31080
31096
|
export type HarinathItem = io.flow.internal.v0.models.HarinathItem;
|
|
31081
31097
|
export type HarinathItemDeleted =
|
|
31082
31098
|
io.flow.internal.v0.models.HarinathItemDeleted;
|
|
@@ -31840,12 +31856,6 @@ export type OrganizationRestrictionScreeningDecisionForm =
|
|
|
31840
31856
|
io.flow.internal.v0.models.OrganizationRestrictionScreeningDecisionForm;
|
|
31841
31857
|
export type OrganizationRestrictionScreeningStatus =
|
|
31842
31858
|
io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
31843
|
-
export type OrganizationRestrictionSnapshot =
|
|
31844
|
-
io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
31845
|
-
export type OrganizationRestrictionSnapshotDeleted =
|
|
31846
|
-
io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted;
|
|
31847
|
-
export type OrganizationRestrictionSnapshotUpserted =
|
|
31848
|
-
io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted;
|
|
31849
31859
|
export type OrganizationRestrictionStatus =
|
|
31850
31860
|
io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
31851
31861
|
export type OrganizationRestrictionStatusDeleted =
|
package/src/api.ts
CHANGED
|
@@ -3415,7 +3415,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3415
3415
|
| 'transfer'
|
|
3416
3416
|
| 'negative_balance_guarantee';
|
|
3417
3417
|
type FlowBehavior = 'view_consumer_data';
|
|
3418
|
-
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can';
|
|
3418
|
+
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
|
|
3419
3419
|
type FlowRole =
|
|
3420
3420
|
| 'organization_admin'
|
|
3421
3421
|
| 'organization_merchant'
|
|
@@ -3736,7 +3736,8 @@ declare namespace io.flow.v0.enums {
|
|
|
3736
3736
|
| 'afterpay'
|
|
3737
3737
|
| 'bancontact'
|
|
3738
3738
|
| 'twint'
|
|
3739
|
-
| 'przelewy24'
|
|
3739
|
+
| 'przelewy24'
|
|
3740
|
+
| 'mobilepay';
|
|
3740
3741
|
type PayoutAttachmentType = 'transactions';
|
|
3741
3742
|
type PayoutStatusFailureCode =
|
|
3742
3743
|
| 'invalid_account_number'
|
|
@@ -4013,7 +4014,8 @@ declare namespace io.flow.v0.enums {
|
|
|
4013
4014
|
| 'signature_required'
|
|
4014
4015
|
| 'direct_delivery'
|
|
4015
4016
|
| 'saturday_stop'
|
|
4016
|
-
| 'residential_extended_area_pickup'
|
|
4017
|
+
| 'residential_extended_area_pickup'
|
|
4018
|
+
| 'package_level_detail';
|
|
4017
4019
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
4018
4020
|
type UnitOfMeasurement =
|
|
4019
4021
|
| 'millimeter'
|
|
@@ -4949,6 +4951,7 @@ declare namespace io.flow.v0.models {
|
|
|
4949
4951
|
readonly items?: io.flow.v0.models.LineItemForm[];
|
|
4950
4952
|
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
4951
4953
|
readonly origin?: io.flow.v0.models.ShippingAddress;
|
|
4954
|
+
readonly direction?: io.flow.v0.enums.Direction;
|
|
4952
4955
|
}
|
|
4953
4956
|
|
|
4954
4957
|
interface BrowseOptinResponses {
|
|
@@ -10613,6 +10616,11 @@ declare namespace io.flow.v0.models {
|
|
|
10613
10616
|
readonly reference?: string;
|
|
10614
10617
|
}
|
|
10615
10618
|
|
|
10619
|
+
interface PaymentMethodDataInitMobilepay {
|
|
10620
|
+
readonly type: 'init_mobilepay';
|
|
10621
|
+
readonly reference?: string;
|
|
10622
|
+
}
|
|
10623
|
+
|
|
10616
10624
|
interface PaymentMethodDataInitPaypal {
|
|
10617
10625
|
readonly type: 'init_paypal';
|
|
10618
10626
|
readonly reference?: string;
|
|
@@ -10739,6 +10747,11 @@ declare namespace io.flow.v0.models {
|
|
|
10739
10747
|
readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
|
|
10740
10748
|
}
|
|
10741
10749
|
|
|
10750
|
+
interface PaymentMethodSummaryMobilepay {
|
|
10751
|
+
readonly type: 'mobilepay';
|
|
10752
|
+
readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
|
|
10753
|
+
}
|
|
10754
|
+
|
|
10742
10755
|
interface PaymentMethodSummaryPaypal {
|
|
10743
10756
|
readonly type: 'paypal';
|
|
10744
10757
|
readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
|
|
@@ -12721,6 +12734,7 @@ declare namespace io.flow.v0.models {
|
|
|
12721
12734
|
readonly additional_services_requested?: io.flow.v0.models.AdditionalServicesRequested[];
|
|
12722
12735
|
readonly created_at?: string;
|
|
12723
12736
|
readonly updated_at?: string;
|
|
12737
|
+
readonly direction?: io.flow.v0.enums.Direction;
|
|
12724
12738
|
}
|
|
12725
12739
|
|
|
12726
12740
|
interface ShippingLabelDocument {
|
|
@@ -13403,6 +13417,7 @@ declare namespace io.flow.v0.models {
|
|
|
13403
13417
|
readonly order_number: string;
|
|
13404
13418
|
readonly items: io.flow.v0.models.LineItemForm[];
|
|
13405
13419
|
readonly center_key?: string;
|
|
13420
|
+
readonly direction?: io.flow.v0.enums.Direction;
|
|
13406
13421
|
}
|
|
13407
13422
|
|
|
13408
13423
|
interface SummaryShippingNotificationForm {
|
|
@@ -14837,6 +14852,7 @@ declare namespace io.flow.v0.unions {
|
|
|
14837
14852
|
| io.flow.v0.models.PaymentMethodDataInitSofort
|
|
14838
14853
|
| io.flow.v0.models.PaymentMethodDataInitTwint
|
|
14839
14854
|
| io.flow.v0.models.PaymentMethodDataInitPrzelewy24
|
|
14855
|
+
| io.flow.v0.models.PaymentMethodDataInitMobilepay
|
|
14840
14856
|
| io.flow.v0.models.PaymentMethodDataInitBancontact
|
|
14841
14857
|
| io.flow.v0.models.PaymentMethodDataValidateApplepay
|
|
14842
14858
|
| io.flow.v0.models.PaymentMethodDataAuthorizeCard
|
|
@@ -14867,6 +14883,7 @@ declare namespace io.flow.v0.unions {
|
|
|
14867
14883
|
| io.flow.v0.models.PaymentMethodSummaryIdeal
|
|
14868
14884
|
| io.flow.v0.models.PaymentMethodSummaryTwint
|
|
14869
14885
|
| io.flow.v0.models.PaymentMethodSummaryPrzelewy24
|
|
14886
|
+
| io.flow.v0.models.PaymentMethodSummaryMobilepay
|
|
14870
14887
|
| io.flow.v0.models.PaymentMethodSummarySofort
|
|
14871
14888
|
| io.flow.v0.models.PaymentMethodSummaryBancontact;
|
|
14872
14889
|
|
|
@@ -16464,6 +16481,8 @@ export type PaymentMethodDataInitIdeal =
|
|
|
16464
16481
|
io.flow.v0.models.PaymentMethodDataInitIdeal;
|
|
16465
16482
|
export type PaymentMethodDataInitKlarna =
|
|
16466
16483
|
io.flow.v0.models.PaymentMethodDataInitKlarna;
|
|
16484
|
+
export type PaymentMethodDataInitMobilepay =
|
|
16485
|
+
io.flow.v0.models.PaymentMethodDataInitMobilepay;
|
|
16467
16486
|
export type PaymentMethodDataInitPaypal =
|
|
16468
16487
|
io.flow.v0.models.PaymentMethodDataInitPaypal;
|
|
16469
16488
|
export type PaymentMethodDataInitPrzelewy24 =
|
|
@@ -16513,6 +16532,8 @@ export type PaymentMethodSummaryIdeal =
|
|
|
16513
16532
|
io.flow.v0.models.PaymentMethodSummaryIdeal;
|
|
16514
16533
|
export type PaymentMethodSummaryKlarna =
|
|
16515
16534
|
io.flow.v0.models.PaymentMethodSummaryKlarna;
|
|
16535
|
+
export type PaymentMethodSummaryMobilepay =
|
|
16536
|
+
io.flow.v0.models.PaymentMethodSummaryMobilepay;
|
|
16516
16537
|
export type PaymentMethodSummaryPaypal =
|
|
16517
16538
|
io.flow.v0.models.PaymentMethodSummaryPaypal;
|
|
16518
16539
|
export type PaymentMethodSummaryPrzelewy24 =
|