@flowio/types 11.24.72 → 11.24.74
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 +9441 -6794
- package/dist/api.d.ts +185 -167
- package/package.json +2 -2
- package/src/api-internal.ts +6807 -3517
- package/src/api.ts +248 -216
package/dist/api.d.ts
CHANGED
|
@@ -650,6 +650,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
650
650
|
readonly network?: string;
|
|
651
651
|
readonly request_three_d_secure?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
|
|
652
652
|
readonly stored_credential_transaction_type?: io.flow.stripe.v0.enums.StoredCredentialTransactionType;
|
|
653
|
+
readonly mcc?: string;
|
|
653
654
|
}
|
|
654
655
|
interface PaymentOutcome {
|
|
655
656
|
readonly network_status: io.flow.stripe.v0.enums.NetworkStatus;
|
|
@@ -915,11 +916,6 @@ declare namespace io.flow.stripe.v0.unions {
|
|
|
915
916
|
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
916
917
|
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard;
|
|
917
918
|
}
|
|
918
|
-
declare namespace io.flow.units.v0.enums {
|
|
919
|
-
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
920
|
-
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
921
|
-
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
922
|
-
}
|
|
923
919
|
declare namespace io.flow.shopify.external.v0.enums {
|
|
924
920
|
type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
925
921
|
type DiscountStatus = 'enabled' | 'disabled' | 'depleted';
|
|
@@ -1723,6 +1719,15 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1723
1719
|
readonly webhook: io.flow.shopify.external.v0.models.Webhook;
|
|
1724
1720
|
}
|
|
1725
1721
|
}
|
|
1722
|
+
declare namespace io.flow.error.v0.enums {
|
|
1723
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
1724
|
+
}
|
|
1725
|
+
declare namespace io.flow.error.v0.models {
|
|
1726
|
+
interface GenericError {
|
|
1727
|
+
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
1728
|
+
readonly messages: string[];
|
|
1729
|
+
}
|
|
1730
|
+
}
|
|
1726
1731
|
declare namespace io.flow.ben.test.internal.v0.models {
|
|
1727
1732
|
interface GenerateLoadMultipleOrgs {
|
|
1728
1733
|
readonly discriminator: 'generate_load_multiple_orgs';
|
|
@@ -1746,17 +1751,17 @@ declare namespace io.flow.ben.test.internal.v0.unions {
|
|
|
1746
1751
|
type GenerateLoad = io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
1747
1752
|
}
|
|
1748
1753
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
1749
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
1754
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
1750
1755
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
1751
1756
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
1752
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
1757
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
|
|
1753
1758
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
1754
1759
|
}
|
|
1755
1760
|
declare namespace io.flow.apple.pay.v0.models {
|
|
1756
1761
|
interface ApplePayLineItem {
|
|
1757
1762
|
readonly label: string;
|
|
1758
1763
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
1759
|
-
readonly amount:
|
|
1764
|
+
readonly amount: string;
|
|
1760
1765
|
}
|
|
1761
1766
|
interface ApplePayPaymentContact {
|
|
1762
1767
|
readonly email_address?: string;
|
|
@@ -1803,143 +1808,10 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
1803
1808
|
interface ApplePayShippingMethod {
|
|
1804
1809
|
readonly label: string;
|
|
1805
1810
|
readonly detail: string;
|
|
1806
|
-
readonly amount:
|
|
1811
|
+
readonly amount: string;
|
|
1807
1812
|
readonly identifier: string;
|
|
1808
1813
|
}
|
|
1809
1814
|
}
|
|
1810
|
-
declare namespace io.flow.error.v0.enums {
|
|
1811
|
-
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
1812
|
-
}
|
|
1813
|
-
declare namespace io.flow.error.v0.models {
|
|
1814
|
-
interface GenericError {
|
|
1815
|
-
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
1816
|
-
readonly messages: string[];
|
|
1817
|
-
}
|
|
1818
|
-
}
|
|
1819
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
1820
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
1821
|
-
}
|
|
1822
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
1823
|
-
interface LabelBase {
|
|
1824
|
-
readonly amount: number;
|
|
1825
|
-
readonly weight: number;
|
|
1826
|
-
}
|
|
1827
|
-
interface LabelDestination {
|
|
1828
|
-
readonly country: string;
|
|
1829
|
-
}
|
|
1830
|
-
interface LabelInvoiceRequest {
|
|
1831
|
-
readonly id: string;
|
|
1832
|
-
readonly label: io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
|
|
1833
|
-
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
1834
|
-
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
1835
|
-
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
1836
|
-
readonly total: number;
|
|
1837
|
-
readonly destination: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
1838
|
-
readonly metadata: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
1839
|
-
}
|
|
1840
|
-
interface LabelInvoiceResponseFile {
|
|
1841
|
-
readonly id: string;
|
|
1842
|
-
readonly url: string;
|
|
1843
|
-
readonly created_at: string;
|
|
1844
|
-
readonly result?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelInvoiceResponseFileResult;
|
|
1845
|
-
}
|
|
1846
|
-
interface LabelInvoiceResponseFileForm {
|
|
1847
|
-
readonly url: string;
|
|
1848
|
-
}
|
|
1849
|
-
interface LabelInvoiceResponseFileResult {
|
|
1850
|
-
readonly processed_at: string;
|
|
1851
|
-
readonly number_lines_successful: number;
|
|
1852
|
-
readonly number_lines_with_errors: number;
|
|
1853
|
-
readonly errors_url?: string;
|
|
1854
|
-
}
|
|
1855
|
-
interface LabelInvoiceResponseForm {
|
|
1856
|
-
readonly id: string;
|
|
1857
|
-
readonly label_invoice_request_id: string;
|
|
1858
|
-
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelResponseUnits;
|
|
1859
|
-
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
1860
|
-
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
|
|
1861
|
-
readonly total: number;
|
|
1862
|
-
}
|
|
1863
|
-
interface LabelMetadata {
|
|
1864
|
-
readonly ratecard: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
1865
|
-
readonly weights: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
1866
|
-
}
|
|
1867
|
-
interface LabelResponseUnits {
|
|
1868
|
-
readonly currency: string;
|
|
1869
|
-
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
1870
|
-
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
1871
|
-
}
|
|
1872
|
-
interface LabelSurcharge {
|
|
1873
|
-
readonly amount: number;
|
|
1874
|
-
readonly type: io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
1875
|
-
readonly detail: io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
|
|
1876
|
-
}
|
|
1877
|
-
interface LabelSurchargeDetailFlat {
|
|
1878
|
-
readonly discriminator: 'flat';
|
|
1879
|
-
readonly placeholder?: string;
|
|
1880
|
-
}
|
|
1881
|
-
interface LabelSurchargeDetailPerWeightUnit {
|
|
1882
|
-
readonly discriminator: 'per_weight_unit';
|
|
1883
|
-
readonly fee: number;
|
|
1884
|
-
}
|
|
1885
|
-
interface LabelSurchargeDetailPercentage {
|
|
1886
|
-
readonly discriminator: 'percentage';
|
|
1887
|
-
readonly percentage: number;
|
|
1888
|
-
}
|
|
1889
|
-
interface LabelSurchargeForm {
|
|
1890
|
-
readonly fuel?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
1891
|
-
readonly remote_area?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
1892
|
-
readonly oversize?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
1893
|
-
readonly duties_paid?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
1894
|
-
readonly emergency?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
1895
|
-
readonly peak?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
1896
|
-
readonly address_correction?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
1897
|
-
}
|
|
1898
|
-
interface LabelSurchargeSingleForm {
|
|
1899
|
-
readonly amount: number;
|
|
1900
|
-
readonly percentage?: number;
|
|
1901
|
-
readonly fee_per_weight_unit?: number;
|
|
1902
|
-
}
|
|
1903
|
-
interface LabelUnits {
|
|
1904
|
-
readonly currency: string;
|
|
1905
|
-
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
1906
|
-
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
1907
|
-
}
|
|
1908
|
-
interface MetadataProposition {
|
|
1909
|
-
readonly shipping_method: io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
|
|
1910
|
-
readonly name: string;
|
|
1911
|
-
}
|
|
1912
|
-
interface MetadataRatecard {
|
|
1913
|
-
readonly id: string;
|
|
1914
|
-
readonly proposition: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
1915
|
-
}
|
|
1916
|
-
interface MetadataWeights {
|
|
1917
|
-
readonly dead?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
1918
|
-
readonly dimensional?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
1919
|
-
}
|
|
1920
|
-
interface ShippingMethodReference {
|
|
1921
|
-
readonly id: string;
|
|
1922
|
-
}
|
|
1923
|
-
interface TrueUpLabelSummary {
|
|
1924
|
-
readonly id: string;
|
|
1925
|
-
readonly carrier_service_id: string;
|
|
1926
|
-
readonly carrier_tracking_number: string;
|
|
1927
|
-
readonly flow_tracking_number: string;
|
|
1928
|
-
readonly created_at: string;
|
|
1929
|
-
}
|
|
1930
|
-
interface WeightsDead {
|
|
1931
|
-
readonly weight: number;
|
|
1932
|
-
}
|
|
1933
|
-
interface WeightsDimensional {
|
|
1934
|
-
readonly weight: number;
|
|
1935
|
-
readonly length: number;
|
|
1936
|
-
readonly width: number;
|
|
1937
|
-
readonly height: number;
|
|
1938
|
-
}
|
|
1939
|
-
}
|
|
1940
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
|
|
1941
|
-
type LabelSurchargeDetail = io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailFlat | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPercentage | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
1942
|
-
}
|
|
1943
1815
|
declare namespace io.flow.v0.enums {
|
|
1944
1816
|
type AbandonedOrderPromotionStatus = 'active' | 'inactive';
|
|
1945
1817
|
type AbandonedOrderSettingStatus = 'active' | 'inactive';
|
|
@@ -1995,7 +1867,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1995
1867
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
1996
1868
|
type EntityIdentifierType = 'ioss' | 'voec';
|
|
1997
1869
|
type Environment = 'sandbox' | 'production';
|
|
1998
|
-
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' | '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';
|
|
1870
|
+
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';
|
|
1999
1871
|
type ExceptionType = 'open' | 'closed';
|
|
2000
1872
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
2001
1873
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -2082,6 +1954,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2082
1954
|
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact';
|
|
2083
1955
|
type PayoutAttachmentType = 'transactions';
|
|
2084
1956
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
1957
|
+
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
|
|
2085
1958
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
2086
1959
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
2087
1960
|
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
@@ -2140,7 +2013,6 @@ declare namespace io.flow.v0.enums {
|
|
|
2140
2013
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
2141
2014
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
2142
2015
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
2143
|
-
type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
|
|
2144
2016
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
2145
2017
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
2146
2018
|
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
@@ -3407,6 +3279,16 @@ declare namespace io.flow.v0.models {
|
|
|
3407
3279
|
readonly timestamp: string;
|
|
3408
3280
|
readonly id: string;
|
|
3409
3281
|
}
|
|
3282
|
+
interface ChannelCurrencyPair {
|
|
3283
|
+
readonly id: string;
|
|
3284
|
+
readonly base: string;
|
|
3285
|
+
readonly target: string;
|
|
3286
|
+
readonly rate: io.flow.v0.models.ChannelCurrencyRate;
|
|
3287
|
+
}
|
|
3288
|
+
interface ChannelCurrencyRate {
|
|
3289
|
+
readonly id: string;
|
|
3290
|
+
readonly value: number;
|
|
3291
|
+
}
|
|
3410
3292
|
interface ChannelCurrencyUpserted {
|
|
3411
3293
|
readonly discriminator: 'channel_currency_upserted';
|
|
3412
3294
|
readonly event_id: string;
|
|
@@ -3489,6 +3371,28 @@ declare namespace io.flow.v0.models {
|
|
|
3489
3371
|
readonly channel_id: string;
|
|
3490
3372
|
readonly payout: io.flow.v0.models.ChannelPayout;
|
|
3491
3373
|
}
|
|
3374
|
+
interface ChannelPendingPayoutTransaction {
|
|
3375
|
+
readonly id: string;
|
|
3376
|
+
readonly reason: io.flow.v0.models.PendingPayoutTransactionReason;
|
|
3377
|
+
readonly timeout?: io.flow.v0.models.PendingPayoutTransactionTimeout;
|
|
3378
|
+
readonly created_at: string;
|
|
3379
|
+
readonly updated_at: string;
|
|
3380
|
+
readonly deleted_at?: string;
|
|
3381
|
+
}
|
|
3382
|
+
interface ChannelPendingPayoutTransactionDeleted {
|
|
3383
|
+
readonly discriminator: 'channel_pending_payout_transaction_deleted';
|
|
3384
|
+
readonly event_id: string;
|
|
3385
|
+
readonly timestamp: string;
|
|
3386
|
+
readonly channel_id: string;
|
|
3387
|
+
readonly id: string;
|
|
3388
|
+
}
|
|
3389
|
+
interface ChannelPendingPayoutTransactionUpserted {
|
|
3390
|
+
readonly discriminator: 'channel_pending_payout_transaction_upserted';
|
|
3391
|
+
readonly event_id: string;
|
|
3392
|
+
readonly timestamp: string;
|
|
3393
|
+
readonly channel_id: string;
|
|
3394
|
+
readonly channel_pending_payout_transaction: io.flow.v0.models.ChannelPendingPayoutTransaction;
|
|
3395
|
+
}
|
|
3492
3396
|
interface ChannelRate {
|
|
3493
3397
|
readonly placeholder?: string;
|
|
3494
3398
|
}
|
|
@@ -3569,11 +3473,6 @@ declare namespace io.flow.v0.models {
|
|
|
3569
3473
|
readonly channel_id: string;
|
|
3570
3474
|
readonly id: string;
|
|
3571
3475
|
}
|
|
3572
|
-
interface ChannelTransactionPayout {
|
|
3573
|
-
readonly transaction: io.flow.v0.models.TransactionReference;
|
|
3574
|
-
readonly waiting_for?: io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
3575
|
-
readonly payout?: io.flow.v0.models.PayoutReference;
|
|
3576
|
-
}
|
|
3577
3476
|
interface ChannelTransactionUpserted {
|
|
3578
3477
|
readonly discriminator: 'channel_transaction_upserted';
|
|
3579
3478
|
readonly event_id: string;
|
|
@@ -4157,6 +4056,9 @@ declare namespace io.flow.v0.models {
|
|
|
4157
4056
|
interface DeactivationPutForm {
|
|
4158
4057
|
readonly reason: string;
|
|
4159
4058
|
}
|
|
4059
|
+
interface DeadWeight {
|
|
4060
|
+
readonly weight: number;
|
|
4061
|
+
}
|
|
4160
4062
|
interface DefaultBankAccountForm {
|
|
4161
4063
|
readonly bank_account_id: string;
|
|
4162
4064
|
}
|
|
@@ -4372,6 +4274,12 @@ declare namespace io.flow.v0.models {
|
|
|
4372
4274
|
readonly type: io.flow.v0.enums.ChangeType;
|
|
4373
4275
|
readonly dimension_estimate: io.flow.v0.models.DimensionEstimate;
|
|
4374
4276
|
}
|
|
4277
|
+
interface DimensionalWeight {
|
|
4278
|
+
readonly weight: number;
|
|
4279
|
+
readonly length?: number;
|
|
4280
|
+
readonly width?: number;
|
|
4281
|
+
readonly height?: number;
|
|
4282
|
+
}
|
|
4375
4283
|
interface Dimensions {
|
|
4376
4284
|
readonly product?: io.flow.v0.models.Dimension;
|
|
4377
4285
|
readonly packaging?: io.flow.v0.models.Dimension;
|
|
@@ -5090,9 +4998,19 @@ declare namespace io.flow.v0.models {
|
|
|
5090
4998
|
readonly starts_at?: string;
|
|
5091
4999
|
readonly ends_at?: string;
|
|
5092
5000
|
}
|
|
5001
|
+
interface FuelSurchargeByWeight {
|
|
5002
|
+
readonly discriminator: 'fuel_surcharge_by_weight';
|
|
5003
|
+
readonly amount: number;
|
|
5004
|
+
readonly weight_unit: io.flow.v0.enums.UnitOfMeasurement;
|
|
5005
|
+
}
|
|
5006
|
+
interface FuelSurchargePercent {
|
|
5007
|
+
readonly discriminator: 'fuel_surcharge_percent';
|
|
5008
|
+
readonly percent: number;
|
|
5009
|
+
}
|
|
5093
5010
|
interface FuelSurchargeRatecardFee {
|
|
5094
5011
|
readonly discriminator: 'fuel_surcharge_ratecard_fee';
|
|
5095
5012
|
readonly amount: io.flow.v0.models.Money;
|
|
5013
|
+
readonly fuel_surcharge_rate?: io.flow.v0.unions.FuelSurchargeRate;
|
|
5096
5014
|
}
|
|
5097
5015
|
interface FuelSurchargeServiceFee {
|
|
5098
5016
|
readonly discriminator: 'fuel_surcharge_service_fee';
|
|
@@ -5310,6 +5228,7 @@ declare namespace io.flow.v0.models {
|
|
|
5310
5228
|
readonly currency: string;
|
|
5311
5229
|
readonly amount: number;
|
|
5312
5230
|
readonly fees: io.flow.v0.unions.RatecardFee[];
|
|
5231
|
+
readonly weight_break?: number;
|
|
5313
5232
|
readonly total: number;
|
|
5314
5233
|
readonly lane: io.flow.v0.models.LaneSummary;
|
|
5315
5234
|
}
|
|
@@ -5870,6 +5789,10 @@ declare namespace io.flow.v0.models {
|
|
|
5870
5789
|
interface KubeHealthcheck {
|
|
5871
5790
|
readonly status: string;
|
|
5872
5791
|
}
|
|
5792
|
+
interface LabelBase {
|
|
5793
|
+
readonly amount: number;
|
|
5794
|
+
readonly weight: number;
|
|
5795
|
+
}
|
|
5873
5796
|
interface LabelDeletedV2 {
|
|
5874
5797
|
readonly discriminator: 'label_deleted_v2';
|
|
5875
5798
|
readonly event_id: string;
|
|
@@ -5899,6 +5822,23 @@ declare namespace io.flow.v0.models {
|
|
|
5899
5822
|
interface LabelReference {
|
|
5900
5823
|
readonly id: string;
|
|
5901
5824
|
}
|
|
5825
|
+
interface LabelSurcharge {
|
|
5826
|
+
readonly amount: number;
|
|
5827
|
+
readonly type: io.flow.v0.enums.TrueupSurchargeType;
|
|
5828
|
+
readonly detail: io.flow.v0.unions.LabelSurchargeDetail;
|
|
5829
|
+
}
|
|
5830
|
+
interface LabelSurchargeDetailFlat {
|
|
5831
|
+
readonly discriminator: 'flat';
|
|
5832
|
+
readonly placeholder?: string;
|
|
5833
|
+
}
|
|
5834
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
5835
|
+
readonly discriminator: 'per_weight_unit';
|
|
5836
|
+
readonly fee: number;
|
|
5837
|
+
}
|
|
5838
|
+
interface LabelSurchargeDetailPercentage {
|
|
5839
|
+
readonly discriminator: 'percentage';
|
|
5840
|
+
readonly percentage: number;
|
|
5841
|
+
}
|
|
5902
5842
|
interface LabelTrackingCarrierService {
|
|
5903
5843
|
readonly carrier_id: string;
|
|
5904
5844
|
readonly service_id?: string;
|
|
@@ -5917,6 +5857,11 @@ declare namespace io.flow.v0.models {
|
|
|
5917
5857
|
readonly timestamp: string;
|
|
5918
5858
|
readonly created_at?: string;
|
|
5919
5859
|
}
|
|
5860
|
+
interface LabelUnits {
|
|
5861
|
+
readonly currency: string;
|
|
5862
|
+
readonly weight: io.flow.v0.enums.UnitOfWeight;
|
|
5863
|
+
readonly length: io.flow.v0.enums.UnitOfLength;
|
|
5864
|
+
}
|
|
5920
5865
|
interface LabelUpserted {
|
|
5921
5866
|
readonly discriminator: 'label_upserted';
|
|
5922
5867
|
readonly event_id: string;
|
|
@@ -7285,6 +7230,28 @@ declare namespace io.flow.v0.models {
|
|
|
7285
7230
|
readonly organization: string;
|
|
7286
7231
|
readonly payout: io.flow.v0.models.OrganizationPayout;
|
|
7287
7232
|
}
|
|
7233
|
+
interface OrganizationPendingPayoutTransaction {
|
|
7234
|
+
readonly id: string;
|
|
7235
|
+
readonly reason: io.flow.v0.models.PendingPayoutTransactionReason;
|
|
7236
|
+
readonly timeout?: io.flow.v0.models.PendingPayoutTransactionTimeout;
|
|
7237
|
+
readonly created_at: string;
|
|
7238
|
+
readonly updated_at: string;
|
|
7239
|
+
readonly deleted_at?: string;
|
|
7240
|
+
}
|
|
7241
|
+
interface OrganizationPendingPayoutTransactionDeleted {
|
|
7242
|
+
readonly discriminator: 'organization_pending_payout_transaction_deleted';
|
|
7243
|
+
readonly event_id: string;
|
|
7244
|
+
readonly timestamp: string;
|
|
7245
|
+
readonly organization: string;
|
|
7246
|
+
readonly id: string;
|
|
7247
|
+
}
|
|
7248
|
+
interface OrganizationPendingPayoutTransactionUpserted {
|
|
7249
|
+
readonly discriminator: 'organization_pending_payout_transaction_upserted';
|
|
7250
|
+
readonly event_id: string;
|
|
7251
|
+
readonly timestamp: string;
|
|
7252
|
+
readonly organization: string;
|
|
7253
|
+
readonly organization_pending_payout_transaction: io.flow.v0.models.OrganizationPendingPayoutTransaction;
|
|
7254
|
+
}
|
|
7288
7255
|
interface OrganizationPutForm {
|
|
7289
7256
|
readonly name?: string;
|
|
7290
7257
|
readonly environment?: io.flow.v0.enums.Environment;
|
|
@@ -7379,11 +7346,6 @@ declare namespace io.flow.v0.models {
|
|
|
7379
7346
|
readonly organization: string;
|
|
7380
7347
|
readonly id: string;
|
|
7381
7348
|
}
|
|
7382
|
-
interface OrganizationTransactionPayout {
|
|
7383
|
-
readonly transaction: io.flow.v0.models.TransactionReference;
|
|
7384
|
-
readonly waiting_for?: io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
7385
|
-
readonly payout?: io.flow.v0.models.PayoutReference;
|
|
7386
|
-
}
|
|
7387
7349
|
interface OrganizationTransactionUpserted {
|
|
7388
7350
|
readonly discriminator: 'organization_transaction_upserted';
|
|
7389
7351
|
readonly event_id: string;
|
|
@@ -7862,6 +7824,7 @@ declare namespace io.flow.v0.models {
|
|
|
7862
7824
|
readonly processor: string;
|
|
7863
7825
|
readonly operation_identifier?: io.flow.v0.models.PaymentProcessorIdentifier;
|
|
7864
7826
|
readonly account?: io.flow.v0.models.PaymentProcessorAccount;
|
|
7827
|
+
readonly transaction_details?: io.flow.v0.unions.PaymentProcessorTransactionDetails;
|
|
7865
7828
|
}
|
|
7866
7829
|
interface PaymentProcessorAccount {
|
|
7867
7830
|
readonly organization: string;
|
|
@@ -7881,6 +7844,16 @@ declare namespace io.flow.v0.models {
|
|
|
7881
7844
|
readonly discriminator: 'payment_processor_reference';
|
|
7882
7845
|
readonly processor: string;
|
|
7883
7846
|
}
|
|
7847
|
+
interface PaymentProcessorTransactionDetailsCard {
|
|
7848
|
+
readonly discriminator: 'card';
|
|
7849
|
+
readonly transaction_identifier?: string;
|
|
7850
|
+
readonly method_type?: string;
|
|
7851
|
+
readonly result_status?: string;
|
|
7852
|
+
readonly reason_code?: string;
|
|
7853
|
+
readonly avs_result_code?: string;
|
|
7854
|
+
readonly cvv_result_code?: string;
|
|
7855
|
+
readonly threeds_result_code?: string;
|
|
7856
|
+
}
|
|
7884
7857
|
interface PaymentReference {
|
|
7885
7858
|
readonly id: string;
|
|
7886
7859
|
}
|
|
@@ -8087,10 +8060,12 @@ declare namespace io.flow.v0.models {
|
|
|
8087
8060
|
readonly starts_at?: string;
|
|
8088
8061
|
readonly ends_at?: string;
|
|
8089
8062
|
}
|
|
8090
|
-
interface
|
|
8091
|
-
readonly
|
|
8092
|
-
readonly
|
|
8093
|
-
|
|
8063
|
+
interface PendingPayoutTransactionReason {
|
|
8064
|
+
readonly code: io.flow.v0.enums.PendingPayoutTransactionReasonCode;
|
|
8065
|
+
readonly created_at: string;
|
|
8066
|
+
}
|
|
8067
|
+
interface PendingPayoutTransactionTimeout {
|
|
8068
|
+
readonly created_at: string;
|
|
8094
8069
|
}
|
|
8095
8070
|
interface PercentMargin {
|
|
8096
8071
|
readonly discriminator: 'percent_margin';
|
|
@@ -9455,9 +9430,9 @@ declare namespace io.flow.v0.models {
|
|
|
9455
9430
|
readonly required: boolean;
|
|
9456
9431
|
}
|
|
9457
9432
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
9458
|
-
readonly units: io.flow.
|
|
9459
|
-
readonly base: io.flow.
|
|
9460
|
-
readonly surcharges: io.flow.
|
|
9433
|
+
readonly units: io.flow.v0.models.LabelUnits;
|
|
9434
|
+
readonly base: io.flow.v0.models.LabelBase;
|
|
9435
|
+
readonly surcharges: io.flow.v0.models.LabelSurcharge[];
|
|
9461
9436
|
}
|
|
9462
9437
|
interface ShippingLabelHopSummary {
|
|
9463
9438
|
readonly lane: io.flow.v0.models.ShippingLabelLaneSummary;
|
|
@@ -9467,6 +9442,7 @@ declare namespace io.flow.v0.models {
|
|
|
9467
9442
|
interface ShippingLabelLaneSummary {
|
|
9468
9443
|
readonly id?: string;
|
|
9469
9444
|
readonly ratecard: io.flow.v0.models.ShippingLabelRatecardSummary;
|
|
9445
|
+
readonly weight_break?: number;
|
|
9470
9446
|
}
|
|
9471
9447
|
interface ShippingLabelPackage {
|
|
9472
9448
|
readonly dimensions: io.flow.v0.models.Dimension;
|
|
@@ -10549,12 +10525,25 @@ declare namespace io.flow.v0.models {
|
|
|
10549
10525
|
readonly iin: string;
|
|
10550
10526
|
readonly country: string;
|
|
10551
10527
|
}
|
|
10528
|
+
interface TransactionMetadataManual {
|
|
10529
|
+
readonly discriminator: 'manual';
|
|
10530
|
+
readonly original: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
10531
|
+
}
|
|
10532
|
+
interface TransactionMetadataOriginalTransaction {
|
|
10533
|
+
readonly id: string;
|
|
10534
|
+
}
|
|
10552
10535
|
interface TransactionMetadataShippingLabel {
|
|
10553
10536
|
readonly discriminator: 'shipping_label';
|
|
10554
10537
|
readonly request_method?: io.flow.v0.enums.LabelRequestMethod;
|
|
10538
|
+
readonly carrier: io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
10539
|
+
}
|
|
10540
|
+
interface TransactionMetadataShippingLabelCarrier {
|
|
10541
|
+
readonly id: string;
|
|
10542
|
+
readonly tracking_number: string;
|
|
10555
10543
|
}
|
|
10556
10544
|
interface TransactionMetadataTrueup {
|
|
10557
10545
|
readonly discriminator: 'trueup';
|
|
10546
|
+
readonly original: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
10558
10547
|
readonly estimate: io.flow.v0.models.TransactionMetadataTrueupData;
|
|
10559
10548
|
readonly actual: io.flow.v0.models.TransactionMetadataTrueupData;
|
|
10560
10549
|
}
|
|
@@ -10564,6 +10553,8 @@ declare namespace io.flow.v0.models {
|
|
|
10564
10553
|
readonly base: io.flow.v0.models.TrueupLabelBase;
|
|
10565
10554
|
readonly surcharges: io.flow.v0.models.TrueupLabelSurcharge[];
|
|
10566
10555
|
readonly total: number;
|
|
10556
|
+
readonly dead?: io.flow.v0.models.DeadWeight;
|
|
10557
|
+
readonly dimensional?: io.flow.v0.models.DimensionalWeight;
|
|
10567
10558
|
}
|
|
10568
10559
|
interface TransactionNetworkDetailsCard {
|
|
10569
10560
|
readonly network_transaction_id?: string;
|
|
@@ -10826,7 +10817,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10826
10817
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
10827
10818
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
10828
10819
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
10829
|
-
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.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;
|
|
10820
|
+
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;
|
|
10830
10821
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
|
|
10831
10822
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
10832
10823
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -10839,6 +10830,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10839
10830
|
type ExportType = io.flow.v0.models.AccountTransactionsExportType | io.flow.v0.models.AccountOrdersExportType | io.flow.v0.models.AnalyticsExportType | io.flow.v0.models.CatalogItemExportType | io.flow.v0.models.ExperienceExportType | io.flow.v0.models.HarmonizationOverviewExportType | io.flow.v0.models.HarmonizationHs6ExportType | io.flow.v0.models.HarmonizationHs10ExportType | io.flow.v0.models.HarmonizationTariffCodesExportType | io.flow.v0.models.UnharmonizedItemExportType | io.flow.v0.models.OrderExportType | io.flow.v0.models.PriceBookItemExportType | io.flow.v0.models.SolidusProductExportType | io.flow.v0.models.SolidusVariantExportType | io.flow.v0.models.LocalizedItemPricesExportType | io.flow.v0.models.MarketingFeedsExportType | io.flow.v0.models.ExclusionRulesExportType;
|
|
10840
10831
|
type FieldValidationRule = io.flow.v0.models.FieldValidationRequired | io.flow.v0.models.FieldValidationRequiredIfPresent | io.flow.v0.models.FieldValidationMin | io.flow.v0.models.FieldValidationMax | io.flow.v0.models.FieldValidationPattern;
|
|
10841
10832
|
type FraudOrderReference = io.flow.v0.models.FraudFlowOrderReference | io.flow.v0.models.FraudPaymentRequestReference;
|
|
10833
|
+
type FuelSurchargeRate = io.flow.v0.models.FuelSurchargePercent | io.flow.v0.models.FuelSurchargeByWeight;
|
|
10842
10834
|
type GatewayAuthenticationData = io.flow.v0.models.StripeAuthenticationData;
|
|
10843
10835
|
type GatewayAuthenticationDataForm = io.flow.v0.models.StripeAuthenticationDataForm;
|
|
10844
10836
|
type InlineActionConfiguration = io.flow.v0.models.BrowserInlineActionConfiguration;
|
|
@@ -10846,6 +10838,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10846
10838
|
type InventoryStrategy = io.flow.v0.models.InventoryBackorder | io.flow.v0.models.InventoryStock | io.flow.v0.models.InventoryUnlimited | io.flow.v0.models.InventoryFollowEcommercePlatform;
|
|
10847
10839
|
type KnowYourBusiness = io.flow.v0.models.KnowYourBusinessUsa;
|
|
10848
10840
|
type KnowYourBusinessForm = io.flow.v0.models.KnowYourBusinessUsaForm;
|
|
10841
|
+
type LabelSurchargeDetail = io.flow.v0.models.LabelSurchargeDetailFlat | io.flow.v0.models.LabelSurchargeDetailPercentage | io.flow.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
10849
10842
|
type LocalizedPrice = io.flow.v0.models.LocalizedItemPrice | io.flow.v0.models.LocalizedItemVat | io.flow.v0.models.LocalizedItemDuty | io.flow.v0.models.LocalizedTotal;
|
|
10850
10843
|
type LogoImage = io.flow.v0.models.LogoImageSvg | io.flow.v0.models.LogoImageSetStatic;
|
|
10851
10844
|
type MerchantApplication = io.flow.v0.models.ShopifyMerchantApplication;
|
|
@@ -10879,6 +10872,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10879
10872
|
value: io.flow.v0.enums.ExperiencePaymentMethodTag;
|
|
10880
10873
|
};
|
|
10881
10874
|
type PaymentOrderReference = io.flow.v0.models.AuthorizationOrderReference | io.flow.v0.models.PaymentPaymentRequestReference;
|
|
10875
|
+
type PaymentProcessorTransactionDetails = io.flow.v0.models.PaymentProcessorTransactionDetailsCard;
|
|
10882
10876
|
type PaymentSource = io.flow.v0.models.CardPaymentSource;
|
|
10883
10877
|
type PaymentSourceForm = io.flow.v0.models.CardPaymentSourceForm;
|
|
10884
10878
|
type PayoutStatus = io.flow.v0.models.PayoutStatusScheduled | io.flow.v0.models.PayoutStatusSent | io.flow.v0.models.PayoutStatusFailed;
|
|
@@ -10911,7 +10905,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10911
10905
|
type Token = io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken;
|
|
10912
10906
|
type TokenReference = io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference;
|
|
10913
10907
|
type TransactionDetails = io.flow.v0.models.TransactionDetailsCard;
|
|
10914
|
-
type TransactionMetadata = io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup;
|
|
10908
|
+
type TransactionMetadata = io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup | io.flow.v0.models.TransactionMetadataManual;
|
|
10915
10909
|
}
|
|
10916
10910
|
export declare type AbandonedOrderEmailSettings = io.flow.v0.models.AbandonedOrderEmailSettings;
|
|
10917
10911
|
export declare type AbandonedOrderPromotion = io.flow.v0.models.AbandonedOrderPromotion;
|
|
@@ -11151,6 +11145,8 @@ export declare type ChannelBankAccount = io.flow.v0.models.ChannelBankAccount;
|
|
|
11151
11145
|
export declare type ChannelCurrency = io.flow.v0.models.ChannelCurrency;
|
|
11152
11146
|
export declare type ChannelCurrencyCapability = io.flow.v0.enums.ChannelCurrencyCapability;
|
|
11153
11147
|
export declare type ChannelCurrencyDeleted = io.flow.v0.models.ChannelCurrencyDeleted;
|
|
11148
|
+
export declare type ChannelCurrencyPair = io.flow.v0.models.ChannelCurrencyPair;
|
|
11149
|
+
export declare type ChannelCurrencyRate = io.flow.v0.models.ChannelCurrencyRate;
|
|
11154
11150
|
export declare type ChannelCurrencyUpserted = io.flow.v0.models.ChannelCurrencyUpserted;
|
|
11155
11151
|
export declare type ChannelDefaultBankAccount = io.flow.v0.models.ChannelDefaultBankAccount;
|
|
11156
11152
|
export declare type ChannelDeleted = io.flow.v0.models.ChannelDeleted;
|
|
@@ -11164,6 +11160,9 @@ export declare type ChannelOrganizationUpserted = io.flow.v0.models.ChannelOrgan
|
|
|
11164
11160
|
export declare type ChannelPayout = io.flow.v0.models.ChannelPayout;
|
|
11165
11161
|
export declare type ChannelPayoutDeleted = io.flow.v0.models.ChannelPayoutDeleted;
|
|
11166
11162
|
export declare type ChannelPayoutUpserted = io.flow.v0.models.ChannelPayoutUpserted;
|
|
11163
|
+
export declare type ChannelPendingPayoutTransaction = io.flow.v0.models.ChannelPendingPayoutTransaction;
|
|
11164
|
+
export declare type ChannelPendingPayoutTransactionDeleted = io.flow.v0.models.ChannelPendingPayoutTransactionDeleted;
|
|
11165
|
+
export declare type ChannelPendingPayoutTransactionUpserted = io.flow.v0.models.ChannelPendingPayoutTransactionUpserted;
|
|
11167
11166
|
export declare type ChannelRate = io.flow.v0.models.ChannelRate;
|
|
11168
11167
|
export declare type ChannelReference = io.flow.v0.models.ChannelReference;
|
|
11169
11168
|
export declare type ChannelStatement = io.flow.v0.models.ChannelStatement;
|
|
@@ -11175,7 +11174,6 @@ export declare type ChannelTokenReference = io.flow.v0.models.ChannelTokenRefere
|
|
|
11175
11174
|
export declare type ChannelTransaction = io.flow.v0.models.ChannelTransaction;
|
|
11176
11175
|
export declare type ChannelTransactionDeleted = io.flow.v0.models.ChannelTransactionDeleted;
|
|
11177
11176
|
export declare type ChannelTransactionDeletedV2 = io.flow.v0.models.ChannelTransactionDeletedV2;
|
|
11178
|
-
export declare type ChannelTransactionPayout = io.flow.v0.models.ChannelTransactionPayout;
|
|
11179
11177
|
export declare type ChannelTransactionUpserted = io.flow.v0.models.ChannelTransactionUpserted;
|
|
11180
11178
|
export declare type ChannelUpserted = io.flow.v0.models.ChannelUpserted;
|
|
11181
11179
|
export declare type ChannelViesRegistration = io.flow.v0.models.ChannelViesRegistration;
|
|
@@ -11293,6 +11291,7 @@ export declare type DatetimeWithTimezone = io.flow.v0.models.DatetimeWithTimezon
|
|
|
11293
11291
|
export declare type DayOfWeek = io.flow.v0.enums.DayOfWeek;
|
|
11294
11292
|
export declare type DdpRatecardFee = io.flow.v0.models.DdpRatecardFee;
|
|
11295
11293
|
export declare type DeactivationPutForm = io.flow.v0.models.DeactivationPutForm;
|
|
11294
|
+
export declare type DeadWeight = io.flow.v0.models.DeadWeight;
|
|
11296
11295
|
export declare type DefaultBankAccountForm = io.flow.v0.models.DefaultBankAccountForm;
|
|
11297
11296
|
export declare type DeliveredDuty = io.flow.v0.enums.DeliveredDuty;
|
|
11298
11297
|
export declare type DeliveredDutyDisplayType = io.flow.v0.enums.DeliveredDutyDisplayType;
|
|
@@ -11332,6 +11331,7 @@ export declare type Dimension = io.flow.v0.models.Dimension;
|
|
|
11332
11331
|
export declare type DimensionEstimate = io.flow.v0.models.DimensionEstimate;
|
|
11333
11332
|
export declare type DimensionEstimateForm = io.flow.v0.models.DimensionEstimateForm;
|
|
11334
11333
|
export declare type DimensionEstimateVersion = io.flow.v0.models.DimensionEstimateVersion;
|
|
11334
|
+
export declare type DimensionalWeight = io.flow.v0.models.DimensionalWeight;
|
|
11335
11335
|
export declare type Dimensions = io.flow.v0.models.Dimensions;
|
|
11336
11336
|
export declare type DirectAuthorizationForm = io.flow.v0.models.DirectAuthorizationForm;
|
|
11337
11337
|
export declare type DirectDebit = io.flow.v0.models.DirectDebit;
|
|
@@ -11505,6 +11505,9 @@ export declare type FtpOrganizationSettingsForm = io.flow.v0.models.FtpOrganizat
|
|
|
11505
11505
|
export declare type FtpServer = io.flow.v0.models.FtpServer;
|
|
11506
11506
|
export declare type FtpUser = io.flow.v0.models.FtpUser;
|
|
11507
11507
|
export declare type FuelSurchargeAmountByWeightServiceFee = io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee;
|
|
11508
|
+
export declare type FuelSurchargeByWeight = io.flow.v0.models.FuelSurchargeByWeight;
|
|
11509
|
+
export declare type FuelSurchargePercent = io.flow.v0.models.FuelSurchargePercent;
|
|
11510
|
+
export declare type FuelSurchargeRate = io.flow.v0.unions.FuelSurchargeRate;
|
|
11508
11511
|
export declare type FuelSurchargeRatecardFee = io.flow.v0.models.FuelSurchargeRatecardFee;
|
|
11509
11512
|
export declare type FuelSurchargeServiceFee = io.flow.v0.models.FuelSurchargeServiceFee;
|
|
11510
11513
|
export declare type Fulfillment = io.flow.v0.models.Fulfillment;
|
|
@@ -11658,16 +11661,23 @@ export declare type KnowYourBusinessForm = io.flow.v0.unions.KnowYourBusinessFor
|
|
|
11658
11661
|
export declare type KnowYourBusinessUsa = io.flow.v0.models.KnowYourBusinessUsa;
|
|
11659
11662
|
export declare type KnowYourBusinessUsaForm = io.flow.v0.models.KnowYourBusinessUsaForm;
|
|
11660
11663
|
export declare type KubeHealthcheck = io.flow.v0.models.KubeHealthcheck;
|
|
11664
|
+
export declare type LabelBase = io.flow.v0.models.LabelBase;
|
|
11661
11665
|
export declare type LabelDeletedV2 = io.flow.v0.models.LabelDeletedV2;
|
|
11662
11666
|
export declare type LabelFormatDeleted = io.flow.v0.models.LabelFormatDeleted;
|
|
11663
11667
|
export declare type LabelFormatUpserted = io.flow.v0.models.LabelFormatUpserted;
|
|
11664
11668
|
export declare type LabelOrderSummary = io.flow.v0.models.LabelOrderSummary;
|
|
11665
11669
|
export declare type LabelReference = io.flow.v0.models.LabelReference;
|
|
11666
11670
|
export declare type LabelRequestMethod = io.flow.v0.enums.LabelRequestMethod;
|
|
11671
|
+
export declare type LabelSurcharge = io.flow.v0.models.LabelSurcharge;
|
|
11672
|
+
export declare type LabelSurchargeDetail = io.flow.v0.unions.LabelSurchargeDetail;
|
|
11673
|
+
export declare type LabelSurchargeDetailFlat = io.flow.v0.models.LabelSurchargeDetailFlat;
|
|
11674
|
+
export declare type LabelSurchargeDetailPerWeightUnit = io.flow.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
11675
|
+
export declare type LabelSurchargeDetailPercentage = io.flow.v0.models.LabelSurchargeDetailPercentage;
|
|
11667
11676
|
export declare type LabelTrackingCarrierService = io.flow.v0.models.LabelTrackingCarrierService;
|
|
11668
11677
|
export declare type LabelTrackingSummary = io.flow.v0.models.LabelTrackingSummary;
|
|
11669
11678
|
export declare type LabelTrackingSummaryUpdate = io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
11670
11679
|
export declare type LabelTriggerMethod = io.flow.v0.enums.LabelTriggerMethod;
|
|
11680
|
+
export declare type LabelUnits = io.flow.v0.models.LabelUnits;
|
|
11671
11681
|
export declare type LabelUpserted = io.flow.v0.models.LabelUpserted;
|
|
11672
11682
|
export declare type LabelUpsertedV2 = io.flow.v0.models.LabelUpsertedV2;
|
|
11673
11683
|
export declare type LandedCostItem = io.flow.v0.models.LandedCostItem;
|
|
@@ -11931,6 +11941,9 @@ export declare type OrganizationPaymentMethodTag = io.flow.v0.enums.Organization
|
|
|
11931
11941
|
export declare type OrganizationPayout = io.flow.v0.models.OrganizationPayout;
|
|
11932
11942
|
export declare type OrganizationPayoutDeleted = io.flow.v0.models.OrganizationPayoutDeleted;
|
|
11933
11943
|
export declare type OrganizationPayoutUpserted = io.flow.v0.models.OrganizationPayoutUpserted;
|
|
11944
|
+
export declare type OrganizationPendingPayoutTransaction = io.flow.v0.models.OrganizationPendingPayoutTransaction;
|
|
11945
|
+
export declare type OrganizationPendingPayoutTransactionDeleted = io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted;
|
|
11946
|
+
export declare type OrganizationPendingPayoutTransactionUpserted = io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted;
|
|
11934
11947
|
export declare type OrganizationPutForm = io.flow.v0.models.OrganizationPutForm;
|
|
11935
11948
|
export declare type OrganizationRatesData = io.flow.v0.models.OrganizationRatesData;
|
|
11936
11949
|
export declare type OrganizationRatesPublished = io.flow.v0.models.OrganizationRatesPublished;
|
|
@@ -11946,7 +11959,6 @@ export declare type OrganizationTokenReference = io.flow.v0.models.OrganizationT
|
|
|
11946
11959
|
export declare type OrganizationTokenV2 = io.flow.v0.models.OrganizationTokenV2;
|
|
11947
11960
|
export declare type OrganizationTokenV2Reference = io.flow.v0.models.OrganizationTokenV2Reference;
|
|
11948
11961
|
export declare type OrganizationTransactionDeleted = io.flow.v0.models.OrganizationTransactionDeleted;
|
|
11949
|
-
export declare type OrganizationTransactionPayout = io.flow.v0.models.OrganizationTransactionPayout;
|
|
11950
11962
|
export declare type OrganizationTransactionUpserted = io.flow.v0.models.OrganizationTransactionUpserted;
|
|
11951
11963
|
export declare type OrganizationType = io.flow.v0.enums.OrganizationType;
|
|
11952
11964
|
export declare type OrganizationUpserted = io.flow.v0.models.OrganizationUpserted;
|
|
@@ -12063,6 +12075,8 @@ export declare type PaymentProcessorAccount = io.flow.v0.models.PaymentProcessor
|
|
|
12063
12075
|
export declare type PaymentProcessorAccountReference = io.flow.v0.models.PaymentProcessorAccountReference;
|
|
12064
12076
|
export declare type PaymentProcessorIdentifier = io.flow.v0.models.PaymentProcessorIdentifier;
|
|
12065
12077
|
export declare type PaymentProcessorReference = io.flow.v0.models.PaymentProcessorReference;
|
|
12078
|
+
export declare type PaymentProcessorTransactionDetails = io.flow.v0.unions.PaymentProcessorTransactionDetails;
|
|
12079
|
+
export declare type PaymentProcessorTransactionDetailsCard = io.flow.v0.models.PaymentProcessorTransactionDetailsCard;
|
|
12066
12080
|
export declare type PaymentReference = io.flow.v0.models.PaymentReference;
|
|
12067
12081
|
export declare type PaymentRefund = io.flow.v0.models.PaymentRefund;
|
|
12068
12082
|
export declare type PaymentRefundForm = io.flow.v0.models.PaymentRefundForm;
|
|
@@ -12107,7 +12121,9 @@ export declare type PaypalAuthorizationForm = io.flow.v0.models.PaypalAuthorizat
|
|
|
12107
12121
|
export declare type PeakSurchargeByWeightServiceFee = io.flow.v0.models.PeakSurchargeByWeightServiceFee;
|
|
12108
12122
|
export declare type PeakSurchargeRatecardFee = io.flow.v0.models.PeakSurchargeRatecardFee;
|
|
12109
12123
|
export declare type PeakSurchargeServiceFee = io.flow.v0.models.PeakSurchargeServiceFee;
|
|
12110
|
-
export declare type
|
|
12124
|
+
export declare type PendingPayoutTransactionReason = io.flow.v0.models.PendingPayoutTransactionReason;
|
|
12125
|
+
export declare type PendingPayoutTransactionReasonCode = io.flow.v0.enums.PendingPayoutTransactionReasonCode;
|
|
12126
|
+
export declare type PendingPayoutTransactionTimeout = io.flow.v0.models.PendingPayoutTransactionTimeout;
|
|
12111
12127
|
export declare type PercentMargin = io.flow.v0.models.PercentMargin;
|
|
12112
12128
|
export declare type PermissionAudit = io.flow.v0.models.PermissionAudit;
|
|
12113
12129
|
export declare type PermissionCheck = io.flow.v0.models.PermissionCheck;
|
|
@@ -12574,11 +12590,13 @@ export declare type TransactionMetadata = io.flow.v0.unions.TransactionMetadata;
|
|
|
12574
12590
|
export declare type TransactionMetadataChannel = io.flow.v0.models.TransactionMetadataChannel;
|
|
12575
12591
|
export declare type TransactionMetadataChannelCardMetadata = io.flow.v0.models.TransactionMetadataChannelCardMetadata;
|
|
12576
12592
|
export declare type TransactionMetadataChannelCardMetadataIssuerSummary = io.flow.v0.models.TransactionMetadataChannelCardMetadataIssuerSummary;
|
|
12593
|
+
export declare type TransactionMetadataManual = io.flow.v0.models.TransactionMetadataManual;
|
|
12594
|
+
export declare type TransactionMetadataOriginalTransaction = io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
12577
12595
|
export declare type TransactionMetadataShippingLabel = io.flow.v0.models.TransactionMetadataShippingLabel;
|
|
12596
|
+
export declare type TransactionMetadataShippingLabelCarrier = io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
12578
12597
|
export declare type TransactionMetadataTrueup = io.flow.v0.models.TransactionMetadataTrueup;
|
|
12579
12598
|
export declare type TransactionMetadataTrueupData = io.flow.v0.models.TransactionMetadataTrueupData;
|
|
12580
12599
|
export declare type TransactionNetworkDetailsCard = io.flow.v0.models.TransactionNetworkDetailsCard;
|
|
12581
|
-
export declare type TransactionPayoutPendingReason = io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
12582
12600
|
export declare type TransactionReference = io.flow.v0.models.TransactionReference;
|
|
12583
12601
|
export declare type TransactionSource = io.flow.v0.enums.TransactionSource;
|
|
12584
12602
|
export declare type TransactionUpserted = io.flow.v0.models.TransactionUpserted;
|