@flowio/types 11.24.112 → 11.24.113

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/src/api.ts CHANGED
@@ -237,6 +237,12 @@ declare namespace io.flow.stripe.v0.enums {
237
237
  | 'fraudulent'
238
238
  | 'requested_by_customer'
239
239
  | 'void_invoice';
240
+ type CapabilityStatus =
241
+ | 'active'
242
+ | 'disabled'
243
+ | 'inactive'
244
+ | 'pending'
245
+ | 'unrequested';
240
246
  type CaptureMethod = 'automatic' | 'manual';
241
247
  type CardBrand =
242
248
  | 'American Express'
@@ -261,6 +267,17 @@ declare namespace io.flow.stripe.v0.enums {
261
267
  type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
262
268
  type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
263
269
  type ConfirmationMethod = 'automatic' | 'manual';
270
+ type ConnectReportReportingCategory =
271
+ | 'charge'
272
+ | 'refund'
273
+ | 'payout_reversal'
274
+ | 'transfer'
275
+ | 'transfer_reversal';
276
+ type ConnectReportShopPlan = 'shopify_plus' | 'standard';
277
+ type ConnectReportTransferType =
278
+ | 'ManagedMarketsRefundDebit'
279
+ | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit'
280
+ | 'ManagedMarketsDisputedAmountDebit';
264
281
  type DeclineCode =
265
282
  | 'approve_with_id'
266
283
  | 'call_issuer'
@@ -430,6 +447,7 @@ declare namespace io.flow.stripe.v0.enums {
430
447
  | 'rate_limit_error'
431
448
  | 'validation_error';
432
449
  type EventType =
450
+ | 'capability.updated'
433
451
  | 'charge.captured'
434
452
  | 'charge.failed'
435
453
  | 'charge.pending'
@@ -714,6 +732,17 @@ declare namespace io.flow.stripe.v0.models {
714
732
  readonly type: io.flow.stripe.v0.enums.ApplePayType;
715
733
  }
716
734
 
735
+ interface Capability {
736
+ readonly id: string;
737
+ readonly account: string;
738
+ readonly requested: boolean;
739
+ readonly requirements: any /*object*/;
740
+ readonly status: io.flow.stripe.v0.enums.CapabilityStatus;
741
+ readonly object: string;
742
+ readonly future_requirements: any /*object*/;
743
+ readonly requested_at?: number;
744
+ }
745
+
717
746
  interface Card {
718
747
  readonly id: string;
719
748
  readonly object: string;
@@ -857,6 +886,46 @@ declare namespace io.flow.stripe.v0.models {
857
886
  readonly status: io.flow.stripe.v0.enums.CodeVerificationStatus;
858
887
  }
859
888
 
889
+ interface ConnectReportRecord {
890
+ readonly created_utc: string;
891
+ readonly charge_id?: string;
892
+ readonly payment_intent_id?: string;
893
+ readonly gross: number;
894
+ readonly fee: number;
895
+ readonly net: number;
896
+ readonly currency: string;
897
+ readonly connected_account: string;
898
+ readonly reporting_category: io.flow.stripe.v0.enums.ConnectReportReportingCategory;
899
+ readonly dispute_reason?: io.flow.stripe.v0.enums.DisputeReason;
900
+ readonly available_on_utc: string;
901
+ readonly automatic_payout_effective_at_utc?: string;
902
+ readonly source_id?: string;
903
+ readonly customer_facing_amount?: number;
904
+ readonly customer_facing_currency?: string;
905
+ readonly payment_method_type?: string;
906
+ readonly card_brand?: string;
907
+ readonly statement_descriptor?: string;
908
+ readonly payment_metadata?: io.flow.stripe.v0.models.ConnectReportRecordPaymentMetadata;
909
+ readonly transfer_metadata?: any /*object*/;
910
+ }
911
+
912
+ interface ConnectReportRecordPaymentMetadata {
913
+ readonly shop_id?: number;
914
+ readonly shop_plan?: io.flow.stripe.v0.enums.ConnectReportShopPlan;
915
+ readonly checkout_id?: string;
916
+ readonly order_id?: number;
917
+ readonly order_transaction_id?: number;
918
+ readonly transfer_type?: io.flow.stripe.v0.enums.ConnectReportTransferType;
919
+ readonly transfer_exchange_rate?: number;
920
+ readonly charge_total?: number;
921
+ readonly charge_currency?: string;
922
+ readonly charge_exchange_rate?: number;
923
+ readonly duties?: number;
924
+ readonly import_taxes?: number;
925
+ readonly mor_fee?: number;
926
+ readonly fx_fee?: number;
927
+ }
928
+
860
929
  interface Customer {
861
930
  readonly id: string;
862
931
  readonly object: string;
@@ -3097,6 +3166,9 @@ declare namespace io.flow.common.v0.enums {
3097
3166
  | 'inch'
3098
3167
  | 'foot'
3099
3168
  | 'cubic_inch'
3169
+ | 'cubic_foot'
3170
+ | 'cubic_millimeter'
3171
+ | 'cubic_centimeter'
3100
3172
  | 'cubic_meter'
3101
3173
  | 'gram'
3102
3174
  | 'kilogram'
@@ -4914,29 +4986,6 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
4914
4986
  }
4915
4987
  }
4916
4988
 
4917
- declare namespace io.flow.currency.v0.models {
4918
- interface Rate {
4919
- readonly id: string;
4920
- readonly base: string;
4921
- readonly target: string;
4922
- readonly effective_at: string;
4923
- readonly value: number;
4924
- }
4925
-
4926
- interface RateForm {
4927
- readonly base: string;
4928
- readonly target: string;
4929
- readonly effective_at: string;
4930
- }
4931
-
4932
- interface RateVersion {
4933
- readonly id: string;
4934
- readonly timestamp: string;
4935
- readonly type: io.flow.common.v0.enums.ChangeType;
4936
- readonly rate: io.flow.currency.v0.models.Rate;
4937
- }
4938
- }
4939
-
4940
4989
  declare namespace io.flow.organization.v0.enums {
4941
4990
  type CountryPickerSource = 'experience' | 'destination';
4942
4991
  type EcommercePlatformType =
@@ -5996,6 +6045,69 @@ declare namespace io.flow.query.builder.v0.unions {
5996
6045
  | io.flow.query.builder.v0.models.QueryFilterUnstructuredForm;
5997
6046
  }
5998
6047
 
6048
+ declare namespace io.flow.sellability.v0.enums {
6049
+ type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
6050
+ type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category';
6051
+ }
6052
+
6053
+ declare namespace io.flow.sellability.v0.models {
6054
+ interface ProductSellability {
6055
+ readonly shop_id: string;
6056
+ readonly product_id?: string;
6057
+ readonly request_id: string;
6058
+ readonly hs6_code: string;
6059
+ readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
6060
+ }
6061
+
6062
+ interface ProductSellabilityForm {
6063
+ readonly shop_id: string;
6064
+ readonly product_id?: string;
6065
+ readonly request_id: string;
6066
+ readonly name: string;
6067
+ readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
6068
+ readonly description: string;
6069
+ readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
6070
+ }
6071
+
6072
+ interface ProductSellabilityPrice {
6073
+ readonly currency: string;
6074
+ readonly amount: number;
6075
+ }
6076
+
6077
+ interface SellabilityError {
6078
+ readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
6079
+ readonly messages: string[];
6080
+ }
6081
+
6082
+ interface SellablilityRegionResult {
6083
+ readonly type: io.flow.sellability.v0.enums.RuleEffectType;
6084
+ readonly regions: string[];
6085
+ }
6086
+ }
6087
+
6088
+ declare namespace io.flow.currency.v0.models {
6089
+ interface Rate {
6090
+ readonly id: string;
6091
+ readonly base: string;
6092
+ readonly target: string;
6093
+ readonly effective_at: string;
6094
+ readonly value: number;
6095
+ }
6096
+
6097
+ interface RateForm {
6098
+ readonly base: string;
6099
+ readonly target: string;
6100
+ readonly effective_at: string;
6101
+ }
6102
+
6103
+ interface RateVersion {
6104
+ readonly id: string;
6105
+ readonly timestamp: string;
6106
+ readonly type: io.flow.common.v0.enums.ChangeType;
6107
+ readonly rate: io.flow.currency.v0.models.Rate;
6108
+ }
6109
+ }
6110
+
5999
6111
  declare namespace io.flow.v0.enums {
6000
6112
  type AbandonedOrderPromotionStatus = 'active' | 'inactive';
6001
6113
  type AbandonedOrderSettingStatus = 'active' | 'inactive';
@@ -6209,8 +6321,6 @@ declare namespace io.flow.v0.enums {
6209
6321
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
6210
6322
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
6211
6323
  type Environment = 'sandbox' | 'production';
6212
- type EstimateOrigin = 'Shopify' | 'GlobalE' | 'Aftership' | 'Carrier';
6213
- type EstimateType = 'Estimated' | 'Final';
6214
6324
  type EventType =
6215
6325
  | 'test_upserted'
6216
6326
  | 'generate_load'
@@ -6330,8 +6440,6 @@ declare namespace io.flow.v0.enums {
6330
6440
  | 'ge_item_inserted'
6331
6441
  | 'ge_item_updated'
6332
6442
  | 'ge_item_deleted'
6333
- | 'ge_product_restriction_result_upserted'
6334
- | 'ge_product_restriction_result_deleted'
6335
6443
  | 'hs6_code_upserted'
6336
6444
  | 'hs6_code_deleted'
6337
6445
  | 'hs10_code_upserted'
@@ -6457,6 +6565,11 @@ declare namespace io.flow.v0.enums {
6457
6565
  type FulfillmentMethodType = 'fulfillment_method';
6458
6566
  type FulfillmentMethodValue = 'digital' | 'physical';
6459
6567
  type FulfillmentRouting = 'fulfilled_from_center' | 'fulfillment_service';
6568
+ type GeCatalogItemIngestionResponse =
6569
+ | 'ge_catalog_item_ingestion_success'
6570
+ | 'ge_catalog_item_ingestion_failure';
6571
+ type GeEnvironment = 'production' | 'sandbox';
6572
+ type GeEventType = 'restriction_result' | 'ingestion_result';
6460
6573
  type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
6461
6574
  type GoodsSupply = 'export' | 'intra_community' | 'local';
6462
6575
  type HolidayCalendar = 'us_bank_holidays' | 'jewish_holidays';
@@ -6667,7 +6780,7 @@ declare namespace io.flow.v0.enums {
6667
6780
  | 'by_quantity_percentage';
6668
6781
  type OrderStatus = 'open' | 'submitted';
6669
6782
  type OrderStorage = 'do_not_persist' | 'persist';
6670
- type OrderType = 'standard' | 'replacement';
6783
+ type OrderType = 'standard' | 'replacement' | 'edit';
6671
6784
  type OrganizationPaymentMethodTag = 'deny';
6672
6785
  type OrganizationStatus =
6673
6786
  | 'active'
@@ -6717,6 +6830,7 @@ declare namespace io.flow.v0.enums {
6717
6830
  | 'fraudulent'
6718
6831
  | 'error'
6719
6832
  | 'payment_checks_declined';
6833
+ type PaymentFeeType = 'fx' | 'mor';
6720
6834
  type PaymentMethodCapability = 'credit' | 'debit';
6721
6835
  type PaymentMethodDataOptionType = 'ideal_issuer_option';
6722
6836
  type PaymentMethodRuleContentKey = 'description';
@@ -7071,8 +7185,7 @@ declare namespace io.flow.v0.enums {
7071
7185
  | 'failed_payout'
7072
7186
  | 'tax_refund'
7073
7187
  | 'non_l4l_tax_duty_fx'
7074
- | 'ge_revenue_share'
7075
- | 'tax_duty_delta';
7188
+ | 'ge_revenue_share';
7076
7189
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
7077
7190
  type TrueupSurchargeType =
7078
7191
  | 'fuel'
@@ -7100,6 +7213,9 @@ declare namespace io.flow.v0.enums {
7100
7213
  | 'inch'
7101
7214
  | 'foot'
7102
7215
  | 'cubic_inch'
7216
+ | 'cubic_foot'
7217
+ | 'cubic_millimeter'
7218
+ | 'cubic_centimeter'
7103
7219
  | 'cubic_meter'
7104
7220
  | 'gram'
7105
7221
  | 'kilogram'
@@ -7107,7 +7223,12 @@ declare namespace io.flow.v0.enums {
7107
7223
  | 'ounce'
7108
7224
  | 'pound';
7109
7225
  type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
7110
- type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
7226
+ type UnitOfVolume =
7227
+ | 'cubic_inch'
7228
+ | 'cubic_foot'
7229
+ | 'cubic_millimeter'
7230
+ | 'cubic_centimeter'
7231
+ | 'cubic_meter';
7111
7232
  type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
7112
7233
  type UpdatePolicy = 'auto' | 'queue' | 'discard';
7113
7234
  type UserStatus = 'pending' | 'active' | 'inactive';
@@ -8106,6 +8227,7 @@ declare namespace io.flow.v0.models {
8106
8227
  readonly attributes?: Record<string, string>;
8107
8228
  readonly status?: io.flow.v0.enums.CaptureStatus;
8108
8229
  readonly base?: io.flow.v0.models.Money;
8230
+ readonly fees?: io.flow.v0.models.PaymentFee[];
8109
8231
  }
8110
8232
 
8111
8233
  interface CaptureDeleted {
@@ -9863,6 +9985,7 @@ declare namespace io.flow.v0.models {
9863
9985
  interface DutiesTaxesPaidSurchargeServiceFee {
9864
9986
  readonly discriminator: 'duties_taxes_paid_surcharge_service_fee';
9865
9987
  readonly amount: io.flow.v0.models.Money;
9988
+ readonly destination_countries?: string[];
9866
9989
  readonly starts_at?: string;
9867
9990
  readonly ends_at?: string;
9868
9991
  }
@@ -10022,15 +10145,6 @@ declare namespace io.flow.v0.models {
10022
10145
  readonly issuing_country?: string;
10023
10146
  }
10024
10147
 
10025
- interface Estimate {
10026
- readonly id: string;
10027
- readonly organization_id: string;
10028
- readonly label_id: string;
10029
- readonly estimate: io.flow.v0.models.ShippingLabelHopSummary;
10030
- readonly type: io.flow.v0.enums.EstimateType;
10031
- readonly origin?: io.flow.v0.enums.EstimateOrigin;
10032
- }
10033
-
10034
10148
  interface EstimatedDimensions {
10035
10149
  readonly depth: io.flow.v0.models.Measurement;
10036
10150
  readonly length: io.flow.v0.models.Measurement;
@@ -10424,6 +10538,12 @@ declare namespace io.flow.v0.models {
10424
10538
  readonly export: io.flow.v0.models.Export;
10425
10539
  }
10426
10540
 
10541
+ interface ExternalCard {
10542
+ readonly discriminator: 'external_card';
10543
+ readonly id: string;
10544
+ readonly type?: io.flow.v0.enums.CardType;
10545
+ }
10546
+
10427
10547
  interface FeeDeduction {
10428
10548
  readonly type: io.flow.v0.enums.FeeDeductionType;
10429
10549
  readonly amount: number;
@@ -10722,6 +10842,45 @@ declare namespace io.flow.v0.models {
10722
10842
  readonly landed_costs: io.flow.v0.models.LaneLandedCost[];
10723
10843
  }
10724
10844
 
10845
+ interface GeCatalogItemIngestionResult {
10846
+ readonly discriminator: 'ge_catalog_item_ingestion_result';
10847
+ readonly event_id: string;
10848
+ readonly event_type: io.flow.v0.enums.GeEventType;
10849
+ readonly environment: io.flow.v0.enums.GeEnvironment;
10850
+ readonly timestamp: string;
10851
+ readonly source: string;
10852
+ readonly response: io.flow.v0.enums.GeCatalogItemIngestionResponse;
10853
+ readonly message: string;
10854
+ }
10855
+
10856
+ interface GeCatalogItemInput {
10857
+ readonly event_id: string;
10858
+ readonly number: string;
10859
+ readonly organization_id: string;
10860
+ readonly name: string;
10861
+ readonly description: string;
10862
+ readonly price: io.flow.v0.models.GeInputPrice;
10863
+ readonly attributes: io.flow.v0.models.GeInputAttributes;
10864
+ readonly locale: string;
10865
+ readonly id: string;
10866
+ readonly categories: string[];
10867
+ readonly created_at: string;
10868
+ readonly updated_at: string;
10869
+ readonly images: string[];
10870
+ }
10871
+
10872
+ interface GeInputAttributes {
10873
+ readonly country_of_origin: string;
10874
+ readonly ge_hs6_code: string;
10875
+ readonly product_id: string;
10876
+ }
10877
+
10878
+ interface GeInputPrice {
10879
+ readonly amount: number;
10880
+ readonly currency: string;
10881
+ readonly label: string;
10882
+ }
10883
+
10725
10884
  interface GeItemDeleted {
10726
10885
  readonly discriminator: 'ge_item_deleted';
10727
10886
  readonly event_id: string;
@@ -10746,19 +10905,23 @@ declare namespace io.flow.v0.models {
10746
10905
  readonly item: io.flow.v0.models.Item;
10747
10906
  }
10748
10907
 
10749
- interface GeProductRestrictionResultDeleted {
10750
- readonly discriminator: 'ge_product_restriction_result_deleted';
10908
+ interface GeProductRestrictionResultDelete {
10909
+ readonly discriminator: 'ge_product_restriction_result_delete';
10910
+ readonly organization: string;
10751
10911
  readonly event_id: string;
10912
+ readonly event_type: io.flow.v0.enums.GeEventType;
10913
+ readonly environment: io.flow.v0.enums.GeEnvironment;
10752
10914
  readonly timestamp: string;
10753
- readonly organization: string;
10754
10915
  readonly id: string;
10755
10916
  }
10756
10917
 
10757
- interface GeProductRestrictionResultUpserted {
10758
- readonly discriminator: 'ge_product_restriction_result_upserted';
10918
+ interface GeProductRestrictionResultUpsert {
10919
+ readonly discriminator: 'ge_product_restriction_result_upsert';
10920
+ readonly organization: string;
10759
10921
  readonly event_id: string;
10922
+ readonly event_type: io.flow.v0.enums.GeEventType;
10923
+ readonly environment: io.flow.v0.enums.GeEnvironment;
10760
10924
  readonly timestamp: string;
10761
- readonly organization: string;
10762
10925
  readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
10763
10926
  }
10764
10927
 
@@ -13470,6 +13633,12 @@ declare namespace io.flow.v0.models {
13470
13633
  readonly failure_message: string;
13471
13634
  }
13472
13635
 
13636
+ interface PaymentFee {
13637
+ readonly type: io.flow.v0.enums.PaymentFeeType;
13638
+ readonly money: io.flow.v0.models.Money;
13639
+ readonly base?: io.flow.v0.models.Money;
13640
+ }
13641
+
13473
13642
  interface PaymentInformation {
13474
13643
  readonly amount_refundable?: number;
13475
13644
  readonly amount_refunded?: number;
@@ -14477,6 +14646,7 @@ declare namespace io.flow.v0.models {
14477
14646
  readonly updated_by?: string;
14478
14647
  readonly product_restriction_id?: string;
14479
14648
  readonly hs_code?: string;
14649
+ readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellablilityRegionResult[];
14480
14650
  }
14481
14651
 
14482
14652
  interface ProductRestrictionResultDeleted {
@@ -17434,8 +17604,6 @@ declare namespace io.flow.v0.unions {
17434
17604
  | io.flow.v0.models.GeItemInserted
17435
17605
  | io.flow.v0.models.GeItemUpdated
17436
17606
  | io.flow.v0.models.GeItemDeleted
17437
- | io.flow.v0.models.GeProductRestrictionResultUpserted
17438
- | io.flow.v0.models.GeProductRestrictionResultDeleted
17439
17607
  | io.flow.v0.models.Hs6CodeUpserted
17440
17608
  | io.flow.v0.models.Hs6CodeDeleted
17441
17609
  | io.flow.v0.models.Hs10CodeUpserted
@@ -17526,7 +17694,8 @@ declare namespace io.flow.v0.unions {
17526
17694
  type ExpandableCard =
17527
17695
  | io.flow.v0.models.Card
17528
17696
  | io.flow.v0.models.CardReference
17529
- | io.flow.v0.models.CardSummary;
17697
+ | io.flow.v0.models.CardSummary
17698
+ | io.flow.v0.models.ExternalCard;
17530
17699
  type ExpandableCenter =
17531
17700
  | io.flow.v0.models.Center
17532
17701
  | io.flow.v0.models.CenterReference;
@@ -17582,6 +17751,10 @@ declare namespace io.flow.v0.unions {
17582
17751
  type GatewayAuthenticationData = io.flow.v0.models.StripeAuthenticationData;
17583
17752
  type GatewayAuthenticationDataForm =
17584
17753
  io.flow.v0.models.StripeAuthenticationDataForm;
17754
+ type GeRestrictionEvent =
17755
+ | io.flow.v0.models.GeProductRestrictionResultUpsert
17756
+ | io.flow.v0.models.GeProductRestrictionResultDelete
17757
+ | io.flow.v0.models.GeCatalogItemIngestionResult;
17585
17758
  type InlineActionConfiguration =
17586
17759
  io.flow.v0.models.BrowserInlineActionConfiguration;
17587
17760
  type InputSpecificationLimitation =
@@ -18465,9 +18638,6 @@ export type Entity = io.flow.v0.unions.Entity;
18465
18638
  export type EntityIdentifier = io.flow.v0.models.EntityIdentifier;
18466
18639
  export type EntityIdentifierType = io.flow.v0.enums.EntityIdentifierType;
18467
18640
  export type Environment = io.flow.v0.enums.Environment;
18468
- export type Estimate = io.flow.v0.models.Estimate;
18469
- export type EstimateOrigin = io.flow.v0.enums.EstimateOrigin;
18470
- export type EstimateType = io.flow.v0.enums.EstimateType;
18471
18641
  export type EstimatedDimensions = io.flow.v0.models.EstimatedDimensions;
18472
18642
  export type EstimatedWindow = io.flow.v0.models.EstimatedWindow;
18473
18643
  export type Event = io.flow.v0.unions.Event;
@@ -18577,6 +18747,7 @@ export type ExportStatus = io.flow.v0.enums.ExportStatus;
18577
18747
  export type ExportType = io.flow.v0.unions.ExportType;
18578
18748
  export type ExportVersion = io.flow.v0.models.ExportVersion;
18579
18749
  export type ExporterOfRecord = io.flow.v0.enums.ExporterOfRecord;
18750
+ export type ExternalCard = io.flow.v0.models.ExternalCard;
18580
18751
  export type FeeDeduction = io.flow.v0.models.FeeDeduction;
18581
18752
  export type FeeDeductionType = io.flow.v0.enums.FeeDeductionType;
18582
18753
  export type FeeWeight = io.flow.v0.models.FeeWeight;
@@ -18660,13 +18831,23 @@ export type GatewayAuthenticationData =
18660
18831
  io.flow.v0.unions.GatewayAuthenticationData;
18661
18832
  export type GatewayAuthenticationDataForm =
18662
18833
  io.flow.v0.unions.GatewayAuthenticationDataForm;
18834
+ export type GeCatalogItemIngestionResponse =
18835
+ io.flow.v0.enums.GeCatalogItemIngestionResponse;
18836
+ export type GeCatalogItemIngestionResult =
18837
+ io.flow.v0.models.GeCatalogItemIngestionResult;
18838
+ export type GeCatalogItemInput = io.flow.v0.models.GeCatalogItemInput;
18839
+ export type GeEnvironment = io.flow.v0.enums.GeEnvironment;
18840
+ export type GeEventType = io.flow.v0.enums.GeEventType;
18841
+ export type GeInputAttributes = io.flow.v0.models.GeInputAttributes;
18842
+ export type GeInputPrice = io.flow.v0.models.GeInputPrice;
18663
18843
  export type GeItemDeleted = io.flow.v0.models.GeItemDeleted;
18664
18844
  export type GeItemInserted = io.flow.v0.models.GeItemInserted;
18665
18845
  export type GeItemUpdated = io.flow.v0.models.GeItemUpdated;
18666
- export type GeProductRestrictionResultDeleted =
18667
- io.flow.v0.models.GeProductRestrictionResultDeleted;
18668
- export type GeProductRestrictionResultUpserted =
18669
- io.flow.v0.models.GeProductRestrictionResultUpserted;
18846
+ export type GeProductRestrictionResultDelete =
18847
+ io.flow.v0.models.GeProductRestrictionResultDelete;
18848
+ export type GeProductRestrictionResultUpsert =
18849
+ io.flow.v0.models.GeProductRestrictionResultUpsert;
18850
+ export type GeRestrictionEvent = io.flow.v0.unions.GeRestrictionEvent;
18670
18851
  export type GenerateLoad = io.flow.v0.models.GenerateLoad;
18671
18852
  export type GenericError = io.flow.v0.models.GenericError;
18672
18853
  export type GenericErrorCode = io.flow.v0.enums.GenericErrorCode;
@@ -19216,6 +19397,8 @@ export type PaymentError = io.flow.v0.models.PaymentError;
19216
19397
  export type PaymentErrorCode = io.flow.v0.enums.PaymentErrorCode;
19217
19398
  export type PaymentFailure = io.flow.v0.models.PaymentFailure;
19218
19399
  export type PaymentFailureCode = io.flow.v0.enums.PaymentFailureCode;
19400
+ export type PaymentFee = io.flow.v0.models.PaymentFee;
19401
+ export type PaymentFeeType = io.flow.v0.enums.PaymentFeeType;
19219
19402
  export type PaymentForm = io.flow.v0.unions.PaymentForm;
19220
19403
  export type PaymentInformation = io.flow.v0.models.PaymentInformation;
19221
19404
  export type PaymentMethod = io.flow.v0.models.PaymentMethod;