@flowio/types 11.24.94 → 11.24.96
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 +1423 -1206
- package/dist/api.d.ts +195 -23
- package/package.json +2 -2
- package/src/api-internal.ts +1845 -1410
- package/src/api.ts +298 -26
package/dist/api.d.ts
CHANGED
|
@@ -129,6 +129,8 @@ declare namespace io.flow.google.pay.v0.unions {
|
|
|
129
129
|
declare namespace io.flow.stripe.v0.enums {
|
|
130
130
|
type AccountType = 'platform' | 'custom' | 'standard' | 'express';
|
|
131
131
|
type ApplePayType = 'apple_pay' | 'apple_pay_later';
|
|
132
|
+
type BankIdeal = 'abn_amro' | 'asn_bank' | 'bunq' | 'handelsbanken' | 'ing' | 'knab' | 'moneyou' | 'n26' | 'nn' | 'rabobank' | 'regiobank' | 'revolut' | 'sns_bank' | 'triodos_bank' | 'van_lanschot' | 'yoursafe';
|
|
133
|
+
type BicIdeal = 'ABNANL2A' | 'ASNBNL21' | 'BITSNL2A' | 'BUNQNL2A' | 'FVLBNL22' | 'HANDNL2A' | 'INGBNL2A' | 'KNABNL2H' | 'MOYONL21' | 'NNBANL2G' | 'NTSBDEB1' | 'RABONL2U' | 'RBRBNL21' | 'REVOIE23' | 'REVOLT21' | 'SNSBNL2A' | 'TRIONL2U';
|
|
132
134
|
type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
|
|
133
135
|
type CaptureMethod = 'automatic' | 'manual';
|
|
134
136
|
type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
|
|
@@ -150,9 +152,10 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
150
152
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
151
153
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
152
154
|
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
153
|
-
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
155
|
+
type PaymentMethodType = 'card' | 'card_present' | 'ideal' | 'klarna' | 'bancontact';
|
|
154
156
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
155
157
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
158
|
+
type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
|
|
156
159
|
type PreferredLocaleKlarna = 'de-AT' | 'en-AT' | 'nl-BE' | 'fr-BE' | 'en-BE' | 'de-DE' | 'en-DE' | 'da-DK' | 'en-DK' | 'es-ES' | 'en-ES' | 'fi-FI' | 'sv-FI' | 'en-FI' | 'en-GB' | 'en-IE' | 'it-IT' | 'en-IT' | 'nl-NL' | 'en-NL' | 'nb-NO' | 'en-NO' | 'sv-SE' | 'en-SE' | 'en-US' | 'es-US' | 'fr-FR' | 'en-FR' | 'cs-CZ' | 'en-CZ' | 'el-GR' | 'en-GR' | 'en-AU' | 'en-NZ' | 'en-CA' | 'fr-CA' | 'pl-PL' | 'en-PL' | 'pt-PT' | 'en-PT' | 'de-CH' | 'fr-CH' | 'it-CH' | 'en-CH';
|
|
157
160
|
type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
|
|
158
161
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
@@ -596,8 +599,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
596
599
|
readonly id: string;
|
|
597
600
|
readonly object: string;
|
|
598
601
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
602
|
+
readonly bancontact?: any;
|
|
599
603
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
600
604
|
readonly card_present?: any;
|
|
605
|
+
readonly ideal?: any;
|
|
601
606
|
readonly klarna?: any;
|
|
602
607
|
readonly created: number;
|
|
603
608
|
readonly customer?: string;
|
|
@@ -628,18 +633,43 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
628
633
|
readonly number: string;
|
|
629
634
|
readonly cvc?: string;
|
|
630
635
|
}
|
|
636
|
+
interface PaymentMethodDataBancontact {
|
|
637
|
+
readonly type: 'bancontact';
|
|
638
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
639
|
+
readonly metadata?: any;
|
|
640
|
+
}
|
|
631
641
|
interface PaymentMethodDataCard {
|
|
632
642
|
readonly type: 'card';
|
|
633
643
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
634
644
|
readonly metadata?: any;
|
|
635
645
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
636
646
|
}
|
|
647
|
+
interface PaymentMethodDataIdeal {
|
|
648
|
+
readonly type: 'ideal';
|
|
649
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
650
|
+
readonly metadata?: any;
|
|
651
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodIdealForm;
|
|
652
|
+
}
|
|
637
653
|
interface PaymentMethodDataKlarna {
|
|
638
654
|
readonly type: 'klarna';
|
|
639
655
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
640
656
|
readonly metadata?: any;
|
|
641
657
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
642
658
|
}
|
|
659
|
+
interface PaymentMethodDetailsBancontact {
|
|
660
|
+
readonly type: 'bancontact';
|
|
661
|
+
readonly bancontact: io.flow.stripe.v0.models.PaymentMethodDetailsBancontactInformation;
|
|
662
|
+
}
|
|
663
|
+
interface PaymentMethodDetailsBancontactInformation {
|
|
664
|
+
readonly bank_code?: string;
|
|
665
|
+
readonly bank_name?: string;
|
|
666
|
+
readonly bic?: string;
|
|
667
|
+
readonly generated_sepa_debit?: string;
|
|
668
|
+
readonly generated_sepa_debit_mandate?: string;
|
|
669
|
+
readonly iban_last4?: string;
|
|
670
|
+
readonly preferred_language?: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
671
|
+
readonly verified_name?: string;
|
|
672
|
+
}
|
|
643
673
|
interface PaymentMethodDetailsCard {
|
|
644
674
|
readonly type: 'card';
|
|
645
675
|
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -669,6 +699,18 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
669
699
|
readonly multicapture?: io.flow.stripe.v0.models.Multicapture;
|
|
670
700
|
readonly overcapture?: io.flow.stripe.v0.models.Overcapture;
|
|
671
701
|
}
|
|
702
|
+
interface PaymentMethodDetailsIdeal {
|
|
703
|
+
readonly type: 'ideal';
|
|
704
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodDetailsIdealInformation;
|
|
705
|
+
}
|
|
706
|
+
interface PaymentMethodDetailsIdealInformation {
|
|
707
|
+
readonly bank?: io.flow.stripe.v0.enums.BankIdeal;
|
|
708
|
+
readonly bic?: io.flow.stripe.v0.enums.BicIdeal;
|
|
709
|
+
readonly generated_sepa_debit?: string;
|
|
710
|
+
readonly generated_sepa_debit_mandate?: string;
|
|
711
|
+
readonly iban_last4?: string;
|
|
712
|
+
readonly verified_name?: string;
|
|
713
|
+
}
|
|
672
714
|
interface PaymentMethodDetailsKlarna {
|
|
673
715
|
readonly type: 'klarna';
|
|
674
716
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
|
|
@@ -677,24 +719,47 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
677
719
|
readonly payment_method_category?: io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna;
|
|
678
720
|
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
679
721
|
}
|
|
722
|
+
interface PaymentMethodFormBancontact {
|
|
723
|
+
readonly type: 'bancontact';
|
|
724
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
725
|
+
readonly metadata?: any;
|
|
726
|
+
readonly bancontact: any;
|
|
727
|
+
}
|
|
680
728
|
interface PaymentMethodFormCard {
|
|
681
729
|
readonly type: 'card';
|
|
682
730
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
683
731
|
readonly metadata?: any;
|
|
684
732
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
685
733
|
}
|
|
734
|
+
interface PaymentMethodFormIdeal {
|
|
735
|
+
readonly type: 'ideal';
|
|
736
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
737
|
+
readonly metadata?: any;
|
|
738
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodIdealForm;
|
|
739
|
+
}
|
|
686
740
|
interface PaymentMethodFormKlarna {
|
|
687
741
|
readonly type: 'klarna';
|
|
688
742
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
689
743
|
readonly metadata?: any;
|
|
690
744
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
691
745
|
}
|
|
746
|
+
interface PaymentMethodIdealForm {
|
|
747
|
+
readonly bank?: string;
|
|
748
|
+
}
|
|
692
749
|
interface PaymentMethodKlarnaForm {
|
|
693
750
|
readonly dob?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
694
751
|
}
|
|
695
752
|
interface PaymentMethodOptions {
|
|
696
753
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
754
|
+
readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdeal;
|
|
697
755
|
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
756
|
+
readonly bancontact?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontact;
|
|
757
|
+
}
|
|
758
|
+
interface PaymentMethodOptionsBancontact {
|
|
759
|
+
readonly preferred_language: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
760
|
+
}
|
|
761
|
+
interface PaymentMethodOptionsBancontactForm {
|
|
762
|
+
readonly preferred_language: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
698
763
|
}
|
|
699
764
|
interface PaymentMethodOptionsCard {
|
|
700
765
|
readonly network?: string;
|
|
@@ -711,7 +776,15 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
711
776
|
}
|
|
712
777
|
interface PaymentMethodOptionsForm {
|
|
713
778
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
779
|
+
readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm;
|
|
714
780
|
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
781
|
+
readonly bancontact?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontactForm;
|
|
782
|
+
}
|
|
783
|
+
interface PaymentMethodOptionsIdeal {
|
|
784
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
785
|
+
}
|
|
786
|
+
interface PaymentMethodOptionsIdealForm {
|
|
787
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
715
788
|
}
|
|
716
789
|
interface PaymentMethodOptionsKlarna {
|
|
717
790
|
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
@@ -989,9 +1062,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
989
1062
|
}
|
|
990
1063
|
declare namespace io.flow.stripe.v0.unions {
|
|
991
1064
|
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
992
|
-
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna;
|
|
993
|
-
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
994
|
-
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna;
|
|
1065
|
+
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataIdeal | io.flow.stripe.v0.models.PaymentMethodDataKlarna | io.flow.stripe.v0.models.PaymentMethodDataBancontact;
|
|
1066
|
+
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsIdeal | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna | io.flow.stripe.v0.models.PaymentMethodDetailsBancontact;
|
|
1067
|
+
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormIdeal | io.flow.stripe.v0.models.PaymentMethodFormKlarna | io.flow.stripe.v0.models.PaymentMethodFormBancontact;
|
|
995
1068
|
}
|
|
996
1069
|
declare namespace io.flow.shopify.external.v0.enums {
|
|
997
1070
|
type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
@@ -1144,6 +1217,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1144
1217
|
readonly published_at?: string;
|
|
1145
1218
|
readonly created_at: string;
|
|
1146
1219
|
readonly updated_at: string;
|
|
1220
|
+
readonly has_variants_that_requires_components?: boolean;
|
|
1147
1221
|
}
|
|
1148
1222
|
interface ProductDelete {
|
|
1149
1223
|
readonly id: number;
|
|
@@ -1954,7 +2028,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1954
2028
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
1955
2029
|
type EntityIdentifierType = 'ioss' | 'voec';
|
|
1956
2030
|
type Environment = 'sandbox' | 'production';
|
|
1957
|
-
type EventType = 'test_upserted' | 'generate_load' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'rule_upserted' | 'rule_deleted' | 'snapshot_upserted' | 'snapshot_deleted' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
2031
|
+
type EventType = 'test_upserted' | 'generate_load' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'rule_upserted' | 'rule_deleted' | 'snapshot_upserted' | 'snapshot_deleted' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
1958
2032
|
type ExceptionType = 'open' | 'closed';
|
|
1959
2033
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
1960
2034
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -2032,7 +2106,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2032
2106
|
type PaymentMethodRuleContentKey = 'description';
|
|
2033
2107
|
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
2034
2108
|
type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
|
|
2035
|
-
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';
|
|
2109
|
+
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';
|
|
2036
2110
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
2037
2111
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
2038
2112
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
@@ -2101,9 +2175,9 @@ declare namespace io.flow.v0.enums {
|
|
|
2101
2175
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
2102
2176
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
2103
2177
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
2104
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | '
|
|
2105
|
-
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
2106
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion';
|
|
2178
|
+
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';
|
|
2179
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
2180
|
+
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';
|
|
2107
2181
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
2108
2182
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
2109
2183
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
@@ -5974,6 +6048,26 @@ declare namespace io.flow.v0.models {
|
|
|
5974
6048
|
readonly id: string;
|
|
5975
6049
|
readonly number: string;
|
|
5976
6050
|
}
|
|
6051
|
+
interface LabelProcessingModification {
|
|
6052
|
+
readonly id: string;
|
|
6053
|
+
readonly modifications: string[];
|
|
6054
|
+
readonly destination: io.flow.v0.models.ShippingAddress;
|
|
6055
|
+
readonly destination_provided_to_carrier?: io.flow.v0.models.ShippingAddress;
|
|
6056
|
+
}
|
|
6057
|
+
interface LabelProcessingModificationDeleted {
|
|
6058
|
+
readonly discriminator: 'label_processing_modification_deleted';
|
|
6059
|
+
readonly event_id: string;
|
|
6060
|
+
readonly timestamp: string;
|
|
6061
|
+
readonly organization: string;
|
|
6062
|
+
readonly id: string;
|
|
6063
|
+
}
|
|
6064
|
+
interface LabelProcessingModificationUpserted {
|
|
6065
|
+
readonly discriminator: 'label_processing_modification_upserted';
|
|
6066
|
+
readonly event_id: string;
|
|
6067
|
+
readonly timestamp: string;
|
|
6068
|
+
readonly organization: string;
|
|
6069
|
+
readonly label_processing_modification: io.flow.v0.models.LabelProcessingModification;
|
|
6070
|
+
}
|
|
5977
6071
|
interface LabelReference {
|
|
5978
6072
|
readonly id: string;
|
|
5979
6073
|
}
|
|
@@ -7903,6 +7997,14 @@ declare namespace io.flow.v0.models {
|
|
|
7903
7997
|
readonly discriminator: 'payment_processor_reference';
|
|
7904
7998
|
readonly processor: string;
|
|
7905
7999
|
}
|
|
8000
|
+
interface PaymentProcessorTransactionDetailsApm {
|
|
8001
|
+
readonly discriminator: 'apm';
|
|
8002
|
+
readonly transaction_identifier?: string;
|
|
8003
|
+
readonly capture_identifier?: string;
|
|
8004
|
+
readonly method_type?: string;
|
|
8005
|
+
readonly result_status?: string;
|
|
8006
|
+
readonly reason_code?: string;
|
|
8007
|
+
}
|
|
7906
8008
|
interface PaymentProcessorTransactionDetailsCard {
|
|
7907
8009
|
readonly discriminator: 'card';
|
|
7908
8010
|
readonly transaction_identifier?: string;
|
|
@@ -7979,6 +8081,10 @@ declare namespace io.flow.v0.models {
|
|
|
7979
8081
|
readonly payment_request: io.flow.v0.models.PaymentRequestForm;
|
|
7980
8082
|
readonly billing: io.flow.v0.models.PaymentRequestBilling;
|
|
7981
8083
|
}
|
|
8084
|
+
interface PaymentRequestCancellationReasonOrderMissing {
|
|
8085
|
+
readonly type: 'order_missing';
|
|
8086
|
+
readonly description?: string;
|
|
8087
|
+
}
|
|
7982
8088
|
interface PaymentRequestDeleted {
|
|
7983
8089
|
readonly discriminator: 'payment_request_deleted';
|
|
7984
8090
|
readonly event_id: string;
|
|
@@ -8100,6 +8206,7 @@ declare namespace io.flow.v0.models {
|
|
|
8100
8206
|
interface PaypalAuthorizationDetails {
|
|
8101
8207
|
readonly discriminator: 'paypal_authorization_details';
|
|
8102
8208
|
readonly payment_id: string;
|
|
8209
|
+
readonly internal_payment_id?: string;
|
|
8103
8210
|
readonly payment_method?: string;
|
|
8104
8211
|
readonly payment_state?: string;
|
|
8105
8212
|
readonly payer_id?: string;
|
|
@@ -8967,6 +9074,10 @@ declare namespace io.flow.v0.models {
|
|
|
8967
9074
|
interface RegionSettingForm {
|
|
8968
9075
|
readonly status: io.flow.v0.enums.AvailabilityStatus;
|
|
8969
9076
|
}
|
|
9077
|
+
interface RejectionPutForm {
|
|
9078
|
+
readonly reason: io.flow.v0.enums.MerchantRejectedReason;
|
|
9079
|
+
readonly description: string;
|
|
9080
|
+
}
|
|
8970
9081
|
interface RemoteAreaByWeightServiceFee {
|
|
8971
9082
|
readonly discriminator: 'remote_area_by_weight_service_fee';
|
|
8972
9083
|
readonly amount: io.flow.v0.models.Money;
|
|
@@ -10624,19 +10735,11 @@ declare namespace io.flow.v0.models {
|
|
|
10624
10735
|
readonly revenue_share_percentage: number;
|
|
10625
10736
|
readonly outbound?: io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
10626
10737
|
}
|
|
10627
|
-
interface TransactionMetadataCarrierFee {
|
|
10628
|
-
readonly discriminator: 'carrier_fee';
|
|
10629
|
-
readonly outbound: io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
10630
|
-
readonly estimate: io.flow.v0.models.TransactionMetadataCarrierFeeData;
|
|
10631
|
-
readonly actual: io.flow.v0.models.TransactionMetadataCarrierFeeData;
|
|
10632
|
-
}
|
|
10633
|
-
interface TransactionMetadataCarrierFeeData {
|
|
10634
|
-
readonly surcharges: io.flow.v0.models.TrueupLabelSurcharge[];
|
|
10635
|
-
}
|
|
10636
10738
|
interface TransactionMetadataChannel {
|
|
10637
10739
|
readonly discriminator: 'channel';
|
|
10638
10740
|
readonly method: string;
|
|
10639
10741
|
readonly card?: io.flow.v0.models.TransactionMetadataChannelCardMetadata;
|
|
10742
|
+
readonly organization_transaction: io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
10640
10743
|
}
|
|
10641
10744
|
interface TransactionMetadataChannelCardMetadata {
|
|
10642
10745
|
readonly type: io.flow.v0.enums.CardType;
|
|
@@ -10646,6 +10749,17 @@ declare namespace io.flow.v0.models {
|
|
|
10646
10749
|
readonly iin: string;
|
|
10647
10750
|
readonly country: string;
|
|
10648
10751
|
}
|
|
10752
|
+
interface TransactionMetadataChannelOrganizationTransaction {
|
|
10753
|
+
readonly id: string;
|
|
10754
|
+
readonly metadata: io.flow.v0.models.TransactionMetadataPaymentTransaction;
|
|
10755
|
+
}
|
|
10756
|
+
interface TransactionMetadataFailedPayout {
|
|
10757
|
+
readonly discriminator: 'failed_payout';
|
|
10758
|
+
readonly failed_payout: io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
10759
|
+
}
|
|
10760
|
+
interface TransactionMetadataFailedPayoutReference {
|
|
10761
|
+
readonly id: string;
|
|
10762
|
+
}
|
|
10649
10763
|
interface TransactionMetadataManual {
|
|
10650
10764
|
readonly discriminator: 'manual';
|
|
10651
10765
|
readonly description: string;
|
|
@@ -10660,6 +10774,7 @@ declare namespace io.flow.v0.models {
|
|
|
10660
10774
|
}
|
|
10661
10775
|
interface TransactionMetadataPaymentTransaction {
|
|
10662
10776
|
readonly discriminator: 'payment_transaction';
|
|
10777
|
+
readonly id?: string;
|
|
10663
10778
|
readonly key?: string;
|
|
10664
10779
|
}
|
|
10665
10780
|
interface TransactionMetadataShippingLabel {
|
|
@@ -10678,6 +10793,20 @@ declare namespace io.flow.v0.models {
|
|
|
10678
10793
|
readonly estimate: io.flow.v0.models.TransactionMetadataTrueupData;
|
|
10679
10794
|
readonly actual: io.flow.v0.models.TransactionMetadataTrueupData;
|
|
10680
10795
|
}
|
|
10796
|
+
interface TransactionMetadataTrueupBase {
|
|
10797
|
+
readonly discriminator: 'trueup_base';
|
|
10798
|
+
readonly original: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
10799
|
+
readonly estimate: io.flow.v0.models.TransactionMetadataTrueupBaseData;
|
|
10800
|
+
readonly actual: io.flow.v0.models.TransactionMetadataTrueupBaseData;
|
|
10801
|
+
}
|
|
10802
|
+
interface TransactionMetadataTrueupBaseData {
|
|
10803
|
+
readonly source: io.flow.v0.enums.TrueupSource;
|
|
10804
|
+
readonly weights: io.flow.v0.models.TrueupLabelWeights;
|
|
10805
|
+
readonly units: io.flow.v0.models.TrueupLabelUnits;
|
|
10806
|
+
readonly base: io.flow.v0.models.TrueupLabelBaseV2;
|
|
10807
|
+
readonly fuel?: io.flow.v0.models.TrueupLabelFuel;
|
|
10808
|
+
readonly total: number;
|
|
10809
|
+
}
|
|
10681
10810
|
interface TransactionMetadataTrueupData {
|
|
10682
10811
|
readonly source: io.flow.v0.enums.TrueupSource;
|
|
10683
10812
|
readonly units: io.flow.v0.models.TrueupLabelUnits;
|
|
@@ -10687,6 +10816,16 @@ declare namespace io.flow.v0.models {
|
|
|
10687
10816
|
readonly dead?: io.flow.v0.models.DeadWeight;
|
|
10688
10817
|
readonly dimensional?: io.flow.v0.models.DimensionalWeight;
|
|
10689
10818
|
}
|
|
10819
|
+
interface TransactionMetadataTrueupSurcharge {
|
|
10820
|
+
readonly discriminator: 'trueup_surcharge';
|
|
10821
|
+
readonly original: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
10822
|
+
readonly estimate: io.flow.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
10823
|
+
readonly actual: io.flow.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
10824
|
+
}
|
|
10825
|
+
interface TransactionMetadataTrueupSurchargeData {
|
|
10826
|
+
readonly source: io.flow.v0.enums.TrueupSource;
|
|
10827
|
+
readonly surcharge: io.flow.v0.models.TrueupLabelSurcharge;
|
|
10828
|
+
}
|
|
10690
10829
|
interface TransactionNetworkDetailsCard {
|
|
10691
10830
|
readonly network_transaction_id?: string;
|
|
10692
10831
|
readonly network?: io.flow.v0.enums.CardType;
|
|
@@ -10718,6 +10857,17 @@ declare namespace io.flow.v0.models {
|
|
|
10718
10857
|
readonly amount: number;
|
|
10719
10858
|
readonly weight: number;
|
|
10720
10859
|
}
|
|
10860
|
+
interface TrueupLabelBaseV2 {
|
|
10861
|
+
readonly amount: number;
|
|
10862
|
+
}
|
|
10863
|
+
interface TrueupLabelBaseWeight {
|
|
10864
|
+
readonly weight: number;
|
|
10865
|
+
}
|
|
10866
|
+
interface TrueupLabelFuel {
|
|
10867
|
+
readonly amount: number;
|
|
10868
|
+
readonly percentage?: number;
|
|
10869
|
+
readonly per_weight_unit?: number;
|
|
10870
|
+
}
|
|
10721
10871
|
interface TrueupLabelSurcharge {
|
|
10722
10872
|
readonly amount: number;
|
|
10723
10873
|
readonly type: io.flow.v0.enums.TrueupSurchargeType;
|
|
@@ -10728,6 +10878,11 @@ declare namespace io.flow.v0.models {
|
|
|
10728
10878
|
readonly weight: io.flow.v0.enums.UnitOfWeight;
|
|
10729
10879
|
readonly length?: io.flow.v0.enums.UnitOfLength;
|
|
10730
10880
|
}
|
|
10881
|
+
interface TrueupLabelWeights {
|
|
10882
|
+
readonly base: io.flow.v0.models.TrueupLabelBaseWeight;
|
|
10883
|
+
readonly dead?: io.flow.v0.models.DeadWeight;
|
|
10884
|
+
readonly dimensional?: io.flow.v0.models.DimensionalWeight;
|
|
10885
|
+
}
|
|
10731
10886
|
interface UltimateBeneficiaryOwner {
|
|
10732
10887
|
readonly name: string;
|
|
10733
10888
|
readonly dob: string;
|
|
@@ -10944,7 +11099,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10944
11099
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
10945
11100
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
10946
11101
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
10947
|
-
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
|
|
11102
|
+
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
|
|
10948
11103
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
|
|
10949
11104
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
10950
11105
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -10998,7 +11153,8 @@ declare namespace io.flow.v0.unions {
|
|
|
10998
11153
|
value: io.flow.v0.enums.ExperiencePaymentMethodTag;
|
|
10999
11154
|
};
|
|
11000
11155
|
type PaymentOrderReference = io.flow.v0.models.AuthorizationOrderReference | io.flow.v0.models.PaymentPaymentRequestReference;
|
|
11001
|
-
type PaymentProcessorTransactionDetails = io.flow.v0.models.PaymentProcessorTransactionDetailsCard;
|
|
11156
|
+
type PaymentProcessorTransactionDetails = io.flow.v0.models.PaymentProcessorTransactionDetailsCard | io.flow.v0.models.PaymentProcessorTransactionDetailsApm;
|
|
11157
|
+
type PaymentRequestCancellationReason = io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing;
|
|
11002
11158
|
type PaymentSource = io.flow.v0.models.CardPaymentSource;
|
|
11003
11159
|
type PaymentSourceForm = io.flow.v0.models.CardPaymentSourceForm;
|
|
11004
11160
|
type PayoutStatus = io.flow.v0.models.PayoutStatusScheduled | io.flow.v0.models.PayoutStatusSent | io.flow.v0.models.PayoutStatusFailed;
|
|
@@ -11031,7 +11187,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11031
11187
|
type Token = io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken;
|
|
11032
11188
|
type TokenReference = io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference;
|
|
11033
11189
|
type TransactionDetails = io.flow.v0.models.TransactionDetailsCard;
|
|
11034
|
-
type TransactionMetadata = io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup | io.flow.v0.models.
|
|
11190
|
+
type TransactionMetadata = io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup | io.flow.v0.models.TransactionMetadataTrueupBase | io.flow.v0.models.TransactionMetadataTrueupSurcharge | io.flow.v0.models.TransactionMetadataCarrierCharge | io.flow.v0.models.TransactionMetadataManual | io.flow.v0.models.TransactionMetadataFailedPayout | io.flow.v0.models.TransactionMetadataPaymentTransaction;
|
|
11035
11191
|
}
|
|
11036
11192
|
export declare type AbandonedOrderEmailSettings = io.flow.v0.models.AbandonedOrderEmailSettings;
|
|
11037
11193
|
export declare type AbandonedOrderPromotion = io.flow.v0.models.AbandonedOrderPromotion;
|
|
@@ -11804,6 +11960,9 @@ export declare type LabelDeletedV2 = io.flow.v0.models.LabelDeletedV2;
|
|
|
11804
11960
|
export declare type LabelFormatDeleted = io.flow.v0.models.LabelFormatDeleted;
|
|
11805
11961
|
export declare type LabelFormatUpserted = io.flow.v0.models.LabelFormatUpserted;
|
|
11806
11962
|
export declare type LabelOrderSummary = io.flow.v0.models.LabelOrderSummary;
|
|
11963
|
+
export declare type LabelProcessingModification = io.flow.v0.models.LabelProcessingModification;
|
|
11964
|
+
export declare type LabelProcessingModificationDeleted = io.flow.v0.models.LabelProcessingModificationDeleted;
|
|
11965
|
+
export declare type LabelProcessingModificationUpserted = io.flow.v0.models.LabelProcessingModificationUpserted;
|
|
11807
11966
|
export declare type LabelReference = io.flow.v0.models.LabelReference;
|
|
11808
11967
|
export declare type LabelRequestMethod = io.flow.v0.enums.LabelRequestMethod;
|
|
11809
11968
|
export declare type LabelSurcharge = io.flow.v0.models.LabelSurcharge;
|
|
@@ -12189,6 +12348,7 @@ export declare type PaymentProcessorAccountReference = io.flow.v0.models.Payment
|
|
|
12189
12348
|
export declare type PaymentProcessorIdentifier = io.flow.v0.models.PaymentProcessorIdentifier;
|
|
12190
12349
|
export declare type PaymentProcessorReference = io.flow.v0.models.PaymentProcessorReference;
|
|
12191
12350
|
export declare type PaymentProcessorTransactionDetails = io.flow.v0.unions.PaymentProcessorTransactionDetails;
|
|
12351
|
+
export declare type PaymentProcessorTransactionDetailsApm = io.flow.v0.models.PaymentProcessorTransactionDetailsApm;
|
|
12192
12352
|
export declare type PaymentProcessorTransactionDetailsCard = io.flow.v0.models.PaymentProcessorTransactionDetailsCard;
|
|
12193
12353
|
export declare type PaymentReference = io.flow.v0.models.PaymentReference;
|
|
12194
12354
|
export declare type PaymentRefund = io.flow.v0.models.PaymentRefund;
|
|
@@ -12200,6 +12360,8 @@ export declare type PaymentRequestBillingCurrencyRate = io.flow.v0.models.Paymen
|
|
|
12200
12360
|
export declare type PaymentRequestBillingFees = io.flow.v0.models.PaymentRequestBillingFees;
|
|
12201
12361
|
export declare type PaymentRequestBundle = io.flow.v0.models.PaymentRequestBundle;
|
|
12202
12362
|
export declare type PaymentRequestBundleForm = io.flow.v0.models.PaymentRequestBundleForm;
|
|
12363
|
+
export declare type PaymentRequestCancellationReason = io.flow.v0.unions.PaymentRequestCancellationReason;
|
|
12364
|
+
export declare type PaymentRequestCancellationReasonOrderMissing = io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing;
|
|
12203
12365
|
export declare type PaymentRequestDeleted = io.flow.v0.models.PaymentRequestDeleted;
|
|
12204
12366
|
export declare type PaymentRequestForm = io.flow.v0.models.PaymentRequestForm;
|
|
12205
12367
|
export declare type PaymentRequestReference = io.flow.v0.models.PaymentRequestReference;
|
|
@@ -12385,6 +12547,7 @@ export declare type RegionReference = io.flow.v0.models.RegionReference;
|
|
|
12385
12547
|
export declare type RegionSetting = io.flow.v0.models.RegionSetting;
|
|
12386
12548
|
export declare type RegionSettingForm = io.flow.v0.models.RegionSettingForm;
|
|
12387
12549
|
export declare type RegionType = io.flow.v0.enums.RegionType;
|
|
12550
|
+
export declare type RejectionPutForm = io.flow.v0.models.RejectionPutForm;
|
|
12388
12551
|
export declare type RemoteAreaByWeightServiceFee = io.flow.v0.models.RemoteAreaByWeightServiceFee;
|
|
12389
12552
|
export declare type RemoteAreaRatecardFee = io.flow.v0.models.RemoteAreaRatecardFee;
|
|
12390
12553
|
export declare type RemoteAreaServiceFee = io.flow.v0.models.RemoteAreaServiceFee;
|
|
@@ -12709,11 +12872,12 @@ export declare type TransactionDetails = io.flow.v0.unions.TransactionDetails;
|
|
|
12709
12872
|
export declare type TransactionDetailsCard = io.flow.v0.models.TransactionDetailsCard;
|
|
12710
12873
|
export declare type TransactionMetadata = io.flow.v0.unions.TransactionMetadata;
|
|
12711
12874
|
export declare type TransactionMetadataCarrierCharge = io.flow.v0.models.TransactionMetadataCarrierCharge;
|
|
12712
|
-
export declare type TransactionMetadataCarrierFee = io.flow.v0.models.TransactionMetadataCarrierFee;
|
|
12713
|
-
export declare type TransactionMetadataCarrierFeeData = io.flow.v0.models.TransactionMetadataCarrierFeeData;
|
|
12714
12875
|
export declare type TransactionMetadataChannel = io.flow.v0.models.TransactionMetadataChannel;
|
|
12715
12876
|
export declare type TransactionMetadataChannelCardMetadata = io.flow.v0.models.TransactionMetadataChannelCardMetadata;
|
|
12716
12877
|
export declare type TransactionMetadataChannelCardMetadataIssuerSummary = io.flow.v0.models.TransactionMetadataChannelCardMetadataIssuerSummary;
|
|
12878
|
+
export declare type TransactionMetadataChannelOrganizationTransaction = io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
12879
|
+
export declare type TransactionMetadataFailedPayout = io.flow.v0.models.TransactionMetadataFailedPayout;
|
|
12880
|
+
export declare type TransactionMetadataFailedPayoutReference = io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
12717
12881
|
export declare type TransactionMetadataManual = io.flow.v0.models.TransactionMetadataManual;
|
|
12718
12882
|
export declare type TransactionMetadataOriginalTransaction = io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
12719
12883
|
export declare type TransactionMetadataOutboundTransaction = io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
@@ -12721,7 +12885,11 @@ export declare type TransactionMetadataPaymentTransaction = io.flow.v0.models.Tr
|
|
|
12721
12885
|
export declare type TransactionMetadataShippingLabel = io.flow.v0.models.TransactionMetadataShippingLabel;
|
|
12722
12886
|
export declare type TransactionMetadataShippingLabelCarrier = io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
12723
12887
|
export declare type TransactionMetadataTrueup = io.flow.v0.models.TransactionMetadataTrueup;
|
|
12888
|
+
export declare type TransactionMetadataTrueupBase = io.flow.v0.models.TransactionMetadataTrueupBase;
|
|
12889
|
+
export declare type TransactionMetadataTrueupBaseData = io.flow.v0.models.TransactionMetadataTrueupBaseData;
|
|
12724
12890
|
export declare type TransactionMetadataTrueupData = io.flow.v0.models.TransactionMetadataTrueupData;
|
|
12891
|
+
export declare type TransactionMetadataTrueupSurcharge = io.flow.v0.models.TransactionMetadataTrueupSurcharge;
|
|
12892
|
+
export declare type TransactionMetadataTrueupSurchargeData = io.flow.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
12725
12893
|
export declare type TransactionNetworkDetailsCard = io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
12726
12894
|
export declare type TransactionReference = io.flow.v0.models.TransactionReference;
|
|
12727
12895
|
export declare type TransactionSource = io.flow.v0.enums.TransactionSource;
|
|
@@ -12729,8 +12897,12 @@ export declare type TransactionUpserted = io.flow.v0.models.TransactionUpserted;
|
|
|
12729
12897
|
export declare type TransitEstimate = io.flow.v0.models.TransitEstimate;
|
|
12730
12898
|
export declare type TransitWindow = io.flow.v0.models.TransitWindow;
|
|
12731
12899
|
export declare type TrueupLabelBase = io.flow.v0.models.TrueupLabelBase;
|
|
12900
|
+
export declare type TrueupLabelBaseV2 = io.flow.v0.models.TrueupLabelBaseV2;
|
|
12901
|
+
export declare type TrueupLabelBaseWeight = io.flow.v0.models.TrueupLabelBaseWeight;
|
|
12902
|
+
export declare type TrueupLabelFuel = io.flow.v0.models.TrueupLabelFuel;
|
|
12732
12903
|
export declare type TrueupLabelSurcharge = io.flow.v0.models.TrueupLabelSurcharge;
|
|
12733
12904
|
export declare type TrueupLabelUnits = io.flow.v0.models.TrueupLabelUnits;
|
|
12905
|
+
export declare type TrueupLabelWeights = io.flow.v0.models.TrueupLabelWeights;
|
|
12734
12906
|
export declare type TrueupSource = io.flow.v0.enums.TrueupSource;
|
|
12735
12907
|
export declare type TrueupSurchargeType = io.flow.v0.enums.TrueupSurchargeType;
|
|
12736
12908
|
export declare type UltimateBeneficiaryOwner = io.flow.v0.models.UltimateBeneficiaryOwner;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.96",
|
|
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": "25d6ba675365a3fb318abcc4bc935dd549089238"
|
|
29
29
|
}
|