@flowio/types 11.24.88 → 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 +221 -16
- package/dist/api.d.ts +29 -1
- package/package.json +2 -2
- package/src/api-internal.ts +262 -17
- package/src/api.ts +32 -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 {
|
|
@@ -13995,7 +14207,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13995
14207
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
13996
14208
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
13997
14209
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
|
|
13998
|
-
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
|
|
14210
|
+
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
13999
14211
|
type CarrierChargeType = 'label' | 'other';
|
|
14000
14212
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
14001
14213
|
type CarrierValidationStatus = 'success' | 'error';
|
|
@@ -14115,7 +14327,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14115
14327
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
14116
14328
|
type EmptyAttribute = 'irrelevant';
|
|
14117
14329
|
type ErpFileType = 'vendor';
|
|
14118
|
-
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' | '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';
|
|
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';
|
|
14119
14331
|
type ExperienceImportType = 'experience_with_settings';
|
|
14120
14332
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14121
14333
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -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,7 +19961,7 @@ 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;
|
|
19759
|
-
readonly remittance
|
|
19964
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
19760
19965
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
19761
19966
|
readonly sequence_number: number;
|
|
19762
19967
|
readonly posting_cutoff: string;
|
|
@@ -24092,6 +24297,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24092
24297
|
readonly id: string;
|
|
24093
24298
|
}
|
|
24094
24299
|
interface ReportingShipment {
|
|
24300
|
+
readonly remittance?: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
24095
24301
|
readonly carrier: string;
|
|
24096
24302
|
readonly tracking_number?: string;
|
|
24097
24303
|
}
|
|
@@ -24352,7 +24558,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24352
24558
|
readonly id: string;
|
|
24353
24559
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
24354
24560
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
24355
|
-
readonly remittance
|
|
24561
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
24356
24562
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
24357
24563
|
readonly sequence_number: number;
|
|
24358
24564
|
readonly posting_cutoff: string;
|
|
@@ -26311,7 +26517,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26311
26517
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
26312
26518
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
26313
26519
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
26314
|
-
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.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;
|
|
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;
|
|
26315
26521
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
26316
26522
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
26317
26523
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -26492,7 +26698,6 @@ export declare type Backfill = io.flow.internal.v0.models.Backfill;
|
|
|
26492
26698
|
export declare type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
26493
26699
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
26494
26700
|
export declare type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
26495
|
-
export declare type BankPaymentDeleted = io.flow.internal.v0.models.BankPaymentDeleted;
|
|
26496
26701
|
export declare type BankPaymentDeletedV2 = io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
26497
26702
|
export declare type BankPaymentForm = io.flow.internal.v0.models.BankPaymentForm;
|
|
26498
26703
|
export declare type BankPaymentPromiseCompletedMethod = io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod;
|
package/dist/api.d.ts
CHANGED
|
@@ -2053,7 +2053,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2053
2053
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
2054
2054
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
2055
2055
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
2056
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'carrier_charge' | '
|
|
2056
|
+
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';
|
|
2057
2057
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
2058
2058
|
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
2059
2059
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
@@ -2100,6 +2100,9 @@ declare namespace io.flow.v0.models {
|
|
|
2100
2100
|
readonly email_settings: io.flow.v0.models.AbandonedOrderEmailSettings;
|
|
2101
2101
|
readonly status: io.flow.v0.enums.AbandonedOrderSettingStatus;
|
|
2102
2102
|
}
|
|
2103
|
+
interface AccountIdReference {
|
|
2104
|
+
readonly id: string;
|
|
2105
|
+
}
|
|
2103
2106
|
interface AccountOrdersExportType {
|
|
2104
2107
|
readonly discriminator: 'account_orders_export_type';
|
|
2105
2108
|
readonly statement_id?: string;
|
|
@@ -3488,6 +3491,7 @@ declare namespace io.flow.v0.models {
|
|
|
3488
3491
|
interface ChannelTransaction {
|
|
3489
3492
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
3490
3493
|
readonly id: string;
|
|
3494
|
+
readonly account: io.flow.v0.models.AccountIdReference;
|
|
3491
3495
|
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
3492
3496
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
3493
3497
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -4944,6 +4948,25 @@ declare namespace io.flow.v0.models {
|
|
|
4944
4948
|
interface FlowItemIndexMetadata {
|
|
4945
4949
|
readonly status: io.flow.v0.enums.SubcatalogItemStatus;
|
|
4946
4950
|
}
|
|
4951
|
+
interface FlowTransaction {
|
|
4952
|
+
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
4953
|
+
readonly id: string;
|
|
4954
|
+
readonly account: io.flow.v0.models.AccountIdReference;
|
|
4955
|
+
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
4956
|
+
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
4957
|
+
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
4958
|
+
readonly currency: string;
|
|
4959
|
+
readonly source: io.flow.v0.enums.TransactionSource;
|
|
4960
|
+
readonly parent?: io.flow.v0.models.ParentTransactionSummary;
|
|
4961
|
+
readonly gross: number;
|
|
4962
|
+
readonly fees: io.flow.v0.models.FeeDeduction[];
|
|
4963
|
+
readonly withholdings: io.flow.v0.models.WithholdingDeduction[];
|
|
4964
|
+
readonly discounts: io.flow.v0.models.BillingDiscount[];
|
|
4965
|
+
readonly net: number;
|
|
4966
|
+
readonly identifiers: Record<string, string>;
|
|
4967
|
+
readonly created_at: string;
|
|
4968
|
+
readonly updated_at: string;
|
|
4969
|
+
}
|
|
4947
4970
|
interface FraudEmailRule {
|
|
4948
4971
|
readonly id?: string;
|
|
4949
4972
|
readonly email: string;
|
|
@@ -8068,6 +8091,7 @@ declare namespace io.flow.v0.models {
|
|
|
8068
8091
|
}
|
|
8069
8092
|
interface PayoutTransaction {
|
|
8070
8093
|
readonly id: string;
|
|
8094
|
+
readonly account: io.flow.v0.models.AccountIdReference;
|
|
8071
8095
|
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
8072
8096
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
8073
8097
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -10559,6 +10583,7 @@ declare namespace io.flow.v0.models {
|
|
|
10559
10583
|
interface Transaction {
|
|
10560
10584
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
10561
10585
|
readonly id: string;
|
|
10586
|
+
readonly account: io.flow.v0.models.AccountIdReference;
|
|
10562
10587
|
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
10563
10588
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
10564
10589
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -10586,6 +10611,7 @@ declare namespace io.flow.v0.models {
|
|
|
10586
10611
|
readonly label_created_at: string;
|
|
10587
10612
|
readonly carrier_id: string;
|
|
10588
10613
|
readonly carrier_tracking_number: string;
|
|
10614
|
+
readonly revenue_share_percentage: number;
|
|
10589
10615
|
readonly outbound?: io.flow.v0.models.TransactionMetadataCarrierChargeOutbound;
|
|
10590
10616
|
}
|
|
10591
10617
|
interface TransactionMetadataCarrierChargeOutbound {
|
|
@@ -10997,6 +11023,7 @@ export declare type AbandonedOrderPromotionForm = io.flow.v0.models.AbandonedOrd
|
|
|
10997
11023
|
export declare type AbandonedOrderPromotionStatus = io.flow.v0.enums.AbandonedOrderPromotionStatus;
|
|
10998
11024
|
export declare type AbandonedOrderSettingStatus = io.flow.v0.enums.AbandonedOrderSettingStatus;
|
|
10999
11025
|
export declare type AbandonedOrderSettings = io.flow.v0.models.AbandonedOrderSettings;
|
|
11026
|
+
export declare type AccountIdReference = io.flow.v0.models.AccountIdReference;
|
|
11000
11027
|
export declare type AccountOrdersExportType = io.flow.v0.models.AccountOrdersExportType;
|
|
11001
11028
|
export declare type AccountReference = io.flow.v0.models.AccountReference;
|
|
11002
11029
|
export declare type AccountTransactionsExportType = io.flow.v0.models.AccountTransactionsExportType;
|
|
@@ -11566,6 +11593,7 @@ export declare type FlowCenterReference = io.flow.v0.models.FlowCenterReference;
|
|
|
11566
11593
|
export declare type FlowEntity = io.flow.v0.enums.FlowEntity;
|
|
11567
11594
|
export declare type FlowItemIndexMetadata = io.flow.v0.models.FlowItemIndexMetadata;
|
|
11568
11595
|
export declare type FlowRole = io.flow.v0.enums.FlowRole;
|
|
11596
|
+
export declare type FlowTransaction = io.flow.v0.models.FlowTransaction;
|
|
11569
11597
|
export declare type FraudEmailRule = io.flow.v0.models.FraudEmailRule;
|
|
11570
11598
|
export declare type FraudEmailRuleDecision = io.flow.v0.enums.FraudEmailRuleDecision;
|
|
11571
11599
|
export declare type FraudEmailRuleForm = io.flow.v0.models.FraudEmailRuleForm;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.89",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "5fe142f9c051bfc6d8266e2debef0a86210b1e43"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -203,6 +203,223 @@ declare namespace io.flow.invoice.v0.models {
|
|
|
203
203
|
}
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
+
declare namespace io.flow.billing.accounting.v0.models {
|
|
207
|
+
interface Fulfillment {
|
|
208
|
+
readonly id: string;
|
|
209
|
+
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
210
|
+
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
211
|
+
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
212
|
+
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
213
|
+
readonly sequence_number: number;
|
|
214
|
+
readonly posting_cutoff: string;
|
|
215
|
+
readonly trigger: io.flow.billing.accounting.v0.unions.FulfillmentTrigger;
|
|
216
|
+
readonly fulfilled_at: string;
|
|
217
|
+
readonly owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
218
|
+
readonly origin?: io.flow.billing.accounting.v0.models.FulfillmentOrigin;
|
|
219
|
+
readonly business?: io.flow.billing.accounting.v0.models.FulfillmentBusiness;
|
|
220
|
+
readonly completes_order: boolean;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
interface FulfillmentBusiness {
|
|
224
|
+
readonly vat_registration_number: string;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
interface FulfillmentOrigin {
|
|
228
|
+
readonly country: string;
|
|
229
|
+
readonly province_code?: string;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
interface FulfillmentProofExternalFulfillmentProofReference {
|
|
233
|
+
readonly discriminator: 'external_fulfillment';
|
|
234
|
+
readonly id: string;
|
|
235
|
+
readonly carrier_id?: string;
|
|
236
|
+
readonly carrier_service_id?: string;
|
|
237
|
+
readonly carrier_tracking_number?: string;
|
|
238
|
+
readonly label_id?: string;
|
|
239
|
+
readonly created_at?: string;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
interface FulfillmentProofLabelTrackingReference {
|
|
243
|
+
readonly discriminator: 'label_tracking';
|
|
244
|
+
readonly id: string;
|
|
245
|
+
readonly carrier_id?: string;
|
|
246
|
+
readonly carrier_service_id?: string;
|
|
247
|
+
readonly carrier_tracking_number?: string;
|
|
248
|
+
readonly label_id?: string;
|
|
249
|
+
readonly created_at?: string;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
interface FulfillmentProofOrderCombinedShipmentReference {
|
|
253
|
+
readonly discriminator: 'order_combined_shipment';
|
|
254
|
+
readonly id: string;
|
|
255
|
+
readonly carrier_id?: string;
|
|
256
|
+
readonly carrier_service_id?: string;
|
|
257
|
+
readonly carrier_tracking_number?: string;
|
|
258
|
+
readonly label_id?: string;
|
|
259
|
+
readonly created_at?: string;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
interface FulfillmentProofShippingNotificationReference {
|
|
263
|
+
readonly discriminator: 'shipping_notification';
|
|
264
|
+
readonly id: string;
|
|
265
|
+
readonly carrier_id?: string;
|
|
266
|
+
readonly carrier_service_id?: string;
|
|
267
|
+
readonly carrier_tracking_number?: string;
|
|
268
|
+
readonly label_id?: string;
|
|
269
|
+
readonly created_at?: string;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
interface FulfillmentReference {
|
|
273
|
+
readonly id: string;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
interface FulfillmentSubsidyBreakdown {
|
|
277
|
+
readonly tax: number;
|
|
278
|
+
readonly duty: number;
|
|
279
|
+
readonly total: number;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
interface FulfillmentTriggerProof {
|
|
283
|
+
readonly discriminator: 'by_proof';
|
|
284
|
+
readonly proof: io.flow.billing.accounting.v0.unions.FulfillmentProof;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
interface FulfillmentTriggerTime {
|
|
288
|
+
readonly discriminator: 'by_time';
|
|
289
|
+
readonly placeholder?: string;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
interface ItemSummary {
|
|
293
|
+
readonly number: string;
|
|
294
|
+
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
295
|
+
readonly country_of_origin?: string;
|
|
296
|
+
readonly inferred?: boolean;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
interface MerchantFees {
|
|
300
|
+
readonly duty_guarantee: number;
|
|
301
|
+
readonly mor: number;
|
|
302
|
+
readonly fraud: number;
|
|
303
|
+
readonly fx: number;
|
|
304
|
+
readonly processing: number;
|
|
305
|
+
readonly rate_lock: number;
|
|
306
|
+
readonly transfer: number;
|
|
307
|
+
readonly total: number;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
interface MerchantSubsidies {
|
|
311
|
+
readonly fees: io.flow.billing.accounting.v0.models.ShopperFees;
|
|
312
|
+
readonly tax: number;
|
|
313
|
+
readonly duty: number;
|
|
314
|
+
readonly total: number;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
interface MerchantSummary {
|
|
318
|
+
readonly subsidies: io.flow.billing.accounting.v0.models.MerchantSubsidies;
|
|
319
|
+
readonly fees: io.flow.billing.accounting.v0.models.MerchantFees;
|
|
320
|
+
readonly transactions: io.flow.billing.accounting.v0.models.MerchantTransactions;
|
|
321
|
+
readonly total: number;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
interface MerchantTransactions {
|
|
325
|
+
readonly adjustment: number;
|
|
326
|
+
readonly reversal: number;
|
|
327
|
+
readonly tax: number;
|
|
328
|
+
readonly duty: number;
|
|
329
|
+
readonly freight: number;
|
|
330
|
+
readonly total: number;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
interface OrderSummary {
|
|
334
|
+
readonly id: string;
|
|
335
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
336
|
+
readonly number: string;
|
|
337
|
+
readonly type: io.flow.experience.v0.enums.OrderType;
|
|
338
|
+
readonly submitted_at: string;
|
|
339
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
340
|
+
readonly currency: string;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
interface RemittanceResponsibility {
|
|
344
|
+
readonly tax: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
345
|
+
readonly duty: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
interface Return {
|
|
349
|
+
readonly id: string;
|
|
350
|
+
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
351
|
+
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
352
|
+
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
353
|
+
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
354
|
+
readonly sequence_number: number;
|
|
355
|
+
readonly posting_cutoff: string;
|
|
356
|
+
readonly trigger: io.flow.billing.accounting.v0.unions.ReturnTrigger;
|
|
357
|
+
readonly returned_at: string;
|
|
358
|
+
readonly completes_order: boolean;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
interface ReturnTriggerRefund {
|
|
362
|
+
readonly discriminator: 'by_refund';
|
|
363
|
+
readonly refund: io.flow.payment.v0.models.RefundReference;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
interface ShopperFees {
|
|
367
|
+
readonly fuel: number;
|
|
368
|
+
readonly remote_area: number;
|
|
369
|
+
readonly oversize: number;
|
|
370
|
+
readonly ccf: number;
|
|
371
|
+
readonly emergency: number;
|
|
372
|
+
readonly peak: number;
|
|
373
|
+
readonly total: number;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
interface ShopperFreight {
|
|
377
|
+
readonly price: number;
|
|
378
|
+
readonly discount: number;
|
|
379
|
+
readonly tax: number;
|
|
380
|
+
readonly duty: number;
|
|
381
|
+
readonly subsidies: io.flow.billing.accounting.v0.models.FulfillmentSubsidyBreakdown;
|
|
382
|
+
readonly total: number;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
interface ShopperLine {
|
|
386
|
+
readonly item: io.flow.billing.accounting.v0.models.ItemSummary;
|
|
387
|
+
readonly quantity: number;
|
|
388
|
+
readonly unit_price: number;
|
|
389
|
+
readonly price: number;
|
|
390
|
+
readonly discount: number;
|
|
391
|
+
readonly tax: number;
|
|
392
|
+
readonly duty: number;
|
|
393
|
+
readonly subsidies: io.flow.billing.accounting.v0.models.FulfillmentSubsidyBreakdown;
|
|
394
|
+
readonly total: number;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
interface ShopperLines {
|
|
398
|
+
readonly lines: io.flow.billing.accounting.v0.models.ShopperLine[];
|
|
399
|
+
readonly total: number;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
interface ShopperSummary {
|
|
403
|
+
readonly product: io.flow.billing.accounting.v0.models.ShopperLines;
|
|
404
|
+
readonly fees: io.flow.billing.accounting.v0.models.ShopperFees;
|
|
405
|
+
readonly freight: io.flow.billing.accounting.v0.models.ShopperFreight;
|
|
406
|
+
readonly order_discount: number;
|
|
407
|
+
readonly total: number;
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
declare namespace io.flow.billing.accounting.v0.unions {
|
|
412
|
+
type FulfillmentProof =
|
|
413
|
+
| io.flow.billing.accounting.v0.models.FulfillmentProofLabelTrackingReference
|
|
414
|
+
| io.flow.billing.accounting.v0.models.FulfillmentProofShippingNotificationReference
|
|
415
|
+
| io.flow.billing.accounting.v0.models.FulfillmentProofExternalFulfillmentProofReference
|
|
416
|
+
| io.flow.billing.accounting.v0.models.FulfillmentProofOrderCombinedShipmentReference;
|
|
417
|
+
type FulfillmentTrigger =
|
|
418
|
+
| io.flow.billing.accounting.v0.models.FulfillmentTriggerProof
|
|
419
|
+
| io.flow.billing.accounting.v0.models.FulfillmentTriggerTime;
|
|
420
|
+
type ReturnTrigger = io.flow.billing.accounting.v0.models.ReturnTriggerRefund;
|
|
421
|
+
}
|
|
422
|
+
|
|
206
423
|
declare namespace io.flow.RESERVED_WORD_export.v0.enums {
|
|
207
424
|
type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
|
|
208
425
|
type ItemIdentifier = 'item_number' | 'sku';
|
|
@@ -10205,6 +10422,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10205
10422
|
}
|
|
10206
10423
|
|
|
10207
10424
|
interface ReportingShipment {
|
|
10425
|
+
readonly remittance?: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
10208
10426
|
readonly carrier: string;
|
|
10209
10427
|
readonly tracking_number?: string;
|
|
10210
10428
|
}
|
|
@@ -16096,9 +16314,10 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
16096
16314
|
| 'reversal'
|
|
16097
16315
|
| 'shipping_label'
|
|
16098
16316
|
| 'shipping_label_service'
|
|
16317
|
+
| 'shipping_label_revenue_share'
|
|
16099
16318
|
| 'trueup'
|
|
16100
16319
|
| 'carrier_charge'
|
|
16101
|
-
| '
|
|
16320
|
+
| 'carrier_charge_revenue_share'
|
|
16102
16321
|
| 'platform_fee'
|
|
16103
16322
|
| 'tax'
|
|
16104
16323
|
| 'duty'
|
|
@@ -16115,6 +16334,10 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
16115
16334
|
}
|
|
16116
16335
|
|
|
16117
16336
|
declare namespace io.flow.billing.v0.models {
|
|
16337
|
+
interface AccountIdReference {
|
|
16338
|
+
readonly id: string;
|
|
16339
|
+
}
|
|
16340
|
+
|
|
16118
16341
|
interface AccountReference {
|
|
16119
16342
|
readonly id: string;
|
|
16120
16343
|
readonly currency: string;
|
|
@@ -16211,6 +16434,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16211
16434
|
interface ChannelTransaction {
|
|
16212
16435
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
16213
16436
|
readonly id: string;
|
|
16437
|
+
readonly account: io.flow.billing.v0.models.AccountIdReference;
|
|
16214
16438
|
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
16215
16439
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
16216
16440
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -16237,6 +16461,26 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16237
16461
|
readonly description?: string;
|
|
16238
16462
|
}
|
|
16239
16463
|
|
|
16464
|
+
interface FlowTransaction {
|
|
16465
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
16466
|
+
readonly id: string;
|
|
16467
|
+
readonly account: io.flow.billing.v0.models.AccountIdReference;
|
|
16468
|
+
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
16469
|
+
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
16470
|
+
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
16471
|
+
readonly currency: string;
|
|
16472
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
16473
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
16474
|
+
readonly gross: number;
|
|
16475
|
+
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
16476
|
+
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
16477
|
+
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
16478
|
+
readonly net: number;
|
|
16479
|
+
readonly identifiers: Record<string, string>;
|
|
16480
|
+
readonly created_at: string;
|
|
16481
|
+
readonly updated_at: string;
|
|
16482
|
+
}
|
|
16483
|
+
|
|
16240
16484
|
interface OrganizationBankAccount {
|
|
16241
16485
|
readonly id: string;
|
|
16242
16486
|
readonly key: string;
|
|
@@ -16300,6 +16544,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16300
16544
|
|
|
16301
16545
|
interface PayoutTransaction {
|
|
16302
16546
|
readonly id: string;
|
|
16547
|
+
readonly account: io.flow.billing.v0.models.AccountIdReference;
|
|
16303
16548
|
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
16304
16549
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
16305
16550
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -16349,6 +16594,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16349
16594
|
interface Transaction {
|
|
16350
16595
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
16351
16596
|
readonly id: string;
|
|
16597
|
+
readonly account: io.flow.billing.v0.models.AccountIdReference;
|
|
16352
16598
|
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
16353
16599
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
16354
16600
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -16371,6 +16617,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16371
16617
|
readonly label_created_at: string;
|
|
16372
16618
|
readonly carrier_id: string;
|
|
16373
16619
|
readonly carrier_tracking_number: string;
|
|
16620
|
+
readonly revenue_share_percentage: number;
|
|
16374
16621
|
readonly outbound?: io.flow.billing.v0.models.TransactionMetadataCarrierChargeOutbound;
|
|
16375
16622
|
}
|
|
16376
16623
|
|
|
@@ -18439,7 +18686,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18439
18686
|
| 'dtce_with_deminimis'
|
|
18440
18687
|
| 'dtce_merged_with_tax'
|
|
18441
18688
|
| 'dtce_with_inclusive_pricing';
|
|
18442
|
-
type CarrierChargeTransactionType =
|
|
18689
|
+
type CarrierChargeTransactionType =
|
|
18690
|
+
| 'adjustment'
|
|
18691
|
+
| 'reversal'
|
|
18692
|
+
| 'charge'
|
|
18693
|
+
| 'revenue_share';
|
|
18443
18694
|
type CarrierChargeType = 'label' | 'other';
|
|
18444
18695
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
18445
18696
|
type CarrierValidationStatus = 'success' | 'error';
|
|
@@ -18878,7 +19129,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18878
19129
|
| 'processing_transaction_upserted'
|
|
18879
19130
|
| 'processing_transaction_deleted'
|
|
18880
19131
|
| 'bank_payment_upserted'
|
|
18881
|
-
| 'bank_payment_deleted'
|
|
18882
19132
|
| 'bank_payment_upserted_v2'
|
|
18883
19133
|
| 'bank_payment_deleted_v2'
|
|
18884
19134
|
| 'channel_transaction_upserted'
|
|
@@ -19404,7 +19654,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19404
19654
|
| 'shipment_exhausted';
|
|
19405
19655
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
19406
19656
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
19407
|
-
type OrderValidationStatus =
|
|
19657
|
+
type OrderValidationStatus =
|
|
19658
|
+
| 'success'
|
|
19659
|
+
| 'failed'
|
|
19660
|
+
| 'label_created'
|
|
19661
|
+
| 'unresolvable';
|
|
19408
19662
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
19409
19663
|
type OrganizationMetricType =
|
|
19410
19664
|
| 'organization_restriction_snapshot'
|
|
@@ -20446,14 +20700,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20446
20700
|
readonly total: io.flow.common.v0.models.Price;
|
|
20447
20701
|
}
|
|
20448
20702
|
|
|
20449
|
-
interface BankPaymentDeleted {
|
|
20450
|
-
readonly discriminator: 'bank_payment_deleted';
|
|
20451
|
-
readonly event_id: string;
|
|
20452
|
-
readonly timestamp: string;
|
|
20453
|
-
readonly organization: string;
|
|
20454
|
-
readonly bank_payment: io.flow.internal.v0.models.BankPayment;
|
|
20455
|
-
}
|
|
20456
|
-
|
|
20457
20703
|
interface BankPaymentDeletedV2 {
|
|
20458
20704
|
readonly discriminator: 'bank_payment_deleted_v2';
|
|
20459
20705
|
readonly event_id: string;
|
|
@@ -24049,7 +24295,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24049
24295
|
readonly invoice_reference: string;
|
|
24050
24296
|
readonly signature_url: string;
|
|
24051
24297
|
readonly signature_date: string;
|
|
24052
|
-
readonly signature_name
|
|
24298
|
+
readonly signature_name?: string;
|
|
24053
24299
|
readonly line_items: io.flow.internal.v0.models.InvoiceLineItem[];
|
|
24054
24300
|
readonly currency: string;
|
|
24055
24301
|
readonly delivered_duty: string;
|
|
@@ -26102,7 +26348,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26102
26348
|
readonly id: string;
|
|
26103
26349
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
26104
26350
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
26105
|
-
readonly remittance
|
|
26351
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
26106
26352
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
26107
26353
|
readonly sequence_number: number;
|
|
26108
26354
|
readonly posting_cutoff: string;
|
|
@@ -31072,6 +31318,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31072
31318
|
}
|
|
31073
31319
|
|
|
31074
31320
|
interface ReportingShipment {
|
|
31321
|
+
readonly remittance?: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
31075
31322
|
readonly carrier: string;
|
|
31076
31323
|
readonly tracking_number?: string;
|
|
31077
31324
|
}
|
|
@@ -31371,7 +31618,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31371
31618
|
readonly id: string;
|
|
31372
31619
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
31373
31620
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
31374
|
-
readonly remittance
|
|
31621
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
31375
31622
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
31376
31623
|
readonly sequence_number: number;
|
|
31377
31624
|
readonly posting_cutoff: string;
|
|
@@ -34021,7 +34268,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
34021
34268
|
| io.flow.internal.v0.models.ProcessingTransactionUpserted
|
|
34022
34269
|
| io.flow.internal.v0.models.ProcessingTransactionDeleted
|
|
34023
34270
|
| io.flow.internal.v0.models.BankPaymentUpserted
|
|
34024
|
-
| io.flow.internal.v0.models.BankPaymentDeleted
|
|
34025
34271
|
| io.flow.internal.v0.models.BankPaymentUpsertedV2
|
|
34026
34272
|
| io.flow.internal.v0.models.BankPaymentDeletedV2
|
|
34027
34273
|
| io.flow.internal.v0.models.ChannelTransactionUpserted
|
|
@@ -34807,7 +35053,6 @@ export type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
|
34807
35053
|
export type BankAccountReference =
|
|
34808
35054
|
io.flow.internal.v0.models.BankAccountReference;
|
|
34809
35055
|
export type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
34810
|
-
export type BankPaymentDeleted = io.flow.internal.v0.models.BankPaymentDeleted;
|
|
34811
35056
|
export type BankPaymentDeletedV2 =
|
|
34812
35057
|
io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
34813
35058
|
export type BankPaymentForm = io.flow.internal.v0.models.BankPaymentForm;
|
package/src/api.ts
CHANGED
|
@@ -3497,9 +3497,10 @@ declare namespace io.flow.v0.enums {
|
|
|
3497
3497
|
| 'reversal'
|
|
3498
3498
|
| 'shipping_label'
|
|
3499
3499
|
| 'shipping_label_service'
|
|
3500
|
+
| 'shipping_label_revenue_share'
|
|
3500
3501
|
| 'trueup'
|
|
3501
3502
|
| 'carrier_charge'
|
|
3502
|
-
| '
|
|
3503
|
+
| 'carrier_charge_revenue_share'
|
|
3503
3504
|
| 'platform_fee'
|
|
3504
3505
|
| 'tax'
|
|
3505
3506
|
| 'duty'
|
|
@@ -3591,6 +3592,10 @@ declare namespace io.flow.v0.models {
|
|
|
3591
3592
|
readonly status: io.flow.v0.enums.AbandonedOrderSettingStatus;
|
|
3592
3593
|
}
|
|
3593
3594
|
|
|
3595
|
+
interface AccountIdReference {
|
|
3596
|
+
readonly id: string;
|
|
3597
|
+
}
|
|
3598
|
+
|
|
3594
3599
|
interface AccountOrdersExportType {
|
|
3595
3600
|
readonly discriminator: 'account_orders_export_type';
|
|
3596
3601
|
readonly statement_id?: string;
|
|
@@ -5196,6 +5201,7 @@ declare namespace io.flow.v0.models {
|
|
|
5196
5201
|
interface ChannelTransaction {
|
|
5197
5202
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
5198
5203
|
readonly id: string;
|
|
5204
|
+
readonly account: io.flow.v0.models.AccountIdReference;
|
|
5199
5205
|
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
5200
5206
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
5201
5207
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -6898,6 +6904,26 @@ declare namespace io.flow.v0.models {
|
|
|
6898
6904
|
readonly status: io.flow.v0.enums.SubcatalogItemStatus;
|
|
6899
6905
|
}
|
|
6900
6906
|
|
|
6907
|
+
interface FlowTransaction {
|
|
6908
|
+
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
6909
|
+
readonly id: string;
|
|
6910
|
+
readonly account: io.flow.v0.models.AccountIdReference;
|
|
6911
|
+
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
6912
|
+
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
6913
|
+
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
6914
|
+
readonly currency: string;
|
|
6915
|
+
readonly source: io.flow.v0.enums.TransactionSource;
|
|
6916
|
+
readonly parent?: io.flow.v0.models.ParentTransactionSummary;
|
|
6917
|
+
readonly gross: number;
|
|
6918
|
+
readonly fees: io.flow.v0.models.FeeDeduction[];
|
|
6919
|
+
readonly withholdings: io.flow.v0.models.WithholdingDeduction[];
|
|
6920
|
+
readonly discounts: io.flow.v0.models.BillingDiscount[];
|
|
6921
|
+
readonly net: number;
|
|
6922
|
+
readonly identifiers: Record<string, string>;
|
|
6923
|
+
readonly created_at: string;
|
|
6924
|
+
readonly updated_at: string;
|
|
6925
|
+
}
|
|
6926
|
+
|
|
6901
6927
|
interface FraudEmailRule {
|
|
6902
6928
|
readonly id?: string;
|
|
6903
6929
|
readonly email: string;
|
|
@@ -10547,6 +10573,7 @@ declare namespace io.flow.v0.models {
|
|
|
10547
10573
|
|
|
10548
10574
|
interface PayoutTransaction {
|
|
10549
10575
|
readonly id: string;
|
|
10576
|
+
readonly account: io.flow.v0.models.AccountIdReference;
|
|
10550
10577
|
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
10551
10578
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
10552
10579
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -13422,6 +13449,7 @@ declare namespace io.flow.v0.models {
|
|
|
13422
13449
|
interface Transaction {
|
|
13423
13450
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
13424
13451
|
readonly id: string;
|
|
13452
|
+
readonly account: io.flow.v0.models.AccountIdReference;
|
|
13425
13453
|
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
13426
13454
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
13427
13455
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -13451,6 +13479,7 @@ declare namespace io.flow.v0.models {
|
|
|
13451
13479
|
readonly label_created_at: string;
|
|
13452
13480
|
readonly carrier_id: string;
|
|
13453
13481
|
readonly carrier_tracking_number: string;
|
|
13482
|
+
readonly revenue_share_percentage: number;
|
|
13454
13483
|
readonly outbound?: io.flow.v0.models.TransactionMetadataCarrierChargeOutbound;
|
|
13455
13484
|
}
|
|
13456
13485
|
|
|
@@ -14415,6 +14444,7 @@ export type AbandonedOrderPromotionStatus =
|
|
|
14415
14444
|
export type AbandonedOrderSettingStatus =
|
|
14416
14445
|
io.flow.v0.enums.AbandonedOrderSettingStatus;
|
|
14417
14446
|
export type AbandonedOrderSettings = io.flow.v0.models.AbandonedOrderSettings;
|
|
14447
|
+
export type AccountIdReference = io.flow.v0.models.AccountIdReference;
|
|
14418
14448
|
export type AccountOrdersExportType = io.flow.v0.models.AccountOrdersExportType;
|
|
14419
14449
|
export type AccountReference = io.flow.v0.models.AccountReference;
|
|
14420
14450
|
export type AccountTransactionsExportType =
|
|
@@ -15147,6 +15177,7 @@ export type FlowCenterReference = io.flow.v0.models.FlowCenterReference;
|
|
|
15147
15177
|
export type FlowEntity = io.flow.v0.enums.FlowEntity;
|
|
15148
15178
|
export type FlowItemIndexMetadata = io.flow.v0.models.FlowItemIndexMetadata;
|
|
15149
15179
|
export type FlowRole = io.flow.v0.enums.FlowRole;
|
|
15180
|
+
export type FlowTransaction = io.flow.v0.models.FlowTransaction;
|
|
15150
15181
|
export type FraudEmailRule = io.flow.v0.models.FraudEmailRule;
|
|
15151
15182
|
export type FraudEmailRuleDecision = io.flow.v0.enums.FraudEmailRuleDecision;
|
|
15152
15183
|
export type FraudEmailRuleForm = io.flow.v0.models.FraudEmailRuleForm;
|