@flowio/api-prop-types 10.16.76 → 10.16.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +225 -25
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +225 -25
- package/src/api.js +282 -18
package/lib/api.d.ts
CHANGED
|
@@ -153,6 +153,8 @@ declare namespace io.flow.google.pay.v0.unions {
|
|
|
153
153
|
declare namespace io.flow.stripe.v0.enums {
|
|
154
154
|
type AccountType = 'platform' | 'custom' | 'standard' | 'express';
|
|
155
155
|
type ApplePayType = 'apple_pay' | 'apple_pay_later';
|
|
156
|
+
type BankIdeal = 'abn_amro' | 'asn_bank' | 'bunq' | 'handelsbanken' | 'ing' | 'knab' | 'moneyou' | 'n26' | 'nn' | 'rabobank' | 'regiobank' | 'revolut' | 'sns_bank' | 'triodos_bank' | 'van_lanschot' | 'yoursafe';
|
|
157
|
+
type BicIdeal = 'ABNANL2A' | 'ASNBNL21' | 'BITSNL2A' | 'BUNQNL2A' | 'FVLBNL22' | 'HANDNL2A' | 'INGBNL2A' | 'KNABNL2H' | 'MOYONL21' | 'NNBANL2G' | 'NTSBDEB1' | 'RABONL2U' | 'RBRBNL21' | 'REVOIE23' | 'REVOLT21' | 'SNSBNL2A' | 'TRIONL2U';
|
|
156
158
|
type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
|
|
157
159
|
type CaptureMethod = 'automatic' | 'manual';
|
|
158
160
|
type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
|
|
@@ -174,9 +176,10 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
174
176
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
175
177
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
176
178
|
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
177
|
-
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
179
|
+
type PaymentMethodType = 'card' | 'card_present' | 'ideal' | 'klarna' | 'bancontact';
|
|
178
180
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
179
181
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
182
|
+
type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
|
|
180
183
|
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';
|
|
181
184
|
type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
|
|
182
185
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
@@ -667,8 +670,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
667
670
|
readonly 'id': string;
|
|
668
671
|
readonly 'object': string;
|
|
669
672
|
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
673
|
+
readonly 'bancontact'?: any/*object*/;
|
|
670
674
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
671
675
|
readonly 'card_present'?: any/*object*/;
|
|
676
|
+
readonly 'ideal'?: any/*object*/;
|
|
672
677
|
readonly 'klarna'?: any/*object*/;
|
|
673
678
|
readonly 'created': number;
|
|
674
679
|
readonly 'customer'?: string;
|
|
@@ -703,6 +708,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
703
708
|
readonly 'cvc'?: string;
|
|
704
709
|
}
|
|
705
710
|
|
|
711
|
+
interface PaymentMethodDataBancontact {
|
|
712
|
+
readonly 'type': 'bancontact';
|
|
713
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
714
|
+
readonly 'metadata'?: any/*object*/;
|
|
715
|
+
}
|
|
716
|
+
|
|
706
717
|
interface PaymentMethodDataCard {
|
|
707
718
|
readonly 'type': 'card';
|
|
708
719
|
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -710,6 +721,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
710
721
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
711
722
|
}
|
|
712
723
|
|
|
724
|
+
interface PaymentMethodDataIdeal {
|
|
725
|
+
readonly 'type': 'ideal';
|
|
726
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
727
|
+
readonly 'metadata'?: any/*object*/;
|
|
728
|
+
readonly 'ideal': io.flow.stripe.v0.models.PaymentMethodIdealForm;
|
|
729
|
+
}
|
|
730
|
+
|
|
713
731
|
interface PaymentMethodDataKlarna {
|
|
714
732
|
readonly 'type': 'klarna';
|
|
715
733
|
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -717,6 +735,22 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
717
735
|
readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
718
736
|
}
|
|
719
737
|
|
|
738
|
+
interface PaymentMethodDetailsBancontact {
|
|
739
|
+
readonly 'type': 'bancontact';
|
|
740
|
+
readonly 'bancontact': io.flow.stripe.v0.models.PaymentMethodDetailsBancontactInformation;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
interface PaymentMethodDetailsBancontactInformation {
|
|
744
|
+
readonly 'bank_code'?: string;
|
|
745
|
+
readonly 'bank_name'?: string;
|
|
746
|
+
readonly 'bic'?: string;
|
|
747
|
+
readonly 'generated_sepa_debit'?: string;
|
|
748
|
+
readonly 'generated_sepa_debit_mandate'?: string;
|
|
749
|
+
readonly 'iban_last4'?: string;
|
|
750
|
+
readonly 'preferred_language'?: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
751
|
+
readonly 'verified_name'?: string;
|
|
752
|
+
}
|
|
753
|
+
|
|
720
754
|
interface PaymentMethodDetailsCard {
|
|
721
755
|
readonly 'type': 'card';
|
|
722
756
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -748,6 +782,20 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
748
782
|
readonly 'overcapture'?: io.flow.stripe.v0.models.Overcapture;
|
|
749
783
|
}
|
|
750
784
|
|
|
785
|
+
interface PaymentMethodDetailsIdeal {
|
|
786
|
+
readonly 'type': 'ideal';
|
|
787
|
+
readonly 'ideal': io.flow.stripe.v0.models.PaymentMethodDetailsIdealInformation;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
interface PaymentMethodDetailsIdealInformation {
|
|
791
|
+
readonly 'bank'?: io.flow.stripe.v0.enums.BankIdeal;
|
|
792
|
+
readonly 'bic'?: io.flow.stripe.v0.enums.BicIdeal;
|
|
793
|
+
readonly 'generated_sepa_debit'?: string;
|
|
794
|
+
readonly 'generated_sepa_debit_mandate'?: string;
|
|
795
|
+
readonly 'iban_last4'?: string;
|
|
796
|
+
readonly 'verified_name'?: string;
|
|
797
|
+
}
|
|
798
|
+
|
|
751
799
|
interface PaymentMethodDetailsKlarna {
|
|
752
800
|
readonly 'type': 'klarna';
|
|
753
801
|
readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
|
|
@@ -758,6 +806,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
758
806
|
readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
759
807
|
}
|
|
760
808
|
|
|
809
|
+
interface PaymentMethodFormBancontact {
|
|
810
|
+
readonly 'type': 'bancontact';
|
|
811
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
812
|
+
readonly 'metadata'?: any/*object*/;
|
|
813
|
+
readonly 'bancontact': any/*object*/;
|
|
814
|
+
}
|
|
815
|
+
|
|
761
816
|
interface PaymentMethodFormCard {
|
|
762
817
|
readonly 'type': 'card';
|
|
763
818
|
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -765,6 +820,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
765
820
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
766
821
|
}
|
|
767
822
|
|
|
823
|
+
interface PaymentMethodFormIdeal {
|
|
824
|
+
readonly 'type': 'ideal';
|
|
825
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
826
|
+
readonly 'metadata'?: any/*object*/;
|
|
827
|
+
readonly 'ideal': io.flow.stripe.v0.models.PaymentMethodIdealForm;
|
|
828
|
+
}
|
|
829
|
+
|
|
768
830
|
interface PaymentMethodFormKlarna {
|
|
769
831
|
readonly 'type': 'klarna';
|
|
770
832
|
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -772,13 +834,27 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
772
834
|
readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
773
835
|
}
|
|
774
836
|
|
|
837
|
+
interface PaymentMethodIdealForm {
|
|
838
|
+
readonly 'bank'?: string;
|
|
839
|
+
}
|
|
840
|
+
|
|
775
841
|
interface PaymentMethodKlarnaForm {
|
|
776
842
|
readonly 'dob'?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
777
843
|
}
|
|
778
844
|
|
|
779
845
|
interface PaymentMethodOptions {
|
|
780
846
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
847
|
+
readonly 'ideal'?: io.flow.stripe.v0.models.PaymentMethodOptionsIdeal;
|
|
781
848
|
readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
849
|
+
readonly 'bancontact'?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontact;
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
interface PaymentMethodOptionsBancontact {
|
|
853
|
+
readonly 'preferred_language': io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
interface PaymentMethodOptionsBancontactForm {
|
|
857
|
+
readonly 'preferred_language': io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
782
858
|
}
|
|
783
859
|
|
|
784
860
|
interface PaymentMethodOptionsCard {
|
|
@@ -798,7 +874,17 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
798
874
|
|
|
799
875
|
interface PaymentMethodOptionsForm {
|
|
800
876
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
877
|
+
readonly 'ideal'?: io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm;
|
|
801
878
|
readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
879
|
+
readonly 'bancontact'?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontactForm;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
interface PaymentMethodOptionsIdeal {
|
|
883
|
+
readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
interface PaymentMethodOptionsIdealForm {
|
|
887
|
+
readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
802
888
|
}
|
|
803
889
|
|
|
804
890
|
interface PaymentMethodOptionsKlarna {
|
|
@@ -1110,9 +1196,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1110
1196
|
|
|
1111
1197
|
declare namespace io.flow.stripe.v0.unions {
|
|
1112
1198
|
type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
|
|
1113
|
-
type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna);
|
|
1114
|
-
type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
|
|
1115
|
-
type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna);
|
|
1199
|
+
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);
|
|
1200
|
+
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);
|
|
1201
|
+
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);
|
|
1116
1202
|
}
|
|
1117
1203
|
|
|
1118
1204
|
declare namespace io.flow.shopify.external.v0.enums {
|
|
@@ -1280,6 +1366,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1280
1366
|
readonly 'published_at'?: string;
|
|
1281
1367
|
readonly 'created_at': string;
|
|
1282
1368
|
readonly 'updated_at': string;
|
|
1369
|
+
readonly 'has_variants_that_requires_components'?: boolean;
|
|
1283
1370
|
}
|
|
1284
1371
|
|
|
1285
1372
|
interface ProductDelete {
|
|
@@ -2192,7 +2279,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2192
2279
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
2193
2280
|
type EntityIdentifierType = 'ioss' | 'voec';
|
|
2194
2281
|
type Environment = 'sandbox' | 'production';
|
|
2195
|
-
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';
|
|
2282
|
+
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';
|
|
2196
2283
|
type ExceptionType = 'open' | 'closed';
|
|
2197
2284
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
2198
2285
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -2270,7 +2357,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2270
2357
|
type PaymentMethodRuleContentKey = 'description';
|
|
2271
2358
|
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
2272
2359
|
type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
|
|
2273
|
-
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';
|
|
2360
|
+
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';
|
|
2274
2361
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
2275
2362
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
2276
2363
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
@@ -2339,9 +2426,9 @@ declare namespace io.flow.v0.enums {
|
|
|
2339
2426
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
2340
2427
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
2341
2428
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
2342
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | '
|
|
2343
|
-
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
2344
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion';
|
|
2429
|
+
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';
|
|
2430
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
2431
|
+
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';
|
|
2345
2432
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
2346
2433
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
2347
2434
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
@@ -6845,6 +6932,29 @@ declare namespace io.flow.v0.models {
|
|
|
6845
6932
|
readonly 'number': string;
|
|
6846
6933
|
}
|
|
6847
6934
|
|
|
6935
|
+
interface LabelProcessingModification {
|
|
6936
|
+
readonly 'id': string;
|
|
6937
|
+
readonly 'modifications': string[];
|
|
6938
|
+
readonly 'destination': io.flow.v0.models.ShippingAddress;
|
|
6939
|
+
readonly 'destination_provided_to_carrier'?: io.flow.v0.models.ShippingAddress;
|
|
6940
|
+
}
|
|
6941
|
+
|
|
6942
|
+
interface LabelProcessingModificationDeleted {
|
|
6943
|
+
readonly 'discriminator': 'label_processing_modification_deleted';
|
|
6944
|
+
readonly 'event_id': string;
|
|
6945
|
+
readonly 'timestamp': string;
|
|
6946
|
+
readonly 'organization': string;
|
|
6947
|
+
readonly 'id': string;
|
|
6948
|
+
}
|
|
6949
|
+
|
|
6950
|
+
interface LabelProcessingModificationUpserted {
|
|
6951
|
+
readonly 'discriminator': 'label_processing_modification_upserted';
|
|
6952
|
+
readonly 'event_id': string;
|
|
6953
|
+
readonly 'timestamp': string;
|
|
6954
|
+
readonly 'organization': string;
|
|
6955
|
+
readonly 'label_processing_modification': io.flow.v0.models.LabelProcessingModification;
|
|
6956
|
+
}
|
|
6957
|
+
|
|
6848
6958
|
interface LabelReference {
|
|
6849
6959
|
readonly 'id': string;
|
|
6850
6960
|
}
|
|
@@ -9088,6 +9198,15 @@ declare namespace io.flow.v0.models {
|
|
|
9088
9198
|
readonly 'processor': string;
|
|
9089
9199
|
}
|
|
9090
9200
|
|
|
9201
|
+
interface PaymentProcessorTransactionDetailsApm {
|
|
9202
|
+
readonly 'discriminator': 'apm';
|
|
9203
|
+
readonly 'transaction_identifier'?: string;
|
|
9204
|
+
readonly 'capture_identifier'?: string;
|
|
9205
|
+
readonly 'method_type'?: string;
|
|
9206
|
+
readonly 'result_status'?: string;
|
|
9207
|
+
readonly 'reason_code'?: string;
|
|
9208
|
+
}
|
|
9209
|
+
|
|
9091
9210
|
interface PaymentProcessorTransactionDetailsCard {
|
|
9092
9211
|
readonly 'discriminator': 'card';
|
|
9093
9212
|
readonly 'transaction_identifier'?: string;
|
|
@@ -9175,6 +9294,11 @@ declare namespace io.flow.v0.models {
|
|
|
9175
9294
|
readonly 'billing': io.flow.v0.models.PaymentRequestBilling;
|
|
9176
9295
|
}
|
|
9177
9296
|
|
|
9297
|
+
interface PaymentRequestCancellationReasonOrderMissing {
|
|
9298
|
+
readonly 'type': 'order_missing';
|
|
9299
|
+
readonly 'description'?: string;
|
|
9300
|
+
}
|
|
9301
|
+
|
|
9178
9302
|
interface PaymentRequestDeleted {
|
|
9179
9303
|
readonly 'discriminator': 'payment_request_deleted';
|
|
9180
9304
|
readonly 'event_id': string;
|
|
@@ -9315,6 +9439,7 @@ declare namespace io.flow.v0.models {
|
|
|
9315
9439
|
interface PaypalAuthorizationDetails {
|
|
9316
9440
|
readonly 'discriminator': 'paypal_authorization_details';
|
|
9317
9441
|
readonly 'payment_id': string;
|
|
9442
|
+
readonly 'internal_payment_id'?: string;
|
|
9318
9443
|
readonly 'payment_method'?: string;
|
|
9319
9444
|
readonly 'payment_state'?: string;
|
|
9320
9445
|
readonly 'payer_id'?: string;
|
|
@@ -10311,6 +10436,11 @@ declare namespace io.flow.v0.models {
|
|
|
10311
10436
|
readonly 'status': io.flow.v0.enums.AvailabilityStatus;
|
|
10312
10437
|
}
|
|
10313
10438
|
|
|
10439
|
+
interface RejectionPutForm {
|
|
10440
|
+
readonly 'reason': io.flow.v0.enums.MerchantRejectedReason;
|
|
10441
|
+
readonly 'description': string;
|
|
10442
|
+
}
|
|
10443
|
+
|
|
10314
10444
|
interface RemoteAreaByWeightServiceFee {
|
|
10315
10445
|
readonly 'discriminator': 'remote_area_by_weight_service_fee';
|
|
10316
10446
|
readonly 'amount': io.flow.v0.models.Money;
|
|
@@ -12226,21 +12356,11 @@ declare namespace io.flow.v0.models {
|
|
|
12226
12356
|
readonly 'outbound'?: io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
12227
12357
|
}
|
|
12228
12358
|
|
|
12229
|
-
interface TransactionMetadataCarrierFee {
|
|
12230
|
-
readonly 'discriminator': 'carrier_fee';
|
|
12231
|
-
readonly 'outbound': io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
12232
|
-
readonly 'estimate': io.flow.v0.models.TransactionMetadataCarrierFeeData;
|
|
12233
|
-
readonly 'actual': io.flow.v0.models.TransactionMetadataCarrierFeeData;
|
|
12234
|
-
}
|
|
12235
|
-
|
|
12236
|
-
interface TransactionMetadataCarrierFeeData {
|
|
12237
|
-
readonly 'surcharges': io.flow.v0.models.TrueupLabelSurcharge[];
|
|
12238
|
-
}
|
|
12239
|
-
|
|
12240
12359
|
interface TransactionMetadataChannel {
|
|
12241
12360
|
readonly 'discriminator': 'channel';
|
|
12242
12361
|
readonly 'method': string;
|
|
12243
12362
|
readonly 'card'?: io.flow.v0.models.TransactionMetadataChannelCardMetadata;
|
|
12363
|
+
readonly 'organization_transaction': io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
12244
12364
|
}
|
|
12245
12365
|
|
|
12246
12366
|
interface TransactionMetadataChannelCardMetadata {
|
|
@@ -12253,6 +12373,20 @@ declare namespace io.flow.v0.models {
|
|
|
12253
12373
|
readonly 'country': string;
|
|
12254
12374
|
}
|
|
12255
12375
|
|
|
12376
|
+
interface TransactionMetadataChannelOrganizationTransaction {
|
|
12377
|
+
readonly 'id': string;
|
|
12378
|
+
readonly 'metadata': io.flow.v0.models.TransactionMetadataPaymentTransaction;
|
|
12379
|
+
}
|
|
12380
|
+
|
|
12381
|
+
interface TransactionMetadataFailedPayout {
|
|
12382
|
+
readonly 'discriminator': 'failed_payout';
|
|
12383
|
+
readonly 'failed_payout': io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
12384
|
+
}
|
|
12385
|
+
|
|
12386
|
+
interface TransactionMetadataFailedPayoutReference {
|
|
12387
|
+
readonly 'id': string;
|
|
12388
|
+
}
|
|
12389
|
+
|
|
12256
12390
|
interface TransactionMetadataManual {
|
|
12257
12391
|
readonly 'discriminator': 'manual';
|
|
12258
12392
|
readonly 'description': string;
|
|
@@ -12270,6 +12404,7 @@ declare namespace io.flow.v0.models {
|
|
|
12270
12404
|
|
|
12271
12405
|
interface TransactionMetadataPaymentTransaction {
|
|
12272
12406
|
readonly 'discriminator': 'payment_transaction';
|
|
12407
|
+
readonly 'id'?: string;
|
|
12273
12408
|
readonly 'key'?: string;
|
|
12274
12409
|
}
|
|
12275
12410
|
|
|
@@ -12292,6 +12427,22 @@ declare namespace io.flow.v0.models {
|
|
|
12292
12427
|
readonly 'actual': io.flow.v0.models.TransactionMetadataTrueupData;
|
|
12293
12428
|
}
|
|
12294
12429
|
|
|
12430
|
+
interface TransactionMetadataTrueupBase {
|
|
12431
|
+
readonly 'discriminator': 'trueup_base';
|
|
12432
|
+
readonly 'original': io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
12433
|
+
readonly 'estimate': io.flow.v0.models.TransactionMetadataTrueupBaseData;
|
|
12434
|
+
readonly 'actual': io.flow.v0.models.TransactionMetadataTrueupBaseData;
|
|
12435
|
+
}
|
|
12436
|
+
|
|
12437
|
+
interface TransactionMetadataTrueupBaseData {
|
|
12438
|
+
readonly 'source': io.flow.v0.enums.TrueupSource;
|
|
12439
|
+
readonly 'weights': io.flow.v0.models.TrueupLabelWeights;
|
|
12440
|
+
readonly 'units': io.flow.v0.models.TrueupLabelUnits;
|
|
12441
|
+
readonly 'base': io.flow.v0.models.TrueupLabelBaseV2;
|
|
12442
|
+
readonly 'fuel'?: io.flow.v0.models.TrueupLabelFuel;
|
|
12443
|
+
readonly 'total': number;
|
|
12444
|
+
}
|
|
12445
|
+
|
|
12295
12446
|
interface TransactionMetadataTrueupData {
|
|
12296
12447
|
readonly 'source': io.flow.v0.enums.TrueupSource;
|
|
12297
12448
|
readonly 'units': io.flow.v0.models.TrueupLabelUnits;
|
|
@@ -12302,6 +12453,18 @@ declare namespace io.flow.v0.models {
|
|
|
12302
12453
|
readonly 'dimensional'?: io.flow.v0.models.DimensionalWeight;
|
|
12303
12454
|
}
|
|
12304
12455
|
|
|
12456
|
+
interface TransactionMetadataTrueupSurcharge {
|
|
12457
|
+
readonly 'discriminator': 'trueup_surcharge';
|
|
12458
|
+
readonly 'original': io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
12459
|
+
readonly 'estimate': io.flow.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
12460
|
+
readonly 'actual': io.flow.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
12461
|
+
}
|
|
12462
|
+
|
|
12463
|
+
interface TransactionMetadataTrueupSurchargeData {
|
|
12464
|
+
readonly 'source': io.flow.v0.enums.TrueupSource;
|
|
12465
|
+
readonly 'surcharge': io.flow.v0.models.TrueupLabelSurcharge;
|
|
12466
|
+
}
|
|
12467
|
+
|
|
12305
12468
|
interface TransactionNetworkDetailsCard {
|
|
12306
12469
|
readonly 'network_transaction_id'?: string;
|
|
12307
12470
|
readonly 'network'?: io.flow.v0.enums.CardType;
|
|
@@ -12339,6 +12502,20 @@ declare namespace io.flow.v0.models {
|
|
|
12339
12502
|
readonly 'weight': number;
|
|
12340
12503
|
}
|
|
12341
12504
|
|
|
12505
|
+
interface TrueupLabelBaseV2 {
|
|
12506
|
+
readonly 'amount': number;
|
|
12507
|
+
}
|
|
12508
|
+
|
|
12509
|
+
interface TrueupLabelBaseWeight {
|
|
12510
|
+
readonly 'weight': number;
|
|
12511
|
+
}
|
|
12512
|
+
|
|
12513
|
+
interface TrueupLabelFuel {
|
|
12514
|
+
readonly 'amount': number;
|
|
12515
|
+
readonly 'percentage'?: number;
|
|
12516
|
+
readonly 'per_weight_unit'?: number;
|
|
12517
|
+
}
|
|
12518
|
+
|
|
12342
12519
|
interface TrueupLabelSurcharge {
|
|
12343
12520
|
readonly 'amount': number;
|
|
12344
12521
|
readonly 'type': io.flow.v0.enums.TrueupSurchargeType;
|
|
@@ -12351,6 +12528,12 @@ declare namespace io.flow.v0.models {
|
|
|
12351
12528
|
readonly 'length'?: io.flow.v0.enums.UnitOfLength;
|
|
12352
12529
|
}
|
|
12353
12530
|
|
|
12531
|
+
interface TrueupLabelWeights {
|
|
12532
|
+
readonly 'base': io.flow.v0.models.TrueupLabelBaseWeight;
|
|
12533
|
+
readonly 'dead'?: io.flow.v0.models.DeadWeight;
|
|
12534
|
+
readonly 'dimensional'?: io.flow.v0.models.DimensionalWeight;
|
|
12535
|
+
}
|
|
12536
|
+
|
|
12354
12537
|
interface UltimateBeneficiaryOwner {
|
|
12355
12538
|
readonly 'name': string;
|
|
12356
12539
|
readonly 'dob': string;
|
|
@@ -12597,7 +12780,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12597
12780
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
12598
12781
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
12599
12782
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
12600
|
-
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);
|
|
12783
|
+
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);
|
|
12601
12784
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
12602
12785
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
12603
12786
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -12653,7 +12836,8 @@ declare namespace io.flow.v0.unions {
|
|
|
12653
12836
|
});
|
|
12654
12837
|
|
|
12655
12838
|
type PaymentOrderReference = (io.flow.v0.models.AuthorizationOrderReference | io.flow.v0.models.PaymentPaymentRequestReference);
|
|
12656
|
-
type PaymentProcessorTransactionDetails = (io.flow.v0.models.PaymentProcessorTransactionDetailsCard);
|
|
12839
|
+
type PaymentProcessorTransactionDetails = (io.flow.v0.models.PaymentProcessorTransactionDetailsCard | io.flow.v0.models.PaymentProcessorTransactionDetailsApm);
|
|
12840
|
+
type PaymentRequestCancellationReason = (io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing);
|
|
12657
12841
|
type PaymentSource = (io.flow.v0.models.CardPaymentSource);
|
|
12658
12842
|
type PaymentSourceForm = (io.flow.v0.models.CardPaymentSourceForm);
|
|
12659
12843
|
type PayoutStatus = (io.flow.v0.models.PayoutStatusScheduled | io.flow.v0.models.PayoutStatusSent | io.flow.v0.models.PayoutStatusFailed);
|
|
@@ -12686,7 +12870,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12686
12870
|
type Token = (io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken);
|
|
12687
12871
|
type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
|
|
12688
12872
|
type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
|
|
12689
|
-
type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup | io.flow.v0.models.
|
|
12873
|
+
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);
|
|
12690
12874
|
}
|
|
12691
12875
|
|
|
12692
12876
|
export const abandonedOrderPromotionStatus: PropTypes.Requireable<io.flow.v0.enums.AbandonedOrderPromotionStatus>;
|
|
@@ -13540,6 +13724,9 @@ export const labelDeletedV2: PropTypes.Requireable<io.flow.v0.models.LabelDelete
|
|
|
13540
13724
|
export const labelFormatDeleted: PropTypes.Requireable<io.flow.v0.models.LabelFormatDeleted>;
|
|
13541
13725
|
export const labelFormatUpserted: PropTypes.Requireable<io.flow.v0.models.LabelFormatUpserted>;
|
|
13542
13726
|
export const labelOrderSummary: PropTypes.Requireable<io.flow.v0.models.LabelOrderSummary>;
|
|
13727
|
+
export const labelProcessingModification: PropTypes.Requireable<io.flow.v0.models.LabelProcessingModification>;
|
|
13728
|
+
export const labelProcessingModificationDeleted: PropTypes.Requireable<io.flow.v0.models.LabelProcessingModificationDeleted>;
|
|
13729
|
+
export const labelProcessingModificationUpserted: PropTypes.Requireable<io.flow.v0.models.LabelProcessingModificationUpserted>;
|
|
13543
13730
|
export const labelReference: PropTypes.Requireable<io.flow.v0.models.LabelReference>;
|
|
13544
13731
|
export const labelSurcharge: PropTypes.Requireable<io.flow.v0.models.LabelSurcharge>;
|
|
13545
13732
|
export const labelSurchargeDetailFlat: PropTypes.Requireable<io.flow.v0.models.LabelSurchargeDetailFlat>;
|
|
@@ -13854,6 +14041,7 @@ export const paymentProcessorAccount: PropTypes.Requireable<io.flow.v0.models.Pa
|
|
|
13854
14041
|
export const paymentProcessorAccountReference: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorAccountReference>;
|
|
13855
14042
|
export const paymentProcessorIdentifier: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorIdentifier>;
|
|
13856
14043
|
export const paymentProcessorReference: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorReference>;
|
|
14044
|
+
export const paymentProcessorTransactionDetailsApm: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorTransactionDetailsApm>;
|
|
13857
14045
|
export const paymentProcessorTransactionDetailsCard: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorTransactionDetailsCard>;
|
|
13858
14046
|
export const paymentReference: PropTypes.Requireable<io.flow.v0.models.PaymentReference>;
|
|
13859
14047
|
export const paymentRefund: PropTypes.Requireable<io.flow.v0.models.PaymentRefund>;
|
|
@@ -13865,6 +14053,7 @@ export const paymentRequestBillingCurrencyRate: PropTypes.Requireable<io.flow.v0
|
|
|
13865
14053
|
export const paymentRequestBillingFees: PropTypes.Requireable<io.flow.v0.models.PaymentRequestBillingFees>;
|
|
13866
14054
|
export const paymentRequestBundle: PropTypes.Requireable<io.flow.v0.models.PaymentRequestBundle>;
|
|
13867
14055
|
export const paymentRequestBundleForm: PropTypes.Requireable<io.flow.v0.models.PaymentRequestBundleForm>;
|
|
14056
|
+
export const paymentRequestCancellationReasonOrderMissing: PropTypes.Requireable<io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing>;
|
|
13868
14057
|
export const paymentRequestDeleted: PropTypes.Requireable<io.flow.v0.models.PaymentRequestDeleted>;
|
|
13869
14058
|
export const paymentRequestForm: PropTypes.Requireable<io.flow.v0.models.PaymentRequestForm>;
|
|
13870
14059
|
export const paymentRequestReference: PropTypes.Requireable<io.flow.v0.models.PaymentRequestReference>;
|
|
@@ -14013,6 +14202,7 @@ export const region: PropTypes.Requireable<io.flow.v0.models.Region>;
|
|
|
14013
14202
|
export const regionReference: PropTypes.Requireable<io.flow.v0.models.RegionReference>;
|
|
14014
14203
|
export const regionSetting: PropTypes.Requireable<io.flow.v0.models.RegionSetting>;
|
|
14015
14204
|
export const regionSettingForm: PropTypes.Requireable<io.flow.v0.models.RegionSettingForm>;
|
|
14205
|
+
export const rejectionPutForm: PropTypes.Requireable<io.flow.v0.models.RejectionPutForm>;
|
|
14016
14206
|
export const remoteAreaByWeightServiceFee: PropTypes.Requireable<io.flow.v0.models.RemoteAreaByWeightServiceFee>;
|
|
14017
14207
|
export const remoteAreaRatecardFee: PropTypes.Requireable<io.flow.v0.models.RemoteAreaRatecardFee>;
|
|
14018
14208
|
export const remoteAreaServiceFee: PropTypes.Requireable<io.flow.v0.models.RemoteAreaServiceFee>;
|
|
@@ -14271,11 +14461,12 @@ export const tradeAgreementDuty: PropTypes.Requireable<io.flow.v0.models.TradeAg
|
|
|
14271
14461
|
export const transaction: PropTypes.Requireable<io.flow.v0.models.Transaction>;
|
|
14272
14462
|
export const transactionDetailsCard: PropTypes.Requireable<io.flow.v0.models.TransactionDetailsCard>;
|
|
14273
14463
|
export const transactionMetadataCarrierCharge: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataCarrierCharge>;
|
|
14274
|
-
export const transactionMetadataCarrierFee: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataCarrierFee>;
|
|
14275
|
-
export const transactionMetadataCarrierFeeData: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataCarrierFeeData>;
|
|
14276
14464
|
export const transactionMetadataChannel: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataChannel>;
|
|
14277
14465
|
export const transactionMetadataChannelCardMetadata: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataChannelCardMetadata>;
|
|
14278
14466
|
export const transactionMetadataChannelCardMetadataIssuerSummary: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataChannelCardMetadataIssuerSummary>;
|
|
14467
|
+
export const transactionMetadataChannelOrganizationTransaction: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction>;
|
|
14468
|
+
export const transactionMetadataFailedPayout: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataFailedPayout>;
|
|
14469
|
+
export const transactionMetadataFailedPayoutReference: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataFailedPayoutReference>;
|
|
14279
14470
|
export const transactionMetadataManual: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataManual>;
|
|
14280
14471
|
export const transactionMetadataOriginalTransaction: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataOriginalTransaction>;
|
|
14281
14472
|
export const transactionMetadataOutboundTransaction: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataOutboundTransaction>;
|
|
@@ -14283,15 +14474,23 @@ export const transactionMetadataPaymentTransaction: PropTypes.Requireable<io.flo
|
|
|
14283
14474
|
export const transactionMetadataShippingLabel: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataShippingLabel>;
|
|
14284
14475
|
export const transactionMetadataShippingLabelCarrier: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataShippingLabelCarrier>;
|
|
14285
14476
|
export const transactionMetadataTrueup: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueup>;
|
|
14477
|
+
export const transactionMetadataTrueupBase: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueupBase>;
|
|
14478
|
+
export const transactionMetadataTrueupBaseData: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueupBaseData>;
|
|
14286
14479
|
export const transactionMetadataTrueupData: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueupData>;
|
|
14480
|
+
export const transactionMetadataTrueupSurcharge: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueupSurcharge>;
|
|
14481
|
+
export const transactionMetadataTrueupSurchargeData: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueupSurchargeData>;
|
|
14287
14482
|
export const transactionNetworkDetailsCard: PropTypes.Requireable<io.flow.v0.models.TransactionNetworkDetailsCard>;
|
|
14288
14483
|
export const transactionReference: PropTypes.Requireable<io.flow.v0.models.TransactionReference>;
|
|
14289
14484
|
export const transactionUpserted: PropTypes.Requireable<io.flow.v0.models.TransactionUpserted>;
|
|
14290
14485
|
export const transitEstimate: PropTypes.Requireable<io.flow.v0.models.TransitEstimate>;
|
|
14291
14486
|
export const transitWindow: PropTypes.Requireable<io.flow.v0.models.TransitWindow>;
|
|
14292
14487
|
export const trueupLabelBase: PropTypes.Requireable<io.flow.v0.models.TrueupLabelBase>;
|
|
14488
|
+
export const trueupLabelBaseV2: PropTypes.Requireable<io.flow.v0.models.TrueupLabelBaseV2>;
|
|
14489
|
+
export const trueupLabelBaseWeight: PropTypes.Requireable<io.flow.v0.models.TrueupLabelBaseWeight>;
|
|
14490
|
+
export const trueupLabelFuel: PropTypes.Requireable<io.flow.v0.models.TrueupLabelFuel>;
|
|
14293
14491
|
export const trueupLabelSurcharge: PropTypes.Requireable<io.flow.v0.models.TrueupLabelSurcharge>;
|
|
14294
14492
|
export const trueupLabelUnits: PropTypes.Requireable<io.flow.v0.models.TrueupLabelUnits>;
|
|
14493
|
+
export const trueupLabelWeights: PropTypes.Requireable<io.flow.v0.models.TrueupLabelWeights>;
|
|
14295
14494
|
export const ultimateBeneficiaryOwner: PropTypes.Requireable<io.flow.v0.models.UltimateBeneficiaryOwner>;
|
|
14296
14495
|
export const unharmonizedItemExportType: PropTypes.Requireable<io.flow.v0.models.UnharmonizedItemExportType>;
|
|
14297
14496
|
export const upload: PropTypes.Requireable<io.flow.v0.models.Upload>;
|
|
@@ -14400,6 +14599,7 @@ export const paymentMethodSummary: PropTypes.Requireable<io.flow.v0.unions.Payme
|
|
|
14400
14599
|
export const paymentMethodTag: PropTypes.Requireable<io.flow.v0.unions.PaymentMethodTag>;
|
|
14401
14600
|
export const paymentOrderReference: PropTypes.Requireable<io.flow.v0.unions.PaymentOrderReference>;
|
|
14402
14601
|
export const paymentProcessorTransactionDetails: PropTypes.Requireable<io.flow.v0.unions.PaymentProcessorTransactionDetails>;
|
|
14602
|
+
export const paymentRequestCancellationReason: PropTypes.Requireable<io.flow.v0.unions.PaymentRequestCancellationReason>;
|
|
14403
14603
|
export const paymentSource: PropTypes.Requireable<io.flow.v0.unions.PaymentSource>;
|
|
14404
14604
|
export const paymentSourceForm: PropTypes.Requireable<io.flow.v0.unions.PaymentSourceForm>;
|
|
14405
14605
|
export const payoutStatus: PropTypes.Requireable<io.flow.v0.unions.PayoutStatus>;
|