@flowio/types 11.24.123 → 11.24.125

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api.d.ts CHANGED
@@ -1368,6 +1368,7 @@ declare namespace io.flow.shopify.external.v0.models {
1368
1368
  interface GraphqlMetaobjectField {
1369
1369
  readonly key: string;
1370
1370
  readonly value?: string;
1371
+ readonly type?: string;
1371
1372
  }
1372
1373
  interface GraphqlOption {
1373
1374
  readonly id: string;
@@ -2205,6 +2206,82 @@ declare namespace io.flow.shopify.external.v0.models {
2205
2206
  readonly webhook: io.flow.shopify.external.v0.models.Webhook;
2206
2207
  }
2207
2208
  }
2209
+ declare namespace io.flow.channel.internal.v0.enums {
2210
+ type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
2211
+ type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
2212
+ type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
2213
+ 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';
2214
+ type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
2215
+ type OrderPaymentSourceType = 'globale' | 'third_party';
2216
+ }
2217
+ declare namespace io.flow.channel.internal.v0.models {
2218
+ interface ChannelCurrencyForm {
2219
+ readonly currency: string;
2220
+ readonly channel_id: string;
2221
+ readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
2222
+ }
2223
+ interface ChannelForm {
2224
+ readonly name: string;
2225
+ readonly environment: io.flow.common.v0.enums.Environment;
2226
+ readonly organization_id_prefix?: string;
2227
+ }
2228
+ interface ChannelMembership {
2229
+ readonly id: string;
2230
+ readonly channel: io.flow.common.v0.models.ChannelReference;
2231
+ readonly user: io.flow.common.v0.unions.ExpandableUser;
2232
+ readonly role?: io.flow.common.v0.enums.Role;
2233
+ }
2234
+ interface ChannelMembershipForm {
2235
+ readonly channel_id: string;
2236
+ readonly user_id: string;
2237
+ readonly role?: io.flow.common.v0.enums.Role;
2238
+ }
2239
+ interface ChannelMembershipPutForm {
2240
+ readonly role?: io.flow.common.v0.enums.Role;
2241
+ }
2242
+ interface ChannelOrderAcceptance {
2243
+ readonly id: string;
2244
+ readonly organization_id: string;
2245
+ readonly order_number: string;
2246
+ readonly channel_id: string;
2247
+ readonly external_order_reference: string;
2248
+ readonly payment_request_id?: string;
2249
+ readonly order_payment_request_ids?: string[];
2250
+ readonly order_edit_payment_request_ids?: string[];
2251
+ readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
2252
+ readonly reasons: io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
2253
+ readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
2254
+ readonly order_created_at?: string;
2255
+ readonly order_updated_at?: string;
2256
+ readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
2257
+ readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
2258
+ }
2259
+ interface ChannelOrderAcceptanceDetails {
2260
+ readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
2261
+ readonly external_order: any;
2262
+ }
2263
+ interface ChannelOrderAcceptanceFailure {
2264
+ readonly id: string;
2265
+ readonly organization_id: string;
2266
+ readonly channel_id: string;
2267
+ readonly payment_request_id: string;
2268
+ readonly code: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
2269
+ readonly reason: string;
2270
+ }
2271
+ interface ChannelOrderAcceptanceForm {
2272
+ readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
2273
+ }
2274
+ interface ChannelOrderAcceptanceReason {
2275
+ readonly description: string;
2276
+ readonly rejection_reason?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
2277
+ }
2278
+ interface FlowChannelOrganization {
2279
+ readonly placeholder?: string;
2280
+ }
2281
+ interface OrderEditSummary {
2282
+ readonly edited_at: string;
2283
+ }
2284
+ }
2208
2285
  declare namespace io.flow.common.v0.enums {
2209
2286
  type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
2210
2287
  type AvailabilityStatus = 'enabled' | 'disabled';
@@ -2598,147 +2675,6 @@ declare namespace io.flow.error.v0.models {
2598
2675
  readonly messages: string[];
2599
2676
  }
2600
2677
  }
2601
- declare namespace io.flow.price.v0.enums {
2602
- type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
2603
- type LevyStrategy = 'minimum' | 'average' | 'maximum';
2604
- type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
2605
- 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';
2606
- type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
2607
- type PricingLevySetting = 'included' | 'displayed' | 'ignored';
2608
- }
2609
- declare namespace io.flow.price.v0.models {
2610
- interface CurrencyFormat {
2611
- readonly symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
2612
- readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
2613
- }
2614
- interface DeminimisPerItem {
2615
- readonly discriminator: 'deminimis_per_item';
2616
- readonly currency: string;
2617
- readonly minimum?: number;
2618
- readonly maximum?: number;
2619
- }
2620
- interface DeminimisSimple {
2621
- readonly discriminator: 'deminimis_simple';
2622
- readonly value?: number;
2623
- readonly currency: string;
2624
- readonly components: io.flow.price.v0.enums.LevyComponent[];
2625
- readonly minimum?: number;
2626
- }
2627
- interface Duty {
2628
- readonly rate: number;
2629
- readonly components: io.flow.price.v0.enums.LevyComponent[];
2630
- readonly deminimis?: io.flow.price.v0.unions.Deminimis;
2631
- readonly name?: string;
2632
- }
2633
- interface LocalPriceDetails {
2634
- readonly base: io.flow.price.v0.models.PriceDetails;
2635
- readonly local: io.flow.price.v0.models.PriceDetails;
2636
- readonly discount?: io.flow.price.v0.models.PriceDetail;
2637
- readonly local_before_discount?: io.flow.price.v0.models.PriceDetail;
2638
- }
2639
- interface PriceBook {
2640
- readonly id: string;
2641
- readonly key: string;
2642
- readonly currency: string;
2643
- readonly name: string;
2644
- readonly includes: io.flow.common.v0.models.IncludedLevies;
2645
- readonly status: io.flow.common.v0.enums.PriceBookStatus;
2646
- }
2647
- interface PriceBookForm {
2648
- readonly currency: string;
2649
- readonly name: string;
2650
- readonly includes: io.flow.common.v0.enums.IncludedLevyKey;
2651
- readonly status?: io.flow.common.v0.enums.PriceBookStatus;
2652
- }
2653
- interface PriceBookItem {
2654
- readonly id: string;
2655
- readonly key: string;
2656
- readonly price_book: io.flow.price.v0.models.PriceBookReference;
2657
- readonly price: io.flow.common.v0.models.Price;
2658
- readonly item_number: string;
2659
- readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
2660
- readonly item_attributes?: Record<string, string>;
2661
- }
2662
- interface PriceBookItemForm {
2663
- readonly price_book_key: string;
2664
- readonly item_number: string;
2665
- readonly amount: number;
2666
- readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
2667
- readonly item_attributes?: Record<string, string>;
2668
- }
2669
- interface PriceBookItemQueryForm {
2670
- readonly price_book_key: string;
2671
- readonly item_query: string;
2672
- readonly amount: number;
2673
- readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
2674
- readonly item_attributes?: Record<string, string>;
2675
- }
2676
- interface PriceBookItemSchedule {
2677
- readonly starts_at: string;
2678
- readonly ends_at?: string;
2679
- }
2680
- interface PriceBookReference {
2681
- readonly id: string;
2682
- readonly key: string;
2683
- }
2684
- interface PriceCheck {
2685
- readonly display: io.flow.price.v0.models.LocalPriceDetails;
2686
- readonly final: io.flow.price.v0.models.LocalPriceDetails;
2687
- }
2688
- interface PriceDetail {
2689
- readonly key: io.flow.price.v0.enums.PriceDetailKey;
2690
- readonly components: io.flow.price.v0.models.PriceDetailComponent[];
2691
- readonly amount: number;
2692
- readonly label: string;
2693
- readonly name?: string;
2694
- readonly basis?: number;
2695
- }
2696
- interface PriceDetailComponent {
2697
- readonly key: io.flow.price.v0.enums.PriceDetailComponentKey;
2698
- readonly amount: number;
2699
- readonly label: string;
2700
- readonly name?: string;
2701
- }
2702
- interface PriceDetails {
2703
- readonly currency: string;
2704
- readonly item_price: io.flow.price.v0.models.PriceDetail;
2705
- readonly margins: io.flow.price.v0.models.PriceDetail;
2706
- readonly vat: io.flow.price.v0.models.PriceDetail;
2707
- readonly duty: io.flow.price.v0.models.PriceDetail;
2708
- readonly rounding: io.flow.price.v0.models.PriceDetail;
2709
- readonly price: io.flow.common.v0.models.Price;
2710
- readonly total: io.flow.common.v0.models.Price;
2711
- readonly adjustment?: io.flow.price.v0.models.PriceDetail;
2712
- }
2713
- interface PriceEquation {
2714
- readonly contracted_rate: number;
2715
- readonly rate: number;
2716
- readonly pricing: io.flow.price.v0.models.Pricing;
2717
- readonly base_price: number;
2718
- readonly discount: number;
2719
- readonly fixed_margin: number;
2720
- readonly percent_margin: number;
2721
- readonly insurance: number;
2722
- readonly freight: number;
2723
- readonly duty?: io.flow.price.v0.models.Duty;
2724
- readonly tax?: io.flow.price.v0.models.Tax;
2725
- readonly percent_sales_margin: number;
2726
- }
2727
- interface Pricing {
2728
- readonly vat: io.flow.price.v0.enums.PricingLevySetting;
2729
- readonly duty: io.flow.price.v0.enums.PricingLevySetting;
2730
- readonly rounding?: io.flow.common.v0.models.Rounding;
2731
- }
2732
- interface Tax {
2733
- readonly name: string;
2734
- readonly rate: number;
2735
- readonly components: io.flow.price.v0.enums.LevyComponent[];
2736
- readonly deminimis?: io.flow.price.v0.unions.Deminimis;
2737
- }
2738
- }
2739
- declare namespace io.flow.price.v0.unions {
2740
- type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
2741
- }
2742
2678
  declare namespace io.flow.channel.v0.enums {
2743
2679
  type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
2744
2680
  }
@@ -2792,1642 +2728,253 @@ declare namespace io.flow.channel.v0.models {
2792
2728
  readonly attributes?: Record<string, string>;
2793
2729
  }
2794
2730
  }
2795
- declare namespace io.flow.reference.v0.enums {
2796
- type PaymentMethodCapability = 'credit' | 'debit';
2797
- type PaymentMethodType = 'card' | 'online' | 'offline';
2798
- type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
2799
- type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
2731
+ declare namespace io.flow.apple.pay.v0.enums {
2732
+ type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
2733
+ type ApplePayLineItemType = 'final' | 'pending';
2734
+ type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
2735
+ type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
2736
+ type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
2800
2737
  }
2801
- declare namespace io.flow.reference.v0.models {
2802
- interface Carrier {
2803
- readonly id: string;
2804
- readonly name: string;
2805
- readonly tracking_url: string;
2806
- }
2807
- interface CarrierService {
2808
- readonly id: string;
2809
- readonly carrier: io.flow.reference.v0.models.Carrier;
2810
- readonly name: string;
2738
+ declare namespace io.flow.apple.pay.v0.models {
2739
+ interface ApplePayLineItem {
2740
+ readonly label: string;
2741
+ readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
2742
+ readonly amount: string;
2811
2743
  }
2812
- interface Country {
2813
- readonly name: string;
2814
- readonly iso_3166_2: string;
2815
- readonly iso_3166_3: string;
2816
- readonly languages: string[];
2817
- readonly measurement_system: string;
2818
- readonly default_currency?: string;
2819
- readonly default_language?: string;
2820
- readonly timezones: string[];
2821
- readonly default_delivered_duty?: string;
2744
+ interface ApplePayPaymentContact {
2745
+ readonly email_address?: string;
2746
+ readonly family_name?: string;
2747
+ readonly given_name?: string;
2748
+ readonly phone_number?: string;
2749
+ readonly phonetic_familyName?: string;
2750
+ readonly phonetic_givenName?: string;
2751
+ readonly address_lines?: string[];
2752
+ readonly locality?: string;
2753
+ readonly sub_locality?: string;
2754
+ readonly administrative_area?: string;
2755
+ readonly sub_administrative_area?: string;
2756
+ readonly postal_code?: string;
2757
+ readonly country?: string;
2758
+ readonly country_code?: string;
2822
2759
  }
2823
- interface Currency {
2824
- readonly name: string;
2825
- readonly iso_4217_3: string;
2826
- readonly number_decimals: number;
2827
- readonly symbols?: io.flow.reference.v0.models.CurrencySymbols;
2828
- readonly default_locale?: string;
2760
+ interface ApplePayPaymentData {
2761
+ readonly applicationPrimaryAccountNumber: string;
2762
+ readonly applicationExpirationDate: string;
2763
+ readonly currencyCode: string;
2764
+ readonly transactionAmount: number;
2765
+ readonly cardholderName?: string;
2766
+ readonly deviceManufacturerIdentifier: string;
2767
+ readonly paymentDataType: string;
2768
+ readonly paymentData: any;
2829
2769
  }
2830
- interface CurrencySymbols {
2831
- readonly primary: string;
2832
- readonly narrow?: string;
2770
+ interface ApplePayPaymentInfo {
2771
+ readonly total: io.flow.apple.pay.v0.models.ApplePayLineItem;
2772
+ readonly line_items?: io.flow.apple.pay.v0.models.ApplePayLineItem[];
2773
+ readonly country_code: string;
2774
+ readonly currency_code: string;
2775
+ readonly merchant_capabilities: io.flow.apple.pay.v0.enums.ApplePayMerchantCapability[];
2776
+ readonly shipping_methods?: io.flow.apple.pay.v0.models.ApplePayShippingMethod[];
2777
+ readonly shipping_type?: io.flow.apple.pay.v0.enums.ApplePayShippingType;
2778
+ readonly supported_countries?: string[];
2779
+ readonly supported_networks: io.flow.apple.pay.v0.enums.ApplePaySupportedNetworks[];
2780
+ readonly required_billingContactFields?: io.flow.apple.pay.v0.enums.ApplePayContactField[];
2781
+ readonly required_shippingContactFields?: io.flow.apple.pay.v0.enums.ApplePayContactField[];
2782
+ readonly billing_contact?: io.flow.apple.pay.v0.models.ApplePayPaymentContact;
2783
+ readonly shipping_contact?: io.flow.apple.pay.v0.models.ApplePayPaymentContact;
2784
+ readonly application_data?: string;
2833
2785
  }
2834
- interface Language {
2835
- readonly name: string;
2836
- readonly iso_639_2: string;
2837
- }
2838
- interface Locale {
2839
- readonly id: string;
2840
- readonly name: string;
2841
- readonly country: string;
2842
- readonly language: string;
2843
- readonly numbers: io.flow.reference.v0.models.LocaleNumbers;
2844
- }
2845
- interface LocaleNumbers {
2846
- readonly decimal: string;
2847
- readonly group: string;
2848
- }
2849
- interface LocalizedTranslation {
2850
- readonly locale: io.flow.reference.v0.models.Locale;
2851
- readonly name: string;
2852
- }
2853
- interface PaymentMethod {
2854
- readonly id: string;
2855
- readonly type: io.flow.reference.v0.enums.PaymentMethodType;
2856
- readonly name: string;
2857
- readonly images: io.flow.reference.v0.models.PaymentMethodImages;
2858
- readonly regions: string[];
2859
- readonly capabilities?: io.flow.reference.v0.enums.PaymentMethodCapability[];
2860
- }
2861
- interface PaymentMethodImage {
2862
- readonly url: string;
2863
- readonly width: number;
2864
- readonly height: number;
2865
- }
2866
- interface PaymentMethodImages {
2867
- readonly small: io.flow.reference.v0.models.PaymentMethodImage;
2868
- readonly medium: io.flow.reference.v0.models.PaymentMethodImage;
2869
- readonly large: io.flow.reference.v0.models.PaymentMethodImage;
2870
- }
2871
- interface Province {
2872
- readonly id: string;
2873
- readonly iso_3166_2: string;
2874
- readonly name: string;
2875
- readonly country: string;
2876
- readonly province_type: io.flow.reference.v0.enums.ProvinceType;
2877
- readonly translations?: io.flow.reference.v0.models.LocalizedTranslation[];
2878
- }
2879
- interface Region {
2880
- readonly id: string;
2881
- readonly name: string;
2882
- readonly countries: string[];
2883
- readonly currencies: string[];
2884
- readonly languages: string[];
2885
- readonly measurement_systems: string[];
2886
- readonly timezones: string[];
2887
- }
2888
- interface Timezone {
2889
- readonly name: string;
2890
- readonly description: string;
2891
- readonly offset: number;
2892
- }
2893
- }
2894
- declare namespace io.flow.fulfillment.v0.enums {
2895
- type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
2896
- 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';
2897
- type DeliveryOptionCostDetailSource = 'center' | 'ratecard';
2898
- type DeliveryWindowComponentSource = 'flow' | 'organization' | 'carrier' | 'center' | 'mixed';
2899
- type DeliveryWindowLocation = 'center' | 'crossdock' | 'customer';
2900
- type FulfillmentRouting = 'fulfilled_from_center' | 'fulfillment_service';
2901
- type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
2902
- type LaneDirection = 'outbound' | 'return';
2903
- type LanePreselectPreference = 'lowest_cost' | 'default_tier';
2904
- type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
2905
- type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
2906
- type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
2907
- type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
2908
- type RatecardOwner = 'flow' | 'organization';
2909
- type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
2910
- type ShippingConfigurationType = 'default' | 'variant';
2911
- type Strategy = 'range' | 'from' | 'to';
2912
- type SurchargeResponsibleParty = 'organization' | 'customer';
2913
- type TierAvailability = 'always' | 'backup';
2914
- type TierEstimateType = 'calculated' | 'custom';
2915
- type TierStrategy = 'fastest' | 'lowest_cost';
2916
- type ZeroAmountIndicator = 'zero' | 'free';
2917
- }
2918
- declare namespace io.flow.fulfillment.v0.models {
2919
- interface AmountMargin {
2920
- readonly discriminator: 'amount_margin';
2921
- readonly margin: io.flow.common.v0.models.Price;
2922
- }
2923
- interface AmountMarginForm {
2924
- readonly discriminator: 'amount_margin_form';
2925
- readonly margin: io.flow.common.v0.models.Money;
2926
- }
2927
- interface AtCost {
2928
- readonly discriminator: 'at_cost';
2929
- readonly ignore?: string;
2930
- }
2931
- interface AvailableService {
2932
- readonly service: string;
2933
- readonly scheduled_pickups?: io.flow.fulfillment.v0.models.ScheduledPickup[];
2934
- readonly lead_days?: io.flow.fulfillment.v0.models.NumberRange;
2935
- }
2936
- interface CarrierReference {
2937
- readonly id: string;
2938
- }
2939
- interface Center {
2940
- readonly discriminator: 'center';
2941
- readonly id: string;
2942
- readonly key: string;
2943
- readonly address: io.flow.fulfillment.v0.models.ShippingAddress;
2944
- readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
2945
- readonly name: string;
2946
- readonly services: io.flow.fulfillment.v0.models.AvailableService[];
2947
- readonly schedule: io.flow.common.v0.models.Schedule;
2948
- readonly timezone: string;
2949
- readonly capabilities?: io.flow.fulfillment.v0.enums.CenterCapability[];
2950
- readonly partner_center?: io.flow.fulfillment.v0.models.PartnerCenter;
2951
- }
2952
- interface CenterForm {
2953
- readonly address: io.flow.fulfillment.v0.models.ShippingAddress;
2954
- readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
2955
- readonly name: string;
2956
- readonly services: io.flow.fulfillment.v0.models.AvailableService[];
2957
- readonly schedule: io.flow.common.v0.models.Schedule;
2958
- readonly timezone?: string;
2959
- readonly key?: string;
2960
- readonly capabilities?: io.flow.fulfillment.v0.enums.CenterCapability[];
2961
- readonly partner_center_form?: io.flow.fulfillment.v0.models.PartnerCenterForm;
2962
- }
2963
- interface CenterQuery {
2964
- readonly q: string;
2965
- }
2966
- interface CenterReference {
2967
- readonly discriminator: 'center_reference';
2968
- readonly organization_id: string;
2969
- readonly center_key: string;
2970
- }
2971
- interface CenterSummary {
2972
- readonly id: string;
2973
- readonly key: string;
2974
- readonly address?: io.flow.fulfillment.v0.models.ShippingAddress;
2975
- }
2976
- interface CenterVersion {
2977
- readonly id: string;
2978
- readonly timestamp: string;
2979
- readonly type: io.flow.common.v0.enums.ChangeType;
2980
- readonly center: io.flow.fulfillment.v0.models.Center;
2981
- }
2982
- interface CommercialInvoiceFee {
2983
- readonly discriminator: 'commercial_invoice_fee';
2984
- readonly amount: io.flow.common.v0.models.Money;
2985
- }
2986
- interface CountryAvailability {
2987
- readonly status: io.flow.fulfillment.v0.enums.ItemAvailabilityStatus;
2988
- readonly countries: string[];
2989
- }
2990
- interface CountryShippingPricing {
2991
- readonly pricing: io.flow.fulfillment.v0.models.ItemShippingPricing;
2992
- readonly countries: string[];
2993
- }
2994
- interface DeliveryItem {
2995
- readonly id?: string;
2996
- readonly number: string;
2997
- readonly quantity: number;
2998
- readonly shipment_estimate?: io.flow.common.v0.models.DatetimeRange;
2999
- readonly price?: io.flow.common.v0.models.MoneyWithOptionalBase;
3000
- readonly attributes?: Record<string, string>;
3001
- readonly center?: string;
3002
- readonly line_number?: number;
3003
- }
3004
- interface DeliveryOption {
3005
- readonly id: string;
3006
- readonly cost: io.flow.fulfillment.v0.models.PriceWithBaseAndDetails;
3007
- readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
3008
- readonly price: io.flow.fulfillment.v0.models.PriceWithBaseAndDetails;
3009
- readonly service: io.flow.fulfillment.v0.models.ServiceSummary;
3010
- readonly tier: io.flow.fulfillment.v0.models.TierSummary;
3011
- readonly window: io.flow.fulfillment.v0.models.DeliveryWindow;
3012
- readonly rule_outcome?: io.flow.fulfillment.v0.unions.TierRuleOutcome;
3013
- readonly weight?: io.flow.fulfillment.v0.models.OptionWeightEstimates;
3014
- readonly send_to?: io.flow.fulfillment.v0.models.ShippingAddress;
3015
- readonly surcharge?: io.flow.fulfillment.v0.models.PriceWithBaseAndDetails;
3016
- readonly ratecard_owner?: io.flow.fulfillment.v0.enums.RatecardOwner;
3017
- }
3018
- interface DeliveryOptionCostComponent {
3019
- readonly key: io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailComponentKey;
3020
- readonly currency: string;
3021
- readonly amount: number;
3022
- readonly label: string;
3023
- readonly base?: io.flow.common.v0.models.Price;
3024
- }
3025
- interface DeliveryOptionCostDetail {
3026
- readonly source: io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailSource;
3027
- readonly ratecard_id?: string;
3028
- readonly currency: string;
3029
- readonly amount: number;
3030
- readonly label: string;
3031
- readonly base?: io.flow.common.v0.models.Price;
3032
- readonly components: io.flow.fulfillment.v0.models.DeliveryOptionCostComponent[];
3033
- }
3034
- interface DeliveryOptionForm {
3035
- readonly delivery: string;
3036
- readonly items: io.flow.fulfillment.v0.models.QuoteLineItemForm[];
3037
- readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
3038
- }
3039
- interface DeliveryOptionReference {
3040
- readonly id: string;
3041
- }
3042
- interface DeliveryOptionSummary {
3043
- readonly id: string;
3044
- readonly cost: io.flow.common.v0.models.Price;
3045
- readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
3046
- readonly price: io.flow.common.v0.models.Price;
3047
- readonly service: io.flow.fulfillment.v0.models.ServiceReference;
3048
- readonly tier: io.flow.fulfillment.v0.models.TierReference;
3049
- readonly window: io.flow.common.v0.models.DatetimeRange;
3050
- }
3051
- interface DeliveryOptionVersion {
3052
- readonly id: string;
3053
- readonly timestamp: string;
3054
- readonly type: io.flow.common.v0.enums.ChangeType;
3055
- readonly delivery_option: io.flow.fulfillment.v0.models.DeliveryOptionSummary;
3056
- }
3057
- interface DeliverySummary {
3058
- readonly id: string;
3059
- readonly items: io.flow.common.v0.models.LineItemForm[];
3060
- }
3061
- interface DeliveryVersion {
3062
- readonly id: string;
3063
- readonly timestamp: string;
3064
- readonly type: io.flow.common.v0.enums.ChangeType;
3065
- readonly delivery: io.flow.fulfillment.v0.models.DeliverySummary;
3066
- }
3067
- interface DeliveryWindow {
3068
- readonly from: string;
3069
- readonly to: string;
3070
- readonly timezone?: string;
3071
- readonly label?: string;
3072
- readonly min_days?: number;
3073
- readonly max_days?: number;
3074
- }
3075
- interface DeliveryWindowComponent {
3076
- readonly from: string;
3077
- readonly to: string;
3078
- readonly source: io.flow.fulfillment.v0.enums.DeliveryWindowComponentSource;
3079
- }
3080
- interface DeliveryWindowComponents {
3081
- readonly shipment_estimate: io.flow.fulfillment.v0.models.DeliveryWindowComponent;
3082
- readonly transit_estimate: io.flow.fulfillment.v0.models.DeliveryWindowComponent;
3083
- }
3084
- interface DeliveryWindowComponentsV2 {
3085
- readonly processing_estimates: io.flow.fulfillment.v0.models.ProcessingEstimate[];
3086
- readonly transit_estimates: io.flow.fulfillment.v0.models.TransitEstimate[];
3087
- }
3088
- interface DeliveryWindowSummary {
3089
- readonly country: string;
3090
- readonly delivery_window: io.flow.fulfillment.v0.models.DeliveryWindow;
3091
- }
3092
- interface DigitalDelivery {
3093
- readonly discriminator: 'digital_delivery';
3094
- readonly id: string;
3095
- readonly key?: string;
3096
- readonly items: io.flow.fulfillment.v0.models.DeliveryItem[];
3097
- readonly prices?: io.flow.order.price.v0.models.OrderPriceDetail[];
3098
- readonly total?: io.flow.catalog.v0.models.LocalizedTotal;
3099
- }
3100
- interface EstimatedWindow {
3101
- readonly from: number;
3102
- readonly to: number;
3103
- readonly unit: io.flow.common.v0.enums.UnitOfTime;
3104
- }
3105
- interface FlatRate {
3106
- readonly discriminator: 'flat_rate';
3107
- readonly price: io.flow.common.v0.models.Price;
3108
- readonly zero_amount_indicator?: io.flow.fulfillment.v0.enums.ZeroAmountIndicator;
3109
- }
3110
- interface FlatRateForm {
3111
- readonly discriminator: 'flat_rate_form';
3112
- readonly price: io.flow.common.v0.models.Money;
3113
- readonly zero_amount_indicator?: io.flow.fulfillment.v0.enums.ZeroAmountIndicator;
3114
- }
3115
- interface FulfillmentExperienceReference {
3116
- readonly id: string;
3117
- readonly currency: string;
3118
- }
3119
- interface InboundCartonFee {
3120
- readonly discriminator: 'inbound_carton_fee';
3121
- readonly amount: io.flow.common.v0.models.Money;
3122
- }
3123
- interface ItemShippingPricing {
3124
- readonly min: io.flow.common.v0.models.Price;
3125
- readonly max?: io.flow.common.v0.models.Price;
3126
- }
3127
- interface NumberRange {
3128
- readonly min: number;
3129
- readonly max: number;
3130
- }
3131
- interface OptionWeightEstimates {
3132
- readonly gravitational: io.flow.common.v0.models.Measurement;
3133
- readonly dimensional: io.flow.common.v0.models.Measurement;
3134
- }
3135
- interface OutboundCartonFee {
3136
- readonly discriminator: 'outbound_carton_fee';
3137
- readonly amount: io.flow.common.v0.models.Money;
3138
- }
3139
- interface Packaging {
3140
- readonly dimensions: io.flow.common.v0.models.Dimensions;
3141
- readonly name?: string;
3142
- readonly number?: string;
3143
- }
3144
- interface PartnerCenter {
3145
- readonly partner_reference: io.flow.common.v0.models.PartnerReference;
3146
- readonly number?: string;
3147
- readonly fees?: io.flow.fulfillment.v0.unions.PartnerCenterFee[];
3148
- }
3149
- interface PartnerCenterForm {
3150
- readonly partner_id: string;
3151
- readonly number?: string;
3152
- readonly fees?: io.flow.fulfillment.v0.unions.PartnerCenterFee[];
3153
- }
3154
- interface PercentMargin {
3155
- readonly discriminator: 'percent_margin';
3156
- readonly percentage: number;
3157
- }
3158
- interface PhysicalDelivery {
3159
- readonly discriminator: 'physical_delivery';
3160
- readonly id: string;
3161
- readonly key?: string;
3162
- readonly center?: io.flow.fulfillment.v0.models.CenterSummary;
3163
- readonly fulfillment_routing?: io.flow.fulfillment.v0.enums.FulfillmentRouting;
3164
- readonly ship_from_country?: string;
3165
- readonly items: io.flow.fulfillment.v0.models.DeliveryItem[];
3166
- readonly options: io.flow.fulfillment.v0.models.DeliveryOption[];
3167
- readonly special_services?: io.flow.fulfillment.v0.enums.PhysicalDeliverySpecialSerivce[];
3168
- readonly prices?: io.flow.order.price.v0.models.OrderPriceDetail[];
3169
- readonly total?: io.flow.catalog.v0.models.LocalizedTotal;
3170
- readonly goods_supply?: io.flow.common.v0.enums.GoodsSupply;
3171
- readonly merchant_of_record_flow_entity?: io.flow.merchant.of.record.v0.enums.FlowEntity;
3172
- readonly preferred_service?: io.flow.fulfillment.v0.models.PhysicalDeliveryPreferredService;
3173
- }
3174
- interface PhysicalDeliveryPreferredService {
3175
- readonly id: string;
3176
- readonly selection_stratey: io.flow.fulfillment.v0.enums.PreferredServiceSelectionStrategy;
3177
- }
3178
- interface PriceWithBaseAndDetails {
3179
- readonly currency: string;
3180
- readonly amount: number;
3181
- readonly label: string;
3182
- readonly base?: io.flow.common.v0.models.Price;
3183
- readonly details?: io.flow.fulfillment.v0.models.DeliveryOptionCostDetail[];
3184
- }
3185
- interface ProcessingEstimate {
3186
- readonly location: io.flow.fulfillment.v0.enums.DeliveryWindowLocation;
3187
- readonly min_date: string;
3188
- readonly max_date: string;
3189
- readonly source: io.flow.fulfillment.v0.enums.DeliveryWindowComponentSource;
3190
- }
3191
- interface Quote {
3192
- readonly id: string;
3193
- readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
3194
- readonly deliveries: io.flow.fulfillment.v0.unions.Delivery[];
3195
- readonly selections: io.flow.fulfillment.v0.models.DeliveryOptionReference[];
3196
- readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
3197
- readonly delivered_duties: io.flow.common.v0.enums.DeliveredDuty[];
3198
- }
3199
- interface QuoteError {
3200
- readonly code: io.flow.fulfillment.v0.enums.QuoteErrorCode;
3201
- readonly messages: string[];
3202
- readonly item_numbers?: string[];
3203
- }
3204
- interface QuoteForm {
3205
- readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
3206
- readonly experience: string;
3207
- readonly items: io.flow.fulfillment.v0.models.QuoteLineItemForm[];
3208
- readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
3209
- readonly delivered_duties?: io.flow.common.v0.enums.DeliveredDuty[];
3210
- readonly direction?: io.flow.fulfillment.v0.enums.LaneDirection;
3211
- }
3212
- interface QuoteLineItemForm {
3213
- readonly number: string;
3214
- readonly quantity: number;
3215
- readonly shipment_estimate?: io.flow.common.v0.models.DatetimeRange;
3216
- readonly price: io.flow.common.v0.models.MoneyWithBase;
3217
- readonly attributes?: Record<string, string>;
3218
- readonly center?: string;
3219
- }
3220
- interface QuoteSummary {
3221
- readonly id: string;
3222
- readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
3223
- }
3224
- interface QuoteVersion {
3225
- readonly id: string;
3226
- readonly timestamp: string;
3227
- readonly type: io.flow.common.v0.enums.ChangeType;
3228
- readonly quote: io.flow.fulfillment.v0.models.QuoteSummary;
3229
- }
3230
- interface ScheduledPickup {
3231
- readonly day_of_week: io.flow.common.v0.enums.DayOfWeek;
3232
- readonly hour_of_day: string;
3233
- readonly minute_of_hour: string;
3234
- }
3235
- interface ServiceReference {
3236
- readonly id: string;
3237
- }
3238
- interface ServiceSummary {
3239
- readonly discriminator: 'service_summary';
3240
- readonly id: string;
3241
- readonly carrier: io.flow.fulfillment.v0.models.CarrierReference;
3242
- readonly name: string;
3243
- readonly center_code?: string;
3244
- }
3245
- interface ServiceUnknown {
3246
- readonly discriminator: 'service_unknown';
3247
- readonly name: string;
3248
- }
3249
- interface ShippingAddress {
3250
- readonly contact: io.flow.common.v0.models.Contact;
3251
- readonly location: io.flow.common.v0.models.Address;
3252
- readonly center_key?: string;
3253
- readonly center_reference?: io.flow.fulfillment.v0.models.CenterReference;
3254
- readonly service?: io.flow.fulfillment.v0.models.ServiceSummary;
3255
- }
3256
- interface ShippingConfiguration {
3257
- readonly id: string;
3258
- readonly name: string;
3259
- readonly key: string;
3260
- readonly type: io.flow.fulfillment.v0.enums.ShippingConfigurationType;
3261
- readonly shipping_lanes: io.flow.fulfillment.v0.models.ShippingLane[];
3262
- }
3263
- interface ShippingConfigurationCopy {
3264
- readonly original: io.flow.fulfillment.v0.models.ShippingConfigurationReference;
3265
- readonly new: io.flow.fulfillment.v0.models.ShippingConfigurationReference;
3266
- }
3267
- interface ShippingConfigurationCopyForm {
3268
- readonly name: string;
3269
- }
3270
- interface ShippingConfigurationForm {
3271
- readonly name: string;
3272
- }
3273
- interface ShippingConfigurationItemAvailability {
3274
- readonly id: string;
3275
- readonly item: io.flow.common.v0.models.ItemReference;
3276
- readonly shipping_configuration: io.flow.fulfillment.v0.models.ShippingConfigurationSummary;
3277
- readonly availabilities: io.flow.fulfillment.v0.models.CountryAvailability[];
3278
- }
3279
- interface ShippingConfigurationItemShippingPricing {
3280
- readonly id: string;
3281
- readonly item: io.flow.common.v0.models.ItemReference;
3282
- readonly shipping_configuration: io.flow.fulfillment.v0.models.ShippingConfigurationSummary;
3283
- readonly country_shipping_pricings: io.flow.fulfillment.v0.models.CountryShippingPricing[];
3284
- }
3285
- interface ShippingConfigurationReference {
3286
- readonly key: string;
3287
- }
3288
- interface ShippingConfigurationSummary {
3289
- readonly id: string;
3290
- readonly name: string;
3291
- readonly key: string;
3292
- readonly type: io.flow.fulfillment.v0.enums.ShippingConfigurationType;
3293
- }
3294
- interface ShippingConfigurationVersion {
3295
- readonly id: string;
3296
- readonly timestamp: string;
3297
- readonly type: io.flow.common.v0.enums.ChangeType;
3298
- readonly shipping_configuration: io.flow.fulfillment.v0.models.ShippingConfiguration;
3299
- }
3300
- interface ShippingLane {
3301
- readonly id: string;
3302
- readonly shipping_configuration: io.flow.fulfillment.v0.models.ShippingConfigurationReference;
3303
- readonly region: string;
3304
- readonly centers: io.flow.fulfillment.v0.unions.ExpandableCenter[];
3305
- readonly tiers: io.flow.fulfillment.v0.models.Tier[];
3306
- readonly query: io.flow.query.builder.v0.models.Query;
3307
- readonly strategy: io.flow.fulfillment.v0.enums.LaneStrategy;
3308
- readonly direction?: io.flow.fulfillment.v0.enums.LaneDirection;
3309
- readonly preference?: io.flow.fulfillment.v0.enums.LanePreselectPreference;
3310
- }
3311
- interface ShippingLaneDefaultTier {
3312
- readonly id: string;
3313
- readonly tier: io.flow.fulfillment.v0.models.TierReference;
3314
- }
3315
- interface ShippingLaneDefaultTierForm {
3316
- readonly tier_id: string;
3317
- }
3318
- interface ShippingLaneForm {
3319
- readonly from: string;
3320
- readonly to: string;
3321
- readonly strategy?: io.flow.fulfillment.v0.enums.LaneStrategy;
3322
- readonly direction?: io.flow.fulfillment.v0.enums.LaneDirection;
3323
- readonly preference?: io.flow.fulfillment.v0.enums.LanePreselectPreference;
3324
- }
3325
- interface ShippingLaneSummary {
3326
- readonly shipping_lane_id: string;
3327
- readonly region: string;
3328
- readonly centers: io.flow.fulfillment.v0.unions.ExpandableCenter[];
3329
- }
3330
- interface ShippingLaneVersion {
3331
- readonly id: string;
3332
- readonly timestamp: string;
3333
- readonly type: io.flow.common.v0.enums.ChangeType;
3334
- readonly shipping_lane: io.flow.fulfillment.v0.models.ShippingLane;
3335
- }
3336
- interface SurchargeResponsiblePartyDisplay {
3337
- readonly name: string;
3338
- readonly responsible_party: io.flow.fulfillment.v0.enums.SurchargeResponsibleParty;
3339
- }
3340
- interface SurchargeSetting {
3341
- readonly key: io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailComponentKey;
3342
- readonly responsible_party: io.flow.fulfillment.v0.enums.SurchargeResponsibleParty;
3343
- }
3344
- interface SurchargeSettingDisplay {
3345
- readonly name: string;
3346
- readonly description: string;
3347
- readonly key: io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailComponentKey;
3348
- readonly available: io.flow.fulfillment.v0.models.SurchargeResponsiblePartyDisplay[];
3349
- }
3350
- interface Tier {
3351
- readonly id: string;
3352
- readonly direction: io.flow.fulfillment.v0.enums.LaneDirection;
3353
- readonly integration: io.flow.fulfillment.v0.enums.ShipmentIntegrationType;
3354
- readonly name: string;
3355
- readonly message?: string;
3356
- readonly rules: io.flow.fulfillment.v0.models.TierRule[];
3357
- readonly services: io.flow.reference.v0.models.CarrierService[];
3358
- readonly strategy: io.flow.fulfillment.v0.enums.TierStrategy;
3359
- readonly visibility: io.flow.common.v0.enums.Visibility;
3360
- readonly currency: string;
3361
- readonly description?: string;
3362
- readonly display?: io.flow.fulfillment.v0.models.TierDisplay;
3363
- readonly shipping_lane?: string;
3364
- readonly surcharge_settings?: io.flow.fulfillment.v0.models.SurchargeSetting[];
3365
- readonly lane?: io.flow.fulfillment.v0.models.ShippingLaneSummary;
3366
- readonly settings?: io.flow.fulfillment.v0.models.TierSettings;
3367
- }
3368
- interface TierDisplay {
3369
- readonly estimate: io.flow.fulfillment.v0.models.TierEstimate;
3370
- }
3371
- interface TierDisplayForm {
3372
- readonly estimate?: io.flow.fulfillment.v0.models.TierEstimate;
3373
- }
3374
- interface TierEstimate {
3375
- readonly type: io.flow.fulfillment.v0.enums.TierEstimateType;
3376
- readonly label?: string;
3377
- }
3378
- interface TierForm {
3379
- readonly currency: string;
3380
- readonly integration: io.flow.fulfillment.v0.enums.ShipmentIntegrationType;
3381
- readonly name: string;
3382
- readonly message?: string;
3383
- readonly rules: io.flow.fulfillment.v0.models.TierRuleForm[];
3384
- readonly services: string[];
3385
- readonly strategy: io.flow.fulfillment.v0.enums.TierStrategy;
3386
- readonly visibility: io.flow.common.v0.enums.Visibility;
3387
- readonly description?: string;
3388
- readonly direction?: io.flow.fulfillment.v0.enums.LaneDirection;
3389
- readonly display?: io.flow.fulfillment.v0.models.TierDisplayForm;
3390
- readonly shipping_lane: string;
3391
- readonly surcharge_settings?: io.flow.fulfillment.v0.models.SurchargeSetting[];
3392
- readonly settings?: io.flow.fulfillment.v0.models.TierSettings;
3393
- }
3394
- interface TierReference {
3395
- readonly id: string;
3396
- }
3397
- interface TierRule {
3398
- readonly id: string;
3399
- readonly position: number;
3400
- readonly query: string;
3401
- readonly outcome: io.flow.fulfillment.v0.unions.TierRuleOutcome;
3402
- }
3403
- interface TierRuleForm {
3404
- readonly position?: number;
3405
- readonly query: string;
3406
- readonly outcome: io.flow.fulfillment.v0.unions.TierRuleOutcomeForm;
3407
- }
3408
- interface TierRuleVersion {
3409
- readonly id: string;
3410
- readonly timestamp: string;
3411
- readonly type: io.flow.common.v0.enums.ChangeType;
3412
- readonly tier_rule: io.flow.fulfillment.v0.models.TierRule;
3413
- }
3414
- interface TierSettings {
3415
- readonly availability: io.flow.fulfillment.v0.enums.TierAvailability;
3416
- }
3417
- interface TierSummary {
3418
- readonly id: string;
3419
- readonly experience?: io.flow.fulfillment.v0.models.FulfillmentExperienceReference;
3420
- readonly integration: io.flow.fulfillment.v0.enums.ShipmentIntegrationType;
3421
- readonly name: string;
3422
- readonly services: string[];
3423
- readonly strategy: io.flow.fulfillment.v0.enums.TierStrategy;
3424
- readonly visibility: io.flow.common.v0.enums.Visibility;
3425
- readonly currency: string;
3426
- readonly display?: io.flow.fulfillment.v0.models.TierDisplay;
3427
- readonly message?: string;
3428
- readonly settings?: io.flow.fulfillment.v0.models.TierSettings;
3429
- }
3430
- interface TierVersion {
3431
- readonly id: string;
3432
- readonly timestamp: string;
3433
- readonly type: io.flow.common.v0.enums.ChangeType;
3434
- readonly tier: io.flow.fulfillment.v0.models.TierSummary;
3435
- }
3436
- interface TransitEstimate {
3437
- readonly origin: io.flow.fulfillment.v0.enums.DeliveryWindowLocation;
3438
- readonly destination: io.flow.fulfillment.v0.enums.DeliveryWindowLocation;
3439
- readonly min_date: string;
3440
- readonly max_date: string;
3441
- readonly source: io.flow.fulfillment.v0.enums.DeliveryWindowComponentSource;
3442
- }
3443
- }
3444
- declare namespace io.flow.fulfillment.v0.unions {
3445
- type Delivery = io.flow.fulfillment.v0.models.DigitalDelivery | io.flow.fulfillment.v0.models.PhysicalDelivery;
3446
- type ExpandableCenter = io.flow.fulfillment.v0.models.Center | io.flow.fulfillment.v0.models.CenterReference;
3447
- type PartnerCenterFee = io.flow.fulfillment.v0.models.CommercialInvoiceFee | io.flow.fulfillment.v0.models.InboundCartonFee | io.flow.fulfillment.v0.models.OutboundCartonFee;
3448
- type ServiceDescription = io.flow.fulfillment.v0.models.ServiceSummary | io.flow.fulfillment.v0.models.ServiceUnknown;
3449
- 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;
3450
- 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;
3451
- }
3452
- declare namespace io.flow.apple.pay.v0.enums {
3453
- type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
3454
- type ApplePayLineItemType = 'final' | 'pending';
3455
- type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
3456
- type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
3457
- type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
3458
- }
3459
- declare namespace io.flow.apple.pay.v0.models {
3460
- interface ApplePayLineItem {
3461
- readonly label: string;
3462
- readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
3463
- readonly amount: string;
3464
- }
3465
- interface ApplePayPaymentContact {
3466
- readonly email_address?: string;
3467
- readonly family_name?: string;
3468
- readonly given_name?: string;
3469
- readonly phone_number?: string;
3470
- readonly phonetic_familyName?: string;
3471
- readonly phonetic_givenName?: string;
3472
- readonly address_lines?: string[];
3473
- readonly locality?: string;
3474
- readonly sub_locality?: string;
3475
- readonly administrative_area?: string;
3476
- readonly sub_administrative_area?: string;
3477
- readonly postal_code?: string;
3478
- readonly country?: string;
3479
- readonly country_code?: string;
3480
- }
3481
- interface ApplePayPaymentData {
3482
- readonly applicationPrimaryAccountNumber: string;
3483
- readonly applicationExpirationDate: string;
3484
- readonly currencyCode: string;
3485
- readonly transactionAmount: number;
3486
- readonly cardholderName?: string;
3487
- readonly deviceManufacturerIdentifier: string;
3488
- readonly paymentDataType: string;
3489
- readonly paymentData: any;
3490
- }
3491
- interface ApplePayPaymentInfo {
3492
- readonly total: io.flow.apple.pay.v0.models.ApplePayLineItem;
3493
- readonly line_items?: io.flow.apple.pay.v0.models.ApplePayLineItem[];
3494
- readonly country_code: string;
3495
- readonly currency_code: string;
3496
- readonly merchant_capabilities: io.flow.apple.pay.v0.enums.ApplePayMerchantCapability[];
3497
- readonly shipping_methods?: io.flow.apple.pay.v0.models.ApplePayShippingMethod[];
3498
- readonly shipping_type?: io.flow.apple.pay.v0.enums.ApplePayShippingType;
3499
- readonly supported_countries?: string[];
3500
- readonly supported_networks: io.flow.apple.pay.v0.enums.ApplePaySupportedNetworks[];
3501
- readonly required_billingContactFields?: io.flow.apple.pay.v0.enums.ApplePayContactField[];
3502
- readonly required_shippingContactFields?: io.flow.apple.pay.v0.enums.ApplePayContactField[];
3503
- readonly billing_contact?: io.flow.apple.pay.v0.models.ApplePayPaymentContact;
3504
- readonly shipping_contact?: io.flow.apple.pay.v0.models.ApplePayPaymentContact;
3505
- readonly application_data?: string;
3506
- }
3507
- interface ApplePayShippingMethod {
3508
- readonly label: string;
3509
- readonly detail: string;
3510
- readonly amount: string;
3511
- readonly identifier: string;
3512
- }
3513
- }
3514
- declare namespace io.flow.merchant.of.record.v0.enums {
3515
- type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
3516
- type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
3517
- }
3518
- declare namespace io.flow.tech.onboarding.playground.v0.enums {
3519
- type AldoItemType = 'physical' | 'digital';
3520
- type AnshItemType = 'physical' | 'digital';
3521
- type HoseinItemType = 'physical' | 'digital';
3522
- type NiallItemType = 'physical' | 'digital';
3523
- type PrateekItemType = 'physical' | 'digital';
3524
- type RohanItemType = 'physical' | 'digital';
3525
- type SarveshItemType = 'physical' | 'digital';
3526
- }
3527
- declare namespace io.flow.tech.onboarding.playground.v0.models {
3528
- interface AldoItem {
3529
- readonly id: string;
3530
- readonly number: string;
3531
- readonly amount: io.flow.common.v0.models.Price;
3532
- readonly description?: string;
3533
- readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
3534
- readonly added_on: string;
3535
- }
3536
- interface AldoItemForm {
3537
- readonly number: string;
3538
- readonly amount: io.flow.common.v0.models.Price;
3539
- readonly description?: string;
3540
- readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
3541
- readonly added_on: string;
3542
- }
3543
- interface AnshItem {
3544
- readonly id: string;
3545
- readonly number: string;
3546
- readonly amount: io.flow.common.v0.models.Price;
3547
- readonly description?: string;
3548
- readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
3549
- readonly added_on: string;
3550
- }
3551
- interface AnshItemForm {
3552
- readonly number: string;
3553
- readonly amount: io.flow.common.v0.models.Price;
3554
- readonly description?: string;
3555
- readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
3556
- readonly added_on: string;
3557
- }
3558
- interface HoseinItem {
3559
- readonly id: string;
3560
- readonly number: string;
3561
- readonly amount: io.flow.common.v0.models.Price;
3562
- readonly description?: string;
3563
- readonly type: io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
3564
- readonly added_on: string;
3565
- }
3566
- interface HoseinItemForm {
3567
- readonly number: string;
3568
- readonly amount: io.flow.common.v0.models.Price;
3569
- readonly description?: string;
3570
- readonly type: io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
3571
- readonly added_on: string;
3572
- }
3573
- interface JeanDemoItem {
3574
- readonly id: string;
3575
- readonly name: string;
3576
- }
3577
- interface NiallItem {
3578
- readonly id: string;
3579
- readonly number: string;
3580
- readonly amount: io.flow.common.v0.models.Price;
3581
- readonly description?: string;
3582
- readonly type: io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
3583
- readonly added_on: string;
3584
- }
3585
- interface NiallItemForm {
3586
- readonly number: string;
3587
- readonly amount: io.flow.common.v0.models.Price;
3588
- readonly description?: string;
3589
- readonly type: io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
3590
- readonly added_on: string;
3591
- }
3592
- interface PrateekItem {
3593
- readonly id: string;
3594
- readonly number: string;
3595
- readonly amount: io.flow.common.v0.models.Price;
3596
- readonly description?: string;
3597
- readonly type: io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
3598
- readonly added_on: string;
3599
- }
3600
- interface PrateekItemForm {
3601
- readonly number: string;
3602
- readonly amount: io.flow.common.v0.models.Price;
3603
- readonly description?: string;
3604
- readonly type: io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
3605
- readonly added_on: string;
3606
- }
3607
- interface RohanItem {
3608
- readonly id: string;
3609
- readonly number: string;
3610
- readonly amount: io.flow.common.v0.models.Price;
3611
- readonly description?: string;
3612
- readonly type: io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
3613
- readonly added_on: string;
3614
- }
3615
- interface RohanItemForm {
3616
- readonly number: string;
3617
- readonly amount: io.flow.common.v0.models.Price;
3618
- readonly description?: string;
3619
- readonly type: io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
3620
- readonly added_on: string;
3621
- }
3622
- interface SarveshItem {
3623
- readonly id: string;
3624
- readonly number: string;
3625
- readonly amount: io.flow.common.v0.models.Price;
3626
- readonly description?: string;
3627
- readonly type: io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
3628
- readonly added_on: string;
3629
- }
3630
- interface SarveshItemForm {
3631
- readonly number: string;
3632
- readonly amount: io.flow.common.v0.models.Price;
3633
- readonly description?: string;
3634
- readonly type: io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
3635
- readonly added_on: string;
3636
- }
3637
- interface TechOnboardingDescription {
3638
- readonly description: string;
3639
- }
3640
- }
3641
- declare namespace io.flow.currency.v0.models {
3642
- interface Rate {
3643
- readonly id: string;
3644
- readonly base: string;
3645
- readonly target: string;
3646
- readonly effective_at: string;
3647
- readonly value: number;
3648
- }
3649
- interface RateForm {
3650
- readonly base: string;
3651
- readonly target: string;
3652
- readonly effective_at: string;
3653
- }
3654
- interface RateVersion {
3655
- readonly id: string;
3656
- readonly timestamp: string;
3657
- readonly type: io.flow.common.v0.enums.ChangeType;
3658
- readonly rate: io.flow.currency.v0.models.Rate;
3659
- }
3660
- }
3661
- declare namespace io.flow.organization.v0.enums {
3662
- type CountryPickerSource = 'experience' | 'destination';
3663
- type EcommercePlatformType = 'commercetools' | 'custom' | 'hybris' | 'magento' | 'shopify' | 'shopify_markets' | 'sfcc' | 'solidus' | 'workarea';
3664
- type InvitationErrorCode = 'expired' | 'invalid_email';
3665
- }
3666
- declare namespace io.flow.organization.v0.models {
3667
- interface CountryPicker {
3668
- readonly id: string;
3669
- readonly source: io.flow.organization.v0.enums.CountryPickerSource;
3670
- }
3671
- interface CountryPickerForm {
3672
- readonly source: io.flow.organization.v0.enums.CountryPickerSource;
3673
- }
3674
- interface EcommercePlatform {
3675
- readonly id: string;
3676
- readonly type: io.flow.organization.v0.enums.EcommercePlatformType;
3677
- readonly version?: string;
3678
- }
3679
- interface EcommercePlatformForm {
3680
- readonly type: io.flow.organization.v0.enums.EcommercePlatformType;
3681
- readonly version?: string;
3682
- }
3683
- interface Invitation {
3684
- readonly id: string;
3685
- readonly organization: io.flow.common.v0.unions.ExpandableOrganization;
3686
- readonly email: string;
3687
- readonly name: io.flow.common.v0.models.Name;
3688
- readonly role?: io.flow.common.v0.enums.Role;
3689
- readonly roles?: io.flow.permission.v0.enums.FlowRole[];
3690
- readonly expiration: string;
3691
- }
3692
- interface InvitationError {
3693
- readonly code: io.flow.organization.v0.enums.InvitationErrorCode;
3694
- readonly messages: string[];
3695
- }
3696
- interface InvitationForm {
3697
- readonly organization: string;
3698
- readonly email: string;
3699
- readonly name?: io.flow.common.v0.models.Name;
3700
- readonly role?: io.flow.common.v0.enums.Role;
3701
- readonly roles?: io.flow.permission.v0.enums.FlowRole[];
3702
- }
3703
- interface InvitationVersion {
3704
- readonly id: string;
3705
- readonly timestamp: string;
3706
- readonly type: io.flow.common.v0.enums.ChangeType;
3707
- readonly invitation: io.flow.organization.v0.models.Invitation;
3708
- }
3709
- interface Membership {
3710
- readonly id: string;
3711
- readonly organization: io.flow.common.v0.unions.ExpandableOrganization;
3712
- readonly user: io.flow.common.v0.unions.ExpandableUser;
3713
- readonly role?: io.flow.common.v0.enums.Role;
3714
- readonly roles: io.flow.permission.v0.enums.FlowRole[];
3715
- }
3716
- interface MembershipForm {
3717
- readonly organization: string;
3718
- readonly user: string;
3719
- readonly role?: io.flow.common.v0.enums.Role;
3720
- readonly roles?: io.flow.permission.v0.enums.FlowRole[];
3721
- }
3722
- interface MembershipPutForm {
3723
- readonly role?: io.flow.common.v0.enums.Role;
3724
- readonly roles?: io.flow.permission.v0.enums.FlowRole[];
3725
- }
3726
- interface MembershipVersion {
3727
- readonly id: string;
3728
- readonly timestamp: string;
3729
- readonly type: io.flow.common.v0.enums.ChangeType;
3730
- readonly membership: io.flow.organization.v0.models.Membership;
3731
- }
3732
- interface OrganizationAuthorization {
3733
- readonly role?: io.flow.common.v0.enums.Role;
3734
- readonly environment: io.flow.common.v0.enums.Environment;
3735
- }
3736
- interface OrganizationAuthorizationForm {
3737
- readonly organization: string;
3738
- readonly environment: io.flow.common.v0.enums.Environment;
3739
- }
3740
- interface OrganizationConfigurationReference {
3741
- readonly id: string;
3742
- }
3743
- interface OrganizationDefaultConfigurations {
3744
- readonly id: string;
3745
- readonly checkout_configuration: io.flow.organization.v0.models.OrganizationConfigurationReference;
3746
- }
3747
- interface OrganizationDefaultConfigurationsForm {
3748
- readonly id: string;
3749
- }
3750
- interface OrganizationForm {
3751
- readonly id?: string;
3752
- readonly name?: string;
3753
- readonly environment: io.flow.common.v0.enums.Environment;
3754
- readonly parent_id?: string;
3755
- readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
3756
- readonly status?: io.flow.common.v0.enums.OrganizationStatus;
3757
- readonly type?: io.flow.common.v0.enums.OrganizationType;
3758
- }
3759
- interface OrganizationPutForm {
3760
- readonly name?: string;
3761
- readonly environment?: io.flow.common.v0.enums.Environment;
3762
- readonly parent_id?: string;
3763
- readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
3764
- readonly status?: io.flow.common.v0.enums.OrganizationStatus;
3765
- }
3766
- interface OrganizationVersion {
3767
- readonly id: string;
3768
- readonly timestamp: string;
3769
- readonly type: io.flow.common.v0.enums.ChangeType;
3770
- readonly organization: io.flow.common.v0.models.Organization;
3771
- }
3772
- interface RegionSetting {
3773
- readonly id: string;
3774
- readonly region: string;
3775
- readonly status: io.flow.common.v0.enums.AvailabilityStatus;
3776
- }
3777
- interface RegionSettingForm {
3778
- readonly status: io.flow.common.v0.enums.AvailabilityStatus;
3779
- }
3780
- }
3781
- declare namespace io.flow.order.price.v0.enums {
3782
- 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';
3783
- type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
3784
- }
3785
- declare namespace io.flow.order.price.v0.models {
3786
- interface OrderPriceDetail {
3787
- readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
3788
- readonly currency: string;
3789
- readonly amount: number;
3790
- readonly label: string;
3791
- readonly base: io.flow.common.v0.models.Price;
3792
- readonly components: io.flow.order.price.v0.models.OrderPriceDetailComponent[];
3793
- readonly name?: string;
3794
- readonly rate?: number;
3795
- readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
3796
- readonly rate_label?: string;
3797
- }
3798
- interface OrderPriceDetailComponent {
3799
- readonly key: io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
3800
- readonly currency: string;
3801
- readonly amount: number;
3802
- readonly label: string;
3803
- readonly base: io.flow.common.v0.models.Price;
3804
- readonly name?: string;
3805
- }
3806
- }
3807
- declare namespace io.flow.channel.internal.v0.enums {
3808
- type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
3809
- type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
3810
- type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
3811
- 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';
3812
- type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
3813
- type OrderPaymentSourceType = 'globale' | 'third_party';
3814
- }
3815
- declare namespace io.flow.channel.internal.v0.models {
3816
- interface ChannelCurrencyForm {
3817
- readonly currency: string;
3818
- readonly channel_id: string;
3819
- readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
3820
- }
3821
- interface ChannelForm {
3822
- readonly name: string;
3823
- readonly environment: io.flow.common.v0.enums.Environment;
3824
- readonly organization_id_prefix?: string;
3825
- }
3826
- interface ChannelMembership {
3827
- readonly id: string;
3828
- readonly channel: io.flow.common.v0.models.ChannelReference;
3829
- readonly user: io.flow.common.v0.unions.ExpandableUser;
3830
- readonly role?: io.flow.common.v0.enums.Role;
3831
- }
3832
- interface ChannelMembershipForm {
3833
- readonly channel_id: string;
3834
- readonly user_id: string;
3835
- readonly role?: io.flow.common.v0.enums.Role;
3836
- }
3837
- interface ChannelMembershipPutForm {
3838
- readonly role?: io.flow.common.v0.enums.Role;
3839
- }
3840
- interface ChannelOrderAcceptance {
3841
- readonly id: string;
3842
- readonly organization_id: string;
3843
- readonly order_number: string;
3844
- readonly channel_id: string;
3845
- readonly external_order_reference: string;
3846
- readonly payment_request_id?: string;
3847
- readonly order_edit_payment_request_ids?: string[];
3848
- readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
3849
- readonly reasons: io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
3850
- readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
3851
- readonly order_created_at?: string;
3852
- readonly order_updated_at?: string;
3853
- readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
3854
- readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
3855
- }
3856
- interface ChannelOrderAcceptanceDetails {
3857
- readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
3858
- readonly external_order: any;
3859
- }
3860
- interface ChannelOrderAcceptanceFailure {
3861
- readonly id: string;
3862
- readonly organization_id: string;
3863
- readonly channel_id: string;
3864
- readonly payment_request_id: string;
3865
- readonly code: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
3866
- readonly reason: string;
3867
- }
3868
- interface ChannelOrderAcceptanceForm {
3869
- readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
3870
- }
3871
- interface ChannelOrderAcceptanceReason {
3872
- readonly description: string;
3873
- readonly rejection_reason?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
3874
- }
3875
- interface FlowChannelOrganization {
3876
- readonly placeholder?: string;
3877
- }
3878
- interface OrderEditSummary {
3879
- readonly edited_at: string;
3880
- }
3881
- }
3882
- declare namespace io.flow.product.v0.models {
3883
- interface Product {
3884
- readonly organization_id: string;
3885
- readonly number: string;
3886
- readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
3887
- readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
3888
- readonly item_numbers: string[];
3889
- readonly highest_value_item_number?: string;
3890
- readonly updated_at: string;
3891
- readonly deleted_at?: string;
3892
- }
3893
- interface ProductTaxonomyCategory {
3894
- readonly name: string;
3895
- readonly full_name: string;
3896
- }
3897
- interface ProductTaxonomyData {
3898
- readonly key: string;
3899
- readonly value: string[];
3900
- }
3901
- }
3902
- declare namespace io.flow.ben.test.internal.v0.models {
3903
- interface GenerateLoadMultipleOrgs {
3904
- readonly discriminator: 'generate_load_multiple_orgs';
3905
- readonly organization_ids: string[];
3906
- readonly num_events: number;
3907
- }
3908
- interface GenerateLoadSingleOrg {
3909
- readonly discriminator: 'generate_load_single_org';
3910
- readonly organization_id: string;
3911
- readonly num_events: number;
3912
- }
3913
- interface Test {
3914
- readonly id: string;
3915
- readonly name: string;
3916
- }
3917
- interface TestForm {
3918
- readonly name: string;
3919
- }
3920
- }
3921
- declare namespace io.flow.ben.test.internal.v0.unions {
3922
- type GenerateLoad = io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs;
3923
- }
3924
- declare namespace io.flow.catalog.v0.enums {
3925
- type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
3926
- 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';
3927
- type FulfillmentMethodType = 'fulfillment_method';
3928
- type FulfillmentMethodValue = 'digital' | 'physical';
3929
- type ImageTag = 'thumbnail' | 'checkout';
3930
- type ReturnItemStatus = 'returnable' | 'non-returnable';
3931
- type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
3932
- type TaxabilityType = 'tax_rule';
3933
- type TaxabilityValue = 'exempt';
3934
- type UpdatePolicy = 'auto' | 'queue' | 'discard';
3935
- }
3936
- declare namespace io.flow.catalog.v0.models {
3937
- interface AdjustmentReason {
3938
- readonly key: io.flow.catalog.v0.enums.AdjustmentReasonKey;
3939
- readonly label: string;
3940
- }
3941
- interface Attribute {
3942
- readonly id: string;
3943
- readonly key: string;
3944
- readonly options: io.flow.catalog.v0.models.Options;
3945
- readonly label?: string;
3946
- readonly intent?: io.flow.catalog.v0.enums.AttributeIntent;
3947
- readonly type?: io.flow.common.v0.enums.AttributeDataType;
3948
- readonly position?: number;
3949
- }
3950
- interface AttributeForm {
3951
- readonly key: string;
3952
- readonly options: io.flow.catalog.v0.models.Options;
3953
- readonly label?: string;
3954
- readonly intent?: io.flow.catalog.v0.enums.AttributeIntent;
3955
- readonly type?: io.flow.common.v0.enums.AttributeDataType;
3956
- readonly position?: number;
3957
- }
3958
- interface AttributeVersion {
3959
- readonly id: string;
3960
- readonly timestamp: string;
3961
- readonly type: io.flow.common.v0.enums.ChangeType;
3962
- readonly attribute: io.flow.catalog.v0.models.Attribute;
3963
- }
3964
- interface Catalog {
3965
- readonly id: string;
3966
- }
3967
- interface CatalogReference {
3968
- readonly id: string;
3969
- }
3970
- interface CatalogStatistics {
3971
- readonly id: string;
3972
- readonly items: number;
3973
- readonly categories: number;
3974
- }
3975
- interface CatalogVersion {
3976
- readonly id: string;
3977
- readonly timestamp: string;
3978
- readonly type: io.flow.common.v0.enums.ChangeType;
3979
- readonly catalog: io.flow.catalog.v0.models.Catalog;
3980
- }
3981
- interface FlowItemIndexMetadata {
3982
- readonly status: io.flow.catalog.v0.enums.SubcatalogItemStatus;
3983
- }
3984
- interface Image {
3985
- readonly url: string;
3986
- readonly tags: io.flow.catalog.v0.enums.ImageTag[];
3987
- readonly attributes?: Record<string, string>;
3988
- }
3989
- interface ImageForm {
3990
- readonly url: string;
3991
- readonly tags?: io.flow.catalog.v0.enums.ImageTag[];
3992
- readonly attributes?: Record<string, string>;
3993
- }
3994
- interface Item {
3995
- readonly id: string;
3996
- readonly number: string;
3997
- readonly locale: string;
3998
- readonly name: string;
3999
- readonly price: io.flow.common.v0.models.Price;
4000
- readonly categories: string[];
4001
- readonly description?: string;
4002
- readonly attributes: Record<string, string>;
4003
- readonly dimensions: io.flow.common.v0.models.Dimensions;
4004
- readonly images: io.flow.catalog.v0.models.Image[];
4005
- readonly local?: io.flow.catalog.v0.models.Local;
4006
- readonly created_at?: string;
4007
- readonly updated_at?: string;
4008
- readonly deleted_at?: string;
4009
- }
4010
- interface ItemAttributesPatchForm {
4011
- readonly attributes: Record<string, string>;
4012
- }
4013
- interface ItemForm {
4014
- readonly number: string;
4015
- readonly locale: string;
4016
- readonly name: string;
4017
- readonly currency: string;
4018
- readonly price: number;
4019
- readonly categories?: string[];
4020
- readonly description?: string;
4021
- readonly attributes?: Record<string, string>;
4022
- readonly dimensions?: io.flow.common.v0.models.Dimensions;
4023
- readonly images?: io.flow.catalog.v0.models.ImageForm[];
4024
- readonly deleted_at?: string;
4025
- }
4026
- interface ItemFormOverlay {
4027
- readonly id: string;
4028
- readonly number: string;
4029
- readonly key: string;
4030
- readonly position: number;
4031
- readonly price?: io.flow.common.v0.models.Price;
4032
- readonly categories?: string[];
4033
- readonly description?: string;
4034
- readonly attributes?: Record<string, string>;
4035
- readonly dimensions?: io.flow.common.v0.models.Dimensions;
4036
- readonly images?: io.flow.catalog.v0.models.ImageForm[];
4037
- readonly deleted_at?: string;
4038
- }
4039
- interface ItemFormOverlayForm {
4040
- readonly number: string;
4041
- readonly price?: number;
4042
- readonly currency?: string;
4043
- readonly position?: number;
4044
- readonly categories?: string[];
4045
- readonly description?: string;
4046
- readonly attributes?: Record<string, string>;
4047
- readonly dimensions?: io.flow.common.v0.models.Dimensions;
4048
- readonly images?: io.flow.catalog.v0.models.ImageForm[];
4049
- readonly deleted_at?: string;
4050
- }
4051
- interface ItemPriceUpdateForm {
4052
- readonly number: string;
4053
- readonly currency?: string;
4054
- readonly price: number;
4055
- readonly attributes: Record<string, string>;
4056
- }
4057
- interface ItemPriceUpdatePutForm {
4058
- readonly currency?: string;
4059
- readonly price: number;
4060
- readonly attributes: Record<string, string>;
4061
- }
4062
- interface ItemStatistics {
4063
- readonly items: number;
4064
- readonly categories: number;
4065
- }
4066
- interface ItemVersion {
4067
- readonly id: string;
4068
- readonly timestamp: string;
4069
- readonly type: io.flow.common.v0.enums.ChangeType;
4070
- readonly item: io.flow.catalog.v0.models.Item;
4071
- }
4072
- interface Local {
4073
- readonly experience: io.flow.common.v0.models.ExperienceSummary;
4074
- readonly prices: io.flow.catalog.v0.unions.LocalizedPrice[];
4075
- readonly rates: io.flow.currency.v0.models.Rate[];
4076
- readonly spot_rates: any[];
4077
- readonly status: io.flow.catalog.v0.enums.SubcatalogItemStatus;
4078
- readonly attributes?: Record<string, string>;
4079
- readonly price_attributes?: Record<string, io.flow.common.v0.models.PriceWithBase>;
4080
- }
4081
- interface LocalizedAdjustment {
4082
- readonly currency: string;
4083
- readonly amount: number;
4084
- readonly label: string;
4085
- readonly base: io.flow.common.v0.models.Price;
4086
- readonly reason: io.flow.catalog.v0.models.AdjustmentReason;
4087
- }
4088
- interface LocalizedItemDuty {
4089
- readonly key: 'localized_item_duty';
4090
- readonly currency: string;
4091
- readonly amount: number;
4092
- readonly label: string;
4093
- readonly base: io.flow.common.v0.models.Price;
4094
- readonly adjustment?: io.flow.catalog.v0.models.LocalizedAdjustment;
4095
- readonly basis?: io.flow.common.v0.models.MoneyWithBase;
4096
- }
4097
- interface LocalizedItemPrice {
4098
- readonly key: 'localized_item_price';
4099
- readonly currency: string;
4100
- readonly amount: number;
4101
- readonly label: string;
4102
- readonly base: io.flow.common.v0.models.Price;
4103
- readonly includes?: io.flow.common.v0.models.IncludedLevies;
4104
- }
4105
- interface LocalizedItemVat {
4106
- readonly key: 'localized_item_vat';
4107
- readonly currency: string;
4108
- readonly amount: number;
4109
- readonly label: string;
4110
- readonly base: io.flow.common.v0.models.Price;
4111
- readonly name: string;
4112
- readonly adjustment?: io.flow.catalog.v0.models.LocalizedAdjustment;
4113
- readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
4114
- readonly basis?: io.flow.common.v0.models.MoneyWithBase;
4115
- }
4116
- interface LocalizedTotal {
4117
- readonly key: 'localized_total';
4118
- readonly currency: string;
4119
- readonly amount: number;
2786
+ interface ApplePayShippingMethod {
4120
2787
  readonly label: string;
4121
- readonly base: io.flow.common.v0.models.Price;
4122
- }
4123
- interface Options {
4124
- readonly required: boolean;
4125
- readonly show_in_catalog: boolean;
4126
- readonly show_in_harmonization: boolean;
4127
- }
4128
- interface Subcatalog {
4129
- readonly discriminator: 'subcatalog';
4130
- readonly id: string;
4131
- readonly catalog: io.flow.catalog.v0.models.Catalog;
4132
- readonly settings: io.flow.catalog.v0.models.SubcatalogSettings;
4133
- }
4134
- interface SubcatalogForm {
4135
- readonly settings?: io.flow.catalog.v0.models.SubcatalogSettingsForm;
4136
- }
4137
- interface SubcatalogItem {
4138
- readonly id: string;
4139
- readonly item: io.flow.catalog.v0.models.Item;
4140
- readonly status: io.flow.catalog.v0.enums.SubcatalogItemStatus;
4141
- }
4142
- interface SubcatalogItemVersion {
4143
- readonly id: string;
4144
- readonly timestamp: string;
4145
- readonly type: io.flow.common.v0.enums.ChangeType;
4146
- readonly subcatalog_item: io.flow.catalog.v0.models.SubcatalogItem;
4147
- }
4148
- interface SubcatalogReference {
4149
- readonly discriminator: 'subcatalog_reference';
4150
- readonly id: string;
4151
- }
4152
- interface SubcatalogSettings {
4153
- readonly update_policy: io.flow.catalog.v0.enums.UpdatePolicy;
4154
- }
4155
- interface SubcatalogSettingsForm {
4156
- readonly update_policy?: io.flow.catalog.v0.enums.UpdatePolicy;
4157
- }
4158
- interface SubcatalogStatistics {
4159
- readonly excluded: io.flow.catalog.v0.models.ItemStatistics;
4160
- readonly included: io.flow.catalog.v0.models.ItemStatistics;
4161
- readonly restricted: io.flow.catalog.v0.models.ItemStatistics;
4162
- readonly queue: io.flow.catalog.v0.models.ItemStatistics;
4163
- readonly catalog: io.flow.catalog.v0.models.CatalogStatistics;
4164
- }
4165
- interface SubcatalogVersion {
4166
- readonly id: string;
4167
- readonly timestamp: string;
4168
- readonly type: io.flow.common.v0.enums.ChangeType;
4169
- readonly subcatalog: io.flow.catalog.v0.models.Subcatalog;
2788
+ readonly detail: string;
2789
+ readonly amount: string;
2790
+ readonly identifier: string;
4170
2791
  }
4171
2792
  }
4172
- declare namespace io.flow.catalog.v0.unions {
4173
- type ExpandableSubcatalog = io.flow.catalog.v0.models.Subcatalog | io.flow.catalog.v0.models.SubcatalogReference;
4174
- 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;
4175
- }
4176
- declare namespace io.flow.inventory.v0.enums {
4177
- type Aggregate = 'maximum' | 'minimum';
4178
- type InventoryStatus = 'has_inventory' | 'no_inventory';
4179
- type UpdateType = 'change' | 'set';
2793
+ declare namespace io.flow.tech.onboarding.playground.v0.enums {
2794
+ type AldoItemType = 'physical' | 'digital';
2795
+ type AnirbanItemType = 'physical' | 'digital';
2796
+ type AnshItemType = 'physical' | 'digital';
2797
+ type HoseinItemType = 'physical' | 'digital';
2798
+ type NiallItemType = 'physical' | 'digital';
2799
+ type PrateekItemType = 'physical' | 'digital';
2800
+ type RohanItemType = 'physical' | 'digital';
2801
+ type SarveshItemType = 'physical' | 'digital';
4180
2802
  }
4181
- declare namespace io.flow.inventory.v0.models {
4182
- interface ExternalApiTimeoutReservationError {
4183
- readonly code: 'external_api_timeout';
4184
- readonly messages: string[];
4185
- }
4186
- interface GenericReservationError {
4187
- readonly code: 'generic_reservation_error';
4188
- readonly messages: string[];
4189
- }
4190
- interface InventoryBackorder {
4191
- readonly discriminator: 'inventory_backorder';
4192
- readonly quantity: number;
4193
- }
4194
- interface InventoryCenterReference {
4195
- readonly key: string;
4196
- }
4197
- interface InventoryCheckResponse {
4198
- readonly items: io.flow.inventory.v0.models.InventoryCheckResponseItem[];
4199
- }
4200
- interface InventoryCheckResponseItem {
2803
+ declare namespace io.flow.tech.onboarding.playground.v0.models {
2804
+ interface AldoItem {
2805
+ readonly id: string;
4201
2806
  readonly number: string;
4202
- readonly quantity: number;
4203
- readonly inventory_status: io.flow.inventory.v0.enums.InventoryStatus;
4204
- }
4205
- interface InventoryExperienceReference {
4206
- readonly key: string;
4207
- }
4208
- interface InventoryFollowEcommercePlatform {
4209
- readonly discriminator: 'inventory_follow_ecommerce_platform';
4210
- readonly quantity: number;
2807
+ readonly amount: io.flow.common.v0.models.Price;
2808
+ readonly description?: string;
2809
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
2810
+ readonly added_on: string;
4211
2811
  }
4212
- interface InventoryItemReference {
2812
+ interface AldoItemForm {
4213
2813
  readonly number: string;
2814
+ readonly amount: io.flow.common.v0.models.Price;
2815
+ readonly description?: string;
2816
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
2817
+ readonly added_on: string;
4214
2818
  }
4215
- interface InventoryRequest {
4216
- readonly items: io.flow.inventory.v0.models.InventoryRequestItem[];
2819
+ interface AnirbanItem {
2820
+ readonly id: string;
2821
+ readonly number: string;
2822
+ readonly amount: io.flow.common.v0.models.Price;
2823
+ readonly description?: string;
2824
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.AnirbanItemType;
2825
+ readonly added_on: string;
4217
2826
  }
4218
- interface InventoryRequestItem {
2827
+ interface AnirbanItemForm {
4219
2828
  readonly number: string;
4220
- readonly quantity: number;
2829
+ readonly amount: io.flow.common.v0.models.Price;
2830
+ readonly description?: string;
2831
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.AnirbanItemType;
2832
+ readonly added_on: string;
4221
2833
  }
4222
- interface InventoryRule {
2834
+ interface AnshItem {
4223
2835
  readonly id: string;
4224
- readonly position: number;
4225
- readonly query: string;
4226
- readonly strategy: io.flow.inventory.v0.unions.InventoryStrategy;
2836
+ readonly number: string;
2837
+ readonly amount: io.flow.common.v0.models.Price;
2838
+ readonly description?: string;
2839
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
2840
+ readonly added_on: string;
4227
2841
  }
4228
- interface InventoryRuleForm {
4229
- readonly position: number;
4230
- readonly query: string;
4231
- readonly strategy: io.flow.inventory.v0.unions.InventoryStrategy;
2842
+ interface AnshItemForm {
2843
+ readonly number: string;
2844
+ readonly amount: io.flow.common.v0.models.Price;
2845
+ readonly description?: string;
2846
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
2847
+ readonly added_on: string;
4232
2848
  }
4233
- interface InventoryRuleVersion {
2849
+ interface HoseinItem {
4234
2850
  readonly id: string;
4235
- readonly timestamp: string;
4236
- readonly type: io.flow.common.v0.enums.ChangeType;
4237
- readonly inventory_rule: io.flow.inventory.v0.models.InventoryRule;
2851
+ readonly number: string;
2852
+ readonly amount: io.flow.common.v0.models.Price;
2853
+ readonly description?: string;
2854
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
2855
+ readonly added_on: string;
4238
2856
  }
4239
- interface InventorySnapshot {
4240
- readonly id: string;
4241
- readonly available: number;
4242
- readonly center: io.flow.inventory.v0.models.InventoryCenterReference;
4243
- readonly item: io.flow.inventory.v0.models.InventoryItemReference;
4244
- readonly quantity: number;
2857
+ interface HoseinItemForm {
2858
+ readonly number: string;
2859
+ readonly amount: io.flow.common.v0.models.Price;
2860
+ readonly description?: string;
2861
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
2862
+ readonly added_on: string;
4245
2863
  }
4246
- interface InventorySnapshotVersion {
2864
+ interface JeanDemoItem {
4247
2865
  readonly id: string;
4248
- readonly timestamp: string;
4249
- readonly type: io.flow.common.v0.enums.ChangeType;
4250
- readonly inventory_snapshot: io.flow.inventory.v0.models.InventorySnapshot;
4251
- }
4252
- interface InventoryStock {
4253
- readonly discriminator: 'inventory_stock';
4254
- readonly quantity: number;
4255
- }
4256
- interface InventoryUnlimited {
4257
- readonly discriminator: 'inventory_unlimited';
4258
- readonly placeholder?: string;
2866
+ readonly name: string;
4259
2867
  }
4260
- interface InventoryUpdate {
2868
+ interface NiallItem {
4261
2869
  readonly id: string;
4262
- readonly idempotency_key: string;
4263
- readonly center: io.flow.inventory.v0.models.InventoryCenterReference;
4264
- readonly item: io.flow.inventory.v0.models.InventoryItemReference;
4265
- readonly notes: any;
4266
- readonly quantity: number;
4267
- readonly type: io.flow.inventory.v0.enums.UpdateType;
2870
+ readonly number: string;
2871
+ readonly amount: io.flow.common.v0.models.Price;
2872
+ readonly description?: string;
2873
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
2874
+ readonly added_on: string;
4268
2875
  }
4269
- interface InventoryUpdateForm {
4270
- readonly center: string;
4271
- readonly idempotency_key: string;
4272
- readonly item_number: string;
4273
- readonly quantity: number;
4274
- readonly type: io.flow.inventory.v0.enums.UpdateType;
4275
- readonly notes?: any;
2876
+ interface NiallItemForm {
2877
+ readonly number: string;
2878
+ readonly amount: io.flow.common.v0.models.Price;
2879
+ readonly description?: string;
2880
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
2881
+ readonly added_on: string;
4276
2882
  }
4277
- interface InventoryUpdateVersion {
2883
+ interface PrateekItem {
4278
2884
  readonly id: string;
4279
- readonly timestamp: string;
4280
- readonly type: io.flow.common.v0.enums.ChangeType;
4281
- readonly inventory_update: io.flow.inventory.v0.models.InventoryUpdate;
4282
- }
4283
- interface NoInventoryReservationError {
4284
- readonly code: 'no_inventory';
4285
- readonly messages: string[];
4286
- readonly items: io.flow.inventory.v0.models.NoInventoryReservationErrorItem[];
4287
- }
4288
- interface NoInventoryReservationErrorItem {
4289
2885
  readonly number: string;
4290
- readonly requested_quantity: number;
4291
- readonly available_quantity: number;
4292
- }
4293
- interface PfsInventoryCheckResponse {
4294
- readonly items: Record<string, io.flow.inventory.v0.models.PfsInventoryCheckResponseItem>;
2886
+ readonly amount: io.flow.common.v0.models.Price;
2887
+ readonly description?: string;
2888
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
2889
+ readonly added_on: string;
4295
2890
  }
4296
- interface PfsInventoryCheckResponseItem {
2891
+ interface PrateekItemForm {
4297
2892
  readonly number: string;
4298
- readonly ats: number;
4299
- readonly in_stock: boolean;
4300
- }
4301
- interface PfsInventoryStatus {
4302
- readonly status: string;
2893
+ readonly amount: io.flow.common.v0.models.Price;
2894
+ readonly description?: string;
2895
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
2896
+ readonly added_on: string;
4303
2897
  }
4304
- interface Reservation {
2898
+ interface RohanItem {
4305
2899
  readonly id: string;
4306
- readonly key: string;
4307
- readonly order?: io.flow.inventory.v0.models.ReservationOrderReference;
4308
- readonly items: io.flow.inventory.v0.models.ReservationItem[];
4309
- readonly reserved_until?: string;
4310
- }
4311
- interface ReservationForm {
4312
- readonly order_number?: string;
4313
- readonly items: io.flow.inventory.v0.models.ReservationItemForm[];
4314
- }
4315
- interface ReservationItem {
4316
- readonly item: io.flow.inventory.v0.models.ReservationItemReference;
4317
- readonly quantity: number;
4318
- }
4319
- interface ReservationItemForm {
4320
- readonly item_number: string;
4321
- readonly quantity: number;
4322
- }
4323
- interface ReservationItemReference {
4324
2900
  readonly number: string;
2901
+ readonly amount: io.flow.common.v0.models.Price;
2902
+ readonly description?: string;
2903
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
2904
+ readonly added_on: string;
4325
2905
  }
4326
- interface ReservationOrderReference {
2906
+ interface RohanItemForm {
4327
2907
  readonly number: string;
2908
+ readonly amount: io.flow.common.v0.models.Price;
2909
+ readonly description?: string;
2910
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
2911
+ readonly added_on: string;
4328
2912
  }
4329
- }
4330
- declare namespace io.flow.inventory.v0.unions {
4331
- 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;
4332
- type ReservationError = io.flow.inventory.v0.models.NoInventoryReservationError | io.flow.inventory.v0.models.ExternalApiTimeoutReservationError | io.flow.inventory.v0.models.GenericReservationError;
4333
- }
4334
- declare namespace io.flow.permission.v0.enums {
4335
- type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
4336
- type FlowBehavior = 'view_consumer_data';
4337
- type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
4338
- type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
4339
- }
4340
- declare namespace io.flow.permission.v0.models {
4341
- interface BehaviorAudit {
4342
- readonly behavior: io.flow.permission.v0.enums.FlowBehavior;
4343
- readonly authentication_techniques: io.flow.permission.v0.enums.AuthenticationTechnique[];
4344
- readonly roles: io.flow.permission.v0.enums.FlowRole[];
4345
- }
4346
- interface PermissionAudit {
4347
- readonly routes: io.flow.permission.v0.models.RouteAudit[];
4348
- readonly behaviors: io.flow.permission.v0.models.BehaviorAudit[];
4349
- }
4350
- interface PermissionCheck {
4351
- readonly authentication_technique: io.flow.permission.v0.enums.AuthenticationTechnique;
4352
- readonly user?: io.flow.common.v0.unions.ExpandableUser;
4353
- readonly roles: io.flow.permission.v0.enums.FlowRole[];
4354
- readonly behaviors: io.flow.permission.v0.enums.FlowBehavior[];
4355
- readonly routes: io.flow.permission.v0.models.PermittedRoute[];
4356
- }
4357
- interface PermittedRoute {
4358
- readonly method: io.flow.permission.v0.enums.PermittedHttpMethod;
4359
- readonly path: string;
2913
+ interface SarveshItem {
2914
+ readonly id: string;
2915
+ readonly number: string;
2916
+ readonly amount: io.flow.common.v0.models.Price;
2917
+ readonly description?: string;
2918
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
2919
+ readonly added_on: string;
4360
2920
  }
4361
- interface RouteAudit {
4362
- readonly method: io.flow.permission.v0.enums.PermittedHttpMethod;
4363
- readonly path: string;
4364
- readonly authentication_techniques: io.flow.permission.v0.enums.AuthenticationTechnique[];
4365
- readonly roles: io.flow.permission.v0.enums.FlowRole[];
2921
+ interface SarveshItemForm {
2922
+ readonly number: string;
2923
+ readonly amount: io.flow.common.v0.models.Price;
2924
+ readonly description?: string;
2925
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
2926
+ readonly added_on: string;
4366
2927
  }
4367
- interface SimplePermissionCheck {
4368
- readonly behaviors: io.flow.permission.v0.enums.FlowBehavior[];
2928
+ interface TechOnboardingDescription {
2929
+ readonly description: string;
4369
2930
  }
4370
2931
  }
4371
- declare namespace io.flow.query.builder.v0.enums {
4372
- type AvailableFilterFormat = 'boolean' | 'date' | 'money' | 'decimal' | 'string' | 'unit_of_length' | 'unit_of_mass';
4373
- }
4374
- declare namespace io.flow.query.builder.v0.models {
4375
- interface AvailableFilterStructured {
4376
- readonly discriminator: 'structured';
4377
- readonly field: string;
4378
- readonly operators: string[];
4379
- readonly format: io.flow.query.builder.v0.enums.AvailableFilterFormat;
4380
- readonly valid_values?: string[];
4381
- readonly placeholder?: string;
4382
- }
4383
- interface AvailableFilterUnstructured {
4384
- readonly discriminator: 'unstructured';
4385
- readonly placeholder?: string;
4386
- }
4387
- interface Query {
4388
- readonly q: string;
4389
- readonly filters: io.flow.query.builder.v0.unions.QueryFilter[];
2932
+ declare namespace io.flow.product.v0.models {
2933
+ interface Product {
2934
+ readonly organization_id: string;
2935
+ readonly number: string;
2936
+ readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
2937
+ readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
2938
+ readonly item_numbers: string[];
2939
+ readonly highest_value_item_number?: string;
2940
+ readonly updated_at: string;
2941
+ readonly deleted_at?: string;
4390
2942
  }
4391
- interface QueryBuilder {
4392
- readonly q: string;
4393
- readonly filters: io.flow.query.builder.v0.unions.QueryFilter[];
4394
- readonly available: io.flow.query.builder.v0.unions.AvailableFilter[];
2943
+ interface ProductTaxonomyCategory {
2944
+ readonly name: string;
2945
+ readonly full_name: string;
4395
2946
  }
4396
- interface QueryBuilderFilterForm {
4397
- readonly discriminator: 'filter';
4398
- readonly filters: io.flow.query.builder.v0.unions.QueryFilterForm[];
2947
+ interface ProductTaxonomyData {
2948
+ readonly key: string;
2949
+ readonly value: string[];
2950
+ readonly value_obj?: io.flow.product.v0.models.ProductTaxonomyValue[];
4399
2951
  }
4400
- interface QueryBuilderQueryForm {
4401
- readonly discriminator: 'query';
4402
- readonly q: string;
2952
+ interface ProductTaxonomyValue {
2953
+ readonly handle: string;
2954
+ readonly name: string;
4403
2955
  }
4404
- interface QueryFilterStructured {
4405
- readonly discriminator: 'structured';
4406
- readonly q: string;
4407
- readonly field: string;
4408
- readonly operator: string;
4409
- readonly values: string[];
2956
+ }
2957
+ declare namespace io.flow.ben.test.internal.v0.models {
2958
+ interface GenerateLoadMultipleOrgs {
2959
+ readonly discriminator: 'generate_load_multiple_orgs';
2960
+ readonly organization_ids: string[];
2961
+ readonly num_events: number;
4410
2962
  }
4411
- interface QueryFilterStructuredForm {
4412
- readonly discriminator: 'structured';
4413
- readonly field: string;
4414
- readonly operator: string;
4415
- readonly values: string[];
2963
+ interface GenerateLoadSingleOrg {
2964
+ readonly discriminator: 'generate_load_single_org';
2965
+ readonly organization_id: string;
2966
+ readonly num_events: number;
4416
2967
  }
4417
- interface QueryFilterUnstructured {
4418
- readonly discriminator: 'unstructured';
4419
- readonly q: string;
2968
+ interface Test {
2969
+ readonly id: string;
2970
+ readonly name: string;
4420
2971
  }
4421
- interface QueryFilterUnstructuredForm {
4422
- readonly discriminator: 'unstructured';
4423
- readonly q: string;
2972
+ interface TestForm {
2973
+ readonly name: string;
4424
2974
  }
4425
2975
  }
4426
- declare namespace io.flow.query.builder.v0.unions {
4427
- type AvailableFilter = io.flow.query.builder.v0.models.AvailableFilterStructured | io.flow.query.builder.v0.models.AvailableFilterUnstructured;
4428
- type QueryBuilderForm = io.flow.query.builder.v0.models.QueryBuilderFilterForm | io.flow.query.builder.v0.models.QueryBuilderQueryForm;
4429
- type QueryFilter = io.flow.query.builder.v0.models.QueryFilterStructured | io.flow.query.builder.v0.models.QueryFilterUnstructured;
4430
- type QueryFilterForm = io.flow.query.builder.v0.models.QueryFilterStructuredForm | io.flow.query.builder.v0.models.QueryFilterUnstructuredForm;
2976
+ declare namespace io.flow.ben.test.internal.v0.unions {
2977
+ type GenerateLoad = io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs;
4431
2978
  }
4432
2979
  declare namespace io.flow.v0.enums {
4433
2980
  type AbandonedOrderPromotionStatus = 'active' | 'inactive';
@@ -4485,7 +3032,7 @@ declare namespace io.flow.v0.enums {
4485
3032
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
4486
3033
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
4487
3034
  type Environment = 'sandbox' | 'production';
4488
- 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';
3035
+ 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';
4489
3036
  type ExceptionType = 'open' | 'closed';
4490
3037
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
4491
3038
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -4548,6 +3095,7 @@ declare namespace io.flow.v0.enums {
4548
3095
  type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
4549
3096
  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';
4550
3097
  type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
3098
+ type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
4551
3099
  type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
4552
3100
  type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
4553
3101
  type OrderStatus = 'open' | 'submitted';
@@ -4586,7 +3134,6 @@ declare namespace io.flow.v0.enums {
4586
3134
  type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
4587
3135
  type PriceFacetBoundary = 'min' | 'max';
4588
3136
  type PricingLevySetting = 'included' | 'displayed' | 'ignored';
4589
- 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';
4590
3137
  type PromotionTriggerType = 'automatic' | 'order_subtotal';
4591
3138
  type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
4592
3139
  type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
@@ -4645,7 +3192,7 @@ declare namespace io.flow.v0.enums {
4645
3192
  type TransferStatus = 'succeeded' | 'canceled';
4646
3193
  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';
4647
3194
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
4648
- 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';
3195
+ 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';
4649
3196
  type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
4650
3197
  type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
4651
3198
  type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
@@ -5050,6 +3597,18 @@ declare namespace io.flow.v0.models {
5050
3597
  readonly region?: string;
5051
3598
  readonly interval?: io.flow.v0.enums.UnitOfTime;
5052
3599
  }
3600
+ interface AnirbanItemDeleted {
3601
+ readonly discriminator: 'anirban_item_deleted';
3602
+ readonly event_id: string;
3603
+ readonly timestamp: string;
3604
+ readonly id: string;
3605
+ }
3606
+ interface AnirbanItemUpserted {
3607
+ readonly discriminator: 'anirban_item_upserted';
3608
+ readonly event_id: string;
3609
+ readonly timestamp: string;
3610
+ readonly item: io.flow.tech.onboarding.playground.v0.models.AnirbanItem;
3611
+ }
5053
3612
  interface AnshItemDeleted {
5054
3613
  readonly discriminator: 'ansh_item_deleted';
5055
3614
  readonly event_id: string;
@@ -6758,6 +5317,7 @@ declare namespace io.flow.v0.models {
6758
5317
  readonly package_dimensions_source?: io.flow.v0.enums.PackageDimensionsSource;
6759
5318
  readonly origin_location_source?: io.flow.v0.enums.OriginLocationSource;
6760
5319
  readonly reference_id?: string;
5320
+ readonly shipping_date_time?: string;
6761
5321
  }
6762
5322
  interface DetailedShippingNotificationForm {
6763
5323
  readonly discriminator: 'detailed_shipping_notification_form';
@@ -7019,6 +5579,10 @@ declare namespace io.flow.v0.models {
7019
5579
  readonly organization: string;
7020
5580
  readonly ecommerce_platform: io.flow.v0.models.EcommercePlatform;
7021
5581
  }
5582
+ interface EditSummary {
5583
+ readonly id: string;
5584
+ readonly edited_at: string;
5585
+ }
7022
5586
  interface EeiFilingRatecardFee {
7023
5587
  readonly discriminator: 'eei_filing_ratecard_fee';
7024
5588
  readonly amount: io.flow.v0.models.Money;
@@ -7642,6 +6206,7 @@ declare namespace io.flow.v0.models {
7642
6206
  readonly product_id: string;
7643
6207
  readonly ge_organization_name: string;
7644
6208
  readonly ge_shipping_origin_country?: string;
6209
+ readonly product_url?: string;
7645
6210
  }
7646
6211
  interface GeInputPrice {
7647
6212
  readonly amount: number;
@@ -8598,6 +7163,7 @@ declare namespace io.flow.v0.models {
8598
7163
  readonly local: io.flow.v0.models.Local;
8599
7164
  readonly shipment_estimate?: io.flow.v0.models.DatetimeRange;
8600
7165
  readonly price_source?: io.flow.v0.unions.PriceSource;
7166
+ readonly breakdown?: io.flow.v0.models.OrderPriceDetailBreakdown;
8601
7167
  }
8602
7168
  interface LocalizedLineItemDiscount {
8603
7169
  readonly amount: number;
@@ -8613,6 +7179,7 @@ declare namespace io.flow.v0.models {
8613
7179
  readonly amount: number;
8614
7180
  readonly label: string;
8615
7181
  readonly base: io.flow.v0.models.Price;
7182
+ readonly breakdown?: io.flow.v0.models.OrderPriceDetailBreakdown;
8616
7183
  }
8617
7184
  interface LocalizedTranslation {
8618
7185
  readonly locale: io.flow.v0.models.Locale;
@@ -8864,6 +7431,10 @@ declare namespace io.flow.v0.models {
8864
7431
  readonly first?: string;
8865
7432
  readonly last?: string;
8866
7433
  }
7434
+ interface NeedsActionAttributes {
7435
+ readonly reason_code: string;
7436
+ readonly category_metafield_handles: string[];
7437
+ }
8867
7438
  interface NiallItemDeleted {
8868
7439
  readonly discriminator: 'niall_item_deleted';
8869
7440
  readonly event_id: string;
@@ -9008,6 +7579,8 @@ declare namespace io.flow.v0.models {
9008
7579
  readonly destination_contact_details?: io.flow.v0.models.DestinationContactDetail[];
9009
7580
  readonly incoterm_summary?: io.flow.v0.models.IncotermSummary;
9010
7581
  readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
7582
+ readonly edits?: io.flow.v0.models.EditSummary[];
7583
+ readonly rates?: io.flow.v0.models.OrderRate[];
9011
7584
  }
9012
7585
  interface OrderAddress {
9013
7586
  readonly text?: string;
@@ -9264,6 +7837,11 @@ declare namespace io.flow.v0.models {
9264
7837
  readonly rate?: number;
9265
7838
  readonly accuracy?: io.flow.v0.enums.PriceAccuracy;
9266
7839
  readonly rate_label?: string;
7840
+ readonly breakdown?: io.flow.v0.models.OrderPriceDetailBreakdown;
7841
+ }
7842
+ interface OrderPriceDetailBreakdown {
7843
+ readonly purchase_price: io.flow.v0.models.PurchasePriceBreakdown;
7844
+ readonly fees: io.flow.v0.models.OrderPriceFee[];
9267
7845
  }
9268
7846
  interface OrderPriceDetailComponent {
9269
7847
  readonly key: io.flow.v0.enums.OrderPriceDetailComponentKey;
@@ -9273,6 +7851,11 @@ declare namespace io.flow.v0.models {
9273
7851
  readonly base: io.flow.v0.models.Price;
9274
7852
  readonly name?: string;
9275
7853
  }
7854
+ interface OrderPriceFee {
7855
+ readonly key: string;
7856
+ readonly value: io.flow.v0.models.PriceWithBase;
7857
+ readonly type: io.flow.v0.enums.OrderPriceFeeType;
7858
+ }
9276
7859
  interface OrderPromotionTrigger {
9277
7860
  readonly type: io.flow.v0.enums.PromotionTriggerType;
9278
7861
  readonly min?: io.flow.v0.models.Price;
@@ -9292,6 +7875,11 @@ declare namespace io.flow.v0.models {
9292
7875
  readonly device_details?: io.flow.v0.unions.DeviceDetails;
9293
7876
  readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
9294
7877
  }
7878
+ interface OrderRate {
7879
+ readonly from: string;
7880
+ readonly to: string;
7881
+ readonly rate: number;
7882
+ }
9295
7883
  interface OrderReference {
9296
7884
  readonly discriminator: 'order_reference';
9297
7885
  readonly id: string;
@@ -10735,11 +9323,12 @@ declare namespace io.flow.v0.models {
10735
9323
  readonly sellability_restricted_regions?: string[];
10736
9324
  readonly reasons_per_region?: io.flow.v0.models.ReasonsPerRegion[];
10737
9325
  readonly review_status?: io.flow.v0.enums.ReviewStatus;
10738
- readonly rules?: io.flow.v0.enums.ProductRestrictionRule[];
9326
+ readonly rules?: string[];
10739
9327
  readonly updated_by?: string;
10740
9328
  readonly product_restriction_id?: string;
10741
9329
  readonly hs_code?: string;
10742
9330
  readonly restricted_regions_by_type?: io.flow.v0.models.SellablilityRegionResult[];
9331
+ readonly needs_action_attributes?: io.flow.v0.models.NeedsActionAttributes[];
10743
9332
  }
10744
9333
  interface ProductRestrictionResultDeleted {
10745
9334
  readonly discriminator: 'product_restriction_result_deleted';
@@ -10780,6 +9369,11 @@ declare namespace io.flow.v0.models {
10780
9369
  interface ProductTaxonomyData {
10781
9370
  readonly key: string;
10782
9371
  readonly value: string[];
9372
+ readonly value_obj?: io.flow.v0.models.ProductTaxonomyValue[];
9373
+ }
9374
+ interface ProductTaxonomyValue {
9375
+ readonly handle: string;
9376
+ readonly name: string;
10783
9377
  }
10784
9378
  interface ProductUpdated {
10785
9379
  readonly discriminator: 'product_updated';
@@ -10812,6 +9406,11 @@ declare namespace io.flow.v0.models {
10812
9406
  interface PublicKey {
10813
9407
  readonly id: string;
10814
9408
  }
9409
+ interface PurchasePriceBreakdown {
9410
+ readonly total_price: io.flow.v0.models.PriceWithBase;
9411
+ readonly product_price: io.flow.v0.models.PriceWithBase;
9412
+ readonly fees: io.flow.v0.models.OrderPriceFee[];
9413
+ }
10815
9414
  interface Query {
10816
9415
  readonly q: string;
10817
9416
  readonly filters: io.flow.v0.unions.QueryFilter[];
@@ -13269,7 +11868,7 @@ declare namespace io.flow.v0.unions {
13269
11868
  type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
13270
11869
  type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
13271
11870
  type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
13272
- 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;
11871
+ 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;
13273
11872
  type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard;
13274
11873
  type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
13275
11874
  type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
@@ -13430,6 +12029,8 @@ export declare type AllocationV2 = io.flow.v0.models.AllocationV2;
13430
12029
  export declare type AmountMargin = io.flow.v0.models.AmountMargin;
13431
12030
  export declare type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
13432
12031
  export declare type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
12032
+ export declare type AnirbanItemDeleted = io.flow.v0.models.AnirbanItemDeleted;
12033
+ export declare type AnirbanItemUpserted = io.flow.v0.models.AnirbanItemUpserted;
13433
12034
  export declare type AnshItemDeleted = io.flow.v0.models.AnshItemDeleted;
13434
12035
  export declare type AnshItemUpserted = io.flow.v0.models.AnshItemUpserted;
13435
12036
  export declare type ApplePayMerchantValidationPayload = io.flow.v0.models.ApplePayMerchantValidationPayload;
@@ -13815,6 +12416,7 @@ export declare type EcommercePlatformForm = io.flow.v0.models.EcommercePlatformF
13815
12416
  export declare type EcommercePlatformType = io.flow.v0.enums.EcommercePlatformType;
13816
12417
  export declare type EcommercePlatformUpserted = io.flow.v0.models.EcommercePlatformUpserted;
13817
12418
  export declare type EconomicTitleLocation = io.flow.v0.enums.EconomicTitleLocation;
12419
+ export declare type EditSummary = io.flow.v0.models.EditSummary;
13818
12420
  export declare type EeiFilingRatecardFee = io.flow.v0.models.EeiFilingRatecardFee;
13819
12421
  export declare type EeiFilingServiceFee = io.flow.v0.models.EeiFilingServiceFee;
13820
12422
  export declare type EmailAbandonedOrderPromotion = io.flow.v0.models.EmailAbandonedOrderPromotion;
@@ -14212,6 +12814,7 @@ export declare type MonthlyAverage = io.flow.v0.models.MonthlyAverage;
14212
12814
  export declare type MonthlyAverageVolume = io.flow.v0.models.MonthlyAverageVolume;
14213
12815
  export declare type Name = io.flow.v0.models.Name;
14214
12816
  export declare type NameForm = io.flow.v0.models.NameForm;
12817
+ export declare type NeedsActionAttributes = io.flow.v0.models.NeedsActionAttributes;
14215
12818
  export declare type NiallItemDeleted = io.flow.v0.models.NiallItemDeleted;
14216
12819
  export declare type NiallItemUpserted = io.flow.v0.models.NiallItemUpserted;
14217
12820
  export declare type NotificationDeletedV2 = io.flow.v0.models.NotificationDeletedV2;
@@ -14284,13 +12887,17 @@ export declare type OrderPlaced = io.flow.v0.models.OrderPlaced;
14284
12887
  export declare type OrderPlacedDetails = io.flow.v0.models.OrderPlacedDetails;
14285
12888
  export declare type OrderPlacedV2 = io.flow.v0.models.OrderPlacedV2;
14286
12889
  export declare type OrderPriceDetail = io.flow.v0.models.OrderPriceDetail;
12890
+ export declare type OrderPriceDetailBreakdown = io.flow.v0.models.OrderPriceDetailBreakdown;
14287
12891
  export declare type OrderPriceDetailComponent = io.flow.v0.models.OrderPriceDetailComponent;
14288
12892
  export declare type OrderPriceDetailComponentKey = io.flow.v0.enums.OrderPriceDetailComponentKey;
14289
12893
  export declare type OrderPriceDetailKey = io.flow.v0.enums.OrderPriceDetailKey;
12894
+ export declare type OrderPriceFee = io.flow.v0.models.OrderPriceFee;
12895
+ export declare type OrderPriceFeeType = io.flow.v0.enums.OrderPriceFeeType;
14290
12896
  export declare type OrderPromotion = io.flow.v0.unions.OrderPromotion;
14291
12897
  export declare type OrderPromotionForm = io.flow.v0.unions.OrderPromotionForm;
14292
12898
  export declare type OrderPromotionTrigger = io.flow.v0.models.OrderPromotionTrigger;
14293
12899
  export declare type OrderPutForm = io.flow.v0.models.OrderPutForm;
12900
+ export declare type OrderRate = io.flow.v0.models.OrderRate;
14294
12901
  export declare type OrderReference = io.flow.v0.models.OrderReference;
14295
12902
  export declare type OrderRefundSummary = io.flow.v0.models.OrderRefundSummary;
14296
12903
  export declare type OrderRefundSummaryAmounts = io.flow.v0.models.OrderRefundSummaryAmounts;
@@ -14595,11 +13202,11 @@ export declare type ProductInserted = io.flow.v0.models.ProductInserted;
14595
13202
  export declare type ProductRestrictionResult = io.flow.v0.models.ProductRestrictionResult;
14596
13203
  export declare type ProductRestrictionResultDeleted = io.flow.v0.models.ProductRestrictionResultDeleted;
14597
13204
  export declare type ProductRestrictionResultUpserted = io.flow.v0.models.ProductRestrictionResultUpserted;
14598
- export declare type ProductRestrictionRule = io.flow.v0.enums.ProductRestrictionRule;
14599
13205
  export declare type ProductSellability = io.flow.v0.models.ProductSellability;
14600
13206
  export declare type ProductSellabilityForm = io.flow.v0.models.ProductSellabilityForm;
14601
13207
  export declare type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
14602
13208
  export declare type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
13209
+ export declare type ProductTaxonomyValue = io.flow.v0.models.ProductTaxonomyValue;
14603
13210
  export declare type ProductUpdated = io.flow.v0.models.ProductUpdated;
14604
13211
  export declare type Promotion = io.flow.v0.unions.Promotion;
14605
13212
  export declare type PromotionTrigger = io.flow.v0.models.PromotionTrigger;
@@ -14609,6 +13216,7 @@ export declare type Promotions = io.flow.v0.models.Promotions;
14609
13216
  export declare type Province = io.flow.v0.models.Province;
14610
13217
  export declare type ProvinceType = io.flow.v0.enums.ProvinceType;
14611
13218
  export declare type PublicKey = io.flow.v0.models.PublicKey;
13219
+ export declare type PurchasePriceBreakdown = io.flow.v0.models.PurchasePriceBreakdown;
14612
13220
  export declare type Query = io.flow.v0.models.Query;
14613
13221
  export declare type QueryBuilder = io.flow.v0.models.QueryBuilder;
14614
13222
  export declare type QueryBuilderFilterForm = io.flow.v0.models.QueryBuilderFilterForm;