@flowio/api-prop-types 10.16.100 → 10.16.102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +567 -2376
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +567 -2376
- package/src/api.js +690 -2741
package/lib/api.d.ts
CHANGED
|
@@ -1534,6 +1534,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1534
1534
|
interface GraphqlMetaobjectField {
|
|
1535
1535
|
readonly 'key': string;
|
|
1536
1536
|
readonly 'value'?: string;
|
|
1537
|
+
readonly 'type'?: string;
|
|
1537
1538
|
}
|
|
1538
1539
|
|
|
1539
1540
|
interface GraphqlOption {
|
|
@@ -2480,6 +2481,95 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2480
2481
|
}
|
|
2481
2482
|
}
|
|
2482
2483
|
|
|
2484
|
+
declare namespace io.flow.channel.internal.v0.enums {
|
|
2485
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
2486
|
+
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
2487
|
+
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
2488
|
+
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_missing';
|
|
2489
|
+
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
2490
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2493
|
+
declare namespace io.flow.channel.internal.v0.models {
|
|
2494
|
+
interface ChannelCurrencyForm {
|
|
2495
|
+
readonly 'currency': string;
|
|
2496
|
+
readonly 'channel_id': string;
|
|
2497
|
+
readonly 'capabilities': io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2500
|
+
interface ChannelForm {
|
|
2501
|
+
readonly 'name': string;
|
|
2502
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2503
|
+
readonly 'organization_id_prefix'?: string;
|
|
2504
|
+
}
|
|
2505
|
+
|
|
2506
|
+
interface ChannelMembership {
|
|
2507
|
+
readonly 'id': string;
|
|
2508
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
2509
|
+
readonly 'user': io.flow.common.v0.unions.ExpandableUser;
|
|
2510
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
2511
|
+
}
|
|
2512
|
+
|
|
2513
|
+
interface ChannelMembershipForm {
|
|
2514
|
+
readonly 'channel_id': string;
|
|
2515
|
+
readonly 'user_id': string;
|
|
2516
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2519
|
+
interface ChannelMembershipPutForm {
|
|
2520
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2523
|
+
interface ChannelOrderAcceptance {
|
|
2524
|
+
readonly 'id': string;
|
|
2525
|
+
readonly 'organization_id': string;
|
|
2526
|
+
readonly 'order_number': string;
|
|
2527
|
+
readonly 'channel_id': string;
|
|
2528
|
+
readonly 'external_order_reference': string;
|
|
2529
|
+
readonly 'payment_request_id'?: string;
|
|
2530
|
+
readonly 'order_payment_request_ids'?: string[];
|
|
2531
|
+
readonly 'order_edit_payment_request_ids'?: string[];
|
|
2532
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
2533
|
+
readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
2534
|
+
readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
2535
|
+
readonly 'order_created_at'?: string;
|
|
2536
|
+
readonly 'order_updated_at'?: string;
|
|
2537
|
+
readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
2538
|
+
readonly 'payment_source'?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2541
|
+
interface ChannelOrderAcceptanceDetails {
|
|
2542
|
+
readonly 'order_acceptance': io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
2543
|
+
readonly 'external_order': any/*object*/;
|
|
2544
|
+
}
|
|
2545
|
+
|
|
2546
|
+
interface ChannelOrderAcceptanceFailure {
|
|
2547
|
+
readonly 'id': string;
|
|
2548
|
+
readonly 'organization_id': string;
|
|
2549
|
+
readonly 'channel_id': string;
|
|
2550
|
+
readonly 'payment_request_id': string;
|
|
2551
|
+
readonly 'code': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
2552
|
+
readonly 'reason': string;
|
|
2553
|
+
}
|
|
2554
|
+
|
|
2555
|
+
interface ChannelOrderAcceptanceForm {
|
|
2556
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
2557
|
+
}
|
|
2558
|
+
|
|
2559
|
+
interface ChannelOrderAcceptanceReason {
|
|
2560
|
+
readonly 'description': string;
|
|
2561
|
+
readonly 'rejection_reason'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
interface FlowChannelOrganization {
|
|
2565
|
+
readonly 'placeholder'?: string;
|
|
2566
|
+
}
|
|
2567
|
+
|
|
2568
|
+
interface OrderEditSummary {
|
|
2569
|
+
readonly 'edited_at': string;
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2483
2573
|
declare namespace io.flow.common.v0.enums {
|
|
2484
2574
|
type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
|
|
2485
2575
|
type AvailabilityStatus = 'enabled' | 'disabled';
|
|
@@ -2943,168 +3033,6 @@ declare namespace io.flow.error.v0.models {
|
|
|
2943
3033
|
}
|
|
2944
3034
|
}
|
|
2945
3035
|
|
|
2946
|
-
declare namespace io.flow.price.v0.enums {
|
|
2947
|
-
type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
|
|
2948
|
-
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
2949
|
-
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
2950
|
-
type PriceDetailComponentKey = 'base_price' | 'discount' | 'currency_margin' | 'percent_item_margin' | 'fixed_item_margin' | 'duties_item_price' | 'duties_added_margin' | 'duties_rounding' | 'duties_deminimis' | 'vat_item_price' | 'vat_added_margin' | 'vat_rounding' | 'vat_duties_item_price' | 'vat_duties_added_margin' | 'vat_duties_rounding' | 'vat_deminimis' | 'item_price_percent_sales_margin' | 'margins_percent_sales_margin' | 'rounding_percent_sales_margin' | 'vat_percent_sales_margin' | 'vat_duty_percent_sales_margin' | 'duty_percent_sales_margin';
|
|
2951
|
-
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
2952
|
-
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
2953
|
-
}
|
|
2954
|
-
|
|
2955
|
-
declare namespace io.flow.price.v0.models {
|
|
2956
|
-
interface CurrencyFormat {
|
|
2957
|
-
readonly 'symbol': io.flow.common.v0.enums.CurrencySymbolFormat;
|
|
2958
|
-
readonly 'label_formatters': io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
2959
|
-
}
|
|
2960
|
-
|
|
2961
|
-
interface DeminimisPerItem {
|
|
2962
|
-
readonly 'discriminator': 'deminimis_per_item';
|
|
2963
|
-
readonly 'currency': string;
|
|
2964
|
-
readonly 'minimum'?: number;
|
|
2965
|
-
readonly 'maximum'?: number;
|
|
2966
|
-
}
|
|
2967
|
-
|
|
2968
|
-
interface DeminimisSimple {
|
|
2969
|
-
readonly 'discriminator': 'deminimis_simple';
|
|
2970
|
-
readonly 'value'?: number;
|
|
2971
|
-
readonly 'currency': string;
|
|
2972
|
-
readonly 'components': io.flow.price.v0.enums.LevyComponent[];
|
|
2973
|
-
readonly 'minimum'?: number;
|
|
2974
|
-
}
|
|
2975
|
-
|
|
2976
|
-
interface Duty {
|
|
2977
|
-
readonly 'rate': number;
|
|
2978
|
-
readonly 'components': io.flow.price.v0.enums.LevyComponent[];
|
|
2979
|
-
readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
|
|
2980
|
-
readonly 'name'?: string;
|
|
2981
|
-
}
|
|
2982
|
-
|
|
2983
|
-
interface LocalPriceDetails {
|
|
2984
|
-
readonly 'base': io.flow.price.v0.models.PriceDetails;
|
|
2985
|
-
readonly 'local': io.flow.price.v0.models.PriceDetails;
|
|
2986
|
-
readonly 'discount'?: io.flow.price.v0.models.PriceDetail;
|
|
2987
|
-
readonly 'local_before_discount'?: io.flow.price.v0.models.PriceDetail;
|
|
2988
|
-
}
|
|
2989
|
-
|
|
2990
|
-
interface PriceBook {
|
|
2991
|
-
readonly 'id': string;
|
|
2992
|
-
readonly 'key': string;
|
|
2993
|
-
readonly 'currency': string;
|
|
2994
|
-
readonly 'name': string;
|
|
2995
|
-
readonly 'includes': io.flow.common.v0.models.IncludedLevies;
|
|
2996
|
-
readonly 'status': io.flow.common.v0.enums.PriceBookStatus;
|
|
2997
|
-
}
|
|
2998
|
-
|
|
2999
|
-
interface PriceBookForm {
|
|
3000
|
-
readonly 'currency': string;
|
|
3001
|
-
readonly 'name': string;
|
|
3002
|
-
readonly 'includes': io.flow.common.v0.enums.IncludedLevyKey;
|
|
3003
|
-
readonly 'status'?: io.flow.common.v0.enums.PriceBookStatus;
|
|
3004
|
-
}
|
|
3005
|
-
|
|
3006
|
-
interface PriceBookItem {
|
|
3007
|
-
readonly 'id': string;
|
|
3008
|
-
readonly 'key': string;
|
|
3009
|
-
readonly 'price_book': io.flow.price.v0.models.PriceBookReference;
|
|
3010
|
-
readonly 'price': io.flow.common.v0.models.Price;
|
|
3011
|
-
readonly 'item_number': string;
|
|
3012
|
-
readonly 'schedule': io.flow.price.v0.models.PriceBookItemSchedule;
|
|
3013
|
-
readonly 'item_attributes'?: Record<string, string>;
|
|
3014
|
-
}
|
|
3015
|
-
|
|
3016
|
-
interface PriceBookItemForm {
|
|
3017
|
-
readonly 'price_book_key': string;
|
|
3018
|
-
readonly 'item_number': string;
|
|
3019
|
-
readonly 'amount': number;
|
|
3020
|
-
readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
3021
|
-
readonly 'item_attributes'?: Record<string, string>;
|
|
3022
|
-
}
|
|
3023
|
-
|
|
3024
|
-
interface PriceBookItemQueryForm {
|
|
3025
|
-
readonly 'price_book_key': string;
|
|
3026
|
-
readonly 'item_query': string;
|
|
3027
|
-
readonly 'amount': number;
|
|
3028
|
-
readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
3029
|
-
readonly 'item_attributes'?: Record<string, string>;
|
|
3030
|
-
}
|
|
3031
|
-
|
|
3032
|
-
interface PriceBookItemSchedule {
|
|
3033
|
-
readonly 'starts_at': string;
|
|
3034
|
-
readonly 'ends_at'?: string;
|
|
3035
|
-
}
|
|
3036
|
-
|
|
3037
|
-
interface PriceBookReference {
|
|
3038
|
-
readonly 'id': string;
|
|
3039
|
-
readonly 'key': string;
|
|
3040
|
-
}
|
|
3041
|
-
|
|
3042
|
-
interface PriceCheck {
|
|
3043
|
-
readonly 'display': io.flow.price.v0.models.LocalPriceDetails;
|
|
3044
|
-
readonly 'final': io.flow.price.v0.models.LocalPriceDetails;
|
|
3045
|
-
}
|
|
3046
|
-
|
|
3047
|
-
interface PriceDetail {
|
|
3048
|
-
readonly 'key': io.flow.price.v0.enums.PriceDetailKey;
|
|
3049
|
-
readonly 'components': io.flow.price.v0.models.PriceDetailComponent[];
|
|
3050
|
-
readonly 'amount': number;
|
|
3051
|
-
readonly 'label': string;
|
|
3052
|
-
readonly 'name'?: string;
|
|
3053
|
-
readonly 'basis'?: number;
|
|
3054
|
-
}
|
|
3055
|
-
|
|
3056
|
-
interface PriceDetailComponent {
|
|
3057
|
-
readonly 'key': io.flow.price.v0.enums.PriceDetailComponentKey;
|
|
3058
|
-
readonly 'amount': number;
|
|
3059
|
-
readonly 'label': string;
|
|
3060
|
-
readonly 'name'?: string;
|
|
3061
|
-
}
|
|
3062
|
-
|
|
3063
|
-
interface PriceDetails {
|
|
3064
|
-
readonly 'currency': string;
|
|
3065
|
-
readonly 'item_price': io.flow.price.v0.models.PriceDetail;
|
|
3066
|
-
readonly 'margins': io.flow.price.v0.models.PriceDetail;
|
|
3067
|
-
readonly 'vat': io.flow.price.v0.models.PriceDetail;
|
|
3068
|
-
readonly 'duty': io.flow.price.v0.models.PriceDetail;
|
|
3069
|
-
readonly 'rounding': io.flow.price.v0.models.PriceDetail;
|
|
3070
|
-
readonly 'price': io.flow.common.v0.models.Price;
|
|
3071
|
-
readonly 'total': io.flow.common.v0.models.Price;
|
|
3072
|
-
readonly 'adjustment'?: io.flow.price.v0.models.PriceDetail;
|
|
3073
|
-
}
|
|
3074
|
-
|
|
3075
|
-
interface PriceEquation {
|
|
3076
|
-
readonly 'contracted_rate': number;
|
|
3077
|
-
readonly 'rate': number;
|
|
3078
|
-
readonly 'pricing': io.flow.price.v0.models.Pricing;
|
|
3079
|
-
readonly 'base_price': number;
|
|
3080
|
-
readonly 'discount': number;
|
|
3081
|
-
readonly 'fixed_margin': number;
|
|
3082
|
-
readonly 'percent_margin': number;
|
|
3083
|
-
readonly 'insurance': number;
|
|
3084
|
-
readonly 'freight': number;
|
|
3085
|
-
readonly 'duty'?: io.flow.price.v0.models.Duty;
|
|
3086
|
-
readonly 'tax'?: io.flow.price.v0.models.Tax;
|
|
3087
|
-
readonly 'percent_sales_margin': number;
|
|
3088
|
-
}
|
|
3089
|
-
|
|
3090
|
-
interface Pricing {
|
|
3091
|
-
readonly 'vat': io.flow.price.v0.enums.PricingLevySetting;
|
|
3092
|
-
readonly 'duty': io.flow.price.v0.enums.PricingLevySetting;
|
|
3093
|
-
readonly 'rounding'?: io.flow.common.v0.models.Rounding;
|
|
3094
|
-
}
|
|
3095
|
-
|
|
3096
|
-
interface Tax {
|
|
3097
|
-
readonly 'name': string;
|
|
3098
|
-
readonly 'rate': number;
|
|
3099
|
-
readonly 'components': io.flow.price.v0.enums.LevyComponent[];
|
|
3100
|
-
readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
|
|
3101
|
-
}
|
|
3102
|
-
}
|
|
3103
|
-
|
|
3104
|
-
declare namespace io.flow.price.v0.unions {
|
|
3105
|
-
type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
|
|
3106
|
-
}
|
|
3107
|
-
|
|
3108
3036
|
declare namespace io.flow.channel.v0.enums {
|
|
3109
3037
|
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
3110
3038
|
}
|
|
@@ -3168,1924 +3096,286 @@ declare namespace io.flow.channel.v0.models {
|
|
|
3168
3096
|
}
|
|
3169
3097
|
}
|
|
3170
3098
|
|
|
3171
|
-
declare namespace io.flow.
|
|
3172
|
-
type
|
|
3173
|
-
type
|
|
3174
|
-
type
|
|
3175
|
-
type
|
|
3099
|
+
declare namespace io.flow.apple.pay.v0.enums {
|
|
3100
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
3101
|
+
type ApplePayLineItemType = 'final' | 'pending';
|
|
3102
|
+
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
3103
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
|
|
3104
|
+
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
3176
3105
|
}
|
|
3177
3106
|
|
|
3178
|
-
declare namespace io.flow.
|
|
3179
|
-
interface
|
|
3180
|
-
readonly '
|
|
3181
|
-
readonly '
|
|
3182
|
-
readonly '
|
|
3107
|
+
declare namespace io.flow.apple.pay.v0.models {
|
|
3108
|
+
interface ApplePayLineItem {
|
|
3109
|
+
readonly 'label': string;
|
|
3110
|
+
readonly 'type': io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
3111
|
+
readonly 'amount': string;
|
|
3183
3112
|
}
|
|
3184
3113
|
|
|
3185
|
-
interface
|
|
3186
|
-
readonly '
|
|
3187
|
-
readonly '
|
|
3188
|
-
readonly '
|
|
3114
|
+
interface ApplePayPaymentContact {
|
|
3115
|
+
readonly 'email_address'?: string;
|
|
3116
|
+
readonly 'family_name'?: string;
|
|
3117
|
+
readonly 'given_name'?: string;
|
|
3118
|
+
readonly 'phone_number'?: string;
|
|
3119
|
+
readonly 'phonetic_familyName'?: string;
|
|
3120
|
+
readonly 'phonetic_givenName'?: string;
|
|
3121
|
+
readonly 'address_lines'?: string[];
|
|
3122
|
+
readonly 'locality'?: string;
|
|
3123
|
+
readonly 'sub_locality'?: string;
|
|
3124
|
+
readonly 'administrative_area'?: string;
|
|
3125
|
+
readonly 'sub_administrative_area'?: string;
|
|
3126
|
+
readonly 'postal_code'?: string;
|
|
3127
|
+
readonly 'country'?: string;
|
|
3128
|
+
readonly 'country_code'?: string;
|
|
3189
3129
|
}
|
|
3190
3130
|
|
|
3191
|
-
interface
|
|
3192
|
-
readonly '
|
|
3193
|
-
readonly '
|
|
3194
|
-
readonly '
|
|
3195
|
-
readonly '
|
|
3196
|
-
readonly '
|
|
3197
|
-
readonly '
|
|
3198
|
-
readonly '
|
|
3199
|
-
readonly '
|
|
3200
|
-
readonly 'default_delivered_duty'?: string;
|
|
3201
|
-
}
|
|
3202
|
-
|
|
3203
|
-
interface Currency {
|
|
3204
|
-
readonly 'name': string;
|
|
3205
|
-
readonly 'iso_4217_3': string;
|
|
3206
|
-
readonly 'number_decimals': number;
|
|
3207
|
-
readonly 'symbols'?: io.flow.reference.v0.models.CurrencySymbols;
|
|
3208
|
-
readonly 'default_locale'?: string;
|
|
3209
|
-
}
|
|
3210
|
-
|
|
3211
|
-
interface CurrencySymbols {
|
|
3212
|
-
readonly 'primary': string;
|
|
3213
|
-
readonly 'narrow'?: string;
|
|
3214
|
-
}
|
|
3215
|
-
|
|
3216
|
-
interface Language {
|
|
3217
|
-
readonly 'name': string;
|
|
3218
|
-
readonly 'iso_639_2': string;
|
|
3219
|
-
}
|
|
3220
|
-
|
|
3221
|
-
interface Locale {
|
|
3222
|
-
readonly 'id': string;
|
|
3223
|
-
readonly 'name': string;
|
|
3224
|
-
readonly 'country': string;
|
|
3225
|
-
readonly 'language': string;
|
|
3226
|
-
readonly 'numbers': io.flow.reference.v0.models.LocaleNumbers;
|
|
3227
|
-
}
|
|
3228
|
-
|
|
3229
|
-
interface LocaleNumbers {
|
|
3230
|
-
readonly 'decimal': string;
|
|
3231
|
-
readonly 'group': string;
|
|
3232
|
-
}
|
|
3233
|
-
|
|
3234
|
-
interface LocalizedTranslation {
|
|
3235
|
-
readonly 'locale': io.flow.reference.v0.models.Locale;
|
|
3236
|
-
readonly 'name': string;
|
|
3237
|
-
}
|
|
3238
|
-
|
|
3239
|
-
interface PaymentMethod {
|
|
3240
|
-
readonly 'id': string;
|
|
3241
|
-
readonly 'type': io.flow.reference.v0.enums.PaymentMethodType;
|
|
3242
|
-
readonly 'name': string;
|
|
3243
|
-
readonly 'images': io.flow.reference.v0.models.PaymentMethodImages;
|
|
3244
|
-
readonly 'regions': string[];
|
|
3245
|
-
readonly 'capabilities'?: io.flow.reference.v0.enums.PaymentMethodCapability[];
|
|
3246
|
-
}
|
|
3247
|
-
|
|
3248
|
-
interface PaymentMethodImage {
|
|
3249
|
-
readonly 'url': string;
|
|
3250
|
-
readonly 'width': number;
|
|
3251
|
-
readonly 'height': number;
|
|
3252
|
-
}
|
|
3253
|
-
|
|
3254
|
-
interface PaymentMethodImages {
|
|
3255
|
-
readonly 'small': io.flow.reference.v0.models.PaymentMethodImage;
|
|
3256
|
-
readonly 'medium': io.flow.reference.v0.models.PaymentMethodImage;
|
|
3257
|
-
readonly 'large': io.flow.reference.v0.models.PaymentMethodImage;
|
|
3258
|
-
}
|
|
3259
|
-
|
|
3260
|
-
interface Province {
|
|
3261
|
-
readonly 'id': string;
|
|
3262
|
-
readonly 'iso_3166_2': string;
|
|
3263
|
-
readonly 'name': string;
|
|
3264
|
-
readonly 'country': string;
|
|
3265
|
-
readonly 'province_type': io.flow.reference.v0.enums.ProvinceType;
|
|
3266
|
-
readonly 'translations'?: io.flow.reference.v0.models.LocalizedTranslation[];
|
|
3267
|
-
}
|
|
3268
|
-
|
|
3269
|
-
interface Region {
|
|
3270
|
-
readonly 'id': string;
|
|
3271
|
-
readonly 'name': string;
|
|
3272
|
-
readonly 'countries': string[];
|
|
3273
|
-
readonly 'currencies': string[];
|
|
3274
|
-
readonly 'languages': string[];
|
|
3275
|
-
readonly 'measurement_systems': string[];
|
|
3276
|
-
readonly 'timezones': string[];
|
|
3277
|
-
}
|
|
3278
|
-
|
|
3279
|
-
interface Timezone {
|
|
3280
|
-
readonly 'name': string;
|
|
3281
|
-
readonly 'description': string;
|
|
3282
|
-
readonly 'offset': number;
|
|
3283
|
-
}
|
|
3284
|
-
}
|
|
3285
|
-
|
|
3286
|
-
declare namespace io.flow.fulfillment.v0.enums {
|
|
3287
|
-
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
3288
|
-
type DeliveryOptionCostDetailComponentKey = 'ratecard_base_cost' | 'ratecard_ddp_fee' | 'ratecard_fuel_surcharge' | 'ratecard_oversized_shipment_fee' | 'ratecard_rural_shipment_fee' | 'ratecard_emergency_situation_surcharge_fee' | 'ratecard_peak_surcharge_fee' | 'ratecard_duties_taxes_paid_surcharge_fee' | 'center_commercial_invoice_fee' | 'center_inbound_carton_fee' | 'center_outbound_carton_fee';
|
|
3289
|
-
type DeliveryOptionCostDetailSource = 'center' | 'ratecard';
|
|
3290
|
-
type DeliveryWindowComponentSource = 'flow' | 'organization' | 'carrier' | 'center' | 'mixed';
|
|
3291
|
-
type DeliveryWindowLocation = 'center' | 'crossdock' | 'customer';
|
|
3292
|
-
type FulfillmentRouting = 'fulfilled_from_center' | 'fulfillment_service';
|
|
3293
|
-
type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
|
|
3294
|
-
type LaneDirection = 'outbound' | 'return';
|
|
3295
|
-
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
3296
|
-
type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
|
|
3297
|
-
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
3298
|
-
type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
|
|
3299
|
-
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
3300
|
-
type RatecardOwner = 'flow' | 'organization';
|
|
3301
|
-
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
3302
|
-
type ShippingConfigurationType = 'default' | 'variant';
|
|
3303
|
-
type Strategy = 'range' | 'from' | 'to';
|
|
3304
|
-
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3305
|
-
type TierAvailability = 'always' | 'backup';
|
|
3306
|
-
type TierEstimateType = 'calculated' | 'custom';
|
|
3307
|
-
type TierStrategy = 'fastest' | 'lowest_cost';
|
|
3308
|
-
type ZeroAmountIndicator = 'zero' | 'free';
|
|
3309
|
-
}
|
|
3310
|
-
|
|
3311
|
-
declare namespace io.flow.fulfillment.v0.models {
|
|
3312
|
-
interface AmountMargin {
|
|
3313
|
-
readonly 'discriminator': 'amount_margin';
|
|
3314
|
-
readonly 'margin': io.flow.common.v0.models.Price;
|
|
3315
|
-
}
|
|
3316
|
-
|
|
3317
|
-
interface AmountMarginForm {
|
|
3318
|
-
readonly 'discriminator': 'amount_margin_form';
|
|
3319
|
-
readonly 'margin': io.flow.common.v0.models.Money;
|
|
3320
|
-
}
|
|
3321
|
-
|
|
3322
|
-
interface AtCost {
|
|
3323
|
-
readonly 'discriminator': 'at_cost';
|
|
3324
|
-
readonly 'ignore'?: string;
|
|
3325
|
-
}
|
|
3326
|
-
|
|
3327
|
-
interface AvailableService {
|
|
3328
|
-
readonly 'service': string;
|
|
3329
|
-
readonly 'scheduled_pickups'?: io.flow.fulfillment.v0.models.ScheduledPickup[];
|
|
3330
|
-
readonly 'lead_days'?: io.flow.fulfillment.v0.models.NumberRange;
|
|
3331
|
-
}
|
|
3332
|
-
|
|
3333
|
-
interface CarrierReference {
|
|
3334
|
-
readonly 'id': string;
|
|
3335
|
-
}
|
|
3336
|
-
|
|
3337
|
-
interface Center {
|
|
3338
|
-
readonly 'discriminator': 'center';
|
|
3339
|
-
readonly 'id': string;
|
|
3340
|
-
readonly 'key': string;
|
|
3341
|
-
readonly 'address': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3342
|
-
readonly 'packaging': io.flow.fulfillment.v0.models.Packaging[];
|
|
3343
|
-
readonly 'name': string;
|
|
3344
|
-
readonly 'services': io.flow.fulfillment.v0.models.AvailableService[];
|
|
3345
|
-
readonly 'schedule': io.flow.common.v0.models.Schedule;
|
|
3346
|
-
readonly 'timezone': string;
|
|
3347
|
-
readonly 'capabilities'?: io.flow.fulfillment.v0.enums.CenterCapability[];
|
|
3348
|
-
readonly 'partner_center'?: io.flow.fulfillment.v0.models.PartnerCenter;
|
|
3349
|
-
}
|
|
3350
|
-
|
|
3351
|
-
interface CenterForm {
|
|
3352
|
-
readonly 'address': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3353
|
-
readonly 'packaging': io.flow.fulfillment.v0.models.Packaging[];
|
|
3354
|
-
readonly 'name': string;
|
|
3355
|
-
readonly 'services': io.flow.fulfillment.v0.models.AvailableService[];
|
|
3356
|
-
readonly 'schedule': io.flow.common.v0.models.Schedule;
|
|
3357
|
-
readonly 'timezone'?: string;
|
|
3358
|
-
readonly 'key'?: string;
|
|
3359
|
-
readonly 'capabilities'?: io.flow.fulfillment.v0.enums.CenterCapability[];
|
|
3360
|
-
readonly 'partner_center_form'?: io.flow.fulfillment.v0.models.PartnerCenterForm;
|
|
3361
|
-
}
|
|
3362
|
-
|
|
3363
|
-
interface CenterQuery {
|
|
3364
|
-
readonly 'q': string;
|
|
3365
|
-
}
|
|
3366
|
-
|
|
3367
|
-
interface CenterReference {
|
|
3368
|
-
readonly 'discriminator': 'center_reference';
|
|
3369
|
-
readonly 'organization_id': string;
|
|
3370
|
-
readonly 'center_key': string;
|
|
3371
|
-
}
|
|
3372
|
-
|
|
3373
|
-
interface CenterSummary {
|
|
3374
|
-
readonly 'id': string;
|
|
3375
|
-
readonly 'key': string;
|
|
3376
|
-
readonly 'address'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3377
|
-
}
|
|
3378
|
-
|
|
3379
|
-
interface CenterVersion {
|
|
3380
|
-
readonly 'id': string;
|
|
3381
|
-
readonly 'timestamp': string;
|
|
3382
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3383
|
-
readonly 'center': io.flow.fulfillment.v0.models.Center;
|
|
3384
|
-
}
|
|
3385
|
-
|
|
3386
|
-
interface CommercialInvoiceFee {
|
|
3387
|
-
readonly 'discriminator': 'commercial_invoice_fee';
|
|
3388
|
-
readonly 'amount': io.flow.common.v0.models.Money;
|
|
3389
|
-
}
|
|
3390
|
-
|
|
3391
|
-
interface CountryAvailability {
|
|
3392
|
-
readonly 'status': io.flow.fulfillment.v0.enums.ItemAvailabilityStatus;
|
|
3393
|
-
readonly 'countries': string[];
|
|
3394
|
-
}
|
|
3395
|
-
|
|
3396
|
-
interface CountryShippingPricing {
|
|
3397
|
-
readonly 'pricing': io.flow.fulfillment.v0.models.ItemShippingPricing;
|
|
3398
|
-
readonly 'countries': string[];
|
|
3399
|
-
}
|
|
3400
|
-
|
|
3401
|
-
interface DeliveryItem {
|
|
3402
|
-
readonly 'id'?: string;
|
|
3403
|
-
readonly 'number': string;
|
|
3404
|
-
readonly 'quantity': number;
|
|
3405
|
-
readonly 'shipment_estimate'?: io.flow.common.v0.models.DatetimeRange;
|
|
3406
|
-
readonly 'price'?: io.flow.common.v0.models.MoneyWithOptionalBase;
|
|
3407
|
-
readonly 'attributes'?: Record<string, string>;
|
|
3408
|
-
readonly 'center'?: string;
|
|
3409
|
-
readonly 'line_number'?: number;
|
|
3410
|
-
}
|
|
3411
|
-
|
|
3412
|
-
interface DeliveryOption {
|
|
3413
|
-
readonly 'id': string;
|
|
3414
|
-
readonly 'cost': io.flow.fulfillment.v0.models.PriceWithBaseAndDetails;
|
|
3415
|
-
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
3416
|
-
readonly 'price': io.flow.fulfillment.v0.models.PriceWithBaseAndDetails;
|
|
3417
|
-
readonly 'service': io.flow.fulfillment.v0.models.ServiceSummary;
|
|
3418
|
-
readonly 'tier': io.flow.fulfillment.v0.models.TierSummary;
|
|
3419
|
-
readonly 'window': io.flow.fulfillment.v0.models.DeliveryWindow;
|
|
3420
|
-
readonly 'rule_outcome'?: io.flow.fulfillment.v0.unions.TierRuleOutcome;
|
|
3421
|
-
readonly 'weight'?: io.flow.fulfillment.v0.models.OptionWeightEstimates;
|
|
3422
|
-
readonly 'send_to'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3423
|
-
readonly 'surcharge'?: io.flow.fulfillment.v0.models.PriceWithBaseAndDetails;
|
|
3424
|
-
readonly 'ratecard_owner'?: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
3425
|
-
}
|
|
3426
|
-
|
|
3427
|
-
interface DeliveryOptionCostComponent {
|
|
3428
|
-
readonly 'key': io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailComponentKey;
|
|
3429
|
-
readonly 'currency': string;
|
|
3430
|
-
readonly 'amount': number;
|
|
3431
|
-
readonly 'label': string;
|
|
3432
|
-
readonly 'base'?: io.flow.common.v0.models.Price;
|
|
3433
|
-
}
|
|
3434
|
-
|
|
3435
|
-
interface DeliveryOptionCostDetail {
|
|
3436
|
-
readonly 'source': io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailSource;
|
|
3437
|
-
readonly 'ratecard_id'?: string;
|
|
3438
|
-
readonly 'currency': string;
|
|
3439
|
-
readonly 'amount': number;
|
|
3440
|
-
readonly 'label': string;
|
|
3441
|
-
readonly 'base'?: io.flow.common.v0.models.Price;
|
|
3442
|
-
readonly 'components': io.flow.fulfillment.v0.models.DeliveryOptionCostComponent[];
|
|
3443
|
-
}
|
|
3444
|
-
|
|
3445
|
-
interface DeliveryOptionForm {
|
|
3446
|
-
readonly 'delivery': string;
|
|
3447
|
-
readonly 'items': io.flow.fulfillment.v0.models.QuoteLineItemForm[];
|
|
3448
|
-
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3449
|
-
}
|
|
3450
|
-
|
|
3451
|
-
interface DeliveryOptionReference {
|
|
3452
|
-
readonly 'id': string;
|
|
3453
|
-
}
|
|
3454
|
-
|
|
3455
|
-
interface DeliveryOptionSummary {
|
|
3456
|
-
readonly 'id': string;
|
|
3457
|
-
readonly 'cost': io.flow.common.v0.models.Price;
|
|
3458
|
-
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
3459
|
-
readonly 'price': io.flow.common.v0.models.Price;
|
|
3460
|
-
readonly 'service': io.flow.fulfillment.v0.models.ServiceReference;
|
|
3461
|
-
readonly 'tier': io.flow.fulfillment.v0.models.TierReference;
|
|
3462
|
-
readonly 'window': io.flow.common.v0.models.DatetimeRange;
|
|
3463
|
-
}
|
|
3464
|
-
|
|
3465
|
-
interface DeliveryOptionVersion {
|
|
3466
|
-
readonly 'id': string;
|
|
3467
|
-
readonly 'timestamp': string;
|
|
3468
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3469
|
-
readonly 'delivery_option': io.flow.fulfillment.v0.models.DeliveryOptionSummary;
|
|
3470
|
-
}
|
|
3471
|
-
|
|
3472
|
-
interface DeliverySummary {
|
|
3473
|
-
readonly 'id': string;
|
|
3474
|
-
readonly 'items': io.flow.common.v0.models.LineItemForm[];
|
|
3475
|
-
}
|
|
3476
|
-
|
|
3477
|
-
interface DeliveryVersion {
|
|
3478
|
-
readonly 'id': string;
|
|
3479
|
-
readonly 'timestamp': string;
|
|
3480
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3481
|
-
readonly 'delivery': io.flow.fulfillment.v0.models.DeliverySummary;
|
|
3482
|
-
}
|
|
3483
|
-
|
|
3484
|
-
interface DeliveryWindow {
|
|
3485
|
-
readonly 'from': string;
|
|
3486
|
-
readonly 'to': string;
|
|
3487
|
-
readonly 'timezone'?: string;
|
|
3488
|
-
readonly 'label'?: string;
|
|
3489
|
-
readonly 'min_days'?: number;
|
|
3490
|
-
readonly 'max_days'?: number;
|
|
3491
|
-
}
|
|
3492
|
-
|
|
3493
|
-
interface DeliveryWindowComponent {
|
|
3494
|
-
readonly 'from': string;
|
|
3495
|
-
readonly 'to': string;
|
|
3496
|
-
readonly 'source': io.flow.fulfillment.v0.enums.DeliveryWindowComponentSource;
|
|
3497
|
-
}
|
|
3498
|
-
|
|
3499
|
-
interface DeliveryWindowComponents {
|
|
3500
|
-
readonly 'shipment_estimate': io.flow.fulfillment.v0.models.DeliveryWindowComponent;
|
|
3501
|
-
readonly 'transit_estimate': io.flow.fulfillment.v0.models.DeliveryWindowComponent;
|
|
3502
|
-
}
|
|
3503
|
-
|
|
3504
|
-
interface DeliveryWindowComponentsV2 {
|
|
3505
|
-
readonly 'processing_estimates': io.flow.fulfillment.v0.models.ProcessingEstimate[];
|
|
3506
|
-
readonly 'transit_estimates': io.flow.fulfillment.v0.models.TransitEstimate[];
|
|
3507
|
-
}
|
|
3508
|
-
|
|
3509
|
-
interface DeliveryWindowSummary {
|
|
3510
|
-
readonly 'country': string;
|
|
3511
|
-
readonly 'delivery_window': io.flow.fulfillment.v0.models.DeliveryWindow;
|
|
3512
|
-
}
|
|
3513
|
-
|
|
3514
|
-
interface DigitalDelivery {
|
|
3515
|
-
readonly 'discriminator': 'digital_delivery';
|
|
3516
|
-
readonly 'id': string;
|
|
3517
|
-
readonly 'key'?: string;
|
|
3518
|
-
readonly 'items': io.flow.fulfillment.v0.models.DeliveryItem[];
|
|
3519
|
-
readonly 'prices'?: io.flow.order.price.v0.models.OrderPriceDetail[];
|
|
3520
|
-
readonly 'total'?: io.flow.catalog.v0.models.LocalizedTotal;
|
|
3521
|
-
}
|
|
3522
|
-
|
|
3523
|
-
interface EstimatedWindow {
|
|
3524
|
-
readonly 'from': number;
|
|
3525
|
-
readonly 'to': number;
|
|
3526
|
-
readonly 'unit': io.flow.common.v0.enums.UnitOfTime;
|
|
3527
|
-
}
|
|
3528
|
-
|
|
3529
|
-
interface FlatRate {
|
|
3530
|
-
readonly 'discriminator': 'flat_rate';
|
|
3531
|
-
readonly 'price': io.flow.common.v0.models.Price;
|
|
3532
|
-
readonly 'zero_amount_indicator'?: io.flow.fulfillment.v0.enums.ZeroAmountIndicator;
|
|
3533
|
-
}
|
|
3534
|
-
|
|
3535
|
-
interface FlatRateForm {
|
|
3536
|
-
readonly 'discriminator': 'flat_rate_form';
|
|
3537
|
-
readonly 'price': io.flow.common.v0.models.Money;
|
|
3538
|
-
readonly 'zero_amount_indicator'?: io.flow.fulfillment.v0.enums.ZeroAmountIndicator;
|
|
3539
|
-
}
|
|
3540
|
-
|
|
3541
|
-
interface FulfillmentExperienceReference {
|
|
3542
|
-
readonly 'id': string;
|
|
3543
|
-
readonly 'currency': string;
|
|
3544
|
-
}
|
|
3545
|
-
|
|
3546
|
-
interface InboundCartonFee {
|
|
3547
|
-
readonly 'discriminator': 'inbound_carton_fee';
|
|
3548
|
-
readonly 'amount': io.flow.common.v0.models.Money;
|
|
3549
|
-
}
|
|
3550
|
-
|
|
3551
|
-
interface ItemShippingPricing {
|
|
3552
|
-
readonly 'min': io.flow.common.v0.models.Price;
|
|
3553
|
-
readonly 'max'?: io.flow.common.v0.models.Price;
|
|
3554
|
-
}
|
|
3555
|
-
|
|
3556
|
-
interface NumberRange {
|
|
3557
|
-
readonly 'min': number;
|
|
3558
|
-
readonly 'max': number;
|
|
3559
|
-
}
|
|
3560
|
-
|
|
3561
|
-
interface OptionWeightEstimates {
|
|
3562
|
-
readonly 'gravitational': io.flow.common.v0.models.Measurement;
|
|
3563
|
-
readonly 'dimensional': io.flow.common.v0.models.Measurement;
|
|
3564
|
-
}
|
|
3565
|
-
|
|
3566
|
-
interface OutboundCartonFee {
|
|
3567
|
-
readonly 'discriminator': 'outbound_carton_fee';
|
|
3568
|
-
readonly 'amount': io.flow.common.v0.models.Money;
|
|
3569
|
-
}
|
|
3570
|
-
|
|
3571
|
-
interface Packaging {
|
|
3572
|
-
readonly 'dimensions': io.flow.common.v0.models.Dimensions;
|
|
3573
|
-
readonly 'name'?: string;
|
|
3574
|
-
readonly 'number'?: string;
|
|
3575
|
-
}
|
|
3576
|
-
|
|
3577
|
-
interface PartnerCenter {
|
|
3578
|
-
readonly 'partner_reference': io.flow.common.v0.models.PartnerReference;
|
|
3579
|
-
readonly 'number'?: string;
|
|
3580
|
-
readonly 'fees'?: io.flow.fulfillment.v0.unions.PartnerCenterFee[];
|
|
3581
|
-
}
|
|
3582
|
-
|
|
3583
|
-
interface PartnerCenterForm {
|
|
3584
|
-
readonly 'partner_id': string;
|
|
3585
|
-
readonly 'number'?: string;
|
|
3586
|
-
readonly 'fees'?: io.flow.fulfillment.v0.unions.PartnerCenterFee[];
|
|
3587
|
-
}
|
|
3588
|
-
|
|
3589
|
-
interface PercentMargin {
|
|
3590
|
-
readonly 'discriminator': 'percent_margin';
|
|
3591
|
-
readonly 'percentage': number;
|
|
3592
|
-
}
|
|
3593
|
-
|
|
3594
|
-
interface PhysicalDelivery {
|
|
3595
|
-
readonly 'discriminator': 'physical_delivery';
|
|
3596
|
-
readonly 'id': string;
|
|
3597
|
-
readonly 'key'?: string;
|
|
3598
|
-
readonly 'center'?: io.flow.fulfillment.v0.models.CenterSummary;
|
|
3599
|
-
readonly 'fulfillment_routing'?: io.flow.fulfillment.v0.enums.FulfillmentRouting;
|
|
3600
|
-
readonly 'ship_from_country'?: string;
|
|
3601
|
-
readonly 'items': io.flow.fulfillment.v0.models.DeliveryItem[];
|
|
3602
|
-
readonly 'options': io.flow.fulfillment.v0.models.DeliveryOption[];
|
|
3603
|
-
readonly 'special_services'?: io.flow.fulfillment.v0.enums.PhysicalDeliverySpecialSerivce[];
|
|
3604
|
-
readonly 'prices'?: io.flow.order.price.v0.models.OrderPriceDetail[];
|
|
3605
|
-
readonly 'total'?: io.flow.catalog.v0.models.LocalizedTotal;
|
|
3606
|
-
readonly 'goods_supply'?: io.flow.common.v0.enums.GoodsSupply;
|
|
3607
|
-
readonly 'merchant_of_record_flow_entity'?: io.flow.merchant.of.record.v0.enums.FlowEntity;
|
|
3608
|
-
readonly 'preferred_service'?: io.flow.fulfillment.v0.models.PhysicalDeliveryPreferredService;
|
|
3609
|
-
}
|
|
3610
|
-
|
|
3611
|
-
interface PhysicalDeliveryPreferredService {
|
|
3612
|
-
readonly 'id': string;
|
|
3613
|
-
readonly 'selection_stratey': io.flow.fulfillment.v0.enums.PreferredServiceSelectionStrategy;
|
|
3614
|
-
}
|
|
3615
|
-
|
|
3616
|
-
interface PriceWithBaseAndDetails {
|
|
3617
|
-
readonly 'currency': string;
|
|
3618
|
-
readonly 'amount': number;
|
|
3619
|
-
readonly 'label': string;
|
|
3620
|
-
readonly 'base'?: io.flow.common.v0.models.Price;
|
|
3621
|
-
readonly 'details'?: io.flow.fulfillment.v0.models.DeliveryOptionCostDetail[];
|
|
3622
|
-
}
|
|
3623
|
-
|
|
3624
|
-
interface ProcessingEstimate {
|
|
3625
|
-
readonly 'location': io.flow.fulfillment.v0.enums.DeliveryWindowLocation;
|
|
3626
|
-
readonly 'min_date': string;
|
|
3627
|
-
readonly 'max_date': string;
|
|
3628
|
-
readonly 'source': io.flow.fulfillment.v0.enums.DeliveryWindowComponentSource;
|
|
3629
|
-
}
|
|
3630
|
-
|
|
3631
|
-
interface Quote {
|
|
3632
|
-
readonly 'id': string;
|
|
3633
|
-
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3634
|
-
readonly 'deliveries': io.flow.fulfillment.v0.unions.Delivery[];
|
|
3635
|
-
readonly 'selections': io.flow.fulfillment.v0.models.DeliveryOptionReference[];
|
|
3636
|
-
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
3637
|
-
readonly 'delivered_duties': io.flow.common.v0.enums.DeliveredDuty[];
|
|
3638
|
-
}
|
|
3639
|
-
|
|
3640
|
-
interface QuoteError {
|
|
3641
|
-
readonly 'code': io.flow.fulfillment.v0.enums.QuoteErrorCode;
|
|
3642
|
-
readonly 'messages': string[];
|
|
3643
|
-
readonly 'item_numbers'?: string[];
|
|
3644
|
-
}
|
|
3645
|
-
|
|
3646
|
-
interface QuoteForm {
|
|
3647
|
-
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3648
|
-
readonly 'experience': string;
|
|
3649
|
-
readonly 'items': io.flow.fulfillment.v0.models.QuoteLineItemForm[];
|
|
3650
|
-
readonly 'delivered_duty'?: io.flow.common.v0.enums.DeliveredDuty;
|
|
3651
|
-
readonly 'delivered_duties'?: io.flow.common.v0.enums.DeliveredDuty[];
|
|
3652
|
-
readonly 'direction'?: io.flow.fulfillment.v0.enums.LaneDirection;
|
|
3653
|
-
}
|
|
3654
|
-
|
|
3655
|
-
interface QuoteLineItemForm {
|
|
3656
|
-
readonly 'number': string;
|
|
3657
|
-
readonly 'quantity': number;
|
|
3658
|
-
readonly 'shipment_estimate'?: io.flow.common.v0.models.DatetimeRange;
|
|
3659
|
-
readonly 'price': io.flow.common.v0.models.MoneyWithBase;
|
|
3660
|
-
readonly 'attributes'?: Record<string, string>;
|
|
3661
|
-
readonly 'center'?: string;
|
|
3662
|
-
}
|
|
3663
|
-
|
|
3664
|
-
interface QuoteSummary {
|
|
3665
|
-
readonly 'id': string;
|
|
3666
|
-
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3667
|
-
}
|
|
3668
|
-
|
|
3669
|
-
interface QuoteVersion {
|
|
3670
|
-
readonly 'id': string;
|
|
3671
|
-
readonly 'timestamp': string;
|
|
3672
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3673
|
-
readonly 'quote': io.flow.fulfillment.v0.models.QuoteSummary;
|
|
3674
|
-
}
|
|
3675
|
-
|
|
3676
|
-
interface ScheduledPickup {
|
|
3677
|
-
readonly 'day_of_week': io.flow.common.v0.enums.DayOfWeek;
|
|
3678
|
-
readonly 'hour_of_day': string;
|
|
3679
|
-
readonly 'minute_of_hour': string;
|
|
3680
|
-
}
|
|
3681
|
-
|
|
3682
|
-
interface ServiceReference {
|
|
3683
|
-
readonly 'id': string;
|
|
3684
|
-
}
|
|
3685
|
-
|
|
3686
|
-
interface ServiceSummary {
|
|
3687
|
-
readonly 'discriminator': 'service_summary';
|
|
3688
|
-
readonly 'id': string;
|
|
3689
|
-
readonly 'carrier': io.flow.fulfillment.v0.models.CarrierReference;
|
|
3690
|
-
readonly 'name': string;
|
|
3691
|
-
readonly 'center_code'?: string;
|
|
3692
|
-
}
|
|
3693
|
-
|
|
3694
|
-
interface ServiceUnknown {
|
|
3695
|
-
readonly 'discriminator': 'service_unknown';
|
|
3696
|
-
readonly 'name': string;
|
|
3697
|
-
}
|
|
3698
|
-
|
|
3699
|
-
interface ShippingAddress {
|
|
3700
|
-
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
3701
|
-
readonly 'location': io.flow.common.v0.models.Address;
|
|
3702
|
-
readonly 'center_key'?: string;
|
|
3703
|
-
readonly 'center_reference'?: io.flow.fulfillment.v0.models.CenterReference;
|
|
3704
|
-
readonly 'service'?: io.flow.fulfillment.v0.models.ServiceSummary;
|
|
3705
|
-
}
|
|
3706
|
-
|
|
3707
|
-
interface ShippingConfiguration {
|
|
3708
|
-
readonly 'id': string;
|
|
3709
|
-
readonly 'name': string;
|
|
3710
|
-
readonly 'key': string;
|
|
3711
|
-
readonly 'type': io.flow.fulfillment.v0.enums.ShippingConfigurationType;
|
|
3712
|
-
readonly 'shipping_lanes': io.flow.fulfillment.v0.models.ShippingLane[];
|
|
3713
|
-
}
|
|
3714
|
-
|
|
3715
|
-
interface ShippingConfigurationCopy {
|
|
3716
|
-
readonly 'original': io.flow.fulfillment.v0.models.ShippingConfigurationReference;
|
|
3717
|
-
readonly 'new': io.flow.fulfillment.v0.models.ShippingConfigurationReference;
|
|
3718
|
-
}
|
|
3719
|
-
|
|
3720
|
-
interface ShippingConfigurationCopyForm {
|
|
3721
|
-
readonly 'name': string;
|
|
3722
|
-
}
|
|
3723
|
-
|
|
3724
|
-
interface ShippingConfigurationForm {
|
|
3725
|
-
readonly 'name': string;
|
|
3726
|
-
}
|
|
3727
|
-
|
|
3728
|
-
interface ShippingConfigurationItemAvailability {
|
|
3729
|
-
readonly 'id': string;
|
|
3730
|
-
readonly 'item': io.flow.common.v0.models.ItemReference;
|
|
3731
|
-
readonly 'shipping_configuration': io.flow.fulfillment.v0.models.ShippingConfigurationSummary;
|
|
3732
|
-
readonly 'availabilities': io.flow.fulfillment.v0.models.CountryAvailability[];
|
|
3733
|
-
}
|
|
3734
|
-
|
|
3735
|
-
interface ShippingConfigurationItemShippingPricing {
|
|
3736
|
-
readonly 'id': string;
|
|
3737
|
-
readonly 'item': io.flow.common.v0.models.ItemReference;
|
|
3738
|
-
readonly 'shipping_configuration': io.flow.fulfillment.v0.models.ShippingConfigurationSummary;
|
|
3739
|
-
readonly 'country_shipping_pricings': io.flow.fulfillment.v0.models.CountryShippingPricing[];
|
|
3740
|
-
}
|
|
3741
|
-
|
|
3742
|
-
interface ShippingConfigurationReference {
|
|
3743
|
-
readonly 'key': string;
|
|
3744
|
-
}
|
|
3745
|
-
|
|
3746
|
-
interface ShippingConfigurationSummary {
|
|
3747
|
-
readonly 'id': string;
|
|
3748
|
-
readonly 'name': string;
|
|
3749
|
-
readonly 'key': string;
|
|
3750
|
-
readonly 'type': io.flow.fulfillment.v0.enums.ShippingConfigurationType;
|
|
3751
|
-
}
|
|
3752
|
-
|
|
3753
|
-
interface ShippingConfigurationVersion {
|
|
3754
|
-
readonly 'id': string;
|
|
3755
|
-
readonly 'timestamp': string;
|
|
3756
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3757
|
-
readonly 'shipping_configuration': io.flow.fulfillment.v0.models.ShippingConfiguration;
|
|
3758
|
-
}
|
|
3759
|
-
|
|
3760
|
-
interface ShippingLane {
|
|
3761
|
-
readonly 'id': string;
|
|
3762
|
-
readonly 'shipping_configuration': io.flow.fulfillment.v0.models.ShippingConfigurationReference;
|
|
3763
|
-
readonly 'region': string;
|
|
3764
|
-
readonly 'centers': io.flow.fulfillment.v0.unions.ExpandableCenter[];
|
|
3765
|
-
readonly 'tiers': io.flow.fulfillment.v0.models.Tier[];
|
|
3766
|
-
readonly 'query': io.flow.query.builder.v0.models.Query;
|
|
3767
|
-
readonly 'strategy': io.flow.fulfillment.v0.enums.LaneStrategy;
|
|
3768
|
-
readonly 'direction'?: io.flow.fulfillment.v0.enums.LaneDirection;
|
|
3769
|
-
readonly 'preference'?: io.flow.fulfillment.v0.enums.LanePreselectPreference;
|
|
3770
|
-
}
|
|
3771
|
-
|
|
3772
|
-
interface ShippingLaneDefaultTier {
|
|
3773
|
-
readonly 'id': string;
|
|
3774
|
-
readonly 'tier': io.flow.fulfillment.v0.models.TierReference;
|
|
3775
|
-
}
|
|
3776
|
-
|
|
3777
|
-
interface ShippingLaneDefaultTierForm {
|
|
3778
|
-
readonly 'tier_id': string;
|
|
3779
|
-
}
|
|
3780
|
-
|
|
3781
|
-
interface ShippingLaneForm {
|
|
3782
|
-
readonly 'from': string;
|
|
3783
|
-
readonly 'to': string;
|
|
3784
|
-
readonly 'strategy'?: io.flow.fulfillment.v0.enums.LaneStrategy;
|
|
3785
|
-
readonly 'direction'?: io.flow.fulfillment.v0.enums.LaneDirection;
|
|
3786
|
-
readonly 'preference'?: io.flow.fulfillment.v0.enums.LanePreselectPreference;
|
|
3787
|
-
}
|
|
3788
|
-
|
|
3789
|
-
interface ShippingLaneSummary {
|
|
3790
|
-
readonly 'shipping_lane_id': string;
|
|
3791
|
-
readonly 'region': string;
|
|
3792
|
-
readonly 'centers': io.flow.fulfillment.v0.unions.ExpandableCenter[];
|
|
3793
|
-
}
|
|
3794
|
-
|
|
3795
|
-
interface ShippingLaneVersion {
|
|
3796
|
-
readonly 'id': string;
|
|
3797
|
-
readonly 'timestamp': string;
|
|
3798
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3799
|
-
readonly 'shipping_lane': io.flow.fulfillment.v0.models.ShippingLane;
|
|
3800
|
-
}
|
|
3801
|
-
|
|
3802
|
-
interface SurchargeResponsiblePartyDisplay {
|
|
3803
|
-
readonly 'name': string;
|
|
3804
|
-
readonly 'responsible_party': io.flow.fulfillment.v0.enums.SurchargeResponsibleParty;
|
|
3805
|
-
}
|
|
3806
|
-
|
|
3807
|
-
interface SurchargeSetting {
|
|
3808
|
-
readonly 'key': io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailComponentKey;
|
|
3809
|
-
readonly 'responsible_party': io.flow.fulfillment.v0.enums.SurchargeResponsibleParty;
|
|
3810
|
-
}
|
|
3811
|
-
|
|
3812
|
-
interface SurchargeSettingDisplay {
|
|
3813
|
-
readonly 'name': string;
|
|
3814
|
-
readonly 'description': string;
|
|
3815
|
-
readonly 'key': io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailComponentKey;
|
|
3816
|
-
readonly 'available': io.flow.fulfillment.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
3817
|
-
}
|
|
3818
|
-
|
|
3819
|
-
interface Tier {
|
|
3820
|
-
readonly 'id': string;
|
|
3821
|
-
readonly 'direction': io.flow.fulfillment.v0.enums.LaneDirection;
|
|
3822
|
-
readonly 'integration': io.flow.fulfillment.v0.enums.ShipmentIntegrationType;
|
|
3823
|
-
readonly 'name': string;
|
|
3824
|
-
readonly 'message'?: string;
|
|
3825
|
-
readonly 'rules': io.flow.fulfillment.v0.models.TierRule[];
|
|
3826
|
-
readonly 'services': io.flow.reference.v0.models.CarrierService[];
|
|
3827
|
-
readonly 'strategy': io.flow.fulfillment.v0.enums.TierStrategy;
|
|
3828
|
-
readonly 'visibility': io.flow.common.v0.enums.Visibility;
|
|
3829
|
-
readonly 'currency': string;
|
|
3830
|
-
readonly 'description'?: string;
|
|
3831
|
-
readonly 'display'?: io.flow.fulfillment.v0.models.TierDisplay;
|
|
3832
|
-
readonly 'shipping_lane'?: string;
|
|
3833
|
-
readonly 'surcharge_settings'?: io.flow.fulfillment.v0.models.SurchargeSetting[];
|
|
3834
|
-
readonly 'lane'?: io.flow.fulfillment.v0.models.ShippingLaneSummary;
|
|
3835
|
-
readonly 'settings'?: io.flow.fulfillment.v0.models.TierSettings;
|
|
3836
|
-
}
|
|
3837
|
-
|
|
3838
|
-
interface TierDisplay {
|
|
3839
|
-
readonly 'estimate': io.flow.fulfillment.v0.models.TierEstimate;
|
|
3840
|
-
}
|
|
3841
|
-
|
|
3842
|
-
interface TierDisplayForm {
|
|
3843
|
-
readonly 'estimate'?: io.flow.fulfillment.v0.models.TierEstimate;
|
|
3844
|
-
}
|
|
3845
|
-
|
|
3846
|
-
interface TierEstimate {
|
|
3847
|
-
readonly 'type': io.flow.fulfillment.v0.enums.TierEstimateType;
|
|
3848
|
-
readonly 'label'?: string;
|
|
3849
|
-
}
|
|
3850
|
-
|
|
3851
|
-
interface TierForm {
|
|
3852
|
-
readonly 'currency': string;
|
|
3853
|
-
readonly 'integration': io.flow.fulfillment.v0.enums.ShipmentIntegrationType;
|
|
3854
|
-
readonly 'name': string;
|
|
3855
|
-
readonly 'message'?: string;
|
|
3856
|
-
readonly 'rules': io.flow.fulfillment.v0.models.TierRuleForm[];
|
|
3857
|
-
readonly 'services': string[];
|
|
3858
|
-
readonly 'strategy': io.flow.fulfillment.v0.enums.TierStrategy;
|
|
3859
|
-
readonly 'visibility': io.flow.common.v0.enums.Visibility;
|
|
3860
|
-
readonly 'description'?: string;
|
|
3861
|
-
readonly 'direction'?: io.flow.fulfillment.v0.enums.LaneDirection;
|
|
3862
|
-
readonly 'display'?: io.flow.fulfillment.v0.models.TierDisplayForm;
|
|
3863
|
-
readonly 'shipping_lane': string;
|
|
3864
|
-
readonly 'surcharge_settings'?: io.flow.fulfillment.v0.models.SurchargeSetting[];
|
|
3865
|
-
readonly 'settings'?: io.flow.fulfillment.v0.models.TierSettings;
|
|
3866
|
-
}
|
|
3867
|
-
|
|
3868
|
-
interface TierReference {
|
|
3869
|
-
readonly 'id': string;
|
|
3870
|
-
}
|
|
3871
|
-
|
|
3872
|
-
interface TierRule {
|
|
3873
|
-
readonly 'id': string;
|
|
3874
|
-
readonly 'position': number;
|
|
3875
|
-
readonly 'query': string;
|
|
3876
|
-
readonly 'outcome': io.flow.fulfillment.v0.unions.TierRuleOutcome;
|
|
3877
|
-
}
|
|
3878
|
-
|
|
3879
|
-
interface TierRuleForm {
|
|
3880
|
-
readonly 'position'?: number;
|
|
3881
|
-
readonly 'query': string;
|
|
3882
|
-
readonly 'outcome': io.flow.fulfillment.v0.unions.TierRuleOutcomeForm;
|
|
3883
|
-
}
|
|
3884
|
-
|
|
3885
|
-
interface TierRuleVersion {
|
|
3886
|
-
readonly 'id': string;
|
|
3887
|
-
readonly 'timestamp': string;
|
|
3888
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3889
|
-
readonly 'tier_rule': io.flow.fulfillment.v0.models.TierRule;
|
|
3890
|
-
}
|
|
3891
|
-
|
|
3892
|
-
interface TierSettings {
|
|
3893
|
-
readonly 'availability': io.flow.fulfillment.v0.enums.TierAvailability;
|
|
3894
|
-
}
|
|
3895
|
-
|
|
3896
|
-
interface TierSummary {
|
|
3897
|
-
readonly 'id': string;
|
|
3898
|
-
readonly 'experience'?: io.flow.fulfillment.v0.models.FulfillmentExperienceReference;
|
|
3899
|
-
readonly 'integration': io.flow.fulfillment.v0.enums.ShipmentIntegrationType;
|
|
3900
|
-
readonly 'name': string;
|
|
3901
|
-
readonly 'services': string[];
|
|
3902
|
-
readonly 'strategy': io.flow.fulfillment.v0.enums.TierStrategy;
|
|
3903
|
-
readonly 'visibility': io.flow.common.v0.enums.Visibility;
|
|
3904
|
-
readonly 'currency': string;
|
|
3905
|
-
readonly 'display'?: io.flow.fulfillment.v0.models.TierDisplay;
|
|
3906
|
-
readonly 'message'?: string;
|
|
3907
|
-
readonly 'settings'?: io.flow.fulfillment.v0.models.TierSettings;
|
|
3908
|
-
}
|
|
3909
|
-
|
|
3910
|
-
interface TierVersion {
|
|
3911
|
-
readonly 'id': string;
|
|
3912
|
-
readonly 'timestamp': string;
|
|
3913
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3914
|
-
readonly 'tier': io.flow.fulfillment.v0.models.TierSummary;
|
|
3915
|
-
}
|
|
3916
|
-
|
|
3917
|
-
interface TransitEstimate {
|
|
3918
|
-
readonly 'origin': io.flow.fulfillment.v0.enums.DeliveryWindowLocation;
|
|
3919
|
-
readonly 'destination': io.flow.fulfillment.v0.enums.DeliveryWindowLocation;
|
|
3920
|
-
readonly 'min_date': string;
|
|
3921
|
-
readonly 'max_date': string;
|
|
3922
|
-
readonly 'source': io.flow.fulfillment.v0.enums.DeliveryWindowComponentSource;
|
|
3923
|
-
}
|
|
3924
|
-
}
|
|
3925
|
-
|
|
3926
|
-
declare namespace io.flow.fulfillment.v0.unions {
|
|
3927
|
-
type Delivery = (io.flow.fulfillment.v0.models.DigitalDelivery | io.flow.fulfillment.v0.models.PhysicalDelivery);
|
|
3928
|
-
type ExpandableCenter = (io.flow.fulfillment.v0.models.Center | io.flow.fulfillment.v0.models.CenterReference);
|
|
3929
|
-
type PartnerCenterFee = (io.flow.fulfillment.v0.models.CommercialInvoiceFee | io.flow.fulfillment.v0.models.InboundCartonFee | io.flow.fulfillment.v0.models.OutboundCartonFee);
|
|
3930
|
-
type ServiceDescription = (io.flow.fulfillment.v0.models.ServiceSummary | io.flow.fulfillment.v0.models.ServiceUnknown);
|
|
3931
|
-
type TierRuleOutcome = (io.flow.fulfillment.v0.models.AmountMargin | io.flow.fulfillment.v0.models.AtCost | io.flow.fulfillment.v0.models.FlatRate | io.flow.fulfillment.v0.models.PercentMargin);
|
|
3932
|
-
type TierRuleOutcomeForm = (io.flow.fulfillment.v0.models.AmountMarginForm | io.flow.fulfillment.v0.models.FlatRateForm | io.flow.fulfillment.v0.models.AtCost | io.flow.fulfillment.v0.models.PercentMargin);
|
|
3933
|
-
}
|
|
3934
|
-
|
|
3935
|
-
declare namespace io.flow.apple.pay.v0.enums {
|
|
3936
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
3937
|
-
type ApplePayLineItemType = 'final' | 'pending';
|
|
3938
|
-
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
3939
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
|
|
3940
|
-
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
3941
|
-
}
|
|
3942
|
-
|
|
3943
|
-
declare namespace io.flow.apple.pay.v0.models {
|
|
3944
|
-
interface ApplePayLineItem {
|
|
3945
|
-
readonly 'label': string;
|
|
3946
|
-
readonly 'type': io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
3947
|
-
readonly 'amount': string;
|
|
3948
|
-
}
|
|
3949
|
-
|
|
3950
|
-
interface ApplePayPaymentContact {
|
|
3951
|
-
readonly 'email_address'?: string;
|
|
3952
|
-
readonly 'family_name'?: string;
|
|
3953
|
-
readonly 'given_name'?: string;
|
|
3954
|
-
readonly 'phone_number'?: string;
|
|
3955
|
-
readonly 'phonetic_familyName'?: string;
|
|
3956
|
-
readonly 'phonetic_givenName'?: string;
|
|
3957
|
-
readonly 'address_lines'?: string[];
|
|
3958
|
-
readonly 'locality'?: string;
|
|
3959
|
-
readonly 'sub_locality'?: string;
|
|
3960
|
-
readonly 'administrative_area'?: string;
|
|
3961
|
-
readonly 'sub_administrative_area'?: string;
|
|
3962
|
-
readonly 'postal_code'?: string;
|
|
3963
|
-
readonly 'country'?: string;
|
|
3964
|
-
readonly 'country_code'?: string;
|
|
3965
|
-
}
|
|
3966
|
-
|
|
3967
|
-
interface ApplePayPaymentData {
|
|
3968
|
-
readonly 'applicationPrimaryAccountNumber': string;
|
|
3969
|
-
readonly 'applicationExpirationDate': string;
|
|
3970
|
-
readonly 'currencyCode': string;
|
|
3971
|
-
readonly 'transactionAmount': number;
|
|
3972
|
-
readonly 'cardholderName'?: string;
|
|
3973
|
-
readonly 'deviceManufacturerIdentifier': string;
|
|
3974
|
-
readonly 'paymentDataType': string;
|
|
3975
|
-
readonly 'paymentData': any/*object*/;
|
|
3976
|
-
}
|
|
3977
|
-
|
|
3978
|
-
interface ApplePayPaymentInfo {
|
|
3979
|
-
readonly 'total': io.flow.apple.pay.v0.models.ApplePayLineItem;
|
|
3980
|
-
readonly 'line_items'?: io.flow.apple.pay.v0.models.ApplePayLineItem[];
|
|
3981
|
-
readonly 'country_code': string;
|
|
3982
|
-
readonly 'currency_code': string;
|
|
3983
|
-
readonly 'merchant_capabilities': io.flow.apple.pay.v0.enums.ApplePayMerchantCapability[];
|
|
3984
|
-
readonly 'shipping_methods'?: io.flow.apple.pay.v0.models.ApplePayShippingMethod[];
|
|
3985
|
-
readonly 'shipping_type'?: io.flow.apple.pay.v0.enums.ApplePayShippingType;
|
|
3986
|
-
readonly 'supported_countries'?: string[];
|
|
3987
|
-
readonly 'supported_networks': io.flow.apple.pay.v0.enums.ApplePaySupportedNetworks[];
|
|
3988
|
-
readonly 'required_billingContactFields'?: io.flow.apple.pay.v0.enums.ApplePayContactField[];
|
|
3989
|
-
readonly 'required_shippingContactFields'?: io.flow.apple.pay.v0.enums.ApplePayContactField[];
|
|
3990
|
-
readonly 'billing_contact'?: io.flow.apple.pay.v0.models.ApplePayPaymentContact;
|
|
3991
|
-
readonly 'shipping_contact'?: io.flow.apple.pay.v0.models.ApplePayPaymentContact;
|
|
3992
|
-
readonly 'application_data'?: string;
|
|
3993
|
-
}
|
|
3994
|
-
|
|
3995
|
-
interface ApplePayShippingMethod {
|
|
3996
|
-
readonly 'label': string;
|
|
3997
|
-
readonly 'detail': string;
|
|
3998
|
-
readonly 'amount': string;
|
|
3999
|
-
readonly 'identifier': string;
|
|
4000
|
-
}
|
|
4001
|
-
}
|
|
4002
|
-
|
|
4003
|
-
declare namespace io.flow.merchant.of.record.v0.enums {
|
|
4004
|
-
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
4005
|
-
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
|
|
4006
|
-
}
|
|
4007
|
-
|
|
4008
|
-
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
4009
|
-
type AldoItemType = 'physical' | 'digital';
|
|
4010
|
-
type AnshItemType = 'physical' | 'digital';
|
|
4011
|
-
type NiallItemType = 'physical' | 'digital';
|
|
4012
|
-
type PrateekItemType = 'physical' | 'digital';
|
|
4013
|
-
type RohanItemType = 'physical' | 'digital';
|
|
4014
|
-
}
|
|
4015
|
-
|
|
4016
|
-
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
4017
|
-
interface AldoItem {
|
|
4018
|
-
readonly 'id': string;
|
|
4019
|
-
readonly 'number': string;
|
|
4020
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4021
|
-
readonly 'description'?: string;
|
|
4022
|
-
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
4023
|
-
readonly 'added_on': string;
|
|
4024
|
-
}
|
|
4025
|
-
|
|
4026
|
-
interface AldoItemForm {
|
|
4027
|
-
readonly 'number': string;
|
|
4028
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4029
|
-
readonly 'description'?: string;
|
|
4030
|
-
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
4031
|
-
readonly 'added_on': string;
|
|
4032
|
-
}
|
|
4033
|
-
|
|
4034
|
-
interface AnshItem {
|
|
4035
|
-
readonly 'id': string;
|
|
4036
|
-
readonly 'number': string;
|
|
4037
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4038
|
-
readonly 'description'?: string;
|
|
4039
|
-
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
4040
|
-
readonly 'added_on': string;
|
|
4041
|
-
}
|
|
4042
|
-
|
|
4043
|
-
interface AnshItemForm {
|
|
4044
|
-
readonly 'number': string;
|
|
4045
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4046
|
-
readonly 'description'?: string;
|
|
4047
|
-
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
4048
|
-
readonly 'added_on': string;
|
|
4049
|
-
}
|
|
4050
|
-
|
|
4051
|
-
interface JeanDemoItem {
|
|
4052
|
-
readonly 'id': string;
|
|
4053
|
-
readonly 'name': string;
|
|
4054
|
-
}
|
|
4055
|
-
|
|
4056
|
-
interface NiallItem {
|
|
4057
|
-
readonly 'id': string;
|
|
4058
|
-
readonly 'number': string;
|
|
4059
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4060
|
-
readonly 'description'?: string;
|
|
4061
|
-
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
|
|
4062
|
-
readonly 'added_on': string;
|
|
4063
|
-
}
|
|
4064
|
-
|
|
4065
|
-
interface NiallItemForm {
|
|
4066
|
-
readonly 'number': string;
|
|
4067
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4068
|
-
readonly 'description'?: string;
|
|
4069
|
-
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
|
|
4070
|
-
readonly 'added_on': string;
|
|
4071
|
-
}
|
|
4072
|
-
|
|
4073
|
-
interface PrateekItem {
|
|
4074
|
-
readonly 'id': string;
|
|
4075
|
-
readonly 'number': string;
|
|
4076
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4077
|
-
readonly 'description'?: string;
|
|
4078
|
-
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
|
|
4079
|
-
readonly 'added_on': string;
|
|
4080
|
-
}
|
|
4081
|
-
|
|
4082
|
-
interface PrateekItemForm {
|
|
4083
|
-
readonly 'number': string;
|
|
4084
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4085
|
-
readonly 'description'?: string;
|
|
4086
|
-
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
|
|
4087
|
-
readonly 'added_on': string;
|
|
4088
|
-
}
|
|
4089
|
-
|
|
4090
|
-
interface RohanItem {
|
|
4091
|
-
readonly 'id': string;
|
|
4092
|
-
readonly 'number': string;
|
|
4093
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4094
|
-
readonly 'description'?: string;
|
|
4095
|
-
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
|
|
4096
|
-
readonly 'added_on': string;
|
|
4097
|
-
}
|
|
4098
|
-
|
|
4099
|
-
interface RohanItemForm {
|
|
4100
|
-
readonly 'number': string;
|
|
4101
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4102
|
-
readonly 'description'?: string;
|
|
4103
|
-
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
|
|
4104
|
-
readonly 'added_on': string;
|
|
4105
|
-
}
|
|
4106
|
-
|
|
4107
|
-
interface TechOnboardingDescription {
|
|
4108
|
-
readonly 'description': string;
|
|
4109
|
-
}
|
|
4110
|
-
}
|
|
4111
|
-
|
|
4112
|
-
declare namespace io.flow.organization.v0.enums {
|
|
4113
|
-
type CountryPickerSource = 'experience' | 'destination';
|
|
4114
|
-
type EcommercePlatformType = 'commercetools' | 'custom' | 'hybris' | 'magento' | 'shopify' | 'shopify_markets' | 'sfcc' | 'solidus' | 'workarea';
|
|
4115
|
-
type InvitationErrorCode = 'expired' | 'invalid_email';
|
|
4116
|
-
}
|
|
4117
|
-
|
|
4118
|
-
declare namespace io.flow.organization.v0.models {
|
|
4119
|
-
interface CountryPicker {
|
|
4120
|
-
readonly 'id': string;
|
|
4121
|
-
readonly 'source': io.flow.organization.v0.enums.CountryPickerSource;
|
|
4122
|
-
}
|
|
4123
|
-
|
|
4124
|
-
interface CountryPickerForm {
|
|
4125
|
-
readonly 'source': io.flow.organization.v0.enums.CountryPickerSource;
|
|
4126
|
-
}
|
|
4127
|
-
|
|
4128
|
-
interface EcommercePlatform {
|
|
4129
|
-
readonly 'id': string;
|
|
4130
|
-
readonly 'type': io.flow.organization.v0.enums.EcommercePlatformType;
|
|
4131
|
-
readonly 'version'?: string;
|
|
4132
|
-
}
|
|
4133
|
-
|
|
4134
|
-
interface EcommercePlatformForm {
|
|
4135
|
-
readonly 'type': io.flow.organization.v0.enums.EcommercePlatformType;
|
|
4136
|
-
readonly 'version'?: string;
|
|
4137
|
-
}
|
|
4138
|
-
|
|
4139
|
-
interface Invitation {
|
|
4140
|
-
readonly 'id': string;
|
|
4141
|
-
readonly 'organization': io.flow.common.v0.unions.ExpandableOrganization;
|
|
4142
|
-
readonly 'email': string;
|
|
4143
|
-
readonly 'name': io.flow.common.v0.models.Name;
|
|
4144
|
-
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4145
|
-
readonly 'roles'?: io.flow.permission.v0.enums.FlowRole[];
|
|
4146
|
-
readonly 'expiration': string;
|
|
4147
|
-
}
|
|
4148
|
-
|
|
4149
|
-
interface InvitationError {
|
|
4150
|
-
readonly 'code': io.flow.organization.v0.enums.InvitationErrorCode;
|
|
4151
|
-
readonly 'messages': string[];
|
|
4152
|
-
}
|
|
4153
|
-
|
|
4154
|
-
interface InvitationForm {
|
|
4155
|
-
readonly 'organization': string;
|
|
4156
|
-
readonly 'email': string;
|
|
4157
|
-
readonly 'name'?: io.flow.common.v0.models.Name;
|
|
4158
|
-
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4159
|
-
readonly 'roles'?: io.flow.permission.v0.enums.FlowRole[];
|
|
4160
|
-
}
|
|
4161
|
-
|
|
4162
|
-
interface InvitationVersion {
|
|
4163
|
-
readonly 'id': string;
|
|
4164
|
-
readonly 'timestamp': string;
|
|
4165
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4166
|
-
readonly 'invitation': io.flow.organization.v0.models.Invitation;
|
|
4167
|
-
}
|
|
4168
|
-
|
|
4169
|
-
interface Membership {
|
|
4170
|
-
readonly 'id': string;
|
|
4171
|
-
readonly 'organization': io.flow.common.v0.unions.ExpandableOrganization;
|
|
4172
|
-
readonly 'user': io.flow.common.v0.unions.ExpandableUser;
|
|
4173
|
-
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4174
|
-
readonly 'roles': io.flow.permission.v0.enums.FlowRole[];
|
|
4175
|
-
}
|
|
4176
|
-
|
|
4177
|
-
interface MembershipForm {
|
|
4178
|
-
readonly 'organization': string;
|
|
4179
|
-
readonly 'user': string;
|
|
4180
|
-
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4181
|
-
readonly 'roles'?: io.flow.permission.v0.enums.FlowRole[];
|
|
4182
|
-
}
|
|
4183
|
-
|
|
4184
|
-
interface MembershipPutForm {
|
|
4185
|
-
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4186
|
-
readonly 'roles'?: io.flow.permission.v0.enums.FlowRole[];
|
|
4187
|
-
}
|
|
4188
|
-
|
|
4189
|
-
interface MembershipVersion {
|
|
4190
|
-
readonly 'id': string;
|
|
4191
|
-
readonly 'timestamp': string;
|
|
4192
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4193
|
-
readonly 'membership': io.flow.organization.v0.models.Membership;
|
|
4194
|
-
}
|
|
4195
|
-
|
|
4196
|
-
interface OrganizationAuthorization {
|
|
4197
|
-
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4198
|
-
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
4199
|
-
}
|
|
4200
|
-
|
|
4201
|
-
interface OrganizationAuthorizationForm {
|
|
4202
|
-
readonly 'organization': string;
|
|
4203
|
-
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
4204
|
-
}
|
|
4205
|
-
|
|
4206
|
-
interface OrganizationConfigurationReference {
|
|
4207
|
-
readonly 'id': string;
|
|
4208
|
-
}
|
|
4209
|
-
|
|
4210
|
-
interface OrganizationDefaultConfigurations {
|
|
4211
|
-
readonly 'id': string;
|
|
4212
|
-
readonly 'checkout_configuration': io.flow.organization.v0.models.OrganizationConfigurationReference;
|
|
4213
|
-
}
|
|
4214
|
-
|
|
4215
|
-
interface OrganizationDefaultConfigurationsForm {
|
|
4216
|
-
readonly 'id': string;
|
|
4217
|
-
}
|
|
4218
|
-
|
|
4219
|
-
interface OrganizationForm {
|
|
4220
|
-
readonly 'id'?: string;
|
|
4221
|
-
readonly 'name'?: string;
|
|
4222
|
-
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
4223
|
-
readonly 'parent_id'?: string;
|
|
4224
|
-
readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
|
|
4225
|
-
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
4226
|
-
readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
|
|
4227
|
-
}
|
|
4228
|
-
|
|
4229
|
-
interface OrganizationPutForm {
|
|
4230
|
-
readonly 'name'?: string;
|
|
4231
|
-
readonly 'environment'?: io.flow.common.v0.enums.Environment;
|
|
4232
|
-
readonly 'parent_id'?: string;
|
|
4233
|
-
readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
|
|
4234
|
-
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
4235
|
-
}
|
|
4236
|
-
|
|
4237
|
-
interface OrganizationVersion {
|
|
4238
|
-
readonly 'id': string;
|
|
4239
|
-
readonly 'timestamp': string;
|
|
4240
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4241
|
-
readonly 'organization': io.flow.common.v0.models.Organization;
|
|
4242
|
-
}
|
|
4243
|
-
|
|
4244
|
-
interface RegionSetting {
|
|
4245
|
-
readonly 'id': string;
|
|
4246
|
-
readonly 'region': string;
|
|
4247
|
-
readonly 'status': io.flow.common.v0.enums.AvailabilityStatus;
|
|
4248
|
-
}
|
|
4249
|
-
|
|
4250
|
-
interface RegionSettingForm {
|
|
4251
|
-
readonly 'status': io.flow.common.v0.enums.AvailabilityStatus;
|
|
4252
|
-
}
|
|
4253
|
-
}
|
|
4254
|
-
|
|
4255
|
-
declare namespace io.flow.order.price.v0.enums {
|
|
4256
|
-
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
4257
|
-
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
4258
|
-
}
|
|
4259
|
-
|
|
4260
|
-
declare namespace io.flow.order.price.v0.models {
|
|
4261
|
-
interface OrderPriceDetail {
|
|
4262
|
-
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
4263
|
-
readonly 'currency': string;
|
|
4264
|
-
readonly 'amount': number;
|
|
4265
|
-
readonly 'label': string;
|
|
4266
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
4267
|
-
readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
4268
|
-
readonly 'name'?: string;
|
|
4269
|
-
readonly 'rate'?: number;
|
|
4270
|
-
readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
|
|
4271
|
-
readonly 'rate_label'?: string;
|
|
4272
|
-
}
|
|
4273
|
-
|
|
4274
|
-
interface OrderPriceDetailComponent {
|
|
4275
|
-
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
4276
|
-
readonly 'currency': string;
|
|
4277
|
-
readonly 'amount': number;
|
|
4278
|
-
readonly 'label': string;
|
|
4279
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
4280
|
-
readonly 'name'?: string;
|
|
4281
|
-
}
|
|
4282
|
-
}
|
|
4283
|
-
|
|
4284
|
-
declare namespace io.flow.channel.internal.v0.enums {
|
|
4285
|
-
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
4286
|
-
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
4287
|
-
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
4288
|
-
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_missing';
|
|
4289
|
-
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
4290
|
-
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
4291
|
-
}
|
|
4292
|
-
|
|
4293
|
-
declare namespace io.flow.channel.internal.v0.models {
|
|
4294
|
-
interface ChannelCurrencyForm {
|
|
4295
|
-
readonly 'currency': string;
|
|
4296
|
-
readonly 'channel_id': string;
|
|
4297
|
-
readonly 'capabilities': io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
4298
|
-
}
|
|
4299
|
-
|
|
4300
|
-
interface ChannelForm {
|
|
4301
|
-
readonly 'name': string;
|
|
4302
|
-
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
4303
|
-
readonly 'organization_id_prefix'?: string;
|
|
4304
|
-
}
|
|
4305
|
-
|
|
4306
|
-
interface ChannelMembership {
|
|
4307
|
-
readonly 'id': string;
|
|
4308
|
-
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
4309
|
-
readonly 'user': io.flow.common.v0.unions.ExpandableUser;
|
|
4310
|
-
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4311
|
-
}
|
|
4312
|
-
|
|
4313
|
-
interface ChannelMembershipForm {
|
|
4314
|
-
readonly 'channel_id': string;
|
|
4315
|
-
readonly 'user_id': string;
|
|
4316
|
-
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4317
|
-
}
|
|
4318
|
-
|
|
4319
|
-
interface ChannelMembershipPutForm {
|
|
4320
|
-
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
4321
|
-
}
|
|
4322
|
-
|
|
4323
|
-
interface ChannelOrderAcceptance {
|
|
4324
|
-
readonly 'id': string;
|
|
4325
|
-
readonly 'organization_id': string;
|
|
4326
|
-
readonly 'order_number': string;
|
|
4327
|
-
readonly 'channel_id': string;
|
|
4328
|
-
readonly 'external_order_reference': string;
|
|
4329
|
-
readonly 'payment_request_id'?: string;
|
|
4330
|
-
readonly 'order_edit_payment_request_ids'?: string[];
|
|
4331
|
-
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
4332
|
-
readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
4333
|
-
readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
4334
|
-
readonly 'order_created_at'?: string;
|
|
4335
|
-
readonly 'order_updated_at'?: string;
|
|
4336
|
-
readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
4337
|
-
readonly 'payment_source'?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
4338
|
-
}
|
|
4339
|
-
|
|
4340
|
-
interface ChannelOrderAcceptanceDetails {
|
|
4341
|
-
readonly 'order_acceptance': io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
4342
|
-
readonly 'external_order': any/*object*/;
|
|
4343
|
-
}
|
|
4344
|
-
|
|
4345
|
-
interface ChannelOrderAcceptanceFailure {
|
|
4346
|
-
readonly 'id': string;
|
|
4347
|
-
readonly 'organization_id': string;
|
|
4348
|
-
readonly 'channel_id': string;
|
|
4349
|
-
readonly 'payment_request_id': string;
|
|
4350
|
-
readonly 'code': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
4351
|
-
readonly 'reason': string;
|
|
4352
|
-
}
|
|
4353
|
-
|
|
4354
|
-
interface ChannelOrderAcceptanceForm {
|
|
4355
|
-
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
4356
|
-
}
|
|
4357
|
-
|
|
4358
|
-
interface ChannelOrderAcceptanceReason {
|
|
4359
|
-
readonly 'description': string;
|
|
4360
|
-
readonly 'rejection_reason'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
4361
|
-
}
|
|
4362
|
-
|
|
4363
|
-
interface FlowChannelOrganization {
|
|
4364
|
-
readonly 'placeholder'?: string;
|
|
4365
|
-
}
|
|
4366
|
-
|
|
4367
|
-
interface OrderEditSummary {
|
|
4368
|
-
readonly 'edited_at': string;
|
|
4369
|
-
}
|
|
4370
|
-
}
|
|
4371
|
-
|
|
4372
|
-
declare namespace io.flow.product.v0.models {
|
|
4373
|
-
interface Product {
|
|
4374
|
-
readonly 'organization_id': string;
|
|
4375
|
-
readonly 'number': string;
|
|
4376
|
-
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
4377
|
-
readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
4378
|
-
readonly 'item_numbers': string[];
|
|
4379
|
-
readonly 'updated_at': string;
|
|
4380
|
-
readonly 'deleted_at'?: string;
|
|
4381
|
-
}
|
|
4382
|
-
|
|
4383
|
-
interface ProductTaxonomyCategory {
|
|
4384
|
-
readonly 'name': string;
|
|
4385
|
-
readonly 'full_name': string;
|
|
4386
|
-
}
|
|
4387
|
-
|
|
4388
|
-
interface ProductTaxonomyData {
|
|
4389
|
-
readonly 'key': string;
|
|
4390
|
-
readonly 'value': string[];
|
|
4391
|
-
}
|
|
4392
|
-
}
|
|
4393
|
-
|
|
4394
|
-
declare namespace io.flow.ben.test.internal.v0.models {
|
|
4395
|
-
interface GenerateLoadMultipleOrgs {
|
|
4396
|
-
readonly 'discriminator': 'generate_load_multiple_orgs';
|
|
4397
|
-
readonly 'organization_ids': string[];
|
|
4398
|
-
readonly 'num_events': number;
|
|
4399
|
-
}
|
|
4400
|
-
|
|
4401
|
-
interface GenerateLoadSingleOrg {
|
|
4402
|
-
readonly 'discriminator': 'generate_load_single_org';
|
|
4403
|
-
readonly 'organization_id': string;
|
|
4404
|
-
readonly 'num_events': number;
|
|
4405
|
-
}
|
|
4406
|
-
|
|
4407
|
-
interface Test {
|
|
4408
|
-
readonly 'id': string;
|
|
4409
|
-
readonly 'name': string;
|
|
4410
|
-
}
|
|
4411
|
-
|
|
4412
|
-
interface TestForm {
|
|
4413
|
-
readonly 'name': string;
|
|
4414
|
-
}
|
|
4415
|
-
}
|
|
4416
|
-
|
|
4417
|
-
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
4418
|
-
type GenerateLoad = (io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs);
|
|
4419
|
-
}
|
|
4420
|
-
|
|
4421
|
-
declare namespace io.flow.catalog.v0.enums {
|
|
4422
|
-
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
4423
|
-
type AttributeIntent = 'brand' | 'color' | 'countries_of_origin' | 'product_id' | 'fulfillment_method' | 'hazardous' | 'price' | 'size' | 'sku' | 'taxability' | 'consumer_url' | 'gtin' | 'mpn' | 'facet' | 'eccn' | 'returnable' | 'searchable' | 'barcode' | 'min_days_to_ship' | 'max_days_to_ship' | 'commercial_invoice_item_number' | 'include_in_product_feeds';
|
|
4424
|
-
type FulfillmentMethodType = 'fulfillment_method';
|
|
4425
|
-
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
4426
|
-
type ImageTag = 'thumbnail' | 'checkout';
|
|
4427
|
-
type ReturnItemStatus = 'returnable' | 'non-returnable';
|
|
4428
|
-
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
4429
|
-
type TaxabilityType = 'tax_rule';
|
|
4430
|
-
type TaxabilityValue = 'exempt';
|
|
4431
|
-
type UpdatePolicy = 'auto' | 'queue' | 'discard';
|
|
4432
|
-
}
|
|
4433
|
-
|
|
4434
|
-
declare namespace io.flow.catalog.v0.models {
|
|
4435
|
-
interface AdjustmentReason {
|
|
4436
|
-
readonly 'key': io.flow.catalog.v0.enums.AdjustmentReasonKey;
|
|
4437
|
-
readonly 'label': string;
|
|
4438
|
-
}
|
|
4439
|
-
|
|
4440
|
-
interface Attribute {
|
|
4441
|
-
readonly 'id': string;
|
|
4442
|
-
readonly 'key': string;
|
|
4443
|
-
readonly 'options': io.flow.catalog.v0.models.Options;
|
|
4444
|
-
readonly 'label'?: string;
|
|
4445
|
-
readonly 'intent'?: io.flow.catalog.v0.enums.AttributeIntent;
|
|
4446
|
-
readonly 'type'?: io.flow.common.v0.enums.AttributeDataType;
|
|
4447
|
-
readonly 'position'?: number;
|
|
4448
|
-
}
|
|
4449
|
-
|
|
4450
|
-
interface AttributeForm {
|
|
4451
|
-
readonly 'key': string;
|
|
4452
|
-
readonly 'options': io.flow.catalog.v0.models.Options;
|
|
4453
|
-
readonly 'label'?: string;
|
|
4454
|
-
readonly 'intent'?: io.flow.catalog.v0.enums.AttributeIntent;
|
|
4455
|
-
readonly 'type'?: io.flow.common.v0.enums.AttributeDataType;
|
|
4456
|
-
readonly 'position'?: number;
|
|
4457
|
-
}
|
|
4458
|
-
|
|
4459
|
-
interface AttributeVersion {
|
|
4460
|
-
readonly 'id': string;
|
|
4461
|
-
readonly 'timestamp': string;
|
|
4462
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4463
|
-
readonly 'attribute': io.flow.catalog.v0.models.Attribute;
|
|
4464
|
-
}
|
|
4465
|
-
|
|
4466
|
-
interface Catalog {
|
|
4467
|
-
readonly 'id': string;
|
|
4468
|
-
}
|
|
4469
|
-
|
|
4470
|
-
interface CatalogReference {
|
|
4471
|
-
readonly 'id': string;
|
|
4472
|
-
}
|
|
4473
|
-
|
|
4474
|
-
interface CatalogStatistics {
|
|
4475
|
-
readonly 'id': string;
|
|
4476
|
-
readonly 'items': number;
|
|
4477
|
-
readonly 'categories': number;
|
|
4478
|
-
}
|
|
4479
|
-
|
|
4480
|
-
interface CatalogVersion {
|
|
4481
|
-
readonly 'id': string;
|
|
4482
|
-
readonly 'timestamp': string;
|
|
4483
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4484
|
-
readonly 'catalog': io.flow.catalog.v0.models.Catalog;
|
|
4485
|
-
}
|
|
4486
|
-
|
|
4487
|
-
interface FlowItemIndexMetadata {
|
|
4488
|
-
readonly 'status': io.flow.catalog.v0.enums.SubcatalogItemStatus;
|
|
4489
|
-
}
|
|
4490
|
-
|
|
4491
|
-
interface Image {
|
|
4492
|
-
readonly 'url': string;
|
|
4493
|
-
readonly 'tags': io.flow.catalog.v0.enums.ImageTag[];
|
|
4494
|
-
readonly 'attributes'?: Record<string, string>;
|
|
4495
|
-
}
|
|
4496
|
-
|
|
4497
|
-
interface ImageForm {
|
|
4498
|
-
readonly 'url': string;
|
|
4499
|
-
readonly 'tags'?: io.flow.catalog.v0.enums.ImageTag[];
|
|
4500
|
-
readonly 'attributes'?: Record<string, string>;
|
|
4501
|
-
}
|
|
4502
|
-
|
|
4503
|
-
interface Item {
|
|
4504
|
-
readonly 'id': string;
|
|
4505
|
-
readonly 'number': string;
|
|
4506
|
-
readonly 'locale': string;
|
|
4507
|
-
readonly 'name': string;
|
|
4508
|
-
readonly 'price': io.flow.common.v0.models.Price;
|
|
4509
|
-
readonly 'categories': string[];
|
|
4510
|
-
readonly 'description'?: string;
|
|
4511
|
-
readonly 'attributes': Record<string, string>;
|
|
4512
|
-
readonly 'dimensions': io.flow.common.v0.models.Dimensions;
|
|
4513
|
-
readonly 'images': io.flow.catalog.v0.models.Image[];
|
|
4514
|
-
readonly 'local'?: io.flow.catalog.v0.models.Local;
|
|
4515
|
-
readonly 'created_at'?: string;
|
|
4516
|
-
readonly 'updated_at'?: string;
|
|
4517
|
-
readonly 'deleted_at'?: string;
|
|
4518
|
-
}
|
|
4519
|
-
|
|
4520
|
-
interface ItemAttributesPatchForm {
|
|
4521
|
-
readonly 'attributes': Record<string, string>;
|
|
4522
|
-
}
|
|
4523
|
-
|
|
4524
|
-
interface ItemForm {
|
|
4525
|
-
readonly 'number': string;
|
|
4526
|
-
readonly 'locale': string;
|
|
4527
|
-
readonly 'name': string;
|
|
4528
|
-
readonly 'currency': string;
|
|
4529
|
-
readonly 'price': number;
|
|
4530
|
-
readonly 'categories'?: string[];
|
|
4531
|
-
readonly 'description'?: string;
|
|
4532
|
-
readonly 'attributes'?: Record<string, string>;
|
|
4533
|
-
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
4534
|
-
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
4535
|
-
readonly 'deleted_at'?: string;
|
|
4536
|
-
}
|
|
4537
|
-
|
|
4538
|
-
interface ItemFormOverlay {
|
|
4539
|
-
readonly 'id': string;
|
|
4540
|
-
readonly 'number': string;
|
|
4541
|
-
readonly 'key': string;
|
|
4542
|
-
readonly 'position': number;
|
|
4543
|
-
readonly 'price'?: io.flow.common.v0.models.Price;
|
|
4544
|
-
readonly 'categories'?: string[];
|
|
4545
|
-
readonly 'description'?: string;
|
|
4546
|
-
readonly 'attributes'?: Record<string, string>;
|
|
4547
|
-
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
4548
|
-
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
4549
|
-
readonly 'deleted_at'?: string;
|
|
4550
|
-
}
|
|
4551
|
-
|
|
4552
|
-
interface ItemFormOverlayForm {
|
|
4553
|
-
readonly 'number': string;
|
|
4554
|
-
readonly 'price'?: number;
|
|
4555
|
-
readonly 'currency'?: string;
|
|
4556
|
-
readonly 'position'?: number;
|
|
4557
|
-
readonly 'categories'?: string[];
|
|
4558
|
-
readonly 'description'?: string;
|
|
4559
|
-
readonly 'attributes'?: Record<string, string>;
|
|
4560
|
-
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
4561
|
-
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
4562
|
-
readonly 'deleted_at'?: string;
|
|
4563
|
-
}
|
|
4564
|
-
|
|
4565
|
-
interface ItemPriceUpdateForm {
|
|
4566
|
-
readonly 'number': string;
|
|
4567
|
-
readonly 'currency'?: string;
|
|
4568
|
-
readonly 'price': number;
|
|
4569
|
-
readonly 'attributes': Record<string, string>;
|
|
4570
|
-
}
|
|
4571
|
-
|
|
4572
|
-
interface ItemPriceUpdatePutForm {
|
|
4573
|
-
readonly 'currency'?: string;
|
|
4574
|
-
readonly 'price': number;
|
|
4575
|
-
readonly 'attributes': Record<string, string>;
|
|
4576
|
-
}
|
|
4577
|
-
|
|
4578
|
-
interface ItemStatistics {
|
|
4579
|
-
readonly 'items': number;
|
|
4580
|
-
readonly 'categories': number;
|
|
4581
|
-
}
|
|
4582
|
-
|
|
4583
|
-
interface ItemVersion {
|
|
4584
|
-
readonly 'id': string;
|
|
4585
|
-
readonly 'timestamp': string;
|
|
4586
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4587
|
-
readonly 'item': io.flow.catalog.v0.models.Item;
|
|
4588
|
-
}
|
|
4589
|
-
|
|
4590
|
-
interface Local {
|
|
4591
|
-
readonly 'experience': io.flow.common.v0.models.ExperienceSummary;
|
|
4592
|
-
readonly 'prices': io.flow.catalog.v0.unions.LocalizedPrice[];
|
|
4593
|
-
readonly 'rates': io.flow.currency.v0.models.Rate[];
|
|
4594
|
-
readonly 'spot_rates': any/*object*/[];
|
|
4595
|
-
readonly 'status': io.flow.catalog.v0.enums.SubcatalogItemStatus;
|
|
4596
|
-
readonly 'attributes'?: Record<string, string>;
|
|
4597
|
-
readonly 'price_attributes'?: Record<string, io.flow.common.v0.models.PriceWithBase>;
|
|
4598
|
-
}
|
|
4599
|
-
|
|
4600
|
-
interface LocalizedAdjustment {
|
|
4601
|
-
readonly 'currency': string;
|
|
4602
|
-
readonly 'amount': number;
|
|
4603
|
-
readonly 'label': string;
|
|
4604
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
4605
|
-
readonly 'reason': io.flow.catalog.v0.models.AdjustmentReason;
|
|
4606
|
-
}
|
|
4607
|
-
|
|
4608
|
-
interface LocalizedItemDuty {
|
|
4609
|
-
readonly 'key': 'localized_item_duty';
|
|
4610
|
-
readonly 'currency': string;
|
|
4611
|
-
readonly 'amount': number;
|
|
4612
|
-
readonly 'label': string;
|
|
4613
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
4614
|
-
readonly 'adjustment'?: io.flow.catalog.v0.models.LocalizedAdjustment;
|
|
4615
|
-
readonly 'basis'?: io.flow.common.v0.models.MoneyWithBase;
|
|
4616
|
-
}
|
|
4617
|
-
|
|
4618
|
-
interface LocalizedItemPrice {
|
|
4619
|
-
readonly 'key': 'localized_item_price';
|
|
4620
|
-
readonly 'currency': string;
|
|
4621
|
-
readonly 'amount': number;
|
|
4622
|
-
readonly 'label': string;
|
|
4623
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
4624
|
-
readonly 'includes'?: io.flow.common.v0.models.IncludedLevies;
|
|
4625
|
-
}
|
|
4626
|
-
|
|
4627
|
-
interface LocalizedItemVat {
|
|
4628
|
-
readonly 'key': 'localized_item_vat';
|
|
4629
|
-
readonly 'currency': string;
|
|
4630
|
-
readonly 'amount': number;
|
|
4631
|
-
readonly 'label': string;
|
|
4632
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
4633
|
-
readonly 'name': string;
|
|
4634
|
-
readonly 'adjustment'?: io.flow.catalog.v0.models.LocalizedAdjustment;
|
|
4635
|
-
readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
|
|
4636
|
-
readonly 'basis'?: io.flow.common.v0.models.MoneyWithBase;
|
|
4637
|
-
}
|
|
4638
|
-
|
|
4639
|
-
interface LocalizedTotal {
|
|
4640
|
-
readonly 'key': 'localized_total';
|
|
4641
|
-
readonly 'currency': string;
|
|
4642
|
-
readonly 'amount': number;
|
|
4643
|
-
readonly 'label': string;
|
|
4644
|
-
readonly 'base': io.flow.common.v0.models.Price;
|
|
4645
|
-
}
|
|
4646
|
-
|
|
4647
|
-
interface Options {
|
|
4648
|
-
readonly 'required': boolean;
|
|
4649
|
-
readonly 'show_in_catalog': boolean;
|
|
4650
|
-
readonly 'show_in_harmonization': boolean;
|
|
4651
|
-
}
|
|
4652
|
-
|
|
4653
|
-
interface Subcatalog {
|
|
4654
|
-
readonly 'discriminator': 'subcatalog';
|
|
4655
|
-
readonly 'id': string;
|
|
4656
|
-
readonly 'catalog': io.flow.catalog.v0.models.Catalog;
|
|
4657
|
-
readonly 'settings': io.flow.catalog.v0.models.SubcatalogSettings;
|
|
4658
|
-
}
|
|
4659
|
-
|
|
4660
|
-
interface SubcatalogForm {
|
|
4661
|
-
readonly 'settings'?: io.flow.catalog.v0.models.SubcatalogSettingsForm;
|
|
4662
|
-
}
|
|
4663
|
-
|
|
4664
|
-
interface SubcatalogItem {
|
|
4665
|
-
readonly 'id': string;
|
|
4666
|
-
readonly 'item': io.flow.catalog.v0.models.Item;
|
|
4667
|
-
readonly 'status': io.flow.catalog.v0.enums.SubcatalogItemStatus;
|
|
4668
|
-
}
|
|
4669
|
-
|
|
4670
|
-
interface SubcatalogItemVersion {
|
|
4671
|
-
readonly 'id': string;
|
|
4672
|
-
readonly 'timestamp': string;
|
|
4673
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4674
|
-
readonly 'subcatalog_item': io.flow.catalog.v0.models.SubcatalogItem;
|
|
4675
|
-
}
|
|
4676
|
-
|
|
4677
|
-
interface SubcatalogReference {
|
|
4678
|
-
readonly 'discriminator': 'subcatalog_reference';
|
|
4679
|
-
readonly 'id': string;
|
|
4680
|
-
}
|
|
4681
|
-
|
|
4682
|
-
interface SubcatalogSettings {
|
|
4683
|
-
readonly 'update_policy': io.flow.catalog.v0.enums.UpdatePolicy;
|
|
4684
|
-
}
|
|
4685
|
-
|
|
4686
|
-
interface SubcatalogSettingsForm {
|
|
4687
|
-
readonly 'update_policy'?: io.flow.catalog.v0.enums.UpdatePolicy;
|
|
3131
|
+
interface ApplePayPaymentData {
|
|
3132
|
+
readonly 'applicationPrimaryAccountNumber': string;
|
|
3133
|
+
readonly 'applicationExpirationDate': string;
|
|
3134
|
+
readonly 'currencyCode': string;
|
|
3135
|
+
readonly 'transactionAmount': number;
|
|
3136
|
+
readonly 'cardholderName'?: string;
|
|
3137
|
+
readonly 'deviceManufacturerIdentifier': string;
|
|
3138
|
+
readonly 'paymentDataType': string;
|
|
3139
|
+
readonly 'paymentData': any/*object*/;
|
|
4688
3140
|
}
|
|
4689
3141
|
|
|
4690
|
-
interface
|
|
4691
|
-
readonly '
|
|
4692
|
-
readonly '
|
|
4693
|
-
readonly '
|
|
4694
|
-
readonly '
|
|
4695
|
-
readonly '
|
|
3142
|
+
interface ApplePayPaymentInfo {
|
|
3143
|
+
readonly 'total': io.flow.apple.pay.v0.models.ApplePayLineItem;
|
|
3144
|
+
readonly 'line_items'?: io.flow.apple.pay.v0.models.ApplePayLineItem[];
|
|
3145
|
+
readonly 'country_code': string;
|
|
3146
|
+
readonly 'currency_code': string;
|
|
3147
|
+
readonly 'merchant_capabilities': io.flow.apple.pay.v0.enums.ApplePayMerchantCapability[];
|
|
3148
|
+
readonly 'shipping_methods'?: io.flow.apple.pay.v0.models.ApplePayShippingMethod[];
|
|
3149
|
+
readonly 'shipping_type'?: io.flow.apple.pay.v0.enums.ApplePayShippingType;
|
|
3150
|
+
readonly 'supported_countries'?: string[];
|
|
3151
|
+
readonly 'supported_networks': io.flow.apple.pay.v0.enums.ApplePaySupportedNetworks[];
|
|
3152
|
+
readonly 'required_billingContactFields'?: io.flow.apple.pay.v0.enums.ApplePayContactField[];
|
|
3153
|
+
readonly 'required_shippingContactFields'?: io.flow.apple.pay.v0.enums.ApplePayContactField[];
|
|
3154
|
+
readonly 'billing_contact'?: io.flow.apple.pay.v0.models.ApplePayPaymentContact;
|
|
3155
|
+
readonly 'shipping_contact'?: io.flow.apple.pay.v0.models.ApplePayPaymentContact;
|
|
3156
|
+
readonly 'application_data'?: string;
|
|
4696
3157
|
}
|
|
4697
3158
|
|
|
4698
|
-
interface
|
|
4699
|
-
readonly '
|
|
4700
|
-
readonly '
|
|
4701
|
-
readonly '
|
|
4702
|
-
readonly '
|
|
3159
|
+
interface ApplePayShippingMethod {
|
|
3160
|
+
readonly 'label': string;
|
|
3161
|
+
readonly 'detail': string;
|
|
3162
|
+
readonly 'amount': string;
|
|
3163
|
+
readonly 'identifier': string;
|
|
4703
3164
|
}
|
|
4704
3165
|
}
|
|
4705
3166
|
|
|
4706
|
-
declare namespace io.flow.
|
|
4707
|
-
type
|
|
4708
|
-
type
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
type
|
|
4713
|
-
type
|
|
4714
|
-
type
|
|
3167
|
+
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
3168
|
+
type AldoItemType = 'physical' | 'digital';
|
|
3169
|
+
type AnirbanItemType = 'physical' | 'digital';
|
|
3170
|
+
type AnshItemType = 'physical' | 'digital';
|
|
3171
|
+
type HoseinItemType = 'physical' | 'digital';
|
|
3172
|
+
type NiallItemType = 'physical' | 'digital';
|
|
3173
|
+
type PrateekItemType = 'physical' | 'digital';
|
|
3174
|
+
type RohanItemType = 'physical' | 'digital';
|
|
3175
|
+
type SarveshItemType = 'physical' | 'digital';
|
|
4715
3176
|
}
|
|
4716
3177
|
|
|
4717
|
-
declare namespace io.flow.
|
|
4718
|
-
interface
|
|
4719
|
-
readonly '
|
|
4720
|
-
readonly 'messages': string[];
|
|
4721
|
-
}
|
|
4722
|
-
|
|
4723
|
-
interface GenericReservationError {
|
|
4724
|
-
readonly 'code': 'generic_reservation_error';
|
|
4725
|
-
readonly 'messages': string[];
|
|
4726
|
-
}
|
|
4727
|
-
|
|
4728
|
-
interface InventoryBackorder {
|
|
4729
|
-
readonly 'discriminator': 'inventory_backorder';
|
|
4730
|
-
readonly 'quantity': number;
|
|
4731
|
-
}
|
|
4732
|
-
|
|
4733
|
-
interface InventoryCenterReference {
|
|
4734
|
-
readonly 'key': string;
|
|
4735
|
-
}
|
|
4736
|
-
|
|
4737
|
-
interface InventoryCheckResponse {
|
|
4738
|
-
readonly 'items': io.flow.inventory.v0.models.InventoryCheckResponseItem[];
|
|
4739
|
-
}
|
|
4740
|
-
|
|
4741
|
-
interface InventoryCheckResponseItem {
|
|
4742
|
-
readonly 'number': string;
|
|
4743
|
-
readonly 'quantity': number;
|
|
4744
|
-
readonly 'inventory_status': io.flow.inventory.v0.enums.InventoryStatus;
|
|
4745
|
-
}
|
|
4746
|
-
|
|
4747
|
-
interface InventoryExperienceReference {
|
|
4748
|
-
readonly 'key': string;
|
|
4749
|
-
}
|
|
4750
|
-
|
|
4751
|
-
interface InventoryFollowEcommercePlatform {
|
|
4752
|
-
readonly 'discriminator': 'inventory_follow_ecommerce_platform';
|
|
4753
|
-
readonly 'quantity': number;
|
|
4754
|
-
}
|
|
4755
|
-
|
|
4756
|
-
interface InventoryItemReference {
|
|
3178
|
+
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
3179
|
+
interface AldoItem {
|
|
3180
|
+
readonly 'id': string;
|
|
4757
3181
|
readonly 'number': string;
|
|
3182
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3183
|
+
readonly 'description'?: string;
|
|
3184
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
3185
|
+
readonly 'added_on': string;
|
|
4758
3186
|
}
|
|
4759
3187
|
|
|
4760
|
-
interface
|
|
4761
|
-
readonly 'items': io.flow.inventory.v0.models.InventoryRequestItem[];
|
|
4762
|
-
}
|
|
4763
|
-
|
|
4764
|
-
interface InventoryRequestItem {
|
|
3188
|
+
interface AldoItemForm {
|
|
4765
3189
|
readonly 'number': string;
|
|
4766
|
-
readonly '
|
|
3190
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3191
|
+
readonly 'description'?: string;
|
|
3192
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
3193
|
+
readonly 'added_on': string;
|
|
4767
3194
|
}
|
|
4768
3195
|
|
|
4769
|
-
interface
|
|
3196
|
+
interface AnirbanItem {
|
|
4770
3197
|
readonly 'id': string;
|
|
4771
|
-
readonly '
|
|
4772
|
-
readonly '
|
|
4773
|
-
readonly '
|
|
3198
|
+
readonly 'number': string;
|
|
3199
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3200
|
+
readonly 'description'?: string;
|
|
3201
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnirbanItemType;
|
|
3202
|
+
readonly 'added_on': string;
|
|
4774
3203
|
}
|
|
4775
3204
|
|
|
4776
|
-
interface
|
|
4777
|
-
readonly '
|
|
4778
|
-
readonly '
|
|
4779
|
-
readonly '
|
|
3205
|
+
interface AnirbanItemForm {
|
|
3206
|
+
readonly 'number': string;
|
|
3207
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3208
|
+
readonly 'description'?: string;
|
|
3209
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnirbanItemType;
|
|
3210
|
+
readonly 'added_on': string;
|
|
4780
3211
|
}
|
|
4781
3212
|
|
|
4782
|
-
interface
|
|
3213
|
+
interface AnshItem {
|
|
4783
3214
|
readonly 'id': string;
|
|
4784
|
-
readonly '
|
|
4785
|
-
readonly '
|
|
4786
|
-
readonly '
|
|
3215
|
+
readonly 'number': string;
|
|
3216
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3217
|
+
readonly 'description'?: string;
|
|
3218
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
3219
|
+
readonly 'added_on': string;
|
|
4787
3220
|
}
|
|
4788
3221
|
|
|
4789
|
-
interface
|
|
4790
|
-
readonly '
|
|
4791
|
-
readonly '
|
|
4792
|
-
readonly '
|
|
4793
|
-
readonly '
|
|
4794
|
-
readonly '
|
|
3222
|
+
interface AnshItemForm {
|
|
3223
|
+
readonly 'number': string;
|
|
3224
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3225
|
+
readonly 'description'?: string;
|
|
3226
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
3227
|
+
readonly 'added_on': string;
|
|
4795
3228
|
}
|
|
4796
3229
|
|
|
4797
|
-
interface
|
|
3230
|
+
interface HoseinItem {
|
|
4798
3231
|
readonly 'id': string;
|
|
4799
|
-
readonly '
|
|
4800
|
-
readonly '
|
|
4801
|
-
readonly '
|
|
4802
|
-
|
|
4803
|
-
|
|
4804
|
-
interface InventoryStock {
|
|
4805
|
-
readonly 'discriminator': 'inventory_stock';
|
|
4806
|
-
readonly 'quantity': number;
|
|
3232
|
+
readonly 'number': string;
|
|
3233
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3234
|
+
readonly 'description'?: string;
|
|
3235
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
|
|
3236
|
+
readonly 'added_on': string;
|
|
4807
3237
|
}
|
|
4808
3238
|
|
|
4809
|
-
interface
|
|
4810
|
-
readonly '
|
|
4811
|
-
readonly '
|
|
3239
|
+
interface HoseinItemForm {
|
|
3240
|
+
readonly 'number': string;
|
|
3241
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3242
|
+
readonly 'description'?: string;
|
|
3243
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
|
|
3244
|
+
readonly 'added_on': string;
|
|
4812
3245
|
}
|
|
4813
3246
|
|
|
4814
|
-
interface
|
|
3247
|
+
interface JeanDemoItem {
|
|
4815
3248
|
readonly 'id': string;
|
|
4816
|
-
readonly '
|
|
4817
|
-
readonly 'center': io.flow.inventory.v0.models.InventoryCenterReference;
|
|
4818
|
-
readonly 'item': io.flow.inventory.v0.models.InventoryItemReference;
|
|
4819
|
-
readonly 'notes': any/*object*/;
|
|
4820
|
-
readonly 'quantity': number;
|
|
4821
|
-
readonly 'type': io.flow.inventory.v0.enums.UpdateType;
|
|
4822
|
-
}
|
|
4823
|
-
|
|
4824
|
-
interface InventoryUpdateForm {
|
|
4825
|
-
readonly 'center': string;
|
|
4826
|
-
readonly 'idempotency_key': string;
|
|
4827
|
-
readonly 'item_number': string;
|
|
4828
|
-
readonly 'quantity': number;
|
|
4829
|
-
readonly 'type': io.flow.inventory.v0.enums.UpdateType;
|
|
4830
|
-
readonly 'notes'?: any/*object*/;
|
|
3249
|
+
readonly 'name': string;
|
|
4831
3250
|
}
|
|
4832
3251
|
|
|
4833
|
-
interface
|
|
3252
|
+
interface NiallItem {
|
|
4834
3253
|
readonly 'id': string;
|
|
4835
|
-
readonly 'timestamp': string;
|
|
4836
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4837
|
-
readonly 'inventory_update': io.flow.inventory.v0.models.InventoryUpdate;
|
|
4838
|
-
}
|
|
4839
|
-
|
|
4840
|
-
interface NoInventoryReservationError {
|
|
4841
|
-
readonly 'code': 'no_inventory';
|
|
4842
|
-
readonly 'messages': string[];
|
|
4843
|
-
readonly 'items': io.flow.inventory.v0.models.NoInventoryReservationErrorItem[];
|
|
4844
|
-
}
|
|
4845
|
-
|
|
4846
|
-
interface NoInventoryReservationErrorItem {
|
|
4847
3254
|
readonly 'number': string;
|
|
4848
|
-
readonly '
|
|
4849
|
-
readonly '
|
|
4850
|
-
|
|
4851
|
-
|
|
4852
|
-
interface PfsInventoryCheckResponse {
|
|
4853
|
-
readonly 'items': Record<string, io.flow.inventory.v0.models.PfsInventoryCheckResponseItem>;
|
|
3255
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3256
|
+
readonly 'description'?: string;
|
|
3257
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
|
|
3258
|
+
readonly 'added_on': string;
|
|
4854
3259
|
}
|
|
4855
3260
|
|
|
4856
|
-
interface
|
|
3261
|
+
interface NiallItemForm {
|
|
4857
3262
|
readonly 'number': string;
|
|
4858
|
-
readonly '
|
|
4859
|
-
readonly '
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
interface PfsInventoryStatus {
|
|
4863
|
-
readonly 'status': string;
|
|
3263
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3264
|
+
readonly 'description'?: string;
|
|
3265
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
|
|
3266
|
+
readonly 'added_on': string;
|
|
4864
3267
|
}
|
|
4865
3268
|
|
|
4866
|
-
interface
|
|
3269
|
+
interface PrateekItem {
|
|
4867
3270
|
readonly 'id': string;
|
|
4868
|
-
readonly 'key': string;
|
|
4869
|
-
readonly 'order'?: io.flow.inventory.v0.models.ReservationOrderReference;
|
|
4870
|
-
readonly 'items': io.flow.inventory.v0.models.ReservationItem[];
|
|
4871
|
-
readonly 'reserved_until'?: string;
|
|
4872
|
-
}
|
|
4873
|
-
|
|
4874
|
-
interface ReservationForm {
|
|
4875
|
-
readonly 'order_number'?: string;
|
|
4876
|
-
readonly 'items': io.flow.inventory.v0.models.ReservationItemForm[];
|
|
4877
|
-
}
|
|
4878
|
-
|
|
4879
|
-
interface ReservationItem {
|
|
4880
|
-
readonly 'item': io.flow.inventory.v0.models.ReservationItemReference;
|
|
4881
|
-
readonly 'quantity': number;
|
|
4882
|
-
}
|
|
4883
|
-
|
|
4884
|
-
interface ReservationItemForm {
|
|
4885
|
-
readonly 'item_number': string;
|
|
4886
|
-
readonly 'quantity': number;
|
|
4887
|
-
}
|
|
4888
|
-
|
|
4889
|
-
interface ReservationItemReference {
|
|
4890
|
-
readonly 'number': string;
|
|
4891
|
-
}
|
|
4892
|
-
|
|
4893
|
-
interface ReservationOrderReference {
|
|
4894
3271
|
readonly 'number': string;
|
|
4895
|
-
|
|
4896
|
-
|
|
4897
|
-
|
|
4898
|
-
|
|
4899
|
-
type InventoryStrategy = (io.flow.inventory.v0.models.InventoryBackorder | io.flow.inventory.v0.models.InventoryStock | io.flow.inventory.v0.models.InventoryUnlimited | io.flow.inventory.v0.models.InventoryFollowEcommercePlatform);
|
|
4900
|
-
type ReservationError = (io.flow.inventory.v0.models.NoInventoryReservationError | io.flow.inventory.v0.models.ExternalApiTimeoutReservationError | io.flow.inventory.v0.models.GenericReservationError);
|
|
4901
|
-
}
|
|
4902
|
-
|
|
4903
|
-
declare namespace io.flow.permission.v0.enums {
|
|
4904
|
-
type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
|
|
4905
|
-
type FlowBehavior = 'view_consumer_data';
|
|
4906
|
-
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
4907
|
-
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
4908
|
-
}
|
|
4909
|
-
|
|
4910
|
-
declare namespace io.flow.permission.v0.models {
|
|
4911
|
-
interface BehaviorAudit {
|
|
4912
|
-
readonly 'behavior': io.flow.permission.v0.enums.FlowBehavior;
|
|
4913
|
-
readonly 'authentication_techniques': io.flow.permission.v0.enums.AuthenticationTechnique[];
|
|
4914
|
-
readonly 'roles': io.flow.permission.v0.enums.FlowRole[];
|
|
4915
|
-
}
|
|
4916
|
-
|
|
4917
|
-
interface PermissionAudit {
|
|
4918
|
-
readonly 'routes': io.flow.permission.v0.models.RouteAudit[];
|
|
4919
|
-
readonly 'behaviors': io.flow.permission.v0.models.BehaviorAudit[];
|
|
4920
|
-
}
|
|
4921
|
-
|
|
4922
|
-
interface PermissionCheck {
|
|
4923
|
-
readonly 'authentication_technique': io.flow.permission.v0.enums.AuthenticationTechnique;
|
|
4924
|
-
readonly 'user'?: io.flow.common.v0.unions.ExpandableUser;
|
|
4925
|
-
readonly 'roles': io.flow.permission.v0.enums.FlowRole[];
|
|
4926
|
-
readonly 'behaviors': io.flow.permission.v0.enums.FlowBehavior[];
|
|
4927
|
-
readonly 'routes': io.flow.permission.v0.models.PermittedRoute[];
|
|
4928
|
-
}
|
|
4929
|
-
|
|
4930
|
-
interface PermittedRoute {
|
|
4931
|
-
readonly 'method': io.flow.permission.v0.enums.PermittedHttpMethod;
|
|
4932
|
-
readonly 'path': string;
|
|
4933
|
-
}
|
|
4934
|
-
|
|
4935
|
-
interface RouteAudit {
|
|
4936
|
-
readonly 'method': io.flow.permission.v0.enums.PermittedHttpMethod;
|
|
4937
|
-
readonly 'path': string;
|
|
4938
|
-
readonly 'authentication_techniques': io.flow.permission.v0.enums.AuthenticationTechnique[];
|
|
4939
|
-
readonly 'roles': io.flow.permission.v0.enums.FlowRole[];
|
|
4940
|
-
}
|
|
4941
|
-
|
|
4942
|
-
interface SimplePermissionCheck {
|
|
4943
|
-
readonly 'behaviors': io.flow.permission.v0.enums.FlowBehavior[];
|
|
4944
|
-
}
|
|
4945
|
-
}
|
|
4946
|
-
|
|
4947
|
-
declare namespace io.flow.query.builder.v0.enums {
|
|
4948
|
-
type AvailableFilterFormat = 'boolean' | 'date' | 'money' | 'decimal' | 'string' | 'unit_of_length' | 'unit_of_mass';
|
|
4949
|
-
}
|
|
4950
|
-
|
|
4951
|
-
declare namespace io.flow.query.builder.v0.models {
|
|
4952
|
-
interface AvailableFilterStructured {
|
|
4953
|
-
readonly 'discriminator': 'structured';
|
|
4954
|
-
readonly 'field': string;
|
|
4955
|
-
readonly 'operators': string[];
|
|
4956
|
-
readonly 'format': io.flow.query.builder.v0.enums.AvailableFilterFormat;
|
|
4957
|
-
readonly 'valid_values'?: string[];
|
|
4958
|
-
readonly 'placeholder'?: string;
|
|
4959
|
-
}
|
|
4960
|
-
|
|
4961
|
-
interface AvailableFilterUnstructured {
|
|
4962
|
-
readonly 'discriminator': 'unstructured';
|
|
4963
|
-
readonly 'placeholder'?: string;
|
|
4964
|
-
}
|
|
4965
|
-
|
|
4966
|
-
interface Query {
|
|
4967
|
-
readonly 'q': string;
|
|
4968
|
-
readonly 'filters': io.flow.query.builder.v0.unions.QueryFilter[];
|
|
4969
|
-
}
|
|
4970
|
-
|
|
4971
|
-
interface QueryBuilder {
|
|
4972
|
-
readonly 'q': string;
|
|
4973
|
-
readonly 'filters': io.flow.query.builder.v0.unions.QueryFilter[];
|
|
4974
|
-
readonly 'available': io.flow.query.builder.v0.unions.AvailableFilter[];
|
|
3272
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3273
|
+
readonly 'description'?: string;
|
|
3274
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
|
|
3275
|
+
readonly 'added_on': string;
|
|
4975
3276
|
}
|
|
4976
3277
|
|
|
4977
|
-
interface
|
|
4978
|
-
readonly '
|
|
4979
|
-
readonly '
|
|
3278
|
+
interface PrateekItemForm {
|
|
3279
|
+
readonly 'number': string;
|
|
3280
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3281
|
+
readonly 'description'?: string;
|
|
3282
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
|
|
3283
|
+
readonly 'added_on': string;
|
|
4980
3284
|
}
|
|
4981
3285
|
|
|
4982
|
-
interface
|
|
4983
|
-
readonly '
|
|
4984
|
-
readonly '
|
|
3286
|
+
interface RohanItem {
|
|
3287
|
+
readonly 'id': string;
|
|
3288
|
+
readonly 'number': string;
|
|
3289
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3290
|
+
readonly 'description'?: string;
|
|
3291
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
|
|
3292
|
+
readonly 'added_on': string;
|
|
4985
3293
|
}
|
|
4986
3294
|
|
|
4987
|
-
interface
|
|
4988
|
-
readonly '
|
|
4989
|
-
readonly '
|
|
4990
|
-
readonly '
|
|
4991
|
-
readonly '
|
|
4992
|
-
readonly '
|
|
3295
|
+
interface RohanItemForm {
|
|
3296
|
+
readonly 'number': string;
|
|
3297
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3298
|
+
readonly 'description'?: string;
|
|
3299
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
|
|
3300
|
+
readonly 'added_on': string;
|
|
4993
3301
|
}
|
|
4994
3302
|
|
|
4995
|
-
interface
|
|
4996
|
-
readonly '
|
|
4997
|
-
readonly '
|
|
4998
|
-
readonly '
|
|
4999
|
-
readonly '
|
|
3303
|
+
interface SarveshItem {
|
|
3304
|
+
readonly 'id': string;
|
|
3305
|
+
readonly 'number': string;
|
|
3306
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3307
|
+
readonly 'description'?: string;
|
|
3308
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
|
|
3309
|
+
readonly 'added_on': string;
|
|
5000
3310
|
}
|
|
5001
3311
|
|
|
5002
|
-
interface
|
|
5003
|
-
readonly '
|
|
5004
|
-
readonly '
|
|
3312
|
+
interface SarveshItemForm {
|
|
3313
|
+
readonly 'number': string;
|
|
3314
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3315
|
+
readonly 'description'?: string;
|
|
3316
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
|
|
3317
|
+
readonly 'added_on': string;
|
|
5005
3318
|
}
|
|
5006
3319
|
|
|
5007
|
-
interface
|
|
5008
|
-
readonly '
|
|
5009
|
-
readonly 'q': string;
|
|
3320
|
+
interface TechOnboardingDescription {
|
|
3321
|
+
readonly 'description': string;
|
|
5010
3322
|
}
|
|
5011
3323
|
}
|
|
5012
3324
|
|
|
5013
|
-
declare namespace io.flow.
|
|
5014
|
-
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
type SellabilityRequestStatus = 'commit';
|
|
5024
|
-
}
|
|
5025
|
-
|
|
5026
|
-
declare namespace io.flow.sellability.v0.models {
|
|
5027
|
-
interface ProductSellability {
|
|
5028
|
-
readonly 'discriminator': 'product_sellability';
|
|
5029
|
-
readonly 'shop_id': string;
|
|
5030
|
-
readonly 'product_id'?: string;
|
|
5031
|
-
readonly 'request_id': string;
|
|
5032
|
-
readonly 'hs6_code': string;
|
|
5033
|
-
readonly 'restricted_regions': io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
3325
|
+
declare namespace io.flow.product.v0.models {
|
|
3326
|
+
interface Product {
|
|
3327
|
+
readonly 'organization_id': string;
|
|
3328
|
+
readonly 'number': string;
|
|
3329
|
+
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
3330
|
+
readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
3331
|
+
readonly 'item_numbers': string[];
|
|
3332
|
+
readonly 'highest_value_item_number'?: string;
|
|
3333
|
+
readonly 'updated_at': string;
|
|
3334
|
+
readonly 'deleted_at'?: string;
|
|
5034
3335
|
}
|
|
5035
3336
|
|
|
5036
|
-
interface
|
|
5037
|
-
readonly 'shop_id': string;
|
|
5038
|
-
readonly 'product_id'?: string;
|
|
3337
|
+
interface ProductTaxonomyCategory {
|
|
5039
3338
|
readonly 'name': string;
|
|
5040
|
-
readonly '
|
|
5041
|
-
readonly 'description': string;
|
|
5042
|
-
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
5043
|
-
readonly 'status'?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
|
|
5044
|
-
readonly 'dry_run'?: boolean;
|
|
3339
|
+
readonly 'full_name': string;
|
|
5045
3340
|
}
|
|
5046
3341
|
|
|
5047
|
-
interface
|
|
5048
|
-
readonly '
|
|
5049
|
-
readonly '
|
|
3342
|
+
interface ProductTaxonomyData {
|
|
3343
|
+
readonly 'key': string;
|
|
3344
|
+
readonly 'value': string[];
|
|
3345
|
+
readonly 'value_obj'?: io.flow.product.v0.models.ProductTaxonomyValue[];
|
|
5050
3346
|
}
|
|
5051
3347
|
|
|
5052
|
-
interface
|
|
5053
|
-
readonly '
|
|
5054
|
-
readonly '
|
|
5055
|
-
readonly 'messages': string[];
|
|
3348
|
+
interface ProductTaxonomyValue {
|
|
3349
|
+
readonly 'handle': string;
|
|
3350
|
+
readonly 'name': string;
|
|
5056
3351
|
}
|
|
3352
|
+
}
|
|
5057
3353
|
|
|
5058
|
-
|
|
5059
|
-
|
|
5060
|
-
readonly '
|
|
3354
|
+
declare namespace io.flow.ben.test.internal.v0.models {
|
|
3355
|
+
interface GenerateLoadMultipleOrgs {
|
|
3356
|
+
readonly 'discriminator': 'generate_load_multiple_orgs';
|
|
3357
|
+
readonly 'organization_ids': string[];
|
|
3358
|
+
readonly 'num_events': number;
|
|
5061
3359
|
}
|
|
5062
|
-
}
|
|
5063
3360
|
|
|
5064
|
-
|
|
5065
|
-
|
|
5066
|
-
|
|
3361
|
+
interface GenerateLoadSingleOrg {
|
|
3362
|
+
readonly 'discriminator': 'generate_load_single_org';
|
|
3363
|
+
readonly 'organization_id': string;
|
|
3364
|
+
readonly 'num_events': number;
|
|
3365
|
+
}
|
|
5067
3366
|
|
|
5068
|
-
|
|
5069
|
-
interface Rate {
|
|
3367
|
+
interface Test {
|
|
5070
3368
|
readonly 'id': string;
|
|
5071
|
-
readonly '
|
|
5072
|
-
readonly 'target': string;
|
|
5073
|
-
readonly 'effective_at': string;
|
|
5074
|
-
readonly 'value': number;
|
|
3369
|
+
readonly 'name': string;
|
|
5075
3370
|
}
|
|
5076
3371
|
|
|
5077
|
-
interface
|
|
5078
|
-
readonly '
|
|
5079
|
-
readonly 'target': string;
|
|
5080
|
-
readonly 'effective_at': string;
|
|
3372
|
+
interface TestForm {
|
|
3373
|
+
readonly 'name': string;
|
|
5081
3374
|
}
|
|
3375
|
+
}
|
|
5082
3376
|
|
|
5083
|
-
|
|
5084
|
-
|
|
5085
|
-
readonly 'timestamp': string;
|
|
5086
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
5087
|
-
readonly 'rate': io.flow.currency.v0.models.Rate;
|
|
5088
|
-
}
|
|
3377
|
+
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
3378
|
+
type GenerateLoad = (io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs);
|
|
5089
3379
|
}
|
|
5090
3380
|
|
|
5091
3381
|
declare namespace io.flow.v0.enums {
|
|
@@ -5144,7 +3434,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5144
3434
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
5145
3435
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
5146
3436
|
type Environment = 'sandbox' | 'production';
|
|
5147
|
-
type EventType = 'test_upserted' | 'generate_load' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | '
|
|
3437
|
+
type EventType = 'test_upserted' | 'generate_load' | 'sarvesh_item_upserted' | 'sarvesh_item_deleted' | 'hosein_item_upserted' | 'hosein_item_deleted' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'anirban_item_upserted' | 'anirban_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v3' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'ge_item_inserted' | 'ge_item_updated' | 'ge_item_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'authorization_retry_upserted' | 'authorization_retry_deleted' | 'transfer_upserted' | 'transfer_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
5148
3438
|
type ExceptionType = 'open' | 'closed';
|
|
5149
3439
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
5150
3440
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -5186,6 +3476,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5186
3476
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
5187
3477
|
type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
|
|
5188
3478
|
type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
|
|
3479
|
+
type LevyInclusion = 'tax' | 'duty';
|
|
5189
3480
|
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
5190
3481
|
type LocationErrorCode = 'address_required' | 'ip_invalid' | 'ip_required' | 'timezone_unavailable';
|
|
5191
3482
|
type LogisticsFormatPreference = 'shopify_console' | 'existing_3pl_integration' | 'byo_integration';
|
|
@@ -5206,6 +3497,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5206
3497
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
5207
3498
|
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
5208
3499
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
3500
|
+
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
|
|
5209
3501
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
5210
3502
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
5211
3503
|
type OrderStatus = 'open' | 'submitted';
|
|
@@ -5236,6 +3528,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5236
3528
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
5237
3529
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
5238
3530
|
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
3531
|
+
type PreferentialRateEligibility = 'baby_clothing' | 'kids_clothing';
|
|
5239
3532
|
type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
|
|
5240
3533
|
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
5241
3534
|
type PriceBookStatus = 'draft' | 'published' | 'archived';
|
|
@@ -5243,7 +3536,6 @@ declare namespace io.flow.v0.enums {
|
|
|
5243
3536
|
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
5244
3537
|
type PriceFacetBoundary = 'min' | 'max';
|
|
5245
3538
|
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
5246
|
-
type ProductRestrictionRule = 'Adult Products' | 'Alcohol' | 'Anti Money Laundering' | 'Collagen' | 'Consumer Safety' | 'Cosmetics' | 'DG - Batteries' | 'DG - Hazmat' | 'Drugs' | 'Dual Use' | 'Fine Art' | 'Fish & Wildlife - CITES' | 'Fish & Wildlife - Plant' | 'Fish & Wildlife - USFWS' | 'Food' | 'Gambling' | 'Health' | 'Human hair' | 'Insufficient Details' | 'Intangible' | 'Jewelry' | 'Jewelry & Watches Over 5000' | 'Knives' | 'Liquids' | 'Oversized' | 'Restrict by Default' | 'Supplements' | 'Tattoo Ink And PMU' | 'Weapon' | 'Wood';
|
|
5247
3539
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
5248
3540
|
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
5249
3541
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
@@ -5263,7 +3555,10 @@ declare namespace io.flow.v0.enums {
|
|
|
5263
3555
|
type Role = 'admin' | 'member';
|
|
5264
3556
|
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
5265
3557
|
type RoundingType = 'pattern' | 'multiple';
|
|
3558
|
+
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
5266
3559
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
3560
|
+
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
3561
|
+
type SellabilityRequestStatus = 'commit';
|
|
5267
3562
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
5268
3563
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
5269
3564
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
@@ -5279,6 +3574,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5279
3574
|
type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
|
|
5280
3575
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
5281
3576
|
type TaxApplicability = 'none' | 'all';
|
|
3577
|
+
type TaxDutyCalculatorValidationErrorCode = 'generic_error' | 'destination_country_not_defined' | 'destination_address_iso3166_unrecognized' | 'line_item_shipfrom_shipto_country_invalid' | 'line_item_ship_from_invalid' | 'line_item_currency_iso4217_unrecognized' | 'line_quantity_invalid' | 'line_item_quantity_invalid' | 'line_item_unit_price_precision_invalid' | 'line_item_unit_price_negative' | 'line_item_discount_amount_precision_invalid' | 'line_item_discount_amount_positive' | 'line_item_country_of_origin_iso3166_unrecognized' | 'line_item_hs_code_invalid' | 'line_item_duty_provider_invalid' | 'shipping_unit_price_precision_invalid' | 'shipping_unit_price_negative' | 'shipping_discount_amount_precision_invalid' | 'shipping_discount_amount_invalid' | 'merchant_of_record_invalid' | 'wrong_unit_specified';
|
|
5282
3578
|
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
|
|
5283
3579
|
type TaxReportType = 'consumer' | 'b2b';
|
|
5284
3580
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -5294,11 +3590,11 @@ declare namespace io.flow.v0.enums {
|
|
|
5294
3590
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
5295
3591
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
5296
3592
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
5297
|
-
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' | 'ge_revenue_share';
|
|
3593
|
+
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';
|
|
5298
3594
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
5299
3595
|
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';
|
|
5300
3596
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
5301
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
|
|
3597
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail' | 'pickup';
|
|
5302
3598
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
5303
3599
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
5304
3600
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
@@ -5311,6 +3607,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5311
3607
|
type WebhookStatus = 'pending' | 'success' | 'failure' | 'ignored';
|
|
5312
3608
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
5313
3609
|
type ZeroAmountIndicator = 'zero' | 'free';
|
|
3610
|
+
type ZeroLevyReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'value_rounds_to_zero' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_reimport' | 'duty_free_by_trade_agreement';
|
|
5314
3611
|
}
|
|
5315
3612
|
|
|
5316
3613
|
declare namespace io.flow.v0.models {
|
|
@@ -5763,6 +4060,20 @@ declare namespace io.flow.v0.models {
|
|
|
5763
4060
|
readonly 'interval'?: io.flow.v0.enums.UnitOfTime;
|
|
5764
4061
|
}
|
|
5765
4062
|
|
|
4063
|
+
interface AnirbanItemDeleted {
|
|
4064
|
+
readonly 'discriminator': 'anirban_item_deleted';
|
|
4065
|
+
readonly 'event_id': string;
|
|
4066
|
+
readonly 'timestamp': string;
|
|
4067
|
+
readonly 'id': string;
|
|
4068
|
+
}
|
|
4069
|
+
|
|
4070
|
+
interface AnirbanItemUpserted {
|
|
4071
|
+
readonly 'discriminator': 'anirban_item_upserted';
|
|
4072
|
+
readonly 'event_id': string;
|
|
4073
|
+
readonly 'timestamp': string;
|
|
4074
|
+
readonly 'item': io.flow.tech.onboarding.playground.v0.models.AnirbanItem;
|
|
4075
|
+
}
|
|
4076
|
+
|
|
5766
4077
|
interface AnshItemDeleted {
|
|
5767
4078
|
readonly 'discriminator': 'ansh_item_deleted';
|
|
5768
4079
|
readonly 'event_id': string;
|
|
@@ -6028,39 +4339,6 @@ declare namespace io.flow.v0.models {
|
|
|
6028
4339
|
readonly 'promotions': io.flow.v0.unions.Promotion[];
|
|
6029
4340
|
}
|
|
6030
4341
|
|
|
6031
|
-
interface AvailablePromotionsDeleted {
|
|
6032
|
-
readonly 'discriminator': 'available_promotions_deleted';
|
|
6033
|
-
readonly 'event_id': string;
|
|
6034
|
-
readonly 'timestamp': string;
|
|
6035
|
-
readonly 'organization': string;
|
|
6036
|
-
readonly 'experience_key': string;
|
|
6037
|
-
}
|
|
6038
|
-
|
|
6039
|
-
interface AvailablePromotionsDeletedV2 {
|
|
6040
|
-
readonly 'discriminator': 'available_promotions_deleted_v2';
|
|
6041
|
-
readonly 'event_id': string;
|
|
6042
|
-
readonly 'timestamp': string;
|
|
6043
|
-
readonly 'organization': string;
|
|
6044
|
-
readonly 'available_promotion': io.flow.v0.models.AvailablePromotion;
|
|
6045
|
-
}
|
|
6046
|
-
|
|
6047
|
-
interface AvailablePromotionsUpserted {
|
|
6048
|
-
readonly 'discriminator': 'available_promotions_upserted';
|
|
6049
|
-
readonly 'event_id': string;
|
|
6050
|
-
readonly 'timestamp': string;
|
|
6051
|
-
readonly 'organization': string;
|
|
6052
|
-
readonly 'experience_key': string;
|
|
6053
|
-
readonly 'available_promotions': any/*object*/[];
|
|
6054
|
-
}
|
|
6055
|
-
|
|
6056
|
-
interface AvailablePromotionsUpsertedV2 {
|
|
6057
|
-
readonly 'discriminator': 'available_promotions_upserted_v2';
|
|
6058
|
-
readonly 'event_id': string;
|
|
6059
|
-
readonly 'timestamp': string;
|
|
6060
|
-
readonly 'organization': string;
|
|
6061
|
-
readonly 'available_promotion': io.flow.v0.models.AvailablePromotion;
|
|
6062
|
-
}
|
|
6063
|
-
|
|
6064
4342
|
interface AvailableService {
|
|
6065
4343
|
readonly 'service': string;
|
|
6066
4344
|
readonly 'scheduled_pickups'?: io.flow.v0.models.ScheduledPickup[];
|
|
@@ -7354,26 +5632,10 @@ declare namespace io.flow.v0.models {
|
|
|
7354
5632
|
readonly 'status': io.flow.v0.enums.ExperienceCountryStatus;
|
|
7355
5633
|
}
|
|
7356
5634
|
|
|
7357
|
-
interface CountryStatusDeleted {
|
|
7358
|
-
readonly 'discriminator': 'country_status_deleted';
|
|
7359
|
-
readonly 'event_id': string;
|
|
7360
|
-
readonly 'timestamp': string;
|
|
7361
|
-
readonly 'organization': string;
|
|
7362
|
-
readonly 'country_status': io.flow.v0.models.CountryStatus;
|
|
7363
|
-
}
|
|
7364
|
-
|
|
7365
5635
|
interface CountryStatusForm {
|
|
7366
5636
|
readonly 'status': io.flow.v0.enums.ExperienceCountryStatus;
|
|
7367
5637
|
}
|
|
7368
5638
|
|
|
7369
|
-
interface CountryStatusUpserted {
|
|
7370
|
-
readonly 'discriminator': 'country_status_upserted';
|
|
7371
|
-
readonly 'event_id': string;
|
|
7372
|
-
readonly 'timestamp': string;
|
|
7373
|
-
readonly 'organization': string;
|
|
7374
|
-
readonly 'country_status': io.flow.v0.models.CountryStatus;
|
|
7375
|
-
}
|
|
7376
|
-
|
|
7377
5639
|
interface CreditMemo {
|
|
7378
5640
|
readonly 'id': string;
|
|
7379
5641
|
readonly 'number'?: string;
|
|
@@ -7504,25 +5766,6 @@ declare namespace io.flow.v0.models {
|
|
|
7504
5766
|
readonly 'label_formatters': io.flow.v0.enums.CurrencyLabelFormatter[];
|
|
7505
5767
|
}
|
|
7506
5768
|
|
|
7507
|
-
interface CurrencyFormatDeleted {
|
|
7508
|
-
readonly 'discriminator': 'currency_format_deleted';
|
|
7509
|
-
readonly 'event_id': string;
|
|
7510
|
-
readonly 'timestamp': string;
|
|
7511
|
-
readonly 'organization': string;
|
|
7512
|
-
readonly 'id': string;
|
|
7513
|
-
}
|
|
7514
|
-
|
|
7515
|
-
interface CurrencyFormatUpserted {
|
|
7516
|
-
readonly 'discriminator': 'currency_format_upserted';
|
|
7517
|
-
readonly 'event_id': string;
|
|
7518
|
-
readonly 'timestamp': string;
|
|
7519
|
-
readonly 'organization': string;
|
|
7520
|
-
readonly 'id': string;
|
|
7521
|
-
readonly 'experience_key': string;
|
|
7522
|
-
readonly 'symbol': io.flow.v0.enums.CurrencySymbolFormat;
|
|
7523
|
-
readonly 'label_formatters': io.flow.v0.enums.CurrencyLabelFormatter[];
|
|
7524
|
-
}
|
|
7525
|
-
|
|
7526
5769
|
interface CurrencySymbols {
|
|
7527
5770
|
readonly 'primary': string;
|
|
7528
5771
|
readonly 'narrow'?: string;
|
|
@@ -7816,6 +6059,7 @@ declare namespace io.flow.v0.models {
|
|
|
7816
6059
|
readonly 'package_dimensions_source'?: io.flow.v0.enums.PackageDimensionsSource;
|
|
7817
6060
|
readonly 'origin_location_source'?: io.flow.v0.enums.OriginLocationSource;
|
|
7818
6061
|
readonly 'reference_id'?: string;
|
|
6062
|
+
readonly 'shipping_date_time'?: string;
|
|
7819
6063
|
}
|
|
7820
6064
|
|
|
7821
6065
|
interface DetailedShippingNotificationForm {
|
|
@@ -8115,6 +6359,11 @@ declare namespace io.flow.v0.models {
|
|
|
8115
6359
|
readonly 'ecommerce_platform': io.flow.v0.models.EcommercePlatform;
|
|
8116
6360
|
}
|
|
8117
6361
|
|
|
6362
|
+
interface EditSummary {
|
|
6363
|
+
readonly 'id': string;
|
|
6364
|
+
readonly 'edited_at': string;
|
|
6365
|
+
}
|
|
6366
|
+
|
|
8118
6367
|
interface EeiFilingRatecardFee {
|
|
8119
6368
|
readonly 'discriminator': 'eei_filing_ratecard_fee';
|
|
8120
6369
|
readonly 'amount': io.flow.v0.models.Money;
|
|
@@ -8317,23 +6566,6 @@ declare namespace io.flow.v0.models {
|
|
|
8317
6566
|
readonly 'measurement_system': io.flow.v0.enums.MeasurementSystem;
|
|
8318
6567
|
}
|
|
8319
6568
|
|
|
8320
|
-
interface ExperienceDeleted {
|
|
8321
|
-
readonly 'discriminator': 'experience_deleted';
|
|
8322
|
-
readonly 'event_id': string;
|
|
8323
|
-
readonly 'timestamp': string;
|
|
8324
|
-
readonly 'organization': string;
|
|
8325
|
-
readonly 'key': string;
|
|
8326
|
-
readonly 'subcatalog_id': string;
|
|
8327
|
-
}
|
|
8328
|
-
|
|
8329
|
-
interface ExperienceDeletedV2 {
|
|
8330
|
-
readonly 'discriminator': 'experience_deleted_v2';
|
|
8331
|
-
readonly 'event_id': string;
|
|
8332
|
-
readonly 'timestamp': string;
|
|
8333
|
-
readonly 'organization': string;
|
|
8334
|
-
readonly 'experience': io.flow.v0.models.Experience;
|
|
8335
|
-
}
|
|
8336
|
-
|
|
8337
6569
|
interface ExperienceExportType {
|
|
8338
6570
|
readonly 'discriminator': 'experience_export_type';
|
|
8339
6571
|
readonly 'organization_id': string;
|
|
@@ -8370,26 +6602,10 @@ declare namespace io.flow.v0.models {
|
|
|
8370
6602
|
readonly 'shipping_configuration': io.flow.v0.models.ShippingConfigurationReference;
|
|
8371
6603
|
}
|
|
8372
6604
|
|
|
8373
|
-
interface ExperienceLogisticsSettingsDeleted {
|
|
8374
|
-
readonly 'discriminator': 'experience_logistics_settings_deleted';
|
|
8375
|
-
readonly 'event_id': string;
|
|
8376
|
-
readonly 'timestamp': string;
|
|
8377
|
-
readonly 'organization': string;
|
|
8378
|
-
readonly 'logistics_settings': io.flow.v0.models.ExperienceLogisticsSettings;
|
|
8379
|
-
}
|
|
8380
|
-
|
|
8381
6605
|
interface ExperienceLogisticsSettingsPutForm {
|
|
8382
6606
|
readonly 'shipping_configuration_key': string;
|
|
8383
6607
|
}
|
|
8384
6608
|
|
|
8385
|
-
interface ExperienceLogisticsSettingsUpserted {
|
|
8386
|
-
readonly 'discriminator': 'experience_logistics_settings_upserted';
|
|
8387
|
-
readonly 'event_id': string;
|
|
8388
|
-
readonly 'timestamp': string;
|
|
8389
|
-
readonly 'organization': string;
|
|
8390
|
-
readonly 'logistics_settings': io.flow.v0.models.ExperienceLogisticsSettings;
|
|
8391
|
-
}
|
|
8392
|
-
|
|
8393
6609
|
interface ExperienceLogisticsSummary {
|
|
8394
6610
|
readonly 'outbound'?: io.flow.v0.models.ExperienceLogisticsTierSummary;
|
|
8395
6611
|
readonly 'return'?: io.flow.v0.models.ExperienceLogisticsTierSummary;
|
|
@@ -8426,14 +6642,6 @@ declare namespace io.flow.v0.models {
|
|
|
8426
6642
|
readonly 'position': number;
|
|
8427
6643
|
}
|
|
8428
6644
|
|
|
8429
|
-
interface ExperiencePriceBookMappingDeleted {
|
|
8430
|
-
readonly 'discriminator': 'experience_price_book_mapping_deleted';
|
|
8431
|
-
readonly 'event_id': string;
|
|
8432
|
-
readonly 'timestamp': string;
|
|
8433
|
-
readonly 'organization': string;
|
|
8434
|
-
readonly 'id': string;
|
|
8435
|
-
}
|
|
8436
|
-
|
|
8437
6645
|
interface ExperiencePriceBookMappingForm {
|
|
8438
6646
|
readonly 'price_book_key': string;
|
|
8439
6647
|
readonly 'position'?: number;
|
|
@@ -8443,14 +6651,6 @@ declare namespace io.flow.v0.models {
|
|
|
8443
6651
|
readonly 'price_books': io.flow.v0.models.ExperiencePriceBookMappingForm[];
|
|
8444
6652
|
}
|
|
8445
6653
|
|
|
8446
|
-
interface ExperiencePriceBookMappingUpserted {
|
|
8447
|
-
readonly 'discriminator': 'experience_price_book_mapping_upserted';
|
|
8448
|
-
readonly 'event_id': string;
|
|
8449
|
-
readonly 'timestamp': string;
|
|
8450
|
-
readonly 'organization': string;
|
|
8451
|
-
readonly 'experience_price_book_mapping': io.flow.v0.models.ExperiencePriceBookMapping;
|
|
8452
|
-
}
|
|
8453
|
-
|
|
8454
6654
|
interface ExperiencePriceConversion {
|
|
8455
6655
|
readonly 'request': io.flow.v0.models.ExperiencePriceConversionRequest;
|
|
8456
6656
|
readonly 'price': io.flow.v0.models.PriceWithBase;
|
|
@@ -8497,40 +6697,14 @@ declare namespace io.flow.v0.models {
|
|
|
8497
6697
|
interface ExperienceStatusForm {
|
|
8498
6698
|
readonly 'status': io.flow.v0.enums.ExperienceStatus;
|
|
8499
6699
|
}
|
|
8500
|
-
|
|
8501
|
-
interface ExperienceSummary {
|
|
8502
|
-
readonly 'id': string;
|
|
8503
|
-
readonly 'key': string;
|
|
8504
|
-
readonly 'name': string;
|
|
8505
|
-
readonly 'country'?: string;
|
|
8506
|
-
readonly 'currency'?: string;
|
|
8507
|
-
readonly 'language'?: string;
|
|
8508
|
-
}
|
|
8509
|
-
|
|
8510
|
-
interface ExperienceUpserted {
|
|
8511
|
-
readonly 'discriminator': 'experience_upserted';
|
|
8512
|
-
readonly 'event_id': string;
|
|
8513
|
-
readonly 'timestamp': string;
|
|
8514
|
-
readonly 'organization': string;
|
|
8515
|
-
readonly 'key': string;
|
|
8516
|
-
readonly 'name': string;
|
|
8517
|
-
readonly 'delivered_duty': string;
|
|
8518
|
-
readonly 'subcatalog_id': string;
|
|
8519
|
-
readonly 'region_id': string;
|
|
8520
|
-
readonly 'country': string;
|
|
8521
|
-
readonly 'currency': string;
|
|
8522
|
-
readonly 'language': string;
|
|
8523
|
-
readonly 'measurement_system': string;
|
|
8524
|
-
readonly 'position': number;
|
|
8525
|
-
readonly 'status'?: string;
|
|
8526
|
-
}
|
|
8527
|
-
|
|
8528
|
-
interface ExperienceUpsertedV2 {
|
|
8529
|
-
readonly 'discriminator': 'experience_upserted_v2';
|
|
8530
|
-
readonly 'event_id': string;
|
|
8531
|
-
readonly 'timestamp': string;
|
|
8532
|
-
readonly 'organization': string;
|
|
8533
|
-
readonly 'experience': io.flow.v0.models.Experience;
|
|
6700
|
+
|
|
6701
|
+
interface ExperienceSummary {
|
|
6702
|
+
readonly 'id': string;
|
|
6703
|
+
readonly 'key': string;
|
|
6704
|
+
readonly 'name': string;
|
|
6705
|
+
readonly 'country'?: string;
|
|
6706
|
+
readonly 'currency'?: string;
|
|
6707
|
+
readonly 'language'?: string;
|
|
8534
6708
|
}
|
|
8535
6709
|
|
|
8536
6710
|
interface ExperienceVersion {
|
|
@@ -9175,6 +7349,20 @@ declare namespace io.flow.v0.models {
|
|
|
9175
7349
|
readonly 'hop_estimate': io.flow.v0.models.HopEstimateV2;
|
|
9176
7350
|
}
|
|
9177
7351
|
|
|
7352
|
+
interface HoseinItemDeleted {
|
|
7353
|
+
readonly 'discriminator': 'hosein_item_deleted';
|
|
7354
|
+
readonly 'event_id': string;
|
|
7355
|
+
readonly 'timestamp': string;
|
|
7356
|
+
readonly 'id': string;
|
|
7357
|
+
}
|
|
7358
|
+
|
|
7359
|
+
interface HoseinItemUpserted {
|
|
7360
|
+
readonly 'discriminator': 'hosein_item_upserted';
|
|
7361
|
+
readonly 'event_id': string;
|
|
7362
|
+
readonly 'timestamp': string;
|
|
7363
|
+
readonly 'item': io.flow.tech.onboarding.playground.v0.models.HoseinItem;
|
|
7364
|
+
}
|
|
7365
|
+
|
|
9178
7366
|
interface Hs10 {
|
|
9179
7367
|
readonly 'id': string;
|
|
9180
7368
|
readonly 'item': io.flow.v0.models.HarmonizedItemReference;
|
|
@@ -9264,22 +7452,6 @@ declare namespace io.flow.v0.models {
|
|
|
9264
7452
|
readonly 'deliveries': io.flow.v0.unions.ExportDelivery[];
|
|
9265
7453
|
}
|
|
9266
7454
|
|
|
9267
|
-
interface ImportCompletedV2 {
|
|
9268
|
-
readonly 'discriminator': 'import_completed_v2';
|
|
9269
|
-
readonly 'event_id': string;
|
|
9270
|
-
readonly 'timestamp': string;
|
|
9271
|
-
readonly 'organization': string;
|
|
9272
|
-
readonly 'import': io.flow.v0.models.Import;
|
|
9273
|
-
}
|
|
9274
|
-
|
|
9275
|
-
interface ImportFailedV2 {
|
|
9276
|
-
readonly 'discriminator': 'import_failed_v2';
|
|
9277
|
-
readonly 'event_id': string;
|
|
9278
|
-
readonly 'timestamp': string;
|
|
9279
|
-
readonly 'organization': string;
|
|
9280
|
-
readonly 'import': io.flow.v0.models.Import;
|
|
9281
|
-
}
|
|
9282
|
-
|
|
9283
7455
|
interface ImportForm {
|
|
9284
7456
|
readonly 'type': io.flow.v0.enums.ImportType;
|
|
9285
7457
|
readonly 'source_url': string;
|
|
@@ -9542,14 +7714,6 @@ declare namespace io.flow.v0.models {
|
|
|
9542
7714
|
readonly 'experience'?: io.flow.v0.models.ExperienceReference;
|
|
9543
7715
|
}
|
|
9544
7716
|
|
|
9545
|
-
interface ItemMarginDeletedV2 {
|
|
9546
|
-
readonly 'discriminator': 'item_margin_deleted_v2';
|
|
9547
|
-
readonly 'event_id': string;
|
|
9548
|
-
readonly 'timestamp': string;
|
|
9549
|
-
readonly 'organization': string;
|
|
9550
|
-
readonly 'item_margin': io.flow.v0.models.ItemMargin;
|
|
9551
|
-
}
|
|
9552
|
-
|
|
9553
7717
|
interface ItemMarginPostForm {
|
|
9554
7718
|
readonly 'name': string;
|
|
9555
7719
|
readonly 'q': string;
|
|
@@ -9567,14 +7731,6 @@ declare namespace io.flow.v0.models {
|
|
|
9567
7731
|
readonly 'position'?: number;
|
|
9568
7732
|
}
|
|
9569
7733
|
|
|
9570
|
-
interface ItemMarginUpsertedV2 {
|
|
9571
|
-
readonly 'discriminator': 'item_margin_upserted_v2';
|
|
9572
|
-
readonly 'event_id': string;
|
|
9573
|
-
readonly 'timestamp': string;
|
|
9574
|
-
readonly 'organization': string;
|
|
9575
|
-
readonly 'item_margin': io.flow.v0.models.ItemMargin;
|
|
9576
|
-
}
|
|
9577
|
-
|
|
9578
7734
|
interface ItemMarginVersion {
|
|
9579
7735
|
readonly 'id': string;
|
|
9580
7736
|
readonly 'timestamp': string;
|
|
@@ -9622,29 +7778,6 @@ declare namespace io.flow.v0.models {
|
|
|
9622
7778
|
readonly 'number': string;
|
|
9623
7779
|
}
|
|
9624
7780
|
|
|
9625
|
-
interface ItemSalesMarginDeleted {
|
|
9626
|
-
readonly 'discriminator': 'item_sales_margin_deleted';
|
|
9627
|
-
readonly 'event_id': string;
|
|
9628
|
-
readonly 'timestamp': string;
|
|
9629
|
-
readonly 'item_sales_margin_id': string;
|
|
9630
|
-
readonly 'organization_id': string;
|
|
9631
|
-
readonly 'experience_key': string;
|
|
9632
|
-
}
|
|
9633
|
-
|
|
9634
|
-
interface ItemSalesMarginUpserted {
|
|
9635
|
-
readonly 'discriminator': 'item_sales_margin_upserted';
|
|
9636
|
-
readonly 'event_id': string;
|
|
9637
|
-
readonly 'timestamp': string;
|
|
9638
|
-
readonly 'item_sales_margin_id': string;
|
|
9639
|
-
readonly 'organization_id': string;
|
|
9640
|
-
readonly 'experience_key': string;
|
|
9641
|
-
readonly 'name': string;
|
|
9642
|
-
readonly 'q': string;
|
|
9643
|
-
readonly 'fixed': number;
|
|
9644
|
-
readonly 'percent': number;
|
|
9645
|
-
readonly 'position': number;
|
|
9646
|
-
}
|
|
9647
|
-
|
|
9648
7781
|
interface ItemShippingPricing {
|
|
9649
7782
|
readonly 'min': io.flow.v0.models.Price;
|
|
9650
7783
|
readonly 'max'?: io.flow.v0.models.Price;
|
|
@@ -9759,23 +7892,6 @@ declare namespace io.flow.v0.models {
|
|
|
9759
7892
|
readonly 'label': io.flow.v0.models.ShippingLabel;
|
|
9760
7893
|
}
|
|
9761
7894
|
|
|
9762
|
-
interface LabelFormatDeleted {
|
|
9763
|
-
readonly 'discriminator': 'label_format_deleted';
|
|
9764
|
-
readonly 'event_id': string;
|
|
9765
|
-
readonly 'timestamp': string;
|
|
9766
|
-
readonly 'organization': string;
|
|
9767
|
-
readonly 'experience_key': string;
|
|
9768
|
-
}
|
|
9769
|
-
|
|
9770
|
-
interface LabelFormatUpserted {
|
|
9771
|
-
readonly 'discriminator': 'label_format_upserted';
|
|
9772
|
-
readonly 'event_id': string;
|
|
9773
|
-
readonly 'timestamp': string;
|
|
9774
|
-
readonly 'organization': string;
|
|
9775
|
-
readonly 'experience_key': string;
|
|
9776
|
-
readonly 'format': string;
|
|
9777
|
-
}
|
|
9778
|
-
|
|
9779
7895
|
interface LabelOrderSummary {
|
|
9780
7896
|
readonly 'id': string;
|
|
9781
7897
|
readonly 'number': string;
|
|
@@ -10090,6 +8206,7 @@ declare namespace io.flow.v0.models {
|
|
|
10090
8206
|
readonly 'local': io.flow.v0.models.Local;
|
|
10091
8207
|
readonly 'shipment_estimate'?: io.flow.v0.models.DatetimeRange;
|
|
10092
8208
|
readonly 'price_source'?: io.flow.v0.unions.PriceSource;
|
|
8209
|
+
readonly 'breakdown'?: io.flow.v0.models.OrderPriceDetailBreakdown;
|
|
10093
8210
|
}
|
|
10094
8211
|
|
|
10095
8212
|
interface LocalizedLineItemDiscount {
|
|
@@ -10107,6 +8224,7 @@ declare namespace io.flow.v0.models {
|
|
|
10107
8224
|
readonly 'amount': number;
|
|
10108
8225
|
readonly 'label': string;
|
|
10109
8226
|
readonly 'base': io.flow.v0.models.Price;
|
|
8227
|
+
readonly 'breakdown'?: io.flow.v0.models.OrderPriceDetailBreakdown;
|
|
10110
8228
|
}
|
|
10111
8229
|
|
|
10112
8230
|
interface LocalizedTranslation {
|
|
@@ -10405,6 +8523,11 @@ declare namespace io.flow.v0.models {
|
|
|
10405
8523
|
readonly 'last'?: string;
|
|
10406
8524
|
}
|
|
10407
8525
|
|
|
8526
|
+
interface NeedsActionAttributes {
|
|
8527
|
+
readonly 'reason_code': string;
|
|
8528
|
+
readonly 'category_metafield_handles': string[];
|
|
8529
|
+
}
|
|
8530
|
+
|
|
10408
8531
|
interface NiallItemDeleted {
|
|
10409
8532
|
readonly 'discriminator': 'niall_item_deleted';
|
|
10410
8533
|
readonly 'event_id': string;
|
|
@@ -10566,6 +8689,8 @@ declare namespace io.flow.v0.models {
|
|
|
10566
8689
|
readonly 'destination_contact_details'?: io.flow.v0.models.DestinationContactDetail[];
|
|
10567
8690
|
readonly 'incoterm_summary'?: io.flow.v0.models.IncotermSummary;
|
|
10568
8691
|
readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
8692
|
+
readonly 'edits'?: io.flow.v0.models.EditSummary[];
|
|
8693
|
+
readonly 'rates'?: io.flow.v0.models.OrderRate[];
|
|
10569
8694
|
}
|
|
10570
8695
|
|
|
10571
8696
|
interface OrderAddress {
|
|
@@ -10631,14 +8756,6 @@ declare namespace io.flow.v0.models {
|
|
|
10631
8756
|
readonly 'invoice'?: io.flow.v0.models.CustomerInvoice;
|
|
10632
8757
|
}
|
|
10633
8758
|
|
|
10634
|
-
interface OrderDeleted {
|
|
10635
|
-
readonly 'discriminator': 'order_deleted';
|
|
10636
|
-
readonly 'event_id': string;
|
|
10637
|
-
readonly 'timestamp': string;
|
|
10638
|
-
readonly 'organization': string;
|
|
10639
|
-
readonly 'number': string;
|
|
10640
|
-
}
|
|
10641
|
-
|
|
10642
8759
|
interface OrderDeletedV2 {
|
|
10643
8760
|
readonly 'discriminator': 'order_deleted_v2';
|
|
10644
8761
|
readonly 'event_id': string;
|
|
@@ -10733,13 +8850,6 @@ declare namespace io.flow.v0.models {
|
|
|
10733
8850
|
readonly 'number'?: string;
|
|
10734
8851
|
}
|
|
10735
8852
|
|
|
10736
|
-
interface OrderIdentifierDeleted {
|
|
10737
|
-
readonly 'discriminator': 'order_identifier_deleted';
|
|
10738
|
-
readonly 'event_id': string;
|
|
10739
|
-
readonly 'timestamp': string;
|
|
10740
|
-
readonly 'id': string;
|
|
10741
|
-
}
|
|
10742
|
-
|
|
10743
8853
|
interface OrderIdentifierDeletedV2 {
|
|
10744
8854
|
readonly 'discriminator': 'order_identifier_deleted_v2';
|
|
10745
8855
|
readonly 'event_id': string;
|
|
@@ -10762,27 +8872,6 @@ declare namespace io.flow.v0.models {
|
|
|
10762
8872
|
readonly 'primary'?: boolean;
|
|
10763
8873
|
}
|
|
10764
8874
|
|
|
10765
|
-
interface OrderIdentifierUpserted {
|
|
10766
|
-
readonly 'discriminator': 'order_identifier_upserted';
|
|
10767
|
-
readonly 'event_id': string;
|
|
10768
|
-
readonly 'timestamp': string;
|
|
10769
|
-
readonly 'id': string;
|
|
10770
|
-
readonly 'organization': string;
|
|
10771
|
-
readonly 'number': string;
|
|
10772
|
-
readonly 'order_number': string;
|
|
10773
|
-
}
|
|
10774
|
-
|
|
10775
|
-
interface OrderIdentifierUpsertedV2 {
|
|
10776
|
-
readonly 'discriminator': 'order_identifier_upserted_v2';
|
|
10777
|
-
readonly 'event_id': string;
|
|
10778
|
-
readonly 'timestamp': string;
|
|
10779
|
-
readonly 'organization': string;
|
|
10780
|
-
readonly 'id': string;
|
|
10781
|
-
readonly 'order_number': string;
|
|
10782
|
-
readonly 'identifier': string;
|
|
10783
|
-
readonly 'primary': boolean;
|
|
10784
|
-
}
|
|
10785
|
-
|
|
10786
8875
|
interface OrderIdentifierUpsertedV3 {
|
|
10787
8876
|
readonly 'discriminator': 'order_identifier_upserted_v3';
|
|
10788
8877
|
readonly 'event_id': string;
|
|
@@ -10900,6 +8989,12 @@ declare namespace io.flow.v0.models {
|
|
|
10900
8989
|
readonly 'rate'?: number;
|
|
10901
8990
|
readonly 'accuracy'?: io.flow.v0.enums.PriceAccuracy;
|
|
10902
8991
|
readonly 'rate_label'?: string;
|
|
8992
|
+
readonly 'breakdown'?: io.flow.v0.models.OrderPriceDetailBreakdown;
|
|
8993
|
+
}
|
|
8994
|
+
|
|
8995
|
+
interface OrderPriceDetailBreakdown {
|
|
8996
|
+
readonly 'purchase_price': io.flow.v0.models.PurchasePriceBreakdown;
|
|
8997
|
+
readonly 'fees': io.flow.v0.models.OrderPriceFee[];
|
|
10903
8998
|
}
|
|
10904
8999
|
|
|
10905
9000
|
interface OrderPriceDetailComponent {
|
|
@@ -10911,6 +9006,12 @@ declare namespace io.flow.v0.models {
|
|
|
10911
9006
|
readonly 'name'?: string;
|
|
10912
9007
|
}
|
|
10913
9008
|
|
|
9009
|
+
interface OrderPriceFee {
|
|
9010
|
+
readonly 'key': string;
|
|
9011
|
+
readonly 'value': io.flow.v0.models.PriceWithBase;
|
|
9012
|
+
readonly 'type': io.flow.v0.enums.OrderPriceFeeType;
|
|
9013
|
+
}
|
|
9014
|
+
|
|
10914
9015
|
interface OrderPromotionTrigger {
|
|
10915
9016
|
readonly 'type': io.flow.v0.enums.PromotionTriggerType;
|
|
10916
9017
|
readonly 'min'?: io.flow.v0.models.Price;
|
|
@@ -10932,6 +9033,12 @@ declare namespace io.flow.v0.models {
|
|
|
10932
9033
|
readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
10933
9034
|
}
|
|
10934
9035
|
|
|
9036
|
+
interface OrderRate {
|
|
9037
|
+
readonly 'from': string;
|
|
9038
|
+
readonly 'to': string;
|
|
9039
|
+
readonly 'rate': number;
|
|
9040
|
+
}
|
|
9041
|
+
|
|
10935
9042
|
interface OrderReference {
|
|
10936
9043
|
readonly 'discriminator': 'order_reference';
|
|
10937
9044
|
readonly 'id': string;
|
|
@@ -10980,26 +9087,10 @@ declare namespace io.flow.v0.models {
|
|
|
10980
9087
|
readonly 'replacement_order': io.flow.v0.models.Order;
|
|
10981
9088
|
}
|
|
10982
9089
|
|
|
10983
|
-
interface OrderReplacementDeleted {
|
|
10984
|
-
readonly 'discriminator': 'order_replacement_deleted';
|
|
10985
|
-
readonly 'event_id': string;
|
|
10986
|
-
readonly 'timestamp': string;
|
|
10987
|
-
readonly 'organization': string;
|
|
10988
|
-
readonly 'order_replacement': io.flow.v0.models.OrderReplacement;
|
|
10989
|
-
}
|
|
10990
|
-
|
|
10991
9090
|
interface OrderReplacementForm {
|
|
10992
9091
|
readonly 'items'?: io.flow.v0.models.LineItemForm[];
|
|
10993
9092
|
}
|
|
10994
9093
|
|
|
10995
|
-
interface OrderReplacementUpserted {
|
|
10996
|
-
readonly 'discriminator': 'order_replacement_upserted';
|
|
10997
|
-
readonly 'event_id': string;
|
|
10998
|
-
readonly 'timestamp': string;
|
|
10999
|
-
readonly 'organization': string;
|
|
11000
|
-
readonly 'order_replacement': io.flow.v0.models.OrderReplacement;
|
|
11001
|
-
}
|
|
11002
|
-
|
|
11003
9094
|
interface OrderRuleReference {
|
|
11004
9095
|
readonly 'id': string;
|
|
11005
9096
|
readonly 'key': string;
|
|
@@ -11020,14 +9111,6 @@ declare namespace io.flow.v0.models {
|
|
|
11020
9111
|
readonly 'to_service_id': string;
|
|
11021
9112
|
}
|
|
11022
9113
|
|
|
11023
|
-
interface OrderServiceChangeRequest {
|
|
11024
|
-
readonly 'discriminator': 'order_service_change_request';
|
|
11025
|
-
readonly 'event_id': string;
|
|
11026
|
-
readonly 'timestamp': string;
|
|
11027
|
-
readonly 'organization': string;
|
|
11028
|
-
readonly 'request': io.flow.v0.models.OrderServiceChangeRequestData;
|
|
11029
|
-
}
|
|
11030
|
-
|
|
11031
9114
|
interface OrderServiceChangeRequestData {
|
|
11032
9115
|
readonly 'id': string;
|
|
11033
9116
|
readonly 'source_url': string;
|
|
@@ -11102,36 +9185,6 @@ declare namespace io.flow.v0.models {
|
|
|
11102
9185
|
readonly 'rate_label'?: string;
|
|
11103
9186
|
}
|
|
11104
9187
|
|
|
11105
|
-
interface OrderUpserted {
|
|
11106
|
-
readonly 'discriminator': 'order_upserted';
|
|
11107
|
-
readonly 'event_id': string;
|
|
11108
|
-
readonly 'timestamp': string;
|
|
11109
|
-
readonly 'organization': string;
|
|
11110
|
-
readonly 'number': string;
|
|
11111
|
-
readonly 'environment': string;
|
|
11112
|
-
readonly 'experience_id': string;
|
|
11113
|
-
readonly 'expires_at': string;
|
|
11114
|
-
readonly 'customer': io.flow.v0.models.OrderCustomer;
|
|
11115
|
-
readonly 'selections': string[];
|
|
11116
|
-
readonly 'items': io.flow.v0.models.LocalizedLineItem[];
|
|
11117
|
-
readonly 'destination': io.flow.v0.models.OrderAddress;
|
|
11118
|
-
readonly 'deliveries': io.flow.v0.unions.Delivery[];
|
|
11119
|
-
readonly 'prices': io.flow.v0.models.OrderPriceDetail[];
|
|
11120
|
-
readonly 'order_id'?: string;
|
|
11121
|
-
readonly 'payments'?: io.flow.v0.models.OrderPayment[];
|
|
11122
|
-
readonly 'discount'?: io.flow.v0.models.Money;
|
|
11123
|
-
readonly 'delivered_duty'?: string;
|
|
11124
|
-
readonly 'total': io.flow.v0.models.LocalizedTotal;
|
|
11125
|
-
readonly 'created_at'?: string;
|
|
11126
|
-
readonly 'updated_at'?: string;
|
|
11127
|
-
readonly 'submitted_at'?: string;
|
|
11128
|
-
readonly 'lines'?: io.flow.v0.models.Line[];
|
|
11129
|
-
readonly 'attributes'?: Record<string, string>;
|
|
11130
|
-
readonly 'geo'?: io.flow.v0.models.OrderGeo;
|
|
11131
|
-
readonly 'merchant_of_record'?: io.flow.v0.enums.OrderMerchantOfRecord;
|
|
11132
|
-
readonly 'tax_registration'?: io.flow.v0.models.TaxRegistration;
|
|
11133
|
-
}
|
|
11134
|
-
|
|
11135
9188
|
interface OrderUpsertedV2 {
|
|
11136
9189
|
readonly 'discriminator': 'order_upserted_v2';
|
|
11137
9190
|
readonly 'event_id': string;
|
|
@@ -12617,33 +10670,12 @@ declare namespace io.flow.v0.models {
|
|
|
12617
10670
|
readonly 'rounding'?: io.flow.v0.models.Rounding;
|
|
12618
10671
|
}
|
|
12619
10672
|
|
|
12620
|
-
interface PricingDeleted {
|
|
12621
|
-
readonly 'discriminator': 'pricing_deleted';
|
|
12622
|
-
readonly 'event_id': string;
|
|
12623
|
-
readonly 'timestamp': string;
|
|
12624
|
-
readonly 'organization': string;
|
|
12625
|
-
readonly 'experience_key': string;
|
|
12626
|
-
}
|
|
12627
|
-
|
|
12628
10673
|
interface PricingSettings {
|
|
12629
10674
|
readonly 'editable': boolean;
|
|
12630
10675
|
readonly 'default_tax_display': io.flow.v0.enums.PricingLevySetting;
|
|
12631
10676
|
readonly 'default_duty_display': io.flow.v0.enums.PricingLevySetting;
|
|
12632
10677
|
}
|
|
12633
10678
|
|
|
12634
|
-
interface PricingUpserted {
|
|
12635
|
-
readonly 'discriminator': 'pricing_upserted';
|
|
12636
|
-
readonly 'event_id': string;
|
|
12637
|
-
readonly 'timestamp': string;
|
|
12638
|
-
readonly 'organization': string;
|
|
12639
|
-
readonly 'experience_key': string;
|
|
12640
|
-
readonly 'vat': string;
|
|
12641
|
-
readonly 'duty': string;
|
|
12642
|
-
readonly 'rounding_type'?: string;
|
|
12643
|
-
readonly 'rounding_method'?: string;
|
|
12644
|
-
readonly 'rounding_value'?: number;
|
|
12645
|
-
}
|
|
12646
|
-
|
|
12647
10679
|
interface PricingVersion {
|
|
12648
10680
|
readonly 'id': string;
|
|
12649
10681
|
readonly 'timestamp': string;
|
|
@@ -12664,6 +10696,7 @@ declare namespace io.flow.v0.models {
|
|
|
12664
10696
|
readonly 'taxonomy_category'?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
12665
10697
|
readonly 'taxonomy_data'?: io.flow.v0.models.ProductTaxonomyData[];
|
|
12666
10698
|
readonly 'item_numbers': string[];
|
|
10699
|
+
readonly 'highest_value_item_number'?: string;
|
|
12667
10700
|
readonly 'updated_at': string;
|
|
12668
10701
|
readonly 'deleted_at'?: string;
|
|
12669
10702
|
}
|
|
@@ -12692,11 +10725,12 @@ declare namespace io.flow.v0.models {
|
|
|
12692
10725
|
readonly 'sellability_restricted_regions'?: string[];
|
|
12693
10726
|
readonly 'reasons_per_region'?: io.flow.v0.models.ReasonsPerRegion[];
|
|
12694
10727
|
readonly 'review_status'?: io.flow.v0.enums.ReviewStatus;
|
|
12695
|
-
readonly 'rules'?:
|
|
10728
|
+
readonly 'rules'?: string[];
|
|
12696
10729
|
readonly 'updated_by'?: string;
|
|
12697
10730
|
readonly 'product_restriction_id'?: string;
|
|
12698
10731
|
readonly 'hs_code'?: string;
|
|
12699
|
-
readonly 'restricted_regions_by_type'?: io.flow.
|
|
10732
|
+
readonly 'restricted_regions_by_type'?: io.flow.v0.models.SellablilityRegionResult[];
|
|
10733
|
+
readonly 'needs_action_attributes'?: io.flow.v0.models.NeedsActionAttributes[];
|
|
12700
10734
|
}
|
|
12701
10735
|
|
|
12702
10736
|
interface ProductRestrictionResultDeleted {
|
|
@@ -12715,6 +10749,26 @@ declare namespace io.flow.v0.models {
|
|
|
12715
10749
|
readonly 'product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
|
|
12716
10750
|
}
|
|
12717
10751
|
|
|
10752
|
+
interface ProductSellability {
|
|
10753
|
+
readonly 'discriminator': 'product_sellability';
|
|
10754
|
+
readonly 'shop_id': string;
|
|
10755
|
+
readonly 'product_id'?: string;
|
|
10756
|
+
readonly 'request_id': string;
|
|
10757
|
+
readonly 'hs6_code': string;
|
|
10758
|
+
readonly 'restricted_regions': io.flow.v0.models.SellablilityRegionResult[];
|
|
10759
|
+
}
|
|
10760
|
+
|
|
10761
|
+
interface ProductSellabilityForm {
|
|
10762
|
+
readonly 'shop_id': string;
|
|
10763
|
+
readonly 'product_id'?: string;
|
|
10764
|
+
readonly 'name': string;
|
|
10765
|
+
readonly 'price': io.flow.v0.models.Money;
|
|
10766
|
+
readonly 'description': string;
|
|
10767
|
+
readonly 'taxonomy_category': io.flow.v0.models.ProductTaxonomyCategory;
|
|
10768
|
+
readonly 'status'?: io.flow.v0.enums.SellabilityRequestStatus;
|
|
10769
|
+
readonly 'dry_run'?: boolean;
|
|
10770
|
+
}
|
|
10771
|
+
|
|
12718
10772
|
interface ProductTaxonomyCategory {
|
|
12719
10773
|
readonly 'name': string;
|
|
12720
10774
|
readonly 'full_name': string;
|
|
@@ -12723,6 +10777,12 @@ declare namespace io.flow.v0.models {
|
|
|
12723
10777
|
interface ProductTaxonomyData {
|
|
12724
10778
|
readonly 'key': string;
|
|
12725
10779
|
readonly 'value': string[];
|
|
10780
|
+
readonly 'value_obj'?: io.flow.v0.models.ProductTaxonomyValue[];
|
|
10781
|
+
}
|
|
10782
|
+
|
|
10783
|
+
interface ProductTaxonomyValue {
|
|
10784
|
+
readonly 'handle': string;
|
|
10785
|
+
readonly 'name': string;
|
|
12726
10786
|
}
|
|
12727
10787
|
|
|
12728
10788
|
interface ProductUpdated {
|
|
@@ -12762,6 +10822,12 @@ declare namespace io.flow.v0.models {
|
|
|
12762
10822
|
readonly 'id': string;
|
|
12763
10823
|
}
|
|
12764
10824
|
|
|
10825
|
+
interface PurchasePriceBreakdown {
|
|
10826
|
+
readonly 'total_price': io.flow.v0.models.PriceWithBase;
|
|
10827
|
+
readonly 'product_price': io.flow.v0.models.PriceWithBase;
|
|
10828
|
+
readonly 'fees': io.flow.v0.models.OrderPriceFee[];
|
|
10829
|
+
}
|
|
10830
|
+
|
|
12765
10831
|
interface Query {
|
|
12766
10832
|
readonly 'q': string;
|
|
12767
10833
|
readonly 'filters': io.flow.v0.unions.QueryFilter[];
|
|
@@ -13613,6 +11679,20 @@ declare namespace io.flow.v0.models {
|
|
|
13613
11679
|
readonly 'roles': io.flow.v0.enums.FlowRole[];
|
|
13614
11680
|
}
|
|
13615
11681
|
|
|
11682
|
+
interface SarveshItemDeleted {
|
|
11683
|
+
readonly 'discriminator': 'sarvesh_item_deleted';
|
|
11684
|
+
readonly 'event_id': string;
|
|
11685
|
+
readonly 'timestamp': string;
|
|
11686
|
+
readonly 'id': string;
|
|
11687
|
+
}
|
|
11688
|
+
|
|
11689
|
+
interface SarveshItemUpserted {
|
|
11690
|
+
readonly 'discriminator': 'sarvesh_item_upserted';
|
|
11691
|
+
readonly 'event_id': string;
|
|
11692
|
+
readonly 'timestamp': string;
|
|
11693
|
+
readonly 'item': io.flow.tech.onboarding.playground.v0.models.SarveshItem;
|
|
11694
|
+
}
|
|
11695
|
+
|
|
13616
11696
|
interface Schedule {
|
|
13617
11697
|
readonly 'calendar'?: io.flow.v0.enums.Calendar;
|
|
13618
11698
|
readonly 'holiday': io.flow.v0.enums.HolidayCalendar;
|
|
@@ -13664,6 +11744,17 @@ declare namespace io.flow.v0.models {
|
|
|
13664
11744
|
readonly 'issuer_options': io.flow.v0.models.IssuerReference[];
|
|
13665
11745
|
}
|
|
13666
11746
|
|
|
11747
|
+
interface SellabilityError {
|
|
11748
|
+
readonly 'discriminator': 'sellability_error';
|
|
11749
|
+
readonly 'code': io.flow.v0.enums.SellabilityErrorCode;
|
|
11750
|
+
readonly 'messages': string[];
|
|
11751
|
+
}
|
|
11752
|
+
|
|
11753
|
+
interface SellablilityRegionResult {
|
|
11754
|
+
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
11755
|
+
readonly 'regions': string[];
|
|
11756
|
+
}
|
|
11757
|
+
|
|
13667
11758
|
interface ServiceReference {
|
|
13668
11759
|
readonly 'id': string;
|
|
13669
11760
|
}
|
|
@@ -14465,6 +12556,14 @@ declare namespace io.flow.v0.models {
|
|
|
14465
12556
|
readonly 'statement': io.flow.v0.models.Statement;
|
|
14466
12557
|
}
|
|
14467
12558
|
|
|
12559
|
+
interface StreetAddress {
|
|
12560
|
+
readonly 'streets'?: string[];
|
|
12561
|
+
readonly 'city'?: string;
|
|
12562
|
+
readonly 'province'?: string;
|
|
12563
|
+
readonly 'postal'?: string;
|
|
12564
|
+
readonly 'country'?: string;
|
|
12565
|
+
}
|
|
12566
|
+
|
|
14468
12567
|
interface StripeAuthenticationData {
|
|
14469
12568
|
readonly 'discriminator': 'stripe_authentication_data';
|
|
14470
12569
|
readonly 'secret_key_reference': string;
|
|
@@ -14619,6 +12718,93 @@ declare namespace io.flow.v0.models {
|
|
|
14619
12718
|
readonly 'deminimis'?: io.flow.v0.unions.Deminimis;
|
|
14620
12719
|
}
|
|
14621
12720
|
|
|
12721
|
+
interface TaxDutyCalculatorValidationError {
|
|
12722
|
+
readonly 'code': io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
|
|
12723
|
+
readonly 'messages': string[];
|
|
12724
|
+
}
|
|
12725
|
+
|
|
12726
|
+
interface TaxDutyQuote {
|
|
12727
|
+
readonly 'id': string;
|
|
12728
|
+
readonly 'primary_identifier': string;
|
|
12729
|
+
readonly 'attributes'?: Record<string, string>;
|
|
12730
|
+
readonly 'merchant_of_record': io.flow.v0.enums.MerchantOfRecord;
|
|
12731
|
+
readonly 'delivered_duty': io.flow.v0.enums.DeliveredDuty;
|
|
12732
|
+
readonly 'destination': io.flow.v0.models.StreetAddress;
|
|
12733
|
+
readonly 'quote_date': string;
|
|
12734
|
+
readonly 'currency': string;
|
|
12735
|
+
readonly 'lines': io.flow.v0.models.TaxDutyQuoteLineItem[];
|
|
12736
|
+
readonly 'shipping': io.flow.v0.models.TaxDutyQuoteSimpleShipping[];
|
|
12737
|
+
readonly 'total_values': io.flow.v0.models.TaxDutyQuoteValues;
|
|
12738
|
+
}
|
|
12739
|
+
|
|
12740
|
+
interface TaxDutyQuoteFeeValue {
|
|
12741
|
+
readonly 'amount': number;
|
|
12742
|
+
readonly 'description': string;
|
|
12743
|
+
readonly 'amount_refundable_on_return': number;
|
|
12744
|
+
}
|
|
12745
|
+
|
|
12746
|
+
interface TaxDutyQuoteForm {
|
|
12747
|
+
readonly 'primary_identifier': string;
|
|
12748
|
+
readonly 'attributes'?: Record<string, string>;
|
|
12749
|
+
readonly 'delivered_duty': io.flow.v0.enums.DeliveredDuty;
|
|
12750
|
+
readonly 'destination': io.flow.v0.models.StreetAddress;
|
|
12751
|
+
readonly 'currency': string;
|
|
12752
|
+
readonly 'lines': io.flow.v0.models.TaxDutyQuoteLineItemForm[];
|
|
12753
|
+
readonly 'shipping': io.flow.v0.models.TaxDutyQuoteSimpleShippingForm[];
|
|
12754
|
+
readonly 'includes'?: io.flow.v0.enums.LevyInclusion[];
|
|
12755
|
+
}
|
|
12756
|
+
|
|
12757
|
+
interface TaxDutyQuoteLineItem {
|
|
12758
|
+
readonly 'primary_identifier': string;
|
|
12759
|
+
readonly 'attributes'?: Record<string, string>;
|
|
12760
|
+
readonly 'ship_from': io.flow.v0.models.StreetAddress;
|
|
12761
|
+
readonly 'quantity': number;
|
|
12762
|
+
readonly 'unit_values': io.flow.v0.models.TaxDutyQuoteValues;
|
|
12763
|
+
readonly 'country_of_origin': string;
|
|
12764
|
+
readonly 'hs_code': string;
|
|
12765
|
+
}
|
|
12766
|
+
|
|
12767
|
+
interface TaxDutyQuoteLineItemForm {
|
|
12768
|
+
readonly 'primary_identifier': string;
|
|
12769
|
+
readonly 'attributes'?: Record<string, string>;
|
|
12770
|
+
readonly 'ship_from': io.flow.v0.models.StreetAddress;
|
|
12771
|
+
readonly 'quantity': number;
|
|
12772
|
+
readonly 'unit_price': number;
|
|
12773
|
+
readonly 'unit_weight'?: io.flow.v0.models.Measurement;
|
|
12774
|
+
readonly 'country_of_origin'?: string;
|
|
12775
|
+
readonly 'hs_code'?: string;
|
|
12776
|
+
readonly 'includes': io.flow.v0.enums.LevyInclusion[];
|
|
12777
|
+
readonly 'preferential_rate_eligibilities'?: io.flow.v0.enums.PreferentialRateEligibility[];
|
|
12778
|
+
}
|
|
12779
|
+
|
|
12780
|
+
interface TaxDutyQuoteSimpleLevyValue {
|
|
12781
|
+
readonly 'discriminator': 'tax_duty_quote_simple_levy_value';
|
|
12782
|
+
readonly 'amount': number;
|
|
12783
|
+
readonly 'rate': number;
|
|
12784
|
+
readonly 'description': string;
|
|
12785
|
+
readonly 'zero_levy_reason'?: io.flow.v0.enums.ZeroLevyReasonCode[];
|
|
12786
|
+
readonly 'amount_refundable_on_return': number;
|
|
12787
|
+
}
|
|
12788
|
+
|
|
12789
|
+
interface TaxDutyQuoteSimpleShipping {
|
|
12790
|
+
readonly 'values': io.flow.v0.models.TaxDutyQuoteValues;
|
|
12791
|
+
readonly 'ship_from': io.flow.v0.models.StreetAddress;
|
|
12792
|
+
}
|
|
12793
|
+
|
|
12794
|
+
interface TaxDutyQuoteSimpleShippingForm {
|
|
12795
|
+
readonly 'price': number;
|
|
12796
|
+
readonly 'includes': io.flow.v0.enums.LevyInclusion[];
|
|
12797
|
+
readonly 'ship_from'?: io.flow.v0.models.StreetAddress;
|
|
12798
|
+
}
|
|
12799
|
+
|
|
12800
|
+
interface TaxDutyQuoteValues {
|
|
12801
|
+
readonly 'price': number;
|
|
12802
|
+
readonly 'duty': io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
12803
|
+
readonly 'tax': io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
12804
|
+
readonly 'fees': io.flow.v0.models.TaxDutyQuoteFeeValue;
|
|
12805
|
+
readonly 'total': number;
|
|
12806
|
+
}
|
|
12807
|
+
|
|
14622
12808
|
interface TaxRegistration {
|
|
14623
12809
|
readonly 'id': string;
|
|
14624
12810
|
readonly 'key': string;
|
|
@@ -15472,7 +13658,7 @@ declare namespace io.flow.v0.unions {
|
|
|
15472
13658
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
15473
13659
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
15474
13660
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
15475
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.
|
|
13661
|
+
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.SarveshItemUpserted | io.flow.v0.models.SarveshItemDeleted | io.flow.v0.models.HoseinItemUpserted | io.flow.v0.models.HoseinItemDeleted | io.flow.v0.models.NiallItemUpserted | io.flow.v0.models.NiallItemDeleted | io.flow.v0.models.RohanItemUpserted | io.flow.v0.models.RohanItemDeleted | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.AnirbanItemUpserted | io.flow.v0.models.AnirbanItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.TransferUpserted | io.flow.v0.models.TransferDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
|
|
15476
13662
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
|
|
15477
13663
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
15478
13664
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -15543,6 +13729,7 @@ declare namespace io.flow.v0.unions {
|
|
|
15543
13729
|
type RepeatSchedule = (io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly);
|
|
15544
13730
|
type ReturnSource = (io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor);
|
|
15545
13731
|
type SdkAdyenV3AuthenticationToken = (io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken);
|
|
13732
|
+
type SellabilityResponse = (io.flow.v0.models.ProductSellability | io.flow.v0.models.SellabilityError);
|
|
15546
13733
|
type ServiceDescription = (io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown);
|
|
15547
13734
|
type ServiceFee = (io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.v0.models.OversizePieceSurchargeServiceFee | io.flow.v0.models.OverweightPieceSurchargeServiceFee | io.flow.v0.models.RemoteAreaByWeightServiceFee | io.flow.v0.models.AdditionalHandlingServiceFee | io.flow.v0.models.LargePackageServiceFee | io.flow.v0.models.SecurityServiceFee | io.flow.v0.models.FixedDdpServiceFee | io.flow.v0.models.FixedCurrencyConversionServiceFee | io.flow.v0.models.EeiFilingServiceFee);
|
|
15548
13735
|
type Session = (io.flow.v0.models.OrganizationSession);
|
|
@@ -15552,6 +13739,7 @@ declare namespace io.flow.v0.unions {
|
|
|
15552
13739
|
type ShippingNotificationForm = (io.flow.v0.models.DetailedShippingNotificationForm | io.flow.v0.models.SinglePackageShippingNotificationForm | io.flow.v0.models.SummaryShippingNotificationForm);
|
|
15553
13740
|
type ShopifyCartAddForm = (io.flow.v0.models.ShopifyCartAddSingleForm | io.flow.v0.models.ShopifyCartAddMultipleForm);
|
|
15554
13741
|
type ShopifyEventBucket = (io.flow.v0.models.ShopifyItemEventBucket);
|
|
13742
|
+
type TaxDutyQuoteLevyValue = (io.flow.v0.models.TaxDutyQuoteSimpleLevyValue);
|
|
15555
13743
|
type TaxSetting = (io.flow.v0.models.AvalaraTaxSetting | io.flow.v0.models.AvalaraTaxCsvSetting);
|
|
15556
13744
|
type ThreedsChallengeAction = (io.flow.v0.models.ThreedsTwoChallengeRequest);
|
|
15557
13745
|
type ThreedsIdentifyAction = (io.flow.v0.models.ThreedsTwoMethod);
|
|
@@ -15661,6 +13849,7 @@ export const laneDirection: PropTypes.Requireable<io.flow.v0.enums.LaneDirection
|
|
|
15661
13849
|
export const lanePreselectPreference: PropTypes.Requireable<io.flow.v0.enums.LanePreselectPreference>;
|
|
15662
13850
|
export const laneStrategy: PropTypes.Requireable<io.flow.v0.enums.LaneStrategy>;
|
|
15663
13851
|
export const levyComponent: PropTypes.Requireable<io.flow.v0.enums.LevyComponent>;
|
|
13852
|
+
export const levyInclusion: PropTypes.Requireable<io.flow.v0.enums.LevyInclusion>;
|
|
15664
13853
|
export const levyStrategy: PropTypes.Requireable<io.flow.v0.enums.LevyStrategy>;
|
|
15665
13854
|
export const locationErrorCode: PropTypes.Requireable<io.flow.v0.enums.LocationErrorCode>;
|
|
15666
13855
|
export const logisticsFormatPreference: PropTypes.Requireable<io.flow.v0.enums.LogisticsFormatPreference>;
|
|
@@ -15681,6 +13870,7 @@ export const orderPaymentSourceType: PropTypes.Requireable<io.flow.v0.enums.Orde
|
|
|
15681
13870
|
export const orderPaymentType: PropTypes.Requireable<io.flow.v0.enums.OrderPaymentType>;
|
|
15682
13871
|
export const orderPriceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.OrderPriceDetailComponentKey>;
|
|
15683
13872
|
export const orderPriceDetailKey: PropTypes.Requireable<io.flow.v0.enums.OrderPriceDetailKey>;
|
|
13873
|
+
export const orderPriceFeeType: PropTypes.Requireable<io.flow.v0.enums.OrderPriceFeeType>;
|
|
15684
13874
|
export const orderRefundSummaryIncludes: PropTypes.Requireable<io.flow.v0.enums.OrderRefundSummaryIncludes>;
|
|
15685
13875
|
export const orderRefundSummaryPartialCharged: PropTypes.Requireable<io.flow.v0.enums.OrderRefundSummaryPartialCharged>;
|
|
15686
13876
|
export const orderStatus: PropTypes.Requireable<io.flow.v0.enums.OrderStatus>;
|
|
@@ -15711,6 +13901,7 @@ export const pendingPayoutTransactionReasonCode: PropTypes.Requireable<io.flow.v
|
|
|
15711
13901
|
export const permittedHttpMethod: PropTypes.Requireable<io.flow.v0.enums.PermittedHttpMethod>;
|
|
15712
13902
|
export const physicalDeliverySpecialSerivce: PropTypes.Requireable<io.flow.v0.enums.PhysicalDeliverySpecialSerivce>;
|
|
15713
13903
|
export const postalType: PropTypes.Requireable<io.flow.v0.enums.PostalType>;
|
|
13904
|
+
export const preferentialRateEligibility: PropTypes.Requireable<io.flow.v0.enums.PreferentialRateEligibility>;
|
|
15714
13905
|
export const preferredServiceSelectionStrategy: PropTypes.Requireable<io.flow.v0.enums.PreferredServiceSelectionStrategy>;
|
|
15715
13906
|
export const priceAccuracy: PropTypes.Requireable<io.flow.v0.enums.PriceAccuracy>;
|
|
15716
13907
|
export const priceBookStatus: PropTypes.Requireable<io.flow.v0.enums.PriceBookStatus>;
|
|
@@ -15718,7 +13909,6 @@ export const priceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.Pri
|
|
|
15718
13909
|
export const priceDetailKey: PropTypes.Requireable<io.flow.v0.enums.PriceDetailKey>;
|
|
15719
13910
|
export const priceFacetBoundary: PropTypes.Requireable<io.flow.v0.enums.PriceFacetBoundary>;
|
|
15720
13911
|
export const pricingLevySetting: PropTypes.Requireable<io.flow.v0.enums.PricingLevySetting>;
|
|
15721
|
-
export const productRestrictionRule: PropTypes.Requireable<io.flow.v0.enums.ProductRestrictionRule>;
|
|
15722
13912
|
export const promotionTriggerType: PropTypes.Requireable<io.flow.v0.enums.PromotionTriggerType>;
|
|
15723
13913
|
export const provinceType: PropTypes.Requireable<io.flow.v0.enums.ProvinceType>;
|
|
15724
13914
|
export const quoteErrorCode: PropTypes.Requireable<io.flow.v0.enums.QuoteErrorCode>;
|
|
@@ -15738,7 +13928,10 @@ export const reviewStatus: PropTypes.Requireable<io.flow.v0.enums.ReviewStatus>;
|
|
|
15738
13928
|
export const role: PropTypes.Requireable<io.flow.v0.enums.Role>;
|
|
15739
13929
|
export const roundingMethod: PropTypes.Requireable<io.flow.v0.enums.RoundingMethod>;
|
|
15740
13930
|
export const roundingType: PropTypes.Requireable<io.flow.v0.enums.RoundingType>;
|
|
13931
|
+
export const ruleEffectType: PropTypes.Requireable<io.flow.v0.enums.RuleEffectType>;
|
|
15741
13932
|
export const scheduleExceptionStatus: PropTypes.Requireable<io.flow.v0.enums.ScheduleExceptionStatus>;
|
|
13933
|
+
export const sellabilityErrorCode: PropTypes.Requireable<io.flow.v0.enums.SellabilityErrorCode>;
|
|
13934
|
+
export const sellabilityRequestStatus: PropTypes.Requireable<io.flow.v0.enums.SellabilityRequestStatus>;
|
|
15742
13935
|
export const shipmentIntegrationType: PropTypes.Requireable<io.flow.v0.enums.ShipmentIntegrationType>;
|
|
15743
13936
|
export const shipmentRecipient: PropTypes.Requireable<io.flow.v0.enums.ShipmentRecipient>;
|
|
15744
13937
|
export const shippingConfigurationType: PropTypes.Requireable<io.flow.v0.enums.ShippingConfigurationType>;
|
|
@@ -15754,6 +13947,7 @@ export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.Subcat
|
|
|
15754
13947
|
export const substatusCode: PropTypes.Requireable<io.flow.v0.enums.SubstatusCode>;
|
|
15755
13948
|
export const surchargeResponsibleParty: PropTypes.Requireable<io.flow.v0.enums.SurchargeResponsibleParty>;
|
|
15756
13949
|
export const taxApplicability: PropTypes.Requireable<io.flow.v0.enums.TaxApplicability>;
|
|
13950
|
+
export const taxDutyCalculatorValidationErrorCode: PropTypes.Requireable<io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode>;
|
|
15757
13951
|
export const taxDutyTransactionReasonCode: PropTypes.Requireable<io.flow.v0.enums.TaxDutyTransactionReasonCode>;
|
|
15758
13952
|
export const taxReportType: PropTypes.Requireable<io.flow.v0.enums.TaxReportType>;
|
|
15759
13953
|
export const taxVerificationResult: PropTypes.Requireable<io.flow.v0.enums.TaxVerificationResult>;
|
|
@@ -15786,6 +13980,7 @@ export const visibility: PropTypes.Requireable<io.flow.v0.enums.Visibility>;
|
|
|
15786
13980
|
export const webhookStatus: PropTypes.Requireable<io.flow.v0.enums.WebhookStatus>;
|
|
15787
13981
|
export const withholdingDeductionType: PropTypes.Requireable<io.flow.v0.enums.WithholdingDeductionType>;
|
|
15788
13982
|
export const zeroAmountIndicator: PropTypes.Requireable<io.flow.v0.enums.ZeroAmountIndicator>;
|
|
13983
|
+
export const zeroLevyReasonCode: PropTypes.Requireable<io.flow.v0.enums.ZeroLevyReasonCode>;
|
|
15789
13984
|
export const abandonedOrderEmailSettings: PropTypes.Requireable<io.flow.v0.models.AbandonedOrderEmailSettings>;
|
|
15790
13985
|
export const abandonedOrderPromotion: PropTypes.Requireable<io.flow.v0.models.AbandonedOrderPromotion>;
|
|
15791
13986
|
export const abandonedOrderPromotionDiscountDetails: PropTypes.Requireable<io.flow.v0.models.AbandonedOrderPromotionDiscountDetails>;
|
|
@@ -15846,6 +14041,8 @@ export const allocationV2: PropTypes.Requireable<io.flow.v0.models.AllocationV2>
|
|
|
15846
14041
|
export const amountMargin: PropTypes.Requireable<io.flow.v0.models.AmountMargin>;
|
|
15847
14042
|
export const amountMarginForm: PropTypes.Requireable<io.flow.v0.models.AmountMarginForm>;
|
|
15848
14043
|
export const analyticsExportType: PropTypes.Requireable<io.flow.v0.models.AnalyticsExportType>;
|
|
14044
|
+
export const anirbanItemDeleted: PropTypes.Requireable<io.flow.v0.models.AnirbanItemDeleted>;
|
|
14045
|
+
export const anirbanItemUpserted: PropTypes.Requireable<io.flow.v0.models.AnirbanItemUpserted>;
|
|
15849
14046
|
export const anshItemDeleted: PropTypes.Requireable<io.flow.v0.models.AnshItemDeleted>;
|
|
15850
14047
|
export const anshItemUpserted: PropTypes.Requireable<io.flow.v0.models.AnshItemUpserted>;
|
|
15851
14048
|
export const applePayMerchantValidationPayload: PropTypes.Requireable<io.flow.v0.models.ApplePayMerchantValidationPayload>;
|
|
@@ -15884,10 +14081,6 @@ export const authorizationVersion: PropTypes.Requireable<io.flow.v0.models.Autho
|
|
|
15884
14081
|
export const availableFilterStructured: PropTypes.Requireable<io.flow.v0.models.AvailableFilterStructured>;
|
|
15885
14082
|
export const availableFilterUnstructured: PropTypes.Requireable<io.flow.v0.models.AvailableFilterUnstructured>;
|
|
15886
14083
|
export const availablePromotion: PropTypes.Requireable<io.flow.v0.models.AvailablePromotion>;
|
|
15887
|
-
export const availablePromotionsDeleted: PropTypes.Requireable<io.flow.v0.models.AvailablePromotionsDeleted>;
|
|
15888
|
-
export const availablePromotionsDeletedV2: PropTypes.Requireable<io.flow.v0.models.AvailablePromotionsDeletedV2>;
|
|
15889
|
-
export const availablePromotionsUpserted: PropTypes.Requireable<io.flow.v0.models.AvailablePromotionsUpserted>;
|
|
15890
|
-
export const availablePromotionsUpsertedV2: PropTypes.Requireable<io.flow.v0.models.AvailablePromotionsUpsertedV2>;
|
|
15891
14084
|
export const availableService: PropTypes.Requireable<io.flow.v0.models.AvailableService>;
|
|
15892
14085
|
export const avalaraTaxCsvSetting: PropTypes.Requireable<io.flow.v0.models.AvalaraTaxCsvSetting>;
|
|
15893
14086
|
export const avalaraTaxSetting: PropTypes.Requireable<io.flow.v0.models.AvalaraTaxSetting>;
|
|
@@ -16064,9 +14257,7 @@ export const countryPicker: PropTypes.Requireable<io.flow.v0.models.CountryPicke
|
|
|
16064
14257
|
export const countryPickerForm: PropTypes.Requireable<io.flow.v0.models.CountryPickerForm>;
|
|
16065
14258
|
export const countryShippingPricing: PropTypes.Requireable<io.flow.v0.models.CountryShippingPricing>;
|
|
16066
14259
|
export const countryStatus: PropTypes.Requireable<io.flow.v0.models.CountryStatus>;
|
|
16067
|
-
export const countryStatusDeleted: PropTypes.Requireable<io.flow.v0.models.CountryStatusDeleted>;
|
|
16068
14260
|
export const countryStatusForm: PropTypes.Requireable<io.flow.v0.models.CountryStatusForm>;
|
|
16069
|
-
export const countryStatusUpserted: PropTypes.Requireable<io.flow.v0.models.CountryStatusUpserted>;
|
|
16070
14261
|
export const creditMemo: PropTypes.Requireable<io.flow.v0.models.CreditMemo>;
|
|
16071
14262
|
export const creditMemoDeleted: PropTypes.Requireable<io.flow.v0.models.CreditMemoDeleted>;
|
|
16072
14263
|
export const creditMemoForm: PropTypes.Requireable<io.flow.v0.models.CreditMemoForm>;
|
|
@@ -16083,8 +14274,6 @@ export const csvPriceBookItemExportRowByItemNumber: PropTypes.Requireable<io.flo
|
|
|
16083
14274
|
export const csvPriceBookItemExportRowBySku: PropTypes.Requireable<io.flow.v0.models.CsvPriceBookItemExportRowBySku>;
|
|
16084
14275
|
export const currency: PropTypes.Requireable<io.flow.v0.models.Currency>;
|
|
16085
14276
|
export const currencyFormat: PropTypes.Requireable<io.flow.v0.models.CurrencyFormat>;
|
|
16086
|
-
export const currencyFormatDeleted: PropTypes.Requireable<io.flow.v0.models.CurrencyFormatDeleted>;
|
|
16087
|
-
export const currencyFormatUpserted: PropTypes.Requireable<io.flow.v0.models.CurrencyFormatUpserted>;
|
|
16088
14277
|
export const currencySymbols: PropTypes.Requireable<io.flow.v0.models.CurrencySymbols>;
|
|
16089
14278
|
export const customer: PropTypes.Requireable<io.flow.v0.models.Customer>;
|
|
16090
14279
|
export const customerAddressBook: PropTypes.Requireable<io.flow.v0.models.CustomerAddressBook>;
|
|
@@ -16169,6 +14358,7 @@ export const ecommercePlatform: PropTypes.Requireable<io.flow.v0.models.Ecommerc
|
|
|
16169
14358
|
export const ecommercePlatformDeleted: PropTypes.Requireable<io.flow.v0.models.EcommercePlatformDeleted>;
|
|
16170
14359
|
export const ecommercePlatformForm: PropTypes.Requireable<io.flow.v0.models.EcommercePlatformForm>;
|
|
16171
14360
|
export const ecommercePlatformUpserted: PropTypes.Requireable<io.flow.v0.models.EcommercePlatformUpserted>;
|
|
14361
|
+
export const editSummary: PropTypes.Requireable<io.flow.v0.models.EditSummary>;
|
|
16172
14362
|
export const eeiFilingRatecardFee: PropTypes.Requireable<io.flow.v0.models.EeiFilingRatecardFee>;
|
|
16173
14363
|
export const eeiFilingServiceFee: PropTypes.Requireable<io.flow.v0.models.EeiFilingServiceFee>;
|
|
16174
14364
|
export const emailAbandonedOrderPromotion: PropTypes.Requireable<io.flow.v0.models.EmailAbandonedOrderPromotion>;
|
|
@@ -16202,15 +14392,11 @@ export const experienceConfigurationReference: PropTypes.Requireable<io.flow.v0.
|
|
|
16202
14392
|
export const experienceCurrencyFormat: PropTypes.Requireable<io.flow.v0.models.ExperienceCurrencyFormat>;
|
|
16203
14393
|
export const experienceCurrencyFormatForm: PropTypes.Requireable<io.flow.v0.models.ExperienceCurrencyFormatForm>;
|
|
16204
14394
|
export const experienceDefaults: PropTypes.Requireable<io.flow.v0.models.ExperienceDefaults>;
|
|
16205
|
-
export const experienceDeleted: PropTypes.Requireable<io.flow.v0.models.ExperienceDeleted>;
|
|
16206
|
-
export const experienceDeletedV2: PropTypes.Requireable<io.flow.v0.models.ExperienceDeletedV2>;
|
|
16207
14395
|
export const experienceExportType: PropTypes.Requireable<io.flow.v0.models.ExperienceExportType>;
|
|
16208
14396
|
export const experienceForm: PropTypes.Requireable<io.flow.v0.models.ExperienceForm>;
|
|
16209
14397
|
export const experienceGeo: PropTypes.Requireable<io.flow.v0.models.ExperienceGeo>;
|
|
16210
14398
|
export const experienceLogisticsSettings: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsSettings>;
|
|
16211
|
-
export const experienceLogisticsSettingsDeleted: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsSettingsDeleted>;
|
|
16212
14399
|
export const experienceLogisticsSettingsPutForm: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsSettingsPutForm>;
|
|
16213
|
-
export const experienceLogisticsSettingsUpserted: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsSettingsUpserted>;
|
|
16214
14400
|
export const experienceLogisticsSummary: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsSummary>;
|
|
16215
14401
|
export const experienceLogisticsTierSummary: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsTierSummary>;
|
|
16216
14402
|
export const experienceLogisticsTierSummaryPrices: PropTypes.Requireable<io.flow.v0.models.ExperienceLogisticsTierSummaryPrices>;
|
|
@@ -16218,10 +14404,8 @@ export const experienceOverview: PropTypes.Requireable<io.flow.v0.models.Experie
|
|
|
16218
14404
|
export const experiencePaymentMethodRule: PropTypes.Requireable<io.flow.v0.models.ExperiencePaymentMethodRule>;
|
|
16219
14405
|
export const experiencePaymentMethodRuleForm: PropTypes.Requireable<io.flow.v0.models.ExperiencePaymentMethodRuleForm>;
|
|
16220
14406
|
export const experiencePriceBookMapping: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceBookMapping>;
|
|
16221
|
-
export const experiencePriceBookMappingDeleted: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceBookMappingDeleted>;
|
|
16222
14407
|
export const experiencePriceBookMappingForm: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceBookMappingForm>;
|
|
16223
14408
|
export const experiencePriceBookMappingPutForm: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceBookMappingPutForm>;
|
|
16224
|
-
export const experiencePriceBookMappingUpserted: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceBookMappingUpserted>;
|
|
16225
14409
|
export const experiencePriceConversion: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceConversion>;
|
|
16226
14410
|
export const experiencePriceConversionRequest: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceConversionRequest>;
|
|
16227
14411
|
export const experiencePriceConversionResponse: PropTypes.Requireable<io.flow.v0.models.ExperiencePriceConversionResponse>;
|
|
@@ -16232,8 +14416,6 @@ export const experienceReference: PropTypes.Requireable<io.flow.v0.models.Experi
|
|
|
16232
14416
|
export const experienceSettings: PropTypes.Requireable<io.flow.v0.models.ExperienceSettings>;
|
|
16233
14417
|
export const experienceStatusForm: PropTypes.Requireable<io.flow.v0.models.ExperienceStatusForm>;
|
|
16234
14418
|
export const experienceSummary: PropTypes.Requireable<io.flow.v0.models.ExperienceSummary>;
|
|
16235
|
-
export const experienceUpserted: PropTypes.Requireable<io.flow.v0.models.ExperienceUpserted>;
|
|
16236
|
-
export const experienceUpsertedV2: PropTypes.Requireable<io.flow.v0.models.ExperienceUpsertedV2>;
|
|
16237
14419
|
export const experienceVersion: PropTypes.Requireable<io.flow.v0.models.ExperienceVersion>;
|
|
16238
14420
|
export const expiration: PropTypes.Requireable<io.flow.v0.models.Expiration>;
|
|
16239
14421
|
export const UNSAFE_export: PropTypes.Requireable<io.flow.v0.models.Export>;
|
|
@@ -16326,6 +14508,8 @@ export const hop: PropTypes.Requireable<io.flow.v0.models.Hop>;
|
|
|
16326
14508
|
export const hopEstimate: PropTypes.Requireable<io.flow.v0.models.HopEstimate>;
|
|
16327
14509
|
export const hopEstimateV2: PropTypes.Requireable<io.flow.v0.models.HopEstimateV2>;
|
|
16328
14510
|
export const hopV2: PropTypes.Requireable<io.flow.v0.models.HopV2>;
|
|
14511
|
+
export const hoseinItemDeleted: PropTypes.Requireable<io.flow.v0.models.HoseinItemDeleted>;
|
|
14512
|
+
export const hoseinItemUpserted: PropTypes.Requireable<io.flow.v0.models.HoseinItemUpserted>;
|
|
16329
14513
|
export const hs10: PropTypes.Requireable<io.flow.v0.models.Hs10>;
|
|
16330
14514
|
export const hs10CodeDeleted: PropTypes.Requireable<io.flow.v0.models.Hs10CodeDeleted>;
|
|
16331
14515
|
export const hs10CodeUpserted: PropTypes.Requireable<io.flow.v0.models.Hs10CodeUpserted>;
|
|
@@ -16337,8 +14521,6 @@ export const identifierForm: PropTypes.Requireable<io.flow.v0.models.IdentifierF
|
|
|
16337
14521
|
export const image: PropTypes.Requireable<io.flow.v0.models.Image>;
|
|
16338
14522
|
export const imageForm: PropTypes.Requireable<io.flow.v0.models.ImageForm>;
|
|
16339
14523
|
export const UNSAFE_import: PropTypes.Requireable<io.flow.v0.models.Import>;
|
|
16340
|
-
export const importCompletedV2: PropTypes.Requireable<io.flow.v0.models.ImportCompletedV2>;
|
|
16341
|
-
export const importFailedV2: PropTypes.Requireable<io.flow.v0.models.ImportFailedV2>;
|
|
16342
14524
|
export const importForm: PropTypes.Requireable<io.flow.v0.models.ImportForm>;
|
|
16343
14525
|
export const importResults: PropTypes.Requireable<io.flow.v0.models.ImportResults>;
|
|
16344
14526
|
export const importTemplate: PropTypes.Requireable<io.flow.v0.models.ImportTemplate>;
|
|
@@ -16376,10 +14558,8 @@ export const itemFormOverlay: PropTypes.Requireable<io.flow.v0.models.ItemFormOv
|
|
|
16376
14558
|
export const itemFormOverlayForm: PropTypes.Requireable<io.flow.v0.models.ItemFormOverlayForm>;
|
|
16377
14559
|
export const itemInserted: PropTypes.Requireable<io.flow.v0.models.ItemInserted>;
|
|
16378
14560
|
export const itemMargin: PropTypes.Requireable<io.flow.v0.models.ItemMargin>;
|
|
16379
|
-
export const itemMarginDeletedV2: PropTypes.Requireable<io.flow.v0.models.ItemMarginDeletedV2>;
|
|
16380
14561
|
export const itemMarginPostForm: PropTypes.Requireable<io.flow.v0.models.ItemMarginPostForm>;
|
|
16381
14562
|
export const itemMarginPutForm: PropTypes.Requireable<io.flow.v0.models.ItemMarginPutForm>;
|
|
16382
|
-
export const itemMarginUpsertedV2: PropTypes.Requireable<io.flow.v0.models.ItemMarginUpsertedV2>;
|
|
16383
14563
|
export const itemMarginVersion: PropTypes.Requireable<io.flow.v0.models.ItemMarginVersion>;
|
|
16384
14564
|
export const itemOriginDeleted: PropTypes.Requireable<io.flow.v0.models.ItemOriginDeleted>;
|
|
16385
14565
|
export const itemOriginUpserted: PropTypes.Requireable<io.flow.v0.models.ItemOriginUpserted>;
|
|
@@ -16387,8 +14567,6 @@ export const itemPriceUpdateForm: PropTypes.Requireable<io.flow.v0.models.ItemPr
|
|
|
16387
14567
|
export const itemPriceUpdatePutForm: PropTypes.Requireable<io.flow.v0.models.ItemPriceUpdatePutForm>;
|
|
16388
14568
|
export const itemQuerySuggestion: PropTypes.Requireable<io.flow.v0.models.ItemQuerySuggestion>;
|
|
16389
14569
|
export const itemReference: PropTypes.Requireable<io.flow.v0.models.ItemReference>;
|
|
16390
|
-
export const itemSalesMarginDeleted: PropTypes.Requireable<io.flow.v0.models.ItemSalesMarginDeleted>;
|
|
16391
|
-
export const itemSalesMarginUpserted: PropTypes.Requireable<io.flow.v0.models.ItemSalesMarginUpserted>;
|
|
16392
14570
|
export const itemShippingPricing: PropTypes.Requireable<io.flow.v0.models.ItemShippingPricing>;
|
|
16393
14571
|
export const itemStatistics: PropTypes.Requireable<io.flow.v0.models.ItemStatistics>;
|
|
16394
14572
|
export const itemUpdated: PropTypes.Requireable<io.flow.v0.models.ItemUpdated>;
|
|
@@ -16405,8 +14583,6 @@ export const knowYourBusinessUsaForm: PropTypes.Requireable<io.flow.v0.models.Kn
|
|
|
16405
14583
|
export const kubeHealthcheck: PropTypes.Requireable<io.flow.v0.models.KubeHealthcheck>;
|
|
16406
14584
|
export const labelBase: PropTypes.Requireable<io.flow.v0.models.LabelBase>;
|
|
16407
14585
|
export const labelDeletedV2: PropTypes.Requireable<io.flow.v0.models.LabelDeletedV2>;
|
|
16408
|
-
export const labelFormatDeleted: PropTypes.Requireable<io.flow.v0.models.LabelFormatDeleted>;
|
|
16409
|
-
export const labelFormatUpserted: PropTypes.Requireable<io.flow.v0.models.LabelFormatUpserted>;
|
|
16410
14586
|
export const labelOrderSummary: PropTypes.Requireable<io.flow.v0.models.LabelOrderSummary>;
|
|
16411
14587
|
export const labelProcessingModification: PropTypes.Requireable<io.flow.v0.models.LabelProcessingModification>;
|
|
16412
14588
|
export const labelProcessingModificationDeleted: PropTypes.Requireable<io.flow.v0.models.LabelProcessingModificationDeleted>;
|
|
@@ -16495,6 +14671,7 @@ export const monthlyAverage: PropTypes.Requireable<io.flow.v0.models.MonthlyAver
|
|
|
16495
14671
|
export const monthlyAverageVolume: PropTypes.Requireable<io.flow.v0.models.MonthlyAverageVolume>;
|
|
16496
14672
|
export const name: PropTypes.Requireable<io.flow.v0.models.Name>;
|
|
16497
14673
|
export const nameForm: PropTypes.Requireable<io.flow.v0.models.NameForm>;
|
|
14674
|
+
export const needsActionAttributes: PropTypes.Requireable<io.flow.v0.models.NeedsActionAttributes>;
|
|
16498
14675
|
export const niallItemDeleted: PropTypes.Requireable<io.flow.v0.models.NiallItemDeleted>;
|
|
16499
14676
|
export const niallItemUpserted: PropTypes.Requireable<io.flow.v0.models.NiallItemUpserted>;
|
|
16500
14677
|
export const notificationDeletedV2: PropTypes.Requireable<io.flow.v0.models.NotificationDeletedV2>;
|
|
@@ -16524,7 +14701,6 @@ export const orderBuilderDestinationForm: PropTypes.Requireable<io.flow.v0.model
|
|
|
16524
14701
|
export const orderBuilderSelectionsForm: PropTypes.Requireable<io.flow.v0.models.OrderBuilderSelectionsForm>;
|
|
16525
14702
|
export const orderCustomer: PropTypes.Requireable<io.flow.v0.models.OrderCustomer>;
|
|
16526
14703
|
export const orderCustomerForm: PropTypes.Requireable<io.flow.v0.models.OrderCustomerForm>;
|
|
16527
|
-
export const orderDeleted: PropTypes.Requireable<io.flow.v0.models.OrderDeleted>;
|
|
16528
14704
|
export const orderDeletedV2: PropTypes.Requireable<io.flow.v0.models.OrderDeletedV2>;
|
|
16529
14705
|
export const orderDestinationPutForm: PropTypes.Requireable<io.flow.v0.models.OrderDestinationPutForm>;
|
|
16530
14706
|
export const orderDetails: PropTypes.Requireable<io.flow.v0.models.OrderDetails>;
|
|
@@ -16536,12 +14712,9 @@ export const orderForm: PropTypes.Requireable<io.flow.v0.models.OrderForm>;
|
|
|
16536
14712
|
export const orderFraudStatus: PropTypes.Requireable<io.flow.v0.models.OrderFraudStatus>;
|
|
16537
14713
|
export const orderGeo: PropTypes.Requireable<io.flow.v0.models.OrderGeo>;
|
|
16538
14714
|
export const orderIdentifier: PropTypes.Requireable<io.flow.v0.models.OrderIdentifier>;
|
|
16539
|
-
export const orderIdentifierDeleted: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierDeleted>;
|
|
16540
14715
|
export const orderIdentifierDeletedV2: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierDeletedV2>;
|
|
16541
14716
|
export const orderIdentifierForm: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierForm>;
|
|
16542
14717
|
export const orderIdentifierPutForm: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierPutForm>;
|
|
16543
|
-
export const orderIdentifierUpserted: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierUpserted>;
|
|
16544
|
-
export const orderIdentifierUpsertedV2: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierUpsertedV2>;
|
|
16545
14718
|
export const orderIdentifierUpsertedV3: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierUpsertedV3>;
|
|
16546
14719
|
export const orderIdentifierVersion: PropTypes.Requireable<io.flow.v0.models.OrderIdentifierVersion>;
|
|
16547
14720
|
export const orderInformationDetails: PropTypes.Requireable<io.flow.v0.models.OrderInformationDetails>;
|
|
@@ -16559,9 +14732,12 @@ export const orderPlaced: PropTypes.Requireable<io.flow.v0.models.OrderPlaced>;
|
|
|
16559
14732
|
export const orderPlacedDetails: PropTypes.Requireable<io.flow.v0.models.OrderPlacedDetails>;
|
|
16560
14733
|
export const orderPlacedV2: PropTypes.Requireable<io.flow.v0.models.OrderPlacedV2>;
|
|
16561
14734
|
export const orderPriceDetail: PropTypes.Requireable<io.flow.v0.models.OrderPriceDetail>;
|
|
14735
|
+
export const orderPriceDetailBreakdown: PropTypes.Requireable<io.flow.v0.models.OrderPriceDetailBreakdown>;
|
|
16562
14736
|
export const orderPriceDetailComponent: PropTypes.Requireable<io.flow.v0.models.OrderPriceDetailComponent>;
|
|
14737
|
+
export const orderPriceFee: PropTypes.Requireable<io.flow.v0.models.OrderPriceFee>;
|
|
16563
14738
|
export const orderPromotionTrigger: PropTypes.Requireable<io.flow.v0.models.OrderPromotionTrigger>;
|
|
16564
14739
|
export const orderPutForm: PropTypes.Requireable<io.flow.v0.models.OrderPutForm>;
|
|
14740
|
+
export const orderRate: PropTypes.Requireable<io.flow.v0.models.OrderRate>;
|
|
16565
14741
|
export const orderReference: PropTypes.Requireable<io.flow.v0.models.OrderReference>;
|
|
16566
14742
|
export const orderRefundSummary: PropTypes.Requireable<io.flow.v0.models.OrderRefundSummary>;
|
|
16567
14743
|
export const orderRefundSummaryAmounts: PropTypes.Requireable<io.flow.v0.models.OrderRefundSummaryAmounts>;
|
|
@@ -16570,14 +14746,11 @@ export const orderRefundSummaryItem: PropTypes.Requireable<io.flow.v0.models.Ord
|
|
|
16570
14746
|
export const orderRefundSummaryPartialForm: PropTypes.Requireable<io.flow.v0.models.OrderRefundSummaryPartialForm>;
|
|
16571
14747
|
export const orderRefundSummaryPartialIncludes: PropTypes.Requireable<io.flow.v0.models.OrderRefundSummaryPartialIncludes>;
|
|
16572
14748
|
export const orderReplacement: PropTypes.Requireable<io.flow.v0.models.OrderReplacement>;
|
|
16573
|
-
export const orderReplacementDeleted: PropTypes.Requireable<io.flow.v0.models.OrderReplacementDeleted>;
|
|
16574
14749
|
export const orderReplacementForm: PropTypes.Requireable<io.flow.v0.models.OrderReplacementForm>;
|
|
16575
|
-
export const orderReplacementUpserted: PropTypes.Requireable<io.flow.v0.models.OrderReplacementUpserted>;
|
|
16576
14750
|
export const orderRuleReference: PropTypes.Requireable<io.flow.v0.models.OrderRuleReference>;
|
|
16577
14751
|
export const orderRulesSummary: PropTypes.Requireable<io.flow.v0.models.OrderRulesSummary>;
|
|
16578
14752
|
export const orderServiceChange: PropTypes.Requireable<io.flow.v0.models.OrderServiceChange>;
|
|
16579
14753
|
export const orderServiceChangeForm: PropTypes.Requireable<io.flow.v0.models.OrderServiceChangeForm>;
|
|
16580
|
-
export const orderServiceChangeRequest: PropTypes.Requireable<io.flow.v0.models.OrderServiceChangeRequest>;
|
|
16581
14754
|
export const orderServiceChangeRequestData: PropTypes.Requireable<io.flow.v0.models.OrderServiceChangeRequestData>;
|
|
16582
14755
|
export const orderSubmissionForm: PropTypes.Requireable<io.flow.v0.models.OrderSubmissionForm>;
|
|
16583
14756
|
export const orderSubmissionIdentifierForm: PropTypes.Requireable<io.flow.v0.models.OrderSubmissionIdentifierForm>;
|
|
@@ -16587,7 +14760,6 @@ export const orderSummaryItem: PropTypes.Requireable<io.flow.v0.models.OrderSumm
|
|
|
16587
14760
|
export const orderSummaryLevy: PropTypes.Requireable<io.flow.v0.models.OrderSummaryLevy>;
|
|
16588
14761
|
export const orderSummaryLineItem: PropTypes.Requireable<io.flow.v0.models.OrderSummaryLineItem>;
|
|
16589
14762
|
export const orderSummaryPriceDetail: PropTypes.Requireable<io.flow.v0.models.OrderSummaryPriceDetail>;
|
|
16590
|
-
export const orderUpserted: PropTypes.Requireable<io.flow.v0.models.OrderUpserted>;
|
|
16591
14763
|
export const orderUpsertedV2: PropTypes.Requireable<io.flow.v0.models.OrderUpsertedV2>;
|
|
16592
14764
|
export const orderVersion: PropTypes.Requireable<io.flow.v0.models.OrderVersion>;
|
|
16593
14765
|
export const orderWithDiscountsForm: PropTypes.Requireable<io.flow.v0.models.OrderWithDiscountsForm>;
|
|
@@ -16803,9 +14975,7 @@ export const priceSourceProvided: PropTypes.Requireable<io.flow.v0.models.PriceS
|
|
|
16803
14975
|
export const priceWithBase: PropTypes.Requireable<io.flow.v0.models.PriceWithBase>;
|
|
16804
14976
|
export const priceWithBaseAndDetails: PropTypes.Requireable<io.flow.v0.models.PriceWithBaseAndDetails>;
|
|
16805
14977
|
export const pricing: PropTypes.Requireable<io.flow.v0.models.Pricing>;
|
|
16806
|
-
export const pricingDeleted: PropTypes.Requireable<io.flow.v0.models.PricingDeleted>;
|
|
16807
14978
|
export const pricingSettings: PropTypes.Requireable<io.flow.v0.models.PricingSettings>;
|
|
16808
|
-
export const pricingUpserted: PropTypes.Requireable<io.flow.v0.models.PricingUpserted>;
|
|
16809
14979
|
export const pricingVersion: PropTypes.Requireable<io.flow.v0.models.PricingVersion>;
|
|
16810
14980
|
export const processingEstimate: PropTypes.Requireable<io.flow.v0.models.ProcessingEstimate>;
|
|
16811
14981
|
export const product: PropTypes.Requireable<io.flow.v0.models.Product>;
|
|
@@ -16814,14 +14984,18 @@ export const productInserted: PropTypes.Requireable<io.flow.v0.models.ProductIns
|
|
|
16814
14984
|
export const productRestrictionResult: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResult>;
|
|
16815
14985
|
export const productRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultDeleted>;
|
|
16816
14986
|
export const productRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultUpserted>;
|
|
14987
|
+
export const productSellability: PropTypes.Requireable<io.flow.v0.models.ProductSellability>;
|
|
14988
|
+
export const productSellabilityForm: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityForm>;
|
|
16817
14989
|
export const productTaxonomyCategory: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyCategory>;
|
|
16818
14990
|
export const productTaxonomyData: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyData>;
|
|
14991
|
+
export const productTaxonomyValue: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyValue>;
|
|
16819
14992
|
export const productUpdated: PropTypes.Requireable<io.flow.v0.models.ProductUpdated>;
|
|
16820
14993
|
export const promotionTrigger: PropTypes.Requireable<io.flow.v0.models.PromotionTrigger>;
|
|
16821
14994
|
export const promotionTriggerForm: PropTypes.Requireable<io.flow.v0.models.PromotionTriggerForm>;
|
|
16822
14995
|
export const promotions: PropTypes.Requireable<io.flow.v0.models.Promotions>;
|
|
16823
14996
|
export const province: PropTypes.Requireable<io.flow.v0.models.Province>;
|
|
16824
14997
|
export const publicKey: PropTypes.Requireable<io.flow.v0.models.PublicKey>;
|
|
14998
|
+
export const purchasePriceBreakdown: PropTypes.Requireable<io.flow.v0.models.PurchasePriceBreakdown>;
|
|
16825
14999
|
export const query: PropTypes.Requireable<io.flow.v0.models.Query>;
|
|
16826
15000
|
export const queryBuilder: PropTypes.Requireable<io.flow.v0.models.QueryBuilder>;
|
|
16827
15001
|
export const queryBuilderFilterForm: PropTypes.Requireable<io.flow.v0.models.QueryBuilderFilterForm>;
|
|
@@ -16933,6 +15107,8 @@ export const romanization: PropTypes.Requireable<io.flow.v0.models.Romanization>
|
|
|
16933
15107
|
export const romanizationForm: PropTypes.Requireable<io.flow.v0.models.RomanizationForm>;
|
|
16934
15108
|
export const rounding: PropTypes.Requireable<io.flow.v0.models.Rounding>;
|
|
16935
15109
|
export const routeAudit: PropTypes.Requireable<io.flow.v0.models.RouteAudit>;
|
|
15110
|
+
export const sarveshItemDeleted: PropTypes.Requireable<io.flow.v0.models.SarveshItemDeleted>;
|
|
15111
|
+
export const sarveshItemUpserted: PropTypes.Requireable<io.flow.v0.models.SarveshItemUpserted>;
|
|
16936
15112
|
export const schedule: PropTypes.Requireable<io.flow.v0.models.Schedule>;
|
|
16937
15113
|
export const scheduledExport: PropTypes.Requireable<io.flow.v0.models.ScheduledExport>;
|
|
16938
15114
|
export const scheduledExportForm: PropTypes.Requireable<io.flow.v0.models.ScheduledExportForm>;
|
|
@@ -16940,6 +15116,8 @@ export const scheduledPickup: PropTypes.Requireable<io.flow.v0.models.ScheduledP
|
|
|
16940
15116
|
export const securityRatecardFee: PropTypes.Requireable<io.flow.v0.models.SecurityRatecardFee>;
|
|
16941
15117
|
export const securityServiceFee: PropTypes.Requireable<io.flow.v0.models.SecurityServiceFee>;
|
|
16942
15118
|
export const selectIssuerOptionActionDetails: PropTypes.Requireable<io.flow.v0.models.SelectIssuerOptionActionDetails>;
|
|
15119
|
+
export const sellabilityError: PropTypes.Requireable<io.flow.v0.models.SellabilityError>;
|
|
15120
|
+
export const sellablilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellablilityRegionResult>;
|
|
16943
15121
|
export const serviceReference: PropTypes.Requireable<io.flow.v0.models.ServiceReference>;
|
|
16944
15122
|
export const serviceSummary: PropTypes.Requireable<io.flow.v0.models.ServiceSummary>;
|
|
16945
15123
|
export const serviceUnknown: PropTypes.Requireable<io.flow.v0.models.ServiceUnknown>;
|
|
@@ -17044,6 +15222,7 @@ export const solidusVariantExportType: PropTypes.Requireable<io.flow.v0.models.S
|
|
|
17044
15222
|
export const statement: PropTypes.Requireable<io.flow.v0.models.Statement>;
|
|
17045
15223
|
export const statementDeleted: PropTypes.Requireable<io.flow.v0.models.StatementDeleted>;
|
|
17046
15224
|
export const statementUpserted: PropTypes.Requireable<io.flow.v0.models.StatementUpserted>;
|
|
15225
|
+
export const streetAddress: PropTypes.Requireable<io.flow.v0.models.StreetAddress>;
|
|
17047
15226
|
export const stripeAuthenticationData: PropTypes.Requireable<io.flow.v0.models.StripeAuthenticationData>;
|
|
17048
15227
|
export const stripeAuthenticationDataForm: PropTypes.Requireable<io.flow.v0.models.StripeAuthenticationDataForm>;
|
|
17049
15228
|
export const stripeAuthorizationResultActionDetails: PropTypes.Requireable<io.flow.v0.models.StripeAuthorizationResultActionDetails>;
|
|
@@ -17067,6 +15246,16 @@ export const surchargeResponsiblePartyDisplay: PropTypes.Requireable<io.flow.v0.
|
|
|
17067
15246
|
export const surchargeSetting: PropTypes.Requireable<io.flow.v0.models.SurchargeSetting>;
|
|
17068
15247
|
export const surchargeSettingDisplay: PropTypes.Requireable<io.flow.v0.models.SurchargeSettingDisplay>;
|
|
17069
15248
|
export const tax: PropTypes.Requireable<io.flow.v0.models.Tax>;
|
|
15249
|
+
export const taxDutyCalculatorValidationError: PropTypes.Requireable<io.flow.v0.models.TaxDutyCalculatorValidationError>;
|
|
15250
|
+
export const taxDutyQuote: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuote>;
|
|
15251
|
+
export const taxDutyQuoteFeeValue: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteFeeValue>;
|
|
15252
|
+
export const taxDutyQuoteForm: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteForm>;
|
|
15253
|
+
export const taxDutyQuoteLineItem: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteLineItem>;
|
|
15254
|
+
export const taxDutyQuoteLineItemForm: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteLineItemForm>;
|
|
15255
|
+
export const taxDutyQuoteSimpleLevyValue: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteSimpleLevyValue>;
|
|
15256
|
+
export const taxDutyQuoteSimpleShipping: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteSimpleShipping>;
|
|
15257
|
+
export const taxDutyQuoteSimpleShippingForm: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteSimpleShippingForm>;
|
|
15258
|
+
export const taxDutyQuoteValues: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteValues>;
|
|
17070
15259
|
export const taxRegistration: PropTypes.Requireable<io.flow.v0.models.TaxRegistration>;
|
|
17071
15260
|
export const taxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationForm>;
|
|
17072
15261
|
export const taxReport: PropTypes.Requireable<io.flow.v0.models.TaxReport>;
|
|
@@ -17272,6 +15461,7 @@ export const ratecardFee: PropTypes.Requireable<io.flow.v0.unions.RatecardFee>;
|
|
|
17272
15461
|
export const repeatSchedule: PropTypes.Requireable<io.flow.v0.unions.RepeatSchedule>;
|
|
17273
15462
|
export const returnSource: PropTypes.Requireable<io.flow.v0.unions.ReturnSource>;
|
|
17274
15463
|
export const sdkAdyenV3AuthenticationToken: PropTypes.Requireable<io.flow.v0.unions.SdkAdyenV3AuthenticationToken>;
|
|
15464
|
+
export const sellabilityResponse: PropTypes.Requireable<io.flow.v0.unions.SellabilityResponse>;
|
|
17275
15465
|
export const serviceDescription: PropTypes.Requireable<io.flow.v0.unions.ServiceDescription>;
|
|
17276
15466
|
export const serviceFee: PropTypes.Requireable<io.flow.v0.unions.ServiceFee>;
|
|
17277
15467
|
export const session: PropTypes.Requireable<io.flow.v0.unions.Session>;
|
|
@@ -17281,6 +15471,7 @@ export const shippingLabelForm: PropTypes.Requireable<io.flow.v0.unions.Shipping
|
|
|
17281
15471
|
export const shippingNotificationForm: PropTypes.Requireable<io.flow.v0.unions.ShippingNotificationForm>;
|
|
17282
15472
|
export const shopifyCartAddForm: PropTypes.Requireable<io.flow.v0.unions.ShopifyCartAddForm>;
|
|
17283
15473
|
export const shopifyEventBucket: PropTypes.Requireable<io.flow.v0.unions.ShopifyEventBucket>;
|
|
15474
|
+
export const taxDutyQuoteLevyValue: PropTypes.Requireable<io.flow.v0.unions.TaxDutyQuoteLevyValue>;
|
|
17284
15475
|
export const taxSetting: PropTypes.Requireable<io.flow.v0.unions.TaxSetting>;
|
|
17285
15476
|
export const threedsChallengeAction: PropTypes.Requireable<io.flow.v0.unions.ThreedsChallengeAction>;
|
|
17286
15477
|
export const threedsIdentifyAction: PropTypes.Requireable<io.flow.v0.unions.ThreedsIdentifyAction>;
|