@flowio/api-prop-types 10.16.57 → 10.16.59
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 +210 -197
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +210 -197
- package/src/api.js +267 -239
package/src/api.d.ts
CHANGED
|
@@ -725,6 +725,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
725
725
|
readonly 'network'?: string;
|
|
726
726
|
readonly 'request_three_d_secure'?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
|
|
727
727
|
readonly 'stored_credential_transaction_type'?: io.flow.stripe.v0.enums.StoredCredentialTransactionType;
|
|
728
|
+
readonly 'mcc'?: string;
|
|
728
729
|
}
|
|
729
730
|
|
|
730
731
|
interface PaymentOutcome {
|
|
@@ -1023,12 +1024,6 @@ declare namespace io.flow.stripe.v0.unions {
|
|
|
1023
1024
|
type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard);
|
|
1024
1025
|
}
|
|
1025
1026
|
|
|
1026
|
-
declare namespace io.flow.units.v0.enums {
|
|
1027
|
-
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
1028
|
-
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
1029
|
-
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
1030
|
-
}
|
|
1031
|
-
|
|
1032
1027
|
declare namespace io.flow.shopify.external.v0.enums {
|
|
1033
1028
|
type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
1034
1029
|
type DiscountStatus = 'enabled' | 'disabled' | 'depleted';
|
|
@@ -1933,6 +1928,17 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1933
1928
|
}
|
|
1934
1929
|
}
|
|
1935
1930
|
|
|
1931
|
+
declare namespace io.flow.error.v0.enums {
|
|
1932
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
declare namespace io.flow.error.v0.models {
|
|
1936
|
+
interface GenericError {
|
|
1937
|
+
readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
|
|
1938
|
+
readonly 'messages': string[];
|
|
1939
|
+
}
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1936
1942
|
declare namespace io.flow.ben.test.internal.v0.models {
|
|
1937
1943
|
interface GenerateLoadMultipleOrgs {
|
|
1938
1944
|
readonly 'discriminator': 'generate_load_multiple_orgs';
|
|
@@ -1961,10 +1967,10 @@ declare namespace io.flow.ben.test.internal.v0.unions {
|
|
|
1961
1967
|
}
|
|
1962
1968
|
|
|
1963
1969
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
1964
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
1970
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
1965
1971
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
1966
1972
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
1967
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
1973
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
|
|
1968
1974
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
1969
1975
|
}
|
|
1970
1976
|
|
|
@@ -1972,7 +1978,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
1972
1978
|
interface ApplePayLineItem {
|
|
1973
1979
|
readonly 'label': string;
|
|
1974
1980
|
readonly 'type': io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
1975
|
-
readonly 'amount':
|
|
1981
|
+
readonly 'amount': string;
|
|
1976
1982
|
}
|
|
1977
1983
|
|
|
1978
1984
|
interface ApplePayPaymentContact {
|
|
@@ -2023,171 +2029,11 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
2023
2029
|
interface ApplePayShippingMethod {
|
|
2024
2030
|
readonly 'label': string;
|
|
2025
2031
|
readonly 'detail': string;
|
|
2026
|
-
readonly 'amount':
|
|
2032
|
+
readonly 'amount': string;
|
|
2027
2033
|
readonly 'identifier': string;
|
|
2028
2034
|
}
|
|
2029
2035
|
}
|
|
2030
2036
|
|
|
2031
|
-
declare namespace io.flow.error.v0.enums {
|
|
2032
|
-
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
2033
|
-
}
|
|
2034
|
-
|
|
2035
|
-
declare namespace io.flow.error.v0.models {
|
|
2036
|
-
interface GenericError {
|
|
2037
|
-
readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
|
|
2038
|
-
readonly 'messages': string[];
|
|
2039
|
-
}
|
|
2040
|
-
}
|
|
2041
|
-
|
|
2042
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
2043
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
2044
|
-
}
|
|
2045
|
-
|
|
2046
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
2047
|
-
interface LabelBase {
|
|
2048
|
-
readonly 'amount': number;
|
|
2049
|
-
readonly 'weight': number;
|
|
2050
|
-
}
|
|
2051
|
-
|
|
2052
|
-
interface LabelDestination {
|
|
2053
|
-
readonly 'country': string;
|
|
2054
|
-
}
|
|
2055
|
-
|
|
2056
|
-
interface LabelInvoiceRequest {
|
|
2057
|
-
readonly 'id': string;
|
|
2058
|
-
readonly 'label': io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
|
|
2059
|
-
readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
2060
|
-
readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
2061
|
-
readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
2062
|
-
readonly 'total': number;
|
|
2063
|
-
readonly 'destination': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
2064
|
-
readonly 'metadata': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
2065
|
-
}
|
|
2066
|
-
|
|
2067
|
-
interface LabelInvoiceResponseFile {
|
|
2068
|
-
readonly 'id': string;
|
|
2069
|
-
readonly 'url': string;
|
|
2070
|
-
readonly 'created_at': string;
|
|
2071
|
-
readonly 'result'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelInvoiceResponseFileResult;
|
|
2072
|
-
}
|
|
2073
|
-
|
|
2074
|
-
interface LabelInvoiceResponseFileForm {
|
|
2075
|
-
readonly 'url': string;
|
|
2076
|
-
}
|
|
2077
|
-
|
|
2078
|
-
interface LabelInvoiceResponseFileResult {
|
|
2079
|
-
readonly 'processed_at': string;
|
|
2080
|
-
readonly 'number_lines_successful': number;
|
|
2081
|
-
readonly 'number_lines_with_errors': number;
|
|
2082
|
-
readonly 'errors_url'?: string;
|
|
2083
|
-
}
|
|
2084
|
-
|
|
2085
|
-
interface LabelInvoiceResponseForm {
|
|
2086
|
-
readonly 'id': string;
|
|
2087
|
-
readonly 'label_invoice_request_id': string;
|
|
2088
|
-
readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelResponseUnits;
|
|
2089
|
-
readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
2090
|
-
readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
|
|
2091
|
-
readonly 'total': number;
|
|
2092
|
-
}
|
|
2093
|
-
|
|
2094
|
-
interface LabelMetadata {
|
|
2095
|
-
readonly 'ratecard': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
2096
|
-
readonly 'weights': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
2097
|
-
}
|
|
2098
|
-
|
|
2099
|
-
interface LabelResponseUnits {
|
|
2100
|
-
readonly 'currency': string;
|
|
2101
|
-
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
2102
|
-
readonly 'length'?: io.flow.units.v0.enums.UnitOfLength;
|
|
2103
|
-
}
|
|
2104
|
-
|
|
2105
|
-
interface LabelSurcharge {
|
|
2106
|
-
readonly 'amount': number;
|
|
2107
|
-
readonly 'type': io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
2108
|
-
readonly 'detail': io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
|
|
2109
|
-
}
|
|
2110
|
-
|
|
2111
|
-
interface LabelSurchargeDetailFlat {
|
|
2112
|
-
readonly 'discriminator': 'flat';
|
|
2113
|
-
readonly 'placeholder'?: string;
|
|
2114
|
-
}
|
|
2115
|
-
|
|
2116
|
-
interface LabelSurchargeDetailPerWeightUnit {
|
|
2117
|
-
readonly 'discriminator': 'per_weight_unit';
|
|
2118
|
-
readonly 'fee': number;
|
|
2119
|
-
}
|
|
2120
|
-
|
|
2121
|
-
interface LabelSurchargeDetailPercentage {
|
|
2122
|
-
readonly 'discriminator': 'percentage';
|
|
2123
|
-
readonly 'percentage': number;
|
|
2124
|
-
}
|
|
2125
|
-
|
|
2126
|
-
interface LabelSurchargeForm {
|
|
2127
|
-
readonly 'fuel'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
2128
|
-
readonly 'remote_area'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
2129
|
-
readonly 'oversize'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
2130
|
-
readonly 'duties_paid'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
2131
|
-
readonly 'emergency'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
2132
|
-
readonly 'peak'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
2133
|
-
readonly 'address_correction'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
2134
|
-
}
|
|
2135
|
-
|
|
2136
|
-
interface LabelSurchargeSingleForm {
|
|
2137
|
-
readonly 'amount': number;
|
|
2138
|
-
readonly 'percentage'?: number;
|
|
2139
|
-
readonly 'fee_per_weight_unit'?: number;
|
|
2140
|
-
}
|
|
2141
|
-
|
|
2142
|
-
interface LabelUnits {
|
|
2143
|
-
readonly 'currency': string;
|
|
2144
|
-
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
2145
|
-
readonly 'length': io.flow.units.v0.enums.UnitOfLength;
|
|
2146
|
-
}
|
|
2147
|
-
|
|
2148
|
-
interface MetadataProposition {
|
|
2149
|
-
readonly 'shipping_method': io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
|
|
2150
|
-
readonly 'name': string;
|
|
2151
|
-
}
|
|
2152
|
-
|
|
2153
|
-
interface MetadataRatecard {
|
|
2154
|
-
readonly 'id': string;
|
|
2155
|
-
readonly 'proposition': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
2156
|
-
}
|
|
2157
|
-
|
|
2158
|
-
interface MetadataWeights {
|
|
2159
|
-
readonly 'dead'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
2160
|
-
readonly 'dimensional'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
2161
|
-
}
|
|
2162
|
-
|
|
2163
|
-
interface ShippingMethodReference {
|
|
2164
|
-
readonly 'id': string;
|
|
2165
|
-
}
|
|
2166
|
-
|
|
2167
|
-
interface TrueUpLabelSummary {
|
|
2168
|
-
readonly 'id': string;
|
|
2169
|
-
readonly 'carrier_service_id': string;
|
|
2170
|
-
readonly 'carrier_tracking_number': string;
|
|
2171
|
-
readonly 'flow_tracking_number': string;
|
|
2172
|
-
readonly 'created_at': string;
|
|
2173
|
-
}
|
|
2174
|
-
|
|
2175
|
-
interface WeightsDead {
|
|
2176
|
-
readonly 'weight': number;
|
|
2177
|
-
}
|
|
2178
|
-
|
|
2179
|
-
interface WeightsDimensional {
|
|
2180
|
-
readonly 'weight': number;
|
|
2181
|
-
readonly 'length': number;
|
|
2182
|
-
readonly 'width': number;
|
|
2183
|
-
readonly 'height': number;
|
|
2184
|
-
}
|
|
2185
|
-
}
|
|
2186
|
-
|
|
2187
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
|
|
2188
|
-
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);
|
|
2189
|
-
}
|
|
2190
|
-
|
|
2191
2037
|
declare namespace io.flow.v0.enums {
|
|
2192
2038
|
type AbandonedOrderPromotionStatus = 'active' | 'inactive';
|
|
2193
2039
|
type AbandonedOrderSettingStatus = 'active' | 'inactive';
|
|
@@ -2243,7 +2089,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2243
2089
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
2244
2090
|
type EntityIdentifierType = 'ioss' | 'voec';
|
|
2245
2091
|
type Environment = 'sandbox' | 'production';
|
|
2246
|
-
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';
|
|
2092
|
+
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';
|
|
2247
2093
|
type ExceptionType = 'open' | 'closed';
|
|
2248
2094
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
2249
2095
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -2330,6 +2176,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2330
2176
|
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact';
|
|
2331
2177
|
type PayoutAttachmentType = 'transactions';
|
|
2332
2178
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
2179
|
+
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';
|
|
2333
2180
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
2334
2181
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
2335
2182
|
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
@@ -2388,7 +2235,6 @@ declare namespace io.flow.v0.enums {
|
|
|
2388
2235
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
2389
2236
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
2390
2237
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
2391
|
-
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';
|
|
2392
2238
|
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';
|
|
2393
2239
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
2394
2240
|
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
@@ -3851,6 +3697,18 @@ declare namespace io.flow.v0.models {
|
|
|
3851
3697
|
readonly 'id': string;
|
|
3852
3698
|
}
|
|
3853
3699
|
|
|
3700
|
+
interface ChannelCurrencyPair {
|
|
3701
|
+
readonly 'id': string;
|
|
3702
|
+
readonly 'base': string;
|
|
3703
|
+
readonly 'target': string;
|
|
3704
|
+
readonly 'rate': io.flow.v0.models.ChannelCurrencyRate;
|
|
3705
|
+
}
|
|
3706
|
+
|
|
3707
|
+
interface ChannelCurrencyRate {
|
|
3708
|
+
readonly 'id': string;
|
|
3709
|
+
readonly 'value': number;
|
|
3710
|
+
}
|
|
3711
|
+
|
|
3854
3712
|
interface ChannelCurrencyUpserted {
|
|
3855
3713
|
readonly 'discriminator': 'channel_currency_upserted';
|
|
3856
3714
|
readonly 'event_id': string;
|
|
@@ -3946,6 +3804,31 @@ declare namespace io.flow.v0.models {
|
|
|
3946
3804
|
readonly 'payout': io.flow.v0.models.ChannelPayout;
|
|
3947
3805
|
}
|
|
3948
3806
|
|
|
3807
|
+
interface ChannelPendingPayoutTransaction {
|
|
3808
|
+
readonly 'id': string;
|
|
3809
|
+
readonly 'reason': io.flow.v0.models.PendingPayoutTransactionReason;
|
|
3810
|
+
readonly 'timeout'?: io.flow.v0.models.PendingPayoutTransactionTimeout;
|
|
3811
|
+
readonly 'created_at': string;
|
|
3812
|
+
readonly 'updated_at': string;
|
|
3813
|
+
readonly 'deleted_at'?: string;
|
|
3814
|
+
}
|
|
3815
|
+
|
|
3816
|
+
interface ChannelPendingPayoutTransactionDeleted {
|
|
3817
|
+
readonly 'discriminator': 'channel_pending_payout_transaction_deleted';
|
|
3818
|
+
readonly 'event_id': string;
|
|
3819
|
+
readonly 'timestamp': string;
|
|
3820
|
+
readonly 'channel_id': string;
|
|
3821
|
+
readonly 'id': string;
|
|
3822
|
+
}
|
|
3823
|
+
|
|
3824
|
+
interface ChannelPendingPayoutTransactionUpserted {
|
|
3825
|
+
readonly 'discriminator': 'channel_pending_payout_transaction_upserted';
|
|
3826
|
+
readonly 'event_id': string;
|
|
3827
|
+
readonly 'timestamp': string;
|
|
3828
|
+
readonly 'channel_id': string;
|
|
3829
|
+
readonly 'channel_pending_payout_transaction': io.flow.v0.models.ChannelPendingPayoutTransaction;
|
|
3830
|
+
}
|
|
3831
|
+
|
|
3949
3832
|
interface ChannelRate {
|
|
3950
3833
|
readonly 'placeholder'?: string;
|
|
3951
3834
|
}
|
|
@@ -4037,12 +3920,6 @@ declare namespace io.flow.v0.models {
|
|
|
4037
3920
|
readonly 'id': string;
|
|
4038
3921
|
}
|
|
4039
3922
|
|
|
4040
|
-
interface ChannelTransactionPayout {
|
|
4041
|
-
readonly 'transaction': io.flow.v0.models.TransactionReference;
|
|
4042
|
-
readonly 'waiting_for'?: io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
4043
|
-
readonly 'payout'?: io.flow.v0.models.PayoutReference;
|
|
4044
|
-
}
|
|
4045
|
-
|
|
4046
3923
|
interface ChannelTransactionUpserted {
|
|
4047
3924
|
readonly 'discriminator': 'channel_transaction_upserted';
|
|
4048
3925
|
readonly 'event_id': string;
|
|
@@ -4727,6 +4604,10 @@ declare namespace io.flow.v0.models {
|
|
|
4727
4604
|
readonly 'reason': string;
|
|
4728
4605
|
}
|
|
4729
4606
|
|
|
4607
|
+
interface DeadWeight {
|
|
4608
|
+
readonly 'weight': number;
|
|
4609
|
+
}
|
|
4610
|
+
|
|
4730
4611
|
interface DefaultBankAccountForm {
|
|
4731
4612
|
readonly 'bank_account_id': string;
|
|
4732
4613
|
}
|
|
@@ -4971,6 +4852,13 @@ declare namespace io.flow.v0.models {
|
|
|
4971
4852
|
readonly 'dimension_estimate': io.flow.v0.models.DimensionEstimate;
|
|
4972
4853
|
}
|
|
4973
4854
|
|
|
4855
|
+
interface DimensionalWeight {
|
|
4856
|
+
readonly 'weight': number;
|
|
4857
|
+
readonly 'length'?: number;
|
|
4858
|
+
readonly 'width'?: number;
|
|
4859
|
+
readonly 'height'?: number;
|
|
4860
|
+
}
|
|
4861
|
+
|
|
4974
4862
|
interface Dimensions {
|
|
4975
4863
|
readonly 'product'?: io.flow.v0.models.Dimension;
|
|
4976
4864
|
readonly 'packaging'?: io.flow.v0.models.Dimension;
|
|
@@ -5818,9 +5706,21 @@ declare namespace io.flow.v0.models {
|
|
|
5818
5706
|
readonly 'ends_at'?: string;
|
|
5819
5707
|
}
|
|
5820
5708
|
|
|
5709
|
+
interface FuelSurchargeByWeight {
|
|
5710
|
+
readonly 'discriminator': 'fuel_surcharge_by_weight';
|
|
5711
|
+
readonly 'amount': number;
|
|
5712
|
+
readonly 'weight_unit': io.flow.v0.enums.UnitOfMeasurement;
|
|
5713
|
+
}
|
|
5714
|
+
|
|
5715
|
+
interface FuelSurchargePercent {
|
|
5716
|
+
readonly 'discriminator': 'fuel_surcharge_percent';
|
|
5717
|
+
readonly 'percent': number;
|
|
5718
|
+
}
|
|
5719
|
+
|
|
5821
5720
|
interface FuelSurchargeRatecardFee {
|
|
5822
5721
|
readonly 'discriminator': 'fuel_surcharge_ratecard_fee';
|
|
5823
5722
|
readonly 'amount': io.flow.v0.models.Money;
|
|
5723
|
+
readonly 'fuel_surcharge_rate'?: io.flow.v0.unions.FuelSurchargeRate;
|
|
5824
5724
|
}
|
|
5825
5725
|
|
|
5826
5726
|
interface FuelSurchargeServiceFee {
|
|
@@ -6074,6 +5974,7 @@ declare namespace io.flow.v0.models {
|
|
|
6074
5974
|
readonly 'currency': string;
|
|
6075
5975
|
readonly 'amount': number;
|
|
6076
5976
|
readonly 'fees': io.flow.v0.unions.RatecardFee[];
|
|
5977
|
+
readonly 'weight_break'?: number;
|
|
6077
5978
|
readonly 'total': number;
|
|
6078
5979
|
readonly 'lane': io.flow.v0.models.LaneSummary;
|
|
6079
5980
|
}
|
|
@@ -6727,6 +6628,11 @@ declare namespace io.flow.v0.models {
|
|
|
6727
6628
|
readonly 'status': string;
|
|
6728
6629
|
}
|
|
6729
6630
|
|
|
6631
|
+
interface LabelBase {
|
|
6632
|
+
readonly 'amount': number;
|
|
6633
|
+
readonly 'weight': number;
|
|
6634
|
+
}
|
|
6635
|
+
|
|
6730
6636
|
interface LabelDeletedV2 {
|
|
6731
6637
|
readonly 'discriminator': 'label_deleted_v2';
|
|
6732
6638
|
readonly 'event_id': string;
|
|
@@ -6761,6 +6667,27 @@ declare namespace io.flow.v0.models {
|
|
|
6761
6667
|
readonly 'id': string;
|
|
6762
6668
|
}
|
|
6763
6669
|
|
|
6670
|
+
interface LabelSurcharge {
|
|
6671
|
+
readonly 'amount': number;
|
|
6672
|
+
readonly 'type': io.flow.v0.enums.TrueupSurchargeType;
|
|
6673
|
+
readonly 'detail': io.flow.v0.unions.LabelSurchargeDetail;
|
|
6674
|
+
}
|
|
6675
|
+
|
|
6676
|
+
interface LabelSurchargeDetailFlat {
|
|
6677
|
+
readonly 'discriminator': 'flat';
|
|
6678
|
+
readonly 'placeholder'?: string;
|
|
6679
|
+
}
|
|
6680
|
+
|
|
6681
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
6682
|
+
readonly 'discriminator': 'per_weight_unit';
|
|
6683
|
+
readonly 'fee': number;
|
|
6684
|
+
}
|
|
6685
|
+
|
|
6686
|
+
interface LabelSurchargeDetailPercentage {
|
|
6687
|
+
readonly 'discriminator': 'percentage';
|
|
6688
|
+
readonly 'percentage': number;
|
|
6689
|
+
}
|
|
6690
|
+
|
|
6764
6691
|
interface LabelTrackingCarrierService {
|
|
6765
6692
|
readonly 'carrier_id': string;
|
|
6766
6693
|
readonly 'service_id'?: string;
|
|
@@ -6782,6 +6709,12 @@ declare namespace io.flow.v0.models {
|
|
|
6782
6709
|
readonly 'created_at'?: string;
|
|
6783
6710
|
}
|
|
6784
6711
|
|
|
6712
|
+
interface LabelUnits {
|
|
6713
|
+
readonly 'currency': string;
|
|
6714
|
+
readonly 'weight': io.flow.v0.enums.UnitOfWeight;
|
|
6715
|
+
readonly 'length': io.flow.v0.enums.UnitOfLength;
|
|
6716
|
+
}
|
|
6717
|
+
|
|
6785
6718
|
interface LabelUpserted {
|
|
6786
6719
|
readonly 'discriminator': 'label_upserted';
|
|
6787
6720
|
readonly 'event_id': string;
|
|
@@ -8366,6 +8299,31 @@ declare namespace io.flow.v0.models {
|
|
|
8366
8299
|
readonly 'payout': io.flow.v0.models.OrganizationPayout;
|
|
8367
8300
|
}
|
|
8368
8301
|
|
|
8302
|
+
interface OrganizationPendingPayoutTransaction {
|
|
8303
|
+
readonly 'id': string;
|
|
8304
|
+
readonly 'reason': io.flow.v0.models.PendingPayoutTransactionReason;
|
|
8305
|
+
readonly 'timeout'?: io.flow.v0.models.PendingPayoutTransactionTimeout;
|
|
8306
|
+
readonly 'created_at': string;
|
|
8307
|
+
readonly 'updated_at': string;
|
|
8308
|
+
readonly 'deleted_at'?: string;
|
|
8309
|
+
}
|
|
8310
|
+
|
|
8311
|
+
interface OrganizationPendingPayoutTransactionDeleted {
|
|
8312
|
+
readonly 'discriminator': 'organization_pending_payout_transaction_deleted';
|
|
8313
|
+
readonly 'event_id': string;
|
|
8314
|
+
readonly 'timestamp': string;
|
|
8315
|
+
readonly 'organization': string;
|
|
8316
|
+
readonly 'id': string;
|
|
8317
|
+
}
|
|
8318
|
+
|
|
8319
|
+
interface OrganizationPendingPayoutTransactionUpserted {
|
|
8320
|
+
readonly 'discriminator': 'organization_pending_payout_transaction_upserted';
|
|
8321
|
+
readonly 'event_id': string;
|
|
8322
|
+
readonly 'timestamp': string;
|
|
8323
|
+
readonly 'organization': string;
|
|
8324
|
+
readonly 'organization_pending_payout_transaction': io.flow.v0.models.OrganizationPendingPayoutTransaction;
|
|
8325
|
+
}
|
|
8326
|
+
|
|
8369
8327
|
interface OrganizationPutForm {
|
|
8370
8328
|
readonly 'name'?: string;
|
|
8371
8329
|
readonly 'environment'?: io.flow.v0.enums.Environment;
|
|
@@ -8474,12 +8432,6 @@ declare namespace io.flow.v0.models {
|
|
|
8474
8432
|
readonly 'id': string;
|
|
8475
8433
|
}
|
|
8476
8434
|
|
|
8477
|
-
interface OrganizationTransactionPayout {
|
|
8478
|
-
readonly 'transaction': io.flow.v0.models.TransactionReference;
|
|
8479
|
-
readonly 'waiting_for'?: io.flow.v0.enums.TransactionPayoutPendingReason;
|
|
8480
|
-
readonly 'payout'?: io.flow.v0.models.PayoutReference;
|
|
8481
|
-
}
|
|
8482
|
-
|
|
8483
8435
|
interface OrganizationTransactionUpserted {
|
|
8484
8436
|
readonly 'discriminator': 'organization_transaction_upserted';
|
|
8485
8437
|
readonly 'event_id': string;
|
|
@@ -9047,6 +8999,7 @@ declare namespace io.flow.v0.models {
|
|
|
9047
8999
|
readonly 'processor': string;
|
|
9048
9000
|
readonly 'operation_identifier'?: io.flow.v0.models.PaymentProcessorIdentifier;
|
|
9049
9001
|
readonly 'account'?: io.flow.v0.models.PaymentProcessorAccount;
|
|
9002
|
+
readonly 'transaction_details'?: io.flow.v0.unions.PaymentProcessorTransactionDetails;
|
|
9050
9003
|
}
|
|
9051
9004
|
|
|
9052
9005
|
interface PaymentProcessorAccount {
|
|
@@ -9071,6 +9024,17 @@ declare namespace io.flow.v0.models {
|
|
|
9071
9024
|
readonly 'processor': string;
|
|
9072
9025
|
}
|
|
9073
9026
|
|
|
9027
|
+
interface PaymentProcessorTransactionDetailsCard {
|
|
9028
|
+
readonly 'discriminator': 'card';
|
|
9029
|
+
readonly 'transaction_identifier'?: string;
|
|
9030
|
+
readonly 'method_type'?: string;
|
|
9031
|
+
readonly 'result_status'?: string;
|
|
9032
|
+
readonly 'reason_code'?: string;
|
|
9033
|
+
readonly 'avs_result_code'?: string;
|
|
9034
|
+
readonly 'cvv_result_code'?: string;
|
|
9035
|
+
readonly 'threeds_result_code'?: string;
|
|
9036
|
+
}
|
|
9037
|
+
|
|
9074
9038
|
interface PaymentReference {
|
|
9075
9039
|
readonly 'id': string;
|
|
9076
9040
|
}
|
|
@@ -9310,10 +9274,13 @@ declare namespace io.flow.v0.models {
|
|
|
9310
9274
|
readonly 'ends_at'?: string;
|
|
9311
9275
|
}
|
|
9312
9276
|
|
|
9313
|
-
interface
|
|
9314
|
-
readonly '
|
|
9315
|
-
readonly '
|
|
9316
|
-
|
|
9277
|
+
interface PendingPayoutTransactionReason {
|
|
9278
|
+
readonly 'code': io.flow.v0.enums.PendingPayoutTransactionReasonCode;
|
|
9279
|
+
readonly 'created_at': string;
|
|
9280
|
+
}
|
|
9281
|
+
|
|
9282
|
+
interface PendingPayoutTransactionTimeout {
|
|
9283
|
+
readonly 'created_at': string;
|
|
9317
9284
|
}
|
|
9318
9285
|
|
|
9319
9286
|
interface PercentMargin {
|
|
@@ -10894,9 +10861,9 @@ declare namespace io.flow.v0.models {
|
|
|
10894
10861
|
}
|
|
10895
10862
|
|
|
10896
10863
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
10897
|
-
readonly 'units': io.flow.
|
|
10898
|
-
readonly 'base': io.flow.
|
|
10899
|
-
readonly 'surcharges': io.flow.
|
|
10864
|
+
readonly 'units': io.flow.v0.models.LabelUnits;
|
|
10865
|
+
readonly 'base': io.flow.v0.models.LabelBase;
|
|
10866
|
+
readonly 'surcharges': io.flow.v0.models.LabelSurcharge[];
|
|
10900
10867
|
}
|
|
10901
10868
|
|
|
10902
10869
|
interface ShippingLabelHopSummary {
|
|
@@ -10908,6 +10875,7 @@ declare namespace io.flow.v0.models {
|
|
|
10908
10875
|
interface ShippingLabelLaneSummary {
|
|
10909
10876
|
readonly 'id'?: string;
|
|
10910
10877
|
readonly 'ratecard': io.flow.v0.models.ShippingLabelRatecardSummary;
|
|
10878
|
+
readonly 'weight_break'?: number;
|
|
10911
10879
|
}
|
|
10912
10880
|
|
|
10913
10881
|
interface ShippingLabelPackage {
|
|
@@ -12151,13 +12119,29 @@ declare namespace io.flow.v0.models {
|
|
|
12151
12119
|
readonly 'country': string;
|
|
12152
12120
|
}
|
|
12153
12121
|
|
|
12122
|
+
interface TransactionMetadataManual {
|
|
12123
|
+
readonly 'discriminator': 'manual';
|
|
12124
|
+
readonly 'original': io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
12125
|
+
}
|
|
12126
|
+
|
|
12127
|
+
interface TransactionMetadataOriginalTransaction {
|
|
12128
|
+
readonly 'id': string;
|
|
12129
|
+
}
|
|
12130
|
+
|
|
12154
12131
|
interface TransactionMetadataShippingLabel {
|
|
12155
12132
|
readonly 'discriminator': 'shipping_label';
|
|
12156
12133
|
readonly 'request_method'?: io.flow.v0.enums.LabelRequestMethod;
|
|
12134
|
+
readonly 'carrier': io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
12135
|
+
}
|
|
12136
|
+
|
|
12137
|
+
interface TransactionMetadataShippingLabelCarrier {
|
|
12138
|
+
readonly 'id': string;
|
|
12139
|
+
readonly 'tracking_number': string;
|
|
12157
12140
|
}
|
|
12158
12141
|
|
|
12159
12142
|
interface TransactionMetadataTrueup {
|
|
12160
12143
|
readonly 'discriminator': 'trueup';
|
|
12144
|
+
readonly 'original': io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
12161
12145
|
readonly 'estimate': io.flow.v0.models.TransactionMetadataTrueupData;
|
|
12162
12146
|
readonly 'actual': io.flow.v0.models.TransactionMetadataTrueupData;
|
|
12163
12147
|
}
|
|
@@ -12168,6 +12152,8 @@ declare namespace io.flow.v0.models {
|
|
|
12168
12152
|
readonly 'base': io.flow.v0.models.TrueupLabelBase;
|
|
12169
12153
|
readonly 'surcharges': io.flow.v0.models.TrueupLabelSurcharge[];
|
|
12170
12154
|
readonly 'total': number;
|
|
12155
|
+
readonly 'dead'?: io.flow.v0.models.DeadWeight;
|
|
12156
|
+
readonly 'dimensional'?: io.flow.v0.models.DimensionalWeight;
|
|
12171
12157
|
}
|
|
12172
12158
|
|
|
12173
12159
|
interface TransactionNetworkDetailsCard {
|
|
@@ -12470,7 +12456,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12470
12456
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
12471
12457
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
12472
12458
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
12473
|
-
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);
|
|
12459
|
+
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);
|
|
12474
12460
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
12475
12461
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
12476
12462
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -12483,6 +12469,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12483
12469
|
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);
|
|
12484
12470
|
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);
|
|
12485
12471
|
type FraudOrderReference = (io.flow.v0.models.FraudFlowOrderReference | io.flow.v0.models.FraudPaymentRequestReference);
|
|
12472
|
+
type FuelSurchargeRate = (io.flow.v0.models.FuelSurchargePercent | io.flow.v0.models.FuelSurchargeByWeight);
|
|
12486
12473
|
type GatewayAuthenticationData = (io.flow.v0.models.StripeAuthenticationData);
|
|
12487
12474
|
type GatewayAuthenticationDataForm = (io.flow.v0.models.StripeAuthenticationDataForm);
|
|
12488
12475
|
type InlineActionConfiguration = (io.flow.v0.models.BrowserInlineActionConfiguration);
|
|
@@ -12490,6 +12477,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12490
12477
|
type InventoryStrategy = (io.flow.v0.models.InventoryBackorder | io.flow.v0.models.InventoryStock | io.flow.v0.models.InventoryUnlimited | io.flow.v0.models.InventoryFollowEcommercePlatform);
|
|
12491
12478
|
type KnowYourBusiness = (io.flow.v0.models.KnowYourBusinessUsa);
|
|
12492
12479
|
type KnowYourBusinessForm = (io.flow.v0.models.KnowYourBusinessUsaForm);
|
|
12480
|
+
type LabelSurchargeDetail = (io.flow.v0.models.LabelSurchargeDetailFlat | io.flow.v0.models.LabelSurchargeDetailPercentage | io.flow.v0.models.LabelSurchargeDetailPerWeightUnit);
|
|
12493
12481
|
type LocalizedPrice = (io.flow.v0.models.LocalizedItemPrice | io.flow.v0.models.LocalizedItemVat | io.flow.v0.models.LocalizedItemDuty | io.flow.v0.models.LocalizedTotal);
|
|
12494
12482
|
type LogoImage = (io.flow.v0.models.LogoImageSvg | io.flow.v0.models.LogoImageSetStatic);
|
|
12495
12483
|
type MerchantApplication = (io.flow.v0.models.ShopifyMerchantApplication);
|
|
@@ -12525,6 +12513,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12525
12513
|
});
|
|
12526
12514
|
|
|
12527
12515
|
type PaymentOrderReference = (io.flow.v0.models.AuthorizationOrderReference | io.flow.v0.models.PaymentPaymentRequestReference);
|
|
12516
|
+
type PaymentProcessorTransactionDetails = (io.flow.v0.models.PaymentProcessorTransactionDetailsCard);
|
|
12528
12517
|
type PaymentSource = (io.flow.v0.models.CardPaymentSource);
|
|
12529
12518
|
type PaymentSourceForm = (io.flow.v0.models.CardPaymentSourceForm);
|
|
12530
12519
|
type PayoutStatus = (io.flow.v0.models.PayoutStatusScheduled | io.flow.v0.models.PayoutStatusSent | io.flow.v0.models.PayoutStatusFailed);
|
|
@@ -12557,7 +12546,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12557
12546
|
type Token = (io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken);
|
|
12558
12547
|
type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
|
|
12559
12548
|
type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
|
|
12560
|
-
type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup);
|
|
12549
|
+
type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup | io.flow.v0.models.TransactionMetadataManual);
|
|
12561
12550
|
}
|
|
12562
12551
|
|
|
12563
12552
|
export const abandonedOrderPromotionStatus: PropTypes.Requireable<io.flow.v0.enums.AbandonedOrderPromotionStatus>;
|
|
@@ -12701,6 +12690,7 @@ export const paymentStatus: PropTypes.Requireable<io.flow.v0.enums.PaymentStatus
|
|
|
12701
12690
|
export const paymentType: PropTypes.Requireable<io.flow.v0.enums.PaymentType>;
|
|
12702
12691
|
export const payoutAttachmentType: PropTypes.Requireable<io.flow.v0.enums.PayoutAttachmentType>;
|
|
12703
12692
|
export const payoutStatusFailureCode: PropTypes.Requireable<io.flow.v0.enums.PayoutStatusFailureCode>;
|
|
12693
|
+
export const pendingPayoutTransactionReasonCode: PropTypes.Requireable<io.flow.v0.enums.PendingPayoutTransactionReasonCode>;
|
|
12704
12694
|
export const permittedHttpMethod: PropTypes.Requireable<io.flow.v0.enums.PermittedHttpMethod>;
|
|
12705
12695
|
export const physicalDeliverySpecialSerivce: PropTypes.Requireable<io.flow.v0.enums.PhysicalDeliverySpecialSerivce>;
|
|
12706
12696
|
export const postalType: PropTypes.Requireable<io.flow.v0.enums.PostalType>;
|
|
@@ -12759,7 +12749,6 @@ export const trackingNumberType: PropTypes.Requireable<io.flow.v0.enums.Tracking
|
|
|
12759
12749
|
export const trackingStatus: PropTypes.Requireable<io.flow.v0.enums.TrackingStatus>;
|
|
12760
12750
|
export const tradeAgreementName: PropTypes.Requireable<io.flow.v0.enums.TradeAgreementName>;
|
|
12761
12751
|
export const tradeAgreementStatus: PropTypes.Requireable<io.flow.v0.enums.TradeAgreementStatus>;
|
|
12762
|
-
export const transactionPayoutPendingReason: PropTypes.Requireable<io.flow.v0.enums.TransactionPayoutPendingReason>;
|
|
12763
12752
|
export const transactionSource: PropTypes.Requireable<io.flow.v0.enums.TransactionSource>;
|
|
12764
12753
|
export const trueupSource: PropTypes.Requireable<io.flow.v0.enums.TrueupSource>;
|
|
12765
12754
|
export const trueupSurchargeType: PropTypes.Requireable<io.flow.v0.enums.TrueupSurchargeType>;
|
|
@@ -12972,6 +12961,8 @@ export const channelAuthorizationForm: PropTypes.Requireable<io.flow.v0.models.C
|
|
|
12972
12961
|
export const channelBankAccount: PropTypes.Requireable<io.flow.v0.models.ChannelBankAccount>;
|
|
12973
12962
|
export const channelCurrency: PropTypes.Requireable<io.flow.v0.models.ChannelCurrency>;
|
|
12974
12963
|
export const channelCurrencyDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelCurrencyDeleted>;
|
|
12964
|
+
export const channelCurrencyPair: PropTypes.Requireable<io.flow.v0.models.ChannelCurrencyPair>;
|
|
12965
|
+
export const channelCurrencyRate: PropTypes.Requireable<io.flow.v0.models.ChannelCurrencyRate>;
|
|
12975
12966
|
export const channelCurrencyUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelCurrencyUpserted>;
|
|
12976
12967
|
export const channelDefaultBankAccount: PropTypes.Requireable<io.flow.v0.models.ChannelDefaultBankAccount>;
|
|
12977
12968
|
export const channelDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelDeleted>;
|
|
@@ -12985,6 +12976,9 @@ export const channelOrganizationUpserted: PropTypes.Requireable<io.flow.v0.model
|
|
|
12985
12976
|
export const channelPayout: PropTypes.Requireable<io.flow.v0.models.ChannelPayout>;
|
|
12986
12977
|
export const channelPayoutDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelPayoutDeleted>;
|
|
12987
12978
|
export const channelPayoutUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelPayoutUpserted>;
|
|
12979
|
+
export const channelPendingPayoutTransaction: PropTypes.Requireable<io.flow.v0.models.ChannelPendingPayoutTransaction>;
|
|
12980
|
+
export const channelPendingPayoutTransactionDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelPendingPayoutTransactionDeleted>;
|
|
12981
|
+
export const channelPendingPayoutTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelPendingPayoutTransactionUpserted>;
|
|
12988
12982
|
export const channelRate: PropTypes.Requireable<io.flow.v0.models.ChannelRate>;
|
|
12989
12983
|
export const channelReference: PropTypes.Requireable<io.flow.v0.models.ChannelReference>;
|
|
12990
12984
|
export const channelStatement: PropTypes.Requireable<io.flow.v0.models.ChannelStatement>;
|
|
@@ -12996,7 +12990,6 @@ export const channelTokenReference: PropTypes.Requireable<io.flow.v0.models.Chan
|
|
|
12996
12990
|
export const channelTransaction: PropTypes.Requireable<io.flow.v0.models.ChannelTransaction>;
|
|
12997
12991
|
export const channelTransactionDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionDeleted>;
|
|
12998
12992
|
export const channelTransactionDeletedV2: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionDeletedV2>;
|
|
12999
|
-
export const channelTransactionPayout: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionPayout>;
|
|
13000
12993
|
export const channelTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelTransactionUpserted>;
|
|
13001
12994
|
export const channelUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelUpserted>;
|
|
13002
12995
|
export const channelViesRegistration: PropTypes.Requireable<io.flow.v0.models.ChannelViesRegistration>;
|
|
@@ -13098,6 +13091,7 @@ export const datetimeRange: PropTypes.Requireable<io.flow.v0.models.DatetimeRang
|
|
|
13098
13091
|
export const datetimeWithTimezone: PropTypes.Requireable<io.flow.v0.models.DatetimeWithTimezone>;
|
|
13099
13092
|
export const ddpRatecardFee: PropTypes.Requireable<io.flow.v0.models.DdpRatecardFee>;
|
|
13100
13093
|
export const deactivationPutForm: PropTypes.Requireable<io.flow.v0.models.DeactivationPutForm>;
|
|
13094
|
+
export const deadWeight: PropTypes.Requireable<io.flow.v0.models.DeadWeight>;
|
|
13101
13095
|
export const defaultBankAccountForm: PropTypes.Requireable<io.flow.v0.models.DefaultBankAccountForm>;
|
|
13102
13096
|
export const deliveredDutySetting: PropTypes.Requireable<io.flow.v0.models.DeliveredDutySetting>;
|
|
13103
13097
|
export const deliveryItem: PropTypes.Requireable<io.flow.v0.models.DeliveryItem>;
|
|
@@ -13127,6 +13121,7 @@ export const dimension: PropTypes.Requireable<io.flow.v0.models.Dimension>;
|
|
|
13127
13121
|
export const dimensionEstimate: PropTypes.Requireable<io.flow.v0.models.DimensionEstimate>;
|
|
13128
13122
|
export const dimensionEstimateForm: PropTypes.Requireable<io.flow.v0.models.DimensionEstimateForm>;
|
|
13129
13123
|
export const dimensionEstimateVersion: PropTypes.Requireable<io.flow.v0.models.DimensionEstimateVersion>;
|
|
13124
|
+
export const dimensionalWeight: PropTypes.Requireable<io.flow.v0.models.DimensionalWeight>;
|
|
13130
13125
|
export const dimensions: PropTypes.Requireable<io.flow.v0.models.Dimensions>;
|
|
13131
13126
|
export const directAuthorizationForm: PropTypes.Requireable<io.flow.v0.models.DirectAuthorizationForm>;
|
|
13132
13127
|
export const directDebit: PropTypes.Requireable<io.flow.v0.models.DirectDebit>;
|
|
@@ -13256,6 +13251,8 @@ export const ftpOrganizationSettingsForm: PropTypes.Requireable<io.flow.v0.model
|
|
|
13256
13251
|
export const ftpServer: PropTypes.Requireable<io.flow.v0.models.FtpServer>;
|
|
13257
13252
|
export const ftpUser: PropTypes.Requireable<io.flow.v0.models.FtpUser>;
|
|
13258
13253
|
export const fuelSurchargeAmountByWeightServiceFee: PropTypes.Requireable<io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee>;
|
|
13254
|
+
export const fuelSurchargeByWeight: PropTypes.Requireable<io.flow.v0.models.FuelSurchargeByWeight>;
|
|
13255
|
+
export const fuelSurchargePercent: PropTypes.Requireable<io.flow.v0.models.FuelSurchargePercent>;
|
|
13259
13256
|
export const fuelSurchargeRatecardFee: PropTypes.Requireable<io.flow.v0.models.FuelSurchargeRatecardFee>;
|
|
13260
13257
|
export const fuelSurchargeServiceFee: PropTypes.Requireable<io.flow.v0.models.FuelSurchargeServiceFee>;
|
|
13261
13258
|
export const fulfillment: PropTypes.Requireable<io.flow.v0.models.Fulfillment>;
|
|
@@ -13385,14 +13382,20 @@ export const klaviyoOrderPrices: PropTypes.Requireable<io.flow.v0.models.Klaviyo
|
|
|
13385
13382
|
export const knowYourBusinessUsa: PropTypes.Requireable<io.flow.v0.models.KnowYourBusinessUsa>;
|
|
13386
13383
|
export const knowYourBusinessUsaForm: PropTypes.Requireable<io.flow.v0.models.KnowYourBusinessUsaForm>;
|
|
13387
13384
|
export const kubeHealthcheck: PropTypes.Requireable<io.flow.v0.models.KubeHealthcheck>;
|
|
13385
|
+
export const labelBase: PropTypes.Requireable<io.flow.v0.models.LabelBase>;
|
|
13388
13386
|
export const labelDeletedV2: PropTypes.Requireable<io.flow.v0.models.LabelDeletedV2>;
|
|
13389
13387
|
export const labelFormatDeleted: PropTypes.Requireable<io.flow.v0.models.LabelFormatDeleted>;
|
|
13390
13388
|
export const labelFormatUpserted: PropTypes.Requireable<io.flow.v0.models.LabelFormatUpserted>;
|
|
13391
13389
|
export const labelOrderSummary: PropTypes.Requireable<io.flow.v0.models.LabelOrderSummary>;
|
|
13392
13390
|
export const labelReference: PropTypes.Requireable<io.flow.v0.models.LabelReference>;
|
|
13391
|
+
export const labelSurcharge: PropTypes.Requireable<io.flow.v0.models.LabelSurcharge>;
|
|
13392
|
+
export const labelSurchargeDetailFlat: PropTypes.Requireable<io.flow.v0.models.LabelSurchargeDetailFlat>;
|
|
13393
|
+
export const labelSurchargeDetailPerWeightUnit: PropTypes.Requireable<io.flow.v0.models.LabelSurchargeDetailPerWeightUnit>;
|
|
13394
|
+
export const labelSurchargeDetailPercentage: PropTypes.Requireable<io.flow.v0.models.LabelSurchargeDetailPercentage>;
|
|
13393
13395
|
export const labelTrackingCarrierService: PropTypes.Requireable<io.flow.v0.models.LabelTrackingCarrierService>;
|
|
13394
13396
|
export const labelTrackingSummary: PropTypes.Requireable<io.flow.v0.models.LabelTrackingSummary>;
|
|
13395
13397
|
export const labelTrackingSummaryUpdate: PropTypes.Requireable<io.flow.v0.models.LabelTrackingSummaryUpdate>;
|
|
13398
|
+
export const labelUnits: PropTypes.Requireable<io.flow.v0.models.LabelUnits>;
|
|
13396
13399
|
export const labelUpserted: PropTypes.Requireable<io.flow.v0.models.LabelUpserted>;
|
|
13397
13400
|
export const labelUpsertedV2: PropTypes.Requireable<io.flow.v0.models.LabelUpsertedV2>;
|
|
13398
13401
|
export const landedCostItem: PropTypes.Requireable<io.flow.v0.models.LandedCostItem>;
|
|
@@ -13609,6 +13612,9 @@ export const organizationOnboardingStateUpserted: PropTypes.Requireable<io.flow.
|
|
|
13609
13612
|
export const organizationPayout: PropTypes.Requireable<io.flow.v0.models.OrganizationPayout>;
|
|
13610
13613
|
export const organizationPayoutDeleted: PropTypes.Requireable<io.flow.v0.models.OrganizationPayoutDeleted>;
|
|
13611
13614
|
export const organizationPayoutUpserted: PropTypes.Requireable<io.flow.v0.models.OrganizationPayoutUpserted>;
|
|
13615
|
+
export const organizationPendingPayoutTransaction: PropTypes.Requireable<io.flow.v0.models.OrganizationPendingPayoutTransaction>;
|
|
13616
|
+
export const organizationPendingPayoutTransactionDeleted: PropTypes.Requireable<io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted>;
|
|
13617
|
+
export const organizationPendingPayoutTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted>;
|
|
13612
13618
|
export const organizationPutForm: PropTypes.Requireable<io.flow.v0.models.OrganizationPutForm>;
|
|
13613
13619
|
export const organizationRatesData: PropTypes.Requireable<io.flow.v0.models.OrganizationRatesData>;
|
|
13614
13620
|
export const organizationRatesPublished: PropTypes.Requireable<io.flow.v0.models.OrganizationRatesPublished>;
|
|
@@ -13623,7 +13629,6 @@ export const organizationTokenReference: PropTypes.Requireable<io.flow.v0.models
|
|
|
13623
13629
|
export const organizationTokenV2: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenV2>;
|
|
13624
13630
|
export const organizationTokenV2Reference: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenV2Reference>;
|
|
13625
13631
|
export const organizationTransactionDeleted: PropTypes.Requireable<io.flow.v0.models.OrganizationTransactionDeleted>;
|
|
13626
|
-
export const organizationTransactionPayout: PropTypes.Requireable<io.flow.v0.models.OrganizationTransactionPayout>;
|
|
13627
13632
|
export const organizationTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.OrganizationTransactionUpserted>;
|
|
13628
13633
|
export const organizationUpserted: PropTypes.Requireable<io.flow.v0.models.OrganizationUpserted>;
|
|
13629
13634
|
export const organizationUpsertedV2: PropTypes.Requireable<io.flow.v0.models.OrganizationUpsertedV2>;
|
|
@@ -13718,6 +13723,7 @@ export const paymentProcessorAccount: PropTypes.Requireable<io.flow.v0.models.Pa
|
|
|
13718
13723
|
export const paymentProcessorAccountReference: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorAccountReference>;
|
|
13719
13724
|
export const paymentProcessorIdentifier: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorIdentifier>;
|
|
13720
13725
|
export const paymentProcessorReference: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorReference>;
|
|
13726
|
+
export const paymentProcessorTransactionDetailsCard: PropTypes.Requireable<io.flow.v0.models.PaymentProcessorTransactionDetailsCard>;
|
|
13721
13727
|
export const paymentReference: PropTypes.Requireable<io.flow.v0.models.PaymentReference>;
|
|
13722
13728
|
export const paymentRefund: PropTypes.Requireable<io.flow.v0.models.PaymentRefund>;
|
|
13723
13729
|
export const paymentRefundForm: PropTypes.Requireable<io.flow.v0.models.PaymentRefundForm>;
|
|
@@ -13751,7 +13757,8 @@ export const paypalAuthorizationForm: PropTypes.Requireable<io.flow.v0.models.Pa
|
|
|
13751
13757
|
export const peakSurchargeByWeightServiceFee: PropTypes.Requireable<io.flow.v0.models.PeakSurchargeByWeightServiceFee>;
|
|
13752
13758
|
export const peakSurchargeRatecardFee: PropTypes.Requireable<io.flow.v0.models.PeakSurchargeRatecardFee>;
|
|
13753
13759
|
export const peakSurchargeServiceFee: PropTypes.Requireable<io.flow.v0.models.PeakSurchargeServiceFee>;
|
|
13754
|
-
export const
|
|
13760
|
+
export const pendingPayoutTransactionReason: PropTypes.Requireable<io.flow.v0.models.PendingPayoutTransactionReason>;
|
|
13761
|
+
export const pendingPayoutTransactionTimeout: PropTypes.Requireable<io.flow.v0.models.PendingPayoutTransactionTimeout>;
|
|
13755
13762
|
export const percentMargin: PropTypes.Requireable<io.flow.v0.models.PercentMargin>;
|
|
13756
13763
|
export const permissionAudit: PropTypes.Requireable<io.flow.v0.models.PermissionAudit>;
|
|
13757
13764
|
export const permissionCheck: PropTypes.Requireable<io.flow.v0.models.PermissionCheck>;
|
|
@@ -14130,7 +14137,10 @@ export const transactionDetailsCard: PropTypes.Requireable<io.flow.v0.models.Tra
|
|
|
14130
14137
|
export const transactionMetadataChannel: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataChannel>;
|
|
14131
14138
|
export const transactionMetadataChannelCardMetadata: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataChannelCardMetadata>;
|
|
14132
14139
|
export const transactionMetadataChannelCardMetadataIssuerSummary: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataChannelCardMetadataIssuerSummary>;
|
|
14140
|
+
export const transactionMetadataManual: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataManual>;
|
|
14141
|
+
export const transactionMetadataOriginalTransaction: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataOriginalTransaction>;
|
|
14133
14142
|
export const transactionMetadataShippingLabel: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataShippingLabel>;
|
|
14143
|
+
export const transactionMetadataShippingLabelCarrier: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataShippingLabelCarrier>;
|
|
14134
14144
|
export const transactionMetadataTrueup: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueup>;
|
|
14135
14145
|
export const transactionMetadataTrueupData: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueupData>;
|
|
14136
14146
|
export const transactionNetworkDetailsCard: PropTypes.Requireable<io.flow.v0.models.TransactionNetworkDetailsCard>;
|
|
@@ -14214,6 +14224,7 @@ export const exportDelivery: PropTypes.Requireable<io.flow.v0.unions.ExportDeliv
|
|
|
14214
14224
|
export const exportType: PropTypes.Requireable<io.flow.v0.unions.ExportType>;
|
|
14215
14225
|
export const fieldValidationRule: PropTypes.Requireable<io.flow.v0.unions.FieldValidationRule>;
|
|
14216
14226
|
export const fraudOrderReference: PropTypes.Requireable<io.flow.v0.unions.FraudOrderReference>;
|
|
14227
|
+
export const fuelSurchargeRate: PropTypes.Requireable<io.flow.v0.unions.FuelSurchargeRate>;
|
|
14217
14228
|
export const gatewayAuthenticationData: PropTypes.Requireable<io.flow.v0.unions.GatewayAuthenticationData>;
|
|
14218
14229
|
export const gatewayAuthenticationDataForm: PropTypes.Requireable<io.flow.v0.unions.GatewayAuthenticationDataForm>;
|
|
14219
14230
|
export const inlineActionConfiguration: PropTypes.Requireable<io.flow.v0.unions.InlineActionConfiguration>;
|
|
@@ -14221,6 +14232,7 @@ export const inputSpecificationLimitation: PropTypes.Requireable<io.flow.v0.unio
|
|
|
14221
14232
|
export const inventoryStrategy: PropTypes.Requireable<io.flow.v0.unions.InventoryStrategy>;
|
|
14222
14233
|
export const knowYourBusiness: PropTypes.Requireable<io.flow.v0.unions.KnowYourBusiness>;
|
|
14223
14234
|
export const knowYourBusinessForm: PropTypes.Requireable<io.flow.v0.unions.KnowYourBusinessForm>;
|
|
14235
|
+
export const labelSurchargeDetail: PropTypes.Requireable<io.flow.v0.unions.LabelSurchargeDetail>;
|
|
14224
14236
|
export const localizedPrice: PropTypes.Requireable<io.flow.v0.unions.LocalizedPrice>;
|
|
14225
14237
|
export const logoImage: PropTypes.Requireable<io.flow.v0.unions.LogoImage>;
|
|
14226
14238
|
export const merchantApplication: PropTypes.Requireable<io.flow.v0.unions.MerchantApplication>;
|
|
@@ -14248,6 +14260,7 @@ export const paymentMethodStoredDetailsCard: PropTypes.Requireable<io.flow.v0.un
|
|
|
14248
14260
|
export const paymentMethodSummary: PropTypes.Requireable<io.flow.v0.unions.PaymentMethodSummary>;
|
|
14249
14261
|
export const paymentMethodTag: PropTypes.Requireable<io.flow.v0.unions.PaymentMethodTag>;
|
|
14250
14262
|
export const paymentOrderReference: PropTypes.Requireable<io.flow.v0.unions.PaymentOrderReference>;
|
|
14263
|
+
export const paymentProcessorTransactionDetails: PropTypes.Requireable<io.flow.v0.unions.PaymentProcessorTransactionDetails>;
|
|
14251
14264
|
export const paymentSource: PropTypes.Requireable<io.flow.v0.unions.PaymentSource>;
|
|
14252
14265
|
export const paymentSourceForm: PropTypes.Requireable<io.flow.v0.unions.PaymentSourceForm>;
|
|
14253
14266
|
export const payoutStatus: PropTypes.Requireable<io.flow.v0.unions.PayoutStatus>;
|