@flowio/api-types 0.0.220 → 0.0.221
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/generated/io.flow.billing.accounting.v0.billing-accounting.d.ts +1 -0
- package/generated/io.flow.billing.csv.v0.billing-csv.d.ts +2 -0
- package/generated/io.flow.billing.internal.v0.billing-internal.d.ts +19 -2
- package/generated/io.flow.channel.internal.v0.channel-internal.d.ts +1 -0
- package/generated/io.flow.internal.v0.api-internal.d.ts +126 -4
- package/generated/io.flow.organization.onboarding.state.v0.organization-onboarding-state.d.ts +8 -2
- package/generated/io.flow.permission.v0.permission.d.ts +1 -1
- package/generated/io.flow.ratecard.v0.ratecard.d.ts +75 -2
- package/generated/io.flow.stripe.v0.stripe.d.ts +54 -3
- package/generated/io.flow.trueup.v0.trueup.d.ts +1 -1
- package/generated/io.flow.v0.api.d.ts +85 -6
- package/package.json +2 -2
|
@@ -88,6 +88,7 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
88
88
|
readonly 'number': string;
|
|
89
89
|
readonly 'fulfillment_method': io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
90
90
|
readonly 'country_of_origin'?: string;
|
|
91
|
+
readonly 'tarriff_code'?: string;
|
|
91
92
|
readonly 'inferred'?: boolean;
|
|
92
93
|
}
|
|
93
94
|
|
|
@@ -348,6 +348,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
348
348
|
readonly 'processing': number;
|
|
349
349
|
readonly 'rate_lock': number;
|
|
350
350
|
readonly 'transfer': number;
|
|
351
|
+
readonly 'negative_balance': number;
|
|
351
352
|
}
|
|
352
353
|
|
|
353
354
|
interface BillingCsvTransactionIdentifiers {
|
|
@@ -368,6 +369,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
368
369
|
readonly 'label_created_at': string;
|
|
369
370
|
readonly 'carrier_id': string;
|
|
370
371
|
readonly 'carrier_tracking_number': string;
|
|
372
|
+
readonly 'revenue_share_percentage': number;
|
|
371
373
|
readonly 'outbound_transaction_id'?: string;
|
|
372
374
|
}
|
|
373
375
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
2
2
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
3
|
+
type AccountStatus = 'active' | 'inactive';
|
|
3
4
|
type AccountType = 'channel' | 'organization';
|
|
4
5
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
5
6
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
@@ -9,7 +10,7 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
9
10
|
type BillingStatementBatchFileKey = 'summary';
|
|
10
11
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
11
12
|
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';
|
|
12
|
-
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
|
|
13
|
+
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
13
14
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
14
15
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
15
16
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
@@ -100,7 +101,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
100
101
|
readonly 'merchant_of_record_fee'?: number;
|
|
101
102
|
readonly 'duty_guarantee_fee'?: number;
|
|
102
103
|
readonly 'transfer_fee'?: number;
|
|
103
|
-
readonly '
|
|
104
|
+
readonly 'negative_balance_fee'?: number;
|
|
104
105
|
readonly 'order_service_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
105
106
|
readonly 'label_fees'?: io.flow.billing.internal.v0.models.AccountSettingLabelFees;
|
|
106
107
|
readonly 'charge_label_cost_directly': boolean;
|
|
@@ -285,6 +286,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
285
286
|
readonly 'b2b_tax_remittance_days'?: number;
|
|
286
287
|
readonly 'mor_fee'?: number;
|
|
287
288
|
readonly 'duty_guarantee_fee'?: number;
|
|
289
|
+
readonly 'negative_balance_fee'?: number;
|
|
288
290
|
readonly 'order_service_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
289
291
|
readonly 'label_fee'?: io.flow.billing.internal.v0.models.TieredFee;
|
|
290
292
|
}
|
|
@@ -382,6 +384,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
382
384
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
383
385
|
readonly 'id': string;
|
|
384
386
|
readonly 'key'?: string;
|
|
387
|
+
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
385
388
|
readonly 'origin'?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
386
389
|
readonly 'currency': string;
|
|
387
390
|
readonly 'updated_at': string;
|
|
@@ -598,6 +601,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
598
601
|
readonly 'source': io.flow.billing.internal.v0.models.AccountSource;
|
|
599
602
|
readonly 'id': string;
|
|
600
603
|
readonly 'key'?: string;
|
|
604
|
+
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
601
605
|
readonly 'origin'?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
602
606
|
readonly 'currency': string;
|
|
603
607
|
readonly 'updated_at': string;
|
|
@@ -612,6 +616,18 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
612
616
|
readonly 'created_at': string;
|
|
613
617
|
}
|
|
614
618
|
|
|
619
|
+
interface FlowAccountStatusForm {
|
|
620
|
+
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
interface FlowBillingStatement {
|
|
624
|
+
readonly 'id': string;
|
|
625
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
626
|
+
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
627
|
+
readonly 'totals': io.flow.billing.internal.v0.models.BillingStatementTotals;
|
|
628
|
+
readonly 'attachments': io.flow.billing.internal.v0.models.BillingStatementAttachment[];
|
|
629
|
+
}
|
|
630
|
+
|
|
615
631
|
interface FxFee {
|
|
616
632
|
readonly 'base': io.flow.common.v0.models.Money;
|
|
617
633
|
readonly 'local': io.flow.common.v0.models.Money;
|
|
@@ -782,6 +798,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
782
798
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
783
799
|
readonly 'id': string;
|
|
784
800
|
readonly 'key'?: string;
|
|
801
|
+
readonly 'status': io.flow.billing.internal.v0.enums.AccountStatus;
|
|
785
802
|
readonly 'origin'?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
786
803
|
readonly 'currency': string;
|
|
787
804
|
readonly 'updated_at': string;
|
|
@@ -42,6 +42,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
42
42
|
readonly 'channel_id': string;
|
|
43
43
|
readonly 'external_order_reference': string;
|
|
44
44
|
readonly 'payment_request_id'?: string;
|
|
45
|
+
readonly 'order_edit_payment_request_ids'?: string[];
|
|
45
46
|
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
46
47
|
readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
47
48
|
readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
declare namespace io.flow.internal.v0.enums {
|
|
2
2
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
3
|
+
type AccountStatus = 'active' | 'inactive';
|
|
3
4
|
type AccountType = 'channel' | 'organization';
|
|
4
5
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
5
6
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -10,7 +11,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10
11
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
11
12
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12
13
|
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';
|
|
13
|
-
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' | 'queued_record_snooze_count' | 'queued_record_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';
|
|
14
|
+
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' | 'queued_record_snooze_count' | 'queued_record_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' | 'inactive_accounts_count' | 'inactive_account_pending_payment_promise_count' | 'inactive_account_pending_payment_promise_total';
|
|
14
15
|
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';
|
|
15
16
|
type BillingStatementBatchFileKey = 'summary';
|
|
16
17
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
@@ -139,7 +140,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
139
140
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
140
141
|
type EmptyAttribute = 'irrelevant';
|
|
141
142
|
type ErpFileType = 'vendor';
|
|
142
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
143
|
+
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';
|
|
143
144
|
type ExperienceImportType = 'experience_with_settings';
|
|
144
145
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
145
146
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -187,6 +188,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
187
188
|
type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
|
|
188
189
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
189
190
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
191
|
+
type MatiasItemType = 'physical' | 'digital';
|
|
190
192
|
type MixedBagWeight = '0' | '1' | '2';
|
|
191
193
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
192
194
|
type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
|
|
@@ -427,7 +429,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
427
429
|
readonly 'merchant_of_record_fee'?: number;
|
|
428
430
|
readonly 'duty_guarantee_fee'?: number;
|
|
429
431
|
readonly 'transfer_fee'?: number;
|
|
430
|
-
readonly '
|
|
432
|
+
readonly 'negative_balance_fee'?: number;
|
|
431
433
|
readonly 'order_service_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
432
434
|
readonly 'label_fees'?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
433
435
|
readonly 'charge_label_cost_directly': boolean;
|
|
@@ -515,6 +517,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
515
517
|
readonly 'quantity': number;
|
|
516
518
|
}
|
|
517
519
|
|
|
520
|
+
interface AdditionalImportTax {
|
|
521
|
+
readonly 'name'?: string;
|
|
522
|
+
readonly 'additional_import_tax_value'?: io.flow.common.v0.models.Money;
|
|
523
|
+
readonly 'rate'?: number;
|
|
524
|
+
}
|
|
525
|
+
|
|
518
526
|
interface AddressConfigurationProvinceSetting {
|
|
519
527
|
readonly 'code': io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
520
528
|
}
|
|
@@ -1244,6 +1252,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
1244
1252
|
readonly 'b2b_tax_remittance_days'?: number;
|
|
1245
1253
|
readonly 'mor_fee'?: number;
|
|
1246
1254
|
readonly 'duty_guarantee_fee'?: number;
|
|
1255
|
+
readonly 'negative_balance_fee'?: number;
|
|
1247
1256
|
readonly 'order_service_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
1248
1257
|
readonly 'label_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
1249
1258
|
}
|
|
@@ -1673,6 +1682,51 @@ declare namespace io.flow.internal.v0.models {
|
|
|
1673
1682
|
readonly 'name': string;
|
|
1674
1683
|
}
|
|
1675
1684
|
|
|
1685
|
+
interface CalculationStampingLineItem {
|
|
1686
|
+
readonly 'id'?: string;
|
|
1687
|
+
readonly 'hs_code'?: string;
|
|
1688
|
+
readonly 'duty': io.flow.common.v0.models.Money;
|
|
1689
|
+
readonly 'duty_rate': number;
|
|
1690
|
+
readonly 'sales_tax': io.flow.common.v0.models.Money;
|
|
1691
|
+
readonly 'sales_tax_rate': number;
|
|
1692
|
+
readonly 'additional_tax'?: io.flow.common.v0.models.Money;
|
|
1693
|
+
readonly 'additional_tax_rate'?: number;
|
|
1694
|
+
readonly 'total': io.flow.common.v0.models.Money;
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
interface CalculationStampingShippingLine {
|
|
1698
|
+
readonly 'first_ship_from'?: string;
|
|
1699
|
+
readonly 'duty'?: number;
|
|
1700
|
+
readonly 'duty_rate'?: number;
|
|
1701
|
+
readonly 'tax'?: number;
|
|
1702
|
+
readonly 'tax_rate'?: number;
|
|
1703
|
+
readonly 'price'?: number;
|
|
1704
|
+
readonly 'duty_rate_on_shipping'?: number;
|
|
1705
|
+
readonly 'tax_rate_on_shipping'?: number;
|
|
1706
|
+
readonly 'import_fee'?: number;
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
interface CalculationStep {
|
|
1710
|
+
readonly 'discriminator': 'calculation_step';
|
|
1711
|
+
readonly 'primary_identifier': string;
|
|
1712
|
+
readonly 'line_item': io.flow.internal.v0.models.CalculationStampingLineItem[];
|
|
1713
|
+
readonly 'shipping_line_item': io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
1714
|
+
readonly 'total': io.flow.internal.v0.models.CalculationTotal;
|
|
1715
|
+
readonly 'explanation'?: string;
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
interface CalculationTotal {
|
|
1719
|
+
readonly 'customs_value_name': string;
|
|
1720
|
+
readonly 'customs_value_amount': io.flow.common.v0.models.Money;
|
|
1721
|
+
readonly 'additional_import_included'?: boolean;
|
|
1722
|
+
readonly 'additional_import_value'?: io.flow.common.v0.models.Money;
|
|
1723
|
+
readonly 'duty': io.flow.common.v0.models.Money;
|
|
1724
|
+
readonly 'sales_tax': io.flow.common.v0.models.Money;
|
|
1725
|
+
readonly 'additional_tax_import_included': boolean;
|
|
1726
|
+
readonly 'additional_tax'?: io.flow.common.v0.models.Money;
|
|
1727
|
+
readonly 'additional_import_tax'?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1676
1730
|
interface CalculatorDtcePostBody {
|
|
1677
1731
|
readonly 'products': io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
1678
1732
|
readonly 'countryCodeFrom': string;
|
|
@@ -1999,6 +2053,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
1999
2053
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
2000
2054
|
readonly 'id': string;
|
|
2001
2055
|
readonly 'key'?: string;
|
|
2056
|
+
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
2002
2057
|
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
2003
2058
|
readonly 'currency': string;
|
|
2004
2059
|
readonly 'updated_at': string;
|
|
@@ -2170,6 +2225,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
2170
2225
|
readonly 'tracking_numbers'?: string[];
|
|
2171
2226
|
readonly 'carrier'?: io.flow.reference.v0.models.CarrierService;
|
|
2172
2227
|
readonly 'duty_paid': boolean;
|
|
2228
|
+
readonly 'shop_id'?: string;
|
|
2173
2229
|
}
|
|
2174
2230
|
|
|
2175
2231
|
interface ChannelOrderAcceptance {
|
|
@@ -2179,6 +2235,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
2179
2235
|
readonly 'channel_id': string;
|
|
2180
2236
|
readonly 'external_order_reference': string;
|
|
2181
2237
|
readonly 'payment_request_id'?: string;
|
|
2238
|
+
readonly 'order_edit_payment_request_ids'?: string[];
|
|
2182
2239
|
readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
2183
2240
|
readonly 'reasons': io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
2184
2241
|
readonly 'next_action_from'?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -4730,6 +4787,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
4730
4787
|
readonly 'invoice': io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
4731
4788
|
}
|
|
4732
4789
|
|
|
4790
|
+
interface CommercialInvoiceSummary {
|
|
4791
|
+
readonly 'id': string;
|
|
4792
|
+
readonly 'label_id': string;
|
|
4793
|
+
readonly 'line_items': io.flow.internal.v0.models.InvoiceLineItem[];
|
|
4794
|
+
}
|
|
4795
|
+
|
|
4733
4796
|
interface CompanyReference {
|
|
4734
4797
|
readonly 'id': string;
|
|
4735
4798
|
}
|
|
@@ -5645,6 +5708,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
5645
5708
|
readonly 'bank_code': string;
|
|
5646
5709
|
readonly 'id': string;
|
|
5647
5710
|
readonly 'tax_code'?: string;
|
|
5711
|
+
readonly 'tax_code_2'?: string;
|
|
5712
|
+
readonly 'debit_entry_code'?: string;
|
|
5713
|
+
readonly 'credit_entry_code'?: string;
|
|
5648
5714
|
readonly 'vat_flag'?: string;
|
|
5649
5715
|
readonly 'w_tax_percent'?: string;
|
|
5650
5716
|
readonly 'iban'?: string;
|
|
@@ -5692,6 +5758,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
5692
5758
|
readonly 'id': string;
|
|
5693
5759
|
readonly 'acc_des'?: string;
|
|
5694
5760
|
readonly 'tax_code'?: string;
|
|
5761
|
+
readonly 'tax_code_2'?: string;
|
|
5762
|
+
readonly 'debit_entry_code'?: string;
|
|
5763
|
+
readonly 'credit_entry_code'?: string;
|
|
5695
5764
|
readonly 'vat_flag'?: string;
|
|
5696
5765
|
readonly 'country_name'?: string;
|
|
5697
5766
|
readonly 'w_tax_percent'?: string;
|
|
@@ -6308,6 +6377,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
6308
6377
|
readonly 'fx'?: io.flow.internal.v0.models.Fee;
|
|
6309
6378
|
readonly 'duty_guarantee'?: io.flow.internal.v0.models.Fee;
|
|
6310
6379
|
readonly 'transfer'?: io.flow.internal.v0.models.Fee;
|
|
6380
|
+
readonly 'negative_balance'?: io.flow.internal.v0.models.Fee;
|
|
6311
6381
|
}
|
|
6312
6382
|
|
|
6313
6383
|
interface FinanceBankAccount {
|
|
@@ -6450,6 +6520,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
6450
6520
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
6451
6521
|
readonly 'id': string;
|
|
6452
6522
|
readonly 'key'?: string;
|
|
6523
|
+
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
6453
6524
|
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
6454
6525
|
readonly 'currency': string;
|
|
6455
6526
|
readonly 'updated_at': string;
|
|
@@ -6464,6 +6535,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
6464
6535
|
readonly 'created_at': string;
|
|
6465
6536
|
}
|
|
6466
6537
|
|
|
6538
|
+
interface FlowAccountStatusForm {
|
|
6539
|
+
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
6540
|
+
}
|
|
6541
|
+
|
|
6542
|
+
interface FlowBillingStatement {
|
|
6543
|
+
readonly 'id': string;
|
|
6544
|
+
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
6545
|
+
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
6546
|
+
readonly 'totals': io.flow.internal.v0.models.BillingStatementTotals;
|
|
6547
|
+
readonly 'attachments': io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
6548
|
+
}
|
|
6549
|
+
|
|
6467
6550
|
interface FlowChannelOrganization {
|
|
6468
6551
|
readonly 'placeholder'?: string;
|
|
6469
6552
|
}
|
|
@@ -8289,6 +8372,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
8289
8372
|
readonly 'number': string;
|
|
8290
8373
|
readonly 'fulfillment_method': io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
8291
8374
|
readonly 'country_of_origin'?: string;
|
|
8375
|
+
readonly 'tarriff_code'?: string;
|
|
8292
8376
|
readonly 'inferred'?: boolean;
|
|
8293
8377
|
}
|
|
8294
8378
|
|
|
@@ -9260,6 +9344,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
9260
9344
|
readonly 'flow_authorization'?: io.flow.payment.v0.unions.Authorization;
|
|
9261
9345
|
}
|
|
9262
9346
|
|
|
9347
|
+
interface MatiasItem {
|
|
9348
|
+
readonly 'id': string;
|
|
9349
|
+
readonly 'number': string;
|
|
9350
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
9351
|
+
readonly 'description'?: string;
|
|
9352
|
+
readonly 'type': io.flow.internal.v0.enums.MatiasItemType;
|
|
9353
|
+
readonly 'added_on': string;
|
|
9354
|
+
}
|
|
9355
|
+
|
|
9356
|
+
interface MatiasItemDeleted {
|
|
9357
|
+
readonly 'discriminator': 'matias_item_deleted';
|
|
9358
|
+
readonly 'event_id': string;
|
|
9359
|
+
readonly 'timestamp': string;
|
|
9360
|
+
readonly 'id': string;
|
|
9361
|
+
}
|
|
9362
|
+
|
|
9363
|
+
interface MatiasItemForm {
|
|
9364
|
+
readonly 'number': string;
|
|
9365
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
9366
|
+
readonly 'description'?: string;
|
|
9367
|
+
readonly 'type': io.flow.internal.v0.enums.MatiasItemType;
|
|
9368
|
+
readonly 'added_on': string;
|
|
9369
|
+
}
|
|
9370
|
+
|
|
9371
|
+
interface MatiasItemUpserted {
|
|
9372
|
+
readonly 'discriminator': 'matias_item_upserted';
|
|
9373
|
+
readonly 'event_id': string;
|
|
9374
|
+
readonly 'timestamp': string;
|
|
9375
|
+
readonly 'item': io.flow.internal.v0.models.MatiasItem;
|
|
9376
|
+
}
|
|
9377
|
+
|
|
9263
9378
|
interface Merchant {
|
|
9264
9379
|
readonly 'id': string;
|
|
9265
9380
|
readonly 'account': io.flow.internal.v0.models.AccountReference;
|
|
@@ -9379,6 +9494,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
9379
9494
|
readonly 'merchant': io.flow.internal.v0.models.Merchant;
|
|
9380
9495
|
}
|
|
9381
9496
|
|
|
9497
|
+
interface MessageStamp {
|
|
9498
|
+
readonly 'discriminator': 'message_stamp';
|
|
9499
|
+
readonly 'message': string;
|
|
9500
|
+
}
|
|
9501
|
+
|
|
9382
9502
|
interface MetadataProposition {
|
|
9383
9503
|
readonly 'shipping_method': io.flow.internal.v0.models.ShippingMethodReference;
|
|
9384
9504
|
readonly 'name': string;
|
|
@@ -9862,6 +9982,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
9862
9982
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
9863
9983
|
readonly 'id': string;
|
|
9864
9984
|
readonly 'key'?: string;
|
|
9985
|
+
readonly 'status': io.flow.internal.v0.enums.AccountStatus;
|
|
9865
9986
|
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
9866
9987
|
readonly 'currency': string;
|
|
9867
9988
|
readonly 'updated_at': string;
|
|
@@ -14147,6 +14268,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
14147
14268
|
type AuthorizedOrderCharge = (io.flow.internal.v0.models.AuthorizedShippingCharge);
|
|
14148
14269
|
type BlazeConsumerMessage = (io.flow.internal.v0.models.BlazeAddOrderAttributesMessage | io.flow.internal.v0.models.BlazeAddToCartMessage | io.flow.internal.v0.models.BlazeCreateByCartToken | io.flow.internal.v0.models.BlazeInitializeByOrderQuoteMessage | io.flow.internal.v0.models.BlazeInitializeBySessionMessage | io.flow.internal.v0.models.BlazeInitializeMessage | io.flow.internal.v0.models.BlazeSetCartItemsMessage | io.flow.internal.v0.models.BlazeSetCheckoutIdMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeUpdateCartItemsMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityResponse | io.flow.internal.v0.models.BlazeSetPromotionCodeMessage);
|
|
14149
14270
|
type BlazeProviderMessage = (io.flow.internal.v0.models.BlazeCheckoutCompleteMessage | io.flow.internal.v0.models.BlazeCheckoutProgressMessage | io.flow.internal.v0.models.BlazeCheckoutEventMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeExitCheckoutMessage | io.flow.internal.v0.models.BlazeExitCheckoutConfirmationMessage | io.flow.internal.v0.models.BlazeRedirectConfirmationMessage | io.flow.internal.v0.models.BlazeSynInitializeMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityRequest | io.flow.internal.v0.models.BlazePaymentAuthStartMessage | io.flow.internal.v0.models.BlazePaymentAuthCompleteMessage);
|
|
14271
|
+
type CalculatorStamp = (io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep);
|
|
14150
14272
|
type CarrierChargeForm = (io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther);
|
|
14151
14273
|
type CarrierCredentials = (io.flow.internal.v0.models.SfExpress | io.flow.internal.v0.models.DhlEcommerce | io.flow.internal.v0.models.Landmark | io.flow.internal.v0.models.Dhl | io.flow.internal.v0.models.FedexCrossborder | io.flow.internal.v0.models.Ups | io.flow.internal.v0.models.Fedex);
|
|
14152
14274
|
type ChannelRateMetadata = (io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate);
|
|
@@ -14245,7 +14367,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
14245
14367
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
14246
14368
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
14247
14369
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
14248
|
-
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
14370
|
+
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);
|
|
14249
14371
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
14250
14372
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
14251
14373
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
package/generated/io.flow.organization.onboarding.state.v0.organization-onboarding-state.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
2
|
+
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
2
3
|
type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
|
|
3
|
-
type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant';
|
|
4
|
+
type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant' | 'application_missing';
|
|
4
5
|
}
|
|
5
6
|
|
|
6
7
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
@@ -27,6 +28,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
27
28
|
readonly 'reason': string;
|
|
28
29
|
}
|
|
29
30
|
|
|
31
|
+
interface MerchantDisabled {
|
|
32
|
+
readonly 'discriminator': 'merchant_disabled';
|
|
33
|
+
readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantDisabledReason;
|
|
34
|
+
}
|
|
35
|
+
|
|
30
36
|
interface MerchantRejected {
|
|
31
37
|
readonly 'discriminator': 'merchant_rejected';
|
|
32
38
|
readonly 'reason': io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
@@ -70,5 +76,5 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
70
76
|
}
|
|
71
77
|
|
|
72
78
|
declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
73
|
-
type OnboardingState = (io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated | io.flow.organization.onboarding.state.v0.models.MerchantDeactivated);
|
|
79
|
+
type OnboardingState = (io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated | io.flow.organization.onboarding.state.v0.models.MerchantDeactivated | io.flow.organization.onboarding.state.v0.models.MerchantDisabled);
|
|
74
80
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare namespace io.flow.permission.v0.enums {
|
|
2
2
|
type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
|
|
3
3
|
type FlowBehavior = 'view_consumer_data';
|
|
4
|
-
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
4
|
+
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
5
5
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
6
6
|
}
|
|
7
7
|
|
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
declare namespace io.flow.ratecard.v0.models {
|
|
2
|
+
interface AdditionalHandlingServiceFee {
|
|
3
|
+
readonly 'discriminator': 'additional_handling_service_fee';
|
|
4
|
+
readonly 'length_girth_threshold'?: number;
|
|
5
|
+
readonly 'length_threshold'?: number;
|
|
6
|
+
readonly 'width_threshold'?: number;
|
|
7
|
+
readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
8
|
+
readonly 'weight_threshold'?: number;
|
|
9
|
+
readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
11
|
+
}
|
|
12
|
+
|
|
2
13
|
interface CrossdockRatecardFee {
|
|
3
14
|
readonly 'discriminator': 'crossdock_ratecard_fee';
|
|
4
15
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -43,6 +54,17 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
43
54
|
readonly 'ends_at'?: string;
|
|
44
55
|
}
|
|
45
56
|
|
|
57
|
+
interface EeiFilingRatecardFee {
|
|
58
|
+
readonly 'discriminator': 'eei_filing_ratecard_fee';
|
|
59
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
interface EeiFilingServiceFee {
|
|
63
|
+
readonly 'discriminator': 'eei_filing_service_fee';
|
|
64
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
65
|
+
readonly 'value_threshold': io.flow.common.v0.models.Money;
|
|
66
|
+
}
|
|
67
|
+
|
|
46
68
|
interface EmergencySituationSurchargeRatecardFee {
|
|
47
69
|
readonly 'discriminator': 'emergency_situation_surcharge_ratecard_fee';
|
|
48
70
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -68,6 +90,31 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
68
90
|
readonly 'unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
69
91
|
}
|
|
70
92
|
|
|
93
|
+
interface FixedCurrencyConversionRatecardFee {
|
|
94
|
+
readonly 'discriminator': 'fixed_currency_conversion_ratecard_fee';
|
|
95
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
interface FixedCurrencyConversionServiceFee {
|
|
99
|
+
readonly 'discriminator': 'fixed_currency_conversion_service_fee';
|
|
100
|
+
readonly 'conditions': io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
interface FixedDdpRatecardFee {
|
|
104
|
+
readonly 'discriminator': 'fixed_ddp_ratecard_fee';
|
|
105
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
interface FixedDdpServiceFee {
|
|
109
|
+
readonly 'discriminator': 'fixed_ddp_service_fee';
|
|
110
|
+
readonly 'conditions': io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
interface FixedFeeCondition {
|
|
114
|
+
readonly 'countries': string[];
|
|
115
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
116
|
+
}
|
|
117
|
+
|
|
71
118
|
interface FuelSurchargeAmountByWeightServiceFee {
|
|
72
119
|
readonly 'discriminator': 'fuel_surcharge_amount_by_weight_service_fee';
|
|
73
120
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -138,6 +185,15 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
138
185
|
readonly 'ratecard': io.flow.ratecard.v0.models.RatecardSummary;
|
|
139
186
|
}
|
|
140
187
|
|
|
188
|
+
interface LargePackageServiceFee {
|
|
189
|
+
readonly 'discriminator': 'large_package_service_fee';
|
|
190
|
+
readonly 'length_girth_threshold'?: number;
|
|
191
|
+
readonly 'dimensional_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
192
|
+
readonly 'weight_threshold'?: number;
|
|
193
|
+
readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
194
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
195
|
+
}
|
|
196
|
+
|
|
141
197
|
interface OversizePieceSurchargeRatecardFee {
|
|
142
198
|
readonly 'discriminator': 'oversize_piece_surcharge_ratecard_fee';
|
|
143
199
|
readonly 'dimensional_threshold'?: number;
|
|
@@ -389,6 +445,12 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
389
445
|
readonly 'ratecard': io.flow.ratecard.v0.models.Ratecard;
|
|
390
446
|
}
|
|
391
447
|
|
|
448
|
+
interface RemoteAreaByWeightServiceFee {
|
|
449
|
+
readonly 'discriminator': 'remote_area_by_weight_service_fee';
|
|
450
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
451
|
+
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
452
|
+
}
|
|
453
|
+
|
|
392
454
|
interface RemoteAreaRatecardFee {
|
|
393
455
|
readonly 'discriminator': 'remote_area_ratecard_fee';
|
|
394
456
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -404,6 +466,17 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
404
466
|
readonly 'amount': number;
|
|
405
467
|
}
|
|
406
468
|
|
|
469
|
+
interface SecurityRatecardFee {
|
|
470
|
+
readonly 'discriminator': 'security_ratecard_fee';
|
|
471
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
interface SecurityServiceFee {
|
|
475
|
+
readonly 'discriminator': 'security_service_fee';
|
|
476
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
477
|
+
readonly 'countries': string[];
|
|
478
|
+
}
|
|
479
|
+
|
|
407
480
|
interface ShipmentWindow {
|
|
408
481
|
readonly 'from': number;
|
|
409
482
|
readonly 'to': number;
|
|
@@ -413,6 +486,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
413
486
|
declare namespace io.flow.ratecard.v0.unions {
|
|
414
487
|
type FuelSurchargeRate = (io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight);
|
|
415
488
|
type RatecardEstimate = (io.flow.ratecard.v0.models.RatecardEstimateV1 | io.flow.ratecard.v0.models.RatecardEstimateV2 | io.flow.ratecard.v0.models.RatecardEstimateV3 | io.flow.ratecard.v0.models.RatecardEstimateV4);
|
|
416
|
-
type RatecardFee = (io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee | io.flow.ratecard.v0.models.ReturnPackageRatecardFee | io.flow.ratecard.v0.models.CrossdockRatecardFee | io.flow.ratecard.v0.models.RemoteAreaRatecardFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.ratecard.v0.models.PeakSurchargeRatecardFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee);
|
|
417
|
-
type ServiceFee = (io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee);
|
|
489
|
+
type RatecardFee = (io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee | io.flow.ratecard.v0.models.ReturnPackageRatecardFee | io.flow.ratecard.v0.models.CrossdockRatecardFee | io.flow.ratecard.v0.models.RemoteAreaRatecardFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.ratecard.v0.models.PeakSurchargeRatecardFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee | io.flow.ratecard.v0.models.SecurityRatecardFee | io.flow.ratecard.v0.models.EeiFilingRatecardFee | io.flow.ratecard.v0.models.FixedDdpRatecardFee | io.flow.ratecard.v0.models.FixedCurrencyConversionRatecardFee);
|
|
490
|
+
type ServiceFee = (io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee | io.flow.ratecard.v0.models.RemoteAreaByWeightServiceFee | io.flow.ratecard.v0.models.AdditionalHandlingServiceFee | io.flow.ratecard.v0.models.LargePackageServiceFee | io.flow.ratecard.v0.models.SecurityServiceFee | io.flow.ratecard.v0.models.FixedDdpServiceFee | io.flow.ratecard.v0.models.FixedCurrencyConversionServiceFee | io.flow.ratecard.v0.models.EeiFilingServiceFee);
|
|
418
491
|
}
|
|
@@ -22,7 +22,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
22
22
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
23
23
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
24
24
|
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
25
|
-
type PaymentMethodType = 'card' | 'card_present';
|
|
25
|
+
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
26
26
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
27
27
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
28
28
|
type PreferredLocaleKlarna = 'de-AT' | 'en-AT' | 'nl-BE' | 'fr-BE' | 'en-BE' | 'de-DE' | 'en-DE' | 'da-DK' | 'en-DK' | 'es-ES' | 'en-ES' | 'fi-FI' | 'sv-FI' | 'en-FI' | 'en-GB' | 'en-IE' | 'it-IT' | 'en-IT' | 'nl-NL' | 'en-NL' | 'nb-NO' | 'en-NO' | 'sv-SE' | 'en-SE' | 'en-US' | 'es-US' | 'fr-FR' | 'en-FR' | 'cs-CZ' | 'en-CZ' | 'el-GR' | 'en-GR' | 'en-AU' | 'en-NZ' | 'en-CA' | 'fr-CA' | 'pl-PL' | 'en-PL' | 'pt-PT' | 'en-PT' | 'de-CH' | 'fr-CH' | 'it-CH' | 'en-CH';
|
|
@@ -280,6 +280,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
280
280
|
readonly 'marketplace_seller_info'?: io.flow.stripe.v0.models.KlarnaMarketplaceSellerInfo[];
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
+
interface KlarnaDobForm {
|
|
284
|
+
readonly 'day': number;
|
|
285
|
+
readonly 'month': number;
|
|
286
|
+
readonly 'year': number;
|
|
287
|
+
}
|
|
288
|
+
|
|
283
289
|
interface KlarnaMarketplaceSellerInfo {
|
|
284
290
|
readonly 'sub_merchant_id'?: string;
|
|
285
291
|
readonly 'product_category'?: string;
|
|
@@ -289,6 +295,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
289
295
|
readonly 'additional_owners'?: io.flow.stripe.v0.models.Owner[];
|
|
290
296
|
}
|
|
291
297
|
|
|
298
|
+
interface MarketplaceSellerInfo {
|
|
299
|
+
readonly 'name': string;
|
|
300
|
+
readonly 'id'?: string;
|
|
301
|
+
readonly 'product_category'?: string;
|
|
302
|
+
}
|
|
303
|
+
|
|
292
304
|
interface Masterpass {
|
|
293
305
|
readonly 'type': 'masterpass';
|
|
294
306
|
readonly 'masterpass': io.flow.stripe.v0.models.MasterpassInformation;
|
|
@@ -377,6 +389,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
377
389
|
readonly 'verified_phone'?: string;
|
|
378
390
|
}
|
|
379
391
|
|
|
392
|
+
interface PaymentDetails {
|
|
393
|
+
readonly 'marketplace_seller_info'?: io.flow.stripe.v0.models.MarketplaceSellerInfo;
|
|
394
|
+
}
|
|
395
|
+
|
|
380
396
|
interface PaymentIntent {
|
|
381
397
|
readonly 'id': string;
|
|
382
398
|
readonly 'object': string;
|
|
@@ -501,6 +517,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
501
517
|
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
502
518
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
503
519
|
readonly 'card_present'?: any/*object*/;
|
|
520
|
+
readonly 'klarna'?: any/*object*/;
|
|
504
521
|
readonly 'created': number;
|
|
505
522
|
readonly 'customer'?: string;
|
|
506
523
|
readonly 'livemode': boolean;
|
|
@@ -541,6 +558,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
541
558
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
542
559
|
}
|
|
543
560
|
|
|
561
|
+
interface PaymentMethodDataKlarna {
|
|
562
|
+
readonly 'type': 'klarna';
|
|
563
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
564
|
+
readonly 'metadata'?: any/*object*/;
|
|
565
|
+
readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
566
|
+
}
|
|
567
|
+
|
|
544
568
|
interface PaymentMethodDetailsCard {
|
|
545
569
|
readonly 'type': 'card';
|
|
546
570
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -589,8 +613,20 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
589
613
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
590
614
|
}
|
|
591
615
|
|
|
616
|
+
interface PaymentMethodFormKlarna {
|
|
617
|
+
readonly 'type': 'klarna';
|
|
618
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
619
|
+
readonly 'metadata'?: any/*object*/;
|
|
620
|
+
readonly 'klarna': io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
interface PaymentMethodKlarnaForm {
|
|
624
|
+
readonly 'dob'?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
625
|
+
}
|
|
626
|
+
|
|
592
627
|
interface PaymentMethodOptions {
|
|
593
628
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
629
|
+
readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
594
630
|
}
|
|
595
631
|
|
|
596
632
|
interface PaymentMethodOptionsCard {
|
|
@@ -610,6 +646,21 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
610
646
|
|
|
611
647
|
interface PaymentMethodOptionsForm {
|
|
612
648
|
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
649
|
+
readonly 'klarna'?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
interface PaymentMethodOptionsKlarna {
|
|
653
|
+
readonly 'capture_method'?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
654
|
+
readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
655
|
+
readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
656
|
+
readonly 'payment_details'?: io.flow.stripe.v0.models.PaymentDetails;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
interface PaymentMethodOptionsKlarnaForm {
|
|
660
|
+
readonly 'capture_method'?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
661
|
+
readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
662
|
+
readonly 'setup_future_usage'?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
663
|
+
readonly 'payment_details'?: io.flow.stripe.v0.models.PaymentDetails;
|
|
613
664
|
}
|
|
614
665
|
|
|
615
666
|
interface PaymentOutcome {
|
|
@@ -907,7 +958,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
907
958
|
|
|
908
959
|
declare namespace io.flow.stripe.v0.unions {
|
|
909
960
|
type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
|
|
910
|
-
type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard);
|
|
961
|
+
type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna);
|
|
911
962
|
type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
|
|
912
|
-
type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard);
|
|
963
|
+
type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormKlarna);
|
|
913
964
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare namespace io.flow.trueup.v0.enums {
|
|
2
2
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
3
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
3
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security_ratecard_fee' | 'eei_filing_ratecard_fee' | 'fixed_ddp_ratecard_fee' | 'fixed_currency_conversion_ratecard_fee';
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
declare namespace io.flow.trueup.v0.models {
|
|
@@ -66,7 +66,7 @@ declare namespace io.flow.v0.enums {
|
|
|
66
66
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
|
|
67
67
|
type FlowBehavior = 'view_consumer_data';
|
|
68
68
|
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can';
|
|
69
|
-
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
69
|
+
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
70
70
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
71
71
|
type FraudLiability = 'flow' | 'organization';
|
|
72
72
|
type FraudStatus = 'pending' | 'approved' | 'declined' | 'review';
|
|
@@ -100,12 +100,13 @@ declare namespace io.flow.v0.enums {
|
|
|
100
100
|
type LogisticsFormatPreference = 'shopify_console' | 'existing_3pl_integration' | 'byo_integration';
|
|
101
101
|
type MarginType = 'fixed' | 'percent';
|
|
102
102
|
type MeasurementSystem = 'imperial' | 'metric';
|
|
103
|
+
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
103
104
|
type MerchantGiftCardErrorCode = 'invalid' | 'expired' | 'empty' | 'insufficient_funds' | 'unsupported_currency';
|
|
104
105
|
type MerchantOfRecord = 'flow' | 'organization';
|
|
105
106
|
type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
|
|
106
107
|
type Method = 'post';
|
|
107
108
|
type OnboardingApplicationStatus = 'to_do' | 'in_progress' | 'on_hold' | 'rejected' | 'accepted';
|
|
108
|
-
type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant';
|
|
109
|
+
type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant' | 'application_missing';
|
|
109
110
|
type OnboardingTradeSector = 'accessories' | 'animals_and_pet_supplies' | 'apparel' | 'apparel_and_accessories' | 'arts_and_entertainment' | 'baby_and_toddler' | 'business_and_industrial' | 'cameras_and_optics' | 'electronics' | 'food_beverages_and_tobacco' | 'furniture' | 'gift_cards' | 'hardware' | 'health_and_beauty' | 'home_and_garden' | 'jewelry' | 'luggage_and_bags' | 'mature' | 'media' | 'office_supplies' | 'paper_and_art' | 'religious_and_ceremonial' | 'software' | 'sporting_goods' | 'sports_and_fitness' | 'toys_and_games' | 'toys_hobbies_gifts' | 'vehicles_and_parts' | 'other';
|
|
110
111
|
type OptinResponseType = 'not_shown' | 'opted_in' | 'opted_out';
|
|
111
112
|
type OrderChangeSource = 'consumer' | 'retailer' | 'fulfillment' | 'flow' | 'carrier';
|
|
@@ -204,7 +205,7 @@ declare namespace io.flow.v0.enums {
|
|
|
204
205
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
205
206
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
206
207
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
207
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
208
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security_ratecard_fee' | 'eei_filing_ratecard_fee' | 'fixed_ddp_ratecard_fee' | 'fixed_currency_conversion_ratecard_fee';
|
|
208
209
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
209
210
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
210
211
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
@@ -406,6 +407,17 @@ declare namespace io.flow.v0.models {
|
|
|
406
407
|
readonly 'placeholder'?: boolean;
|
|
407
408
|
}
|
|
408
409
|
|
|
410
|
+
interface AdditionalHandlingServiceFee {
|
|
411
|
+
readonly 'discriminator': 'additional_handling_service_fee';
|
|
412
|
+
readonly 'length_girth_threshold'?: number;
|
|
413
|
+
readonly 'length_threshold'?: number;
|
|
414
|
+
readonly 'width_threshold'?: number;
|
|
415
|
+
readonly 'dimensional_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
416
|
+
readonly 'weight_threshold'?: number;
|
|
417
|
+
readonly 'weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
418
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
419
|
+
}
|
|
420
|
+
|
|
409
421
|
interface AdditionalServicesRequested {
|
|
410
422
|
readonly 'name': string;
|
|
411
423
|
readonly 'description'?: string;
|
|
@@ -3025,6 +3037,17 @@ declare namespace io.flow.v0.models {
|
|
|
3025
3037
|
readonly 'ecommerce_platform': io.flow.v0.models.EcommercePlatform;
|
|
3026
3038
|
}
|
|
3027
3039
|
|
|
3040
|
+
interface EeiFilingRatecardFee {
|
|
3041
|
+
readonly 'discriminator': 'eei_filing_ratecard_fee';
|
|
3042
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
3043
|
+
}
|
|
3044
|
+
|
|
3045
|
+
interface EeiFilingServiceFee {
|
|
3046
|
+
readonly 'discriminator': 'eei_filing_service_fee';
|
|
3047
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
3048
|
+
readonly 'value_threshold': io.flow.v0.models.Money;
|
|
3049
|
+
}
|
|
3050
|
+
|
|
3028
3051
|
interface EmailAbandonedOrderPromotion {
|
|
3029
3052
|
readonly 'discount_form': io.flow.v0.models.DiscountForm;
|
|
3030
3053
|
readonly 'attributes': Record<string, string>;
|
|
@@ -3547,6 +3570,31 @@ declare namespace io.flow.v0.models {
|
|
|
3547
3570
|
readonly 'placeholder'?: string;
|
|
3548
3571
|
}
|
|
3549
3572
|
|
|
3573
|
+
interface FixedCurrencyConversionRatecardFee {
|
|
3574
|
+
readonly 'discriminator': 'fixed_currency_conversion_ratecard_fee';
|
|
3575
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
3576
|
+
}
|
|
3577
|
+
|
|
3578
|
+
interface FixedCurrencyConversionServiceFee {
|
|
3579
|
+
readonly 'discriminator': 'fixed_currency_conversion_service_fee';
|
|
3580
|
+
readonly 'conditions': io.flow.v0.models.FixedFeeCondition[];
|
|
3581
|
+
}
|
|
3582
|
+
|
|
3583
|
+
interface FixedDdpRatecardFee {
|
|
3584
|
+
readonly 'discriminator': 'fixed_ddp_ratecard_fee';
|
|
3585
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3588
|
+
interface FixedDdpServiceFee {
|
|
3589
|
+
readonly 'discriminator': 'fixed_ddp_service_fee';
|
|
3590
|
+
readonly 'conditions': io.flow.v0.models.FixedFeeCondition[];
|
|
3591
|
+
}
|
|
3592
|
+
|
|
3593
|
+
interface FixedFeeCondition {
|
|
3594
|
+
readonly 'countries': string[];
|
|
3595
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
3596
|
+
}
|
|
3597
|
+
|
|
3550
3598
|
interface FlatRate {
|
|
3551
3599
|
readonly 'discriminator': 'flat_rate';
|
|
3552
3600
|
readonly 'price': io.flow.v0.models.Price;
|
|
@@ -4770,6 +4818,15 @@ declare namespace io.flow.v0.models {
|
|
|
4770
4818
|
readonly 'iso_639_2': string;
|
|
4771
4819
|
}
|
|
4772
4820
|
|
|
4821
|
+
interface LargePackageServiceFee {
|
|
4822
|
+
readonly 'discriminator': 'large_package_service_fee';
|
|
4823
|
+
readonly 'length_girth_threshold'?: number;
|
|
4824
|
+
readonly 'dimensional_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
4825
|
+
readonly 'weight_threshold'?: number;
|
|
4826
|
+
readonly 'weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
4827
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
4828
|
+
}
|
|
4829
|
+
|
|
4773
4830
|
interface Line {
|
|
4774
4831
|
readonly 'id'?: string;
|
|
4775
4832
|
readonly 'item_number': string;
|
|
@@ -5121,6 +5178,11 @@ declare namespace io.flow.v0.models {
|
|
|
5121
5178
|
readonly 'reason': string;
|
|
5122
5179
|
}
|
|
5123
5180
|
|
|
5181
|
+
interface MerchantDisabled {
|
|
5182
|
+
readonly 'discriminator': 'merchant_disabled';
|
|
5183
|
+
readonly 'reason': io.flow.v0.enums.MerchantDisabledReason;
|
|
5184
|
+
}
|
|
5185
|
+
|
|
5124
5186
|
interface MerchantGiftCardBalance {
|
|
5125
5187
|
readonly 'amount': number;
|
|
5126
5188
|
readonly 'currency': string;
|
|
@@ -8239,6 +8301,12 @@ declare namespace io.flow.v0.models {
|
|
|
8239
8301
|
readonly 'status': io.flow.v0.enums.AvailabilityStatus;
|
|
8240
8302
|
}
|
|
8241
8303
|
|
|
8304
|
+
interface RemoteAreaByWeightServiceFee {
|
|
8305
|
+
readonly 'discriminator': 'remote_area_by_weight_service_fee';
|
|
8306
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
8307
|
+
readonly 'weight_unit': io.flow.v0.enums.UnitOfMeasurement;
|
|
8308
|
+
}
|
|
8309
|
+
|
|
8242
8310
|
interface RemoteAreaRatecardFee {
|
|
8243
8311
|
readonly 'discriminator': 'remote_area_ratecard_fee';
|
|
8244
8312
|
readonly 'amount': io.flow.v0.models.Money;
|
|
@@ -8585,6 +8653,17 @@ declare namespace io.flow.v0.models {
|
|
|
8585
8653
|
readonly 'minute_of_hour': string;
|
|
8586
8654
|
}
|
|
8587
8655
|
|
|
8656
|
+
interface SecurityRatecardFee {
|
|
8657
|
+
readonly 'discriminator': 'security_ratecard_fee';
|
|
8658
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
8659
|
+
}
|
|
8660
|
+
|
|
8661
|
+
interface SecurityServiceFee {
|
|
8662
|
+
readonly 'discriminator': 'security_service_fee';
|
|
8663
|
+
readonly 'amount': io.flow.v0.models.Money;
|
|
8664
|
+
readonly 'countries': string[];
|
|
8665
|
+
}
|
|
8666
|
+
|
|
8588
8667
|
interface SelectIssuerOptionActionDetails {
|
|
8589
8668
|
readonly 'discriminator': 'select_issuer_option_action_details';
|
|
8590
8669
|
readonly 'issuer_options': io.flow.v0.models.IssuerReference[];
|
|
@@ -10525,7 +10604,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10525
10604
|
type MerchantApplicationForm = (io.flow.v0.models.ShopifyMerchantApplicationForm);
|
|
10526
10605
|
type MerchantApplicationPutForm = (io.flow.v0.models.ShopifyMerchantApplicationPutForm);
|
|
10527
10606
|
type MerchantApplicationsSummary = (io.flow.v0.models.ShopifyMerchantApplicationsSummary);
|
|
10528
|
-
type OnboardingState = (io.flow.v0.models.InComplianceReview | io.flow.v0.models.SetupInProgress | io.flow.v0.models.MerchantRejected | io.flow.v0.models.SetupBlocked | io.flow.v0.models.SetupCompleted | io.flow.v0.models.MerchantActivated | io.flow.v0.models.MerchantDeactivated);
|
|
10607
|
+
type OnboardingState = (io.flow.v0.models.InComplianceReview | io.flow.v0.models.SetupInProgress | io.flow.v0.models.MerchantRejected | io.flow.v0.models.SetupBlocked | io.flow.v0.models.SetupCompleted | io.flow.v0.models.MerchantActivated | io.flow.v0.models.MerchantDeactivated | io.flow.v0.models.MerchantDisabled);
|
|
10529
10608
|
type OnlineAuthorizationDetails = (io.flow.v0.models.CryptopayAuthorizationDetails | io.flow.v0.models.PaypalAuthorizationDetails | io.flow.v0.models.RedirectAuthorizationDetails | io.flow.v0.models.InlineAuthorizationDetails);
|
|
10530
10609
|
type OrderInformation = (io.flow.v0.models.OrderInformationFlow | io.flow.v0.models.OrderInformationDetails);
|
|
10531
10610
|
type OrderNumberGenerator = (io.flow.v0.models.OrderNumberGeneratorUuid | io.flow.v0.models.OrderNumberGeneratorHexadecimal | io.flow.v0.models.OrderNumberGeneratorPrefixSuffix);
|
|
@@ -10564,13 +10643,13 @@ declare namespace io.flow.v0.unions {
|
|
|
10564
10643
|
type QueryFilter = (io.flow.v0.models.QueryFilterStructured | io.flow.v0.models.QueryFilterUnstructured);
|
|
10565
10644
|
type QueryFilterForm = (io.flow.v0.models.QueryFilterStructuredForm | io.flow.v0.models.QueryFilterUnstructuredForm);
|
|
10566
10645
|
type RatecardEstimate = (io.flow.v0.models.RatecardEstimateV1 | io.flow.v0.models.RatecardEstimateV2 | io.flow.v0.models.RatecardEstimateV3 | io.flow.v0.models.RatecardEstimateV4);
|
|
10567
|
-
type RatecardFee = (io.flow.v0.models.DdpRatecardFee | io.flow.v0.models.FuelSurchargeRatecardFee | io.flow.v0.models.OversizePieceSurchargeRatecardFee | io.flow.v0.models.ReturnPackageRatecardFee | io.flow.v0.models.CrossdockRatecardFee | io.flow.v0.models.RemoteAreaRatecardFee | io.flow.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.v0.models.PeakSurchargeRatecardFee | io.flow.v0.models.DutiesTaxesPaidSurchargeRatecardFee);
|
|
10646
|
+
type RatecardFee = (io.flow.v0.models.DdpRatecardFee | io.flow.v0.models.FuelSurchargeRatecardFee | io.flow.v0.models.OversizePieceSurchargeRatecardFee | io.flow.v0.models.ReturnPackageRatecardFee | io.flow.v0.models.CrossdockRatecardFee | io.flow.v0.models.RemoteAreaRatecardFee | io.flow.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.v0.models.PeakSurchargeRatecardFee | io.flow.v0.models.DutiesTaxesPaidSurchargeRatecardFee | io.flow.v0.models.SecurityRatecardFee | io.flow.v0.models.EeiFilingRatecardFee | io.flow.v0.models.FixedDdpRatecardFee | io.flow.v0.models.FixedCurrencyConversionRatecardFee);
|
|
10568
10647
|
type RepeatSchedule = (io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly);
|
|
10569
10648
|
type ReservationError = (io.flow.v0.models.NoInventoryReservationError | io.flow.v0.models.ExternalApiTimeoutReservationError | io.flow.v0.models.GenericReservationError);
|
|
10570
10649
|
type ReturnSource = (io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor);
|
|
10571
10650
|
type SdkAdyenV3AuthenticationToken = (io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken);
|
|
10572
10651
|
type ServiceDescription = (io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown);
|
|
10573
|
-
type ServiceFee = (io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.v0.models.OversizePieceSurchargeServiceFee);
|
|
10652
|
+
type ServiceFee = (io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.v0.models.OversizePieceSurchargeServiceFee | io.flow.v0.models.RemoteAreaByWeightServiceFee | io.flow.v0.models.AdditionalHandlingServiceFee | io.flow.v0.models.LargePackageServiceFee | io.flow.v0.models.SecurityServiceFee | io.flow.v0.models.FixedDdpServiceFee | io.flow.v0.models.FixedCurrencyConversionServiceFee | io.flow.v0.models.EeiFilingServiceFee);
|
|
10574
10653
|
type Session = (io.flow.v0.models.OrganizationSession);
|
|
10575
10654
|
type SessionAuthorization = (io.flow.v0.models.OrganizationSessionAuthorization);
|
|
10576
10655
|
type Settlement = (io.flow.v0.models.SettlementNoPayout | io.flow.v0.models.SettlementPayout);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.221",
|
|
4
4
|
"description": "Global TypeScript typings for Flow Commerce API",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"generate": "apibuilder update && node scripts/generate-index.js"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "6717f627ae249a5229cfb9b8321accaf3b7e03d1"
|
|
18
18
|
}
|