@flowio/types 11.24.109 → 11.24.111

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.
@@ -1710,6 +1710,17 @@ declare namespace io.flow.payment.v0.models {
1710
1710
  readonly display: string;
1711
1711
  }
1712
1712
 
1713
+ interface AuthorizationRetry {
1714
+ readonly id: string;
1715
+ readonly authorization_request_id: string;
1716
+ readonly authorization_id: string;
1717
+ readonly organization_id: string;
1718
+ readonly attempt: number;
1719
+ readonly last_failure_code: string;
1720
+ readonly created_at: string;
1721
+ readonly updated_at: string;
1722
+ }
1723
+
1713
1724
  interface AuthorizationVersion {
1714
1725
  readonly id: string;
1715
1726
  readonly timestamp: string;
@@ -1827,6 +1838,7 @@ declare namespace io.flow.payment.v0.models {
1827
1838
  readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
1828
1839
  readonly stored_method_usage_step?: io.flow.payment.v0.enums.StoredMethodUsageStep;
1829
1840
  readonly authorized_at?: string;
1841
+ readonly authorization_request_id?: string;
1830
1842
  }
1831
1843
 
1832
1844
  interface CardBrowserActionConfiguration {
@@ -2108,6 +2120,7 @@ declare namespace io.flow.payment.v0.models {
2108
2120
  readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
2109
2121
  readonly confirmation_details?: io.flow.payment.v0.unions.ConfirmationDetails;
2110
2122
  readonly authorized_at?: string;
2123
+ readonly authorization_request_id?: string;
2111
2124
  }
2112
2125
 
2113
2126
  interface OnlinePaymentAuthorizationForm {
@@ -3030,12 +3043,58 @@ declare namespace io.flow.stripe.v0.enums {
3030
3043
  | 'unknown';
3031
3044
  type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
3032
3045
  type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
3046
+ type ReportingReportRunStatus = 'pending' | 'succeeded' | 'failed';
3047
+ type ReportingReportType =
3048
+ | 'ending_balance_reconciliation.itemized.1'
3049
+ | 'ending_balance_reconciliation.itemized.2'
3050
+ | 'ending_balance_reconciliation.itemized.3'
3051
+ | 'ending_balance_reconciliation.itemized.4'
3052
+ | 'payout_reconciliation.itemized.5'
3053
+ | 'payout_reconciliation.by_id.itemized.1'
3054
+ | 'payout_reconciliation.by_id.itemized.2'
3055
+ | 'payout_reconciliation.by_id.itemized.3'
3056
+ | 'payout_reconciliation.by_id.itemized.4'
3057
+ | 'payout_reconciliation.by_id.summary.1'
3058
+ | 'ending_balance_reconciliation.summary.1'
3059
+ | 'payout_reconciliation.itemized.1'
3060
+ | 'payout_reconciliation.itemized.2'
3061
+ | 'payout_reconciliation.itemized.3'
3062
+ | 'payout_reconciliation.itemized.4'
3063
+ | 'payout_reconciliation.summary.1';
3033
3064
  type RequestThreeDSecureType = 'automatic' | 'any';
3034
3065
  type RequestedCapabilities =
3035
3066
  | 'card_payments'
3036
3067
  | 'legacy_payments'
3037
3068
  | 'transfers';
3038
3069
  type SetupFutureUsage = 'on_session' | 'off_session';
3070
+ type ShopifyPaymentStripeEventType =
3071
+ | 'charge.captured'
3072
+ | 'charge.dispute.created'
3073
+ | 'charge.dispute.closed'
3074
+ | 'charge.dispute.funds_reinstated'
3075
+ | 'charge.dispute.funds_withdrawn'
3076
+ | 'charge.dispute.updated'
3077
+ | 'charge.expired'
3078
+ | 'charge.failed'
3079
+ | 'charge.pending'
3080
+ | 'charge.refund.updated'
3081
+ | 'charge.refunded'
3082
+ | 'charge.succeeded'
3083
+ | 'charge.updated'
3084
+ | 'payment_intent.amount_capturable_updated'
3085
+ | 'payment_intent.canceled'
3086
+ | 'payment_intent.created'
3087
+ | 'payment_intent.partially_funded'
3088
+ | 'payment_intent.payment_failed'
3089
+ | 'payment_intent.processing'
3090
+ | 'payment_intent.requires_action'
3091
+ | 'payment_intent.succeeded'
3092
+ | 'transfer.created'
3093
+ | 'transfer.reversed'
3094
+ | 'transfer.updated'
3095
+ | 'reporting.report_run.succeeded'
3096
+ | 'reporting.report_type.updated'
3097
+ | 'reporting.report_type.failed';
3039
3098
  type SourceFlow = 'redirect' | 'receiver' | 'code_verification' | 'none';
3040
3099
  type SourceStatus =
3041
3100
  | 'canceled'
@@ -3972,12 +4031,76 @@ declare namespace io.flow.stripe.v0.models {
3972
4031
  readonly url: string;
3973
4032
  }
3974
4033
 
4034
+ interface ReportRunParameters {
4035
+ readonly interval_start: number;
4036
+ readonly interval_end: number;
4037
+ readonly columns?: string[];
4038
+ readonly payout?: string;
4039
+ readonly connected_account?: string;
4040
+ readonly reporting_category?: string;
4041
+ }
4042
+
4043
+ interface ReportingReportRun {
4044
+ readonly id: string;
4045
+ readonly object: string;
4046
+ readonly created: number;
4047
+ readonly error?: string;
4048
+ readonly livemode: boolean;
4049
+ readonly status: io.flow.stripe.v0.enums.ReportingReportRunStatus;
4050
+ readonly result?: io.flow.stripe.v0.models.ReportingReportRunResult;
4051
+ readonly succeeded_at?: number;
4052
+ }
4053
+
4054
+ interface ReportingReportRunForm {
4055
+ readonly report_type: io.flow.stripe.v0.enums.ReportingReportType;
4056
+ readonly parameters: io.flow.stripe.v0.models.ReportRunParameters;
4057
+ }
4058
+
4059
+ interface ReportingReportRunResult {
4060
+ readonly id: string;
4061
+ readonly object: string;
4062
+ readonly created: number;
4063
+ readonly expires_at: number;
4064
+ readonly filename: string;
4065
+ readonly links: any /*object*/;
4066
+ readonly purpose: string;
4067
+ readonly size: number;
4068
+ readonly title: string;
4069
+ readonly type: string;
4070
+ readonly url: string;
4071
+ }
4072
+
4073
+ interface ReportingReportRuns {
4074
+ readonly object: string;
4075
+ readonly data: io.flow.stripe.v0.models.ReportingReportRun[];
4076
+ readonly has_more: boolean;
4077
+ readonly url?: string;
4078
+ }
4079
+
3975
4080
  interface Shipping {
3976
4081
  readonly address: io.flow.stripe.v0.models.Address;
3977
4082
  readonly name?: string;
3978
4083
  readonly phone?: string;
3979
4084
  }
3980
4085
 
4086
+ interface ShopifyPaymentStripeEvent {
4087
+ readonly id: string;
4088
+ readonly api_version?: string;
4089
+ readonly data: io.flow.stripe.v0.models.ShopifyPaymentStripeEventData;
4090
+ readonly request?: any /*object*/;
4091
+ readonly type: io.flow.stripe.v0.enums.ShopifyPaymentStripeEventType;
4092
+ readonly object: string;
4093
+ readonly account?: string;
4094
+ readonly created: number;
4095
+ readonly livemode: boolean;
4096
+ readonly pending_webhooks: number;
4097
+ }
4098
+
4099
+ interface ShopifyPaymentStripeEventData {
4100
+ readonly object?: any /*object*/;
4101
+ readonly previous_attributes?: any /*object*/;
4102
+ }
4103
+
3981
4104
  interface Source {
3982
4105
  readonly id: string;
3983
4106
  readonly object: string;
@@ -5407,7 +5530,7 @@ declare namespace io.flow.external.paypal.v1.models {
5407
5530
  readonly transaction_updated_date: string;
5408
5531
  readonly transaction_status: io.flow.external.paypal.v1.enums.ReportingTransactionStatus;
5409
5532
  readonly transaction_subject?: string;
5410
- readonly invoice_id: string;
5533
+ readonly invoice_id?: string;
5411
5534
  readonly custom_field?: string;
5412
5535
  readonly protection_eligibility?: string;
5413
5536
  readonly instrument_type?: string;
@@ -5920,7 +6043,8 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
5920
6043
  | 'product_bundle'
5921
6044
  | 'shopify_location'
5922
6045
  | 'shopify_order'
5923
- | 'sync_product_catalog';
6046
+ | 'sync_product_catalog'
6047
+ | 'shopify_webhook';
5924
6048
  type ProductStatus = 'active' | 'archived' | 'draft';
5925
6049
  type ShopifyMarketsDangerousGoods =
5926
6050
  | 'aerosols'
@@ -7012,6 +7136,18 @@ declare namespace io.flow.shopify.external.v0.models {
7012
7136
  readonly weight?: io.flow.shopify.external.v0.models.GraphqlWeight;
7013
7137
  }
7014
7138
 
7139
+ interface GraphqlMetafield {
7140
+ readonly id: string;
7141
+ readonly key: string;
7142
+ readonly value: string;
7143
+ readonly type?: string;
7144
+ }
7145
+
7146
+ interface GraphqlMetaobject {
7147
+ readonly id: string;
7148
+ readonly displayName: string;
7149
+ }
7150
+
7015
7151
  interface GraphqlOption {
7016
7152
  readonly id: string;
7017
7153
  readonly values: string[];
@@ -7037,6 +7173,8 @@ declare namespace io.flow.shopify.external.v0.models {
7037
7173
  readonly createdAt: string;
7038
7174
  readonly updatedAt: string;
7039
7175
  readonly hasVariantsThatRequiresComponents?: boolean;
7176
+ readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
7177
+ readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
7040
7178
  }
7041
7179
 
7042
7180
  interface GraphqlProductImage {
@@ -7060,6 +7198,11 @@ declare namespace io.flow.shopify.external.v0.models {
7060
7198
  readonly inventoryItem: io.flow.shopify.external.v0.models.GraphqlInventoryItem;
7061
7199
  }
7062
7200
 
7201
+ interface GraphqlTaxonomyCategory {
7202
+ readonly name: string;
7203
+ readonly fullName: string;
7204
+ }
7205
+
7063
7206
  interface GraphqlVariantImage {
7064
7207
  readonly id: string;
7065
7208
  }
@@ -7177,6 +7320,8 @@ declare namespace io.flow.shopify.external.v0.models {
7177
7320
  readonly created_at: string;
7178
7321
  readonly updated_at: string;
7179
7322
  readonly has_variants_that_requires_components?: boolean;
7323
+ readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
7324
+ readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
7180
7325
  }
7181
7326
 
7182
7327
  interface ProductDelete {
@@ -7194,6 +7339,17 @@ declare namespace io.flow.shopify.external.v0.models {
7194
7339
  readonly alt?: string;
7195
7340
  }
7196
7341
 
7342
+ interface ProductMetafield {
7343
+ readonly id: number;
7344
+ readonly namespace: string;
7345
+ readonly key: string;
7346
+ readonly value: string;
7347
+ readonly created_at: string;
7348
+ readonly updated_at: string;
7349
+ readonly type: string;
7350
+ readonly admin_graphql_api_id: string;
7351
+ }
7352
+
7197
7353
  interface ProductVariant {
7198
7354
  readonly id: number;
7199
7355
  readonly sku?: string;
@@ -10076,6 +10232,7 @@ declare namespace io.flow.experience.v0.enums {
10076
10232
  | 'item_out_of_stock'
10077
10233
  | 'gift_card_not_accepted'
10078
10234
  | 'total_changed';
10235
+ type OrderPaymentSourceType = 'globale' | 'third_party';
10079
10236
  type OrderPaymentType =
10080
10237
  | 'card'
10081
10238
  | 'online'
@@ -10708,6 +10865,7 @@ declare namespace io.flow.experience.v0.models {
10708
10865
  readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
10709
10866
  readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
10710
10867
  readonly incoterm_summary?: io.flow.experience.v0.models.IncotermSummary;
10868
+ readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
10711
10869
  }
10712
10870
 
10713
10871
  interface OrderAddress {
@@ -10797,6 +10955,7 @@ declare namespace io.flow.experience.v0.models {
10797
10955
  readonly authorization_keys?: string[];
10798
10956
  readonly options?: io.flow.experience.v0.models.OrderOptions;
10799
10957
  readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
10958
+ readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
10800
10959
  }
10801
10960
 
10802
10961
  interface OrderGeo {
@@ -10908,6 +11067,7 @@ declare namespace io.flow.experience.v0.models {
10908
11067
  readonly authorization_keys?: string[];
10909
11068
  readonly options?: io.flow.experience.v0.models.OrderOptions;
10910
11069
  readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
11070
+ readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
10911
11071
  }
10912
11072
 
10913
11073
  interface OrderReference {
@@ -11228,12 +11388,14 @@ declare namespace io.flow.ratecard.v0.models {
11228
11388
  readonly q: string;
11229
11389
  readonly dimensions: io.flow.ratecard.v0.models.EstimatedDimensions;
11230
11390
  readonly position: number;
11391
+ readonly block_bulk_update?: boolean;
11231
11392
  }
11232
11393
 
11233
11394
  interface DimensionEstimateForm {
11234
11395
  readonly q: string;
11235
11396
  readonly dimensions: io.flow.ratecard.v0.models.EstimatedDimensions;
11236
11397
  readonly position?: number;
11398
+ readonly block_bulk_update?: boolean;
11237
11399
  }
11238
11400
 
11239
11401
  interface DimensionEstimateVersion {
@@ -12460,7 +12622,71 @@ declare namespace io.flow.reference.v0.models {
12460
12622
  }
12461
12623
  }
12462
12624
 
12625
+ declare namespace io.flow.product.v0.models {
12626
+ interface Product {
12627
+ readonly organization_id: string;
12628
+ readonly number: string;
12629
+ readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
12630
+ readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
12631
+ readonly item_numbers: string[];
12632
+ readonly updated_at: string;
12633
+ readonly deleted_at?: string;
12634
+ }
12635
+
12636
+ interface ProductTaxonomyCategory {
12637
+ readonly name: string;
12638
+ readonly full_name: string;
12639
+ }
12640
+
12641
+ interface ProductTaxonomyData {
12642
+ readonly key: string;
12643
+ readonly value: string[];
12644
+ }
12645
+ }
12646
+
12463
12647
  declare namespace io.flow.tracking.v0.enums {
12648
+ type SubstatusCode =
12649
+ | 'Delivered_001'
12650
+ | 'Delivered_002'
12651
+ | 'Delivered_003'
12652
+ | 'Delivered_004'
12653
+ | 'AvailableForPickup_001'
12654
+ | 'Exception_001'
12655
+ | 'Exception_002'
12656
+ | 'Exception_003'
12657
+ | 'Exception_004'
12658
+ | 'Exception_005'
12659
+ | 'Exception_006'
12660
+ | 'Exception_007'
12661
+ | 'Exception_008'
12662
+ | 'Exception_009'
12663
+ | 'Exception_010'
12664
+ | 'Exception_011'
12665
+ | 'Exception_012'
12666
+ | 'Exception_013'
12667
+ | 'AttemptFail_001'
12668
+ | 'AttemptFail_002'
12669
+ | 'AttemptFail_003'
12670
+ | 'InTransit_001'
12671
+ | 'InTransit_002'
12672
+ | 'InTransit_003'
12673
+ | 'InTransit_004'
12674
+ | 'InTransit_005'
12675
+ | 'InTransit_006'
12676
+ | 'InTransit_007'
12677
+ | 'InTransit_008'
12678
+ | 'InTransit_009'
12679
+ | 'InfoReceived_001'
12680
+ | 'OutForDelivery_001'
12681
+ | 'OutForDelivery_003'
12682
+ | 'OutForDelivery_004'
12683
+ | 'Pending_001'
12684
+ | 'Pending_002'
12685
+ | 'Pending_003'
12686
+ | 'Pending_004'
12687
+ | 'Pending_005'
12688
+ | 'Pending_006'
12689
+ | 'Expired_001';
12464
12690
  type TrackingStatus =
12465
12691
  | 'label_created'
12466
12692
  | 'pending'
@@ -12472,7 +12698,9 @@ declare namespace io.flow.tracking.v0.enums {
12472
12698
  | 'delivered'
12473
12699
  | 'exception'
12474
12700
  | 'returned'
12475
- | 'expired';
12701
+ | 'expired'
12702
+ | 'unknown'
12703
+ | 'unmapped';
12476
12704
  }
12477
12705
 
12478
12706
  declare namespace io.flow.tracking.v0.models {
@@ -13573,7 +13801,10 @@ declare namespace io.flow.billing.v0.enums {
13573
13801
  | 'virtual_card_capture'
13574
13802
  | 'virtual_card_refund'
13575
13803
  | 'failed_payout'
13576
- | 'tax_refund';
13804
+ | 'tax_refund'
13805
+ | 'non_l4l_tax_duty_fx'
13806
+ | 'ge_revenue_share'
13807
+ | 'tax_duty_delta';
13577
13808
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
13578
13809
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
13579
13810
  }
@@ -15485,6 +15716,46 @@ declare namespace io.flow.fraud.v0.unions {
15485
15716
  | io.flow.fraud.v0.models.FraudPaymentRequestReference;
15486
15717
  }
15487
15718
 
15719
+ declare namespace io.flow.sellability.v0.enums {
15720
+ type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
15721
+ type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category';
15722
+ }
15723
+
15724
+ declare namespace io.flow.sellability.v0.models {
15725
+ interface ProductSellability {
15726
+ readonly shop_id: string;
15727
+ readonly product_id?: string;
15728
+ readonly request_id: string;
15729
+ readonly hs6_code: string;
15730
+ readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
15731
+ }
15732
+
15733
+ interface ProductSellabilityForm {
15734
+ readonly shop_id: string;
15735
+ readonly product_id?: string;
15736
+ readonly request_id: string;
15737
+ readonly name: string;
15738
+ readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
15739
+ readonly description: string;
15740
+ readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
15741
+ }
15742
+
15743
+ interface ProductSellabilityPrice {
15744
+ readonly currency: string;
15745
+ readonly amount: number;
15746
+ }
15747
+
15748
+ interface SellabilityError {
15749
+ readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
15750
+ readonly messages: string[];
15751
+ }
15752
+
15753
+ interface SellablilityRegionResult {
15754
+ readonly type: io.flow.sellability.v0.enums.RuleEffectType;
15755
+ readonly regions: string[];
15756
+ }
15757
+ }
15758
+
15488
15759
  declare namespace io.flow.currency.v0.models {
15489
15760
  interface Rate {
15490
15761
  readonly id: string;
@@ -15810,6 +16081,7 @@ declare namespace io.flow.internal.v0.enums {
15810
16081
  | 'checkout_payments_api'
15811
16082
  | 'classic_authorise_api';
15812
16083
  type AldoItemType = 'physical' | 'digital';
16084
+ type AnshItemType = 'physical' | 'digital';
15813
16085
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
15814
16086
  type ApiCallReferenceId =
15815
16087
  | 'duty_rates_data_event'
@@ -16044,8 +16316,11 @@ declare namespace io.flow.internal.v0.enums {
16044
16316
  | 'duty'
16045
16317
  | 'trueup'
16046
16318
  | 'carrier_charge'
16319
+ | 'non_l4l_tax_duty_fx'
16047
16320
  | 'tax_refund'
16048
- | 'duty_refund';
16321
+ | 'duty_refund'
16322
+ | 'ge_revenue_share'
16323
+ | 'tax_duty_delta';
16049
16324
  type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
16050
16325
  type CalculatorEngine =
16051
16326
  | 'dtce_with_deminimis'
@@ -16131,7 +16406,8 @@ declare namespace io.flow.internal.v0.enums {
16131
16406
  | 'duties_fx_surcharge'
16132
16407
  | 'electronic_export_information_surcharge'
16133
16408
  | 'additional_handling'
16134
- | 'large_package_surcharge';
16409
+ | 'large_package_surcharge'
16410
+ | 'peak_surcharge';
16135
16411
  type ChargebackPaymentStatus = 'captured' | 'refunded';
16136
16412
  type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
16137
16413
  type CheckoutAssetType = 'stylesheet' | 'javascript';
@@ -16190,7 +16466,7 @@ declare namespace io.flow.internal.v0.enums {
16190
16466
  | 'general'
16191
16467
  | 'product'
16192
16468
  | 'returns';
16193
- type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
16469
+ type DisputeStatus = 'pending' | 'won' | 'lost' | 'refunded' | 'expired';
16194
16470
  type DisputeTransactionType = 'adjustment' | 'dispute';
16195
16471
  type DisputeType = 'chargeback';
16196
16472
  type DutyCompoundExpressionType = 'sum' | 'max' | 'min';
@@ -16233,8 +16509,6 @@ declare namespace io.flow.internal.v0.enums {
16233
16509
  | 'adyen_refund_upserted'
16234
16510
  | 'adyen_dispute_upserted'
16235
16511
  | 'adyen_dispute_deleted'
16236
- | 'aldo_item_upserted'
16237
- | 'aldo_item_deleted'
16238
16512
  | 'fulfillment_upserted'
16239
16513
  | 'fulfillment_deleted'
16240
16514
  | 'merchant_upserted'
@@ -16399,7 +16673,6 @@ declare namespace io.flow.internal.v0.enums {
16399
16673
  | 'harmonized_items_hs6_export'
16400
16674
  | 'unharmonized_items_export'
16401
16675
  | 'dutied_items_export'
16402
- | 'tariff_codes_export'
16403
16676
  | 'harmonization_phrase_suggestion_request_import'
16404
16677
  | 'harmonization_codes_import'
16405
16678
  | 'item_classification_created'
@@ -16416,8 +16689,6 @@ declare namespace io.flow.internal.v0.enums {
16416
16689
  | 'rate_freshness_summary_deleted'
16417
16690
  | 'item_harmonization_upserted'
16418
16691
  | 'item_harmonization_deleted'
16419
- | 'harmonization_item_classification_upserted'
16420
- | 'harmonization_item_classification_deleted'
16421
16692
  | 'harmonization_classification_statistics_published'
16422
16693
  | 'issuer_upserted'
16423
16694
  | 'issuer_deleted'
@@ -16430,17 +16701,8 @@ declare namespace io.flow.internal.v0.enums {
16430
16701
  | 'order_validation_deleted'
16431
16702
  | 'label_tracking_summary_upserted'
16432
16703
  | 'label_tracking_summary_deleted'
16433
- | 'localized_item_upserted_v2'
16434
- | 'localized_item_deleted'
16435
- | 'localized_item_deleted_v2'
16436
- | 'localized_item_snapshot'
16437
- | 'localized_price_book_item_upserted'
16438
- | 'localized_price_book_item_deleted'
16439
16704
  | 'logistics_capabilities_upserted'
16440
16705
  | 'logistics_capabilities_deleted'
16441
- | 'feed_upserted'
16442
- | 'feed_deleted'
16443
- | 'feeds_export'
16444
16706
  | 'localized_item_prices_export_request'
16445
16707
  | 'optin_prompt_upserted'
16446
16708
  | 'optin_prompt_deleted'
@@ -16525,6 +16787,10 @@ declare namespace io.flow.internal.v0.enums {
16525
16787
  | 'screening_status_change_deleted'
16526
16788
  | 'restrictions_dailyops_upserted'
16527
16789
  | 'restrictions_dailyops_deleted'
16790
+ | 'restriction_rule_upserted'
16791
+ | 'restriction_rule_deleted'
16792
+ | 'restriction_rule_effect_upserted'
16793
+ | 'restriction_rule_effect_deleted'
16528
16794
  | 'shopify_shop_upserted'
16529
16795
  | 'shopify_shop_deleted'
16530
16796
  | 'shopify_experience_short_id_upserted'
@@ -16550,6 +16816,18 @@ declare namespace io.flow.internal.v0.enums {
16550
16816
  | 'shopify_incoterm_summary_error_published'
16551
16817
  | 'shopify_markets_best_selling_product_upserted'
16552
16818
  | 'shopify_markets_best_selling_product_deleted'
16819
+ | 'shopify_product_create_upserted'
16820
+ | 'shopify_product_create_deleted'
16821
+ | 'shopify_product_update_upserted'
16822
+ | 'shopify_product_update_deleted'
16823
+ | 'shopify_product_delete_upserted'
16824
+ | 'shopify_product_delete_deleted'
16825
+ | 'shopify_inventory_item_create_upserted'
16826
+ | 'shopify_inventory_item_create_deleted'
16827
+ | 'shopify_inventory_item_update_upserted'
16828
+ | 'shopify_inventory_item_update_deleted'
16829
+ | 'shopify_inventory_item_delete_upserted'
16830
+ | 'shopify_inventory_item_delete_deleted'
16553
16831
  | 'shopify_monitoring_order_monitor_event_upserted'
16554
16832
  | 'shopify_monitoring_order_monitor_event_deleted'
16555
16833
  | 'shopify_order_fulfillments_snapshot_upserted'
@@ -16624,7 +16902,8 @@ declare namespace io.flow.internal.v0.enums {
16624
16902
  | 'product_bundle'
16625
16903
  | 'shopify_location'
16626
16904
  | 'shopify_order'
16627
- | 'sync_product_catalog';
16905
+ | 'sync_product_catalog'
16906
+ | 'shopify_webhook';
16628
16907
  type HarmonizationDecisionSource =
16629
16908
  | 'human'
16630
16909
  | 'legacy_model'
@@ -16652,6 +16931,8 @@ declare namespace io.flow.internal.v0.enums {
16652
16931
  type LabelBillingStrategy = 'quote' | 'carrier';
16653
16932
  type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
16654
16933
  type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
16934
+ type LabelEventMedium = 'webhook' | 'pull' | 'post';
16935
+ type LabelEventSource = 'aftership' | 'carrier' | 'flow';
16655
16936
  type LabelRequestErrorHandlingResponsibility =
16656
16937
  | 'merchant'
16657
16938
  | 'merchant_integration'
@@ -16659,7 +16940,8 @@ declare namespace io.flow.internal.v0.enums {
16659
16940
  | 'globale_cx'
16660
16941
  | 'globale_address_repair'
16661
16942
  | 'merchant_operations'
16662
- | 'globale_system';
16943
+ | 'globale_system'
16944
+ | 'carrier';
16663
16945
  type LabelRequestResultOrganizationType =
16664
16946
  | 'all'
16665
16947
  | 'legacy_production'
@@ -16694,58 +16976,6 @@ declare namespace io.flow.internal.v0.enums {
16694
16976
  | 'negative_balance_guarantee'
16695
16977
  | 'bank_payment_failure'
16696
16978
  | 'non_fraud_chargeback';
16697
- type MarketingGatewayAccountConnectionStatus =
16698
- | 'not_connected'
16699
- | 'connecting'
16700
- | 'connected'
16701
- | 'disconnecting'
16702
- | 'disconnected';
16703
- type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
16704
- type MarketingGatewayChannelStatus =
16705
- | 'not_connected'
16706
- | 'connecting'
16707
- | 'connected'
16708
- | 'disconnecting'
16709
- | 'disconnected'
16710
- | 'unavailable';
16711
- type MarketingGatewayErrorCode =
16712
- | 'generic_error'
16713
- | 'google_api_error'
16714
- | 'facebook_api_error'
16715
- | 'invalid_oauth_token_error';
16716
- type MarketingGatewayFacebookTokenStatus = 'unknown' | 'active' | 'expired';
16717
- type MarketingGatewayFeedDownloadFormat = 'tsv' | 'csv' | 'txt';
16718
- type MarketingGatewayFeedState =
16719
- | 'initialized'
16720
- | 'generated'
16721
- | 'in_review'
16722
- | 'rejected'
16723
- | 'active';
16724
- type MarketingGatewayPlatform =
16725
- | 'google'
16726
- | 'facebook'
16727
- | 'adroll'
16728
- | 'aliexpress'
16729
- | 'amazon'
16730
- | 'bing'
16731
- | 'criteo'
16732
- | 'fruugo'
16733
- | 'pinterest'
16734
- | 'rakuten_japan'
16735
- | 'wish'
16736
- | 'snapchat'
16737
- | 'stylight';
16738
- type MarketingGatewayProductStatus =
16739
- | 'approved'
16740
- | 'not_approved'
16741
- | 'pending'
16742
- | 'not_found'
16743
- | 'excluded';
16744
- type MarketingGatewaySchemaCompatibility =
16745
- | 'google'
16746
- | 'facebook_primary'
16747
- | 'facebook_country_override'
16748
- | 'supplemental';
16749
16979
  type MixedBagWeight = '0' | '1' | '2';
16750
16980
  type NatureOfSale =
16751
16981
  | 'consumer'
@@ -16849,6 +17079,7 @@ declare namespace io.flow.internal.v0.enums {
16849
17079
  | 'unscreened';
16850
17080
  type OutputStyle = 'flow' | 'shopify_p1';
16851
17081
  type Owner = 'flow' | 'organization';
17082
+ type PaymentShortUrlDiscriminator = 'adyen_3ds2';
16852
17083
  type PaymentSummaryStatus =
16853
17084
  | 'authorized'
16854
17085
  | 'canceled'
@@ -17020,7 +17251,7 @@ declare namespace io.flow.internal.v0.enums {
17020
17251
  | 'vat'
17021
17252
  | 'duty';
17022
17253
  type ShopifyPromotionStatus = 'active' | 'inactive';
17023
- type ShopifyService = 'payment' | 'duty_tax_calculator';
17254
+ type ShopifyService = 'payment' | 'duty_tax_calculator' | 'sellability';
17024
17255
  type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
17025
17256
  type SnoozeNextActionWith = 'customer_service' | 'engineering';
17026
17257
  type SnoozeSourceType = 'task' | 'invariant';
@@ -17805,13 +18036,6 @@ declare namespace io.flow.internal.v0.models {
17805
18036
  readonly added_on: string;
17806
18037
  }
17807
18038
 
17808
- interface AldoItemDeleted {
17809
- readonly discriminator: 'aldo_item_deleted';
17810
- readonly event_id: string;
17811
- readonly timestamp: string;
17812
- readonly id: string;
17813
- }
17814
-
17815
18039
  interface AldoItemForm {
17816
18040
  readonly number: string;
17817
18041
  readonly amount: io.flow.common.v0.models.Price;
@@ -17820,13 +18044,6 @@ declare namespace io.flow.internal.v0.models {
17820
18044
  readonly added_on: string;
17821
18045
  }
17822
18046
 
17823
- interface AldoItemUpserted {
17824
- readonly discriminator: 'aldo_item_upserted';
17825
- readonly event_id: string;
17826
- readonly timestamp: string;
17827
- readonly item: io.flow.internal.v0.models.AldoItem;
17828
- }
17829
-
17830
18047
  interface AlertErrorSummary {
17831
18048
  readonly event_id: number;
17832
18049
  readonly error: string;
@@ -17877,6 +18094,23 @@ declare namespace io.flow.internal.v0.models {
17877
18094
  readonly labels: Record<string, string[]>;
17878
18095
  }
17879
18096
 
18097
+ interface AnshItem {
18098
+ readonly id: string;
18099
+ readonly number: string;
18100
+ readonly amount: io.flow.common.v0.models.Price;
18101
+ readonly description?: string;
18102
+ readonly type: io.flow.internal.v0.enums.AnshItemType;
18103
+ readonly added_on: string;
18104
+ }
18105
+
18106
+ interface AnshItemForm {
18107
+ readonly number: string;
18108
+ readonly amount: io.flow.common.v0.models.Price;
18109
+ readonly description?: string;
18110
+ readonly type: io.flow.internal.v0.enums.AnshItemType;
18111
+ readonly added_on: string;
18112
+ }
18113
+
17880
18114
  interface ApmContent {
17881
18115
  readonly processor_description: io.flow.internal.v0.unions.ContentItem;
17882
18116
  }
@@ -20957,6 +21191,8 @@ declare namespace io.flow.internal.v0.models {
20957
21191
  readonly raw_carrier_event_code?: string;
20958
21192
  readonly aggregator_status_code?: string;
20959
21193
  readonly created_at?: string;
21194
+ readonly source?: io.flow.internal.v0.enums.LabelEventSource;
21195
+ readonly medium?: io.flow.internal.v0.enums.LabelEventMedium;
20960
21196
  }
20961
21197
 
20962
21198
  interface ExternalFulfillmentProof {
@@ -21110,31 +21346,6 @@ declare namespace io.flow.internal.v0.models {
21110
21346
  readonly description?: string;
21111
21347
  }
21112
21348
 
21113
- interface FeedDeleted {
21114
- readonly discriminator: 'feed_deleted';
21115
- readonly event_id: string;
21116
- readonly timestamp: string;
21117
- readonly organization_id: string;
21118
- readonly feed: io.flow.internal.v0.models.MarketingGatewayFeed;
21119
- }
21120
-
21121
- interface FeedUpserted {
21122
- readonly discriminator: 'feed_upserted';
21123
- readonly event_id: string;
21124
- readonly timestamp: string;
21125
- readonly organization_id: string;
21126
- readonly feed: io.flow.internal.v0.models.MarketingGatewayFeed;
21127
- }
21128
-
21129
- interface FeedsExport {
21130
- readonly discriminator: 'feeds_export';
21131
- readonly event_id: string;
21132
- readonly timestamp: string;
21133
- readonly organization: string;
21134
- readonly export_id: string;
21135
- readonly feed_ids: string[];
21136
- }
21137
-
21138
21349
  interface Fees {
21139
21350
  readonly processing?: io.flow.internal.v0.models.Fee;
21140
21351
  readonly rate_lock: io.flow.internal.v0.models.Fee;
@@ -21916,6 +22127,20 @@ declare namespace io.flow.internal.v0.models {
21916
22127
  readonly transaction_created_at: string;
21917
22128
  }
21918
22129
 
22130
+ interface GeRevenueShareTransaction {
22131
+ readonly discriminator: 'ge_revenue_share_transaction';
22132
+ readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
22133
+ readonly ge_revenue_share: io.flow.internal.v0.models.Fee;
22134
+ readonly id: string;
22135
+ readonly type: io.flow.internal.v0.enums.BillingTransactionType;
22136
+ readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
22137
+ readonly posted_at?: string;
22138
+ readonly value: io.flow.common.v0.models.Price;
22139
+ readonly description: string;
22140
+ readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
22141
+ readonly created_at: string;
22142
+ }
22143
+
21919
22144
  interface GenerateLoadMultipleOrgs {
21920
22145
  readonly discriminator: 'generate_load_multiple_orgs';
21921
22146
  readonly organization_ids: string[];
@@ -22037,20 +22262,6 @@ declare namespace io.flow.internal.v0.models {
22037
22262
  readonly hs6_description?: string;
22038
22263
  }
22039
22264
 
22040
- interface HarmonizationItemClassificationDeleted {
22041
- readonly discriminator: 'harmonization_item_classification_deleted';
22042
- readonly event_id: string;
22043
- readonly timestamp: string;
22044
- readonly harmonization_item_classification: io.flow.internal.v0.models.HarmonizationItemClassification;
22045
- }
22046
-
22047
- interface HarmonizationItemClassificationUpserted {
22048
- readonly discriminator: 'harmonization_item_classification_upserted';
22049
- readonly event_id: string;
22050
- readonly timestamp: string;
22051
- readonly harmonization_item_classification: io.flow.internal.v0.models.HarmonizationItemClassification;
22052
- }
22053
-
22054
22265
  interface HarmonizationItemSummary {
22055
22266
  readonly number: string;
22056
22267
  readonly product_id?: string;
@@ -23103,22 +23314,6 @@ declare namespace io.flow.internal.v0.models {
23103
23314
  readonly source_localization_id: string;
23104
23315
  }
23105
23316
 
23106
- interface LocalizedItemDeleted {
23107
- readonly discriminator: 'localized_item_deleted';
23108
- readonly event_id: string;
23109
- readonly timestamp: string;
23110
- readonly organization: string;
23111
- readonly number: string;
23112
- }
23113
-
23114
- interface LocalizedItemDeletedV2 {
23115
- readonly discriminator: 'localized_item_deleted_v2';
23116
- readonly event_id: string;
23117
- readonly timestamp: string;
23118
- readonly organization: string;
23119
- readonly id: string;
23120
- }
23121
-
23122
23317
  interface LocalizedItemPricesExportRequest {
23123
23318
  readonly discriminator: 'localized_item_prices_export_request';
23124
23319
  readonly event_id: string;
@@ -23128,43 +23323,12 @@ declare namespace io.flow.internal.v0.models {
23128
23323
  readonly since?: string;
23129
23324
  }
23130
23325
 
23131
- interface LocalizedItemSnapshot {
23132
- readonly discriminator: 'localized_item_snapshot';
23133
- readonly event_id: string;
23134
- readonly timestamp: string;
23135
- readonly organization: string;
23136
- readonly subcatalog_id: string;
23137
- readonly url: string;
23138
- }
23139
-
23140
- interface LocalizedItemUpsertedV2 {
23141
- readonly discriminator: 'localized_item_upserted_v2';
23142
- readonly event_id: string;
23143
- readonly timestamp: string;
23144
- readonly organization: string;
23145
- readonly id: string;
23146
- readonly item: io.flow.catalog.v0.models.Item;
23147
- readonly item_schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
23148
- }
23149
-
23150
23326
  interface LocalizedItemsExportSettings {
23151
23327
  readonly content_type: io.flow.internal.v0.enums.ExportContentType;
23152
23328
  readonly full_export_schedule?: io.flow.internal.v0.unions.ExportSchedule;
23153
23329
  readonly delta_export_schedule?: io.flow.internal.v0.unions.ExportSchedule;
23154
23330
  }
23155
23331
 
23156
- interface LocalizedPriceBookItem {
23157
- readonly id: string;
23158
- readonly item_id: string;
23159
- readonly item_number: string;
23160
- readonly attributes: Record<string, string>;
23161
- readonly local?: io.flow.catalog.v0.models.Local;
23162
- readonly price_book_item_id: string;
23163
- readonly price_book_key: string;
23164
- readonly price_book_item_price: io.flow.common.v0.models.Price;
23165
- readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
23166
- }
23167
-
23168
23332
  interface LocalizedPriceBookItemData {
23169
23333
  readonly organization: io.flow.common.v0.models.OrganizationReference;
23170
23334
  readonly experience: io.flow.common.v0.models.ExperienceSummary;
@@ -23177,22 +23341,6 @@ declare namespace io.flow.internal.v0.models {
23177
23341
  readonly price_end_date?: string;
23178
23342
  }
23179
23343
 
23180
- interface LocalizedPriceBookItemDeleted {
23181
- readonly discriminator: 'localized_price_book_item_deleted';
23182
- readonly event_id: string;
23183
- readonly timestamp: string;
23184
- readonly organization: string;
23185
- readonly id: string;
23186
- }
23187
-
23188
- interface LocalizedPriceBookItemUpserted {
23189
- readonly discriminator: 'localized_price_book_item_upserted';
23190
- readonly event_id: string;
23191
- readonly timestamp: string;
23192
- readonly organization: string;
23193
- readonly item: io.flow.internal.v0.models.LocalizedPriceBookItem;
23194
- }
23195
-
23196
23344
  interface Location {
23197
23345
  readonly type: io.flow.internal.v0.enums.ContentType;
23198
23346
  readonly url: string;
@@ -23282,6 +23430,7 @@ declare namespace io.flow.internal.v0.models {
23282
23430
  readonly type: io.flow.internal.v0.enums.BillingTransactionType;
23283
23431
  readonly value: io.flow.common.v0.models.Price;
23284
23432
  readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
23433
+ readonly paid_at?: string;
23285
23434
  readonly posted_at?: string;
23286
23435
  readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
23287
23436
  readonly created_at: string;
@@ -23384,278 +23533,23 @@ declare namespace io.flow.internal.v0.models {
23384
23533
  readonly shipping: boolean;
23385
23534
  }
23386
23535
 
23387
- interface MarketingGatewayChannel {
23388
- readonly id: string;
23389
- readonly platform: io.flow.internal.v0.enums.MarketingGatewayPlatform;
23390
- readonly integration_type: io.flow.internal.v0.enums.MarketingGatewayChannelIntegrationType;
23391
- readonly status: io.flow.internal.v0.enums.MarketingGatewayChannelStatus;
23392
- readonly details?: io.flow.internal.v0.unions.MarketingGatewayChannelDetails;
23393
- readonly error?: io.flow.internal.v0.models.MarketingGatewayError;
23394
- }
23395
-
23396
- interface MarketingGatewayChannelConnectionForm {
23397
- readonly default_feed_source?: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
23536
+ interface MarketsOrder {
23537
+ readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
23538
+ readonly flow_authorization?: io.flow.payment.v0.unions.Authorization;
23398
23539
  }
23399
23540
 
23400
- interface MarketingGatewayChannelForm {
23401
- readonly platform: io.flow.internal.v0.enums.MarketingGatewayPlatform;
23402
- readonly account_id: number;
23541
+ interface MarketsOrderSummary {
23542
+ readonly id: string;
23403
23543
  }
23404
23544
 
23405
- interface MarketingGatewayChannelSourceSummary {
23406
- readonly channel: io.flow.internal.v0.enums.MarketingGatewayPlatform;
23407
- readonly platform: io.flow.internal.v0.enums.MarketingGatewayPlatform;
23408
- readonly source: io.flow.internal.v0.unions.MarketingGatewaySourceSummary;
23545
+ interface Merchant {
23546
+ readonly id: string;
23547
+ readonly account: io.flow.internal.v0.models.AccountReference;
23409
23548
  }
23410
23549
 
23411
- interface MarketingGatewayDistributionChannelFacebook {
23412
- readonly discriminator: 'marketing_gateway_distribution_channel_facebook';
23413
- readonly catalog_id: number;
23414
- }
23415
-
23416
- interface MarketingGatewayDistributionChannelGoogle {
23417
- readonly discriminator: 'marketing_gateway_distribution_channel_google';
23418
- readonly account_id: number;
23419
- }
23420
-
23421
- interface MarketingGatewayError {
23422
- readonly code: io.flow.internal.v0.enums.MarketingGatewayErrorCode;
23423
- readonly messages: string[];
23424
- }
23425
-
23426
- interface MarketingGatewayFacebookBusiness {
23427
- readonly business_id: number;
23428
- readonly name: string;
23429
- }
23430
-
23431
- interface MarketingGatewayFacebookBusinessSummary {
23432
- readonly business_id: number;
23433
- readonly name: string;
23434
- }
23435
-
23436
- interface MarketingGatewayFacebookCatalogForm {
23437
- readonly catalog_id: number;
23438
- }
23439
-
23440
- interface MarketingGatewayFacebookCatalogSummary {
23441
- readonly catalog_id: number;
23442
- readonly name: string;
23443
- readonly item_count: number;
23444
- }
23445
-
23446
- interface MarketingGatewayFacebookChannelDetails {
23447
- readonly discriminator: 'marketing_gateway_facebook_channel_details';
23448
- readonly catalog_id: number;
23449
- readonly catalog_name?: string;
23450
- readonly business_name?: string;
23451
- readonly datasources?: io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary[];
23452
- readonly localized_feed_count?: number;
23453
- readonly connected_at?: string;
23454
- readonly token_summary?: io.flow.internal.v0.models.MarketingGatewayFacebookConnectionAccessTokenSummary;
23455
- }
23456
-
23457
- interface MarketingGatewayFacebookConnection {
23458
- readonly organization_id: string;
23459
- readonly businesses: io.flow.internal.v0.models.MarketingGatewayFacebookBusinessSummary[];
23460
- }
23461
-
23462
- interface MarketingGatewayFacebookConnectionAccessTokenSummary {
23463
- readonly catalog_id?: number;
23464
- readonly created_at?: number;
23465
- readonly expires_at?: number;
23466
- readonly user_id: string;
23467
- readonly user_email?: string;
23468
- readonly token_status: io.flow.internal.v0.enums.MarketingGatewayFacebookTokenStatus;
23469
- }
23470
-
23471
- interface MarketingGatewayFacebookConnectionDeauth {
23472
- readonly user_id: number;
23473
- }
23474
-
23475
- interface MarketingGatewayFacebookConnectionForm {
23476
- readonly access_token: string;
23477
- }
23478
-
23479
- interface MarketingGatewayFacebookSourceSummary {
23480
- readonly discriminator: 'marketing_gateway_facebook_source_summary';
23481
- readonly catalog_id: number;
23482
- readonly catalog_name: string;
23483
- readonly business_name: string;
23484
- readonly country: string;
23485
- readonly product_count: number;
23486
- }
23487
-
23488
- interface MarketingGatewayFeed {
23489
- readonly id: string;
23490
- readonly organization: io.flow.common.v0.models.OrganizationSummary;
23491
- readonly experience?: io.flow.common.v0.models.ExperienceSummary;
23492
- readonly schema: io.flow.internal.v0.models.MarketingGatewaySchemaSummary;
23493
- readonly filter: io.flow.internal.v0.models.MarketingGatewayFilterSummary;
23494
- readonly country: string;
23495
- readonly currency: string;
23496
- readonly language: string;
23497
- readonly feed_source: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
23498
- readonly feed_state: io.flow.internal.v0.enums.MarketingGatewayFeedState;
23499
- readonly tsv_download_url: string;
23500
- readonly tsv_channel_download_url?: string;
23501
- readonly created_at: string;
23502
- readonly updated_at?: string;
23503
- readonly item_count?: number;
23504
- readonly platform_feed_id?: string;
23505
- }
23506
-
23507
- interface MarketingGatewayFeedExportForm {
23508
- readonly feed_ids: string[];
23509
- readonly emails: string[];
23510
- }
23511
-
23512
- interface MarketingGatewayFeedForm {
23513
- readonly schema_id: string;
23514
- readonly filter_id: string;
23515
- readonly country: string;
23516
- readonly currency: string;
23517
- readonly language: string;
23518
- readonly feed_source: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
23519
- readonly distribution_channel?: io.flow.internal.v0.unions.MarketingGatewayDistributionChannel;
23520
- }
23521
-
23522
- interface MarketingGatewayFeedFormRequest {
23523
- readonly feed_source: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
23524
- readonly channel_id?: string;
23525
- readonly schema_compatibility?: io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility;
23526
- }
23527
-
23528
- interface MarketingGatewayFeedSourceFacebook {
23529
- readonly discriminator: 'marketing_gateway_feed_source_facebook';
23530
- readonly catalog_id: number;
23531
- readonly feed_id: number;
23532
- readonly name: string;
23533
- readonly country: string;
23534
- readonly currency: string;
23535
- readonly language: string;
23536
- readonly item_count?: number;
23537
- readonly last_uploaded_at?: string;
23538
- readonly feed_status?: io.flow.internal.v0.enums.MarketingGatewayFeedState;
23539
- }
23540
-
23541
- interface MarketingGatewayFeedSourceGoogle {
23542
- readonly discriminator: 'marketing_gateway_feed_source_google';
23543
- readonly account_id: number;
23544
- readonly name: string;
23545
- readonly country: string;
23546
- readonly currency: string;
23547
- readonly language: string;
23548
- readonly item_count?: number;
23549
- readonly last_uploaded_at?: string;
23550
- }
23551
-
23552
- interface MarketingGatewayFilterSummary {
23553
- readonly id: string;
23554
- readonly name: string;
23555
- }
23556
-
23557
- interface MarketingGatewayFlowSourceSummary {
23558
- readonly discriminator: 'marketing_gateway_flow_source_summary';
23559
- readonly item_count: number;
23560
- }
23561
-
23562
- interface MarketingGatewayGoogleAccountForm {
23563
- readonly account_id: number;
23564
- }
23565
-
23566
- interface MarketingGatewayGoogleAccountSummary {
23567
- readonly account_id: number;
23568
- readonly id?: string;
23569
- readonly name: string;
23570
- readonly website_url: string;
23571
- readonly domestic_feeds_count: number;
23572
- }
23573
-
23574
- interface MarketingGatewayGoogleChannelDetails {
23575
- readonly discriminator: 'marketing_gateway_google_channel_details';
23576
- readonly account_id: number;
23577
- readonly account_name?: string;
23578
- readonly datasources?: io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary[];
23579
- readonly localized_feed_count?: number;
23580
- readonly connected_at?: string;
23581
- }
23582
-
23583
- interface MarketingGatewayGoogleConnection {
23584
- readonly status: io.flow.internal.v0.enums.MarketingGatewayAccountConnectionStatus;
23585
- readonly accounts?: io.flow.internal.v0.models.MarketingGatewayGoogleAccountSummary[];
23586
- }
23587
-
23588
- interface MarketingGatewayGoogleConnectionForm {
23589
- readonly access_token: string;
23590
- readonly refresh_token: string;
23591
- }
23592
-
23593
- interface MarketingGatewayGoogleItem {
23594
- readonly discriminator: 'marketing_gateway_google_item';
23595
- readonly id: string;
23596
- readonly title?: string;
23597
- readonly image_link?: string;
23598
- readonly brand?: string;
23599
- readonly google_product_category?: string;
23600
- readonly link?: string;
23601
- readonly price?: string;
23602
- readonly sale_price?: string;
23603
- readonly shipping_price?: string;
23604
- }
23605
-
23606
- interface MarketingGatewayGoogleSourceSummary {
23607
- readonly discriminator: 'marketing_gateway_google_source_summary';
23608
- readonly account_id: number;
23609
- readonly countries: string[];
23610
- readonly product_count: number;
23611
- }
23612
-
23613
- interface MarketingGatewayLocalizedItem {
23614
- readonly source: io.flow.internal.v0.unions.MarketingGatewayItem;
23615
- readonly localized: io.flow.internal.v0.unions.MarketingGatewayItem;
23616
- }
23617
-
23618
- interface MarketingGatewayNewChannelRequestForm {
23619
- readonly requested_by_user_id: string;
23620
- readonly channel_name: string;
23621
- }
23622
-
23623
- interface MarketingGatewayProductDatasourceSummary {
23624
- readonly name: string;
23625
- readonly country?: string;
23626
- readonly product_count?: number;
23627
- }
23628
-
23629
- interface MarketingGatewaySchemaSummary {
23630
- readonly id: string;
23631
- readonly name: string;
23632
- readonly schema_compatibility: io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility;
23633
- }
23634
-
23635
- interface MarketingGatewaySupportedChannelDetails {
23636
- readonly discriminator: 'marketing_gateway_supported_channel_details';
23637
- readonly datasources?: io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary[];
23638
- readonly localized_feed_count?: number;
23639
- readonly connected_at?: string;
23640
- }
23641
-
23642
- interface MarketsOrder {
23643
- readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
23644
- readonly flow_authorization?: io.flow.payment.v0.unions.Authorization;
23645
- }
23646
-
23647
- interface MarketsOrderSummary {
23648
- readonly id: string;
23649
- }
23650
-
23651
- interface Merchant {
23652
- readonly id: string;
23653
- readonly account: io.flow.internal.v0.models.AccountReference;
23654
- }
23655
-
23656
- interface MerchantApplicationSummaries {
23657
- readonly summaries: io.flow.internal.v0.models.MerchantApplicationSummary[];
23658
- readonly total: number;
23550
+ interface MerchantApplicationSummaries {
23551
+ readonly summaries: io.flow.internal.v0.models.MerchantApplicationSummary[];
23552
+ readonly total: number;
23659
23553
  }
23660
23554
 
23661
23555
  interface MerchantApplicationSummary {
@@ -23831,6 +23725,20 @@ declare namespace io.flow.internal.v0.models {
23831
23725
  readonly account: io.flow.internal.v0.models.ReportAccount;
23832
23726
  }
23833
23727
 
23728
+ interface NonL4LTaxDutyFxTransaction {
23729
+ readonly discriminator: 'non_l4l_tax_duty_fx_transaction';
23730
+ readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
23731
+ readonly fx: io.flow.internal.v0.models.Fee;
23732
+ readonly id: string;
23733
+ readonly type: io.flow.internal.v0.enums.BillingTransactionType;
23734
+ readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
23735
+ readonly posted_at?: string;
23736
+ readonly value: io.flow.common.v0.models.Price;
23737
+ readonly description: string;
23738
+ readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
23739
+ readonly created_at: string;
23740
+ }
23741
+
23834
23742
  interface Notification {
23835
23743
  readonly order: io.flow.internal.v0.models.Decision;
23836
23744
  }
@@ -25061,6 +24969,17 @@ declare namespace io.flow.internal.v0.models {
25061
24969
  readonly merchant: io.flow.internal.v0.unions.ProcessorMerchant;
25062
24970
  }
25063
24971
 
24972
+ interface PaymentShortUrl {
24973
+ readonly id: string;
24974
+ readonly key: string;
24975
+ readonly original_url: string;
24976
+ readonly organization_id: string;
24977
+ readonly discriminator: io.flow.internal.v0.enums.PaymentShortUrlDiscriminator;
24978
+ readonly created_at: string;
24979
+ readonly updated_at: string;
24980
+ readonly expires_at: string;
24981
+ }
24982
+
25064
24983
  interface PaymentSummary {
25065
24984
  readonly psp: number;
25066
24985
  readonly credit: number;
@@ -26716,6 +26635,42 @@ declare namespace io.flow.internal.v0.models {
26716
26635
  readonly product_id: string;
26717
26636
  }
26718
26637
 
26638
+ interface RestrictionRuleDeleted {
26639
+ readonly discriminator: 'restriction_rule_deleted';
26640
+ readonly event_id: string;
26641
+ readonly timestamp: string;
26642
+ readonly id: string;
26643
+ }
26644
+
26645
+ interface RestrictionRuleEffect {
26646
+ readonly id: string;
26647
+ readonly rule_id: string;
26648
+ readonly effect: io.flow.sellability.v0.enums.RuleEffectType;
26649
+ readonly regions: string[];
26650
+ readonly description?: string;
26651
+ }
26652
+
26653
+ interface RestrictionRuleEffectDeleted {
26654
+ readonly discriminator: 'restriction_rule_effect_deleted';
26655
+ readonly event_id: string;
26656
+ readonly timestamp: string;
26657
+ readonly id: string;
26658
+ }
26659
+
26660
+ interface RestrictionRuleEffectForm {
26661
+ readonly rule_id: string;
26662
+ readonly effect: io.flow.sellability.v0.enums.RuleEffectType;
26663
+ readonly regions: string[];
26664
+ readonly description?: string;
26665
+ }
26666
+
26667
+ interface RestrictionRuleEffectUpserted {
26668
+ readonly discriminator: 'restriction_rule_effect_upserted';
26669
+ readonly event_id: string;
26670
+ readonly timestamp: string;
26671
+ readonly restriction_rule_effect: io.flow.internal.v0.models.RestrictionRuleEffect;
26672
+ }
26673
+
26719
26674
  interface RestrictionRuleForm {
26720
26675
  readonly name: string;
26721
26676
  readonly description: string;
@@ -26746,6 +26701,13 @@ declare namespace io.flow.internal.v0.models {
26746
26701
  readonly description: string;
26747
26702
  }
26748
26703
 
26704
+ interface RestrictionRuleUpserted {
26705
+ readonly discriminator: 'restriction_rule_upserted';
26706
+ readonly event_id: string;
26707
+ readonly timestamp: string;
26708
+ readonly restriction_rule: io.flow.internal.v0.models.RestrictionRule;
26709
+ }
26710
+
26749
26711
  interface RestrictionStatusMetadata {
26750
26712
  readonly status: io.flow.internal.v0.enums.RestrictionStatus;
26751
26713
  readonly count: number;
@@ -27222,6 +27184,69 @@ declare namespace io.flow.internal.v0.models {
27222
27184
  readonly data: io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
27223
27185
  }
27224
27186
 
27187
+ interface ShopifyInventoryItemCreateDeleted {
27188
+ readonly discriminator: 'shopify_inventory_item_create_deleted';
27189
+ readonly event_id: string;
27190
+ readonly timestamp: string;
27191
+ readonly organization: string;
27192
+ readonly id: string;
27193
+ }
27194
+
27195
+ interface ShopifyInventoryItemCreateUpserted {
27196
+ readonly discriminator: 'shopify_inventory_item_create_upserted';
27197
+ readonly event_id: string;
27198
+ readonly timestamp: string;
27199
+ readonly organization: string;
27200
+ readonly shopify_inventory_item_create: io.flow.internal.v0.models.ShopifyInventoryItemCreateWebhookEvent;
27201
+ }
27202
+
27203
+ interface ShopifyInventoryItemCreateWebhookEvent {
27204
+ readonly id: string;
27205
+ readonly inventory_item: io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
27206
+ }
27207
+
27208
+ interface ShopifyInventoryItemDeleteDeleted {
27209
+ readonly discriminator: 'shopify_inventory_item_delete_deleted';
27210
+ readonly event_id: string;
27211
+ readonly timestamp: string;
27212
+ readonly organization: string;
27213
+ readonly id: string;
27214
+ }
27215
+
27216
+ interface ShopifyInventoryItemDeleteUpserted {
27217
+ readonly discriminator: 'shopify_inventory_item_delete_upserted';
27218
+ readonly event_id: string;
27219
+ readonly timestamp: string;
27220
+ readonly organization: string;
27221
+ readonly shopify_inventory_item_delete: io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
27222
+ }
27223
+
27224
+ interface ShopifyInventoryItemDeleteWebhookEvent {
27225
+ readonly id: string;
27226
+ readonly inventory_item_delete: io.flow.shopify.external.v0.models.ShopifyInventoryItemDelete;
27227
+ }
27228
+
27229
+ interface ShopifyInventoryItemUpdateDeleted {
27230
+ readonly discriminator: 'shopify_inventory_item_update_deleted';
27231
+ readonly event_id: string;
27232
+ readonly timestamp: string;
27233
+ readonly organization: string;
27234
+ readonly id: string;
27235
+ }
27236
+
27237
+ interface ShopifyInventoryItemUpdateUpserted {
27238
+ readonly discriminator: 'shopify_inventory_item_update_upserted';
27239
+ readonly event_id: string;
27240
+ readonly timestamp: string;
27241
+ readonly organization: string;
27242
+ readonly shopify_inventory_item_update: io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
27243
+ }
27244
+
27245
+ interface ShopifyInventoryItemUpdateWebhookEvent {
27246
+ readonly id: string;
27247
+ readonly inventory_item: io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
27248
+ }
27249
+
27225
27250
  interface ShopifyMarketsBestSellingProduct {
27226
27251
  readonly id: string;
27227
27252
  }
@@ -27626,6 +27651,71 @@ declare namespace io.flow.internal.v0.models {
27626
27651
  readonly shopify_product_bundle: io.flow.internal.v0.models.ShopifyProductBundle;
27627
27652
  }
27628
27653
 
27654
+ interface ShopifyProductCreateDeleted {
27655
+ readonly discriminator: 'shopify_product_create_deleted';
27656
+ readonly event_id: string;
27657
+ readonly timestamp: string;
27658
+ readonly organization: string;
27659
+ readonly id: string;
27660
+ }
27661
+
27662
+ interface ShopifyProductCreateUpserted {
27663
+ readonly discriminator: 'shopify_product_create_upserted';
27664
+ readonly event_id: string;
27665
+ readonly timestamp: string;
27666
+ readonly organization: string;
27667
+ readonly shopify_product_create: io.flow.internal.v0.models.ShopifyProductCreateWebhookEvent;
27668
+ }
27669
+
27670
+ interface ShopifyProductCreateWebhookEvent {
27671
+ readonly id: string;
27672
+ readonly product: io.flow.shopify.external.v0.models.Product;
27673
+ }
27674
+
27675
+ interface ShopifyProductDeleteDeleted {
27676
+ readonly discriminator: 'shopify_product_delete_deleted';
27677
+ readonly event_id: string;
27678
+ readonly timestamp: string;
27679
+ readonly organization: string;
27680
+ readonly id: string;
27681
+ }
27682
+
27683
+ interface ShopifyProductDeleteUpserted {
27684
+ readonly discriminator: 'shopify_product_delete_upserted';
27685
+ readonly event_id: string;
27686
+ readonly timestamp: string;
27687
+ readonly organization: string;
27688
+ readonly shopify_product_delete: io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
27689
+ }
27690
+
27691
+ interface ShopifyProductDeleteWebhookEvent {
27692
+ readonly id: string;
27693
+ readonly product_delete: io.flow.shopify.external.v0.models.ProductDelete;
27694
+ }
27695
+
27696
+ interface ShopifyProductUpdateDeleted {
27697
+ readonly discriminator: 'shopify_product_update_deleted';
27698
+ readonly event_id: string;
27699
+ readonly timestamp: string;
27700
+ readonly organization: string;
27701
+ readonly id: string;
27702
+ }
27703
+
27704
+ interface ShopifyProductUpdateUpserted {
27705
+ readonly discriminator: 'shopify_product_update_upserted';
27706
+ readonly event_id: string;
27707
+ readonly timestamp: string;
27708
+ readonly organization: string;
27709
+ readonly shopify_product_update: io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
27710
+ }
27711
+
27712
+ interface ShopifyProductUpdateWebhookEvent {
27713
+ readonly id: string;
27714
+ readonly product: io.flow.shopify.external.v0.models.Product;
27715
+ readonly domain: string;
27716
+ readonly api_version: string;
27717
+ }
27718
+
27629
27719
  interface ShopifyProductWrapper {
27630
27720
  readonly shopify_product: io.flow.shopify.external.v0.models.Product;
27631
27721
  readonly deleted_at?: string;
@@ -27748,6 +27838,11 @@ declare namespace io.flow.internal.v0.models {
27748
27838
  readonly shop_id: string;
27749
27839
  }
27750
27840
 
27841
+ interface ShopifyStripeEvent {
27842
+ readonly id: string;
27843
+ readonly request?: any /*object*/;
27844
+ }
27845
+
27751
27846
  interface ShopifyWebhook {
27752
27847
  readonly id: string;
27753
27848
  readonly shop_id: string;
@@ -28298,14 +28393,6 @@ declare namespace io.flow.internal.v0.models {
28298
28393
  readonly duties: Record<string, io.flow.internal.v0.models.Duties>;
28299
28394
  }
28300
28395
 
28301
- interface TariffCodesExport {
28302
- readonly discriminator: 'tariff_codes_export';
28303
- readonly event_id: string;
28304
- readonly timestamp: string;
28305
- readonly organization: string;
28306
- readonly export_id: string;
28307
- }
28308
-
28309
28396
  interface TariffEligibility {
28310
28397
  readonly id: string;
28311
28398
  readonly data: io.flow.internal.v0.unions.TariffEligibilityData;
@@ -28404,6 +28491,40 @@ declare namespace io.flow.internal.v0.models {
28404
28491
  readonly category_code?: string;
28405
28492
  }
28406
28493
 
28494
+ interface TaxDutyDeltaMetadataActual {
28495
+ readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
28496
+ }
28497
+
28498
+ interface TaxDutyDeltaMetadataActualProcessing {
28499
+ readonly capture: io.flow.common.v0.models.Money;
28500
+ readonly fees: io.flow.common.v0.models.Money;
28501
+ readonly transfer: io.flow.common.v0.models.Money;
28502
+ readonly total: io.flow.common.v0.models.Money;
28503
+ }
28504
+
28505
+ interface TaxDutyDeltaMetadataExpected {
28506
+ readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
28507
+ }
28508
+
28509
+ interface TaxDutyDeltaMetadataExpectedProcessing {
28510
+ readonly tax: io.flow.common.v0.models.Money;
28511
+ readonly duty: io.flow.common.v0.models.Money;
28512
+ readonly total: io.flow.common.v0.models.Money;
28513
+ }
28514
+
28515
+ interface TaxDutyDeltaTransaction {
28516
+ readonly discriminator: 'tax_duty_delta_transaction';
28517
+ readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
28518
+ readonly id: string;
28519
+ readonly type: io.flow.internal.v0.enums.BillingTransactionType;
28520
+ readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
28521
+ readonly posted_at?: string;
28522
+ readonly value: io.flow.common.v0.models.Price;
28523
+ readonly description: string;
28524
+ readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
28525
+ readonly created_at: string;
28526
+ }
28527
+
28407
28528
  interface TaxRemittanceTransaction {
28408
28529
  readonly discriminator: 'tax_remittance_transaction';
28409
28530
  readonly order: io.flow.internal.v0.models.BillingOrderSummary;
@@ -29221,8 +29342,6 @@ declare namespace io.flow.internal.v0.unions {
29221
29342
  | io.flow.internal.v0.models.AdyenRefundUpserted
29222
29343
  | io.flow.internal.v0.models.AdyenDisputeUpserted
29223
29344
  | io.flow.internal.v0.models.AdyenDisputeDeleted
29224
- | io.flow.internal.v0.models.AldoItemUpserted
29225
- | io.flow.internal.v0.models.AldoItemDeleted
29226
29345
  | io.flow.internal.v0.models.FulfillmentUpserted
29227
29346
  | io.flow.internal.v0.models.FulfillmentDeleted
29228
29347
  | io.flow.internal.v0.models.MerchantUpserted
@@ -29387,7 +29506,6 @@ declare namespace io.flow.internal.v0.unions {
29387
29506
  | io.flow.internal.v0.models.HarmonizedItemsHs6Export
29388
29507
  | io.flow.internal.v0.models.UnharmonizedItemsExport
29389
29508
  | io.flow.internal.v0.models.DutiedItemsExport
29390
- | io.flow.internal.v0.models.TariffCodesExport
29391
29509
  | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport
29392
29510
  | io.flow.internal.v0.models.HarmonizationCodesImport
29393
29511
  | io.flow.internal.v0.models.ItemClassificationCreated
@@ -29404,8 +29522,6 @@ declare namespace io.flow.internal.v0.unions {
29404
29522
  | io.flow.internal.v0.models.RateFreshnessSummaryDeleted
29405
29523
  | io.flow.internal.v0.models.ItemHarmonizationUpserted
29406
29524
  | io.flow.internal.v0.models.ItemHarmonizationDeleted
29407
- | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted
29408
- | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted
29409
29525
  | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished
29410
29526
  | io.flow.internal.v0.models.IssuerUpserted
29411
29527
  | io.flow.internal.v0.models.IssuerDeleted
@@ -29418,17 +29534,8 @@ declare namespace io.flow.internal.v0.unions {
29418
29534
  | io.flow.internal.v0.models.OrderValidationDeleted
29419
29535
  | io.flow.internal.v0.models.LabelTrackingSummaryUpserted
29420
29536
  | io.flow.internal.v0.models.LabelTrackingSummaryDeleted
29421
- | io.flow.internal.v0.models.LocalizedItemUpsertedV2
29422
- | io.flow.internal.v0.models.LocalizedItemDeleted
29423
- | io.flow.internal.v0.models.LocalizedItemDeletedV2
29424
- | io.flow.internal.v0.models.LocalizedItemSnapshot
29425
- | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted
29426
- | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted
29427
29537
  | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted
29428
29538
  | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted
29429
- | io.flow.internal.v0.models.FeedUpserted
29430
- | io.flow.internal.v0.models.FeedDeleted
29431
- | io.flow.internal.v0.models.FeedsExport
29432
29539
  | io.flow.internal.v0.models.LocalizedItemPricesExportRequest
29433
29540
  | io.flow.internal.v0.models.OptinPromptUpserted
29434
29541
  | io.flow.internal.v0.models.OptinPromptDeleted
@@ -29513,6 +29620,10 @@ declare namespace io.flow.internal.v0.unions {
29513
29620
  | io.flow.internal.v0.models.ScreeningStatusChangeDeleted
29514
29621
  | io.flow.internal.v0.models.RestrictionsDailyopsUpserted
29515
29622
  | io.flow.internal.v0.models.RestrictionsDailyopsDeleted
29623
+ | io.flow.internal.v0.models.RestrictionRuleUpserted
29624
+ | io.flow.internal.v0.models.RestrictionRuleDeleted
29625
+ | io.flow.internal.v0.models.RestrictionRuleEffectUpserted
29626
+ | io.flow.internal.v0.models.RestrictionRuleEffectDeleted
29516
29627
  | io.flow.internal.v0.models.ShopifyShopUpserted
29517
29628
  | io.flow.internal.v0.models.ShopifyShopDeleted
29518
29629
  | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted
@@ -29538,6 +29649,18 @@ declare namespace io.flow.internal.v0.unions {
29538
29649
  | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished
29539
29650
  | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted
29540
29651
  | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted
29652
+ | io.flow.internal.v0.models.ShopifyProductCreateUpserted
29653
+ | io.flow.internal.v0.models.ShopifyProductCreateDeleted
29654
+ | io.flow.internal.v0.models.ShopifyProductUpdateUpserted
29655
+ | io.flow.internal.v0.models.ShopifyProductUpdateDeleted
29656
+ | io.flow.internal.v0.models.ShopifyProductDeleteUpserted
29657
+ | io.flow.internal.v0.models.ShopifyProductDeleteDeleted
29658
+ | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted
29659
+ | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted
29660
+ | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted
29661
+ | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted
29662
+ | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted
29663
+ | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted
29541
29664
  | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
29542
29665
  | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
29543
29666
  | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
@@ -29643,22 +29766,6 @@ declare namespace io.flow.internal.v0.unions {
29643
29766
  type LocalizableContent =
29644
29767
  | io.flow.internal.v0.models.LocalizableContentReference
29645
29768
  | io.flow.internal.v0.models.Localization;
29646
- type MarketingGatewayChannelDetails =
29647
- | io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails
29648
- | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails
29649
- | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
29650
- type MarketingGatewayDistributionChannel =
29651
- | io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle
29652
- | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook;
29653
- type MarketingGatewayFeedSource =
29654
- | io.flow.internal.v0.models.MarketingGatewayFeedSourceGoogle
29655
- | io.flow.internal.v0.models.MarketingGatewayFeedSourceFacebook;
29656
- type MarketingGatewayItem =
29657
- io.flow.internal.v0.models.MarketingGatewayGoogleItem;
29658
- type MarketingGatewaySourceSummary =
29659
- | io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary
29660
- | io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary
29661
- | io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
29662
29769
  type OptinPromptDisplay =
29663
29770
  io.flow.internal.v0.models.OptinPromptCheckoutDisplay;
29664
29771
  type OrderActionForm =
@@ -29788,7 +29895,10 @@ declare namespace io.flow.internal.v0.unions {
29788
29895
  | io.flow.internal.v0.models.TaxTransaction
29789
29896
  | io.flow.internal.v0.models.DutyTransaction
29790
29897
  | io.flow.internal.v0.models.TrueupTransaction
29791
- | io.flow.internal.v0.models.CarrierChargeTransaction;
29898
+ | io.flow.internal.v0.models.CarrierChargeTransaction
29899
+ | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction
29900
+ | io.flow.internal.v0.models.GeRevenueShareTransaction
29901
+ | io.flow.internal.v0.models.TaxDutyDeltaTransaction;
29792
29902
  type TransactionSummary =
29793
29903
  | io.flow.internal.v0.models.PaymentSummaryV2
29794
29904
  | io.flow.internal.v0.models.FraudSummary;
@@ -29964,10 +30074,8 @@ export type AfterpayRefundUpserted =
29964
30074
  io.flow.internal.v0.models.AfterpayRefundUpserted;
29965
30075
  export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
29966
30076
  export type AldoItem = io.flow.internal.v0.models.AldoItem;
29967
- export type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
29968
30077
  export type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
29969
30078
  export type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
29970
- export type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
29971
30079
  export type AlertErrorSummary = io.flow.internal.v0.models.AlertErrorSummary;
29972
30080
  export type AlertFailureSummary =
29973
30081
  io.flow.internal.v0.models.AlertFailureSummary;
@@ -29982,6 +30090,9 @@ export type AllOrganizationsMembership =
29982
30090
  export type AllocationItemReference =
29983
30091
  io.flow.internal.v0.models.AllocationItemReference;
29984
30092
  export type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
30093
+ export type AnshItem = io.flow.internal.v0.models.AnshItem;
30094
+ export type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
30095
+ export type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
29985
30096
  export type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
29986
30097
  export type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
29987
30098
  export type ApmContent = io.flow.internal.v0.models.ApmContent;
@@ -30854,9 +30965,6 @@ export type FeatureValueResult = io.flow.internal.v0.models.FeatureValueResult;
30854
30965
  export type Fedex = io.flow.internal.v0.models.Fedex;
30855
30966
  export type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
30856
30967
  export type Fee = io.flow.internal.v0.models.Fee;
30857
- export type FeedDeleted = io.flow.internal.v0.models.FeedDeleted;
30858
- export type FeedUpserted = io.flow.internal.v0.models.FeedUpserted;
30859
- export type FeedsExport = io.flow.internal.v0.models.FeedsExport;
30860
30968
  export type Fees = io.flow.internal.v0.models.Fees;
30861
30969
  export type FeesSource = io.flow.internal.v0.enums.FeesSource;
30862
30970
  export type FinalEstimate = io.flow.internal.v0.models.FinalEstimate;
@@ -31041,6 +31149,8 @@ export type FxRevenueRecognitionRate =
31041
31149
  io.flow.internal.v0.models.FxRevenueRecognitionRate;
31042
31150
  export type FxRevenueRecognitionSource =
31043
31151
  io.flow.internal.v0.models.FxRevenueRecognitionSource;
31152
+ export type GeRevenueShareTransaction =
31153
+ io.flow.internal.v0.models.GeRevenueShareTransaction;
31044
31154
  export type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
31045
31155
  export type GenerateLoadMultipleOrgs =
31046
31156
  io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
@@ -31078,10 +31188,6 @@ export type HarmonizationDecisionSource =
31078
31188
  io.flow.internal.v0.enums.HarmonizationDecisionSource;
31079
31189
  export type HarmonizationItemClassification =
31080
31190
  io.flow.internal.v0.models.HarmonizationItemClassification;
31081
- export type HarmonizationItemClassificationDeleted =
31082
- io.flow.internal.v0.models.HarmonizationItemClassificationDeleted;
31083
- export type HarmonizationItemClassificationUpserted =
31084
- io.flow.internal.v0.models.HarmonizationItemClassificationUpserted;
31085
31191
  export type HarmonizationItemSummary =
31086
31192
  io.flow.internal.v0.models.HarmonizationItemSummary;
31087
31193
  export type HarmonizationMlModelSummary =
@@ -31246,6 +31352,8 @@ export type LabelCreationRequestForm =
31246
31352
  io.flow.internal.v0.models.LabelCreationRequestForm;
31247
31353
  export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
31248
31354
  export type LabelDestination = io.flow.internal.v0.models.LabelDestination;
31355
+ export type LabelEventMedium = io.flow.internal.v0.enums.LabelEventMedium;
31356
+ export type LabelEventSource = io.flow.internal.v0.enums.LabelEventSource;
31249
31357
  export type LabelGenerationSettings =
31250
31358
  io.flow.internal.v0.models.LabelGenerationSettings;
31251
31359
  export type LabelGenerationSettingsDeleted =
@@ -31328,26 +31436,12 @@ export type LocalizedContentForm =
31328
31436
  io.flow.internal.v0.models.LocalizedContentForm;
31329
31437
  export type LocalizedContentUpserted =
31330
31438
  io.flow.internal.v0.models.LocalizedContentUpserted;
31331
- export type LocalizedItemDeleted =
31332
- io.flow.internal.v0.models.LocalizedItemDeleted;
31333
- export type LocalizedItemDeletedV2 =
31334
- io.flow.internal.v0.models.LocalizedItemDeletedV2;
31335
31439
  export type LocalizedItemPricesExportRequest =
31336
31440
  io.flow.internal.v0.models.LocalizedItemPricesExportRequest;
31337
- export type LocalizedItemSnapshot =
31338
- io.flow.internal.v0.models.LocalizedItemSnapshot;
31339
- export type LocalizedItemUpsertedV2 =
31340
- io.flow.internal.v0.models.LocalizedItemUpsertedV2;
31341
31441
  export type LocalizedItemsExportSettings =
31342
31442
  io.flow.internal.v0.models.LocalizedItemsExportSettings;
31343
- export type LocalizedPriceBookItem =
31344
- io.flow.internal.v0.models.LocalizedPriceBookItem;
31345
31443
  export type LocalizedPriceBookItemData =
31346
31444
  io.flow.internal.v0.models.LocalizedPriceBookItemData;
31347
- export type LocalizedPriceBookItemDeleted =
31348
- io.flow.internal.v0.models.LocalizedPriceBookItemDeleted;
31349
- export type LocalizedPriceBookItemUpserted =
31350
- io.flow.internal.v0.models.LocalizedPriceBookItemUpserted;
31351
31445
  export type Location = io.flow.internal.v0.models.Location;
31352
31446
  export type LogisticsCapabilities =
31353
31447
  io.flow.internal.v0.models.LogisticsCapabilities;
@@ -31400,110 +31494,6 @@ export type ManualTransactionForm =
31400
31494
  export type ManualTransactionFormOrder =
31401
31495
  io.flow.internal.v0.models.ManualTransactionFormOrder;
31402
31496
  export type MarkedAsFinal = io.flow.internal.v0.models.MarkedAsFinal;
31403
- export type MarketingGatewayAccountConnectionStatus =
31404
- io.flow.internal.v0.enums.MarketingGatewayAccountConnectionStatus;
31405
- export type MarketingGatewayChannel =
31406
- io.flow.internal.v0.models.MarketingGatewayChannel;
31407
- export type MarketingGatewayChannelConnectionForm =
31408
- io.flow.internal.v0.models.MarketingGatewayChannelConnectionForm;
31409
- export type MarketingGatewayChannelDetails =
31410
- io.flow.internal.v0.unions.MarketingGatewayChannelDetails;
31411
- export type MarketingGatewayChannelForm =
31412
- io.flow.internal.v0.models.MarketingGatewayChannelForm;
31413
- export type MarketingGatewayChannelIntegrationType =
31414
- io.flow.internal.v0.enums.MarketingGatewayChannelIntegrationType;
31415
- export type MarketingGatewayChannelSourceSummary =
31416
- io.flow.internal.v0.models.MarketingGatewayChannelSourceSummary;
31417
- export type MarketingGatewayChannelStatus =
31418
- io.flow.internal.v0.enums.MarketingGatewayChannelStatus;
31419
- export type MarketingGatewayDistributionChannel =
31420
- io.flow.internal.v0.unions.MarketingGatewayDistributionChannel;
31421
- export type MarketingGatewayDistributionChannelFacebook =
31422
- io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook;
31423
- export type MarketingGatewayDistributionChannelGoogle =
31424
- io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle;
31425
- export type MarketingGatewayError =
31426
- io.flow.internal.v0.models.MarketingGatewayError;
31427
- export type MarketingGatewayErrorCode =
31428
- io.flow.internal.v0.enums.MarketingGatewayErrorCode;
31429
- export type MarketingGatewayFacebookBusiness =
31430
- io.flow.internal.v0.models.MarketingGatewayFacebookBusiness;
31431
- export type MarketingGatewayFacebookBusinessSummary =
31432
- io.flow.internal.v0.models.MarketingGatewayFacebookBusinessSummary;
31433
- export type MarketingGatewayFacebookCatalogForm =
31434
- io.flow.internal.v0.models.MarketingGatewayFacebookCatalogForm;
31435
- export type MarketingGatewayFacebookCatalogSummary =
31436
- io.flow.internal.v0.models.MarketingGatewayFacebookCatalogSummary;
31437
- export type MarketingGatewayFacebookChannelDetails =
31438
- io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails;
31439
- export type MarketingGatewayFacebookConnection =
31440
- io.flow.internal.v0.models.MarketingGatewayFacebookConnection;
31441
- export type MarketingGatewayFacebookConnectionAccessTokenSummary =
31442
- io.flow.internal.v0.models.MarketingGatewayFacebookConnectionAccessTokenSummary;
31443
- export type MarketingGatewayFacebookConnectionDeauth =
31444
- io.flow.internal.v0.models.MarketingGatewayFacebookConnectionDeauth;
31445
- export type MarketingGatewayFacebookConnectionForm =
31446
- io.flow.internal.v0.models.MarketingGatewayFacebookConnectionForm;
31447
- export type MarketingGatewayFacebookSourceSummary =
31448
- io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary;
31449
- export type MarketingGatewayFacebookTokenStatus =
31450
- io.flow.internal.v0.enums.MarketingGatewayFacebookTokenStatus;
31451
- export type MarketingGatewayFeed =
31452
- io.flow.internal.v0.models.MarketingGatewayFeed;
31453
- export type MarketingGatewayFeedDownloadFormat =
31454
- io.flow.internal.v0.enums.MarketingGatewayFeedDownloadFormat;
31455
- export type MarketingGatewayFeedExportForm =
31456
- io.flow.internal.v0.models.MarketingGatewayFeedExportForm;
31457
- export type MarketingGatewayFeedForm =
31458
- io.flow.internal.v0.models.MarketingGatewayFeedForm;
31459
- export type MarketingGatewayFeedFormRequest =
31460
- io.flow.internal.v0.models.MarketingGatewayFeedFormRequest;
31461
- export type MarketingGatewayFeedSource =
31462
- io.flow.internal.v0.unions.MarketingGatewayFeedSource;
31463
- export type MarketingGatewayFeedSourceFacebook =
31464
- io.flow.internal.v0.models.MarketingGatewayFeedSourceFacebook;
31465
- export type MarketingGatewayFeedSourceGoogle =
31466
- io.flow.internal.v0.models.MarketingGatewayFeedSourceGoogle;
31467
- export type MarketingGatewayFeedState =
31468
- io.flow.internal.v0.enums.MarketingGatewayFeedState;
31469
- export type MarketingGatewayFilterSummary =
31470
- io.flow.internal.v0.models.MarketingGatewayFilterSummary;
31471
- export type MarketingGatewayFlowSourceSummary =
31472
- io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
31473
- export type MarketingGatewayGoogleAccountForm =
31474
- io.flow.internal.v0.models.MarketingGatewayGoogleAccountForm;
31475
- export type MarketingGatewayGoogleAccountSummary =
31476
- io.flow.internal.v0.models.MarketingGatewayGoogleAccountSummary;
31477
- export type MarketingGatewayGoogleChannelDetails =
31478
- io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails;
31479
- export type MarketingGatewayGoogleConnection =
31480
- io.flow.internal.v0.models.MarketingGatewayGoogleConnection;
31481
- export type MarketingGatewayGoogleConnectionForm =
31482
- io.flow.internal.v0.models.MarketingGatewayGoogleConnectionForm;
31483
- export type MarketingGatewayGoogleItem =
31484
- io.flow.internal.v0.models.MarketingGatewayGoogleItem;
31485
- export type MarketingGatewayGoogleSourceSummary =
31486
- io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary;
31487
- export type MarketingGatewayItem =
31488
- io.flow.internal.v0.unions.MarketingGatewayItem;
31489
- export type MarketingGatewayLocalizedItem =
31490
- io.flow.internal.v0.models.MarketingGatewayLocalizedItem;
31491
- export type MarketingGatewayNewChannelRequestForm =
31492
- io.flow.internal.v0.models.MarketingGatewayNewChannelRequestForm;
31493
- export type MarketingGatewayPlatform =
31494
- io.flow.internal.v0.enums.MarketingGatewayPlatform;
31495
- export type MarketingGatewayProductDatasourceSummary =
31496
- io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary;
31497
- export type MarketingGatewayProductStatus =
31498
- io.flow.internal.v0.enums.MarketingGatewayProductStatus;
31499
- export type MarketingGatewaySchemaCompatibility =
31500
- io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility;
31501
- export type MarketingGatewaySchemaSummary =
31502
- io.flow.internal.v0.models.MarketingGatewaySchemaSummary;
31503
- export type MarketingGatewaySourceSummary =
31504
- io.flow.internal.v0.unions.MarketingGatewaySourceSummary;
31505
- export type MarketingGatewaySupportedChannelDetails =
31506
- io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
31507
31497
  export type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
31508
31498
  export type MarketsOrderSummary =
31509
31499
  io.flow.internal.v0.models.MarketsOrderSummary;
@@ -31554,6 +31544,8 @@ export type NoLiabilityReasonCode =
31554
31544
  io.flow.internal.v0.enums.NoLiabilityReasonCode;
31555
31545
  export type NonChannelPaymentBankAccount =
31556
31546
  io.flow.internal.v0.models.NonChannelPaymentBankAccount;
31547
+ export type NonL4LTaxDutyFxTransaction =
31548
+ io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
31557
31549
  export type Notification = io.flow.internal.v0.models.Notification;
31558
31550
  export type OnboardingAuditMessage =
31559
31551
  io.flow.internal.v0.models.OnboardingAuditMessage;
@@ -31896,6 +31888,9 @@ export type PaymentProcessorMerchantDeleted =
31896
31888
  export type PaymentProcessorMerchantUpserted =
31897
31889
  io.flow.internal.v0.models.PaymentProcessorMerchantUpserted;
31898
31890
  export type PaymentRedirect = io.flow.internal.v0.unions.PaymentRedirect;
31891
+ export type PaymentShortUrl = io.flow.internal.v0.models.PaymentShortUrl;
31892
+ export type PaymentShortUrlDiscriminator =
31893
+ io.flow.internal.v0.enums.PaymentShortUrlDiscriminator;
31899
31894
  export type PaymentSummary = io.flow.internal.v0.models.PaymentSummary;
31900
31895
  export type PaymentSummaryDetails =
31901
31896
  io.flow.internal.v0.unions.PaymentSummaryDetails;
@@ -32299,6 +32294,16 @@ export type RestrictionProductSummary =
32299
32294
  export type RestrictionRule = io.flow.internal.v0.models.RestrictionRule;
32300
32295
  export type RestrictionRuleDecisionForm =
32301
32296
  io.flow.internal.v0.models.RestrictionRuleDecisionForm;
32297
+ export type RestrictionRuleDeleted =
32298
+ io.flow.internal.v0.models.RestrictionRuleDeleted;
32299
+ export type RestrictionRuleEffect =
32300
+ io.flow.internal.v0.models.RestrictionRuleEffect;
32301
+ export type RestrictionRuleEffectDeleted =
32302
+ io.flow.internal.v0.models.RestrictionRuleEffectDeleted;
32303
+ export type RestrictionRuleEffectForm =
32304
+ io.flow.internal.v0.models.RestrictionRuleEffectForm;
32305
+ export type RestrictionRuleEffectUpserted =
32306
+ io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
32302
32307
  export type RestrictionRuleForm =
32303
32308
  io.flow.internal.v0.models.RestrictionRuleForm;
32304
32309
  export type RestrictionRuleMetadata =
@@ -32307,6 +32312,8 @@ export type RestrictionRuleOverride =
32307
32312
  io.flow.internal.v0.models.RestrictionRuleOverride;
32308
32313
  export type RestrictionRuleSummary =
32309
32314
  io.flow.internal.v0.models.RestrictionRuleSummary;
32315
+ export type RestrictionRuleUpserted =
32316
+ io.flow.internal.v0.models.RestrictionRuleUpserted;
32310
32317
  export type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
32311
32318
  export type RestrictionStatusMetadata =
32312
32319
  io.flow.internal.v0.models.RestrictionStatusMetadata;
@@ -32429,6 +32436,24 @@ export type ShopifyIncotermSummaryErrorData =
32429
32436
  io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
32430
32437
  export type ShopifyIncotermSummaryErrorPublished =
32431
32438
  io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished;
32439
+ export type ShopifyInventoryItemCreateDeleted =
32440
+ io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted;
32441
+ export type ShopifyInventoryItemCreateUpserted =
32442
+ io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted;
32443
+ export type ShopifyInventoryItemCreateWebhookEvent =
32444
+ io.flow.internal.v0.models.ShopifyInventoryItemCreateWebhookEvent;
32445
+ export type ShopifyInventoryItemDeleteDeleted =
32446
+ io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted;
32447
+ export type ShopifyInventoryItemDeleteUpserted =
32448
+ io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted;
32449
+ export type ShopifyInventoryItemDeleteWebhookEvent =
32450
+ io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
32451
+ export type ShopifyInventoryItemUpdateDeleted =
32452
+ io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted;
32453
+ export type ShopifyInventoryItemUpdateUpserted =
32454
+ io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted;
32455
+ export type ShopifyInventoryItemUpdateWebhookEvent =
32456
+ io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
32432
32457
  export type ShopifyMarketsBestSellingProduct =
32433
32458
  io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
32434
32459
  export type ShopifyMarketsBestSellingProductDeleted =
@@ -32559,6 +32584,24 @@ export type ShopifyProductBundleUnderlying =
32559
32584
  io.flow.internal.v0.models.ShopifyProductBundleUnderlying;
32560
32585
  export type ShopifyProductBundleUpserted =
32561
32586
  io.flow.internal.v0.models.ShopifyProductBundleUpserted;
32587
+ export type ShopifyProductCreateDeleted =
32588
+ io.flow.internal.v0.models.ShopifyProductCreateDeleted;
32589
+ export type ShopifyProductCreateUpserted =
32590
+ io.flow.internal.v0.models.ShopifyProductCreateUpserted;
32591
+ export type ShopifyProductCreateWebhookEvent =
32592
+ io.flow.internal.v0.models.ShopifyProductCreateWebhookEvent;
32593
+ export type ShopifyProductDeleteDeleted =
32594
+ io.flow.internal.v0.models.ShopifyProductDeleteDeleted;
32595
+ export type ShopifyProductDeleteUpserted =
32596
+ io.flow.internal.v0.models.ShopifyProductDeleteUpserted;
32597
+ export type ShopifyProductDeleteWebhookEvent =
32598
+ io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
32599
+ export type ShopifyProductUpdateDeleted =
32600
+ io.flow.internal.v0.models.ShopifyProductUpdateDeleted;
32601
+ export type ShopifyProductUpdateUpserted =
32602
+ io.flow.internal.v0.models.ShopifyProductUpdateUpserted;
32603
+ export type ShopifyProductUpdateWebhookEvent =
32604
+ io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
32562
32605
  export type ShopifyProductWrapper =
32563
32606
  io.flow.internal.v0.models.ShopifyProductWrapper;
32564
32607
  export type ShopifyPromoForm = io.flow.internal.v0.models.ShopifyPromoForm;
@@ -32610,6 +32653,7 @@ export type ShopifyShopStatistics =
32610
32653
  export type ShopifyShopUpserted =
32611
32654
  io.flow.internal.v0.models.ShopifyShopUpserted;
32612
32655
  export type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
32656
+ export type ShopifyStripeEvent = io.flow.internal.v0.models.ShopifyStripeEvent;
32613
32657
  export type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
32614
32658
  export type ShopifyWebhookEvent =
32615
32659
  io.flow.internal.v0.models.ShopifyWebhookEvent;
@@ -32739,7 +32783,6 @@ export type SubscriptionTransaction =
32739
32783
  export type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
32740
32784
  export type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
32741
32785
  export type TariffCodeDuty = io.flow.internal.v0.models.TariffCodeDuty;
32742
- export type TariffCodesExport = io.flow.internal.v0.models.TariffCodesExport;
32743
32786
  export type TariffEligibility = io.flow.internal.v0.models.TariffEligibility;
32744
32787
  export type TariffEligibilityData =
32745
32788
  io.flow.internal.v0.unions.TariffEligibilityData;
@@ -32770,6 +32813,16 @@ export type TaxCalculationLineItem =
32770
32813
  io.flow.internal.v0.models.TaxCalculationLineItem;
32771
32814
  export type TaxCalculationLineItemForm =
32772
32815
  io.flow.internal.v0.models.TaxCalculationLineItemForm;
32816
+ export type TaxDutyDeltaMetadataActual =
32817
+ io.flow.internal.v0.models.TaxDutyDeltaMetadataActual;
32818
+ export type TaxDutyDeltaMetadataActualProcessing =
32819
+ io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
32820
+ export type TaxDutyDeltaMetadataExpected =
32821
+ io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected;
32822
+ export type TaxDutyDeltaMetadataExpectedProcessing =
32823
+ io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
32824
+ export type TaxDutyDeltaTransaction =
32825
+ io.flow.internal.v0.models.TaxDutyDeltaTransaction;
32773
32826
  export type TaxParty = io.flow.internal.v0.enums.TaxParty;
32774
32827
  export type TaxRemittanceTransaction =
32775
32828
  io.flow.internal.v0.models.TaxRemittanceTransaction;