@flowio/types 11.24.107 → 11.24.109

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.
@@ -800,6 +800,21 @@ declare namespace io.flow.payment.gateway.v0.unions {
800
800
  type PaymentRequestCancellationReason = io.flow.payment.gateway.v0.models.PaymentRequestCancellationReasonOrderMissing;
801
801
  type SdkAdyenV3AuthenticationToken = io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken;
802
802
  }
803
+ declare namespace io.flow.channel.currency.v0.models {
804
+ interface ChannelCurrencyPair {
805
+ readonly id: string;
806
+ readonly base: string;
807
+ readonly target: string;
808
+ readonly rate: io.flow.channel.currency.v0.models.ChannelCurrencyRate;
809
+ }
810
+ interface ChannelCurrencyRate {
811
+ readonly id: string;
812
+ readonly value: number;
813
+ }
814
+ interface ChannelRate {
815
+ readonly placeholder?: string;
816
+ }
817
+ }
803
818
  declare namespace io.flow.error.v0.enums {
804
819
  type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
805
820
  }
@@ -1078,262 +1093,6 @@ declare namespace io.flow.RESERVED_WORD_export.v0.unions {
1078
1093
  type ExportDelivery = io.flow.RESERVED_WORD_export.v0.models.ExportDeliveryEmail;
1079
1094
  type ExportType = io.flow.RESERVED_WORD_export.v0.models.AccountTransactionsExportType | io.flow.RESERVED_WORD_export.v0.models.AccountOrdersExportType | io.flow.RESERVED_WORD_export.v0.models.AnalyticsExportType | io.flow.RESERVED_WORD_export.v0.models.CatalogItemExportType | io.flow.RESERVED_WORD_export.v0.models.ExperienceExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationOverviewExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationHs6ExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationHs10ExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationTariffCodesExportType | io.flow.RESERVED_WORD_export.v0.models.UnharmonizedItemExportType | io.flow.RESERVED_WORD_export.v0.models.OrderExportType | io.flow.RESERVED_WORD_export.v0.models.PriceBookItemExportType | io.flow.RESERVED_WORD_export.v0.models.SolidusProductExportType | io.flow.RESERVED_WORD_export.v0.models.SolidusVariantExportType | io.flow.RESERVED_WORD_export.v0.models.LocalizedItemPricesExportType | io.flow.RESERVED_WORD_export.v0.models.MarketingFeedsExportType | io.flow.RESERVED_WORD_export.v0.models.ExclusionRulesExportType;
1080
1095
  }
1081
- declare namespace io.flow.flexe.v0.enums {
1082
- type FlexeAttachmentType = 'shipping_label' | 'packing_slip' | 'packing_slip_letter';
1083
- type FlexeNotification = 'receipt' | 'shipment';
1084
- type FlexeShipmentType = 'fulfillment_order' | 'retail_fulfillment_order' | 'carton_pick_delivery' | 'delivery' | 'container_delivery';
1085
- type FlexeStatus = 'in_transit' | 'completed';
1086
- }
1087
- declare namespace io.flow.flexe.v0.models {
1088
- interface BillOfLading {
1089
- readonly type: string;
1090
- readonly gs1us?: io.flow.flexe.v0.models.Gs1Us;
1091
- }
1092
- interface BillTo {
1093
- readonly name: string;
1094
- readonly address_1: string;
1095
- readonly locality: string;
1096
- readonly region: string;
1097
- readonly postal_code: string;
1098
- readonly country: string;
1099
- readonly address_2?: string;
1100
- readonly address_3?: string;
1101
- }
1102
- interface CartonPickDeliveryDetails {
1103
- readonly shipment_uuid?: string;
1104
- readonly carrier?: string;
1105
- readonly carrier_id?: string;
1106
- }
1107
- interface ContainerDeliveryDetails {
1108
- readonly purchase_order: string;
1109
- readonly container_number?: string;
1110
- readonly seal_number?: string;
1111
- readonly vendor?: string;
1112
- readonly expected_inventory: io.flow.flexe.v0.models.InventoryDetails[];
1113
- readonly received_inventory: io.flow.flexe.v0.models.InventoryDetails[];
1114
- readonly damaged_inventory: io.flow.flexe.v0.models.InventoryDetails[];
1115
- readonly quantities_by_inventory: Record<string, io.flow.flexe.v0.models.QuantityByInventory>;
1116
- }
1117
- interface DeliveryDetails {
1118
- readonly shipment_uuid?: string;
1119
- readonly trailer_number?: string;
1120
- readonly pallets: io.flow.flexe.v0.models.Pallet[];
1121
- readonly quantities_by_inventory: Record<string, io.flow.flexe.v0.models.QuantityByInventory>;
1122
- }
1123
- interface Error {
1124
- readonly url: string;
1125
- readonly client_request_id: string;
1126
- readonly generated_at: string;
1127
- readonly error: string;
1128
- }
1129
- interface FlexeAttachment {
1130
- readonly type: io.flow.flexe.v0.enums.FlexeAttachmentType;
1131
- readonly display_name: string;
1132
- readonly url: string;
1133
- }
1134
- interface FlexeEcommerceFulfillment {
1135
- readonly url: string;
1136
- readonly client_request_id: string;
1137
- readonly generated_at: string;
1138
- readonly data: io.flow.flexe.v0.models.FlexeEcommerceFulfillmentData;
1139
- readonly errors: io.flow.flexe.v0.models.FlexeEcommerceFulfillmentErrors[];
1140
- }
1141
- interface FlexeEcommerceFulfillmentData {
1142
- readonly import_id: string;
1143
- readonly succeeded_uuids: string[];
1144
- readonly failed_uuids: string[];
1145
- readonly errors: string[];
1146
- }
1147
- interface FlexeEcommerceFulfillmentErrors {
1148
- readonly status: string;
1149
- readonly title: string;
1150
- readonly detail: string;
1151
- readonly source?: string;
1152
- }
1153
- interface FlexeEcommerceFulfillmentForm {
1154
- readonly reservation_id: number;
1155
- readonly client_request_id: string;
1156
- readonly request: io.flow.flexe.v0.models.Orders;
1157
- }
1158
- interface FlexeInventoryData {
1159
- readonly sku: string;
1160
- readonly quantity: string;
1161
- readonly unit: string;
1162
- }
1163
- interface FlexeRetailAttachment {
1164
- readonly display_name: string;
1165
- readonly url: string;
1166
- }
1167
- interface FlexeRetailFulfillment {
1168
- readonly url: string;
1169
- readonly client_request_id: string;
1170
- readonly generated_at: string;
1171
- readonly data: io.flow.flexe.v0.models.FlexeRetailFulfillmentData;
1172
- readonly errors?: io.flow.flexe.v0.models.FlexeRetailFulfillmentErrors[];
1173
- }
1174
- interface FlexeRetailFulfillmentData {
1175
- readonly id: string;
1176
- readonly purchase_order_uuid: string;
1177
- readonly status: string;
1178
- }
1179
- interface FlexeRetailFulfillmentErrors {
1180
- readonly type: string;
1181
- readonly message: string;
1182
- }
1183
- interface FlexeRetailFulfillmentForm {
1184
- readonly reservation_id: number;
1185
- readonly client_request_id?: string;
1186
- readonly request: io.flow.flexe.v0.models.RetailOrder;
1187
- }
1188
- interface FulfillmentOrderDetails {
1189
- readonly shipment_uuid: string;
1190
- readonly carrier?: string;
1191
- readonly carrier_id?: string;
1192
- }
1193
- interface Gs1Us {
1194
- readonly number: string;
1195
- readonly ship_to?: io.flow.flexe.v0.models.Gs1UsShipTo;
1196
- readonly bill_to?: io.flow.flexe.v0.models.BillTo;
1197
- }
1198
- interface Gs1UsShipTo {
1199
- readonly cid_number?: string;
1200
- readonly location_number?: string;
1201
- readonly free_on_board?: boolean;
1202
- }
1203
- interface Inventory {
1204
- readonly url: string;
1205
- readonly client_request_id: string;
1206
- readonly generated_at: string;
1207
- readonly data: Record<string, io.flow.flexe.v0.models.InventoryDetails>;
1208
- }
1209
- interface InventoryCount {
1210
- readonly amount: number;
1211
- readonly unit: string;
1212
- }
1213
- interface InventoryData {
1214
- readonly pallet: io.flow.flexe.v0.models.InventoryCount;
1215
- readonly carton?: io.flow.flexe.v0.models.InventoryCount;
1216
- readonly each?: io.flow.flexe.v0.models.InventoryCount;
1217
- }
1218
- interface InventoryDetails {
1219
- readonly key: Record<string, io.flow.flexe.v0.models.Sku>;
1220
- }
1221
- interface LadingQuantity {
1222
- readonly num_pallets: number;
1223
- }
1224
- interface Order {
1225
- readonly shipment_uuid: string;
1226
- readonly purchase_order: string;
1227
- readonly carrier: string;
1228
- readonly service_type: string;
1229
- readonly carrier_assigned_id: string;
1230
- readonly name: string;
1231
- readonly address_1: string;
1232
- readonly address_2?: string;
1233
- readonly address_3?: string;
1234
- readonly city: string;
1235
- readonly state: string;
1236
- readonly postal_code: string;
1237
- readonly phone?: string;
1238
- readonly instructions?: string;
1239
- readonly inventory_data: io.flow.flexe.v0.models.FlexeInventoryData[];
1240
- readonly attachments: io.flow.flexe.v0.models.FlexeAttachment[];
1241
- }
1242
- interface Orders {
1243
- readonly orders: io.flow.flexe.v0.models.Order[];
1244
- }
1245
- interface Pallet {
1246
- readonly pallet_id: string;
1247
- readonly sku: string;
1248
- readonly quantity: number;
1249
- readonly packaging: string;
1250
- }
1251
- interface PurchaseOrder {
1252
- readonly retail_fulfillment_order_id: string;
1253
- readonly bill_of_lading_number: string;
1254
- readonly purchase_order_uuid: string;
1255
- readonly pickup_window_start: string;
1256
- readonly pickup_window_end: string;
1257
- readonly tags: string[];
1258
- }
1259
- interface QuantityByInventory {
1260
- readonly received: io.flow.flexe.v0.models.InventoryData;
1261
- readonly expected?: io.flow.flexe.v0.models.InventoryData;
1262
- readonly damaged?: io.flow.flexe.v0.models.InventoryData;
1263
- }
1264
- interface ReceiptNotification {
1265
- readonly shipment_id: string;
1266
- readonly shipment_type: io.flow.flexe.v0.enums.FlexeShipmentType;
1267
- readonly reservation_id: string;
1268
- readonly status: io.flow.flexe.v0.enums.FlexeStatus;
1269
- readonly delivery_details?: io.flow.flexe.v0.models.DeliveryDetails;
1270
- readonly container_delivery_details?: io.flow.flexe.v0.models.ContainerDeliveryDetails;
1271
- }
1272
- interface RetailFulfillmentOrderDetails {
1273
- readonly master_bill_of_lading_number: string;
1274
- readonly scac: string;
1275
- readonly pro_number: string;
1276
- readonly purchase_orders: io.flow.flexe.v0.models.PurchaseOrder[];
1277
- readonly lading_quantity: io.flow.flexe.v0.models.LadingQuantity;
1278
- }
1279
- interface RetailInventoryData {
1280
- readonly sku: string;
1281
- readonly quantity: number;
1282
- readonly unit: string;
1283
- readonly attachments?: io.flow.flexe.v0.models.FlexeRetailAttachment[];
1284
- }
1285
- interface RetailOrder {
1286
- readonly order: io.flow.flexe.v0.models.RetailOrderData;
1287
- }
1288
- interface RetailOrderData {
1289
- readonly purchase_order_uuid: string;
1290
- readonly bill_of_lading: io.flow.flexe.v0.models.BillOfLading;
1291
- readonly inventory_data: io.flow.flexe.v0.models.RetailInventoryData[];
1292
- readonly ship_within: io.flow.flexe.v0.models.ShipWithin;
1293
- readonly ship_to: io.flow.flexe.v0.models.ShipTo;
1294
- readonly build_by?: string;
1295
- readonly instrunctions?: string;
1296
- readonly routing_details_id?: string;
1297
- readonly destination_type?: string;
1298
- }
1299
- interface ShipTo {
1300
- readonly name: string;
1301
- readonly address_1: string;
1302
- readonly locality: string;
1303
- readonly region: string;
1304
- readonly postal_code: string;
1305
- readonly country: string;
1306
- readonly address_2?: string;
1307
- readonly address_3?: string;
1308
- }
1309
- interface ShipWithin {
1310
- readonly start: string;
1311
- readonly end: string;
1312
- }
1313
- interface ShipmentDeliveryDetails {
1314
- readonly shipment_uuid?: string;
1315
- }
1316
- interface ShipmentNotification {
1317
- readonly shipment_id: string;
1318
- readonly shipment_type: io.flow.flexe.v0.enums.FlexeShipmentType;
1319
- readonly reservation_id: string;
1320
- readonly status: io.flow.flexe.v0.enums.FlexeStatus;
1321
- readonly fulfillment_order_details?: io.flow.flexe.v0.models.FulfillmentOrderDetails;
1322
- readonly retail_fulfillment_order_details?: io.flow.flexe.v0.models.RetailFulfillmentOrderDetails;
1323
- readonly delivery_details?: io.flow.flexe.v0.models.ShipmentDeliveryDetails;
1324
- readonly carton_pick_delivery_details?: io.flow.flexe.v0.models.CartonPickDeliveryDetails;
1325
- }
1326
- interface Sku {
1327
- readonly sku: string;
1328
- readonly description: string;
1329
- readonly summary: Record<string, io.flow.flexe.v0.models.SkuSummary>;
1330
- }
1331
- interface SkuSummary {
1332
- readonly key: string;
1333
- readonly quantity: number;
1334
- readonly unit: string;
1335
- }
1336
- }
1337
1096
  declare namespace io.flow.payment.v0.enums {
1338
1097
  type AddressVerificationResultFieldCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
1339
1098
  type AuthorizationDeclineCode = 'expired' | 'invalid_name' | 'invalid_number' | 'invalid_expiration' | 'invalid_address' | 'invalid_token_type' | 'invalid_token' | 'no_account' | 'avs' | 'cvv' | 'fraud' | 'duplicate' | 'not_supported' | 'unknown' | 'online_payment_error';
@@ -2802,6 +2561,12 @@ declare namespace io.flow.stripe.v0.models {
2802
2561
  readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
2803
2562
  readonly transfer_group?: string;
2804
2563
  }
2564
+ interface PaymentIntents {
2565
+ readonly object: string;
2566
+ readonly data: io.flow.stripe.v0.models.PaymentIntent[];
2567
+ readonly has_more: boolean;
2568
+ readonly url?: string;
2569
+ }
2805
2570
  interface PaymentMethod {
2806
2571
  readonly id: string;
2807
2572
  readonly object: string;
@@ -3642,6 +3407,9 @@ declare namespace io.flow.external.paypal.v1.enums {
3642
3407
  type PaymentPattern = 'CUSTOMER_PRESENT_ONETIME_PURCHASE' | 'CUSTOMER_NOT_PRESENT_RECURRING' | 'CUSTOMER_PRESENT_RECURRING_FIRST' | 'CUSTOMER_PRESENT_ONETIME_PURCHASE_VAULTED' | 'CUSTOMER_NOT_PRESENT_ONETIME_PURCHASE_VAULTED';
3643
3408
  type ProductReceived = 'YES' | 'NO' | 'RETURNED';
3644
3409
  type RefundState = 'pending' | 'completed' | 'cancelled' | 'failed';
3410
+ type ReportingBalanceAffectingRecordsOnly = 'Y' | 'N';
3411
+ type ReportingTransactionField = 'transaction_info' | 'payer_info' | 'shipping_info' | 'auction_info' | 'cart_info' | 'incentive_info' | 'store_info';
3412
+ type ReportingTransactionStatus = 'D' | 'P' | 'S' | 'V';
3645
3413
  type ReturnAcknowledgementType = 'ITEM_RECEIVED' | 'ITEM_NOT_RECEIVED' | 'DAMAGED' | 'EMPTY_PACKAGE_OR_DIFFERENT' | 'MISSING_ITEMS';
3646
3414
  type ReturnMode = 'SHIPPED' | 'IN_PERSON';
3647
3415
  type SaleState = 'pending' | 'completed' | 'denied' | 'partially_refunded' | 'refunded';
@@ -3985,6 +3753,28 @@ declare namespace io.flow.external.paypal.v1.models {
3985
3753
  readonly amount: io.flow.external.paypal.v1.models.SimpleAmount;
3986
3754
  readonly invoice_number: string;
3987
3755
  }
3756
+ interface ReportingTransaction {
3757
+ readonly transaction_details: io.flow.external.paypal.v1.models.ReportingTransactionDetails[];
3758
+ readonly links: io.flow.external.paypal.v1.models.Link[];
3759
+ }
3760
+ interface ReportingTransactionDetails {
3761
+ readonly transaction_info: io.flow.external.paypal.v1.models.ReportingTransactionInfo;
3762
+ }
3763
+ interface ReportingTransactionInfo {
3764
+ readonly paypal_account_id?: string;
3765
+ readonly transaction_id?: string;
3766
+ readonly paypal_reference_id?: string;
3767
+ readonly paypal_reference_id_type?: string;
3768
+ readonly transaction_event_code: string;
3769
+ readonly transaction_initiation_date: string;
3770
+ readonly transaction_updated_date: string;
3771
+ readonly transaction_status: io.flow.external.paypal.v1.enums.ReportingTransactionStatus;
3772
+ readonly transaction_subject?: string;
3773
+ readonly invoice_id: string;
3774
+ readonly custom_field?: string;
3775
+ readonly protection_eligibility?: string;
3776
+ readonly instrument_type?: string;
3777
+ }
3988
3778
  interface ReturnDetails {
3989
3779
  readonly return_time?: string;
3990
3780
  readonly mode?: io.flow.external.paypal.v1.enums.ReturnMode;
@@ -4587,6 +4377,7 @@ declare namespace io.flow.adyen.v0.enums {
4587
4377
  type LifecycleStage = 'INQUIRY' | 'CHARGEBACK';
4588
4378
  type Operation = 'cancel' | 'capture' | 'refund';
4589
4379
  type PaymentMethod = 'ach' | 'alipay' | 'alipay_hk' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'bcmc_mobile' | 'blik' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'gcash' | 'giropay' | 'grabpay_MY' | 'grabpay_PH' | 'grabpay_SG' | 'ideal' | 'interac' | 'jcb' | 'kakaopay' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mbway' | 'mc' | 'mobilepay' | 'molpay_points' | 'multibanco' | 'onlineBanking_PL' | 'paywithgoogle' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'vipps' | 'visa' | 'wechatpay' | 'unknowncard';
4380
+ type PaymentRecordType = 'Authorised' | 'AuthorisedPending' | 'Cancelled' | 'CaptureFailed' | 'Chargeback' | 'SecondChargeback' | 'ChargebackExternally' | 'ChargebackExternallyWithInfo' | 'ChargebackReversed' | 'ChargebackReversedExternallyWithInfo' | 'Error' | 'Expired' | 'PaidOut' | 'PaidOutExternally' | 'PaidOutExternallyWithInfo' | 'PaidOutReversed' | 'PayoutAuthorised' | 'PayoutError' | 'PayoutFailed' | 'Received' | 'ReceivedPayout' | 'RefundAuthorised' | 'Refunded' | 'RefundedBulk' | 'RefundedExternally' | 'RefundedExternallyWithInfo' | 'RefundFailed' | 'RefundedInInstallments' | 'RefundedInstallment' | 'RefundedReversed' | 'RefundNotProcessed' | 'Refused' | 'RefusedPayout' | 'Retried' | 'SentForPayout' | 'SentForRefund' | 'SentForSettle' | 'Settled' | 'SettledBulk' | 'SettledExternally' | 'SettledExternallyWithInfo' | 'SettledInInstallments' | 'SettledInstallment' | 'SettledReversed' | 'SuspendInstallment' | 'AdvancedInstallment' | 'AdvancedInstallmentCancelled' | 'OpenInstallment' | 'CloseInstallment';
4590
4381
  type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
4591
4382
  type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
4592
4383
  type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
@@ -4719,9 +4510,9 @@ declare namespace io.flow.adyen.v0.models {
4719
4510
  readonly 'threeds2.threeDS2ResponseData.messageVersion': string;
4720
4511
  }
4721
4512
  interface ChargebackNotificationAdditionalData {
4722
- readonly chargebackReasonCode: string;
4513
+ readonly chargebackReasonCode?: string;
4723
4514
  readonly modificationMerchantReferences: string;
4724
- readonly chargebackSchemeCode: string;
4515
+ readonly chargebackSchemeCode?: string;
4725
4516
  readonly defensePeriodEndsAt?: string;
4726
4517
  readonly disputeStatus?: io.flow.adyen.v0.enums.DisputeStatus;
4727
4518
  readonly defendable?: string;
@@ -6629,7 +6420,6 @@ declare namespace io.flow.channel.internal.v0.models {
6629
6420
  readonly placeholder?: string;
6630
6421
  }
6631
6422
  interface OrderEditSummary {
6632
- readonly external_order_edit_reference: string;
6633
6423
  readonly edited_at: string;
6634
6424
  }
6635
6425
  }
@@ -7350,17 +7140,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
7350
7140
  readonly organization: string;
7351
7141
  readonly shopify_markets_order: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
7352
7142
  }
7353
- interface ShopifyMarketsOrderEditSummaryData {
7354
- readonly channel_order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
7355
- readonly edited_at: string;
7356
- }
7357
- interface ShopifyMarketsOrderEditSummaryPublished {
7358
- readonly discriminator: 'shopify_markets_order_edit_summary_published';
7359
- readonly event_id: string;
7360
- readonly timestamp: string;
7361
- readonly organization: string;
7362
- readonly data: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryData;
7363
- }
7364
7143
  interface ShopifyMarketsOrderUpserted {
7365
7144
  readonly discriminator: 'shopify_markets_order_upserted';
7366
7145
  readonly event_id: string;
@@ -7426,7 +7205,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
7426
7205
  }
7427
7206
  }
7428
7207
  declare namespace io.flow.shopify.markets.internal.event.v0.unions {
7429
- type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted;
7208
+ type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted;
7430
7209
  }
7431
7210
  declare namespace io.flow.experience.v0.enums {
7432
7211
  type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
@@ -8941,25 +8720,6 @@ declare namespace io.flow.catalog.exclusion.v0.models {
8941
8720
  readonly exclusion_rule: io.flow.catalog.exclusion.v0.models.ExclusionRule;
8942
8721
  }
8943
8722
  }
8944
- declare namespace io.flow.session.context.v0.models {
8945
- interface Context {
8946
- readonly id: string;
8947
- readonly experiments: io.flow.session.context.v0.models.SessionContextExperiment[];
8948
- }
8949
- interface ContextForm {
8950
- readonly experiments: io.flow.session.context.v0.models.SessionContextExperiment[];
8951
- }
8952
- interface ContextReference {
8953
- readonly id: string;
8954
- }
8955
- interface ExperimentVariant {
8956
- readonly key: string;
8957
- }
8958
- interface SessionContextExperiment {
8959
- readonly key: string;
8960
- readonly variant?: io.flow.session.context.v0.models.ExperimentVariant;
8961
- }
8962
- }
8963
8723
  declare namespace io.flow.crypto.v0.enums {
8964
8724
  type ErrorType = 'authentication_error' | 'invalid_request_error' | 'rate_limit_error';
8965
8725
  type PaymentStatus = 'pending' | 'succeeded' | 'cancelled';
@@ -9417,6 +9177,7 @@ declare namespace io.flow.tracking.v0.models {
9417
9177
  readonly timestamp: string;
9418
9178
  readonly description?: string;
9419
9179
  readonly aggregator_status_code?: string;
9180
+ readonly created_at?: string;
9420
9181
  }
9421
9182
  interface TrackingEventForm {
9422
9183
  readonly tracking_label_id: string;
@@ -11880,7 +11641,6 @@ declare namespace io.flow.session.v0.models {
11880
11641
  readonly language: io.flow.reference.v0.models.Language;
11881
11642
  readonly locale: io.flow.reference.v0.models.Locale;
11882
11643
  readonly experience: io.flow.experience.v0.models.ExperienceGeo;
11883
- readonly experiment?: io.flow.session.v0.models.SessionExperiment;
11884
11644
  }
11885
11645
  interface OrganizationSession {
11886
11646
  readonly discriminator: 'organization_session';
@@ -11895,8 +11655,6 @@ declare namespace io.flow.session.v0.models {
11895
11655
  readonly geo?: io.flow.session.v0.models.SessionGeo;
11896
11656
  readonly experience?: io.flow.experience.v0.models.ExperienceGeo;
11897
11657
  readonly format?: io.flow.session.v0.models.SessionFormat;
11898
- readonly experiment?: io.flow.session.v0.models.SessionExperiment;
11899
- readonly context?: io.flow.session.context.v0.models.ContextReference;
11900
11658
  }
11901
11659
  interface OrganizationSessionAuthorization {
11902
11660
  readonly discriminator: 'organization_session_authorization';
@@ -11910,21 +11668,6 @@ declare namespace io.flow.session.v0.models {
11910
11668
  readonly symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
11911
11669
  readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
11912
11670
  }
11913
- interface SessionExperiment {
11914
- readonly key: string;
11915
- readonly variant?: io.flow.session.v0.models.SessionExperimentVariant;
11916
- }
11917
- interface SessionExperimentForm {
11918
- readonly key: string;
11919
- readonly variant?: io.flow.session.v0.models.SessionExperimentVariantForm;
11920
- }
11921
- interface SessionExperimentVariant {
11922
- readonly key: string;
11923
- readonly name: string;
11924
- }
11925
- interface SessionExperimentVariantForm {
11926
- readonly key: string;
11927
- }
11928
11671
  interface SessionExpirationConfig {
11929
11672
  readonly unit: io.flow.common.v0.enums.UnitOfTime;
11930
11673
  readonly value: number;
@@ -11998,174 +11741,6 @@ declare namespace io.flow.billing.bank.account.v0.models {
11998
11741
  declare namespace io.flow.billing.bank.account.v0.unions {
11999
11742
  type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
12000
11743
  }
12001
- declare namespace io.flow.experiment.internal.v0.enums {
12002
- type ExperimentDiscriminatorKey = 'experience' | 'feature';
12003
- type Scope = 'organization' | 'global';
12004
- type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
12005
- type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
12006
- type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
12007
- }
12008
- declare namespace io.flow.experiment.internal.v0.models {
12009
- interface DailyExperimentResults {
12010
- readonly id: string;
12011
- readonly day: string;
12012
- readonly experiment_key: string;
12013
- readonly experiment_variant_key: string;
12014
- readonly visitor_count: number;
12015
- readonly visitors_with_transactions_count: number;
12016
- readonly conversion_rate: number;
12017
- readonly lower_bound: number;
12018
- readonly upper_bound: number;
12019
- readonly probability_of_being_best?: number;
12020
- readonly currency?: string;
12021
- readonly average_order_value?: number;
12022
- readonly revenue_generated?: number;
12023
- readonly total_order_count?: number;
12024
- readonly conversion_rate_uplift?: number;
12025
- readonly average_order_value_uplift?: number;
12026
- readonly revenue_generated_uplift?: number;
12027
- }
12028
- interface ExperienceExperiment {
12029
- readonly discriminator: 'experience';
12030
- readonly id: string;
12031
- readonly key: string;
12032
- readonly name: string;
12033
- readonly description?: string;
12034
- readonly status: io.flow.experiment.internal.v0.enums.Status;
12035
- readonly emails: string[];
12036
- readonly started_at?: string;
12037
- readonly ended_at?: string;
12038
- readonly variants: io.flow.experiment.internal.v0.models.ExperienceVariant[];
12039
- readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
12040
- readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
12041
- }
12042
- interface ExperienceVariant {
12043
- readonly discriminator: 'experience_variant';
12044
- readonly experience: io.flow.experiment.internal.v0.models.ExperienceVariantSummary;
12045
- readonly traffic_percentage: number;
12046
- readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
12047
- }
12048
- interface ExperienceVariantForm {
12049
- readonly discriminator: 'experience';
12050
- readonly key: string;
12051
- readonly traffic_percentage: number;
12052
- }
12053
- interface ExperienceVariantSummary {
12054
- readonly key: string;
12055
- readonly name?: string;
12056
- }
12057
- interface ExperimentForm {
12058
- readonly name: string;
12059
- readonly description?: string;
12060
- readonly emails: string[];
12061
- readonly variants: io.flow.experiment.internal.v0.unions.VariantForm[];
12062
- readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
12063
- readonly session_query?: string;
12064
- }
12065
- interface ExperimentFormDefault {
12066
- readonly discriminator: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator;
12067
- readonly variants?: io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant[];
12068
- }
12069
- interface ExperimentFormDefaultDiscriminator {
12070
- readonly key: io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey;
12071
- readonly values: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
12072
- }
12073
- interface ExperimentFormDefaultDiscriminatorValue {
12074
- readonly key: string;
12075
- readonly name: string;
12076
- readonly scope: io.flow.experiment.internal.v0.enums.Scope;
12077
- }
12078
- interface ExperimentFormDefaultVariant {
12079
- readonly key: string;
12080
- readonly name: string;
12081
- readonly traffic_percentage?: number;
12082
- }
12083
- interface ExperimentMilestone {
12084
- readonly id: string;
12085
- readonly experiment: io.flow.experiment.internal.v0.models.ExperimentReference;
12086
- readonly timestamp: string;
12087
- readonly description: string;
12088
- }
12089
- interface ExperimentMilestoneForm {
12090
- readonly timestamp?: string;
12091
- readonly description: string;
12092
- }
12093
- interface ExperimentReference {
12094
- readonly key: string;
12095
- }
12096
- interface ExperimentResults {
12097
- readonly id: string;
12098
- readonly experiment_key: string;
12099
- readonly experiment_variant_key: string;
12100
- readonly visitor_count: number;
12101
- readonly visitors_with_transactions_count: number;
12102
- readonly conversion_rate: number;
12103
- readonly lower_bound: number;
12104
- readonly upper_bound: number;
12105
- readonly probability_of_being_best?: number;
12106
- readonly currency?: string;
12107
- readonly average_order_value?: number;
12108
- readonly revenue_generated?: number;
12109
- readonly total_order_count?: number;
12110
- readonly conversion_rate_uplift?: number;
12111
- readonly average_order_value_uplift?: number;
12112
- readonly revenue_generated_uplift?: number;
12113
- }
12114
- interface ExperimentResultsWithTimestamp {
12115
- readonly timestamp: string;
12116
- readonly results: io.flow.experiment.internal.v0.models.ExperimentResults[];
12117
- }
12118
- interface ExperimentSessionQueryForm {
12119
- readonly session_query?: string;
12120
- }
12121
- interface ExperimentVersion {
12122
- readonly id: string;
12123
- readonly timestamp: string;
12124
- readonly type: io.flow.common.v0.enums.ChangeType;
12125
- readonly experiment: io.flow.experiment.internal.v0.unions.Experiment;
12126
- }
12127
- interface FeatureExperiment {
12128
- readonly discriminator: 'feature';
12129
- readonly id: string;
12130
- readonly key: string;
12131
- readonly name: string;
12132
- readonly description?: string;
12133
- readonly status: io.flow.experiment.internal.v0.enums.Status;
12134
- readonly emails: string[];
12135
- readonly scope: io.flow.experiment.internal.v0.enums.Scope;
12136
- readonly started_at?: string;
12137
- readonly ended_at?: string;
12138
- readonly variants: io.flow.experiment.internal.v0.models.FeatureVariant[];
12139
- readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
12140
- readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
12141
- readonly session_query?: string;
12142
- }
12143
- interface FeatureValueReference {
12144
- readonly feature_key: string;
12145
- readonly value: string;
12146
- }
12147
- interface FeatureVariant {
12148
- readonly discriminator: 'feature_variant';
12149
- readonly value: io.flow.experiment.internal.v0.models.FeatureVariantSummary;
12150
- readonly traffic_percentage: number;
12151
- readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
12152
- }
12153
- interface FeatureVariantForm {
12154
- readonly discriminator: 'feature';
12155
- readonly key: string;
12156
- readonly traffic_percentage: number;
12157
- }
12158
- interface FeatureVariantSummary {
12159
- readonly key: string;
12160
- readonly feature_value: io.flow.experiment.internal.v0.models.FeatureValueReference;
12161
- readonly name?: string;
12162
- }
12163
- }
12164
- declare namespace io.flow.experiment.internal.v0.unions {
12165
- type Experiment = io.flow.experiment.internal.v0.models.ExperienceExperiment | io.flow.experiment.internal.v0.models.FeatureExperiment;
12166
- type Variant = io.flow.experiment.internal.v0.models.ExperienceVariant | io.flow.experiment.internal.v0.models.FeatureVariant;
12167
- type VariantForm = io.flow.experiment.internal.v0.models.ExperienceVariantForm | io.flow.experiment.internal.v0.models.FeatureVariantForm;
12168
- }
12169
11744
  declare namespace io.flow.internal.v0.enums {
12170
11745
  type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
12171
11746
  type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
@@ -12173,6 +11748,7 @@ declare namespace io.flow.internal.v0.enums {
12173
11748
  type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
12174
11749
  type AdjustmentTransactionType = 'adjustment' | 'reversal';
12175
11750
  type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
11751
+ type AldoItemType = 'physical' | 'digital';
12176
11752
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
12177
11753
  type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
12178
11754
  type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
@@ -12180,7 +11756,7 @@ declare namespace io.flow.internal.v0.enums {
12180
11756
  type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
12181
11757
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
12182
11758
  type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
12183
- type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
11759
+ type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
12184
11760
  type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
12185
11761
  type BillingTransactionStatus = 'pending_proof' | 'posted';
12186
11762
  type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'tax_refund' | 'duty_refund';
@@ -12215,7 +11791,6 @@ declare namespace io.flow.internal.v0.enums {
12215
11791
  type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
12216
11792
  type ClassificationType = 'None' | 'Manual' | 'ML';
12217
11793
  type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
12218
- type ColmItemType = 'physical' | 'digital';
12219
11794
  type Company = 'globale' | 'flow';
12220
11795
  type ComplianceType = 'weee';
12221
11796
  type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
@@ -12248,7 +11823,7 @@ declare namespace io.flow.internal.v0.enums {
12248
11823
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
12249
11824
  type EmptyAttribute = 'irrelevant';
12250
11825
  type ErpFileType = 'vendor';
12251
- type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_markets_order_edit_summary_published' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
11826
+ type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'final_estimate_upserted' | 'final_estimate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
12252
11827
  type ExperienceImportType = 'experience_with_settings';
12253
11828
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
12254
11829
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -12374,6 +11949,7 @@ declare namespace io.flow.internal.v0.enums {
12374
11949
  type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
12375
11950
  type SnoozeNextActionWith = 'customer_service' | 'engineering';
12376
11951
  type SnoozeSourceType = 'task' | 'invariant';
11952
+ type SourceTypeFilter = 'organization' | 'channel';
12377
11953
  type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
12378
11954
  type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
12379
11955
  type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
@@ -13018,6 +12594,36 @@ declare namespace io.flow.internal.v0.models {
13018
12594
  readonly timestamp: string;
13019
12595
  readonly afterpay_refund: io.flow.internal.v0.models.AfterpayRefund;
13020
12596
  }
12597
+ interface AftershipWebhook {
12598
+ readonly placeholder?: boolean;
12599
+ }
12600
+ interface AldoItem {
12601
+ readonly id: string;
12602
+ readonly number: string;
12603
+ readonly amount: io.flow.common.v0.models.Price;
12604
+ readonly description?: string;
12605
+ readonly type: io.flow.internal.v0.enums.AldoItemType;
12606
+ readonly added_on: string;
12607
+ }
12608
+ interface AldoItemDeleted {
12609
+ readonly discriminator: 'aldo_item_deleted';
12610
+ readonly event_id: string;
12611
+ readonly timestamp: string;
12612
+ readonly id: string;
12613
+ }
12614
+ interface AldoItemForm {
12615
+ readonly number: string;
12616
+ readonly amount: io.flow.common.v0.models.Price;
12617
+ readonly description?: string;
12618
+ readonly type: io.flow.internal.v0.enums.AldoItemType;
12619
+ readonly added_on: string;
12620
+ }
12621
+ interface AldoItemUpserted {
12622
+ readonly discriminator: 'aldo_item_upserted';
12623
+ readonly event_id: string;
12624
+ readonly timestamp: string;
12625
+ readonly item: io.flow.internal.v0.models.AldoItem;
12626
+ }
13021
12627
  interface AlertErrorSummary {
13022
12628
  readonly event_id: number;
13023
12629
  readonly error: string;
@@ -13955,6 +13561,9 @@ declare namespace io.flow.internal.v0.models {
13955
13561
  readonly channel_id: string;
13956
13562
  readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
13957
13563
  }
13564
+ interface ChannelCurrencyPairInternal {
13565
+ readonly channel_currency_pair: io.flow.channel.currency.v0.models.ChannelCurrencyPair;
13566
+ }
13958
13567
  interface ChannelCurrencySetting {
13959
13568
  readonly id: string;
13960
13569
  readonly channel_id: string;
@@ -14618,21 +14227,6 @@ declare namespace io.flow.internal.v0.models {
14618
14227
  readonly user_id: string;
14619
14228
  readonly task: string;
14620
14229
  }
14621
- interface ColmItem {
14622
- readonly id: string;
14623
- readonly number: string;
14624
- readonly amount: io.flow.common.v0.models.Price;
14625
- readonly description?: string;
14626
- readonly type: io.flow.internal.v0.enums.ColmItemType;
14627
- readonly added_on: string;
14628
- }
14629
- interface ColmItemForm {
14630
- readonly number: string;
14631
- readonly amount: io.flow.common.v0.models.Price;
14632
- readonly description?: string;
14633
- readonly type: io.flow.internal.v0.enums.ColmItemType;
14634
- readonly added_on: string;
14635
- }
14636
14230
  interface CommercialInvoiceComparison {
14637
14231
  readonly urls: string[];
14638
14232
  }
@@ -14854,6 +14448,7 @@ declare namespace io.flow.internal.v0.models {
14854
14448
  readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
14855
14449
  readonly created_at: string;
14856
14450
  readonly updated_at: string;
14451
+ readonly posted_at?: string;
14857
14452
  }
14858
14453
  interface CurrencyInternalRate {
14859
14454
  readonly id: string;
@@ -14970,6 +14565,11 @@ declare namespace io.flow.internal.v0.models {
14970
14565
  readonly type_id: string;
14971
14566
  readonly transaction_id: string;
14972
14567
  }
14568
+ interface DebugAdjustment {
14569
+ readonly transaction_id: string;
14570
+ readonly original_transaction: io.flow.internal.v0.models.DebugOriginalTransactionSummary;
14571
+ readonly description: string;
14572
+ }
14973
14573
  interface DebugBankingDetails {
14974
14574
  readonly merchant: io.flow.internal.v0.models.MerchantDetails;
14975
14575
  readonly account: io.flow.internal.v0.models.BankAccount;
@@ -14979,6 +14579,7 @@ declare namespace io.flow.internal.v0.models {
14979
14579
  readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
14980
14580
  readonly refunds: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
14981
14581
  readonly allocation: io.flow.experience.v0.models.AllocationV2;
14582
+ readonly adjustments: io.flow.internal.v0.models.DebugAdjustment[];
14982
14583
  }
14983
14584
  interface DebugFulfillmentDelta {
14984
14585
  readonly posted_transactions_net: number;
@@ -14991,6 +14592,7 @@ declare namespace io.flow.internal.v0.models {
14991
14592
  readonly carrier_tracking_number: string;
14992
14593
  readonly label_tracking_summary_id?: string;
14993
14594
  readonly label_id?: string;
14595
+ readonly cost_estimate?: io.flow.label.v0.models.ShippingLabelHopSummary;
14994
14596
  readonly transactions?: io.flow.internal.v0.models.DebugLabelTransactionSummary[];
14995
14597
  }
14996
14598
  interface DebugLabelTransactionSummary {
@@ -15008,10 +14610,14 @@ declare namespace io.flow.internal.v0.models {
15008
14610
  interface DebugOrderTransaction {
15009
14611
  readonly order: io.flow.internal.v0.models.DebugOrder;
15010
14612
  readonly debug: io.flow.internal.v0.models.DebugDetails;
15011
- readonly transactions: io.flow.billing.v0.models.Transaction[];
14613
+ readonly transactions: io.flow.internal.v0.models.DebugOrderTransactionDetails[];
15012
14614
  readonly reporting: io.flow.internal.v0.models.ReportingDetails;
15013
14615
  readonly banking: io.flow.internal.v0.models.DebugBankingDetails;
15014
14616
  }
14617
+ interface DebugOrderTransactionDetails {
14618
+ readonly transaction: io.flow.billing.v0.models.Transaction;
14619
+ readonly payout_details?: io.flow.billing.v0.unions.PayoutStatus;
14620
+ }
15015
14621
  interface DebugOrderTransactionForm {
15016
14622
  readonly order_id?: string;
15017
14623
  readonly organization_id?: string;
@@ -15031,6 +14637,10 @@ declare namespace io.flow.internal.v0.models {
15031
14637
  readonly key?: string;
15032
14638
  readonly value?: string;
15033
14639
  }
14640
+ interface DebugOriginalTransactionSummary {
14641
+ readonly id: string;
14642
+ readonly source: io.flow.billing.v0.enums.TransactionSource;
14643
+ }
15034
14644
  interface DebugPaymentTransactionSummary {
15035
14645
  readonly id: string;
15036
14646
  readonly type: string;
@@ -15269,6 +14879,8 @@ declare namespace io.flow.internal.v0.models {
15269
14879
  readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
15270
14880
  readonly category?: io.flow.internal.v0.enums.DisputeCategory;
15271
14881
  readonly status?: io.flow.internal.v0.enums.DisputeStatus;
14882
+ readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
14883
+ readonly defended_at?: string;
15272
14884
  }
15273
14885
  interface DisputeRecord {
15274
14886
  readonly id: string;
@@ -15883,6 +15495,26 @@ declare namespace io.flow.internal.v0.models {
15883
15495
  readonly transfer?: io.flow.internal.v0.models.Fee;
15884
15496
  readonly negative_balance?: io.flow.internal.v0.models.Fee;
15885
15497
  }
15498
+ interface FinalEstimate {
15499
+ readonly id: string;
15500
+ readonly organization_id: string;
15501
+ readonly label_id: string;
15502
+ readonly estimate: io.flow.label.v0.models.ShippingLabelHopSummary;
15503
+ }
15504
+ interface FinalEstimateDeleted {
15505
+ readonly discriminator: 'final_estimate_deleted';
15506
+ readonly event_id: string;
15507
+ readonly timestamp: string;
15508
+ readonly organization: string;
15509
+ readonly id: string;
15510
+ }
15511
+ interface FinalEstimateUpserted {
15512
+ readonly discriminator: 'final_estimate_upserted';
15513
+ readonly event_id: string;
15514
+ readonly timestamp: string;
15515
+ readonly organization: string;
15516
+ readonly final_estimate: io.flow.internal.v0.models.FinalEstimate;
15517
+ }
15886
15518
  interface FinanceBankAccount {
15887
15519
  readonly id: string;
15888
15520
  readonly accounts: io.flow.internal.v0.models.AccountSummary[];
@@ -16004,6 +15636,9 @@ declare namespace io.flow.internal.v0.models {
16004
15636
  readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
16005
15637
  readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
16006
15638
  }
15639
+ interface FlexeWebhook {
15640
+ readonly placeholder?: boolean;
15641
+ }
16007
15642
  interface FlowAccount {
16008
15643
  readonly source: io.flow.internal.v0.models.AccountSource;
16009
15644
  readonly id: string;
@@ -16976,20 +16611,6 @@ declare namespace io.flow.internal.v0.models {
16976
16611
  readonly q: string;
16977
16612
  readonly dimensions: io.flow.ratecard.v0.models.EstimatedDimensions;
16978
16613
  }
16979
- interface ItemDimensionEstimateDeletedV2 {
16980
- readonly discriminator: 'item_dimension_estimate_deleted_v2';
16981
- readonly event_id: string;
16982
- readonly timestamp: string;
16983
- readonly organization: string;
16984
- readonly id: string;
16985
- }
16986
- interface ItemDimensionEstimateUpsertedV2 {
16987
- readonly discriminator: 'item_dimension_estimate_upserted_v2';
16988
- readonly event_id: string;
16989
- readonly timestamp: string;
16990
- readonly organization: string;
16991
- readonly estimate: io.flow.internal.v0.models.ItemDimensionEstimate;
16992
- }
16993
16614
  interface ItemFilterResponse {
16994
16615
  readonly filter: string;
16995
16616
  readonly responses: io.flow.internal.v0.models.ItemFilterValueResponse[];
@@ -17213,7 +16834,6 @@ declare namespace io.flow.internal.v0.models {
17213
16834
  }
17214
16835
  interface LabelGenerationSettings {
17215
16836
  readonly id: string;
17216
- readonly item_identifier?: string;
17217
16837
  readonly auto_generate_query?: string;
17218
16838
  readonly commercial_invoice_only_query?: string;
17219
16839
  }
@@ -18425,7 +18045,6 @@ declare namespace io.flow.internal.v0.models {
18425
18045
  readonly disputes: io.flow.internal.v0.models.DisputeDetail[];
18426
18046
  }
18427
18047
  interface OrderEditSummary {
18428
- readonly external_order_edit_reference: string;
18429
18048
  readonly edited_at: string;
18430
18049
  }
18431
18050
  interface OrderFulfillmentDeleted {
@@ -19006,6 +18625,7 @@ declare namespace io.flow.internal.v0.models {
19006
18625
  readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
19007
18626
  readonly created_at: string;
19008
18627
  readonly updated_at: string;
18628
+ readonly posted_at?: string;
19009
18629
  }
19010
18630
  interface OtherRecordAccount {
19011
18631
  readonly id: string;
@@ -19088,13 +18708,17 @@ declare namespace io.flow.internal.v0.models {
19088
18708
  readonly carrier_charge_id: string;
19089
18709
  }
19090
18710
  interface OtherRecordOrderSummary {
19091
- readonly organization: io.flow.common.v0.models.OrganizationReference;
18711
+ readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
19092
18712
  readonly number: string;
19093
18713
  readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
19094
18714
  }
19095
18715
  interface OtherRecordOrderSummaryIdentifiers {
19096
18716
  readonly shopify_order_id?: string;
19097
18717
  }
18718
+ interface OtherRecordOrganizationSummary {
18719
+ readonly id: string;
18720
+ readonly status?: io.flow.common.v0.enums.OrganizationStatus;
18721
+ }
19098
18722
  interface OtherRecordUpserted {
19099
18723
  readonly discriminator: 'other_record_upserted';
19100
18724
  readonly event_id: string;
@@ -19810,6 +19434,34 @@ declare namespace io.flow.internal.v0.models {
19810
19434
  readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
19811
19435
  readonly created_at: string;
19812
19436
  }
19437
+ interface PspDistribution {
19438
+ readonly processor: io.flow.internal.v0.enums.Processor;
19439
+ readonly percentage: number;
19440
+ }
19441
+ interface PspRoutingDistribution {
19442
+ readonly name: string;
19443
+ readonly environment?: io.flow.common.v0.enums.Environment;
19444
+ readonly payment_methods: string[];
19445
+ readonly countries: string[];
19446
+ readonly currencies: string[];
19447
+ readonly region?: string;
19448
+ readonly mcc?: string;
19449
+ readonly is_returning_card?: boolean;
19450
+ readonly priority: number;
19451
+ readonly distributions: io.flow.internal.v0.models.PspDistribution[];
19452
+ }
19453
+ interface PspRoutingDistributionRevision {
19454
+ readonly id: string;
19455
+ readonly description?: string;
19456
+ readonly psp_routing_distributions: io.flow.internal.v0.models.PspRoutingDistribution[];
19457
+ readonly created_at: string;
19458
+ readonly updated_at: string;
19459
+ }
19460
+ interface PspRoutingDistributionRevisionForm {
19461
+ readonly previous_revision?: string;
19462
+ readonly description?: string;
19463
+ readonly psp_routing_distributions: io.flow.internal.v0.models.PspRoutingDistribution[];
19464
+ }
19813
19465
  interface PublicHub {
19814
19466
  readonly id: string;
19815
19467
  readonly code: string;
@@ -20261,6 +19913,9 @@ declare namespace io.flow.internal.v0.models {
20261
19913
  readonly routing_number: string;
20262
19914
  readonly account_number: string;
20263
19915
  }
19916
+ interface ReportFilter {
19917
+ readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
19918
+ }
20264
19919
  interface ReportForm {
20265
19920
  readonly type: io.flow.internal.v0.enums.ReportType;
20266
19921
  readonly from?: string;
@@ -20269,6 +19924,7 @@ declare namespace io.flow.internal.v0.models {
20269
19924
  readonly organizations?: io.flow.internal.v0.models.ReportOrganizationReference[];
20270
19925
  readonly orders?: io.flow.internal.v0.models.ReportOrderReference[];
20271
19926
  readonly recipients?: string[];
19927
+ readonly filter?: io.flow.internal.v0.models.ReportFilter;
20272
19928
  }
20273
19929
  interface ReportMerchant {
20274
19930
  readonly id: string;
@@ -20929,12 +20585,6 @@ declare namespace io.flow.internal.v0.models {
20929
20585
  readonly name: string;
20930
20586
  readonly status: io.flow.experience.v0.enums.ExperienceStatus;
20931
20587
  }
20932
- interface SearchExperimentSummary {
20933
- readonly discriminator: 'search_experiment_summary';
20934
- readonly key: string;
20935
- readonly name: string;
20936
- readonly status: io.flow.experiment.internal.v0.enums.Status;
20937
- }
20938
20588
  interface SearchItemSummary {
20939
20589
  readonly discriminator: 'search_item_summary';
20940
20590
  readonly number: string;
@@ -21171,17 +20821,6 @@ declare namespace io.flow.internal.v0.models {
21171
20821
  readonly organization: string;
21172
20822
  readonly shopify_markets_order: io.flow.internal.v0.models.ShopifyMarketsOrder;
21173
20823
  }
21174
- interface ShopifyMarketsOrderEditSummaryData {
21175
- readonly channel_order_acceptance: io.flow.internal.v0.models.ChannelOrderAcceptance;
21176
- readonly edited_at: string;
21177
- }
21178
- interface ShopifyMarketsOrderEditSummaryPublished {
21179
- readonly discriminator: 'shopify_markets_order_edit_summary_published';
21180
- readonly event_id: string;
21181
- readonly timestamp: string;
21182
- readonly organization: string;
21183
- readonly data: io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData;
21184
- }
21185
20824
  interface ShopifyMarketsOrderUpserted {
21186
20825
  readonly discriminator: 'shopify_markets_order_upserted';
21187
20826
  readonly event_id: string;
@@ -21734,6 +21373,23 @@ declare namespace io.flow.internal.v0.models {
21734
21373
  readonly type: io.flow.common.v0.enums.ChangeType;
21735
21374
  readonly spot_rate: io.flow.internal.v0.models.SpotRate;
21736
21375
  }
21376
+ interface SppTrackerUpdateRequest {
21377
+ readonly id: string;
21378
+ readonly tracking_subscription: io.flow.internal.v0.models.TrackingSubscription;
21379
+ readonly created_at: string;
21380
+ }
21381
+ interface SppTrackerUpdateRequestDeleted {
21382
+ readonly discriminator: 'spp_tracker_update_request_deleted';
21383
+ readonly event_id: string;
21384
+ readonly timestamp: string;
21385
+ readonly id: string;
21386
+ }
21387
+ interface SppTrackerUpdateRequestUpserted {
21388
+ readonly discriminator: 'spp_tracker_update_request_upserted';
21389
+ readonly event_id: string;
21390
+ readonly timestamp: string;
21391
+ readonly spp_tracker_update_request: io.flow.internal.v0.models.SppTrackerUpdateRequest;
21392
+ }
21737
21393
  interface StandaloneAttachment {
21738
21394
  readonly id: string;
21739
21395
  readonly statement: io.flow.internal.v0.models.BillingStatementReference;
@@ -22452,6 +22108,9 @@ declare namespace io.flow.internal.v0.models {
22452
22108
  readonly flow_tracking_number: string;
22453
22109
  readonly tracking_events: io.flow.internal.v0.models.TrackingEvent[];
22454
22110
  }
22111
+ interface TrackingResync {
22112
+ readonly placeholder?: boolean;
22113
+ }
22455
22114
  interface TrackingSubscription {
22456
22115
  readonly id: string;
22457
22116
  readonly organization_id: string;
@@ -22484,6 +22143,9 @@ declare namespace io.flow.internal.v0.models {
22484
22143
  readonly organization: string;
22485
22144
  readonly tracking: io.flow.tracking.v0.models.Tracking;
22486
22145
  }
22146
+ interface TrackingWebhook {
22147
+ readonly placeholder?: boolean;
22148
+ }
22487
22149
  interface TransactionAdjustment {
22488
22150
  readonly id: string;
22489
22151
  readonly original_transaction: io.flow.internal.v0.models.TransactionReference;
@@ -22772,7 +22434,7 @@ declare namespace io.flow.internal.v0.unions {
22772
22434
  type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
22773
22435
  type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
22774
22436
  type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
22775
- type Event = io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryPublished | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
22437
+ type Event = io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.FinalEstimateUpserted | io.flow.internal.v0.models.FinalEstimateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.AldoItemUpserted | io.flow.internal.v0.models.AldoItemDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
22776
22438
  type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
22777
22439
  type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
22778
22440
  type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
@@ -22786,7 +22448,7 @@ declare namespace io.flow.internal.v0.unions {
22786
22448
  type FulfillmentProof = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference | io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference;
22787
22449
  type FulfillmentTrigger = io.flow.internal.v0.models.FulfillmentTriggerProof | io.flow.internal.v0.models.FulfillmentTriggerTime;
22788
22450
  type GenerateLoad = io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
22789
- type GlobalSearchResult = io.flow.internal.v0.models.SearchExperienceSummary | io.flow.internal.v0.models.SearchExperimentSummary | io.flow.internal.v0.models.SearchOrderSummary | io.flow.internal.v0.models.SearchItemSummary;
22451
+ type GlobalSearchResult = io.flow.internal.v0.models.SearchExperienceSummary | io.flow.internal.v0.models.SearchOrderSummary | io.flow.internal.v0.models.SearchItemSummary;
22790
22452
  type IndexTaskType = io.flow.internal.v0.models.CatalogItemIndexTask | io.flow.internal.v0.models.CatalogItemBatchIndexTask | io.flow.internal.v0.models.CatalogItemDeleteIndexTask | io.flow.internal.v0.models.ChangeSettingsIndexTask | io.flow.internal.v0.models.DeleteIndexTask;
22791
22453
  type InlineAuthorizationParameters = io.flow.internal.v0.models.KlarnaAuthorizationParameters;
22792
22454
  type InternalAuthorizationDetails = io.flow.internal.v0.models.InternalPaypalAuthorizationDetails | io.flow.internal.v0.models.InternalBitpayAuthorizationDetails | io.flow.internal.v0.models.InternalStripeAuthorizationDetails | io.flow.internal.v0.models.InternalAdyenAuthorizationDetails | io.flow.internal.v0.models.InternalAfterpayAuthorizationDetails | io.flow.internal.v0.models.InternalFiservAuthorizationDetails;
@@ -22929,6 +22591,12 @@ export declare type AfterpayCaptureUpserted = io.flow.internal.v0.models.Afterpa
22929
22591
  export declare type AfterpayRefund = io.flow.internal.v0.models.AfterpayRefund;
22930
22592
  export declare type AfterpayRefundDeleted = io.flow.internal.v0.models.AfterpayRefundDeleted;
22931
22593
  export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.AfterpayRefundUpserted;
22594
+ export declare type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
22595
+ export declare type AldoItem = io.flow.internal.v0.models.AldoItem;
22596
+ export declare type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
22597
+ export declare type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
22598
+ export declare type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
22599
+ export declare type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
22932
22600
  export declare type AlertErrorSummary = io.flow.internal.v0.models.AlertErrorSummary;
22933
22601
  export declare type AlertFailureSummary = io.flow.internal.v0.models.AlertFailureSummary;
22934
22602
  export declare type AlertFailureSummaryDetail = io.flow.internal.v0.models.AlertFailureSummaryDetail;
@@ -23102,6 +22770,7 @@ export declare type ChannelBilledTransactionType = io.flow.internal.v0.enums.Cha
23102
22770
  export declare type ChannelBilledTransactionUpserted = io.flow.internal.v0.models.ChannelBilledTransactionUpserted;
23103
22771
  export declare type ChannelBillingStatement = io.flow.internal.v0.models.ChannelBillingStatement;
23104
22772
  export declare type ChannelCurrencyForm = io.flow.internal.v0.models.ChannelCurrencyForm;
22773
+ export declare type ChannelCurrencyPairInternal = io.flow.internal.v0.models.ChannelCurrencyPairInternal;
23105
22774
  export declare type ChannelCurrencySetting = io.flow.internal.v0.models.ChannelCurrencySetting;
23106
22775
  export declare type ChannelCurrencySettingDeleted = io.flow.internal.v0.models.ChannelCurrencySettingDeleted;
23107
22776
  export declare type ChannelCurrencySettingForm = io.flow.internal.v0.models.ChannelCurrencySettingForm;
@@ -23239,9 +22908,6 @@ export declare type ClassifiedProductDetail = io.flow.internal.v0.models.Classif
23239
22908
  export declare type CliLogEntry = io.flow.internal.v0.models.CliLogEntry;
23240
22909
  export declare type CliLogEntryForm = io.flow.internal.v0.models.CliLogEntryForm;
23241
22910
  export declare type ClothingAgeClassification = io.flow.internal.v0.enums.ClothingAgeClassification;
23242
- export declare type ColmItem = io.flow.internal.v0.models.ColmItem;
23243
- export declare type ColmItemForm = io.flow.internal.v0.models.ColmItemForm;
23244
- export declare type ColmItemType = io.flow.internal.v0.enums.ColmItemType;
23245
22911
  export declare type CommercialInvoiceComparison = io.flow.internal.v0.models.CommercialInvoiceComparison;
23246
22912
  export declare type CommercialInvoiceInternal = io.flow.internal.v0.models.CommercialInvoiceInternal;
23247
22913
  export declare type CommercialInvoiceInternalDeleted = io.flow.internal.v0.models.CommercialInvoiceInternalDeleted;
@@ -23301,6 +22967,7 @@ export declare type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDel
23301
22967
  export declare type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
23302
22968
  export declare type DebugAccountingTransaction = io.flow.internal.v0.models.DebugAccountingTransaction;
23303
22969
  export declare type DebugAccountingTransactionType = io.flow.internal.v0.enums.DebugAccountingTransactionType;
22970
+ export declare type DebugAdjustment = io.flow.internal.v0.models.DebugAdjustment;
23304
22971
  export declare type DebugBankingDetails = io.flow.internal.v0.models.DebugBankingDetails;
23305
22972
  export declare type DebugDetails = io.flow.internal.v0.models.DebugDetails;
23306
22973
  export declare type DebugFulfillmentDelta = io.flow.internal.v0.models.DebugFulfillmentDelta;
@@ -23308,8 +22975,10 @@ export declare type DebugLabel = io.flow.internal.v0.models.DebugLabel;
23308
22975
  export declare type DebugLabelTransactionSummary = io.flow.internal.v0.models.DebugLabelTransactionSummary;
23309
22976
  export declare type DebugOrder = io.flow.internal.v0.models.DebugOrder;
23310
22977
  export declare type DebugOrderTransaction = io.flow.internal.v0.models.DebugOrderTransaction;
22978
+ export declare type DebugOrderTransactionDetails = io.flow.internal.v0.models.DebugOrderTransactionDetails;
23311
22979
  export declare type DebugOrderTransactionForm = io.flow.internal.v0.models.DebugOrderTransactionForm;
23312
22980
  export declare type DebugOrderTransactionFormOrderIdentifier = io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
22981
+ export declare type DebugOriginalTransactionSummary = io.flow.internal.v0.models.DebugOriginalTransactionSummary;
23313
22982
  export declare type DebugPaymentTransactionSummary = io.flow.internal.v0.models.DebugPaymentTransactionSummary;
23314
22983
  export declare type DebugTransactionDetails = io.flow.internal.v0.models.DebugTransactionDetails;
23315
22984
  export declare type DebugTransactionDetailsStatus = io.flow.internal.v0.models.DebugTransactionDetailsStatus;
@@ -23478,6 +23147,9 @@ export declare type FeedUpserted = io.flow.internal.v0.models.FeedUpserted;
23478
23147
  export declare type FeedsExport = io.flow.internal.v0.models.FeedsExport;
23479
23148
  export declare type Fees = io.flow.internal.v0.models.Fees;
23480
23149
  export declare type FeesSource = io.flow.internal.v0.enums.FeesSource;
23150
+ export declare type FinalEstimate = io.flow.internal.v0.models.FinalEstimate;
23151
+ export declare type FinalEstimateDeleted = io.flow.internal.v0.models.FinalEstimateDeleted;
23152
+ export declare type FinalEstimateUpserted = io.flow.internal.v0.models.FinalEstimateUpserted;
23481
23153
  export declare type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
23482
23154
  export declare type FinanceBankAccountOwner = io.flow.internal.v0.models.FinanceBankAccountOwner;
23483
23155
  export declare type FinanceBankPayment = io.flow.internal.v0.models.FinanceBankPayment;
@@ -23494,6 +23166,7 @@ export declare type FiservAuthenticationForm = io.flow.internal.v0.models.Fiserv
23494
23166
  export declare type FiservMerchant = io.flow.internal.v0.models.FiservMerchant;
23495
23167
  export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.FiservMerchantModificationForm;
23496
23168
  export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
23169
+ export declare type FlexeWebhook = io.flow.internal.v0.models.FlexeWebhook;
23497
23170
  export declare type FlowAccount = io.flow.internal.v0.models.FlowAccount;
23498
23171
  export declare type FlowApp = io.flow.internal.v0.enums.FlowApp;
23499
23172
  export declare type FlowBillingStatement = io.flow.internal.v0.models.FlowBillingStatement;
@@ -23667,8 +23340,6 @@ export declare type ItemClassificationSummary = io.flow.internal.v0.models.ItemC
23667
23340
  export declare type ItemClassificationV2 = io.flow.internal.v0.models.ItemClassificationV2;
23668
23341
  export declare type ItemCustomsDetails = io.flow.internal.v0.models.ItemCustomsDetails;
23669
23342
  export declare type ItemDimensionEstimate = io.flow.internal.v0.models.ItemDimensionEstimate;
23670
- export declare type ItemDimensionEstimateDeletedV2 = io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2;
23671
- export declare type ItemDimensionEstimateUpsertedV2 = io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2;
23672
23343
  export declare type ItemFilterResponse = io.flow.internal.v0.models.ItemFilterResponse;
23673
23344
  export declare type ItemFilterValueResponse = io.flow.internal.v0.models.ItemFilterValueResponse;
23674
23345
  export declare type ItemFilterValuesForm = io.flow.internal.v0.models.ItemFilterValuesForm;
@@ -24046,6 +23717,7 @@ export declare type OtherRecordMetadataShippingLabelRevenueShare = io.flow.inter
24046
23717
  export declare type OtherRecordMetadataTrueup = io.flow.internal.v0.models.OtherRecordMetadataTrueup;
24047
23718
  export declare type OtherRecordOrderSummary = io.flow.internal.v0.models.OtherRecordOrderSummary;
24048
23719
  export declare type OtherRecordOrderSummaryIdentifiers = io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
23720
+ export declare type OtherRecordOrganizationSummary = io.flow.internal.v0.models.OtherRecordOrganizationSummary;
24049
23721
  export declare type OtherRecordUpserted = io.flow.internal.v0.models.OtherRecordUpserted;
24050
23722
  export declare type OtherRecordWithholdings = io.flow.internal.v0.models.OtherRecordWithholdings;
24051
23723
  export declare type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
@@ -24175,6 +23847,10 @@ export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models
24175
23847
  export declare type ProofOfPostingOrderCombinedShipment = io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
24176
23848
  export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
24177
23849
  export declare type ProofOfPostingTimeElapsed = io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
23850
+ export declare type PspDistribution = io.flow.internal.v0.models.PspDistribution;
23851
+ export declare type PspRoutingDistribution = io.flow.internal.v0.models.PspRoutingDistribution;
23852
+ export declare type PspRoutingDistributionRevision = io.flow.internal.v0.models.PspRoutingDistributionRevision;
23853
+ export declare type PspRoutingDistributionRevisionForm = io.flow.internal.v0.models.PspRoutingDistributionRevisionForm;
24178
23854
  export declare type PublicHub = io.flow.internal.v0.models.PublicHub;
24179
23855
  export declare type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
24180
23856
  export declare type Quote = io.flow.internal.v0.models.Quote;
@@ -24252,6 +23928,7 @@ export declare type Report = io.flow.internal.v0.models.Report;
24252
23928
  export declare type ReportAccount = io.flow.internal.v0.models.ReportAccount;
24253
23929
  export declare type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
24254
23930
  export declare type ReportBankAccountCleartext = io.flow.internal.v0.models.ReportBankAccountCleartext;
23931
+ export declare type ReportFilter = io.flow.internal.v0.models.ReportFilter;
24255
23932
  export declare type ReportForm = io.flow.internal.v0.models.ReportForm;
24256
23933
  export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
24257
23934
  export declare type ReportMerchant = io.flow.internal.v0.models.ReportMerchant;
@@ -24367,7 +24044,6 @@ export declare type ScreeningStatusChangeUpserted = io.flow.internal.v0.models.S
24367
24044
  export declare type SearchAuthorization = io.flow.internal.v0.models.SearchAuthorization;
24368
24045
  export declare type SearchCustomerSummary = io.flow.internal.v0.models.SearchCustomerSummary;
24369
24046
  export declare type SearchExperienceSummary = io.flow.internal.v0.models.SearchExperienceSummary;
24370
- export declare type SearchExperimentSummary = io.flow.internal.v0.models.SearchExperimentSummary;
24371
24047
  export declare type SearchItemSummary = io.flow.internal.v0.models.SearchItemSummary;
24372
24048
  export declare type SearchOrderSummary = io.flow.internal.v0.models.SearchOrderSummary;
24373
24049
  export declare type SearchProviderExport = io.flow.internal.v0.models.SearchProviderExport;
@@ -24421,8 +24097,6 @@ export declare type ShopifyMarketsMetricsDeleted = io.flow.internal.v0.models.Sh
24421
24097
  export declare type ShopifyMarketsMetricsUpserted = io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted;
24422
24098
  export declare type ShopifyMarketsOrder = io.flow.internal.v0.models.ShopifyMarketsOrder;
24423
24099
  export declare type ShopifyMarketsOrderDeleted = io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
24424
- export declare type ShopifyMarketsOrderEditSummaryData = io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData;
24425
- export declare type ShopifyMarketsOrderEditSummaryPublished = io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryPublished;
24426
24100
  export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
24427
24101
  export declare type ShopifyMarketsOrderVersionWithShopId = io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId;
24428
24102
  export declare type ShopifyMarketsOrdersMetrics = io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
@@ -24528,6 +24202,7 @@ export declare type SnoozeForm = io.flow.internal.v0.models.SnoozeForm;
24528
24202
  export declare type SnoozeNextActionWith = io.flow.internal.v0.enums.SnoozeNextActionWith;
24529
24203
  export declare type SnoozeSource = io.flow.internal.v0.models.SnoozeSource;
24530
24204
  export declare type SnoozeSourceType = io.flow.internal.v0.enums.SnoozeSourceType;
24205
+ export declare type SourceTypeFilter = io.flow.internal.v0.enums.SourceTypeFilter;
24531
24206
  export declare type SpotRate = io.flow.internal.v0.models.SpotRate;
24532
24207
  export declare type SpotRateDeleted = io.flow.internal.v0.models.SpotRateDeleted;
24533
24208
  export declare type SpotRateMetadata = io.flow.internal.v0.unions.SpotRateMetadata;
@@ -24535,6 +24210,9 @@ export declare type SpotRateMetadataIdentity = io.flow.internal.v0.models.SpotRa
24535
24210
  export declare type SpotRateMetadataRate = io.flow.internal.v0.models.SpotRateMetadataRate;
24536
24211
  export declare type SpotRateUpserted = io.flow.internal.v0.models.SpotRateUpserted;
24537
24212
  export declare type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion;
24213
+ export declare type SppTrackerUpdateRequest = io.flow.internal.v0.models.SppTrackerUpdateRequest;
24214
+ export declare type SppTrackerUpdateRequestDeleted = io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted;
24215
+ export declare type SppTrackerUpdateRequestUpserted = io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted;
24538
24216
  export declare type StandaloneAttachment = io.flow.internal.v0.models.StandaloneAttachment;
24539
24217
  export declare type StandaloneAttachmentDeleted = io.flow.internal.v0.models.StandaloneAttachmentDeleted;
24540
24218
  export declare type StandaloneAttachmentUpserted = io.flow.internal.v0.models.StandaloneAttachmentUpserted;
@@ -24658,10 +24336,12 @@ export declare type TrackingProcessingErrorUpserted = io.flow.internal.v0.models
24658
24336
  export declare type TrackingProcessingFailureClassification = io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
24659
24337
  export declare type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
24660
24338
  export declare type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
24339
+ export declare type TrackingResync = io.flow.internal.v0.models.TrackingResync;
24661
24340
  export declare type TrackingSubscription = io.flow.internal.v0.models.TrackingSubscription;
24662
24341
  export declare type TrackingSubscriptionDeleted = io.flow.internal.v0.models.TrackingSubscriptionDeleted;
24663
24342
  export declare type TrackingSubscriptionUpserted = io.flow.internal.v0.models.TrackingSubscriptionUpserted;
24664
24343
  export declare type TrackingUpserted = io.flow.internal.v0.models.TrackingUpserted;
24344
+ export declare type TrackingWebhook = io.flow.internal.v0.models.TrackingWebhook;
24665
24345
  export declare type Transaction = io.flow.internal.v0.unions.Transaction;
24666
24346
  export declare type TransactionAdjustment = io.flow.internal.v0.models.TransactionAdjustment;
24667
24347
  export declare type TransactionAdjustmentForm = io.flow.internal.v0.models.TransactionAdjustmentForm;