@flowio/api-prop-types 10.16.101 → 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.
Files changed (5) hide show
  1. package/lib/api.d.ts +372 -2002
  2. package/lib/api.js +1 -1
  3. package/package.json +2 -2
  4. package/src/api.d.ts +372 -2002
  5. package/src/api.js +467 -2327
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,1913 +3096,286 @@ declare namespace io.flow.channel.v0.models {
3168
3096
  }
3169
3097
  }
3170
3098
 
3171
- declare namespace io.flow.reference.v0.enums {
3172
- type PaymentMethodCapability = 'credit' | 'debit';
3173
- type PaymentMethodType = 'card' | 'online' | 'offline';
3174
- type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
3175
- type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
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.reference.v0.models {
3179
- interface Carrier {
3180
- readonly 'id': string;
3181
- readonly 'name': string;
3182
- readonly 'tracking_url': string;
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 CarrierService {
3186
- readonly 'id': string;
3187
- readonly 'carrier': io.flow.reference.v0.models.Carrier;
3188
- readonly 'name': string;
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 Country {
3192
- readonly 'name': string;
3193
- readonly 'iso_3166_2': string;
3194
- readonly 'iso_3166_3': string;
3195
- readonly 'languages': string[];
3196
- readonly 'measurement_system': string;
3197
- readonly 'default_currency'?: string;
3198
- readonly 'default_language'?: string;
3199
- readonly 'timezones': string[];
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 HoseinItemType = 'physical' | 'digital';
4012
- type NiallItemType = 'physical' | 'digital';
4013
- type PrateekItemType = 'physical' | 'digital';
4014
- type RohanItemType = 'physical' | 'digital';
4015
- type SarveshItemType = 'physical' | 'digital';
4016
- }
4017
-
4018
- declare namespace io.flow.tech.onboarding.playground.v0.models {
4019
- interface AldoItem {
4020
- readonly 'id': string;
4021
- readonly 'number': string;
4022
- readonly 'amount': io.flow.common.v0.models.Price;
4023
- readonly 'description'?: string;
4024
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
4025
- readonly 'added_on': string;
4026
- }
4027
-
4028
- interface AldoItemForm {
4029
- readonly 'number': string;
4030
- readonly 'amount': io.flow.common.v0.models.Price;
4031
- readonly 'description'?: string;
4032
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
4033
- readonly 'added_on': string;
4034
- }
4035
-
4036
- interface AnshItem {
4037
- readonly 'id': string;
4038
- readonly 'number': string;
4039
- readonly 'amount': io.flow.common.v0.models.Price;
4040
- readonly 'description'?: string;
4041
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
4042
- readonly 'added_on': string;
4043
- }
4044
-
4045
- interface AnshItemForm {
4046
- readonly 'number': string;
4047
- readonly 'amount': io.flow.common.v0.models.Price;
4048
- readonly 'description'?: string;
4049
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
4050
- readonly 'added_on': string;
4051
- }
4052
-
4053
- interface HoseinItem {
4054
- readonly 'id': string;
4055
- readonly 'number': string;
4056
- readonly 'amount': io.flow.common.v0.models.Price;
4057
- readonly 'description'?: string;
4058
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
4059
- readonly 'added_on': string;
4060
- }
4061
-
4062
- interface HoseinItemForm {
4063
- readonly 'number': string;
4064
- readonly 'amount': io.flow.common.v0.models.Price;
4065
- readonly 'description'?: string;
4066
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
4067
- readonly 'added_on': string;
4068
- }
4069
-
4070
- interface JeanDemoItem {
4071
- readonly 'id': string;
4072
- readonly 'name': string;
4073
- }
4074
-
4075
- interface NiallItem {
4076
- readonly 'id': string;
4077
- readonly 'number': string;
4078
- readonly 'amount': io.flow.common.v0.models.Price;
4079
- readonly 'description'?: string;
4080
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
4081
- readonly 'added_on': string;
4082
- }
4083
-
4084
- interface NiallItemForm {
4085
- readonly 'number': string;
4086
- readonly 'amount': io.flow.common.v0.models.Price;
4087
- readonly 'description'?: string;
4088
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
4089
- readonly 'added_on': string;
4090
- }
4091
-
4092
- interface PrateekItem {
4093
- readonly 'id': string;
4094
- readonly 'number': string;
4095
- readonly 'amount': io.flow.common.v0.models.Price;
4096
- readonly 'description'?: string;
4097
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
4098
- readonly 'added_on': string;
4099
- }
4100
-
4101
- interface PrateekItemForm {
4102
- readonly 'number': string;
4103
- readonly 'amount': io.flow.common.v0.models.Price;
4104
- readonly 'description'?: string;
4105
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
4106
- readonly 'added_on': string;
4107
- }
4108
-
4109
- interface RohanItem {
4110
- readonly 'id': string;
4111
- readonly 'number': string;
4112
- readonly 'amount': io.flow.common.v0.models.Price;
4113
- readonly 'description'?: string;
4114
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
4115
- readonly 'added_on': string;
4116
- }
4117
-
4118
- interface RohanItemForm {
4119
- readonly 'number': string;
4120
- readonly 'amount': io.flow.common.v0.models.Price;
4121
- readonly 'description'?: string;
4122
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
4123
- readonly 'added_on': string;
4124
- }
4125
-
4126
- interface SarveshItem {
4127
- readonly 'id': string;
4128
- readonly 'number': string;
4129
- readonly 'amount': io.flow.common.v0.models.Price;
4130
- readonly 'description'?: string;
4131
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
4132
- readonly 'added_on': string;
4133
- }
4134
-
4135
- interface SarveshItemForm {
4136
- readonly 'number': string;
4137
- readonly 'amount': io.flow.common.v0.models.Price;
4138
- readonly 'description'?: string;
4139
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
4140
- readonly 'added_on': string;
4141
- }
4142
-
4143
- interface TechOnboardingDescription {
4144
- readonly 'description': string;
4145
- }
4146
- }
4147
-
4148
- declare namespace io.flow.currency.v0.models {
4149
- interface Rate {
4150
- readonly 'id': string;
4151
- readonly 'base': string;
4152
- readonly 'target': string;
4153
- readonly 'effective_at': string;
4154
- readonly 'value': number;
4155
- }
4156
-
4157
- interface RateForm {
4158
- readonly 'base': string;
4159
- readonly 'target': string;
4160
- readonly 'effective_at': string;
4161
- }
4162
-
4163
- interface RateVersion {
4164
- readonly 'id': string;
4165
- readonly 'timestamp': string;
4166
- readonly 'type': io.flow.common.v0.enums.ChangeType;
4167
- readonly 'rate': io.flow.currency.v0.models.Rate;
4168
- }
4169
- }
4170
-
4171
- declare namespace io.flow.organization.v0.enums {
4172
- type CountryPickerSource = 'experience' | 'destination';
4173
- type EcommercePlatformType = 'commercetools' | 'custom' | 'hybris' | 'magento' | 'shopify' | 'shopify_markets' | 'sfcc' | 'solidus' | 'workarea';
4174
- type InvitationErrorCode = 'expired' | 'invalid_email';
4175
- }
4176
-
4177
- declare namespace io.flow.organization.v0.models {
4178
- interface CountryPicker {
4179
- readonly 'id': string;
4180
- readonly 'source': io.flow.organization.v0.enums.CountryPickerSource;
4181
- }
4182
-
4183
- interface CountryPickerForm {
4184
- readonly 'source': io.flow.organization.v0.enums.CountryPickerSource;
4185
- }
4186
-
4187
- interface EcommercePlatform {
4188
- readonly 'id': string;
4189
- readonly 'type': io.flow.organization.v0.enums.EcommercePlatformType;
4190
- readonly 'version'?: string;
4191
- }
4192
-
4193
- interface EcommercePlatformForm {
4194
- readonly 'type': io.flow.organization.v0.enums.EcommercePlatformType;
4195
- readonly 'version'?: string;
4196
- }
4197
-
4198
- interface Invitation {
4199
- readonly 'id': string;
4200
- readonly 'organization': io.flow.common.v0.unions.ExpandableOrganization;
4201
- readonly 'email': string;
4202
- readonly 'name': io.flow.common.v0.models.Name;
4203
- readonly 'role'?: io.flow.common.v0.enums.Role;
4204
- readonly 'roles'?: io.flow.permission.v0.enums.FlowRole[];
4205
- readonly 'expiration': string;
4206
- }
4207
-
4208
- interface InvitationError {
4209
- readonly 'code': io.flow.organization.v0.enums.InvitationErrorCode;
4210
- readonly 'messages': string[];
4211
- }
4212
-
4213
- interface InvitationForm {
4214
- readonly 'organization': string;
4215
- readonly 'email': string;
4216
- readonly 'name'?: io.flow.common.v0.models.Name;
4217
- readonly 'role'?: io.flow.common.v0.enums.Role;
4218
- readonly 'roles'?: io.flow.permission.v0.enums.FlowRole[];
4219
- }
4220
-
4221
- interface InvitationVersion {
4222
- readonly 'id': string;
4223
- readonly 'timestamp': string;
4224
- readonly 'type': io.flow.common.v0.enums.ChangeType;
4225
- readonly 'invitation': io.flow.organization.v0.models.Invitation;
4226
- }
4227
-
4228
- interface Membership {
4229
- readonly 'id': string;
4230
- readonly 'organization': io.flow.common.v0.unions.ExpandableOrganization;
4231
- readonly 'user': io.flow.common.v0.unions.ExpandableUser;
4232
- readonly 'role'?: io.flow.common.v0.enums.Role;
4233
- readonly 'roles': io.flow.permission.v0.enums.FlowRole[];
4234
- }
4235
-
4236
- interface MembershipForm {
4237
- readonly 'organization': string;
4238
- readonly 'user': string;
4239
- readonly 'role'?: io.flow.common.v0.enums.Role;
4240
- readonly 'roles'?: io.flow.permission.v0.enums.FlowRole[];
4241
- }
4242
-
4243
- interface MembershipPutForm {
4244
- readonly 'role'?: io.flow.common.v0.enums.Role;
4245
- readonly 'roles'?: io.flow.permission.v0.enums.FlowRole[];
4246
- }
4247
-
4248
- interface MembershipVersion {
4249
- readonly 'id': string;
4250
- readonly 'timestamp': string;
4251
- readonly 'type': io.flow.common.v0.enums.ChangeType;
4252
- readonly 'membership': io.flow.organization.v0.models.Membership;
4253
- }
4254
-
4255
- interface OrganizationAuthorization {
4256
- readonly 'role'?: io.flow.common.v0.enums.Role;
4257
- readonly 'environment': io.flow.common.v0.enums.Environment;
4258
- }
4259
-
4260
- interface OrganizationAuthorizationForm {
4261
- readonly 'organization': string;
4262
- readonly 'environment': io.flow.common.v0.enums.Environment;
4263
- }
4264
-
4265
- interface OrganizationConfigurationReference {
4266
- readonly 'id': string;
4267
- }
4268
-
4269
- interface OrganizationDefaultConfigurations {
4270
- readonly 'id': string;
4271
- readonly 'checkout_configuration': io.flow.organization.v0.models.OrganizationConfigurationReference;
4272
- }
4273
-
4274
- interface OrganizationDefaultConfigurationsForm {
4275
- readonly 'id': string;
4276
- }
4277
-
4278
- interface OrganizationForm {
4279
- readonly 'id'?: string;
4280
- readonly 'name'?: string;
4281
- readonly 'environment': io.flow.common.v0.enums.Environment;
4282
- readonly 'parent_id'?: string;
4283
- readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
4284
- readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
4285
- readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
4286
- }
4287
-
4288
- interface OrganizationPutForm {
4289
- readonly 'name'?: string;
4290
- readonly 'environment'?: io.flow.common.v0.enums.Environment;
4291
- readonly 'parent_id'?: string;
4292
- readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
4293
- readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
4294
- }
4295
-
4296
- interface OrganizationVersion {
4297
- readonly 'id': string;
4298
- readonly 'timestamp': string;
4299
- readonly 'type': io.flow.common.v0.enums.ChangeType;
4300
- readonly 'organization': io.flow.common.v0.models.Organization;
4301
- }
4302
-
4303
- interface RegionSetting {
4304
- readonly 'id': string;
4305
- readonly 'region': string;
4306
- readonly 'status': io.flow.common.v0.enums.AvailabilityStatus;
4307
- }
4308
-
4309
- interface RegionSettingForm {
4310
- readonly 'status': io.flow.common.v0.enums.AvailabilityStatus;
4311
- }
4312
- }
4313
-
4314
- declare namespace io.flow.order.price.v0.enums {
4315
- 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';
4316
- type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
4317
- }
4318
-
4319
- declare namespace io.flow.order.price.v0.models {
4320
- interface OrderPriceDetail {
4321
- readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
4322
- readonly 'currency': string;
4323
- readonly 'amount': number;
4324
- readonly 'label': string;
4325
- readonly 'base': io.flow.common.v0.models.Price;
4326
- readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
4327
- readonly 'name'?: string;
4328
- readonly 'rate'?: number;
4329
- readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
4330
- readonly 'rate_label'?: string;
4331
- }
4332
-
4333
- interface OrderPriceDetailComponent {
4334
- readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
4335
- readonly 'currency': string;
4336
- readonly 'amount': number;
4337
- readonly 'label': string;
4338
- readonly 'base': io.flow.common.v0.models.Price;
4339
- readonly 'name'?: string;
4340
- }
4341
- }
4342
-
4343
- declare namespace io.flow.channel.internal.v0.enums {
4344
- type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
4345
- type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
4346
- type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
4347
- 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';
4348
- type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
4349
- type OrderPaymentSourceType = 'globale' | 'third_party';
4350
- }
4351
-
4352
- declare namespace io.flow.channel.internal.v0.models {
4353
- interface ChannelCurrencyForm {
4354
- readonly 'currency': string;
4355
- readonly 'channel_id': string;
4356
- readonly 'capabilities': io.flow.channel.v0.enums.ChannelCurrencyCapability[];
4357
- }
4358
-
4359
- interface ChannelForm {
4360
- readonly 'name': string;
4361
- readonly 'environment': io.flow.common.v0.enums.Environment;
4362
- readonly 'organization_id_prefix'?: string;
4363
- }
4364
-
4365
- interface ChannelMembership {
4366
- readonly 'id': string;
4367
- readonly 'channel': io.flow.common.v0.models.ChannelReference;
4368
- readonly 'user': io.flow.common.v0.unions.ExpandableUser;
4369
- readonly 'role'?: io.flow.common.v0.enums.Role;
4370
- }
4371
-
4372
- interface ChannelMembershipForm {
4373
- readonly 'channel_id': string;
4374
- readonly 'user_id': string;
4375
- readonly 'role'?: io.flow.common.v0.enums.Role;
4376
- }
4377
-
4378
- interface ChannelMembershipPutForm {
4379
- readonly 'role'?: io.flow.common.v0.enums.Role;
4380
- }
4381
-
4382
- interface ChannelOrderAcceptance {
4383
- readonly 'id': string;
4384
- readonly 'organization_id': string;
4385
- readonly 'order_number': string;
4386
- readonly 'channel_id': string;
4387
- readonly 'external_order_reference': string;
4388
- readonly 'payment_request_id'?: string;
4389
- readonly 'order_edit_payment_request_ids'?: string[];
4390
- readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
4391
- readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
4392
- readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
4393
- readonly 'order_created_at'?: string;
4394
- readonly 'order_updated_at'?: string;
4395
- readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
4396
- readonly 'payment_source'?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
4397
- }
4398
-
4399
- interface ChannelOrderAcceptanceDetails {
4400
- readonly 'order_acceptance': io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
4401
- readonly 'external_order': any/*object*/;
4402
- }
4403
-
4404
- interface ChannelOrderAcceptanceFailure {
4405
- readonly 'id': string;
4406
- readonly 'organization_id': string;
4407
- readonly 'channel_id': string;
4408
- readonly 'payment_request_id': string;
4409
- readonly 'code': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
4410
- readonly 'reason': string;
4411
- }
4412
-
4413
- interface ChannelOrderAcceptanceForm {
4414
- readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
4415
- }
4416
-
4417
- interface ChannelOrderAcceptanceReason {
4418
- readonly 'description': string;
4419
- readonly 'rejection_reason'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
4420
- }
4421
-
4422
- interface FlowChannelOrganization {
4423
- readonly 'placeholder'?: string;
4424
- }
4425
-
4426
- interface OrderEditSummary {
4427
- readonly 'edited_at': string;
4428
- }
4429
- }
4430
-
4431
- declare namespace io.flow.product.v0.models {
4432
- interface Product {
4433
- readonly 'organization_id': string;
4434
- readonly 'number': string;
4435
- readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
4436
- readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
4437
- readonly 'item_numbers': string[];
4438
- readonly 'highest_value_item_number'?: string;
4439
- readonly 'updated_at': string;
4440
- readonly 'deleted_at'?: string;
4441
- }
4442
-
4443
- interface ProductTaxonomyCategory {
4444
- readonly 'name': string;
4445
- readonly 'full_name': string;
4446
- }
4447
-
4448
- interface ProductTaxonomyData {
4449
- readonly 'key': string;
4450
- readonly 'value': string[];
4451
- }
4452
- }
4453
-
4454
- declare namespace io.flow.ben.test.internal.v0.models {
4455
- interface GenerateLoadMultipleOrgs {
4456
- readonly 'discriminator': 'generate_load_multiple_orgs';
4457
- readonly 'organization_ids': string[];
4458
- readonly 'num_events': number;
4459
- }
4460
-
4461
- interface GenerateLoadSingleOrg {
4462
- readonly 'discriminator': 'generate_load_single_org';
4463
- readonly 'organization_id': string;
4464
- readonly 'num_events': number;
4465
- }
4466
-
4467
- interface Test {
4468
- readonly 'id': string;
4469
- readonly 'name': string;
4470
- }
4471
-
4472
- interface TestForm {
4473
- readonly 'name': string;
4474
- }
4475
- }
4476
-
4477
- declare namespace io.flow.ben.test.internal.v0.unions {
4478
- type GenerateLoad = (io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs);
4479
- }
4480
-
4481
- declare namespace io.flow.catalog.v0.enums {
4482
- type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
4483
- 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';
4484
- type FulfillmentMethodType = 'fulfillment_method';
4485
- type FulfillmentMethodValue = 'digital' | 'physical';
4486
- type ImageTag = 'thumbnail' | 'checkout';
4487
- type ReturnItemStatus = 'returnable' | 'non-returnable';
4488
- type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
4489
- type TaxabilityType = 'tax_rule';
4490
- type TaxabilityValue = 'exempt';
4491
- type UpdatePolicy = 'auto' | 'queue' | 'discard';
4492
- }
4493
-
4494
- declare namespace io.flow.catalog.v0.models {
4495
- interface AdjustmentReason {
4496
- readonly 'key': io.flow.catalog.v0.enums.AdjustmentReasonKey;
4497
- readonly 'label': string;
4498
- }
4499
-
4500
- interface Attribute {
4501
- readonly 'id': string;
4502
- readonly 'key': string;
4503
- readonly 'options': io.flow.catalog.v0.models.Options;
4504
- readonly 'label'?: string;
4505
- readonly 'intent'?: io.flow.catalog.v0.enums.AttributeIntent;
4506
- readonly 'type'?: io.flow.common.v0.enums.AttributeDataType;
4507
- readonly 'position'?: number;
4508
- }
4509
-
4510
- interface AttributeForm {
4511
- readonly 'key': string;
4512
- readonly 'options': io.flow.catalog.v0.models.Options;
4513
- readonly 'label'?: string;
4514
- readonly 'intent'?: io.flow.catalog.v0.enums.AttributeIntent;
4515
- readonly 'type'?: io.flow.common.v0.enums.AttributeDataType;
4516
- readonly 'position'?: number;
4517
- }
4518
-
4519
- interface AttributeVersion {
4520
- readonly 'id': string;
4521
- readonly 'timestamp': string;
4522
- readonly 'type': io.flow.common.v0.enums.ChangeType;
4523
- readonly 'attribute': io.flow.catalog.v0.models.Attribute;
4524
- }
4525
-
4526
- interface Catalog {
4527
- readonly 'id': string;
4528
- }
4529
-
4530
- interface CatalogReference {
4531
- readonly 'id': string;
4532
- }
4533
-
4534
- interface CatalogStatistics {
4535
- readonly 'id': string;
4536
- readonly 'items': number;
4537
- readonly 'categories': number;
4538
- }
4539
-
4540
- interface CatalogVersion {
4541
- readonly 'id': string;
4542
- readonly 'timestamp': string;
4543
- readonly 'type': io.flow.common.v0.enums.ChangeType;
4544
- readonly 'catalog': io.flow.catalog.v0.models.Catalog;
4545
- }
4546
-
4547
- interface FlowItemIndexMetadata {
4548
- readonly 'status': io.flow.catalog.v0.enums.SubcatalogItemStatus;
4549
- }
4550
-
4551
- interface Image {
4552
- readonly 'url': string;
4553
- readonly 'tags': io.flow.catalog.v0.enums.ImageTag[];
4554
- readonly 'attributes'?: Record<string, string>;
4555
- }
4556
-
4557
- interface ImageForm {
4558
- readonly 'url': string;
4559
- readonly 'tags'?: io.flow.catalog.v0.enums.ImageTag[];
4560
- readonly 'attributes'?: Record<string, string>;
4561
- }
4562
-
4563
- interface Item {
4564
- readonly 'id': string;
4565
- readonly 'number': string;
4566
- readonly 'locale': string;
4567
- readonly 'name': string;
4568
- readonly 'price': io.flow.common.v0.models.Price;
4569
- readonly 'categories': string[];
4570
- readonly 'description'?: string;
4571
- readonly 'attributes': Record<string, string>;
4572
- readonly 'dimensions': io.flow.common.v0.models.Dimensions;
4573
- readonly 'images': io.flow.catalog.v0.models.Image[];
4574
- readonly 'local'?: io.flow.catalog.v0.models.Local;
4575
- readonly 'created_at'?: string;
4576
- readonly 'updated_at'?: string;
4577
- readonly 'deleted_at'?: string;
4578
- }
4579
-
4580
- interface ItemAttributesPatchForm {
4581
- readonly 'attributes': Record<string, string>;
4582
- }
4583
-
4584
- interface ItemForm {
4585
- readonly 'number': string;
4586
- readonly 'locale': string;
4587
- readonly 'name': string;
4588
- readonly 'currency': string;
4589
- readonly 'price': number;
4590
- readonly 'categories'?: string[];
4591
- readonly 'description'?: string;
4592
- readonly 'attributes'?: Record<string, string>;
4593
- readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
4594
- readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
4595
- readonly 'deleted_at'?: string;
4596
- }
4597
-
4598
- interface ItemFormOverlay {
4599
- readonly 'id': string;
4600
- readonly 'number': string;
4601
- readonly 'key': string;
4602
- readonly 'position': number;
4603
- readonly 'price'?: io.flow.common.v0.models.Price;
4604
- readonly 'categories'?: string[];
4605
- readonly 'description'?: string;
4606
- readonly 'attributes'?: Record<string, string>;
4607
- readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
4608
- readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
4609
- readonly 'deleted_at'?: string;
4610
- }
4611
-
4612
- interface ItemFormOverlayForm {
4613
- readonly 'number': string;
4614
- readonly 'price'?: number;
4615
- readonly 'currency'?: string;
4616
- readonly 'position'?: number;
4617
- readonly 'categories'?: string[];
4618
- readonly 'description'?: string;
4619
- readonly 'attributes'?: Record<string, string>;
4620
- readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
4621
- readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
4622
- readonly 'deleted_at'?: string;
4623
- }
4624
-
4625
- interface ItemPriceUpdateForm {
4626
- readonly 'number': string;
4627
- readonly 'currency'?: string;
4628
- readonly 'price': number;
4629
- readonly 'attributes': Record<string, string>;
4630
- }
4631
-
4632
- interface ItemPriceUpdatePutForm {
4633
- readonly 'currency'?: string;
4634
- readonly 'price': number;
4635
- readonly 'attributes': Record<string, string>;
4636
- }
4637
-
4638
- interface ItemStatistics {
4639
- readonly 'items': number;
4640
- readonly 'categories': number;
4641
- }
4642
-
4643
- interface ItemVersion {
4644
- readonly 'id': string;
4645
- readonly 'timestamp': string;
4646
- readonly 'type': io.flow.common.v0.enums.ChangeType;
4647
- readonly 'item': io.flow.catalog.v0.models.Item;
4648
- }
4649
-
4650
- interface Local {
4651
- readonly 'experience': io.flow.common.v0.models.ExperienceSummary;
4652
- readonly 'prices': io.flow.catalog.v0.unions.LocalizedPrice[];
4653
- readonly 'rates': io.flow.currency.v0.models.Rate[];
4654
- readonly 'spot_rates': any/*object*/[];
4655
- readonly 'status': io.flow.catalog.v0.enums.SubcatalogItemStatus;
4656
- readonly 'attributes'?: Record<string, string>;
4657
- readonly 'price_attributes'?: Record<string, io.flow.common.v0.models.PriceWithBase>;
4658
- }
4659
-
4660
- interface LocalizedAdjustment {
4661
- readonly 'currency': string;
4662
- readonly 'amount': number;
4663
- readonly 'label': string;
4664
- readonly 'base': io.flow.common.v0.models.Price;
4665
- readonly 'reason': io.flow.catalog.v0.models.AdjustmentReason;
4666
- }
4667
-
4668
- interface LocalizedItemDuty {
4669
- readonly 'key': 'localized_item_duty';
4670
- readonly 'currency': string;
4671
- readonly 'amount': number;
4672
- readonly 'label': string;
4673
- readonly 'base': io.flow.common.v0.models.Price;
4674
- readonly 'adjustment'?: io.flow.catalog.v0.models.LocalizedAdjustment;
4675
- readonly 'basis'?: io.flow.common.v0.models.MoneyWithBase;
4676
- }
4677
-
4678
- interface LocalizedItemPrice {
4679
- readonly 'key': 'localized_item_price';
4680
- readonly 'currency': string;
4681
- readonly 'amount': number;
4682
- readonly 'label': string;
4683
- readonly 'base': io.flow.common.v0.models.Price;
4684
- readonly 'includes'?: io.flow.common.v0.models.IncludedLevies;
4685
- }
4686
-
4687
- interface LocalizedItemVat {
4688
- readonly 'key': 'localized_item_vat';
4689
- readonly 'currency': string;
4690
- readonly 'amount': number;
4691
- readonly 'label': string;
4692
- readonly 'base': io.flow.common.v0.models.Price;
4693
- readonly 'name': string;
4694
- readonly 'adjustment'?: io.flow.catalog.v0.models.LocalizedAdjustment;
4695
- readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
4696
- readonly 'basis'?: io.flow.common.v0.models.MoneyWithBase;
4697
- }
4698
-
4699
- interface LocalizedTotal {
4700
- readonly 'key': 'localized_total';
4701
- readonly 'currency': string;
4702
- readonly 'amount': number;
4703
- readonly 'label': string;
4704
- readonly 'base': io.flow.common.v0.models.Price;
4705
- }
4706
-
4707
- interface Options {
4708
- readonly 'required': boolean;
4709
- readonly 'show_in_catalog': boolean;
4710
- readonly 'show_in_harmonization': boolean;
4711
- }
4712
-
4713
- interface Subcatalog {
4714
- readonly 'discriminator': 'subcatalog';
4715
- readonly 'id': string;
4716
- readonly 'catalog': io.flow.catalog.v0.models.Catalog;
4717
- readonly 'settings': io.flow.catalog.v0.models.SubcatalogSettings;
4718
- }
4719
-
4720
- interface SubcatalogForm {
4721
- readonly 'settings'?: io.flow.catalog.v0.models.SubcatalogSettingsForm;
4722
- }
4723
-
4724
- interface SubcatalogItem {
4725
- readonly 'id': string;
4726
- readonly 'item': io.flow.catalog.v0.models.Item;
4727
- readonly 'status': io.flow.catalog.v0.enums.SubcatalogItemStatus;
4728
- }
4729
-
4730
- interface SubcatalogItemVersion {
4731
- readonly 'id': string;
4732
- readonly 'timestamp': string;
4733
- readonly 'type': io.flow.common.v0.enums.ChangeType;
4734
- readonly 'subcatalog_item': io.flow.catalog.v0.models.SubcatalogItem;
4735
- }
4736
-
4737
- interface SubcatalogReference {
4738
- readonly 'discriminator': 'subcatalog_reference';
4739
- readonly 'id': string;
4740
- }
4741
-
4742
- interface SubcatalogSettings {
4743
- readonly 'update_policy': io.flow.catalog.v0.enums.UpdatePolicy;
4744
- }
4745
-
4746
- interface SubcatalogSettingsForm {
4747
- readonly 'update_policy'?: io.flow.catalog.v0.enums.UpdatePolicy;
4748
- }
4749
-
4750
- interface SubcatalogStatistics {
4751
- readonly 'excluded': io.flow.catalog.v0.models.ItemStatistics;
4752
- readonly 'included': io.flow.catalog.v0.models.ItemStatistics;
4753
- readonly 'restricted': io.flow.catalog.v0.models.ItemStatistics;
4754
- readonly 'queue': io.flow.catalog.v0.models.ItemStatistics;
4755
- readonly 'catalog': io.flow.catalog.v0.models.CatalogStatistics;
4756
- }
4757
-
4758
- interface SubcatalogVersion {
4759
- readonly 'id': string;
4760
- readonly 'timestamp': string;
4761
- readonly 'type': io.flow.common.v0.enums.ChangeType;
4762
- readonly 'subcatalog': io.flow.catalog.v0.models.Subcatalog;
4763
- }
4764
- }
4765
-
4766
- declare namespace io.flow.catalog.v0.unions {
4767
- type ExpandableSubcatalog = (io.flow.catalog.v0.models.Subcatalog | io.flow.catalog.v0.models.SubcatalogReference);
4768
- type LocalizedPrice = (io.flow.catalog.v0.models.LocalizedItemPrice | io.flow.catalog.v0.models.LocalizedItemVat | io.flow.catalog.v0.models.LocalizedItemDuty | io.flow.catalog.v0.models.LocalizedTotal);
4769
- }
4770
-
4771
- declare namespace io.flow.inventory.v0.enums {
4772
- type Aggregate = 'maximum' | 'minimum';
4773
- type InventoryStatus = 'has_inventory' | 'no_inventory';
4774
- type UpdateType = 'change' | 'set';
4775
- }
4776
-
4777
- declare namespace io.flow.inventory.v0.models {
4778
- interface ExternalApiTimeoutReservationError {
4779
- readonly 'code': 'external_api_timeout';
4780
- readonly 'messages': string[];
4781
- }
4782
-
4783
- interface GenericReservationError {
4784
- readonly 'code': 'generic_reservation_error';
4785
- readonly 'messages': string[];
4786
- }
4787
-
4788
- interface InventoryBackorder {
4789
- readonly 'discriminator': 'inventory_backorder';
4790
- readonly 'quantity': number;
4791
- }
4792
-
4793
- interface InventoryCenterReference {
4794
- readonly 'key': string;
4795
- }
4796
-
4797
- interface InventoryCheckResponse {
4798
- readonly 'items': io.flow.inventory.v0.models.InventoryCheckResponseItem[];
4799
- }
4800
-
4801
- interface InventoryCheckResponseItem {
4802
- readonly 'number': string;
4803
- readonly 'quantity': number;
4804
- readonly 'inventory_status': io.flow.inventory.v0.enums.InventoryStatus;
4805
- }
4806
-
4807
- interface InventoryExperienceReference {
4808
- readonly 'key': string;
4809
- }
4810
-
4811
- interface InventoryFollowEcommercePlatform {
4812
- readonly 'discriminator': 'inventory_follow_ecommerce_platform';
4813
- readonly 'quantity': number;
4814
- }
4815
-
4816
- interface InventoryItemReference {
4817
- readonly 'number': string;
4818
- }
4819
-
4820
- interface InventoryRequest {
4821
- readonly 'items': io.flow.inventory.v0.models.InventoryRequestItem[];
4822
- }
4823
-
4824
- interface InventoryRequestItem {
4825
- readonly 'number': string;
4826
- readonly 'quantity': number;
4827
- }
4828
-
4829
- interface InventoryRule {
4830
- readonly 'id': string;
4831
- readonly 'position': number;
4832
- readonly 'query': string;
4833
- readonly 'strategy': io.flow.inventory.v0.unions.InventoryStrategy;
4834
- }
4835
-
4836
- interface InventoryRuleForm {
4837
- readonly 'position': number;
4838
- readonly 'query': string;
4839
- readonly 'strategy': io.flow.inventory.v0.unions.InventoryStrategy;
4840
- }
4841
-
4842
- interface InventoryRuleVersion {
4843
- readonly 'id': string;
4844
- readonly 'timestamp': string;
4845
- readonly 'type': io.flow.common.v0.enums.ChangeType;
4846
- readonly 'inventory_rule': io.flow.inventory.v0.models.InventoryRule;
4847
- }
4848
-
4849
- interface InventorySnapshot {
4850
- readonly 'id': string;
4851
- readonly 'available': number;
4852
- readonly 'center': io.flow.inventory.v0.models.InventoryCenterReference;
4853
- readonly 'item': io.flow.inventory.v0.models.InventoryItemReference;
4854
- readonly 'quantity': number;
4855
- }
4856
-
4857
- interface InventorySnapshotVersion {
4858
- readonly 'id': string;
4859
- readonly 'timestamp': string;
4860
- readonly 'type': io.flow.common.v0.enums.ChangeType;
4861
- readonly 'inventory_snapshot': io.flow.inventory.v0.models.InventorySnapshot;
4862
- }
4863
-
4864
- interface InventoryStock {
4865
- readonly 'discriminator': 'inventory_stock';
4866
- readonly 'quantity': number;
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*/;
4867
3140
  }
4868
3141
 
4869
- interface InventoryUnlimited {
4870
- readonly 'discriminator': 'inventory_unlimited';
4871
- readonly 'placeholder'?: string;
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;
4872
3157
  }
4873
3158
 
4874
- interface InventoryUpdate {
4875
- readonly 'id': string;
4876
- readonly 'idempotency_key': string;
4877
- readonly 'center': io.flow.inventory.v0.models.InventoryCenterReference;
4878
- readonly 'item': io.flow.inventory.v0.models.InventoryItemReference;
4879
- readonly 'notes': any/*object*/;
4880
- readonly 'quantity': number;
4881
- readonly 'type': io.flow.inventory.v0.enums.UpdateType;
3159
+ interface ApplePayShippingMethod {
3160
+ readonly 'label': string;
3161
+ readonly 'detail': string;
3162
+ readonly 'amount': string;
3163
+ readonly 'identifier': string;
4882
3164
  }
3165
+ }
4883
3166
 
4884
- interface InventoryUpdateForm {
4885
- readonly 'center': string;
4886
- readonly 'idempotency_key': string;
4887
- readonly 'item_number': string;
4888
- readonly 'quantity': number;
4889
- readonly 'type': io.flow.inventory.v0.enums.UpdateType;
4890
- readonly 'notes'?: any/*object*/;
4891
- }
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';
3176
+ }
4892
3177
 
4893
- interface InventoryUpdateVersion {
3178
+ declare namespace io.flow.tech.onboarding.playground.v0.models {
3179
+ interface AldoItem {
4894
3180
  readonly 'id': string;
4895
- readonly 'timestamp': string;
4896
- readonly 'type': io.flow.common.v0.enums.ChangeType;
4897
- readonly 'inventory_update': io.flow.inventory.v0.models.InventoryUpdate;
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;
4898
3186
  }
4899
3187
 
4900
- interface NoInventoryReservationError {
4901
- readonly 'code': 'no_inventory';
4902
- readonly 'messages': string[];
4903
- readonly 'items': io.flow.inventory.v0.models.NoInventoryReservationErrorItem[];
3188
+ interface AldoItemForm {
3189
+ readonly 'number': string;
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;
4904
3194
  }
4905
3195
 
4906
- interface NoInventoryReservationErrorItem {
3196
+ interface AnirbanItem {
3197
+ readonly 'id': string;
4907
3198
  readonly 'number': string;
4908
- readonly 'requested_quantity': number;
4909
- readonly 'available_quantity': number;
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;
4910
3203
  }
4911
3204
 
4912
- interface PfsInventoryCheckResponse {
4913
- readonly 'items': Record<string, io.flow.inventory.v0.models.PfsInventoryCheckResponseItem>;
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;
4914
3211
  }
4915
3212
 
4916
- interface PfsInventoryCheckResponseItem {
3213
+ interface AnshItem {
3214
+ readonly 'id': string;
4917
3215
  readonly 'number': string;
4918
- readonly 'ats': number;
4919
- readonly 'in_stock': boolean;
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;
4920
3220
  }
4921
3221
 
4922
- interface PfsInventoryStatus {
4923
- readonly 'status': string;
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;
4924
3228
  }
4925
3229
 
4926
- interface Reservation {
3230
+ interface HoseinItem {
4927
3231
  readonly 'id': string;
4928
- readonly 'key': string;
4929
- readonly 'order'?: io.flow.inventory.v0.models.ReservationOrderReference;
4930
- readonly 'items': io.flow.inventory.v0.models.ReservationItem[];
4931
- readonly 'reserved_until'?: string;
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;
4932
3237
  }
4933
3238
 
4934
- interface ReservationForm {
4935
- readonly 'order_number'?: string;
4936
- readonly 'items': io.flow.inventory.v0.models.ReservationItemForm[];
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;
4937
3245
  }
4938
3246
 
4939
- interface ReservationItem {
4940
- readonly 'item': io.flow.inventory.v0.models.ReservationItemReference;
4941
- readonly 'quantity': number;
3247
+ interface JeanDemoItem {
3248
+ readonly 'id': string;
3249
+ readonly 'name': string;
4942
3250
  }
4943
3251
 
4944
- interface ReservationItemForm {
4945
- readonly 'item_number': string;
4946
- readonly 'quantity': number;
3252
+ interface NiallItem {
3253
+ readonly 'id': string;
3254
+ readonly 'number': string;
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;
4947
3259
  }
4948
3260
 
4949
- interface ReservationItemReference {
3261
+ interface NiallItemForm {
4950
3262
  readonly 'number': 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;
4951
3267
  }
4952
3268
 
4953
- interface ReservationOrderReference {
3269
+ interface PrateekItem {
3270
+ readonly 'id': string;
4954
3271
  readonly 'number': string;
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;
4955
3276
  }
4956
- }
4957
3277
 
4958
- declare namespace io.flow.inventory.v0.unions {
4959
- 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);
4960
- type ReservationError = (io.flow.inventory.v0.models.NoInventoryReservationError | io.flow.inventory.v0.models.ExternalApiTimeoutReservationError | io.flow.inventory.v0.models.GenericReservationError);
4961
- }
4962
-
4963
- declare namespace io.flow.permission.v0.enums {
4964
- type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
4965
- type FlowBehavior = 'view_consumer_data';
4966
- type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
4967
- type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
4968
- }
4969
-
4970
- declare namespace io.flow.permission.v0.models {
4971
- interface BehaviorAudit {
4972
- readonly 'behavior': io.flow.permission.v0.enums.FlowBehavior;
4973
- readonly 'authentication_techniques': io.flow.permission.v0.enums.AuthenticationTechnique[];
4974
- readonly 'roles': io.flow.permission.v0.enums.FlowRole[];
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;
4975
3284
  }
4976
3285
 
4977
- interface PermissionAudit {
4978
- readonly 'routes': io.flow.permission.v0.models.RouteAudit[];
4979
- readonly 'behaviors': io.flow.permission.v0.models.BehaviorAudit[];
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;
4980
3293
  }
4981
3294
 
4982
- interface PermissionCheck {
4983
- readonly 'authentication_technique': io.flow.permission.v0.enums.AuthenticationTechnique;
4984
- readonly 'user'?: io.flow.common.v0.unions.ExpandableUser;
4985
- readonly 'roles': io.flow.permission.v0.enums.FlowRole[];
4986
- readonly 'behaviors': io.flow.permission.v0.enums.FlowBehavior[];
4987
- readonly 'routes': io.flow.permission.v0.models.PermittedRoute[];
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;
4988
3301
  }
4989
3302
 
4990
- interface PermittedRoute {
4991
- readonly 'method': io.flow.permission.v0.enums.PermittedHttpMethod;
4992
- readonly 'path': string;
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;
4993
3310
  }
4994
3311
 
4995
- interface RouteAudit {
4996
- readonly 'method': io.flow.permission.v0.enums.PermittedHttpMethod;
4997
- readonly 'path': string;
4998
- readonly 'authentication_techniques': io.flow.permission.v0.enums.AuthenticationTechnique[];
4999
- readonly 'roles': io.flow.permission.v0.enums.FlowRole[];
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;
5000
3318
  }
5001
3319
 
5002
- interface SimplePermissionCheck {
5003
- readonly 'behaviors': io.flow.permission.v0.enums.FlowBehavior[];
3320
+ interface TechOnboardingDescription {
3321
+ readonly 'description': string;
5004
3322
  }
5005
3323
  }
5006
3324
 
5007
- declare namespace io.flow.query.builder.v0.enums {
5008
- type AvailableFilterFormat = 'boolean' | 'date' | 'money' | 'decimal' | 'string' | 'unit_of_length' | 'unit_of_mass';
5009
- }
5010
-
5011
- declare namespace io.flow.query.builder.v0.models {
5012
- interface AvailableFilterStructured {
5013
- readonly 'discriminator': 'structured';
5014
- readonly 'field': string;
5015
- readonly 'operators': string[];
5016
- readonly 'format': io.flow.query.builder.v0.enums.AvailableFilterFormat;
5017
- readonly 'valid_values'?: string[];
5018
- readonly 'placeholder'?: string;
5019
- }
5020
-
5021
- interface AvailableFilterUnstructured {
5022
- readonly 'discriminator': 'unstructured';
5023
- readonly 'placeholder'?: string;
5024
- }
5025
-
5026
- interface Query {
5027
- readonly 'q': string;
5028
- readonly 'filters': io.flow.query.builder.v0.unions.QueryFilter[];
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;
5029
3335
  }
5030
3336
 
5031
- interface QueryBuilder {
5032
- readonly 'q': string;
5033
- readonly 'filters': io.flow.query.builder.v0.unions.QueryFilter[];
5034
- readonly 'available': io.flow.query.builder.v0.unions.AvailableFilter[];
3337
+ interface ProductTaxonomyCategory {
3338
+ readonly 'name': string;
3339
+ readonly 'full_name': string;
5035
3340
  }
5036
3341
 
5037
- interface QueryBuilderFilterForm {
5038
- readonly 'discriminator': 'filter';
5039
- readonly 'filters': io.flow.query.builder.v0.unions.QueryFilterForm[];
3342
+ interface ProductTaxonomyData {
3343
+ readonly 'key': string;
3344
+ readonly 'value': string[];
3345
+ readonly 'value_obj'?: io.flow.product.v0.models.ProductTaxonomyValue[];
5040
3346
  }
5041
3347
 
5042
- interface QueryBuilderQueryForm {
5043
- readonly 'discriminator': 'query';
5044
- readonly 'q': string;
3348
+ interface ProductTaxonomyValue {
3349
+ readonly 'handle': string;
3350
+ readonly 'name': string;
5045
3351
  }
3352
+ }
5046
3353
 
5047
- interface QueryFilterStructured {
5048
- readonly 'discriminator': 'structured';
5049
- readonly 'q': string;
5050
- readonly 'field': string;
5051
- readonly 'operator': string;
5052
- readonly 'values': string[];
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;
5053
3359
  }
5054
3360
 
5055
- interface QueryFilterStructuredForm {
5056
- readonly 'discriminator': 'structured';
5057
- readonly 'field': string;
5058
- readonly 'operator': string;
5059
- readonly 'values': string[];
3361
+ interface GenerateLoadSingleOrg {
3362
+ readonly 'discriminator': 'generate_load_single_org';
3363
+ readonly 'organization_id': string;
3364
+ readonly 'num_events': number;
5060
3365
  }
5061
3366
 
5062
- interface QueryFilterUnstructured {
5063
- readonly 'discriminator': 'unstructured';
5064
- readonly 'q': string;
3367
+ interface Test {
3368
+ readonly 'id': string;
3369
+ readonly 'name': string;
5065
3370
  }
5066
3371
 
5067
- interface QueryFilterUnstructuredForm {
5068
- readonly 'discriminator': 'unstructured';
5069
- readonly 'q': string;
3372
+ interface TestForm {
3373
+ readonly 'name': string;
5070
3374
  }
5071
3375
  }
5072
3376
 
5073
- declare namespace io.flow.query.builder.v0.unions {
5074
- type AvailableFilter = (io.flow.query.builder.v0.models.AvailableFilterStructured | io.flow.query.builder.v0.models.AvailableFilterUnstructured);
5075
- type QueryBuilderForm = (io.flow.query.builder.v0.models.QueryBuilderFilterForm | io.flow.query.builder.v0.models.QueryBuilderQueryForm);
5076
- type QueryFilter = (io.flow.query.builder.v0.models.QueryFilterStructured | io.flow.query.builder.v0.models.QueryFilterUnstructured);
5077
- type QueryFilterForm = (io.flow.query.builder.v0.models.QueryFilterStructuredForm | io.flow.query.builder.v0.models.QueryFilterUnstructuredForm);
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);
5078
3379
  }
5079
3380
 
5080
3381
  declare namespace io.flow.v0.enums {
@@ -5133,7 +3434,7 @@ declare namespace io.flow.v0.enums {
5133
3434
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
5134
3435
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
5135
3436
  type Environment = 'sandbox' | 'production';
5136
- 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' | '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';
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';
5137
3438
  type ExceptionType = 'open' | 'closed';
5138
3439
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
5139
3440
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -5196,6 +3497,7 @@ declare namespace io.flow.v0.enums {
5196
3497
  type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
5197
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';
5198
3499
  type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
3500
+ type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
5199
3501
  type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
5200
3502
  type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
5201
3503
  type OrderStatus = 'open' | 'submitted';
@@ -5234,7 +3536,6 @@ declare namespace io.flow.v0.enums {
5234
3536
  type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
5235
3537
  type PriceFacetBoundary = 'min' | 'max';
5236
3538
  type PricingLevySetting = 'included' | 'displayed' | 'ignored';
5237
- 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' | 'Pending Classification' | 'Restrict by Default' | 'Supplements' | 'Tattoo Ink And PMU' | 'Unknown Bundles' | 'Weapon' | 'Wood';
5238
3539
  type PromotionTriggerType = 'automatic' | 'order_subtotal';
5239
3540
  type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
5240
3541
  type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
@@ -5293,7 +3594,7 @@ declare namespace io.flow.v0.enums {
5293
3594
  type TransferStatus = 'succeeded' | 'canceled';
5294
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';
5295
3596
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
5296
- 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';
5297
3598
  type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
5298
3599
  type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
5299
3600
  type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
@@ -5759,6 +4060,20 @@ declare namespace io.flow.v0.models {
5759
4060
  readonly 'interval'?: io.flow.v0.enums.UnitOfTime;
5760
4061
  }
5761
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
+
5762
4077
  interface AnshItemDeleted {
5763
4078
  readonly 'discriminator': 'ansh_item_deleted';
5764
4079
  readonly 'event_id': string;
@@ -7744,6 +6059,7 @@ declare namespace io.flow.v0.models {
7744
6059
  readonly 'package_dimensions_source'?: io.flow.v0.enums.PackageDimensionsSource;
7745
6060
  readonly 'origin_location_source'?: io.flow.v0.enums.OriginLocationSource;
7746
6061
  readonly 'reference_id'?: string;
6062
+ readonly 'shipping_date_time'?: string;
7747
6063
  }
7748
6064
 
7749
6065
  interface DetailedShippingNotificationForm {
@@ -8043,6 +6359,11 @@ declare namespace io.flow.v0.models {
8043
6359
  readonly 'ecommerce_platform': io.flow.v0.models.EcommercePlatform;
8044
6360
  }
8045
6361
 
6362
+ interface EditSummary {
6363
+ readonly 'id': string;
6364
+ readonly 'edited_at': string;
6365
+ }
6366
+
8046
6367
  interface EeiFilingRatecardFee {
8047
6368
  readonly 'discriminator': 'eei_filing_ratecard_fee';
8048
6369
  readonly 'amount': io.flow.v0.models.Money;
@@ -9885,6 +8206,7 @@ declare namespace io.flow.v0.models {
9885
8206
  readonly 'local': io.flow.v0.models.Local;
9886
8207
  readonly 'shipment_estimate'?: io.flow.v0.models.DatetimeRange;
9887
8208
  readonly 'price_source'?: io.flow.v0.unions.PriceSource;
8209
+ readonly 'breakdown'?: io.flow.v0.models.OrderPriceDetailBreakdown;
9888
8210
  }
9889
8211
 
9890
8212
  interface LocalizedLineItemDiscount {
@@ -9902,6 +8224,7 @@ declare namespace io.flow.v0.models {
9902
8224
  readonly 'amount': number;
9903
8225
  readonly 'label': string;
9904
8226
  readonly 'base': io.flow.v0.models.Price;
8227
+ readonly 'breakdown'?: io.flow.v0.models.OrderPriceDetailBreakdown;
9905
8228
  }
9906
8229
 
9907
8230
  interface LocalizedTranslation {
@@ -10200,6 +8523,11 @@ declare namespace io.flow.v0.models {
10200
8523
  readonly 'last'?: string;
10201
8524
  }
10202
8525
 
8526
+ interface NeedsActionAttributes {
8527
+ readonly 'reason_code': string;
8528
+ readonly 'category_metafield_handles': string[];
8529
+ }
8530
+
10203
8531
  interface NiallItemDeleted {
10204
8532
  readonly 'discriminator': 'niall_item_deleted';
10205
8533
  readonly 'event_id': string;
@@ -10361,6 +8689,8 @@ declare namespace io.flow.v0.models {
10361
8689
  readonly 'destination_contact_details'?: io.flow.v0.models.DestinationContactDetail[];
10362
8690
  readonly 'incoterm_summary'?: io.flow.v0.models.IncotermSummary;
10363
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[];
10364
8694
  }
10365
8695
 
10366
8696
  interface OrderAddress {
@@ -10659,6 +8989,12 @@ declare namespace io.flow.v0.models {
10659
8989
  readonly 'rate'?: number;
10660
8990
  readonly 'accuracy'?: io.flow.v0.enums.PriceAccuracy;
10661
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[];
10662
8998
  }
10663
8999
 
10664
9000
  interface OrderPriceDetailComponent {
@@ -10670,6 +9006,12 @@ declare namespace io.flow.v0.models {
10670
9006
  readonly 'name'?: string;
10671
9007
  }
10672
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
+
10673
9015
  interface OrderPromotionTrigger {
10674
9016
  readonly 'type': io.flow.v0.enums.PromotionTriggerType;
10675
9017
  readonly 'min'?: io.flow.v0.models.Price;
@@ -10691,6 +9033,12 @@ declare namespace io.flow.v0.models {
10691
9033
  readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
10692
9034
  }
10693
9035
 
9036
+ interface OrderRate {
9037
+ readonly 'from': string;
9038
+ readonly 'to': string;
9039
+ readonly 'rate': number;
9040
+ }
9041
+
10694
9042
  interface OrderReference {
10695
9043
  readonly 'discriminator': 'order_reference';
10696
9044
  readonly 'id': string;
@@ -12377,11 +10725,12 @@ declare namespace io.flow.v0.models {
12377
10725
  readonly 'sellability_restricted_regions'?: string[];
12378
10726
  readonly 'reasons_per_region'?: io.flow.v0.models.ReasonsPerRegion[];
12379
10727
  readonly 'review_status'?: io.flow.v0.enums.ReviewStatus;
12380
- readonly 'rules'?: io.flow.v0.enums.ProductRestrictionRule[];
10728
+ readonly 'rules'?: string[];
12381
10729
  readonly 'updated_by'?: string;
12382
10730
  readonly 'product_restriction_id'?: string;
12383
10731
  readonly 'hs_code'?: string;
12384
10732
  readonly 'restricted_regions_by_type'?: io.flow.v0.models.SellablilityRegionResult[];
10733
+ readonly 'needs_action_attributes'?: io.flow.v0.models.NeedsActionAttributes[];
12385
10734
  }
12386
10735
 
12387
10736
  interface ProductRestrictionResultDeleted {
@@ -12428,6 +10777,12 @@ declare namespace io.flow.v0.models {
12428
10777
  interface ProductTaxonomyData {
12429
10778
  readonly 'key': string;
12430
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;
12431
10786
  }
12432
10787
 
12433
10788
  interface ProductUpdated {
@@ -12467,6 +10822,12 @@ declare namespace io.flow.v0.models {
12467
10822
  readonly 'id': string;
12468
10823
  }
12469
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
+
12470
10831
  interface Query {
12471
10832
  readonly 'q': string;
12472
10833
  readonly 'filters': io.flow.v0.unions.QueryFilter[];
@@ -15297,7 +13658,7 @@ declare namespace io.flow.v0.unions {
15297
13658
  type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
15298
13659
  type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
15299
13660
  type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
15300
- 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.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);
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);
15301
13662
  type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
15302
13663
  type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
15303
13664
  type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
@@ -15509,6 +13870,7 @@ export const orderPaymentSourceType: PropTypes.Requireable<io.flow.v0.enums.Orde
15509
13870
  export const orderPaymentType: PropTypes.Requireable<io.flow.v0.enums.OrderPaymentType>;
15510
13871
  export const orderPriceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.OrderPriceDetailComponentKey>;
15511
13872
  export const orderPriceDetailKey: PropTypes.Requireable<io.flow.v0.enums.OrderPriceDetailKey>;
13873
+ export const orderPriceFeeType: PropTypes.Requireable<io.flow.v0.enums.OrderPriceFeeType>;
15512
13874
  export const orderRefundSummaryIncludes: PropTypes.Requireable<io.flow.v0.enums.OrderRefundSummaryIncludes>;
15513
13875
  export const orderRefundSummaryPartialCharged: PropTypes.Requireable<io.flow.v0.enums.OrderRefundSummaryPartialCharged>;
15514
13876
  export const orderStatus: PropTypes.Requireable<io.flow.v0.enums.OrderStatus>;
@@ -15547,7 +13909,6 @@ export const priceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.Pri
15547
13909
  export const priceDetailKey: PropTypes.Requireable<io.flow.v0.enums.PriceDetailKey>;
15548
13910
  export const priceFacetBoundary: PropTypes.Requireable<io.flow.v0.enums.PriceFacetBoundary>;
15549
13911
  export const pricingLevySetting: PropTypes.Requireable<io.flow.v0.enums.PricingLevySetting>;
15550
- export const productRestrictionRule: PropTypes.Requireable<io.flow.v0.enums.ProductRestrictionRule>;
15551
13912
  export const promotionTriggerType: PropTypes.Requireable<io.flow.v0.enums.PromotionTriggerType>;
15552
13913
  export const provinceType: PropTypes.Requireable<io.flow.v0.enums.ProvinceType>;
15553
13914
  export const quoteErrorCode: PropTypes.Requireable<io.flow.v0.enums.QuoteErrorCode>;
@@ -15680,6 +14041,8 @@ export const allocationV2: PropTypes.Requireable<io.flow.v0.models.AllocationV2>
15680
14041
  export const amountMargin: PropTypes.Requireable<io.flow.v0.models.AmountMargin>;
15681
14042
  export const amountMarginForm: PropTypes.Requireable<io.flow.v0.models.AmountMarginForm>;
15682
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>;
15683
14046
  export const anshItemDeleted: PropTypes.Requireable<io.flow.v0.models.AnshItemDeleted>;
15684
14047
  export const anshItemUpserted: PropTypes.Requireable<io.flow.v0.models.AnshItemUpserted>;
15685
14048
  export const applePayMerchantValidationPayload: PropTypes.Requireable<io.flow.v0.models.ApplePayMerchantValidationPayload>;
@@ -15995,6 +14358,7 @@ export const ecommercePlatform: PropTypes.Requireable<io.flow.v0.models.Ecommerc
15995
14358
  export const ecommercePlatformDeleted: PropTypes.Requireable<io.flow.v0.models.EcommercePlatformDeleted>;
15996
14359
  export const ecommercePlatformForm: PropTypes.Requireable<io.flow.v0.models.EcommercePlatformForm>;
15997
14360
  export const ecommercePlatformUpserted: PropTypes.Requireable<io.flow.v0.models.EcommercePlatformUpserted>;
14361
+ export const editSummary: PropTypes.Requireable<io.flow.v0.models.EditSummary>;
15998
14362
  export const eeiFilingRatecardFee: PropTypes.Requireable<io.flow.v0.models.EeiFilingRatecardFee>;
15999
14363
  export const eeiFilingServiceFee: PropTypes.Requireable<io.flow.v0.models.EeiFilingServiceFee>;
16000
14364
  export const emailAbandonedOrderPromotion: PropTypes.Requireable<io.flow.v0.models.EmailAbandonedOrderPromotion>;
@@ -16307,6 +14671,7 @@ export const monthlyAverage: PropTypes.Requireable<io.flow.v0.models.MonthlyAver
16307
14671
  export const monthlyAverageVolume: PropTypes.Requireable<io.flow.v0.models.MonthlyAverageVolume>;
16308
14672
  export const name: PropTypes.Requireable<io.flow.v0.models.Name>;
16309
14673
  export const nameForm: PropTypes.Requireable<io.flow.v0.models.NameForm>;
14674
+ export const needsActionAttributes: PropTypes.Requireable<io.flow.v0.models.NeedsActionAttributes>;
16310
14675
  export const niallItemDeleted: PropTypes.Requireable<io.flow.v0.models.NiallItemDeleted>;
16311
14676
  export const niallItemUpserted: PropTypes.Requireable<io.flow.v0.models.NiallItemUpserted>;
16312
14677
  export const notificationDeletedV2: PropTypes.Requireable<io.flow.v0.models.NotificationDeletedV2>;
@@ -16367,9 +14732,12 @@ export const orderPlaced: PropTypes.Requireable<io.flow.v0.models.OrderPlaced>;
16367
14732
  export const orderPlacedDetails: PropTypes.Requireable<io.flow.v0.models.OrderPlacedDetails>;
16368
14733
  export const orderPlacedV2: PropTypes.Requireable<io.flow.v0.models.OrderPlacedV2>;
16369
14734
  export const orderPriceDetail: PropTypes.Requireable<io.flow.v0.models.OrderPriceDetail>;
14735
+ export const orderPriceDetailBreakdown: PropTypes.Requireable<io.flow.v0.models.OrderPriceDetailBreakdown>;
16370
14736
  export const orderPriceDetailComponent: PropTypes.Requireable<io.flow.v0.models.OrderPriceDetailComponent>;
14737
+ export const orderPriceFee: PropTypes.Requireable<io.flow.v0.models.OrderPriceFee>;
16371
14738
  export const orderPromotionTrigger: PropTypes.Requireable<io.flow.v0.models.OrderPromotionTrigger>;
16372
14739
  export const orderPutForm: PropTypes.Requireable<io.flow.v0.models.OrderPutForm>;
14740
+ export const orderRate: PropTypes.Requireable<io.flow.v0.models.OrderRate>;
16373
14741
  export const orderReference: PropTypes.Requireable<io.flow.v0.models.OrderReference>;
16374
14742
  export const orderRefundSummary: PropTypes.Requireable<io.flow.v0.models.OrderRefundSummary>;
16375
14743
  export const orderRefundSummaryAmounts: PropTypes.Requireable<io.flow.v0.models.OrderRefundSummaryAmounts>;
@@ -16620,12 +14988,14 @@ export const productSellability: PropTypes.Requireable<io.flow.v0.models.Product
16620
14988
  export const productSellabilityForm: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityForm>;
16621
14989
  export const productTaxonomyCategory: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyCategory>;
16622
14990
  export const productTaxonomyData: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyData>;
14991
+ export const productTaxonomyValue: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyValue>;
16623
14992
  export const productUpdated: PropTypes.Requireable<io.flow.v0.models.ProductUpdated>;
16624
14993
  export const promotionTrigger: PropTypes.Requireable<io.flow.v0.models.PromotionTrigger>;
16625
14994
  export const promotionTriggerForm: PropTypes.Requireable<io.flow.v0.models.PromotionTriggerForm>;
16626
14995
  export const promotions: PropTypes.Requireable<io.flow.v0.models.Promotions>;
16627
14996
  export const province: PropTypes.Requireable<io.flow.v0.models.Province>;
16628
14997
  export const publicKey: PropTypes.Requireable<io.flow.v0.models.PublicKey>;
14998
+ export const purchasePriceBreakdown: PropTypes.Requireable<io.flow.v0.models.PurchasePriceBreakdown>;
16629
14999
  export const query: PropTypes.Requireable<io.flow.v0.models.Query>;
16630
15000
  export const queryBuilder: PropTypes.Requireable<io.flow.v0.models.QueryBuilder>;
16631
15001
  export const queryBuilderFilterForm: PropTypes.Requireable<io.flow.v0.models.QueryBuilderFilterForm>;