@flowio/api-internal-prop-types 9.24.89 → 9.24.90
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/lib/api-internal.d.ts +194 -110
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +194 -110
- package/src/api-internal.js +327 -210
package/lib/api-internal.d.ts
CHANGED
|
@@ -311,6 +311,11 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
311
311
|
readonly 'total': number;
|
|
312
312
|
}
|
|
313
313
|
|
|
314
|
+
interface OrderReference {
|
|
315
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
316
|
+
readonly 'number': string;
|
|
317
|
+
}
|
|
318
|
+
|
|
314
319
|
interface OrderSummary {
|
|
315
320
|
readonly 'id': string;
|
|
316
321
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
@@ -321,6 +326,16 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
321
326
|
readonly 'currency': string;
|
|
322
327
|
}
|
|
323
328
|
|
|
329
|
+
interface PendingOrder {
|
|
330
|
+
readonly 'id': string;
|
|
331
|
+
readonly 'order': io.flow.billing.accounting.v0.models.OrderSummary;
|
|
332
|
+
readonly 'shopper': io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
333
|
+
readonly 'merchant': io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
334
|
+
readonly 'remittance': io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
335
|
+
readonly 'sequence_number': number;
|
|
336
|
+
readonly 'posting_cutoff': string;
|
|
337
|
+
}
|
|
338
|
+
|
|
324
339
|
interface RemittanceResponsibility {
|
|
325
340
|
readonly 'tax': io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
326
341
|
readonly 'duty': io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
@@ -330,8 +345,8 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
330
345
|
readonly 'id': string;
|
|
331
346
|
readonly 'order': io.flow.billing.accounting.v0.models.OrderSummary;
|
|
332
347
|
readonly 'shopper': io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
333
|
-
readonly 'remittance': io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
334
348
|
readonly 'merchant': io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
349
|
+
readonly 'remittance': io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
335
350
|
readonly 'sequence_number': number;
|
|
336
351
|
readonly 'posting_cutoff': string;
|
|
337
352
|
readonly 'trigger': io.flow.billing.accounting.v0.unions.ReturnTrigger;
|
|
@@ -2342,6 +2357,8 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2342
2357
|
readonly 'fx_fee_description'?: string;
|
|
2343
2358
|
readonly 'duty_guarantee_fee'?: number;
|
|
2344
2359
|
readonly 'duty_guarantee_fee_description'?: string;
|
|
2360
|
+
readonly 'negative_balance_fee'?: number;
|
|
2361
|
+
readonly 'negative_balance_fee_description'?: string;
|
|
2345
2362
|
}
|
|
2346
2363
|
|
|
2347
2364
|
interface BillingCsvProcessingTransactionDelivery {
|
|
@@ -3603,7 +3620,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
3603
3620
|
type Direction = 'outbound' | 'return';
|
|
3604
3621
|
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
|
|
3605
3622
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3606
|
-
type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
|
|
3623
|
+
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
3607
3624
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3608
3625
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
3609
3626
|
}
|
|
@@ -8695,7 +8712,7 @@ declare namespace io.flow.billing.reporting.v0.enums {
|
|
|
8695
8712
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
8696
8713
|
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment';
|
|
8697
8714
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
8698
|
-
type RevenueRecordType = 'sales' | 'refund';
|
|
8715
|
+
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
8699
8716
|
}
|
|
8700
8717
|
|
|
8701
8718
|
declare namespace io.flow.billing.reporting.v0.models {
|
|
@@ -12203,7 +12220,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
12203
12220
|
|
|
12204
12221
|
declare namespace io.flow.trueup.v0.enums {
|
|
12205
12222
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
12206
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | '
|
|
12223
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion';
|
|
12207
12224
|
}
|
|
12208
12225
|
|
|
12209
12226
|
declare namespace io.flow.trueup.v0.models {
|
|
@@ -13297,15 +13314,14 @@ declare namespace io.flow.item.v0.models {
|
|
|
13297
13314
|
}
|
|
13298
13315
|
|
|
13299
13316
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
13317
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
13300
13318
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
13301
|
-
type AccountStatus = 'active' | 'inactive';
|
|
13302
13319
|
type AccountType = 'channel' | 'organization';
|
|
13303
13320
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
13304
13321
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
13305
13322
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
13306
13323
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
13307
13324
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
13308
|
-
type BillingStatementBatchFileKey = 'summary';
|
|
13309
13325
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
13310
13326
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
|
|
13311
13327
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -13361,6 +13377,17 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13361
13377
|
readonly 'country': string;
|
|
13362
13378
|
}
|
|
13363
13379
|
|
|
13380
|
+
interface AccountPaymentHold {
|
|
13381
|
+
readonly 'id': string;
|
|
13382
|
+
readonly 'account': io.flow.billing.internal.v0.models.SimpleAccountReference;
|
|
13383
|
+
readonly 'reason': io.flow.billing.internal.v0.enums.AccountPaymentHoldReason;
|
|
13384
|
+
}
|
|
13385
|
+
|
|
13386
|
+
interface AccountPaymentHoldForm {
|
|
13387
|
+
readonly 'account_id': string;
|
|
13388
|
+
readonly 'reason': io.flow.billing.internal.v0.enums.AccountPaymentHoldReason;
|
|
13389
|
+
}
|
|
13390
|
+
|
|
13364
13391
|
interface AccountProcessingRateForm {
|
|
13365
13392
|
readonly 'query': string;
|
|
13366
13393
|
readonly 'capture': number;
|
|
@@ -13595,20 +13622,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13595
13622
|
readonly 'url': string;
|
|
13596
13623
|
}
|
|
13597
13624
|
|
|
13598
|
-
interface BillingStatementBatch {
|
|
13599
|
-
readonly 'id': string;
|
|
13600
|
-
}
|
|
13601
|
-
|
|
13602
|
-
interface BillingStatementBatchReference {
|
|
13603
|
-
readonly 'id': string;
|
|
13604
|
-
}
|
|
13605
|
-
|
|
13606
|
-
interface BillingStatementBatchStatement {
|
|
13607
|
-
readonly 'id': string;
|
|
13608
|
-
readonly 'batch': io.flow.billing.internal.v0.models.BillingStatementBatchReference;
|
|
13609
|
-
readonly 'statement': io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
13610
|
-
}
|
|
13611
|
-
|
|
13612
13625
|
interface BillingStatementReference {
|
|
13613
13626
|
readonly 'id': string;
|
|
13614
13627
|
}
|
|
@@ -13682,7 +13695,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13682
13695
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
13683
13696
|
readonly 'id': string;
|
|
13684
13697
|
readonly 'key'?: string;
|
|
13685
|
-
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
13686
13698
|
readonly 'origin'?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
13687
13699
|
readonly 'currency': string;
|
|
13688
13700
|
readonly 'updated_at': string;
|
|
@@ -13873,6 +13885,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13873
13885
|
readonly 'fx'?: io.flow.billing.internal.v0.models.Fee;
|
|
13874
13886
|
readonly 'duty_guarantee'?: io.flow.billing.internal.v0.models.Fee;
|
|
13875
13887
|
readonly 'transfer'?: io.flow.billing.internal.v0.models.Fee;
|
|
13888
|
+
readonly 'negative_balance'?: io.flow.billing.internal.v0.models.Fee;
|
|
13876
13889
|
}
|
|
13877
13890
|
|
|
13878
13891
|
interface FinanceBankAccount {
|
|
@@ -13899,7 +13912,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13899
13912
|
readonly 'source': io.flow.billing.internal.v0.models.AccountSource;
|
|
13900
13913
|
readonly 'id': string;
|
|
13901
13914
|
readonly 'key'?: string;
|
|
13902
|
-
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
13903
13915
|
readonly 'origin'?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
13904
13916
|
readonly 'currency': string;
|
|
13905
13917
|
readonly 'updated_at': string;
|
|
@@ -13914,10 +13926,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13914
13926
|
readonly 'created_at': string;
|
|
13915
13927
|
}
|
|
13916
13928
|
|
|
13917
|
-
interface FlowAccountStatusForm {
|
|
13918
|
-
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
13919
|
-
}
|
|
13920
|
-
|
|
13921
13929
|
interface FlowBillingStatement {
|
|
13922
13930
|
readonly 'id': string;
|
|
13923
13931
|
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
@@ -14096,7 +14104,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
14096
14104
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
14097
14105
|
readonly 'id': string;
|
|
14098
14106
|
readonly 'key'?: string;
|
|
14099
|
-
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
14100
14107
|
readonly 'origin'?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
14101
14108
|
readonly 'currency': string;
|
|
14102
14109
|
readonly 'updated_at': string;
|
|
@@ -16449,8 +16456,8 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16449
16456
|
}
|
|
16450
16457
|
|
|
16451
16458
|
declare namespace io.flow.internal.v0.enums {
|
|
16459
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
16452
16460
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
16453
|
-
type AccountStatus = 'active' | 'inactive';
|
|
16454
16461
|
type AccountType = 'channel' | 'organization';
|
|
16455
16462
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
16456
16463
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -16461,9 +16468,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16461
16468
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
16462
16469
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
16463
16470
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
16464
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | '
|
|
16471
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total';
|
|
16465
16472
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
16466
|
-
type BillingStatementBatchFileKey = 'summary';
|
|
16467
16473
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
16468
16474
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
|
|
16469
16475
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
@@ -16483,7 +16489,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16483
16489
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
16484
16490
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
16485
16491
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
16486
|
-
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery';
|
|
16492
|
+
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge';
|
|
16487
16493
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
16488
16494
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
16489
16495
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -16590,7 +16596,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16590
16596
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
16591
16597
|
type EmptyAttribute = 'irrelevant';
|
|
16592
16598
|
type ErpFileType = 'vendor';
|
|
16593
|
-
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' | 'matias_item_upserted' | 'matias_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';
|
|
16599
|
+
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' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | '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' | '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' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | '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' | 'matias_item_upserted' | 'matias_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
16594
16600
|
type ExperienceImportType = 'experience_with_settings';
|
|
16595
16601
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
16596
16602
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -16696,7 +16702,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16696
16702
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
16697
16703
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
16698
16704
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
16699
|
-
type RevenueRecordType = 'sales' | 'refund';
|
|
16705
|
+
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
16700
16706
|
type RiskCheck = 'three_d_secure';
|
|
16701
16707
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
16702
16708
|
type Scope = 'organization' | 'global';
|
|
@@ -16720,7 +16726,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16720
16726
|
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
16721
16727
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
16722
16728
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
16723
|
-
type SnoozeSourceType = '
|
|
16729
|
+
type SnoozeSourceType = 'task';
|
|
16724
16730
|
type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
|
|
16725
16731
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
16726
16732
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
@@ -16736,6 +16742,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16736
16742
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
16737
16743
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
16738
16744
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
16745
|
+
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
16739
16746
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
16740
16747
|
type TransferMethod = 'ach';
|
|
16741
16748
|
type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
|
|
@@ -16823,6 +16830,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16823
16830
|
readonly 'country': string;
|
|
16824
16831
|
}
|
|
16825
16832
|
|
|
16833
|
+
interface AccountPaymentHold {
|
|
16834
|
+
readonly 'id': string;
|
|
16835
|
+
readonly 'account': io.flow.internal.v0.models.SimpleAccountReference;
|
|
16836
|
+
readonly 'reason': io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
16837
|
+
}
|
|
16838
|
+
|
|
16839
|
+
interface AccountPaymentHoldForm {
|
|
16840
|
+
readonly 'account_id': string;
|
|
16841
|
+
readonly 'reason': io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
16842
|
+
}
|
|
16843
|
+
|
|
16826
16844
|
interface AccountProcessingRateForm {
|
|
16827
16845
|
readonly 'query': string;
|
|
16828
16846
|
readonly 'capture': number;
|
|
@@ -16962,6 +16980,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16962
16980
|
readonly 'account': io.flow.internal.v0.models.FlowAccount;
|
|
16963
16981
|
}
|
|
16964
16982
|
|
|
16983
|
+
interface AccountingFulfillmentMetadata {
|
|
16984
|
+
readonly 'discriminator': 'accounting_fulfillment_metadata';
|
|
16985
|
+
readonly 'order': io.flow.internal.v0.models.OrderReference;
|
|
16986
|
+
readonly 'proof': io.flow.internal.v0.unions.FulfillmentProof;
|
|
16987
|
+
}
|
|
16988
|
+
|
|
16965
16989
|
interface ActionQuantity {
|
|
16966
16990
|
readonly 'action': io.flow.internal.v0.enums.ItemQuantityAction;
|
|
16967
16991
|
readonly 'quantity': number;
|
|
@@ -17729,48 +17753,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17729
17753
|
readonly 'url': string;
|
|
17730
17754
|
}
|
|
17731
17755
|
|
|
17732
|
-
interface BillingStatementBatch {
|
|
17733
|
-
readonly 'id': string;
|
|
17734
|
-
}
|
|
17735
|
-
|
|
17736
|
-
interface BillingStatementBatchDeleted {
|
|
17737
|
-
readonly 'discriminator': 'billing_statement_batch_deleted';
|
|
17738
|
-
readonly 'event_id': string;
|
|
17739
|
-
readonly 'timestamp': string;
|
|
17740
|
-
readonly 'id': string;
|
|
17741
|
-
}
|
|
17742
|
-
|
|
17743
|
-
interface BillingStatementBatchReference {
|
|
17744
|
-
readonly 'id': string;
|
|
17745
|
-
}
|
|
17746
|
-
|
|
17747
|
-
interface BillingStatementBatchStatement {
|
|
17748
|
-
readonly 'id': string;
|
|
17749
|
-
readonly 'batch': io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
17750
|
-
readonly 'statement': io.flow.internal.v0.models.BillingStatementReference;
|
|
17751
|
-
}
|
|
17752
|
-
|
|
17753
|
-
interface BillingStatementBatchStatementDeleted {
|
|
17754
|
-
readonly 'discriminator': 'billing_statement_batch_statement_deleted';
|
|
17755
|
-
readonly 'event_id': string;
|
|
17756
|
-
readonly 'timestamp': string;
|
|
17757
|
-
readonly 'id': string;
|
|
17758
|
-
}
|
|
17759
|
-
|
|
17760
|
-
interface BillingStatementBatchStatementUpserted {
|
|
17761
|
-
readonly 'discriminator': 'billing_statement_batch_statement_upserted';
|
|
17762
|
-
readonly 'event_id': string;
|
|
17763
|
-
readonly 'timestamp': string;
|
|
17764
|
-
readonly 'billing_statement_batch_statement': io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
17765
|
-
}
|
|
17766
|
-
|
|
17767
|
-
interface BillingStatementBatchUpserted {
|
|
17768
|
-
readonly 'discriminator': 'billing_statement_batch_upserted';
|
|
17769
|
-
readonly 'event_id': string;
|
|
17770
|
-
readonly 'timestamp': string;
|
|
17771
|
-
readonly 'billing_statement_batch': io.flow.internal.v0.models.BillingStatementBatch;
|
|
17772
|
-
}
|
|
17773
|
-
|
|
17774
17756
|
interface BillingStatementDeleted {
|
|
17775
17757
|
readonly 'discriminator': 'billing_statement_deleted';
|
|
17776
17758
|
readonly 'event_id': string;
|
|
@@ -18331,6 +18313,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18331
18313
|
interface CarrierChargeFormOther {
|
|
18332
18314
|
readonly 'discriminator': 'other';
|
|
18333
18315
|
readonly 'id': string;
|
|
18316
|
+
readonly 'label_invoice_request_id'?: string;
|
|
18334
18317
|
readonly 'reason': io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
18335
18318
|
readonly 'organization_id': string;
|
|
18336
18319
|
readonly 'order_number': string;
|
|
@@ -18503,7 +18486,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18503
18486
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
18504
18487
|
readonly 'id': string;
|
|
18505
18488
|
readonly 'key'?: string;
|
|
18506
|
-
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
18507
18489
|
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
18508
18490
|
readonly 'currency': string;
|
|
18509
18491
|
readonly 'updated_at': string;
|
|
@@ -22970,7 +22952,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22970
22952
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
22971
22953
|
readonly 'id': string;
|
|
22972
22954
|
readonly 'key'?: string;
|
|
22973
|
-
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
22974
22955
|
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
22975
22956
|
readonly 'currency': string;
|
|
22976
22957
|
readonly 'updated_at': string;
|
|
@@ -22985,10 +22966,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22985
22966
|
readonly 'created_at': string;
|
|
22986
22967
|
}
|
|
22987
22968
|
|
|
22988
|
-
interface FlowAccountStatusForm {
|
|
22989
|
-
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
22990
|
-
}
|
|
22991
|
-
|
|
22992
22969
|
interface FlowBillingStatement {
|
|
22993
22970
|
readonly 'id': string;
|
|
22994
22971
|
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
@@ -23289,6 +23266,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23289
23266
|
readonly 'cancelled_lines': io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
23290
23267
|
}
|
|
23291
23268
|
|
|
23269
|
+
interface FulfillmentDeleted {
|
|
23270
|
+
readonly 'discriminator': 'fulfillment_deleted';
|
|
23271
|
+
readonly 'event_id': string;
|
|
23272
|
+
readonly 'timestamp': string;
|
|
23273
|
+
readonly 'organization': string;
|
|
23274
|
+
readonly 'id': string;
|
|
23275
|
+
}
|
|
23276
|
+
|
|
23292
23277
|
interface FulfillmentInternalExperienceReference {
|
|
23293
23278
|
readonly 'id': string;
|
|
23294
23279
|
readonly 'key': string;
|
|
@@ -23388,6 +23373,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23388
23373
|
readonly 'placeholder'?: string;
|
|
23389
23374
|
}
|
|
23390
23375
|
|
|
23376
|
+
interface FulfillmentUpserted {
|
|
23377
|
+
readonly 'discriminator': 'fulfillment_upserted';
|
|
23378
|
+
readonly 'event_id': string;
|
|
23379
|
+
readonly 'timestamp': string;
|
|
23380
|
+
readonly 'organization': string;
|
|
23381
|
+
readonly 'fulfillment': io.flow.internal.v0.models.Fulfillment;
|
|
23382
|
+
}
|
|
23383
|
+
|
|
23391
23384
|
interface FxFee {
|
|
23392
23385
|
readonly 'base': io.flow.common.v0.models.Money;
|
|
23393
23386
|
readonly 'local': io.flow.common.v0.models.Money;
|
|
@@ -25045,6 +25038,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25045
25038
|
readonly 'emergency'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25046
25039
|
readonly 'peak'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25047
25040
|
readonly 'address_correction'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25041
|
+
readonly 'security'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25042
|
+
readonly 'eei_filing'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25043
|
+
readonly 'fixed_ddp'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25044
|
+
readonly 'fixed_currency_conversion'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
25048
25045
|
}
|
|
25049
25046
|
|
|
25050
25047
|
interface LabelSurchargeSingleForm {
|
|
@@ -26306,6 +26303,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26306
26303
|
readonly 'data': io.flow.internal.v0.models.OrderRatesDataV3;
|
|
26307
26304
|
}
|
|
26308
26305
|
|
|
26306
|
+
interface OrderReference {
|
|
26307
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
26308
|
+
readonly 'number': string;
|
|
26309
|
+
}
|
|
26310
|
+
|
|
26309
26311
|
interface OrderRevenueRegionChart {
|
|
26310
26312
|
readonly 'total': io.flow.common.v0.models.Price;
|
|
26311
26313
|
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
@@ -26396,6 +26398,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26396
26398
|
readonly 'service_id': string;
|
|
26397
26399
|
readonly 'status': io.flow.internal.v0.enums.OrderValidationStatus;
|
|
26398
26400
|
readonly 'updated_by_user_id': string;
|
|
26401
|
+
readonly 'created_at': string;
|
|
26402
|
+
readonly 'resolved_at'?: string;
|
|
26403
|
+
}
|
|
26404
|
+
|
|
26405
|
+
interface OrderValidationDeleted {
|
|
26406
|
+
readonly 'discriminator': 'order_validation_deleted';
|
|
26407
|
+
readonly 'event_id': string;
|
|
26408
|
+
readonly 'timestamp': string;
|
|
26409
|
+
readonly 'organization': string;
|
|
26410
|
+
readonly 'id': string;
|
|
26399
26411
|
}
|
|
26400
26412
|
|
|
26401
26413
|
interface OrderValidationError {
|
|
@@ -26418,6 +26430,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26418
26430
|
readonly 'errors': string[];
|
|
26419
26431
|
}
|
|
26420
26432
|
|
|
26433
|
+
interface OrderValidationFailureDeleted {
|
|
26434
|
+
readonly 'discriminator': 'order_validation_failure_deleted';
|
|
26435
|
+
readonly 'event_id': string;
|
|
26436
|
+
readonly 'timestamp': string;
|
|
26437
|
+
readonly 'organization': string;
|
|
26438
|
+
readonly 'id': string;
|
|
26439
|
+
}
|
|
26440
|
+
|
|
26421
26441
|
interface OrderValidationFailureSummary {
|
|
26422
26442
|
readonly 'organization_id': string;
|
|
26423
26443
|
readonly 'order_number': string;
|
|
@@ -26428,11 +26448,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26428
26448
|
readonly 'created_at': string;
|
|
26429
26449
|
}
|
|
26430
26450
|
|
|
26451
|
+
interface OrderValidationFailureUpserted {
|
|
26452
|
+
readonly 'discriminator': 'order_validation_failure_upserted';
|
|
26453
|
+
readonly 'event_id': string;
|
|
26454
|
+
readonly 'timestamp': string;
|
|
26455
|
+
readonly 'organization': string;
|
|
26456
|
+
readonly 'order_validation_failure': io.flow.internal.v0.models.OrderValidationFailure;
|
|
26457
|
+
}
|
|
26458
|
+
|
|
26459
|
+
interface OrderValidationUpserted {
|
|
26460
|
+
readonly 'discriminator': 'order_validation_upserted';
|
|
26461
|
+
readonly 'event_id': string;
|
|
26462
|
+
readonly 'timestamp': string;
|
|
26463
|
+
readonly 'organization': string;
|
|
26464
|
+
readonly 'order_validation': io.flow.internal.v0.models.OrderValidation;
|
|
26465
|
+
}
|
|
26466
|
+
|
|
26431
26467
|
interface OrganizationAccount {
|
|
26432
26468
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
26433
26469
|
readonly 'id': string;
|
|
26434
26470
|
readonly 'key'?: string;
|
|
26435
|
-
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
26436
26471
|
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
26437
26472
|
readonly 'currency': string;
|
|
26438
26473
|
readonly 'updated_at': string;
|
|
@@ -27188,6 +27223,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27188
27223
|
readonly 'statement': io.flow.internal.v0.models.BillingStatementReference;
|
|
27189
27224
|
}
|
|
27190
27225
|
|
|
27226
|
+
interface PendingOrder {
|
|
27227
|
+
readonly 'id': string;
|
|
27228
|
+
readonly 'order': io.flow.internal.v0.models.OrderSummary;
|
|
27229
|
+
readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
|
|
27230
|
+
readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
|
|
27231
|
+
readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
|
|
27232
|
+
readonly 'sequence_number': number;
|
|
27233
|
+
readonly 'posting_cutoff': string;
|
|
27234
|
+
}
|
|
27235
|
+
|
|
27191
27236
|
interface PhraseClassified {
|
|
27192
27237
|
readonly 'event_id': string;
|
|
27193
27238
|
readonly 'timestamp': string;
|
|
@@ -27522,20 +27567,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27522
27567
|
readonly 'shipping_notification_id': string;
|
|
27523
27568
|
}
|
|
27524
27569
|
|
|
27525
|
-
interface QueuedRecord {
|
|
27526
|
-
readonly 'type': string;
|
|
27527
|
-
readonly 'type_id': string;
|
|
27528
|
-
readonly 'source_type'?: string;
|
|
27529
|
-
readonly 'source_id'?: string;
|
|
27530
|
-
readonly 'environment'?: string;
|
|
27531
|
-
readonly 'created_at': string;
|
|
27532
|
-
readonly 'num_attempts': number;
|
|
27533
|
-
readonly 'next_attempt_at': string;
|
|
27534
|
-
readonly 'errors'?: string[];
|
|
27535
|
-
readonly 'stacktrace'?: string;
|
|
27536
|
-
readonly 'snooze_id'?: string;
|
|
27537
|
-
}
|
|
27538
|
-
|
|
27539
27570
|
interface Quote {
|
|
27540
27571
|
readonly 'id': string;
|
|
27541
27572
|
readonly 'base': string;
|
|
@@ -28553,8 +28584,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28553
28584
|
readonly 'id': string;
|
|
28554
28585
|
readonly 'order': io.flow.internal.v0.models.OrderSummary;
|
|
28555
28586
|
readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
|
|
28556
|
-
readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
|
|
28557
28587
|
readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
|
|
28588
|
+
readonly 'remittance': io.flow.internal.v0.models.RemittanceResponsibility;
|
|
28558
28589
|
readonly 'sequence_number': number;
|
|
28559
28590
|
readonly 'posting_cutoff': string;
|
|
28560
28591
|
readonly 'trigger': io.flow.internal.v0.unions.ReturnTrigger;
|
|
@@ -29651,6 +29682,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29651
29682
|
readonly 'attachment': io.flow.internal.v0.models.StandaloneAttachment;
|
|
29652
29683
|
}
|
|
29653
29684
|
|
|
29685
|
+
interface StatementCreationMetadata {
|
|
29686
|
+
readonly 'discriminator': 'statement_creation_metadata';
|
|
29687
|
+
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
29688
|
+
}
|
|
29689
|
+
|
|
29654
29690
|
interface StoreConnection {
|
|
29655
29691
|
readonly 'organization'?: io.flow.common.v0.models.OrganizationReference;
|
|
29656
29692
|
readonly 'id': string;
|
|
@@ -30034,6 +30070,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30034
30070
|
readonly 'data': io.flow.internal.v0.unions.TariffEligibilityData;
|
|
30035
30071
|
}
|
|
30036
30072
|
|
|
30073
|
+
interface Task {
|
|
30074
|
+
readonly 'type': string;
|
|
30075
|
+
readonly 'type_id': string;
|
|
30076
|
+
readonly 'source_type'?: string;
|
|
30077
|
+
readonly 'source_id'?: string;
|
|
30078
|
+
readonly 'environment'?: string;
|
|
30079
|
+
readonly 'created_at': string;
|
|
30080
|
+
readonly 'num_attempts': number;
|
|
30081
|
+
readonly 'next_attempt_at': string;
|
|
30082
|
+
readonly 'errors'?: string[];
|
|
30083
|
+
readonly 'stacktrace'?: string;
|
|
30084
|
+
readonly 'snooze_id'?: string;
|
|
30085
|
+
}
|
|
30086
|
+
|
|
30037
30087
|
interface TaskCount {
|
|
30038
30088
|
readonly 'discriminator': string;
|
|
30039
30089
|
readonly 'count': number;
|
|
@@ -30335,6 +30385,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30335
30385
|
readonly 'tracking_label': io.flow.internal.v0.models.ExportTrackingLabel;
|
|
30336
30386
|
}
|
|
30337
30387
|
|
|
30388
|
+
interface TrackingProcessingError {
|
|
30389
|
+
readonly 'id': string;
|
|
30390
|
+
readonly 'aftership_webhook_id': string;
|
|
30391
|
+
readonly 'carrier_id': string;
|
|
30392
|
+
readonly 'carrier_tracking_number': string;
|
|
30393
|
+
readonly 'organization_id'?: string;
|
|
30394
|
+
readonly 'tracking_label_id'?: string;
|
|
30395
|
+
readonly 'errors': string[];
|
|
30396
|
+
readonly 'failure_classification': io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
30397
|
+
}
|
|
30398
|
+
|
|
30399
|
+
interface TrackingProcessingErrorDeleted {
|
|
30400
|
+
readonly 'discriminator': 'tracking_processing_error_deleted';
|
|
30401
|
+
readonly 'event_id': string;
|
|
30402
|
+
readonly 'timestamp': string;
|
|
30403
|
+
readonly 'id': string;
|
|
30404
|
+
}
|
|
30405
|
+
|
|
30406
|
+
interface TrackingProcessingErrorUpserted {
|
|
30407
|
+
readonly 'discriminator': 'tracking_processing_error_upserted';
|
|
30408
|
+
readonly 'event_id': string;
|
|
30409
|
+
readonly 'timestamp': string;
|
|
30410
|
+
readonly 'tracking_processing_error': io.flow.internal.v0.models.TrackingProcessingError;
|
|
30411
|
+
}
|
|
30412
|
+
|
|
30338
30413
|
interface TrackingRequest {
|
|
30339
30414
|
readonly 'carrier': string;
|
|
30340
30415
|
readonly 'carrier_tracking_number': string;
|
|
@@ -30817,7 +30892,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30817
30892
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
30818
30893
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
30819
30894
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
30820
|
-
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.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | 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);
|
|
30895
|
+
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.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.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.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.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.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.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | 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.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
30821
30896
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
30822
30897
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
30823
30898
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -30871,6 +30946,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30871
30946
|
type TariffEligibilityData = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData);
|
|
30872
30947
|
type TariffEligibilityForm = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm);
|
|
30873
30948
|
type TaskData = (io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport);
|
|
30949
|
+
type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingFulfillmentMetadata);
|
|
30874
30950
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
30875
30951
|
type Tracker = (io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel);
|
|
30876
30952
|
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction);
|
|
@@ -30880,8 +30956,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30880
30956
|
type VariantForm = (io.flow.internal.v0.models.ExperienceVariantForm | io.flow.internal.v0.models.FeatureVariantForm);
|
|
30881
30957
|
}
|
|
30882
30958
|
|
|
30959
|
+
export const accountPaymentHoldReason: PropTypes.Requireable<io.flow.internal.v0.enums.AccountPaymentHoldReason>;
|
|
30883
30960
|
export const accountSettingLiabilitiesMethod: PropTypes.Requireable<io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod>;
|
|
30884
|
-
export const accountStatus: PropTypes.Requireable<io.flow.internal.v0.enums.AccountStatus>;
|
|
30885
30961
|
export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.AccountType>;
|
|
30886
30962
|
export const addressConfigurationSettingProvinceCode: PropTypes.Requireable<io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode>;
|
|
30887
30963
|
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
@@ -30894,7 +30970,6 @@ export const bankPaymentStatusCode: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
30894
30970
|
export const billingAllocationKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingAllocationKey>;
|
|
30895
30971
|
export const billingMetricKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingMetricKey>;
|
|
30896
30972
|
export const billingStatementAttachmentKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingStatementAttachmentKey>;
|
|
30897
|
-
export const billingStatementBatchFileKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingStatementBatchFileKey>;
|
|
30898
30973
|
export const billingTransactionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BillingTransactionStatus>;
|
|
30899
30974
|
export const billingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.BillingTransactionType>;
|
|
30900
30975
|
export const blazeCheckoutEvent: PropTypes.Requireable<io.flow.internal.v0.enums.BlazeCheckoutEvent>;
|
|
@@ -31167,6 +31242,7 @@ export const taxParty: PropTypes.Requireable<io.flow.internal.v0.enums.TaxParty>
|
|
|
31167
31242
|
export const taxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TaxTransactionType>;
|
|
31168
31243
|
export const timeseriesType: PropTypes.Requireable<io.flow.internal.v0.enums.TimeseriesType>;
|
|
31169
31244
|
export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
|
|
31245
|
+
export const trackingProcessingFailureClassification: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingProcessingFailureClassification>;
|
|
31170
31246
|
export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
|
|
31171
31247
|
export const transferMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransferMethod>;
|
|
31172
31248
|
export const trueupTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TrueupTransactionType>;
|
|
@@ -31181,6 +31257,8 @@ export const accountDepositRule: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
31181
31257
|
export const accountDepositRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountDepositRuleForm>;
|
|
31182
31258
|
export const accountOrdersExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.AccountOrdersExportRequest>;
|
|
31183
31259
|
export const accountOrigin: PropTypes.Requireable<io.flow.internal.v0.models.AccountOrigin>;
|
|
31260
|
+
export const accountPaymentHold: PropTypes.Requireable<io.flow.internal.v0.models.AccountPaymentHold>;
|
|
31261
|
+
export const accountPaymentHoldForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountPaymentHoldForm>;
|
|
31184
31262
|
export const accountProcessingRateForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRateForm>;
|
|
31185
31263
|
export const accountProcessingRates: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRates>;
|
|
31186
31264
|
export const accountProcessingRatesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRatesDeleted>;
|
|
@@ -31197,6 +31275,7 @@ export const accountSummary: PropTypes.Requireable<io.flow.internal.v0.models.Ac
|
|
|
31197
31275
|
export const accountTransactionsExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.AccountTransactionsExportRequest>;
|
|
31198
31276
|
export const accountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpserted>;
|
|
31199
31277
|
export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpsertedV2>;
|
|
31278
|
+
export const accountingFulfillmentMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingFulfillmentMetadata>;
|
|
31200
31279
|
export const actionQuantity: PropTypes.Requireable<io.flow.internal.v0.models.ActionQuantity>;
|
|
31201
31280
|
export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.models.AdditionalImportTax>;
|
|
31202
31281
|
export const addressConfigurationProvinceSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationProvinceSetting>;
|
|
@@ -31305,13 +31384,6 @@ export const billingOrganizationSettings: PropTypes.Requireable<io.flow.internal
|
|
|
31305
31384
|
export const billingOrganizationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingOrganizationSettingsDeleted>;
|
|
31306
31385
|
export const billingOrganizationSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.BillingOrganizationSettingsUpserted>;
|
|
31307
31386
|
export const billingStatementAttachment: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementAttachment>;
|
|
31308
|
-
export const billingStatementBatch: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatch>;
|
|
31309
|
-
export const billingStatementBatchDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchDeleted>;
|
|
31310
|
-
export const billingStatementBatchReference: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchReference>;
|
|
31311
|
-
export const billingStatementBatchStatement: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchStatement>;
|
|
31312
|
-
export const billingStatementBatchStatementDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchStatementDeleted>;
|
|
31313
|
-
export const billingStatementBatchStatementUpserted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchStatementUpserted>;
|
|
31314
|
-
export const billingStatementBatchUpserted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementBatchUpserted>;
|
|
31315
31387
|
export const billingStatementDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementDeleted>;
|
|
31316
31388
|
export const billingStatementReference: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementReference>;
|
|
31317
31389
|
export const billingStatementSummary: PropTypes.Requireable<io.flow.internal.v0.models.BillingStatementSummary>;
|
|
@@ -32091,7 +32163,6 @@ export const fiservMerchant: PropTypes.Requireable<io.flow.internal.v0.models.Fi
|
|
|
32091
32163
|
export const fiservMerchantModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantModificationForm>;
|
|
32092
32164
|
export const fiservMerchantPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantPutForm>;
|
|
32093
32165
|
export const flowAccount: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccount>;
|
|
32094
|
-
export const flowAccountStatusForm: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccountStatusForm>;
|
|
32095
32166
|
export const flowBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.FlowBillingStatement>;
|
|
32096
32167
|
export const flowChannelOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FlowChannelOrganization>;
|
|
32097
32168
|
export const flowLabProject: PropTypes.Requireable<io.flow.internal.v0.models.FlowLabProject>;
|
|
@@ -32130,6 +32201,7 @@ export const fulfillment: PropTypes.Requireable<io.flow.internal.v0.models.Fulfi
|
|
|
32130
32201
|
export const fulfillmentActionForm: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentActionForm>;
|
|
32131
32202
|
export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentBusiness>;
|
|
32132
32203
|
export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
|
|
32204
|
+
export const fulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentDeleted>;
|
|
32133
32205
|
export const fulfillmentInternalExperienceReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentInternalExperienceReference>;
|
|
32134
32206
|
export const fulfillmentOrigin: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentOrigin>;
|
|
32135
32207
|
export const fulfillmentProofExternalFulfillmentProofReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference>;
|
|
@@ -32143,6 +32215,7 @@ export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
32143
32215
|
export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
|
|
32144
32216
|
export const fulfillmentTriggerProof: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentTriggerProof>;
|
|
32145
32217
|
export const fulfillmentTriggerTime: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentTriggerTime>;
|
|
32218
|
+
export const fulfillmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentUpserted>;
|
|
32146
32219
|
export const fxFee: PropTypes.Requireable<io.flow.internal.v0.models.FxFee>;
|
|
32147
32220
|
export const fxRevenueRecognition: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognition>;
|
|
32148
32221
|
export const fxRevenueRecognitionAccount: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionAccount>;
|
|
@@ -32499,6 +32572,7 @@ export const orderPaymentAuthorization: PropTypes.Requireable<io.flow.internal.v
|
|
|
32499
32572
|
export const orderPlaced: PropTypes.Requireable<io.flow.internal.v0.models.OrderPlaced>;
|
|
32500
32573
|
export const orderRatesDataV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesDataV3>;
|
|
32501
32574
|
export const orderRatesPublishedV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesPublishedV3>;
|
|
32575
|
+
export const orderReference: PropTypes.Requireable<io.flow.internal.v0.models.OrderReference>;
|
|
32502
32576
|
export const orderRevenueRegionChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueRegionChart>;
|
|
32503
32577
|
export const orderRevenueRegionDataPoint: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueRegionDataPoint>;
|
|
32504
32578
|
export const orderRevenueTimelineChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineChart>;
|
|
@@ -32511,9 +32585,13 @@ export const orderTransaction: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
32511
32585
|
export const orderTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionDeleted>;
|
|
32512
32586
|
export const orderTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTransactionUpserted>;
|
|
32513
32587
|
export const orderValidation: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidation>;
|
|
32588
|
+
export const orderValidationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationDeleted>;
|
|
32514
32589
|
export const orderValidationError: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationError>;
|
|
32515
32590
|
export const orderValidationFailure: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationFailure>;
|
|
32591
|
+
export const orderValidationFailureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationFailureDeleted>;
|
|
32516
32592
|
export const orderValidationFailureSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationFailureSummary>;
|
|
32593
|
+
export const orderValidationFailureUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationFailureUpserted>;
|
|
32594
|
+
export const orderValidationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderValidationUpserted>;
|
|
32517
32595
|
export const organizationAccount: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccount>;
|
|
32518
32596
|
export const organizationAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountDeleted>;
|
|
32519
32597
|
export const organizationAccountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountUpsertedV2>;
|
|
@@ -32610,6 +32688,7 @@ export const paypalRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
32610
32688
|
export const paypalRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalRefundUpserted>;
|
|
32611
32689
|
export const pendingBankPayment: PropTypes.Requireable<io.flow.internal.v0.models.PendingBankPayment>;
|
|
32612
32690
|
export const pendingBankPaymentDetail: PropTypes.Requireable<io.flow.internal.v0.models.PendingBankPaymentDetail>;
|
|
32691
|
+
export const pendingOrder: PropTypes.Requireable<io.flow.internal.v0.models.PendingOrder>;
|
|
32613
32692
|
export const phraseClassified: PropTypes.Requireable<io.flow.internal.v0.models.PhraseClassified>;
|
|
32614
32693
|
export const phrasePropagated: PropTypes.Requireable<io.flow.internal.v0.models.PhrasePropagated>;
|
|
32615
32694
|
export const pingRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.PingRequestForm>;
|
|
@@ -32654,7 +32733,6 @@ export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
32654
32733
|
export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
|
|
32655
32734
|
export const proofOfPostingOrderCombinedShipment: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment>;
|
|
32656
32735
|
export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
|
|
32657
|
-
export const queuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.QueuedRecord>;
|
|
32658
32736
|
export const quote: PropTypes.Requireable<io.flow.internal.v0.models.Quote>;
|
|
32659
32737
|
export const quoteDeleted: PropTypes.Requireable<io.flow.internal.v0.models.QuoteDeleted>;
|
|
32660
32738
|
export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
|
|
@@ -32956,6 +33034,7 @@ export const spotRateVersion: PropTypes.Requireable<io.flow.internal.v0.models.S
|
|
|
32956
33034
|
export const standaloneAttachment: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachment>;
|
|
32957
33035
|
export const standaloneAttachmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachmentDeleted>;
|
|
32958
33036
|
export const standaloneAttachmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachmentUpserted>;
|
|
33037
|
+
export const statementCreationMetadata: PropTypes.Requireable<io.flow.internal.v0.models.StatementCreationMetadata>;
|
|
32959
33038
|
export const storeConnection: PropTypes.Requireable<io.flow.internal.v0.models.StoreConnection>;
|
|
32960
33039
|
export const storeConnectionForm: PropTypes.Requireable<io.flow.internal.v0.models.StoreConnectionForm>;
|
|
32961
33040
|
export const stringFeatureDefaultValue: PropTypes.Requireable<io.flow.internal.v0.models.StringFeatureDefaultValue>;
|
|
@@ -33004,6 +33083,7 @@ export const tamItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.T
|
|
|
33004
33083
|
export const tariffCodeDuty: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodeDuty>;
|
|
33005
33084
|
export const tariffCodesExport: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodesExport>;
|
|
33006
33085
|
export const tariffEligibility: PropTypes.Requireable<io.flow.internal.v0.models.TariffEligibility>;
|
|
33086
|
+
export const task: PropTypes.Requireable<io.flow.internal.v0.models.Task>;
|
|
33007
33087
|
export const taskCount: PropTypes.Requireable<io.flow.internal.v0.models.TaskCount>;
|
|
33008
33088
|
export const taskImport: PropTypes.Requireable<io.flow.internal.v0.models.TaskImport>;
|
|
33009
33089
|
export const taskItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaskItemUpserted>;
|
|
@@ -33045,6 +33125,9 @@ export const trackingLabelDeleted: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
33045
33125
|
export const trackingLabelEventDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelEventDeletedV2>;
|
|
33046
33126
|
export const trackingLabelEventUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelEventUpsertedV2>;
|
|
33047
33127
|
export const trackingLabelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelUpserted>;
|
|
33128
|
+
export const trackingProcessingError: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingError>;
|
|
33129
|
+
export const trackingProcessingErrorDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingErrorDeleted>;
|
|
33130
|
+
export const trackingProcessingErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingErrorUpserted>;
|
|
33048
33131
|
export const trackingRequest: PropTypes.Requireable<io.flow.internal.v0.models.TrackingRequest>;
|
|
33049
33132
|
export const trackingRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingRequestUpserted>;
|
|
33050
33133
|
export const trackingResponse: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResponse>;
|
|
@@ -33251,6 +33334,7 @@ export const spotRateMetadata: PropTypes.Requireable<io.flow.internal.v0.unions.
|
|
|
33251
33334
|
export const tariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.unions.TariffEligibilityData>;
|
|
33252
33335
|
export const tariffEligibilityForm: PropTypes.Requireable<io.flow.internal.v0.unions.TariffEligibilityForm>;
|
|
33253
33336
|
export const taskData: PropTypes.Requireable<io.flow.internal.v0.unions.TaskData>;
|
|
33337
|
+
export const taskMetadata: PropTypes.Requireable<io.flow.internal.v0.unions.TaskMetadata>;
|
|
33254
33338
|
export const taxAmount: PropTypes.Requireable<io.flow.internal.v0.unions.TaxAmount>;
|
|
33255
33339
|
export const tracker: PropTypes.Requireable<io.flow.internal.v0.unions.Tracker>;
|
|
33256
33340
|
export const transaction: PropTypes.Requireable<io.flow.internal.v0.unions.Transaction>;
|