@flowio/types 11.24.87 → 11.24.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +267 -26
- package/dist/api.d.ts +30 -1
- package/package.json +2 -2
- package/src/api-internal.ts +319 -29
- package/src/api.ts +33 -1
package/dist/api-internal.d.ts
CHANGED
|
@@ -153,6 +153,191 @@ declare namespace io.flow.invoice.v0.models {
|
|
|
153
153
|
readonly value: io.flow.common.v0.models.Price;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
|
+
declare namespace io.flow.billing.accounting.v0.models {
|
|
157
|
+
interface Fulfillment {
|
|
158
|
+
readonly id: string;
|
|
159
|
+
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
160
|
+
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
161
|
+
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
162
|
+
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
163
|
+
readonly sequence_number: number;
|
|
164
|
+
readonly posting_cutoff: string;
|
|
165
|
+
readonly trigger: io.flow.billing.accounting.v0.unions.FulfillmentTrigger;
|
|
166
|
+
readonly fulfilled_at: string;
|
|
167
|
+
readonly owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
168
|
+
readonly origin?: io.flow.billing.accounting.v0.models.FulfillmentOrigin;
|
|
169
|
+
readonly business?: io.flow.billing.accounting.v0.models.FulfillmentBusiness;
|
|
170
|
+
readonly completes_order: boolean;
|
|
171
|
+
}
|
|
172
|
+
interface FulfillmentBusiness {
|
|
173
|
+
readonly vat_registration_number: string;
|
|
174
|
+
}
|
|
175
|
+
interface FulfillmentOrigin {
|
|
176
|
+
readonly country: string;
|
|
177
|
+
readonly province_code?: string;
|
|
178
|
+
}
|
|
179
|
+
interface FulfillmentProofExternalFulfillmentProofReference {
|
|
180
|
+
readonly discriminator: 'external_fulfillment';
|
|
181
|
+
readonly id: string;
|
|
182
|
+
readonly carrier_id?: string;
|
|
183
|
+
readonly carrier_service_id?: string;
|
|
184
|
+
readonly carrier_tracking_number?: string;
|
|
185
|
+
readonly label_id?: string;
|
|
186
|
+
readonly created_at?: string;
|
|
187
|
+
}
|
|
188
|
+
interface FulfillmentProofLabelTrackingReference {
|
|
189
|
+
readonly discriminator: 'label_tracking';
|
|
190
|
+
readonly id: string;
|
|
191
|
+
readonly carrier_id?: string;
|
|
192
|
+
readonly carrier_service_id?: string;
|
|
193
|
+
readonly carrier_tracking_number?: string;
|
|
194
|
+
readonly label_id?: string;
|
|
195
|
+
readonly created_at?: string;
|
|
196
|
+
}
|
|
197
|
+
interface FulfillmentProofOrderCombinedShipmentReference {
|
|
198
|
+
readonly discriminator: 'order_combined_shipment';
|
|
199
|
+
readonly id: string;
|
|
200
|
+
readonly carrier_id?: string;
|
|
201
|
+
readonly carrier_service_id?: string;
|
|
202
|
+
readonly carrier_tracking_number?: string;
|
|
203
|
+
readonly label_id?: string;
|
|
204
|
+
readonly created_at?: string;
|
|
205
|
+
}
|
|
206
|
+
interface FulfillmentProofShippingNotificationReference {
|
|
207
|
+
readonly discriminator: 'shipping_notification';
|
|
208
|
+
readonly id: string;
|
|
209
|
+
readonly carrier_id?: string;
|
|
210
|
+
readonly carrier_service_id?: string;
|
|
211
|
+
readonly carrier_tracking_number?: string;
|
|
212
|
+
readonly label_id?: string;
|
|
213
|
+
readonly created_at?: string;
|
|
214
|
+
}
|
|
215
|
+
interface FulfillmentReference {
|
|
216
|
+
readonly id: string;
|
|
217
|
+
}
|
|
218
|
+
interface FulfillmentSubsidyBreakdown {
|
|
219
|
+
readonly tax: number;
|
|
220
|
+
readonly duty: number;
|
|
221
|
+
readonly total: number;
|
|
222
|
+
}
|
|
223
|
+
interface FulfillmentTriggerProof {
|
|
224
|
+
readonly discriminator: 'by_proof';
|
|
225
|
+
readonly proof: io.flow.billing.accounting.v0.unions.FulfillmentProof;
|
|
226
|
+
}
|
|
227
|
+
interface FulfillmentTriggerTime {
|
|
228
|
+
readonly discriminator: 'by_time';
|
|
229
|
+
readonly placeholder?: string;
|
|
230
|
+
}
|
|
231
|
+
interface ItemSummary {
|
|
232
|
+
readonly number: string;
|
|
233
|
+
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
234
|
+
readonly country_of_origin?: string;
|
|
235
|
+
readonly inferred?: boolean;
|
|
236
|
+
}
|
|
237
|
+
interface MerchantFees {
|
|
238
|
+
readonly duty_guarantee: number;
|
|
239
|
+
readonly mor: number;
|
|
240
|
+
readonly fraud: number;
|
|
241
|
+
readonly fx: number;
|
|
242
|
+
readonly processing: number;
|
|
243
|
+
readonly rate_lock: number;
|
|
244
|
+
readonly transfer: number;
|
|
245
|
+
readonly total: number;
|
|
246
|
+
}
|
|
247
|
+
interface MerchantSubsidies {
|
|
248
|
+
readonly fees: io.flow.billing.accounting.v0.models.ShopperFees;
|
|
249
|
+
readonly tax: number;
|
|
250
|
+
readonly duty: number;
|
|
251
|
+
readonly total: number;
|
|
252
|
+
}
|
|
253
|
+
interface MerchantSummary {
|
|
254
|
+
readonly subsidies: io.flow.billing.accounting.v0.models.MerchantSubsidies;
|
|
255
|
+
readonly fees: io.flow.billing.accounting.v0.models.MerchantFees;
|
|
256
|
+
readonly transactions: io.flow.billing.accounting.v0.models.MerchantTransactions;
|
|
257
|
+
readonly total: number;
|
|
258
|
+
}
|
|
259
|
+
interface MerchantTransactions {
|
|
260
|
+
readonly adjustment: number;
|
|
261
|
+
readonly reversal: number;
|
|
262
|
+
readonly tax: number;
|
|
263
|
+
readonly duty: number;
|
|
264
|
+
readonly freight: number;
|
|
265
|
+
readonly total: number;
|
|
266
|
+
}
|
|
267
|
+
interface OrderSummary {
|
|
268
|
+
readonly id: string;
|
|
269
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
270
|
+
readonly number: string;
|
|
271
|
+
readonly type: io.flow.experience.v0.enums.OrderType;
|
|
272
|
+
readonly submitted_at: string;
|
|
273
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
274
|
+
readonly currency: string;
|
|
275
|
+
}
|
|
276
|
+
interface RemittanceResponsibility {
|
|
277
|
+
readonly tax: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
278
|
+
readonly duty: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
279
|
+
}
|
|
280
|
+
interface Return {
|
|
281
|
+
readonly id: string;
|
|
282
|
+
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
283
|
+
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
284
|
+
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
285
|
+
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
286
|
+
readonly sequence_number: number;
|
|
287
|
+
readonly posting_cutoff: string;
|
|
288
|
+
readonly trigger: io.flow.billing.accounting.v0.unions.ReturnTrigger;
|
|
289
|
+
readonly returned_at: string;
|
|
290
|
+
readonly completes_order: boolean;
|
|
291
|
+
}
|
|
292
|
+
interface ReturnTriggerRefund {
|
|
293
|
+
readonly discriminator: 'by_refund';
|
|
294
|
+
readonly refund: io.flow.payment.v0.models.RefundReference;
|
|
295
|
+
}
|
|
296
|
+
interface ShopperFees {
|
|
297
|
+
readonly fuel: number;
|
|
298
|
+
readonly remote_area: number;
|
|
299
|
+
readonly oversize: number;
|
|
300
|
+
readonly ccf: number;
|
|
301
|
+
readonly emergency: number;
|
|
302
|
+
readonly peak: number;
|
|
303
|
+
readonly total: number;
|
|
304
|
+
}
|
|
305
|
+
interface ShopperFreight {
|
|
306
|
+
readonly price: number;
|
|
307
|
+
readonly discount: number;
|
|
308
|
+
readonly tax: number;
|
|
309
|
+
readonly duty: number;
|
|
310
|
+
readonly subsidies: io.flow.billing.accounting.v0.models.FulfillmentSubsidyBreakdown;
|
|
311
|
+
readonly total: number;
|
|
312
|
+
}
|
|
313
|
+
interface ShopperLine {
|
|
314
|
+
readonly item: io.flow.billing.accounting.v0.models.ItemSummary;
|
|
315
|
+
readonly quantity: number;
|
|
316
|
+
readonly unit_price: number;
|
|
317
|
+
readonly price: number;
|
|
318
|
+
readonly discount: number;
|
|
319
|
+
readonly tax: number;
|
|
320
|
+
readonly duty: number;
|
|
321
|
+
readonly subsidies: io.flow.billing.accounting.v0.models.FulfillmentSubsidyBreakdown;
|
|
322
|
+
readonly total: number;
|
|
323
|
+
}
|
|
324
|
+
interface ShopperLines {
|
|
325
|
+
readonly lines: io.flow.billing.accounting.v0.models.ShopperLine[];
|
|
326
|
+
readonly total: number;
|
|
327
|
+
}
|
|
328
|
+
interface ShopperSummary {
|
|
329
|
+
readonly product: io.flow.billing.accounting.v0.models.ShopperLines;
|
|
330
|
+
readonly fees: io.flow.billing.accounting.v0.models.ShopperFees;
|
|
331
|
+
readonly freight: io.flow.billing.accounting.v0.models.ShopperFreight;
|
|
332
|
+
readonly order_discount: number;
|
|
333
|
+
readonly total: number;
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
declare namespace io.flow.billing.accounting.v0.unions {
|
|
337
|
+
type FulfillmentProof = io.flow.billing.accounting.v0.models.FulfillmentProofLabelTrackingReference | io.flow.billing.accounting.v0.models.FulfillmentProofShippingNotificationReference | io.flow.billing.accounting.v0.models.FulfillmentProofExternalFulfillmentProofReference | io.flow.billing.accounting.v0.models.FulfillmentProofOrderCombinedShipmentReference;
|
|
338
|
+
type FulfillmentTrigger = io.flow.billing.accounting.v0.models.FulfillmentTriggerProof | io.flow.billing.accounting.v0.models.FulfillmentTriggerTime;
|
|
339
|
+
type ReturnTrigger = io.flow.billing.accounting.v0.models.ReturnTriggerRefund;
|
|
340
|
+
}
|
|
156
341
|
declare namespace io.flow.RESERVED_WORD_export.v0.enums {
|
|
157
342
|
type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
|
|
158
343
|
type ItemIdentifier = 'item_number' | 'sku';
|
|
@@ -7601,6 +7786,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7601
7786
|
readonly id: string;
|
|
7602
7787
|
}
|
|
7603
7788
|
interface ReportingShipment {
|
|
7789
|
+
readonly remittance?: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
7604
7790
|
readonly carrier: string;
|
|
7605
7791
|
readonly tracking_number?: string;
|
|
7606
7792
|
}
|
|
@@ -12256,11 +12442,14 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
12256
12442
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
12257
12443
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
|
|
12258
12444
|
type StatementAttachmentType = 'csv';
|
|
12259
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'carrier_charge' | '
|
|
12445
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
12260
12446
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
12261
12447
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
12262
12448
|
}
|
|
12263
12449
|
declare namespace io.flow.billing.v0.models {
|
|
12450
|
+
interface AccountIdReference {
|
|
12451
|
+
readonly id: string;
|
|
12452
|
+
}
|
|
12264
12453
|
interface AccountReference {
|
|
12265
12454
|
readonly id: string;
|
|
12266
12455
|
readonly currency: string;
|
|
@@ -12341,6 +12530,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12341
12530
|
interface ChannelTransaction {
|
|
12342
12531
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
12343
12532
|
readonly id: string;
|
|
12533
|
+
readonly account: io.flow.billing.v0.models.AccountIdReference;
|
|
12344
12534
|
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
12345
12535
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
12346
12536
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -12364,6 +12554,25 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12364
12554
|
readonly amount: number;
|
|
12365
12555
|
readonly description?: string;
|
|
12366
12556
|
}
|
|
12557
|
+
interface FlowTransaction {
|
|
12558
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
12559
|
+
readonly id: string;
|
|
12560
|
+
readonly account: io.flow.billing.v0.models.AccountIdReference;
|
|
12561
|
+
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
12562
|
+
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
12563
|
+
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
12564
|
+
readonly currency: string;
|
|
12565
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
12566
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
12567
|
+
readonly gross: number;
|
|
12568
|
+
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
12569
|
+
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
12570
|
+
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
12571
|
+
readonly net: number;
|
|
12572
|
+
readonly identifiers: Record<string, string>;
|
|
12573
|
+
readonly created_at: string;
|
|
12574
|
+
readonly updated_at: string;
|
|
12575
|
+
}
|
|
12367
12576
|
interface OrganizationBankAccount {
|
|
12368
12577
|
readonly id: string;
|
|
12369
12578
|
readonly key: string;
|
|
@@ -12417,6 +12626,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12417
12626
|
}
|
|
12418
12627
|
interface PayoutTransaction {
|
|
12419
12628
|
readonly id: string;
|
|
12629
|
+
readonly account: io.flow.billing.v0.models.AccountIdReference;
|
|
12420
12630
|
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
12421
12631
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
12422
12632
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -12460,6 +12670,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12460
12670
|
interface Transaction {
|
|
12461
12671
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
12462
12672
|
readonly id: string;
|
|
12673
|
+
readonly account: io.flow.billing.v0.models.AccountIdReference;
|
|
12463
12674
|
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
12464
12675
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
12465
12676
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -12481,6 +12692,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12481
12692
|
readonly label_created_at: string;
|
|
12482
12693
|
readonly carrier_id: string;
|
|
12483
12694
|
readonly carrier_tracking_number: string;
|
|
12695
|
+
readonly revenue_share_percentage: number;
|
|
12484
12696
|
readonly outbound?: io.flow.billing.v0.models.TransactionMetadataCarrierChargeOutbound;
|
|
12485
12697
|
}
|
|
12486
12698
|
interface TransactionMetadataCarrierChargeOutbound {
|
|
@@ -13641,6 +13853,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
13641
13853
|
readonly discriminator: 'merchant_rejected';
|
|
13642
13854
|
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
13643
13855
|
readonly description?: string;
|
|
13856
|
+
readonly deactivate_at?: string;
|
|
13644
13857
|
}
|
|
13645
13858
|
interface OnboardingStateTransition {
|
|
13646
13859
|
readonly id: string;
|
|
@@ -13994,7 +14207,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13994
14207
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
13995
14208
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
13996
14209
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
|
|
13997
|
-
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
|
|
14210
|
+
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
13998
14211
|
type CarrierChargeType = 'label' | 'other';
|
|
13999
14212
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
14000
14213
|
type CarrierValidationStatus = 'success' | 'error';
|
|
@@ -14114,7 +14327,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14114
14327
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
14115
14328
|
type EmptyAttribute = 'irrelevant';
|
|
14116
14329
|
type ErpFileType = 'vendor';
|
|
14117
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_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_deleted' | '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' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_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' | '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' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | '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' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | '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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_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' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_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' | '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' | 'hybris_catalog_items_import_request' | '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' | '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' | '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' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_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' | 'virtual_card_provider_upserted' | 'virtual_card_provider_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' | 'pricing_indicator' | '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' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_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' | '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' | '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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14330
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_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' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_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' | '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' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | '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' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | '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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_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' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_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' | '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' | 'hybris_catalog_items_import_request' | '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' | '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' | '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' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_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' | 'virtual_card_provider_upserted' | 'virtual_card_provider_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' | 'pricing_indicator' | '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' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_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' | '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' | '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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14118
14331
|
type ExperienceImportType = 'experience_with_settings';
|
|
14119
14332
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14120
14333
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14149,7 +14362,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14149
14362
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
14150
14363
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
14151
14364
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
14152
|
-
type LogisticsResponsibility = 'organization' | 'flow';
|
|
14153
14365
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
14154
14366
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
14155
14367
|
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure';
|
|
@@ -14179,7 +14391,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14179
14391
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
14180
14392
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
14181
14393
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
14182
|
-
type OrderValidationStatus = 'success' | 'failed' | 'unresolvable';
|
|
14394
|
+
type OrderValidationStatus = 'success' | 'failed' | 'label_created' | 'unresolvable';
|
|
14183
14395
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
14184
14396
|
type OrganizationMetricType = 'organization_restriction_snapshot' | 'organization_restriction_status';
|
|
14185
14397
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
@@ -14956,13 +15168,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14956
15168
|
readonly attributes?: Record<string, string>;
|
|
14957
15169
|
readonly total: io.flow.common.v0.models.Price;
|
|
14958
15170
|
}
|
|
14959
|
-
interface BankPaymentDeleted {
|
|
14960
|
-
readonly discriminator: 'bank_payment_deleted';
|
|
14961
|
-
readonly event_id: string;
|
|
14962
|
-
readonly timestamp: string;
|
|
14963
|
-
readonly organization: string;
|
|
14964
|
-
readonly bank_payment: io.flow.internal.v0.models.BankPayment;
|
|
14965
|
-
}
|
|
14966
15171
|
interface BankPaymentDeletedV2 {
|
|
14967
15172
|
readonly discriminator: 'bank_payment_deleted_v2';
|
|
14968
15173
|
readonly event_id: string;
|
|
@@ -17973,7 +18178,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17973
18178
|
readonly invoice_reference: string;
|
|
17974
18179
|
readonly signature_url: string;
|
|
17975
18180
|
readonly signature_date: string;
|
|
17976
|
-
readonly signature_name
|
|
18181
|
+
readonly signature_name?: string;
|
|
17977
18182
|
readonly line_items: io.flow.internal.v0.models.InvoiceLineItem[];
|
|
17978
18183
|
readonly currency: string;
|
|
17979
18184
|
readonly delivered_duty: string;
|
|
@@ -19756,12 +19961,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19756
19961
|
readonly id: string;
|
|
19757
19962
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
19758
19963
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
19964
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
19759
19965
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
19760
19966
|
readonly sequence_number: number;
|
|
19761
19967
|
readonly posting_cutoff: string;
|
|
19762
19968
|
readonly trigger: io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
19763
19969
|
readonly fulfilled_at: string;
|
|
19764
|
-
readonly owner: io.flow.internal.v0.enums.
|
|
19970
|
+
readonly owner: io.flow.internal.v0.enums.ResponsibleParty;
|
|
19765
19971
|
readonly origin?: io.flow.internal.v0.models.FulfillmentOrigin;
|
|
19766
19972
|
readonly business?: io.flow.internal.v0.models.FulfillmentBusiness;
|
|
19767
19973
|
readonly completes_order: boolean;
|
|
@@ -22480,24 +22686,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22480
22686
|
readonly order_number: string;
|
|
22481
22687
|
readonly service_id: string;
|
|
22482
22688
|
readonly status: io.flow.internal.v0.enums.OrderValidationStatus;
|
|
22689
|
+
readonly updated_by_user_id: string;
|
|
22690
|
+
}
|
|
22691
|
+
interface OrderValidationError {
|
|
22692
|
+
readonly message: string;
|
|
22693
|
+
readonly reason: io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
22694
|
+
readonly action?: io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
22695
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
22483
22696
|
}
|
|
22484
|
-
interface
|
|
22697
|
+
interface OrderValidationFailure {
|
|
22485
22698
|
readonly id: string;
|
|
22486
22699
|
readonly organization_id: string;
|
|
22487
22700
|
readonly order_number: string;
|
|
22488
22701
|
readonly service_id: string;
|
|
22489
|
-
readonly origin
|
|
22490
|
-
readonly destination
|
|
22702
|
+
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
22703
|
+
readonly destination?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
22491
22704
|
readonly label_request_method: io.flow.label.v0.enums.LabelRequestMethod;
|
|
22492
22705
|
readonly label_trigger_method: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
22493
22706
|
readonly suggested_responsibility: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
22494
22707
|
readonly errors: string[];
|
|
22495
22708
|
}
|
|
22496
|
-
interface
|
|
22497
|
-
readonly
|
|
22498
|
-
readonly
|
|
22499
|
-
readonly
|
|
22500
|
-
readonly
|
|
22709
|
+
interface OrderValidationFailureSummary {
|
|
22710
|
+
readonly organization_id: string;
|
|
22711
|
+
readonly order_number: string;
|
|
22712
|
+
readonly service_id: string;
|
|
22713
|
+
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
22714
|
+
readonly destination?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
22715
|
+
readonly error: string;
|
|
22716
|
+
readonly created_at: string;
|
|
22501
22717
|
}
|
|
22502
22718
|
interface OrganizationAccount {
|
|
22503
22719
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -23409,6 +23625,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23409
23625
|
readonly matching_positive_keywords: string[];
|
|
23410
23626
|
readonly matching_negative_keywords: string[];
|
|
23411
23627
|
readonly updated_by_user_id: string;
|
|
23628
|
+
readonly flagged_for_keywords_at?: string;
|
|
23629
|
+
readonly automatically_restricted_at?: string;
|
|
23630
|
+
readonly manually_reviewed_at?: string;
|
|
23631
|
+
readonly manually_reviewed_by?: string;
|
|
23412
23632
|
}
|
|
23413
23633
|
interface ProductRestrictionRuleDecisionDeleted {
|
|
23414
23634
|
readonly discriminator: 'product_restriction_rule_decision_deleted';
|
|
@@ -23871,6 +24091,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23871
24091
|
readonly discriminator: 'rex';
|
|
23872
24092
|
readonly number: string;
|
|
23873
24093
|
}
|
|
24094
|
+
interface RemittanceResponsibility {
|
|
24095
|
+
readonly tax: io.flow.internal.v0.enums.ResponsibleParty;
|
|
24096
|
+
readonly duty: io.flow.internal.v0.enums.ResponsibleParty;
|
|
24097
|
+
}
|
|
23874
24098
|
interface Report {
|
|
23875
24099
|
readonly id: string;
|
|
23876
24100
|
readonly status: io.flow.internal.v0.enums.ReportStatus;
|
|
@@ -24073,6 +24297,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24073
24297
|
readonly id: string;
|
|
24074
24298
|
}
|
|
24075
24299
|
interface ReportingShipment {
|
|
24300
|
+
readonly remittance?: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
24076
24301
|
readonly carrier: string;
|
|
24077
24302
|
readonly tracking_number?: string;
|
|
24078
24303
|
}
|
|
@@ -24265,6 +24490,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24265
24490
|
interface RestrictionProductSummary {
|
|
24266
24491
|
readonly name: string;
|
|
24267
24492
|
readonly restrictions: io.flow.internal.v0.models.RestrictionItemReviewSummary[];
|
|
24493
|
+
readonly prohibited_regions?: string[];
|
|
24268
24494
|
}
|
|
24269
24495
|
interface RestrictionRule {
|
|
24270
24496
|
readonly id: string;
|
|
@@ -24332,6 +24558,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24332
24558
|
readonly id: string;
|
|
24333
24559
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
24334
24560
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
24561
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
24335
24562
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
24336
24563
|
readonly sequence_number: number;
|
|
24337
24564
|
readonly posting_cutoff: string;
|
|
@@ -25570,12 +25797,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25570
25797
|
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
25571
25798
|
readonly added_on: string;
|
|
25572
25799
|
}
|
|
25800
|
+
interface TamItemDeleted {
|
|
25801
|
+
readonly discriminator: 'tam_item_deleted';
|
|
25802
|
+
readonly event_id: string;
|
|
25803
|
+
readonly timestamp: string;
|
|
25804
|
+
readonly id: string;
|
|
25805
|
+
}
|
|
25573
25806
|
interface TamItemForm {
|
|
25574
25807
|
readonly number: string;
|
|
25575
25808
|
readonly amount: io.flow.common.v0.models.Price;
|
|
25576
25809
|
readonly description?: string;
|
|
25577
25810
|
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
25578
25811
|
}
|
|
25812
|
+
interface TamItemUpserted {
|
|
25813
|
+
readonly discriminator: 'tam_item_upserted';
|
|
25814
|
+
readonly event_id: string;
|
|
25815
|
+
readonly timestamp: string;
|
|
25816
|
+
readonly item: io.flow.internal.v0.models.TamItem;
|
|
25817
|
+
}
|
|
25579
25818
|
interface TariffCodeDuty {
|
|
25580
25819
|
readonly tariff_code: string;
|
|
25581
25820
|
readonly duties: Record<string, io.flow.internal.v0.models.Duties>;
|
|
@@ -26278,7 +26517,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26278
26517
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
26279
26518
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
26280
26519
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
26281
|
-
type Event = 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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | 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.BankPaymentDeleted | 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.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | 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.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.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | 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.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | 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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | 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.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.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.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.HybrisCatalogItemsImportRequest | 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.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.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.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | 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.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | 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.PricingIndicator | 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.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | 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.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.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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
26520
|
+
type Event = 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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | 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.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | 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.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.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | 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.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | 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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | 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.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.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.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.HybrisCatalogItemsImportRequest | 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.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.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.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | 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.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | 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.PricingIndicator | 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.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | 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.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.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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
26282
26521
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
26283
26522
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
26284
26523
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -26459,7 +26698,6 @@ export declare type Backfill = io.flow.internal.v0.models.Backfill;
|
|
|
26459
26698
|
export declare type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
26460
26699
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
26461
26700
|
export declare type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
26462
|
-
export declare type BankPaymentDeleted = io.flow.internal.v0.models.BankPaymentDeleted;
|
|
26463
26701
|
export declare type BankPaymentDeletedV2 = io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
26464
26702
|
export declare type BankPaymentForm = io.flow.internal.v0.models.BankPaymentForm;
|
|
26465
26703
|
export declare type BankPaymentPromiseCompletedMethod = io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod;
|
|
@@ -27832,7 +28070,6 @@ export declare type LocalizedPriceBookItemData = io.flow.internal.v0.models.Loca
|
|
|
27832
28070
|
export declare type LocalizedPriceBookItemDeleted = io.flow.internal.v0.models.LocalizedPriceBookItemDeleted;
|
|
27833
28071
|
export declare type LocalizedPriceBookItemUpserted = io.flow.internal.v0.models.LocalizedPriceBookItemUpserted;
|
|
27834
28072
|
export declare type Location = io.flow.internal.v0.models.Location;
|
|
27835
|
-
export declare type LogisticsResponsibility = io.flow.internal.v0.enums.LogisticsResponsibility;
|
|
27836
28073
|
export declare type Logo = io.flow.internal.v0.models.Logo;
|
|
27837
28074
|
export declare type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
27838
28075
|
export declare type LoyaltyProgramMessage = io.flow.internal.v0.models.LoyaltyProgramMessage;
|
|
@@ -28003,8 +28240,9 @@ export declare type OrderTransactionDeleted = io.flow.internal.v0.models.OrderTr
|
|
|
28003
28240
|
export declare type OrderTransactionType = io.flow.internal.v0.enums.OrderTransactionType;
|
|
28004
28241
|
export declare type OrderTransactionUpserted = io.flow.internal.v0.models.OrderTransactionUpserted;
|
|
28005
28242
|
export declare type OrderValidation = io.flow.internal.v0.models.OrderValidation;
|
|
28006
|
-
export declare type OrderValidationAttempt = io.flow.internal.v0.models.OrderValidationAttempt;
|
|
28007
28243
|
export declare type OrderValidationError = io.flow.internal.v0.models.OrderValidationError;
|
|
28244
|
+
export declare type OrderValidationFailure = io.flow.internal.v0.models.OrderValidationFailure;
|
|
28245
|
+
export declare type OrderValidationFailureSummary = io.flow.internal.v0.models.OrderValidationFailureSummary;
|
|
28008
28246
|
export declare type OrderValidationStatus = io.flow.internal.v0.enums.OrderValidationStatus;
|
|
28009
28247
|
export declare type OrganizationAccount = io.flow.internal.v0.models.OrganizationAccount;
|
|
28010
28248
|
export declare type OrganizationAccountDeleted = io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
@@ -28253,6 +28491,7 @@ export declare type RedirectReason = io.flow.internal.v0.enums.RedirectReason;
|
|
|
28253
28491
|
export declare type RegisteredExporterTariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
28254
28492
|
export declare type RegisteredExporterTariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
28255
28493
|
export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
28494
|
+
export declare type RemittanceResponsibility = io.flow.internal.v0.models.RemittanceResponsibility;
|
|
28256
28495
|
export declare type Report = io.flow.internal.v0.models.Report;
|
|
28257
28496
|
export declare type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
28258
28497
|
export declare type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
@@ -28581,8 +28820,10 @@ export declare type SvitlanaItemUpserted = io.flow.internal.v0.models.SvitlanaIt
|
|
|
28581
28820
|
export declare type SvitlanaTest = io.flow.internal.v0.models.SvitlanaTest;
|
|
28582
28821
|
export declare type SvitlanaType = io.flow.internal.v0.enums.SvitlanaType;
|
|
28583
28822
|
export declare type TamItem = io.flow.internal.v0.models.TamItem;
|
|
28823
|
+
export declare type TamItemDeleted = io.flow.internal.v0.models.TamItemDeleted;
|
|
28584
28824
|
export declare type TamItemForm = io.flow.internal.v0.models.TamItemForm;
|
|
28585
28825
|
export declare type TamItemType = io.flow.internal.v0.enums.TamItemType;
|
|
28826
|
+
export declare type TamItemUpserted = io.flow.internal.v0.models.TamItemUpserted;
|
|
28586
28827
|
export declare type TariffCodeDuty = io.flow.internal.v0.models.TariffCodeDuty;
|
|
28587
28828
|
export declare type TariffCodesExport = io.flow.internal.v0.models.TariffCodesExport;
|
|
28588
28829
|
export declare type TariffEligibility = io.flow.internal.v0.models.TariffEligibility;
|