@flowio/types 11.24.137 → 11.24.139
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +424 -85
- package/dist/api.d.ts +98 -46
- package/package.json +1 -1
- package/src/api-internal.ts +544 -95
- package/src/api.ts +126 -51
package/dist/api.d.ts
CHANGED
|
@@ -2214,7 +2214,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
2214
2214
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
2215
2215
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
2216
2216
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
2217
|
-
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';
|
|
2217
|
+
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' | 'order_cancelled' | 'organization_deactivated';
|
|
2218
2218
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
2219
2219
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
2220
2220
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -2592,6 +2592,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
2592
2592
|
readonly created_at?: string;
|
|
2593
2593
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
2594
2594
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
2595
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
2595
2596
|
}
|
|
2596
2597
|
interface OrganizationDefaults {
|
|
2597
2598
|
readonly country: string;
|
|
@@ -2603,6 +2604,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
2603
2604
|
interface OrganizationReference {
|
|
2604
2605
|
readonly discriminator: 'organization_reference';
|
|
2605
2606
|
readonly id: string;
|
|
2607
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
2606
2608
|
}
|
|
2607
2609
|
interface OrganizationSummary {
|
|
2608
2610
|
readonly id: string;
|
|
@@ -2858,6 +2860,7 @@ declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
|
2858
2860
|
type BojanaItemType = 'physical' | 'digital';
|
|
2859
2861
|
type ChenglinItemType = 'physical' | 'digital';
|
|
2860
2862
|
type GabrielItemType = 'physical' | 'digital';
|
|
2863
|
+
type MaheshItemType = 'physical' | 'digital';
|
|
2861
2864
|
type RaveenaItemType = 'physical' | 'digital';
|
|
2862
2865
|
}
|
|
2863
2866
|
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
@@ -2921,6 +2924,21 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
2921
2924
|
readonly type: io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
2922
2925
|
readonly added_on: string;
|
|
2923
2926
|
}
|
|
2927
|
+
interface MaheshItem {
|
|
2928
|
+
readonly id: string;
|
|
2929
|
+
readonly number: string;
|
|
2930
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2931
|
+
readonly description?: string;
|
|
2932
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.MaheshItemType;
|
|
2933
|
+
readonly added_on: string;
|
|
2934
|
+
}
|
|
2935
|
+
interface MaheshItemForm {
|
|
2936
|
+
readonly number: string;
|
|
2937
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2938
|
+
readonly description?: string;
|
|
2939
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.MaheshItemType;
|
|
2940
|
+
readonly added_on: string;
|
|
2941
|
+
}
|
|
2924
2942
|
interface RaveenaItem {
|
|
2925
2943
|
readonly id: string;
|
|
2926
2944
|
readonly number: string;
|
|
@@ -3028,6 +3046,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3028
3046
|
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
3029
3047
|
type CostEstimateSource = 'flow' | 'channel';
|
|
3030
3048
|
type CountryPickerSource = 'experience' | 'destination';
|
|
3049
|
+
type CpscAttribute = 'certification_id' | 'citation_codes' | 'manufactured_date' | 'manufactured_location' | 'product_test_date' | 'test_lab_name' | 'point_of_contact' | 'certification_version' | 'certification_product_id' | 'certificate_type' | 'lab_type' | 'taxonomy_reference';
|
|
3031
3050
|
type CreditPaymentErrorCode = 'generic_error' | 'invalid_order_number' | 'invalid_currency' | 'invalid_description' | 'duplicate' | 'amount_must_be_positive' | 'amount_exceeds_balance' | 'insufficient_amount';
|
|
3032
3051
|
type CurrencyLabelFormatter = 'strip_trailing_zeros' | 'symbol_prefix' | 'symbol_suffix';
|
|
3033
3052
|
type CurrencySymbolFormat = 'narrow' | 'primary';
|
|
@@ -3164,6 +3183,8 @@ declare namespace io.flow.v0.enums {
|
|
|
3164
3183
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
3165
3184
|
type RegionType = 'state' | 'province' | 'jurisdiction';
|
|
3166
3185
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
3186
|
+
type RestrictionDecision = 'accept' | 'reject' | 'escalate' | 'review';
|
|
3187
|
+
type RestrictionDecisionReason = 'manual_dispute';
|
|
3167
3188
|
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
3168
3189
|
type ReturnItemStatus = 'returnable' | 'non-returnable';
|
|
3169
3190
|
type ReturnPolicyState = 'current' | 'deleting' | 'updating';
|
|
@@ -3192,7 +3213,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3192
3213
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
3193
3214
|
type SortDirection = 'ascending' | 'descending';
|
|
3194
3215
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
3195
|
-
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
3216
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
3196
3217
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
3197
3218
|
type Strategy = 'range' | 'from' | 'to';
|
|
3198
3219
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
@@ -3218,7 +3239,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3218
3239
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3219
3240
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3220
3241
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
3221
|
-
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';
|
|
3242
|
+
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' | 'flat_rate_label_subsidy';
|
|
3222
3243
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3223
3244
|
type TransferType = 'payout_to_merchant' | 'disputed_amount_to_merchant' | 'duties_and_taxes_adjustment_to_merchant' | 'disputed_amount_from_merchant' | 'duties_and_taxes_adjustment_from_merchant' | 'refund_from_merchant';
|
|
3224
3245
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
@@ -3897,6 +3918,39 @@ declare namespace io.flow.v0.models {
|
|
|
3897
3918
|
readonly organization: string;
|
|
3898
3919
|
readonly b2b_credit_memo: io.flow.v0.models.B2BCreditMemo;
|
|
3899
3920
|
}
|
|
3921
|
+
interface B2BCreditNote {
|
|
3922
|
+
readonly id: string;
|
|
3923
|
+
readonly number: string;
|
|
3924
|
+
readonly status: io.flow.v0.enums.ConsumerInvoiceStatus;
|
|
3925
|
+
readonly date: string;
|
|
3926
|
+
readonly key: string;
|
|
3927
|
+
readonly debit_note: io.flow.v0.models.B2BDebitNoteReference;
|
|
3928
|
+
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
3929
|
+
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
3930
|
+
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
3931
|
+
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
3932
|
+
readonly attributes: Record<string, string>;
|
|
3933
|
+
readonly voids_b2b_debit_note?: boolean;
|
|
3934
|
+
}
|
|
3935
|
+
interface B2BDebitNote {
|
|
3936
|
+
readonly id: string;
|
|
3937
|
+
readonly number: string;
|
|
3938
|
+
readonly buyer: io.flow.v0.models.MerchantOfRecordEntity;
|
|
3939
|
+
readonly seller: io.flow.v0.models.MerchantOfRecordEntity;
|
|
3940
|
+
readonly status: io.flow.v0.enums.ConsumerInvoiceStatus;
|
|
3941
|
+
readonly date: string;
|
|
3942
|
+
readonly key: string;
|
|
3943
|
+
readonly order: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
3944
|
+
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
3945
|
+
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
3946
|
+
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
3947
|
+
readonly attributes: Record<string, string>;
|
|
3948
|
+
}
|
|
3949
|
+
interface B2BDebitNoteReference {
|
|
3950
|
+
readonly id: string;
|
|
3951
|
+
readonly key: string;
|
|
3952
|
+
readonly number: string;
|
|
3953
|
+
}
|
|
3900
3954
|
interface B2BInvoice {
|
|
3901
3955
|
readonly id: string;
|
|
3902
3956
|
readonly number: string;
|
|
@@ -3967,17 +4021,6 @@ declare namespace io.flow.v0.models {
|
|
|
3967
4021
|
}
|
|
3968
4022
|
interface BankAccountInfoKor {
|
|
3969
4023
|
readonly discriminator: 'kor';
|
|
3970
|
-
readonly name?: string;
|
|
3971
|
-
readonly address?: io.flow.v0.models.Address;
|
|
3972
|
-
readonly phone?: string;
|
|
3973
|
-
readonly email?: string;
|
|
3974
|
-
readonly bank_account_number: string;
|
|
3975
|
-
readonly bank_routing_number?: string;
|
|
3976
|
-
readonly bank_name?: string;
|
|
3977
|
-
readonly bank_address?: io.flow.v0.models.Address;
|
|
3978
|
-
}
|
|
3979
|
-
interface BankAccountInfoKorV2 {
|
|
3980
|
-
readonly discriminator: 'kor_v2';
|
|
3981
4024
|
readonly name: string;
|
|
3982
4025
|
readonly bank_account_number: string;
|
|
3983
4026
|
readonly bank_routing_number: string;
|
|
@@ -7123,6 +7166,7 @@ declare namespace io.flow.v0.models {
|
|
|
7123
7166
|
interface LaneSummary {
|
|
7124
7167
|
readonly id: string;
|
|
7125
7168
|
readonly ratecard: io.flow.v0.models.RatecardSummary;
|
|
7169
|
+
readonly dim_factor: number;
|
|
7126
7170
|
}
|
|
7127
7171
|
interface Language {
|
|
7128
7172
|
readonly name: string;
|
|
@@ -8095,6 +8139,10 @@ declare namespace io.flow.v0.models {
|
|
|
8095
8139
|
readonly deactivation_requested_at: string;
|
|
8096
8140
|
readonly deactivated_at?: string;
|
|
8097
8141
|
}
|
|
8142
|
+
interface OrderStateRejectionReasonPaymentFraud {
|
|
8143
|
+
readonly discriminator: 'order_state_rejection_reason_payment_fraud';
|
|
8144
|
+
readonly payment_request_id: string;
|
|
8145
|
+
}
|
|
8098
8146
|
interface OrderStateRejectionReasonRestrictedItem {
|
|
8099
8147
|
readonly discriminator: 'order_state_rejection_reason_restricted_item';
|
|
8100
8148
|
readonly item_numbers: string[];
|
|
@@ -8194,6 +8242,7 @@ declare namespace io.flow.v0.models {
|
|
|
8194
8242
|
readonly created_at?: string;
|
|
8195
8243
|
readonly status?: io.flow.v0.enums.OrganizationStatus;
|
|
8196
8244
|
readonly type?: io.flow.v0.enums.OrganizationType;
|
|
8245
|
+
readonly channel?: io.flow.v0.models.ChannelReference;
|
|
8197
8246
|
}
|
|
8198
8247
|
interface OrganizationAuthorization {
|
|
8199
8248
|
readonly role?: io.flow.v0.enums.Role;
|
|
@@ -8333,6 +8382,7 @@ declare namespace io.flow.v0.models {
|
|
|
8333
8382
|
interface OrganizationReference {
|
|
8334
8383
|
readonly discriminator: 'organization_reference';
|
|
8335
8384
|
readonly id: string;
|
|
8385
|
+
readonly channel?: io.flow.v0.models.ChannelReference;
|
|
8336
8386
|
}
|
|
8337
8387
|
interface OrganizationSession {
|
|
8338
8388
|
readonly discriminator: 'organization_session';
|
|
@@ -8371,6 +8421,7 @@ declare namespace io.flow.v0.models {
|
|
|
8371
8421
|
readonly province?: string;
|
|
8372
8422
|
readonly self_billing_agreement_effective_at: string;
|
|
8373
8423
|
readonly self_billing_agreement_expires_at?: string;
|
|
8424
|
+
readonly legal_name?: string;
|
|
8374
8425
|
}
|
|
8375
8426
|
interface OrganizationToken {
|
|
8376
8427
|
readonly discriminator: 'organization_token';
|
|
@@ -9166,6 +9217,10 @@ declare namespace io.flow.v0.models {
|
|
|
9166
9217
|
readonly timestamp: string;
|
|
9167
9218
|
readonly reason: io.flow.v0.enums.PayoutStatusFailureCode;
|
|
9168
9219
|
}
|
|
9220
|
+
interface PayoutStatusPaid {
|
|
9221
|
+
readonly code: 'paid';
|
|
9222
|
+
readonly timestamp: string;
|
|
9223
|
+
}
|
|
9169
9224
|
interface PayoutStatusScheduled {
|
|
9170
9225
|
readonly code: 'scheduled';
|
|
9171
9226
|
readonly placeholder?: string;
|
|
@@ -9763,6 +9818,7 @@ declare namespace io.flow.v0.models {
|
|
|
9763
9818
|
readonly glbe_shipping_method_id?: string;
|
|
9764
9819
|
readonly glbe_proposition_name?: string;
|
|
9765
9820
|
readonly channel_revenue_share_percentage?: number;
|
|
9821
|
+
readonly channel_id?: string;
|
|
9766
9822
|
}
|
|
9767
9823
|
interface RatecardCarrierSummary {
|
|
9768
9824
|
readonly id: string;
|
|
@@ -9862,6 +9918,7 @@ declare namespace io.flow.v0.models {
|
|
|
9862
9918
|
readonly glbe_shipping_method_id?: string;
|
|
9863
9919
|
readonly glbe_proposition_name?: string;
|
|
9864
9920
|
readonly channel_revenue_share_percentage?: number;
|
|
9921
|
+
readonly channel_id?: string;
|
|
9865
9922
|
readonly data?: io.flow.v0.models.RatecardData;
|
|
9866
9923
|
}
|
|
9867
9924
|
interface RatecardLane {
|
|
@@ -9901,19 +9958,6 @@ declare namespace io.flow.v0.models {
|
|
|
9901
9958
|
readonly weight_unit: io.flow.v0.enums.UnitOfMeasurement;
|
|
9902
9959
|
readonly distance_unit: io.flow.v0.enums.UnitOfMeasurement;
|
|
9903
9960
|
}
|
|
9904
|
-
interface RatecardLaneImportForm {
|
|
9905
|
-
readonly ratecard_owner: io.flow.v0.enums.RatecardOwner;
|
|
9906
|
-
readonly service: string;
|
|
9907
|
-
readonly currency: string;
|
|
9908
|
-
readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
|
|
9909
|
-
readonly origin: io.flow.v0.models.Zone;
|
|
9910
|
-
readonly destination: io.flow.v0.models.Zone;
|
|
9911
|
-
readonly shipment_window: io.flow.v0.models.ShipmentWindow;
|
|
9912
|
-
readonly dim_factor: number;
|
|
9913
|
-
readonly weight_unit: io.flow.v0.enums.UnitOfMeasurement;
|
|
9914
|
-
readonly distance_unit: io.flow.v0.enums.UnitOfMeasurement;
|
|
9915
|
-
readonly rates: io.flow.v0.models.RatecardRateForm[];
|
|
9916
|
-
}
|
|
9917
9961
|
interface RatecardLaneUpserted {
|
|
9918
9962
|
readonly discriminator: 'ratecard_lane_upserted';
|
|
9919
9963
|
readonly event_id: string;
|
|
@@ -9927,13 +9971,7 @@ declare namespace io.flow.v0.models {
|
|
|
9927
9971
|
readonly type: io.flow.v0.enums.ChangeType;
|
|
9928
9972
|
readonly ratecard_lane: io.flow.v0.models.RatecardLane;
|
|
9929
9973
|
}
|
|
9930
|
-
interface RatecardLanesImportRequestData {
|
|
9931
|
-
readonly id: string;
|
|
9932
|
-
readonly source_url: string;
|
|
9933
|
-
readonly filename?: string;
|
|
9934
|
-
}
|
|
9935
9974
|
interface RatecardRate {
|
|
9936
|
-
readonly id: string;
|
|
9937
9975
|
readonly amount: number;
|
|
9938
9976
|
readonly weight: number;
|
|
9939
9977
|
}
|
|
@@ -9941,12 +9979,6 @@ declare namespace io.flow.v0.models {
|
|
|
9941
9979
|
readonly amount: number;
|
|
9942
9980
|
readonly weight: number;
|
|
9943
9981
|
}
|
|
9944
|
-
interface RatecardRateVersion {
|
|
9945
|
-
readonly id: string;
|
|
9946
|
-
readonly timestamp: string;
|
|
9947
|
-
readonly type: io.flow.v0.enums.ChangeType;
|
|
9948
|
-
readonly ratecard_rate: io.flow.v0.models.RatecardRate;
|
|
9949
|
-
}
|
|
9950
9982
|
interface RatecardReference {
|
|
9951
9983
|
readonly id: string;
|
|
9952
9984
|
}
|
|
@@ -10187,6 +10219,16 @@ declare namespace io.flow.v0.models {
|
|
|
10187
10219
|
readonly interval: number;
|
|
10188
10220
|
readonly days_of_week: io.flow.v0.enums.DayOfWeek[];
|
|
10189
10221
|
}
|
|
10222
|
+
interface RestrictionDecisionsForm {
|
|
10223
|
+
readonly organization_id: string;
|
|
10224
|
+
readonly rule_decisions: io.flow.v0.models.RestrictionRuleDecisionForm[];
|
|
10225
|
+
}
|
|
10226
|
+
interface RestrictionRuleDecisionForm {
|
|
10227
|
+
readonly product_id: string;
|
|
10228
|
+
readonly reason_code: string;
|
|
10229
|
+
readonly decision: io.flow.v0.enums.RestrictionDecision;
|
|
10230
|
+
readonly decision_reason: io.flow.v0.enums.RestrictionDecisionReason;
|
|
10231
|
+
}
|
|
10190
10232
|
interface Return {
|
|
10191
10233
|
readonly id: string;
|
|
10192
10234
|
readonly key: string;
|
|
@@ -10451,6 +10493,7 @@ declare namespace io.flow.v0.models {
|
|
|
10451
10493
|
readonly price: io.flow.v0.models.Money;
|
|
10452
10494
|
readonly description: string;
|
|
10453
10495
|
readonly taxonomy_category: io.flow.v0.models.ProductTaxonomyCategory;
|
|
10496
|
+
readonly inferred_taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
10454
10497
|
readonly mode: io.flow.v0.enums.SellabilityScreeningMode;
|
|
10455
10498
|
readonly catalog_size?: number;
|
|
10456
10499
|
readonly relative_ranking?: number;
|
|
@@ -10710,6 +10753,7 @@ declare namespace io.flow.v0.models {
|
|
|
10710
10753
|
readonly id?: string;
|
|
10711
10754
|
readonly ratecard: io.flow.v0.models.ShippingLabelRatecardSummary;
|
|
10712
10755
|
readonly weight_break?: number;
|
|
10756
|
+
readonly dim_factor?: number;
|
|
10713
10757
|
}
|
|
10714
10758
|
interface ShippingLabelPackage {
|
|
10715
10759
|
readonly dimensions: io.flow.v0.models.Dimension;
|
|
@@ -11463,6 +11507,7 @@ declare namespace io.flow.v0.models {
|
|
|
11463
11507
|
readonly country: string;
|
|
11464
11508
|
readonly tax_code: string;
|
|
11465
11509
|
readonly province?: string;
|
|
11510
|
+
readonly legal_name?: string;
|
|
11466
11511
|
}
|
|
11467
11512
|
interface TaxRegistrationForm {
|
|
11468
11513
|
readonly number: string;
|
|
@@ -11894,6 +11939,7 @@ declare namespace io.flow.v0.models {
|
|
|
11894
11939
|
readonly request_method?: io.flow.v0.enums.LabelRequestMethod;
|
|
11895
11940
|
readonly carrier: io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
11896
11941
|
readonly revenue_share_percentage?: number;
|
|
11942
|
+
readonly actual?: io.flow.v0.models.TransactionMetadataTrueupData;
|
|
11897
11943
|
}
|
|
11898
11944
|
interface TransactionMetadataShippingLabelCarrier {
|
|
11899
11945
|
readonly id: string;
|
|
@@ -12238,7 +12284,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12238
12284
|
type AuthorizationResultActionDetails = io.flow.v0.models.AdyenNativeActionDetails | io.flow.v0.models.StripeAuthorizationResultActionDetails | io.flow.v0.models.ThreedsIdentifyActionDetails | io.flow.v0.models.ThreedsChallengeActionDetails | io.flow.v0.models.ApplepaySdkCreateResultActionDetails | io.flow.v0.models.ApplepaySdkValidateResultActionDetails | io.flow.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
12239
12285
|
type AvailableFilter = io.flow.v0.models.AvailableFilterStructured | io.flow.v0.models.AvailableFilterUnstructured;
|
|
12240
12286
|
type BankAccountForm = io.flow.v0.models.BankAccountFormInfo | io.flow.v0.models.BankAccountFormSimple;
|
|
12241
|
-
type BankAccountInfo = io.flow.v0.models.BankAccountInfoUsa | io.flow.v0.models.BankAccountInfoCan | io.flow.v0.models.BankAccountInfoGbr | io.flow.v0.models.BankAccountInfoFra | io.flow.v0.models.BankAccountInfoIta | io.flow.v0.models.BankAccountInfoKor
|
|
12287
|
+
type BankAccountInfo = io.flow.v0.models.BankAccountInfoUsa | io.flow.v0.models.BankAccountInfoCan | io.flow.v0.models.BankAccountInfoGbr | io.flow.v0.models.BankAccountInfoFra | io.flow.v0.models.BankAccountInfoIta | io.flow.v0.models.BankAccountInfoKor;
|
|
12242
12288
|
type BrowserActionConfiguration = io.flow.v0.models.CardBrowserActionConfiguration;
|
|
12243
12289
|
type CardAuthorizationActionResult = io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4;
|
|
12244
12290
|
type CardNumber = io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher;
|
|
@@ -12290,7 +12336,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12290
12336
|
type OrderPromotion = io.flow.v0.models.FreeShippingOrderPromotion;
|
|
12291
12337
|
type OrderPromotionForm = io.flow.v0.models.FreeShippingOrderPromotionForm;
|
|
12292
12338
|
type OrderRefundSummaryForm = io.flow.v0.models.OrderRefundSummaryFullForm | io.flow.v0.models.OrderRefundSummaryPartialForm;
|
|
12293
|
-
type OrderStateRejectionReason = io.flow.v0.models.OrderStateRejectionReasonRestrictedItem | io.flow.v0.models.OrderStateRejectionReasonDomesticOrder | io.flow.v0.models.OrderStateRejectionReasonItemsEmpty | io.flow.v0.models.OrderStateRejectionReasonOrganizationDeactivated;
|
|
12339
|
+
type OrderStateRejectionReason = io.flow.v0.models.OrderStateRejectionReasonRestrictedItem | io.flow.v0.models.OrderStateRejectionReasonDomesticOrder | io.flow.v0.models.OrderStateRejectionReasonItemsEmpty | io.flow.v0.models.OrderStateRejectionReasonOrganizationDeactivated | io.flow.v0.models.OrderStateRejectionReasonPaymentFraud;
|
|
12294
12340
|
type PartnerCenterFee = io.flow.v0.models.CommercialInvoiceFee | io.flow.v0.models.InboundCartonFee | io.flow.v0.models.OutboundCartonFee;
|
|
12295
12341
|
type Payment = io.flow.v0.models.PaymentPaypal | io.flow.v0.models.PaymentCryptopay;
|
|
12296
12342
|
type PaymentCaptureOption = io.flow.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.v0.models.PaymentCaptureOptionManual;
|
|
@@ -12314,7 +12360,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12314
12360
|
type PaymentRequestCancellationReason = io.flow.v0.models.PaymentRequestCancellationReasonOrderMissing;
|
|
12315
12361
|
type PaymentSource = io.flow.v0.models.CardPaymentSource;
|
|
12316
12362
|
type PaymentSourceForm = io.flow.v0.models.CardPaymentSourceForm;
|
|
12317
|
-
type PayoutStatus = io.flow.v0.models.PayoutStatusScheduled | io.flow.v0.models.PayoutStatusSent | io.flow.v0.models.PayoutStatusFailed;
|
|
12363
|
+
type PayoutStatus = io.flow.v0.models.PayoutStatusScheduled | io.flow.v0.models.PayoutStatusSent | io.flow.v0.models.PayoutStatusFailed | io.flow.v0.models.PayoutStatusPaid;
|
|
12318
12364
|
type PriceSource = io.flow.v0.models.PriceSourcePriceBook | io.flow.v0.models.PriceSourceCatalog | io.flow.v0.models.PriceSourceProvided;
|
|
12319
12365
|
type Promotion = io.flow.v0.models.FreeShipping | io.flow.v0.models.Discount;
|
|
12320
12366
|
type QueryBuilderForm = io.flow.v0.models.QueryBuilderFilterForm | io.flow.v0.models.QueryBuilderQueryForm;
|
|
@@ -12477,6 +12523,9 @@ export declare type AvsCode = io.flow.v0.enums.AvsCode;
|
|
|
12477
12523
|
export declare type B2BCreditMemo = io.flow.v0.models.B2BCreditMemo;
|
|
12478
12524
|
export declare type B2BCreditMemoDeleted = io.flow.v0.models.B2BCreditMemoDeleted;
|
|
12479
12525
|
export declare type B2BCreditMemoUpserted = io.flow.v0.models.B2BCreditMemoUpserted;
|
|
12526
|
+
export declare type B2BCreditNote = io.flow.v0.models.B2BCreditNote;
|
|
12527
|
+
export declare type B2BDebitNote = io.flow.v0.models.B2BDebitNote;
|
|
12528
|
+
export declare type B2BDebitNoteReference = io.flow.v0.models.B2BDebitNoteReference;
|
|
12480
12529
|
export declare type B2BInvoice = io.flow.v0.models.B2BInvoice;
|
|
12481
12530
|
export declare type B2BInvoiceDeleted = io.flow.v0.models.B2BInvoiceDeleted;
|
|
12482
12531
|
export declare type B2BInvoiceReference = io.flow.v0.models.B2BInvoiceReference;
|
|
@@ -12491,7 +12540,6 @@ export declare type BankAccountInfoFra = io.flow.v0.models.BankAccountInfoFra;
|
|
|
12491
12540
|
export declare type BankAccountInfoGbr = io.flow.v0.models.BankAccountInfoGbr;
|
|
12492
12541
|
export declare type BankAccountInfoIta = io.flow.v0.models.BankAccountInfoIta;
|
|
12493
12542
|
export declare type BankAccountInfoKor = io.flow.v0.models.BankAccountInfoKor;
|
|
12494
|
-
export declare type BankAccountInfoKorV2 = io.flow.v0.models.BankAccountInfoKorV2;
|
|
12495
12543
|
export declare type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
12496
12544
|
export declare type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
12497
12545
|
export declare type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
|
|
@@ -12683,6 +12731,7 @@ export declare type CountryPickerSource = io.flow.v0.enums.CountryPickerSource;
|
|
|
12683
12731
|
export declare type CountryShippingPricing = io.flow.v0.models.CountryShippingPricing;
|
|
12684
12732
|
export declare type CountryStatus = io.flow.v0.models.CountryStatus;
|
|
12685
12733
|
export declare type CountryStatusForm = io.flow.v0.models.CountryStatusForm;
|
|
12734
|
+
export declare type CpscAttribute = io.flow.v0.enums.CpscAttribute;
|
|
12686
12735
|
export declare type CreditMemo = io.flow.v0.models.CreditMemo;
|
|
12687
12736
|
export declare type CreditMemoDeleted = io.flow.v0.models.CreditMemoDeleted;
|
|
12688
12737
|
export declare type CreditMemoForm = io.flow.v0.models.CreditMemoForm;
|
|
@@ -13318,6 +13367,7 @@ export declare type OrderStateRejectionReason = io.flow.v0.unions.OrderStateReje
|
|
|
13318
13367
|
export declare type OrderStateRejectionReasonDomesticOrder = io.flow.v0.models.OrderStateRejectionReasonDomesticOrder;
|
|
13319
13368
|
export declare type OrderStateRejectionReasonItemsEmpty = io.flow.v0.models.OrderStateRejectionReasonItemsEmpty;
|
|
13320
13369
|
export declare type OrderStateRejectionReasonOrganizationDeactivated = io.flow.v0.models.OrderStateRejectionReasonOrganizationDeactivated;
|
|
13370
|
+
export declare type OrderStateRejectionReasonPaymentFraud = io.flow.v0.models.OrderStateRejectionReasonPaymentFraud;
|
|
13321
13371
|
export declare type OrderStateRejectionReasonRestrictedItem = io.flow.v0.models.OrderStateRejectionReasonRestrictedItem;
|
|
13322
13372
|
export declare type OrderStateStatus = io.flow.v0.enums.OrderStateStatus;
|
|
13323
13373
|
export declare type OrderStateUpserted = io.flow.v0.models.OrderStateUpserted;
|
|
@@ -13545,6 +13595,7 @@ export declare type PayoutReference = io.flow.v0.models.PayoutReference;
|
|
|
13545
13595
|
export declare type PayoutStatus = io.flow.v0.unions.PayoutStatus;
|
|
13546
13596
|
export declare type PayoutStatusFailed = io.flow.v0.models.PayoutStatusFailed;
|
|
13547
13597
|
export declare type PayoutStatusFailureCode = io.flow.v0.enums.PayoutStatusFailureCode;
|
|
13598
|
+
export declare type PayoutStatusPaid = io.flow.v0.models.PayoutStatusPaid;
|
|
13548
13599
|
export declare type PayoutStatusScheduled = io.flow.v0.models.PayoutStatusScheduled;
|
|
13549
13600
|
export declare type PayoutStatusSent = io.flow.v0.models.PayoutStatusSent;
|
|
13550
13601
|
export declare type PayoutTransaction = io.flow.v0.models.PayoutTransaction;
|
|
@@ -13671,14 +13722,11 @@ export declare type RatecardForm = io.flow.v0.models.RatecardForm;
|
|
|
13671
13722
|
export declare type RatecardLane = io.flow.v0.models.RatecardLane;
|
|
13672
13723
|
export declare type RatecardLaneDeleted = io.flow.v0.models.RatecardLaneDeleted;
|
|
13673
13724
|
export declare type RatecardLaneForm = io.flow.v0.models.RatecardLaneForm;
|
|
13674
|
-
export declare type RatecardLaneImportForm = io.flow.v0.models.RatecardLaneImportForm;
|
|
13675
13725
|
export declare type RatecardLaneUpserted = io.flow.v0.models.RatecardLaneUpserted;
|
|
13676
13726
|
export declare type RatecardLaneVersion = io.flow.v0.models.RatecardLaneVersion;
|
|
13677
|
-
export declare type RatecardLanesImportRequestData = io.flow.v0.models.RatecardLanesImportRequestData;
|
|
13678
13727
|
export declare type RatecardOwner = io.flow.v0.enums.RatecardOwner;
|
|
13679
13728
|
export declare type RatecardRate = io.flow.v0.models.RatecardRate;
|
|
13680
13729
|
export declare type RatecardRateForm = io.flow.v0.models.RatecardRateForm;
|
|
13681
|
-
export declare type RatecardRateVersion = io.flow.v0.models.RatecardRateVersion;
|
|
13682
13730
|
export declare type RatecardReference = io.flow.v0.models.RatecardReference;
|
|
13683
13731
|
export declare type RatecardRegionReference = io.flow.v0.models.RatecardRegionReference;
|
|
13684
13732
|
export declare type RatecardServiceSummary = io.flow.v0.models.RatecardServiceSummary;
|
|
@@ -13724,7 +13772,11 @@ export declare type RepeatMonthly = io.flow.v0.models.RepeatMonthly;
|
|
|
13724
13772
|
export declare type RepeatSchedule = io.flow.v0.unions.RepeatSchedule;
|
|
13725
13773
|
export declare type RepeatWeekly = io.flow.v0.models.RepeatWeekly;
|
|
13726
13774
|
export declare type RestrictedReviewStatus = io.flow.v0.enums.RestrictedReviewStatus;
|
|
13775
|
+
export declare type RestrictionDecision = io.flow.v0.enums.RestrictionDecision;
|
|
13776
|
+
export declare type RestrictionDecisionReason = io.flow.v0.enums.RestrictionDecisionReason;
|
|
13777
|
+
export declare type RestrictionDecisionsForm = io.flow.v0.models.RestrictionDecisionsForm;
|
|
13727
13778
|
export declare type RestrictionEnvironment = io.flow.v0.enums.RestrictionEnvironment;
|
|
13779
|
+
export declare type RestrictionRuleDecisionForm = io.flow.v0.models.RestrictionRuleDecisionForm;
|
|
13728
13780
|
export declare type Return = io.flow.v0.models.Return;
|
|
13729
13781
|
export declare type ReturnForm = io.flow.v0.models.ReturnForm;
|
|
13730
13782
|
export declare type ReturnItemReference = io.flow.v0.models.ReturnItemReference;
|