@flowio/api-internal-prop-types 9.24.134 → 9.24.135
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-internal.d.ts +273 -85
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +273 -85
- package/src/api-internal.js +605 -391
package/src/api-internal.d.ts
CHANGED
|
@@ -5574,7 +5574,6 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
5574
5574
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
5575
5575
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
5576
5576
|
type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
|
|
5577
|
-
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
5578
5577
|
}
|
|
5579
5578
|
|
|
5580
5579
|
declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
@@ -5658,7 +5657,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5658
5657
|
readonly 'organization_id': string;
|
|
5659
5658
|
readonly 'shopify_order_id': string;
|
|
5660
5659
|
readonly 'order_number': string;
|
|
5661
|
-
readonly 'tax_and_duty_inclusivity_setting': io.flow.
|
|
5660
|
+
readonly 'tax_and_duty_inclusivity_setting': io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
5662
5661
|
}
|
|
5663
5662
|
|
|
5664
5663
|
interface OrderValidationError {
|
|
@@ -5763,6 +5762,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5763
5762
|
readonly 'access_token_masked'?: string;
|
|
5764
5763
|
readonly 'shopify_plan_name'?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
5765
5764
|
readonly 'catalog_publication_owner'?: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
5765
|
+
readonly 'fast_sellability_completed_at'?: string;
|
|
5766
5766
|
}
|
|
5767
5767
|
|
|
5768
5768
|
interface ShopifyMarketsShopForm {
|
|
@@ -5886,6 +5886,7 @@ declare namespace io.flow.consumer.invoice.v0.enums {
|
|
|
5886
5886
|
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
5887
5887
|
type ConsumerInvoiceDocumentType = 'pdf';
|
|
5888
5888
|
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
5889
|
+
type FeeInvoiceType = 'mor_invoice' | 'label_invoice' | 'mor_credit_memo' | 'label_credit_memo';
|
|
5889
5890
|
type TaxJurisdictionType = 'country' | 'province';
|
|
5890
5891
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
5891
5892
|
}
|
|
@@ -6097,6 +6098,21 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
6097
6098
|
readonly 'attributes'?: Record<string, string>;
|
|
6098
6099
|
}
|
|
6099
6100
|
|
|
6101
|
+
interface FeeInvoice {
|
|
6102
|
+
readonly 'id': string;
|
|
6103
|
+
readonly 'number': string;
|
|
6104
|
+
readonly 'invoice_type': io.flow.consumer.invoice.v0.enums.FeeInvoiceType;
|
|
6105
|
+
readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
6106
|
+
readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
6107
|
+
readonly 'date': string;
|
|
6108
|
+
readonly 'b2b_tax_transaction_id': string;
|
|
6109
|
+
readonly 'order_number': string;
|
|
6110
|
+
readonly 'tax': io.flow.common.v0.models.Money;
|
|
6111
|
+
readonly 'tax_lines'?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
|
|
6112
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
6113
|
+
readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
6114
|
+
}
|
|
6115
|
+
|
|
6100
6116
|
interface InvoiceExport {
|
|
6101
6117
|
readonly 'id': string;
|
|
6102
6118
|
}
|
|
@@ -8466,7 +8482,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
8466
8482
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
8467
8483
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
8468
8484
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
8469
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing';
|
|
8485
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'organization_deactivated';
|
|
8470
8486
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
8471
8487
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
8472
8488
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -8849,7 +8865,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
8849
8865
|
|
|
8850
8866
|
interface DiscountForm {
|
|
8851
8867
|
readonly 'offer': io.flow.common.v0.unions.DiscountOffer;
|
|
8852
|
-
readonly 'target'
|
|
8868
|
+
readonly 'target'?: io.flow.common.v0.enums.DiscountTarget;
|
|
8853
8869
|
readonly 'label'?: string;
|
|
8854
8870
|
}
|
|
8855
8871
|
|
|
@@ -9051,7 +9067,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
9051
9067
|
readonly 'parent'?: io.flow.common.v0.models.OrganizationReference;
|
|
9052
9068
|
readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
|
|
9053
9069
|
readonly 'created_at'?: string;
|
|
9054
|
-
readonly 'status'
|
|
9070
|
+
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
9055
9071
|
readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
|
|
9056
9072
|
}
|
|
9057
9073
|
|
|
@@ -9489,6 +9505,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
9489
9505
|
type PriceFacetBoundary = 'min' | 'max';
|
|
9490
9506
|
type PricingType = 'inclusive_pricing';
|
|
9491
9507
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
9508
|
+
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
9492
9509
|
}
|
|
9493
9510
|
|
|
9494
9511
|
declare namespace io.flow.experience.v0.models {
|
|
@@ -10886,13 +10903,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10886
10903
|
readonly 'commercial_invoice_mode'?: io.flow.label.v0.enums.CommercialInvoiceMode;
|
|
10887
10904
|
}
|
|
10888
10905
|
|
|
10889
|
-
interface RatecardEstimateSummaryForm {
|
|
10890
|
-
readonly 'origin'?: string;
|
|
10891
|
-
readonly 'destination'?: string;
|
|
10892
|
-
readonly 'service'?: string;
|
|
10893
|
-
readonly 'center_key'?: string;
|
|
10894
|
-
}
|
|
10895
|
-
|
|
10896
10906
|
interface RatecardEstimateV1 {
|
|
10897
10907
|
readonly 'discriminator': 'ratecard_estimate_v1';
|
|
10898
10908
|
readonly 'service': io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
@@ -11126,6 +11136,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11126
11136
|
}
|
|
11127
11137
|
|
|
11128
11138
|
interface ShippingRateEstimateRequest {
|
|
11139
|
+
readonly 'carrier_id': string;
|
|
11129
11140
|
readonly 'origin_address': io.flow.common.v0.models.Address;
|
|
11130
11141
|
readonly 'destination_address': io.flow.common.v0.models.Address;
|
|
11131
11142
|
readonly 'package_dimensions': io.flow.common.v0.models.Dimension;
|
|
@@ -12880,7 +12891,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
12880
12891
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
12881
12892
|
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12882
12893
|
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min' | 'order_cancellation_without_capture';
|
|
12883
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax';
|
|
12894
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label';
|
|
12884
12895
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
12885
12896
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
12886
12897
|
}
|
|
@@ -13209,6 +13220,12 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13209
13220
|
readonly 'id': string;
|
|
13210
13221
|
}
|
|
13211
13222
|
|
|
13223
|
+
interface TransactionMetadataFlatRateLabel {
|
|
13224
|
+
readonly 'discriminator': 'flat_rate_label';
|
|
13225
|
+
readonly 'flat_rate'?: number;
|
|
13226
|
+
readonly 'coefficient'?: number;
|
|
13227
|
+
}
|
|
13228
|
+
|
|
13212
13229
|
interface TransactionMetadataManual {
|
|
13213
13230
|
readonly 'discriminator': 'manual';
|
|
13214
13231
|
readonly 'description': string;
|
|
@@ -13377,7 +13394,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
13377
13394
|
type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
|
|
13378
13395
|
type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
|
|
13379
13396
|
type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
|
|
13380
|
-
type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataTrueupBase | io.flow.billing.v0.models.TransactionMetadataTrueupSurcharge | io.flow.billing.v0.models.TransactionMetadataCarrierCharge | io.flow.billing.v0.models.TransactionMetadataManual | io.flow.billing.v0.models.TransactionMetadataFailedPayout | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction | io.flow.billing.v0.models.TransactionMetadataTaxDuty | io.flow.billing.v0.models.TransactionMetadataMerchantFee);
|
|
13397
|
+
type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataTrueupBase | io.flow.billing.v0.models.TransactionMetadataTrueupSurcharge | io.flow.billing.v0.models.TransactionMetadataCarrierCharge | io.flow.billing.v0.models.TransactionMetadataManual | io.flow.billing.v0.models.TransactionMetadataFailedPayout | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction | io.flow.billing.v0.models.TransactionMetadataTaxDuty | io.flow.billing.v0.models.TransactionMetadataMerchantFee | io.flow.billing.v0.models.TransactionMetadataFlatRateLabel);
|
|
13381
13398
|
}
|
|
13382
13399
|
|
|
13383
13400
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -13637,7 +13654,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
13637
13654
|
|
|
13638
13655
|
declare namespace io.flow.merchant.of.record.v0.enums {
|
|
13639
13656
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
13640
|
-
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa' | 'ge-can' | 'ge-gbr' | 'ge-irl';
|
|
13657
|
+
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa' | 'ge-can' | 'ge-can-ship' | 'ge-gbr' | 'ge-irl';
|
|
13641
13658
|
}
|
|
13642
13659
|
|
|
13643
13660
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
@@ -14119,7 +14136,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14119
14136
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95' | 'prr-36e1603f56e54eb889792637c29eed40' | 'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e' | 'prr-ec2f3d608b7e43a49de88ac40e6b50a8' | 'prr-04ed078c39ca4447b171f767d71a481d' | 'prr-bb664a76d6d64a17843e720e6ccd401a' | 'prr-8ce63afcd48641eb9d44e04117348a96' | 'prr-76544617791b4ce8af96b3a7879474c6' | 'prr-566cc67167944bc4bd08167aa9c0beba' | 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
14120
14137
|
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
14121
14138
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
14122
|
-
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo';
|
|
14139
|
+
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo' | 'mor_invoice' | 'mor_credit_memo' | 'label_invoice' | 'label_credit_memo';
|
|
14123
14140
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
14124
14141
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
14125
14142
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
@@ -14128,7 +14145,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14128
14145
|
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio' | 'ge_revenue_share_standard_transactions_count' | 'ge_revenue_share_standard_transactions_total' | 'ge_revenue_share_standard_transactions_percentage' | 'ge_revenue_share_shopify_plus_transactions_count' | 'ge_revenue_share_shopify_plus_transactions_total' | 'ge_revenue_share_shopify_plus_transactions_percentage' | 'non_l4l_tax_duty_fx_transactions_count' | 'non_l4l_tax_duty_fx_transactions_total' | 'non_l4l_tax_duty_fx_transactions_percentage' | 'sp_adjustment_transactions_count' | 'sp_adjustment_transactions_total' | 'sp_billable_label_transactions_count' | 'sp_billable_label_transactions_count_for_unique_orders' | 'sp_billable_label_transactions_total' | 'capture_transactions_standard_count' | 'capture_transactions_standard_total' | 'capture_transactions_shopify_plus_count' | 'capture_transactions_shopify_plus_total' | 'sp_capture_transactions_count' | 'sp_capture_transactions_total' | 'sp_carrier_charge_transactions_count' | 'sp_carrier_charge_transactions_total' | 'sp_channel_transactions_count' | 'sp_channel_transactions_total' | 'sp_duty_transactions_count' | 'sp_duty_transactions_total' | 'sp_manual_transactions_count' | 'sp_manual_transactions_total' | 'sp_refund_transactions_count' | 'sp_refund_transactions_total' | 'sp_reversal_transactions_count' | 'sp_reversal_transactions_total' | 'sp_revenue_share_label_transactions_count' | 'sp_revenue_share_label_transactions_count_for_unique_orders' | 'sp_revenue_share_label_transactions_total' | 'sp_tax_transactions_count' | 'sp_tax_transactions_total' | 'sp_transfer_transactions_count' | 'sp_transfer_transactions_total' | 'sp_trueup_transactions_count' | 'sp_trueup_transactions_total';
|
|
14129
14146
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
14130
14147
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
14131
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax';
|
|
14148
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label';
|
|
14132
14149
|
type BojanaItemType = 'physical' | 'digital';
|
|
14133
14150
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
14134
14151
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -14143,7 +14160,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14143
14160
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
14144
14161
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
14145
14162
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
14146
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing';
|
|
14163
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'organization_deactivated';
|
|
14147
14164
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
14148
14165
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
14149
14166
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
@@ -14200,7 +14217,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14200
14217
|
type EmptyAttribute = 'irrelevant';
|
|
14201
14218
|
type ErpFileType = 'vendor';
|
|
14202
14219
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
14203
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14220
|
+
type EventType = 'adaptive_shipping_rate_upserted' | 'adaptive_shipping_rate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14204
14221
|
type ExperienceImportType = 'experience_with_settings';
|
|
14205
14222
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14206
14223
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14210,6 +14227,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14210
14227
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
14211
14228
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
14212
14229
|
type FileType = 'pdf';
|
|
14230
|
+
type FlatRateLabelTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
14213
14231
|
type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
|
|
14214
14232
|
type FraudProviderStatus = 'active' | 'archived';
|
|
14215
14233
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
@@ -14243,6 +14261,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14243
14261
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
14244
14262
|
type LogisticsCapability = 'logistics_address_correction';
|
|
14245
14263
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
14264
|
+
type MailClass = 'standard' | 'express';
|
|
14246
14265
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
14247
14266
|
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback' | 'v1_migration_neg_balance_settlement';
|
|
14248
14267
|
type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
@@ -14296,6 +14315,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14296
14315
|
type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
|
|
14297
14316
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
14298
14317
|
type RateSource = 'calculated' | 'market';
|
|
14318
|
+
type RaveenaItemType = 'physical' | 'digital';
|
|
14299
14319
|
type RedirectReason = 'three_d_secure';
|
|
14300
14320
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
14301
14321
|
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
@@ -14354,7 +14374,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14354
14374
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
14355
14375
|
type TariffEligibilityType = 'rex';
|
|
14356
14376
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults' | 'item_dimensions';
|
|
14357
|
-
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
14358
14377
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
14359
14378
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
14360
14379
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
@@ -14630,6 +14649,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14630
14649
|
readonly 'quantity': number;
|
|
14631
14650
|
}
|
|
14632
14651
|
|
|
14652
|
+
interface AdaptiveShippingRate {
|
|
14653
|
+
readonly 'id': string;
|
|
14654
|
+
readonly 'organization_id': string;
|
|
14655
|
+
readonly 'destination_country': string;
|
|
14656
|
+
readonly 'coefficient': number;
|
|
14657
|
+
readonly 'flat_rates': io.flow.internal.v0.models.FlatRate[];
|
|
14658
|
+
readonly 'version_id'?: string;
|
|
14659
|
+
readonly 'effective_at': string;
|
|
14660
|
+
readonly 'effective_until'?: string;
|
|
14661
|
+
}
|
|
14662
|
+
|
|
14663
|
+
interface AdaptiveShippingRateDeleted {
|
|
14664
|
+
readonly 'discriminator': 'adaptive_shipping_rate_deleted';
|
|
14665
|
+
readonly 'event_id': string;
|
|
14666
|
+
readonly 'timestamp': string;
|
|
14667
|
+
readonly 'organization': string;
|
|
14668
|
+
readonly 'id': string;
|
|
14669
|
+
}
|
|
14670
|
+
|
|
14671
|
+
interface AdaptiveShippingRateUpserted {
|
|
14672
|
+
readonly 'discriminator': 'adaptive_shipping_rate_upserted';
|
|
14673
|
+
readonly 'event_id': string;
|
|
14674
|
+
readonly 'timestamp': string;
|
|
14675
|
+
readonly 'organization': string;
|
|
14676
|
+
readonly 'adaptive_shipping_rate': io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
14677
|
+
}
|
|
14678
|
+
|
|
14633
14679
|
interface AdditionalImportTax {
|
|
14634
14680
|
readonly 'name'?: string;
|
|
14635
14681
|
readonly 'additional_import_tax_value'?: io.flow.common.v0.models.Money;
|
|
@@ -15072,11 +15118,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15072
15118
|
readonly 'export_id': string;
|
|
15073
15119
|
}
|
|
15074
15120
|
|
|
15075
|
-
interface AllOrganizationsMembership {
|
|
15076
|
-
readonly 'user_id': string;
|
|
15077
|
-
readonly 'role': io.flow.common.v0.enums.Role;
|
|
15078
|
-
}
|
|
15079
|
-
|
|
15080
15121
|
interface AllocationItemReference {
|
|
15081
15122
|
readonly 'number': string;
|
|
15082
15123
|
}
|
|
@@ -15257,6 +15298,54 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15257
15298
|
readonly 'document_number'?: string;
|
|
15258
15299
|
}
|
|
15259
15300
|
|
|
15301
|
+
interface B2BTaxTransaction {
|
|
15302
|
+
readonly 'id': string;
|
|
15303
|
+
readonly 'organization_id': string;
|
|
15304
|
+
readonly 'order_number': string;
|
|
15305
|
+
readonly 'transaction_source_id': string;
|
|
15306
|
+
readonly 'transaction_type': io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
15307
|
+
readonly 'transaction_date': string;
|
|
15308
|
+
readonly 'currency': string;
|
|
15309
|
+
readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
15310
|
+
readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
15311
|
+
readonly 'taxable_items': io.flow.internal.v0.models.B2BTransactionTaxableItem[];
|
|
15312
|
+
readonly 'taxable_amount_total': io.flow.common.v0.models.Money;
|
|
15313
|
+
readonly 'tax_total': io.flow.common.v0.models.Money;
|
|
15314
|
+
readonly 'total': io.flow.common.v0.models.Money;
|
|
15315
|
+
readonly 'document_number'?: string;
|
|
15316
|
+
}
|
|
15317
|
+
|
|
15318
|
+
interface B2BTaxTransactionDeleted {
|
|
15319
|
+
readonly 'discriminator': 'b2b_tax_transaction_deleted';
|
|
15320
|
+
readonly 'event_id': string;
|
|
15321
|
+
readonly 'timestamp': string;
|
|
15322
|
+
readonly 'organization': string;
|
|
15323
|
+
readonly 'id': string;
|
|
15324
|
+
}
|
|
15325
|
+
|
|
15326
|
+
interface B2BTaxTransactionUpserted {
|
|
15327
|
+
readonly 'discriminator': 'b2b_tax_transaction_upserted';
|
|
15328
|
+
readonly 'event_id': string;
|
|
15329
|
+
readonly 'timestamp': string;
|
|
15330
|
+
readonly 'organization': string;
|
|
15331
|
+
readonly 'b2b_tax_transaction': io.flow.internal.v0.models.B2BTaxTransaction;
|
|
15332
|
+
}
|
|
15333
|
+
|
|
15334
|
+
interface B2BTransactionTaxLine {
|
|
15335
|
+
readonly 'tax_type': io.flow.consumer.invoice.v0.enums.TaxType;
|
|
15336
|
+
readonly 'tax_rate': number;
|
|
15337
|
+
readonly 'tax_amount': io.flow.common.v0.models.Money;
|
|
15338
|
+
readonly 'tax_rate_type': io.flow.internal.v0.enums.B2BTaxRateType;
|
|
15339
|
+
}
|
|
15340
|
+
|
|
15341
|
+
interface B2BTransactionTaxableItem {
|
|
15342
|
+
readonly 'line_item_reference': string;
|
|
15343
|
+
readonly 'label': string;
|
|
15344
|
+
readonly 'taxable_amount': io.flow.common.v0.models.Money;
|
|
15345
|
+
readonly 'total': io.flow.common.v0.models.Money;
|
|
15346
|
+
readonly 'taxes': io.flow.internal.v0.models.B2BTransactionTaxLine[];
|
|
15347
|
+
}
|
|
15348
|
+
|
|
15260
15349
|
interface BankAccount {
|
|
15261
15350
|
readonly 'status': io.flow.internal.v0.enums.BankAccountStatus;
|
|
15262
15351
|
readonly 'hold_created_at'?: string;
|
|
@@ -15568,6 +15657,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15568
15657
|
readonly 'merchant_fee': io.flow.common.v0.models.Price;
|
|
15569
15658
|
readonly 'b2b_fee_mor_tax': io.flow.common.v0.models.Price;
|
|
15570
15659
|
readonly 'b2b_fee_shipping_tax': io.flow.common.v0.models.Price;
|
|
15660
|
+
readonly 'flat_rate_label': io.flow.common.v0.models.Price;
|
|
15571
15661
|
}
|
|
15572
15662
|
|
|
15573
15663
|
interface BillingStatementUpserted {
|
|
@@ -15643,6 +15733,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15643
15733
|
readonly 'added_on': string;
|
|
15644
15734
|
}
|
|
15645
15735
|
|
|
15736
|
+
interface BojanaItemDeleted {
|
|
15737
|
+
readonly 'discriminator': 'bojana_item_deleted';
|
|
15738
|
+
readonly 'event_id': string;
|
|
15739
|
+
readonly 'timestamp': string;
|
|
15740
|
+
readonly 'id': string;
|
|
15741
|
+
}
|
|
15742
|
+
|
|
15646
15743
|
interface BojanaItemForm {
|
|
15647
15744
|
readonly 'number': string;
|
|
15648
15745
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -15651,6 +15748,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15651
15748
|
readonly 'added_on': string;
|
|
15652
15749
|
}
|
|
15653
15750
|
|
|
15751
|
+
interface BojanaItemUpserted {
|
|
15752
|
+
readonly 'discriminator': 'bojana_item_upserted';
|
|
15753
|
+
readonly 'event_id': string;
|
|
15754
|
+
readonly 'timestamp': string;
|
|
15755
|
+
readonly 'item': io.flow.internal.v0.models.BojanaItem;
|
|
15756
|
+
}
|
|
15757
|
+
|
|
15654
15758
|
interface BooleanFeatureDefaultValue {
|
|
15655
15759
|
readonly 'discriminator': 'boolean';
|
|
15656
15760
|
readonly 'value': boolean;
|
|
@@ -18428,6 +18532,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18428
18532
|
readonly 'organization_capability'?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
18429
18533
|
}
|
|
18430
18534
|
|
|
18535
|
+
interface FlatRate {
|
|
18536
|
+
readonly 'mail_class': io.flow.internal.v0.enums.MailClass;
|
|
18537
|
+
readonly 'carrier_id': string;
|
|
18538
|
+
readonly 'service_id': string;
|
|
18539
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
18540
|
+
readonly 'free_shipping_threshold'?: io.flow.common.v0.models.Money;
|
|
18541
|
+
readonly 'min_delivery_days'?: number;
|
|
18542
|
+
readonly 'max_delivery_days'?: number;
|
|
18543
|
+
}
|
|
18544
|
+
|
|
18545
|
+
interface FlatRateLabelTransaction {
|
|
18546
|
+
readonly 'discriminator': 'flat_rate_label_transaction';
|
|
18547
|
+
readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
18548
|
+
readonly 'id': string;
|
|
18549
|
+
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
18550
|
+
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
18551
|
+
readonly 'posted_at'?: string;
|
|
18552
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
18553
|
+
readonly 'description': string;
|
|
18554
|
+
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
18555
|
+
readonly 'created_at': string;
|
|
18556
|
+
}
|
|
18557
|
+
|
|
18431
18558
|
interface FlexeWebhook {
|
|
18432
18559
|
readonly 'placeholder'?: boolean;
|
|
18433
18560
|
}
|
|
@@ -18764,17 +18891,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18764
18891
|
readonly 'ftp_file': io.flow.ftp.v0.models.FtpFile;
|
|
18765
18892
|
}
|
|
18766
18893
|
|
|
18767
|
-
interface FuelSurchargeServiceFeeAmountByWeightPutForm {
|
|
18768
|
-
readonly 'discriminator': 'fuel_surcharge_service_fee_amount_by_weight_put_form';
|
|
18769
|
-
readonly 'amount': io.flow.common.v0.models.Money;
|
|
18770
|
-
readonly 'weight': io.flow.ratecard.v0.models.FeeWeight;
|
|
18771
|
-
}
|
|
18772
|
-
|
|
18773
|
-
interface FuelSurchargeServiceFeePercentPutForm {
|
|
18774
|
-
readonly 'discriminator': 'fuel_surcharge_service_fee_percent_put_form';
|
|
18775
|
-
readonly 'percent': number;
|
|
18776
|
-
}
|
|
18777
|
-
|
|
18778
18894
|
interface Fulfillment {
|
|
18779
18895
|
readonly 'id': string;
|
|
18780
18896
|
readonly 'order': io.flow.internal.v0.models.OrderSummary;
|
|
@@ -20589,12 +20705,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20589
20705
|
readonly 'total': number;
|
|
20590
20706
|
}
|
|
20591
20707
|
|
|
20708
|
+
interface MerchantSurcharge {
|
|
20709
|
+
readonly 'type': io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
20710
|
+
readonly 'amount': number;
|
|
20711
|
+
}
|
|
20712
|
+
|
|
20592
20713
|
interface MerchantTransactions {
|
|
20593
20714
|
readonly 'adjustment': number;
|
|
20594
20715
|
readonly 'reversal': number;
|
|
20595
20716
|
readonly 'tax': number;
|
|
20596
20717
|
readonly 'duty': number;
|
|
20597
20718
|
readonly 'freight': number;
|
|
20719
|
+
readonly 'base_amount'?: number;
|
|
20720
|
+
readonly 'surcharges'?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
20598
20721
|
readonly 'total': number;
|
|
20599
20722
|
readonly 'tax_refund'?: number;
|
|
20600
20723
|
readonly 'tax_reversal'?: number;
|
|
@@ -20625,6 +20748,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20625
20748
|
readonly 'proposition': io.flow.internal.v0.models.MetadataProposition;
|
|
20626
20749
|
}
|
|
20627
20750
|
|
|
20751
|
+
interface MorCostDeleted {
|
|
20752
|
+
readonly 'discriminator': 'mor_cost_deleted';
|
|
20753
|
+
readonly 'event_id': string;
|
|
20754
|
+
readonly 'timestamp': string;
|
|
20755
|
+
readonly 'organization': string;
|
|
20756
|
+
readonly 'id': string;
|
|
20757
|
+
}
|
|
20758
|
+
|
|
20759
|
+
interface MorCostSummary {
|
|
20760
|
+
readonly 'id': string;
|
|
20761
|
+
readonly 'organization_id': string;
|
|
20762
|
+
readonly 'order_number': string;
|
|
20763
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
20764
|
+
readonly 'tax': io.flow.common.v0.models.Money;
|
|
20765
|
+
}
|
|
20766
|
+
|
|
20767
|
+
interface MorCostUpserted {
|
|
20768
|
+
readonly 'discriminator': 'mor_cost_upserted';
|
|
20769
|
+
readonly 'event_id': string;
|
|
20770
|
+
readonly 'timestamp': string;
|
|
20771
|
+
readonly 'organization': string;
|
|
20772
|
+
readonly 'mor_cost': io.flow.internal.v0.models.MorCostSummary;
|
|
20773
|
+
}
|
|
20774
|
+
|
|
20628
20775
|
interface NegativeDebitMetrics {
|
|
20629
20776
|
readonly 'current_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
20630
20777
|
readonly 'first_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
@@ -20984,7 +21131,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20984
21131
|
readonly 'organization_id': string;
|
|
20985
21132
|
readonly 'shopify_order_id': string;
|
|
20986
21133
|
readonly 'order_number': string;
|
|
20987
|
-
readonly 'tax_and_duty_inclusivity_setting': io.flow.
|
|
21134
|
+
readonly 'tax_and_duty_inclusivity_setting': io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
20988
21135
|
}
|
|
20989
21136
|
|
|
20990
21137
|
interface OrderTaxAndDutyInclusivitySettingDeleted {
|
|
@@ -22286,6 +22433,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22286
22433
|
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
22287
22434
|
readonly 'rule_ids'?: string[];
|
|
22288
22435
|
readonly 'matching_positive_keywords'?: string[];
|
|
22436
|
+
readonly 'matching_sellability_positive_keywords'?: string[];
|
|
22289
22437
|
readonly 'classification_failure_reason'?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
22290
22438
|
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
22291
22439
|
readonly 'fingerprint': string;
|
|
@@ -22581,6 +22729,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22581
22729
|
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
22582
22730
|
readonly 'rule_matches': io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch[];
|
|
22583
22731
|
readonly 'matching_positive_keywords'?: string[];
|
|
22732
|
+
readonly 'matching_sellability_positive_keywords'?: string[];
|
|
22584
22733
|
}
|
|
22585
22734
|
|
|
22586
22735
|
interface ProductSellabilityInternalRuleMatch {
|
|
@@ -23041,39 +23190,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23041
23190
|
readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
|
|
23042
23191
|
}
|
|
23043
23192
|
|
|
23044
|
-
interface RatecardStandardConfiguration {
|
|
23045
|
-
readonly 'id': string;
|
|
23046
|
-
readonly 'key': string;
|
|
23047
|
-
readonly 'source_ratecard': io.flow.internal.v0.models.RatecardInternalSummary;
|
|
23048
|
-
readonly 'settings': io.flow.internal.v0.models.RatecardStandardSettings;
|
|
23049
|
-
}
|
|
23050
|
-
|
|
23051
|
-
interface RatecardStandardConfigurationDeleted {
|
|
23052
|
-
readonly 'discriminator': 'ratecard_standard_configuration_deleted';
|
|
23053
|
-
readonly 'event_id': string;
|
|
23054
|
-
readonly 'timestamp': string;
|
|
23055
|
-
readonly 'organization': string;
|
|
23056
|
-
readonly 'id': string;
|
|
23057
|
-
}
|
|
23058
|
-
|
|
23059
|
-
interface RatecardStandardConfigurationForm {
|
|
23060
|
-
readonly 'source_ratecard_organization': string;
|
|
23061
|
-
readonly 'source_ratecard_number': string;
|
|
23062
|
-
readonly 'margin': number;
|
|
23063
|
-
}
|
|
23064
|
-
|
|
23065
|
-
interface RatecardStandardConfigurationUpserted {
|
|
23066
|
-
readonly 'discriminator': 'ratecard_standard_configuration_upserted';
|
|
23067
|
-
readonly 'event_id': string;
|
|
23068
|
-
readonly 'timestamp': string;
|
|
23069
|
-
readonly 'organization': string;
|
|
23070
|
-
readonly 'configuration': io.flow.internal.v0.models.RatecardStandardConfiguration;
|
|
23071
|
-
}
|
|
23072
|
-
|
|
23073
|
-
interface RatecardStandardSettings {
|
|
23074
|
-
readonly 'margin': number;
|
|
23075
|
-
}
|
|
23076
|
-
|
|
23077
23193
|
interface RatesChanged {
|
|
23078
23194
|
readonly 'event_id': string;
|
|
23079
23195
|
readonly 'timestamp': string;
|
|
@@ -23088,6 +23204,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23088
23204
|
readonly 'summaries': io.flow.internal.v0.models.RateNameSummary[];
|
|
23089
23205
|
}
|
|
23090
23206
|
|
|
23207
|
+
interface RaveenaItem {
|
|
23208
|
+
readonly 'id': string;
|
|
23209
|
+
readonly 'number': string;
|
|
23210
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
23211
|
+
readonly 'description'?: string;
|
|
23212
|
+
readonly 'type': io.flow.internal.v0.enums.RaveenaItemType;
|
|
23213
|
+
readonly 'added_on': string;
|
|
23214
|
+
}
|
|
23215
|
+
|
|
23216
|
+
interface RaveenaItemForm {
|
|
23217
|
+
readonly 'number': string;
|
|
23218
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
23219
|
+
readonly 'description'?: string;
|
|
23220
|
+
readonly 'type': io.flow.internal.v0.enums.RaveenaItemType;
|
|
23221
|
+
readonly 'added_on': string;
|
|
23222
|
+
}
|
|
23223
|
+
|
|
23091
23224
|
interface RecordReference {
|
|
23092
23225
|
readonly 'id': string;
|
|
23093
23226
|
}
|
|
@@ -23171,6 +23304,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23171
23304
|
readonly 'order_payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
23172
23305
|
readonly 'amount_range'?: io.flow.internal.v0.models.ReportAmountRange;
|
|
23173
23306
|
readonly 'account_currency'?: io.flow.internal.v0.enums.AccountCurrencyFilter;
|
|
23307
|
+
readonly 'channel_id'?: string;
|
|
23174
23308
|
}
|
|
23175
23309
|
|
|
23176
23310
|
interface ReportForm {
|
|
@@ -23373,6 +23507,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23373
23507
|
readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23374
23508
|
}
|
|
23375
23509
|
|
|
23510
|
+
interface ReportingMerchantFreight {
|
|
23511
|
+
readonly 'base_amount'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23512
|
+
readonly 'surcharges'?: io.flow.internal.v0.models.ReportingMerchantFreightSurcharges;
|
|
23513
|
+
}
|
|
23514
|
+
|
|
23515
|
+
interface ReportingMerchantFreightSurcharges {
|
|
23516
|
+
readonly 'duties_paid'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23517
|
+
readonly 'fixed_ddp'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23518
|
+
readonly 'fixed_currency_conversion'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23519
|
+
}
|
|
23520
|
+
|
|
23376
23521
|
interface ReportingMerchantSubsidies {
|
|
23377
23522
|
readonly 'shipping': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23378
23523
|
readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -23387,6 +23532,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23387
23532
|
readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23388
23533
|
readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23389
23534
|
readonly 'freight': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23535
|
+
readonly 'freight_breakdown'?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
23390
23536
|
readonly 'discount'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23391
23537
|
readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23392
23538
|
readonly 'tax_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -23517,6 +23663,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23517
23663
|
readonly 'excluded_rules'?: string[];
|
|
23518
23664
|
}
|
|
23519
23665
|
|
|
23666
|
+
interface RestrictionBlanketOrganizationExemptionForm {
|
|
23667
|
+
readonly 'organization_id': string;
|
|
23668
|
+
readonly 'description': string;
|
|
23669
|
+
readonly 'is_all_rules_exempt': boolean;
|
|
23670
|
+
readonly 'exempt_regions'?: string[];
|
|
23671
|
+
readonly 'excluded_rules'?: string[];
|
|
23672
|
+
}
|
|
23673
|
+
|
|
23520
23674
|
interface RestrictionCategory {
|
|
23521
23675
|
readonly 'category': string;
|
|
23522
23676
|
}
|
|
@@ -23796,8 +23950,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23796
23950
|
readonly 'id': string;
|
|
23797
23951
|
readonly 'rule_id': string;
|
|
23798
23952
|
readonly 'description': string;
|
|
23799
|
-
readonly '
|
|
23800
|
-
readonly '
|
|
23953
|
+
readonly 'origin_regions': string[];
|
|
23954
|
+
readonly 'destination_regions': string[];
|
|
23955
|
+
}
|
|
23956
|
+
|
|
23957
|
+
interface RestrictionRuleLaneExemptionForm {
|
|
23958
|
+
readonly 'rule_id': string;
|
|
23959
|
+
readonly 'description': string;
|
|
23960
|
+
readonly 'origin_regions': string[];
|
|
23961
|
+
readonly 'destination_regions': string[];
|
|
23801
23962
|
}
|
|
23802
23963
|
|
|
23803
23964
|
interface RestrictionRuleOrganizationExemption {
|
|
@@ -23812,6 +23973,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23812
23973
|
readonly 'is_rule_active'?: boolean;
|
|
23813
23974
|
}
|
|
23814
23975
|
|
|
23976
|
+
interface RestrictionRuleOrganizationExemptionForm {
|
|
23977
|
+
readonly 'organization_id': string;
|
|
23978
|
+
readonly 'rule_id': string;
|
|
23979
|
+
readonly 'description': string;
|
|
23980
|
+
readonly 'exempt_regions'?: string[];
|
|
23981
|
+
readonly 'ignored_keywords'?: string[];
|
|
23982
|
+
readonly 'additional_keywords'?: string[];
|
|
23983
|
+
readonly 'community_exemption_override'?: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
|
|
23984
|
+
readonly 'is_rule_active'?: boolean;
|
|
23985
|
+
}
|
|
23986
|
+
|
|
23815
23987
|
interface RestrictionRuleOverride {
|
|
23816
23988
|
readonly 'id': string;
|
|
23817
23989
|
readonly 'organization_id': string;
|
|
@@ -24584,6 +24756,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24584
24756
|
readonly 'access_token_masked'?: string;
|
|
24585
24757
|
readonly 'shopify_plan_name'?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
24586
24758
|
readonly 'catalog_publication_owner'?: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
24759
|
+
readonly 'fast_sellability_completed_at'?: string;
|
|
24587
24760
|
}
|
|
24588
24761
|
|
|
24589
24762
|
interface ShopifyMarketsShopDeleted {
|
|
@@ -26638,7 +26811,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26638
26811
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
26639
26812
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
26640
26813
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
26641
|
-
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26814
|
+
type Event = (io.flow.internal.v0.models.AdaptiveShippingRateUpserted | io.flow.internal.v0.models.AdaptiveShippingRateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26642
26815
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
26643
26816
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
26644
26817
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26648,7 +26821,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26648
26821
|
type FeatureValue = (io.flow.internal.v0.models.BooleanFeatureValue | io.flow.internal.v0.models.StringFeatureValue);
|
|
26649
26822
|
type FraudProviderConfiguration = (io.flow.internal.v0.models.FraudProviderConfigurationRiskified);
|
|
26650
26823
|
type FraudProviderConfigurationForm = (io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified);
|
|
26651
|
-
type FuelSurchargeServiceFeePutForm = (io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm);
|
|
26652
26824
|
type FulfillmentProof = (io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference | io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference);
|
|
26653
26825
|
type FulfillmentTrigger = (io.flow.internal.v0.models.FulfillmentTriggerProof | io.flow.internal.v0.models.FulfillmentTriggerTime);
|
|
26654
26826
|
type GenerateLoad = (io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs);
|
|
@@ -26685,7 +26857,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26685
26857
|
type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata | io.flow.internal.v0.models.AccountingReturnMetadata | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata | io.flow.internal.v0.models.ChannelTransactionTriggerMetadata | io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata | io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata);
|
|
26686
26858
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
26687
26859
|
type Tracker = (io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel);
|
|
26688
|
-
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction | io.flow.internal.v0.models.MerchantFeeTransaction);
|
|
26860
|
+
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction | io.flow.internal.v0.models.MerchantFeeTransaction | io.flow.internal.v0.models.FlatRateLabelTransaction);
|
|
26689
26861
|
type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
|
|
26690
26862
|
}
|
|
26691
26863
|
|
|
@@ -26793,6 +26965,7 @@ export const featureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.Feat
|
|
|
26793
26965
|
export const featureType: PropTypes.Requireable<io.flow.internal.v0.enums.FeatureType>;
|
|
26794
26966
|
export const feesSource: PropTypes.Requireable<io.flow.internal.v0.enums.FeesSource>;
|
|
26795
26967
|
export const fileType: PropTypes.Requireable<io.flow.internal.v0.enums.FileType>;
|
|
26968
|
+
export const flatRateLabelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.FlatRateLabelTransactionType>;
|
|
26796
26969
|
export const fraudProvider: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProvider>;
|
|
26797
26970
|
export const fraudProviderStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProviderStatus>;
|
|
26798
26971
|
export const fraudReviewResponsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.FraudReviewResponsibleParty>;
|
|
@@ -26826,6 +26999,7 @@ export const ledgerReportUrlType: PropTypes.Requireable<io.flow.internal.v0.enum
|
|
|
26826
26999
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
26827
27000
|
export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsCapability>;
|
|
26828
27001
|
export const logisticsPayoutResolutionMethod: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod>;
|
|
27002
|
+
export const mailClass: PropTypes.Requireable<io.flow.internal.v0.enums.MailClass>;
|
|
26829
27003
|
export const manualReviewRuleStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ManualReviewRuleStatus>;
|
|
26830
27004
|
export const manualTransactionCategory: PropTypes.Requireable<io.flow.internal.v0.enums.ManualTransactionCategory>;
|
|
26831
27005
|
export const merchantFeeTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.MerchantFeeTransactionType>;
|
|
@@ -26879,6 +27053,7 @@ export const processorEntityStatus: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
26879
27053
|
export const productStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProductStatus>;
|
|
26880
27054
|
export const rateLevelKey: PropTypes.Requireable<io.flow.internal.v0.enums.RateLevelKey>;
|
|
26881
27055
|
export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSource>;
|
|
27056
|
+
export const raveenaItemType: PropTypes.Requireable<io.flow.internal.v0.enums.RaveenaItemType>;
|
|
26882
27057
|
export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.RedirectReason>;
|
|
26883
27058
|
export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
|
|
26884
27059
|
export const reportFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileStatus>;
|
|
@@ -26937,7 +27112,6 @@ export const subscriptionFrequency: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
26937
27112
|
export const suggestionAction: PropTypes.Requireable<io.flow.internal.v0.enums.SuggestionAction>;
|
|
26938
27113
|
export const tariffEligibilityType: PropTypes.Requireable<io.flow.internal.v0.enums.TariffEligibilityType>;
|
|
26939
27114
|
export const taskProcessorKey: PropTypes.Requireable<io.flow.internal.v0.enums.TaskProcessorKey>;
|
|
26940
|
-
export const taxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting>;
|
|
26941
27115
|
export const taxCalculationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.TaxCalculationErrorCode>;
|
|
26942
27116
|
export const taxParty: PropTypes.Requireable<io.flow.internal.v0.enums.TaxParty>;
|
|
26943
27117
|
export const taxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TaxTransactionType>;
|
|
@@ -26981,6 +27155,9 @@ export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
26981
27155
|
export const accountingPendingOrderMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingPendingOrderMetadata>;
|
|
26982
27156
|
export const accountingReturnMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingReturnMetadata>;
|
|
26983
27157
|
export const actionQuantity: PropTypes.Requireable<io.flow.internal.v0.models.ActionQuantity>;
|
|
27158
|
+
export const adaptiveShippingRate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRate>;
|
|
27159
|
+
export const adaptiveShippingRateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRateDeleted>;
|
|
27160
|
+
export const adaptiveShippingRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRateUpserted>;
|
|
26984
27161
|
export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.models.AdditionalImportTax>;
|
|
26985
27162
|
export const adjustmentAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountFixed>;
|
|
26986
27163
|
export const adjustmentAmountPercentage: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountPercentage>;
|
|
@@ -27035,7 +27212,6 @@ export const afterpayRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
27035
27212
|
export const afterpayRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundUpserted>;
|
|
27036
27213
|
export const aftershipWebhook: PropTypes.Requireable<io.flow.internal.v0.models.AftershipWebhook>;
|
|
27037
27214
|
export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
|
|
27038
|
-
export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
|
|
27039
27215
|
export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
|
|
27040
27216
|
export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.AllowedLabels>;
|
|
27041
27217
|
export const amruthaItem: PropTypes.Requireable<io.flow.internal.v0.models.AmruthaItem>;
|
|
@@ -27060,6 +27236,11 @@ export const b2BFeeMorTaxTriggerMetadata: PropTypes.Requireable<io.flow.internal
|
|
|
27060
27236
|
export const b2BFeeShippingTaxTriggerMetadata: PropTypes.Requireable<io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata>;
|
|
27061
27237
|
export const b2BTaxLedger: PropTypes.Requireable<io.flow.internal.v0.models.B2BTaxLedger>;
|
|
27062
27238
|
export const b2BTaxLedgerForm: PropTypes.Requireable<io.flow.internal.v0.models.B2BTaxLedgerForm>;
|
|
27239
|
+
export const b2BTaxTransaction: PropTypes.Requireable<io.flow.internal.v0.models.B2BTaxTransaction>;
|
|
27240
|
+
export const b2BTaxTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.B2BTaxTransactionDeleted>;
|
|
27241
|
+
export const b2BTaxTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.B2BTaxTransactionUpserted>;
|
|
27242
|
+
export const b2BTransactionTaxLine: PropTypes.Requireable<io.flow.internal.v0.models.B2BTransactionTaxLine>;
|
|
27243
|
+
export const b2BTransactionTaxableItem: PropTypes.Requireable<io.flow.internal.v0.models.B2BTransactionTaxableItem>;
|
|
27063
27244
|
export const bankAccount: PropTypes.Requireable<io.flow.internal.v0.models.BankAccount>;
|
|
27064
27245
|
export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
|
|
27065
27246
|
export const bankPayment: PropTypes.Requireable<io.flow.internal.v0.models.BankPayment>;
|
|
@@ -27110,7 +27291,9 @@ export const bitpayAuthentication: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
27110
27291
|
export const bitpayAuthenticationDataReference: PropTypes.Requireable<io.flow.internal.v0.models.BitpayAuthenticationDataReference>;
|
|
27111
27292
|
export const bitpayAuthenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.BitpayAuthenticationForm>;
|
|
27112
27293
|
export const bojanaItem: PropTypes.Requireable<io.flow.internal.v0.models.BojanaItem>;
|
|
27294
|
+
export const bojanaItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BojanaItemDeleted>;
|
|
27113
27295
|
export const bojanaItemForm: PropTypes.Requireable<io.flow.internal.v0.models.BojanaItemForm>;
|
|
27296
|
+
export const bojanaItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.BojanaItemUpserted>;
|
|
27114
27297
|
export const booleanFeatureDefaultValue: PropTypes.Requireable<io.flow.internal.v0.models.BooleanFeatureDefaultValue>;
|
|
27115
27298
|
export const booleanFeatureRule: PropTypes.Requireable<io.flow.internal.v0.models.BooleanFeatureRule>;
|
|
27116
27299
|
export const booleanFeatureRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.BooleanFeatureRuleForm>;
|
|
@@ -27466,6 +27649,8 @@ export const fiservAuthenticationForm: PropTypes.Requireable<io.flow.internal.v0
|
|
|
27466
27649
|
export const fiservMerchant: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchant>;
|
|
27467
27650
|
export const fiservMerchantModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantModificationForm>;
|
|
27468
27651
|
export const fiservMerchantPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantPutForm>;
|
|
27652
|
+
export const flatRate: PropTypes.Requireable<io.flow.internal.v0.models.FlatRate>;
|
|
27653
|
+
export const flatRateLabelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelTransaction>;
|
|
27469
27654
|
export const flexeWebhook: PropTypes.Requireable<io.flow.internal.v0.models.FlexeWebhook>;
|
|
27470
27655
|
export const flowAccount: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccount>;
|
|
27471
27656
|
export const flowBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.FlowBillingStatement>;
|
|
@@ -27506,8 +27691,6 @@ export const fraudSummary: PropTypes.Requireable<io.flow.internal.v0.models.Frau
|
|
|
27506
27691
|
export const ftpFileDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FtpFileDeleted>;
|
|
27507
27692
|
export const ftpFileToProcessUploaded: PropTypes.Requireable<io.flow.internal.v0.models.FtpFileToProcessUploaded>;
|
|
27508
27693
|
export const ftpFileUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FtpFileUpserted>;
|
|
27509
|
-
export const fuelSurchargeServiceFeeAmountByWeightPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm>;
|
|
27510
|
-
export const fuelSurchargeServiceFeePercentPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm>;
|
|
27511
27694
|
export const fulfillment: PropTypes.Requireable<io.flow.internal.v0.models.Fulfillment>;
|
|
27512
27695
|
export const fulfillmentActionForm: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentActionForm>;
|
|
27513
27696
|
export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentBusiness>;
|
|
@@ -27733,11 +27916,15 @@ export const merchantOverrideUpserted: PropTypes.Requireable<io.flow.internal.v0
|
|
|
27733
27916
|
export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSearchResult>;
|
|
27734
27917
|
export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSubsidies>;
|
|
27735
27918
|
export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
|
|
27919
|
+
export const merchantSurcharge: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSurcharge>;
|
|
27736
27920
|
export const merchantTransactions: PropTypes.Requireable<io.flow.internal.v0.models.MerchantTransactions>;
|
|
27737
27921
|
export const merchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantUpserted>;
|
|
27738
27922
|
export const messageStamp: PropTypes.Requireable<io.flow.internal.v0.models.MessageStamp>;
|
|
27739
27923
|
export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.models.MetadataProposition>;
|
|
27740
27924
|
export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
|
|
27925
|
+
export const morCostDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MorCostDeleted>;
|
|
27926
|
+
export const morCostSummary: PropTypes.Requireable<io.flow.internal.v0.models.MorCostSummary>;
|
|
27927
|
+
export const morCostUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MorCostUpserted>;
|
|
27741
27928
|
export const negativeDebitMetrics: PropTypes.Requireable<io.flow.internal.v0.models.NegativeDebitMetrics>;
|
|
27742
27929
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
27743
27930
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
@@ -28047,13 +28234,10 @@ export const ratecardServiceFeeDeleted: PropTypes.Requireable<io.flow.internal.v
|
|
|
28047
28234
|
export const ratecardServiceFeeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeeUpserted>;
|
|
28048
28235
|
export const ratecardServiceFeesOverride: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeesOverride>;
|
|
28049
28236
|
export const ratecardServiceFeesOverrideForm: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeesOverrideForm>;
|
|
28050
|
-
export const ratecardStandardConfiguration: PropTypes.Requireable<io.flow.internal.v0.models.RatecardStandardConfiguration>;
|
|
28051
|
-
export const ratecardStandardConfigurationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardStandardConfigurationDeleted>;
|
|
28052
|
-
export const ratecardStandardConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.models.RatecardStandardConfigurationForm>;
|
|
28053
|
-
export const ratecardStandardConfigurationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardStandardConfigurationUpserted>;
|
|
28054
|
-
export const ratecardStandardSettings: PropTypes.Requireable<io.flow.internal.v0.models.RatecardStandardSettings>;
|
|
28055
28237
|
export const ratesChanged: PropTypes.Requireable<io.flow.internal.v0.models.RatesChanged>;
|
|
28056
28238
|
export const ratesNamesSummary: PropTypes.Requireable<io.flow.internal.v0.models.RatesNamesSummary>;
|
|
28239
|
+
export const raveenaItem: PropTypes.Requireable<io.flow.internal.v0.models.RaveenaItem>;
|
|
28240
|
+
export const raveenaItemForm: PropTypes.Requireable<io.flow.internal.v0.models.RaveenaItemForm>;
|
|
28057
28241
|
export const recordReference: PropTypes.Requireable<io.flow.internal.v0.models.RecordReference>;
|
|
28058
28242
|
export const redirect: PropTypes.Requireable<io.flow.internal.v0.models.Redirect>;
|
|
28059
28243
|
export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.models.RedirectActionCompleted>;
|
|
@@ -28093,6 +28277,8 @@ export const reportingFulfillmentIs: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
28093
28277
|
export const reportingFx: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFx>;
|
|
28094
28278
|
export const reportingMerchantBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantBreakdown>;
|
|
28095
28279
|
export const reportingMerchantFees: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantFees>;
|
|
28280
|
+
export const reportingMerchantFreight: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantFreight>;
|
|
28281
|
+
export const reportingMerchantFreightSurcharges: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantFreightSurcharges>;
|
|
28096
28282
|
export const reportingMerchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantSubsidies>;
|
|
28097
28283
|
export const reportingMerchantTransactions: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantTransactions>;
|
|
28098
28284
|
export const reportingMonetaryValue: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMonetaryValue>;
|
|
@@ -28114,6 +28300,7 @@ export const restrictionAttributeConditionMultiple: PropTypes.Requireable<io.flo
|
|
|
28114
28300
|
export const restrictionAttributeConditionSingle: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionAttributeConditionSingle>;
|
|
28115
28301
|
export const restrictionAttributeRule: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionAttributeRule>;
|
|
28116
28302
|
export const restrictionBlanketOrganizationExemption: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionBlanketOrganizationExemption>;
|
|
28303
|
+
export const restrictionBlanketOrganizationExemptionForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionBlanketOrganizationExemptionForm>;
|
|
28117
28304
|
export const restrictionCategory: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionCategory>;
|
|
28118
28305
|
export const restrictionFilter: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionFilter>;
|
|
28119
28306
|
export const restrictionHistoryItemReviewDecision: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision>;
|
|
@@ -28142,7 +28329,9 @@ export const restrictionRuleEffectForm: PropTypes.Requireable<io.flow.internal.v
|
|
|
28142
28329
|
export const restrictionRuleEffectUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleEffectUpserted>;
|
|
28143
28330
|
export const restrictionRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleForm>;
|
|
28144
28331
|
export const restrictionRuleLaneExemption: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleLaneExemption>;
|
|
28332
|
+
export const restrictionRuleLaneExemptionForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleLaneExemptionForm>;
|
|
28145
28333
|
export const restrictionRuleOrganizationExemption: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleOrganizationExemption>;
|
|
28334
|
+
export const restrictionRuleOrganizationExemptionForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleOrganizationExemptionForm>;
|
|
28146
28335
|
export const restrictionRuleOverride: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleOverride>;
|
|
28147
28336
|
export const restrictionRuleSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleSummary>;
|
|
28148
28337
|
export const restrictionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleUpserted>;
|
|
@@ -28539,7 +28728,6 @@ export const featureTaskData: PropTypes.Requireable<io.flow.internal.v0.unions.F
|
|
|
28539
28728
|
export const featureValue: PropTypes.Requireable<io.flow.internal.v0.unions.FeatureValue>;
|
|
28540
28729
|
export const fraudProviderConfiguration: PropTypes.Requireable<io.flow.internal.v0.unions.FraudProviderConfiguration>;
|
|
28541
28730
|
export const fraudProviderConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.unions.FraudProviderConfigurationForm>;
|
|
28542
|
-
export const fuelSurchargeServiceFeePutForm: PropTypes.Requireable<io.flow.internal.v0.unions.FuelSurchargeServiceFeePutForm>;
|
|
28543
28731
|
export const fulfillmentProof: PropTypes.Requireable<io.flow.internal.v0.unions.FulfillmentProof>;
|
|
28544
28732
|
export const fulfillmentTrigger: PropTypes.Requireable<io.flow.internal.v0.unions.FulfillmentTrigger>;
|
|
28545
28733
|
export const generateLoad: PropTypes.Requireable<io.flow.internal.v0.unions.GenerateLoad>;
|