@flowio/api-types 0.0.216 → 0.0.218
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.ben.test.internal.v0.ben-test-internal.d.ts +4 -0
- package/generated/io.flow.billing.internal.v0.billing-internal.d.ts +29 -0
- package/generated/io.flow.billing.reporting.v0.billing-reporting.d.ts +21 -1
- package/generated/io.flow.billing.v0.billing.d.ts +2 -1
- package/generated/io.flow.channel.internal.v0.channel-internal.d.ts +1 -1
- package/generated/io.flow.internal.v0.api-internal.d.ts +215 -21
- package/generated/io.flow.label.v0.label.d.ts +2 -2
- package/generated/io.flow.order.price.v0.order-price.d.ts +2 -2
- package/generated/io.flow.shopify.markets.internal.v0.shopify-markets-internal.d.ts +1 -0
- package/generated/io.flow.shopify.markets.v0.shopify-markets.d.ts +1 -0
- package/generated/io.flow.v0.api.d.ts +7 -5
- package/package.json +2 -2
|
@@ -177,6 +177,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
177
177
|
readonly 'sent_on'?: string;
|
|
178
178
|
readonly 'status': io.flow.billing.v0.unions.PayoutStatus;
|
|
179
179
|
readonly 'expected_delivery_by'?: string;
|
|
180
|
+
readonly 'attributes'?: Record<string, string>;
|
|
180
181
|
readonly 'total': io.flow.common.v0.models.Price;
|
|
181
182
|
}
|
|
182
183
|
|
|
@@ -188,6 +189,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
188
189
|
readonly 'amount': number;
|
|
189
190
|
readonly 'currency': string;
|
|
190
191
|
readonly 'transfer_transaction_ids': string[];
|
|
192
|
+
readonly 'attributes'?: Record<string, string>;
|
|
191
193
|
}
|
|
192
194
|
|
|
193
195
|
interface BankPaymentStatusForm {
|
|
@@ -195,6 +197,33 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
195
197
|
readonly 'failure_reason'?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
196
198
|
}
|
|
197
199
|
|
|
200
|
+
interface BankPaymentStatusImport {
|
|
201
|
+
readonly 'id': string;
|
|
202
|
+
readonly 'created_at': string;
|
|
203
|
+
readonly 'result'?: io.flow.billing.internal.v0.models.BankPaymentStatusImportResult;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
interface BankPaymentStatusImportForm {
|
|
207
|
+
readonly 'forms': io.flow.billing.internal.v0.models.BankPaymentStatusSingleForm[];
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
interface BankPaymentStatusImportResult {
|
|
211
|
+
readonly 'processed_at': string;
|
|
212
|
+
readonly 'number_lines_successful': number;
|
|
213
|
+
readonly 'number_lines_with_errors': number;
|
|
214
|
+
readonly 'errors_url'?: string;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
interface BankPaymentStatusSentImportForm {
|
|
218
|
+
readonly 'payment_ids': string[];
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
interface BankPaymentStatusSingleForm {
|
|
222
|
+
readonly 'payment_id': string;
|
|
223
|
+
readonly 'code': io.flow.billing.internal.v0.enums.BankPaymentStatusCode;
|
|
224
|
+
readonly 'failure_reason'?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
225
|
+
}
|
|
226
|
+
|
|
198
227
|
interface BillingAuthorizationReference {
|
|
199
228
|
readonly 'id': string;
|
|
200
229
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare namespace io.flow.billing.reporting.v0.enums {
|
|
2
2
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
3
|
-
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account';
|
|
3
|
+
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment';
|
|
4
4
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
5
5
|
type RevenueRecordType = 'sales' | 'refund';
|
|
6
6
|
}
|
|
@@ -44,6 +44,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
44
44
|
|
|
45
45
|
interface ReportAccount {
|
|
46
46
|
readonly 'id': string;
|
|
47
|
+
readonly 'currency': string;
|
|
47
48
|
readonly 'source': io.flow.billing.internal.v0.models.AccountSource;
|
|
48
49
|
}
|
|
49
50
|
|
|
@@ -52,14 +53,25 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
52
53
|
readonly 'last4'?: string;
|
|
53
54
|
}
|
|
54
55
|
|
|
56
|
+
interface ReportBankAccountCleartext {
|
|
57
|
+
readonly 'type': string;
|
|
58
|
+
readonly 'routing_number': string;
|
|
59
|
+
readonly 'account_number': string;
|
|
60
|
+
}
|
|
61
|
+
|
|
55
62
|
interface ReportForm {
|
|
56
63
|
readonly 'from': string;
|
|
57
64
|
readonly 'to': string;
|
|
58
65
|
readonly 'type': io.flow.billing.reporting.v0.enums.ReportType;
|
|
59
66
|
}
|
|
60
67
|
|
|
68
|
+
interface ReportOwner {
|
|
69
|
+
readonly 'name': string;
|
|
70
|
+
}
|
|
71
|
+
|
|
61
72
|
interface ReportPayment {
|
|
62
73
|
readonly 'id': string;
|
|
74
|
+
readonly 'amount': number;
|
|
63
75
|
readonly 'created_at': string;
|
|
64
76
|
}
|
|
65
77
|
|
|
@@ -286,4 +298,12 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
286
298
|
readonly 'marked_as_final': io.flow.billing.reporting.v0.models.MarkedAsFinal;
|
|
287
299
|
readonly 'debug': io.flow.billing.reporting.v0.models.ReportingDebug;
|
|
288
300
|
}
|
|
301
|
+
|
|
302
|
+
interface ScheduledPayment {
|
|
303
|
+
readonly 'payment': io.flow.billing.reporting.v0.models.ReportPayment;
|
|
304
|
+
readonly 'bank_account': io.flow.billing.reporting.v0.models.ReportBankAccountCleartext;
|
|
305
|
+
readonly 'account': io.flow.billing.reporting.v0.models.ReportAccount;
|
|
306
|
+
readonly 'owner': io.flow.billing.reporting.v0.models.ReportOwner;
|
|
307
|
+
readonly 'description': string;
|
|
308
|
+
}
|
|
289
309
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare namespace io.flow.billing.v0.enums {
|
|
2
|
-
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
2
|
+
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
|
|
3
3
|
type PayoutAttachmentType = 'transactions';
|
|
4
4
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
5
5
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
|
|
@@ -304,6 +304,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
304
304
|
readonly 'discriminator': 'shipping_label';
|
|
305
305
|
readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
306
306
|
readonly 'carrier': io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
307
|
+
readonly 'revenue_share_percentage'?: number;
|
|
307
308
|
}
|
|
308
309
|
|
|
309
310
|
interface TransactionMetadataShippingLabelCarrier {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
2
2
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
3
3
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
4
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies';
|
|
4
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit';
|
|
5
5
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
6
6
|
}
|
|
7
7
|
|
|
@@ -10,7 +10,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10
10
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
11
11
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12
12
|
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' | '
|
|
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
14
|
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
15
|
type BillingStatementBatchFileKey = 'summary';
|
|
16
16
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
@@ -20,13 +20,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
20
20
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
21
21
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
|
|
22
22
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
|
|
23
|
+
type CarrierChargeType = 'label' | 'other';
|
|
23
24
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
24
25
|
type CarrierValidationStatus = 'success' | 'error';
|
|
25
26
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
26
27
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
27
28
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
28
29
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
29
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies';
|
|
30
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit';
|
|
30
31
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
31
32
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
32
33
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
@@ -138,7 +139,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
138
139
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
139
140
|
type EmptyAttribute = 'irrelevant';
|
|
140
141
|
type ErpFileType = 'vendor';
|
|
141
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | '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' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
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_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
142
143
|
type ExperienceImportType = 'experience_with_settings';
|
|
143
144
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
144
145
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -170,7 +171,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
170
171
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
171
172
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
172
173
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
173
|
-
type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
|
|
174
174
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
175
175
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
176
176
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
@@ -198,11 +198,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
198
198
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
199
199
|
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
200
200
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
201
|
+
type OrderAddressValidationStatus = 'success' | 'failed';
|
|
201
202
|
type OrderAttributeIntent = 'discount_code';
|
|
202
203
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
203
204
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
204
205
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
205
206
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
207
|
+
type OrderValidationStatus = 'success' | 'failed' | 'unresolvable';
|
|
206
208
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
207
209
|
type OrganizationMetricType = 'organization_restriction_snapshot' | 'organization_restriction_status';
|
|
208
210
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
@@ -236,7 +238,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
236
238
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
237
239
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
238
240
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
239
|
-
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account';
|
|
241
|
+
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment';
|
|
240
242
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
241
243
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
242
244
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -254,7 +256,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
254
256
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
255
257
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
256
258
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
257
|
-
type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations';
|
|
259
|
+
type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'order_edit' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations';
|
|
258
260
|
type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
|
|
259
261
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
260
262
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
@@ -275,6 +277,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
275
277
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
276
278
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
277
279
|
type SvitlanaType = 'physical' | 'digital';
|
|
280
|
+
type TamItemType = 'physical' | 'digital';
|
|
278
281
|
type TariffEligibilityType = 'rex';
|
|
279
282
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
280
283
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
@@ -1082,6 +1085,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
1082
1085
|
readonly 'sent_on'?: string;
|
|
1083
1086
|
readonly 'status': io.flow.billing.v0.unions.PayoutStatus;
|
|
1084
1087
|
readonly 'expected_delivery_by'?: string;
|
|
1088
|
+
readonly 'attributes'?: Record<string, string>;
|
|
1085
1089
|
readonly 'total': io.flow.common.v0.models.Price;
|
|
1086
1090
|
}
|
|
1087
1091
|
|
|
@@ -1108,6 +1112,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
1108
1112
|
readonly 'amount': number;
|
|
1109
1113
|
readonly 'currency': string;
|
|
1110
1114
|
readonly 'transfer_transaction_ids': string[];
|
|
1115
|
+
readonly 'attributes'?: Record<string, string>;
|
|
1111
1116
|
}
|
|
1112
1117
|
|
|
1113
1118
|
interface BankPaymentStatusForm {
|
|
@@ -1115,6 +1120,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
1115
1120
|
readonly 'failure_reason'?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
1116
1121
|
}
|
|
1117
1122
|
|
|
1123
|
+
interface BankPaymentStatusImport {
|
|
1124
|
+
readonly 'id': string;
|
|
1125
|
+
readonly 'created_at': string;
|
|
1126
|
+
readonly 'result'?: io.flow.internal.v0.models.BankPaymentStatusImportResult;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
interface BankPaymentStatusImportForm {
|
|
1130
|
+
readonly 'forms': io.flow.internal.v0.models.BankPaymentStatusSingleForm[];
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
interface BankPaymentStatusImportResult {
|
|
1134
|
+
readonly 'processed_at': string;
|
|
1135
|
+
readonly 'number_lines_successful': number;
|
|
1136
|
+
readonly 'number_lines_with_errors': number;
|
|
1137
|
+
readonly 'errors_url'?: string;
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
interface BankPaymentStatusSentImportForm {
|
|
1141
|
+
readonly 'payment_ids': string[];
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
interface BankPaymentStatusSingleForm {
|
|
1145
|
+
readonly 'payment_id': string;
|
|
1146
|
+
readonly 'code': io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
1147
|
+
readonly 'failure_reason'?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1118
1150
|
interface BankPaymentUpserted {
|
|
1119
1151
|
readonly 'discriminator': 'bank_payment_upserted';
|
|
1120
1152
|
readonly 'event_id': string;
|
|
@@ -1740,15 +1772,45 @@ declare namespace io.flow.internal.v0.models {
|
|
|
1740
1772
|
readonly 'error_message'?: string;
|
|
1741
1773
|
}
|
|
1742
1774
|
|
|
1775
|
+
interface CarrierCharge {
|
|
1776
|
+
readonly 'id': string;
|
|
1777
|
+
readonly 'type': io.flow.internal.v0.enums.CarrierChargeType;
|
|
1778
|
+
readonly 'label_invoice_request_id'?: string;
|
|
1779
|
+
readonly 'organization_id': string;
|
|
1780
|
+
readonly 'order_number': string;
|
|
1781
|
+
readonly 'carrier_id': string;
|
|
1782
|
+
readonly 'carrier_tracking_number': string;
|
|
1783
|
+
readonly 'label_created_at': string;
|
|
1784
|
+
readonly 'units': io.flow.internal.v0.models.CarrierChargeUnits;
|
|
1785
|
+
readonly 'base': io.flow.trueup.v0.models.LabelBase;
|
|
1786
|
+
readonly 'surcharges': io.flow.internal.v0.models.LabelSurchargeForm;
|
|
1787
|
+
readonly 'total': number;
|
|
1788
|
+
readonly 'dead'?: io.flow.trueup.v0.models.DeadWeight;
|
|
1789
|
+
readonly 'dimensional'?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
1790
|
+
readonly 'attributes'?: Record<string, string>;
|
|
1791
|
+
readonly 'outbound_carrier_charge_id'?: string;
|
|
1792
|
+
readonly 'reason'?: io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
interface CarrierChargeDeleted {
|
|
1796
|
+
readonly 'discriminator': 'carrier_charge_deleted';
|
|
1797
|
+
readonly 'event_id': string;
|
|
1798
|
+
readonly 'timestamp': string;
|
|
1799
|
+
readonly 'organization': string;
|
|
1800
|
+
readonly 'id': string;
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1743
1803
|
interface CarrierChargeFile {
|
|
1744
1804
|
readonly 'id': string;
|
|
1745
1805
|
readonly 'url': string;
|
|
1806
|
+
readonly 'attributes'?: Record<string, string>;
|
|
1746
1807
|
readonly 'created_at': string;
|
|
1747
1808
|
readonly 'result'?: io.flow.internal.v0.models.CarrierChargeFileResult;
|
|
1748
1809
|
}
|
|
1749
1810
|
|
|
1750
1811
|
interface CarrierChargeFileForm {
|
|
1751
1812
|
readonly 'url': string;
|
|
1813
|
+
readonly 'attributes'?: Record<string, string>;
|
|
1752
1814
|
}
|
|
1753
1815
|
|
|
1754
1816
|
interface CarrierChargeFileResult {
|
|
@@ -1815,6 +1877,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
1815
1877
|
readonly 'length'?: io.flow.units.v0.enums.UnitOfLength;
|
|
1816
1878
|
}
|
|
1817
1879
|
|
|
1880
|
+
interface CarrierChargeUpserted {
|
|
1881
|
+
readonly 'discriminator': 'carrier_charge_upserted';
|
|
1882
|
+
readonly 'event_id': string;
|
|
1883
|
+
readonly 'timestamp': string;
|
|
1884
|
+
readonly 'organization': string;
|
|
1885
|
+
readonly 'carrier_charge': io.flow.internal.v0.models.CarrierCharge;
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1818
1888
|
interface CarrierInvoice {
|
|
1819
1889
|
readonly 'number': string;
|
|
1820
1890
|
readonly 'timestamp': string;
|
|
@@ -4686,6 +4756,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
4686
4756
|
readonly 'insurance': io.flow.common.v0.models.Price;
|
|
4687
4757
|
}
|
|
4688
4758
|
|
|
4759
|
+
interface ConsoleLabelRequestForm {
|
|
4760
|
+
readonly 'discriminator': 'console_label_request_form';
|
|
4761
|
+
readonly 'order_number': string;
|
|
4762
|
+
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
4763
|
+
readonly 'service'?: string;
|
|
4764
|
+
}
|
|
4765
|
+
|
|
4766
|
+
interface ConsoleMarkUnresolvableForm {
|
|
4767
|
+
readonly 'discriminator': 'console_mark_unresolvable_form';
|
|
4768
|
+
readonly 'order_number': string;
|
|
4769
|
+
readonly 'service'?: string;
|
|
4770
|
+
readonly 'note'?: string;
|
|
4771
|
+
}
|
|
4772
|
+
|
|
4689
4773
|
interface ConsumerOptinActivity {
|
|
4690
4774
|
readonly 'optin_attribute_key': string;
|
|
4691
4775
|
readonly 'optin_region': string;
|
|
@@ -5658,6 +5742,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
5658
5742
|
interface ErpPriorityVendorForm {
|
|
5659
5743
|
readonly 'acc_des'?: string;
|
|
5660
5744
|
readonly 'tax_code'?: string;
|
|
5745
|
+
readonly 'tax_code_2'?: string;
|
|
5661
5746
|
readonly 'vat_flag'?: string;
|
|
5662
5747
|
readonly 'country_name'?: string;
|
|
5663
5748
|
readonly 'w_tax_percent'?: string;
|
|
@@ -5694,6 +5779,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
5694
5779
|
readonly 'eacc_des'?: string;
|
|
5695
5780
|
readonly 'acng_des'?: string;
|
|
5696
5781
|
readonly 'branch_des'?: string;
|
|
5782
|
+
readonly 'debit_entry_code'?: string;
|
|
5783
|
+
readonly 'credit_entry_code'?: string;
|
|
5697
5784
|
}
|
|
5698
5785
|
|
|
5699
5786
|
interface ErpVendor {
|
|
@@ -8209,6 +8296,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
8209
8296
|
interface ItemSummary {
|
|
8210
8297
|
readonly 'number': string;
|
|
8211
8298
|
readonly 'fulfillment_method': io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
8299
|
+
readonly 'country_of_origin'?: string;
|
|
8300
|
+
readonly 'inferred'?: boolean;
|
|
8212
8301
|
}
|
|
8213
8302
|
|
|
8214
8303
|
interface ItemValuesForm {
|
|
@@ -8315,20 +8404,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
8315
8404
|
readonly 'postal'?: string;
|
|
8316
8405
|
}
|
|
8317
8406
|
|
|
8318
|
-
interface LabelGenerationAddressFailureStatusUpdateForm {
|
|
8319
|
-
readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
8320
|
-
}
|
|
8321
|
-
|
|
8322
|
-
interface LabelGenerationAddressFailures {
|
|
8323
|
-
readonly 'id': string;
|
|
8324
|
-
readonly 'organization_id': string;
|
|
8325
|
-
readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
8326
|
-
readonly 'order_number': string;
|
|
8327
|
-
readonly 'order_submitted_at': string;
|
|
8328
|
-
readonly 'carrier_id': string;
|
|
8329
|
-
readonly 'destination_errors': io.flow.internal.v0.models.DestinationError[];
|
|
8330
|
-
}
|
|
8331
|
-
|
|
8332
8407
|
interface LabelGenerationSettings {
|
|
8333
8408
|
readonly 'id': string;
|
|
8334
8409
|
readonly 'item_identifier'?: string;
|
|
@@ -9492,6 +9567,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
9492
9567
|
readonly 'lines': io.flow.internal.v0.models.LineActionQuantities[];
|
|
9493
9568
|
}
|
|
9494
9569
|
|
|
9570
|
+
interface OrderAddressValidation {
|
|
9571
|
+
readonly 'id': string;
|
|
9572
|
+
readonly 'organization_id': string;
|
|
9573
|
+
readonly 'order_number': string;
|
|
9574
|
+
readonly 'service_id': string;
|
|
9575
|
+
readonly 'status': io.flow.internal.v0.enums.OrderAddressValidationStatus;
|
|
9576
|
+
readonly 'destination_street1'?: string;
|
|
9577
|
+
readonly 'destination_street2'?: string;
|
|
9578
|
+
readonly 'destination_city'?: string;
|
|
9579
|
+
readonly 'destination_postal'?: string;
|
|
9580
|
+
readonly 'destination_state'?: string;
|
|
9581
|
+
readonly 'destination_country': string;
|
|
9582
|
+
}
|
|
9583
|
+
|
|
9495
9584
|
interface OrderAttribute {
|
|
9496
9585
|
readonly 'id': string;
|
|
9497
9586
|
readonly 'key': string;
|
|
@@ -9738,6 +9827,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
9738
9827
|
readonly 'order_transaction': io.flow.internal.v0.models.OrderTransaction;
|
|
9739
9828
|
}
|
|
9740
9829
|
|
|
9830
|
+
interface OrderValidation {
|
|
9831
|
+
readonly 'id': string;
|
|
9832
|
+
readonly 'organization_id': string;
|
|
9833
|
+
readonly 'order_number': string;
|
|
9834
|
+
readonly 'service_id': string;
|
|
9835
|
+
readonly 'status': io.flow.internal.v0.enums.OrderValidationStatus;
|
|
9836
|
+
}
|
|
9837
|
+
|
|
9838
|
+
interface OrderValidationAttempt {
|
|
9839
|
+
readonly 'id': string;
|
|
9840
|
+
readonly 'organization_id': string;
|
|
9841
|
+
readonly 'order_number': string;
|
|
9842
|
+
readonly 'service_id': string;
|
|
9843
|
+
readonly 'origin': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
9844
|
+
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
9845
|
+
readonly 'label_request_method': io.flow.label.v0.enums.LabelRequestMethod;
|
|
9846
|
+
readonly 'label_trigger_method': io.flow.label.v0.enums.LabelTriggerMethod;
|
|
9847
|
+
readonly 'suggested_responsibility': io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
9848
|
+
readonly 'errors': string[];
|
|
9849
|
+
}
|
|
9850
|
+
|
|
9741
9851
|
interface OrderValidationError {
|
|
9742
9852
|
readonly 'message': string;
|
|
9743
9853
|
readonly 'reason': io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
@@ -11334,6 +11444,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11334
11444
|
|
|
11335
11445
|
interface ReportAccount {
|
|
11336
11446
|
readonly 'id': string;
|
|
11447
|
+
readonly 'currency': string;
|
|
11337
11448
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
11338
11449
|
}
|
|
11339
11450
|
|
|
@@ -11342,14 +11453,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11342
11453
|
readonly 'last4'?: string;
|
|
11343
11454
|
}
|
|
11344
11455
|
|
|
11456
|
+
interface ReportBankAccountCleartext {
|
|
11457
|
+
readonly 'type': string;
|
|
11458
|
+
readonly 'routing_number': string;
|
|
11459
|
+
readonly 'account_number': string;
|
|
11460
|
+
}
|
|
11461
|
+
|
|
11345
11462
|
interface ReportForm {
|
|
11346
11463
|
readonly 'from': string;
|
|
11347
11464
|
readonly 'to': string;
|
|
11348
11465
|
readonly 'type': io.flow.internal.v0.enums.ReportType;
|
|
11349
11466
|
}
|
|
11350
11467
|
|
|
11468
|
+
interface ReportOwner {
|
|
11469
|
+
readonly 'name': string;
|
|
11470
|
+
}
|
|
11471
|
+
|
|
11351
11472
|
interface ReportPayment {
|
|
11352
11473
|
readonly 'id': string;
|
|
11474
|
+
readonly 'amount': number;
|
|
11353
11475
|
readonly 'created_at': string;
|
|
11354
11476
|
}
|
|
11355
11477
|
|
|
@@ -11604,6 +11726,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11604
11726
|
readonly 'rule': io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
11605
11727
|
readonly 'keywords': io.flow.internal.v0.models.RestrictionKeywords;
|
|
11606
11728
|
readonly 'status': io.flow.internal.v0.enums.RestrictionStatus;
|
|
11729
|
+
readonly 'cause_rule_id'?: string;
|
|
11607
11730
|
readonly 'created_at': string;
|
|
11608
11731
|
readonly 'updated_at': string;
|
|
11609
11732
|
readonly 'updated_by'?: io.flow.common.v0.models.User;
|
|
@@ -11641,6 +11764,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11641
11764
|
readonly 'id': string;
|
|
11642
11765
|
readonly 'rule': io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
11643
11766
|
readonly 'status': io.flow.internal.v0.enums.RestrictionStatus;
|
|
11767
|
+
readonly 'cause_rule_id'?: string;
|
|
11644
11768
|
readonly 'keywords': io.flow.internal.v0.models.RestrictionKeywords;
|
|
11645
11769
|
readonly 'date'?: string;
|
|
11646
11770
|
readonly 'updated_by'?: io.flow.common.v0.models.User;
|
|
@@ -11972,6 +12096,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11972
12096
|
readonly 'requested_by': string;
|
|
11973
12097
|
}
|
|
11974
12098
|
|
|
12099
|
+
interface ScheduledPayment {
|
|
12100
|
+
readonly 'payment': io.flow.internal.v0.models.ReportPayment;
|
|
12101
|
+
readonly 'bank_account': io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
12102
|
+
readonly 'account': io.flow.internal.v0.models.ReportAccount;
|
|
12103
|
+
readonly 'owner': io.flow.internal.v0.models.ReportOwner;
|
|
12104
|
+
readonly 'description': string;
|
|
12105
|
+
}
|
|
12106
|
+
|
|
11975
12107
|
interface Screen {
|
|
11976
12108
|
readonly 'id': string;
|
|
11977
12109
|
readonly 'q': string;
|
|
@@ -11987,6 +12119,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11987
12119
|
readonly 'country'?: string;
|
|
11988
12120
|
}
|
|
11989
12121
|
|
|
12122
|
+
interface ScreeningStatusChange {
|
|
12123
|
+
readonly 'id': string;
|
|
12124
|
+
readonly 'previous_status'?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
12125
|
+
readonly 'status': io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
12126
|
+
readonly 'reason'?: string;
|
|
12127
|
+
readonly 'status_set_at': string;
|
|
12128
|
+
}
|
|
12129
|
+
|
|
12130
|
+
interface ScreeningStatusChangeDeleted {
|
|
12131
|
+
readonly 'discriminator': 'screening_status_change_deleted';
|
|
12132
|
+
readonly 'event_id': string;
|
|
12133
|
+
readonly 'timestamp': string;
|
|
12134
|
+
readonly 'organization': string;
|
|
12135
|
+
readonly 'id': string;
|
|
12136
|
+
}
|
|
12137
|
+
|
|
12138
|
+
interface ScreeningStatusChangeUpserted {
|
|
12139
|
+
readonly 'discriminator': 'screening_status_change_upserted';
|
|
12140
|
+
readonly 'event_id': string;
|
|
12141
|
+
readonly 'timestamp': string;
|
|
12142
|
+
readonly 'organization': string;
|
|
12143
|
+
readonly 'screening_status_change': io.flow.internal.v0.models.ScreeningStatusChange;
|
|
12144
|
+
}
|
|
12145
|
+
|
|
11990
12146
|
interface SearchAuthorization {
|
|
11991
12147
|
readonly 'discriminator': 'search_authorization';
|
|
11992
12148
|
readonly 'result': io.flow.payment.v0.models.AuthorizationResult;
|
|
@@ -12474,6 +12630,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12474
12630
|
|
|
12475
12631
|
interface ShopifyOrderDestinationForm {
|
|
12476
12632
|
readonly 'destination': io.flow.common.v0.models.Address;
|
|
12633
|
+
readonly 'order_note'?: string;
|
|
12477
12634
|
}
|
|
12478
12635
|
|
|
12479
12636
|
interface ShopifyOrderDetail {
|
|
@@ -13239,6 +13396,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13239
13396
|
readonly 'item': io.flow.internal.v0.models.SvitlanaItem;
|
|
13240
13397
|
}
|
|
13241
13398
|
|
|
13399
|
+
interface SvitlanaTest {
|
|
13400
|
+
readonly 'name': string;
|
|
13401
|
+
}
|
|
13402
|
+
|
|
13403
|
+
interface TamItem {
|
|
13404
|
+
readonly 'id': string;
|
|
13405
|
+
readonly 'number': string;
|
|
13406
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
13407
|
+
readonly 'description'?: string;
|
|
13408
|
+
readonly 'type': io.flow.internal.v0.enums.TamItemType;
|
|
13409
|
+
readonly 'added_on': string;
|
|
13410
|
+
}
|
|
13411
|
+
|
|
13412
|
+
interface TamItemForm {
|
|
13413
|
+
readonly 'number': string;
|
|
13414
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
13415
|
+
readonly 'description'?: string;
|
|
13416
|
+
readonly 'type': io.flow.internal.v0.enums.TamItemType;
|
|
13417
|
+
}
|
|
13418
|
+
|
|
13242
13419
|
interface TariffCodeDuty {
|
|
13243
13420
|
readonly 'tariff_code': string;
|
|
13244
13421
|
readonly 'duties': Record<string, io.flow.internal.v0.models.Duties>;
|
|
@@ -13495,6 +13672,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13495
13672
|
readonly 'timezone': string;
|
|
13496
13673
|
}
|
|
13497
13674
|
|
|
13675
|
+
interface TrackingDebugLabel {
|
|
13676
|
+
readonly 'in_transit_location'?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
13677
|
+
readonly 'delivery_location'?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
13678
|
+
readonly 'events': io.flow.internal.v0.models.TrackingDebugLabelEvent[];
|
|
13679
|
+
}
|
|
13680
|
+
|
|
13681
|
+
interface TrackingDebugLabelEvent {
|
|
13682
|
+
readonly 'status': io.flow.tracking.v0.enums.TrackingStatus;
|
|
13683
|
+
readonly 'raw_carrier_event_code'?: string;
|
|
13684
|
+
readonly 'location'?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
13685
|
+
}
|
|
13686
|
+
|
|
13687
|
+
interface TrackingDebugLabelLocation {
|
|
13688
|
+
readonly 'country': string;
|
|
13689
|
+
}
|
|
13690
|
+
|
|
13498
13691
|
interface TrackingDeleted {
|
|
13499
13692
|
readonly 'discriminator': 'tracking_deleted';
|
|
13500
13693
|
readonly 'event_id': string;
|
|
@@ -14017,12 +14210,13 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
14017
14210
|
type ClassificationTaxonomy = (io.flow.internal.v0.models.TaxonomyCategory | io.flow.internal.v0.models.LabelTaxonomy);
|
|
14018
14211
|
type ComplianceData = (io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData);
|
|
14019
14212
|
type ComplianceForm = (io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm);
|
|
14213
|
+
type ConsoleLabelValidationForm = (io.flow.internal.v0.models.ConsoleLabelRequestForm | io.flow.internal.v0.models.ConsoleMarkUnresolvableForm);
|
|
14020
14214
|
type ContentItem = (io.flow.internal.v0.models.Dict | io.flow.internal.v0.models.Href | io.flow.internal.v0.models.ContentLabel | io.flow.internal.v0.models.Load);
|
|
14021
14215
|
type DeclineReason = (io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance | io.flow.internal.v0.models.DeclineReasonFraud);
|
|
14022
14216
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
14023
14217
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
14024
14218
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
14025
|
-
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.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.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
14219
|
+
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
14026
14220
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
14027
14221
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
14028
14222
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -187,9 +187,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
187
187
|
readonly 'key': string;
|
|
188
188
|
readonly 'attributes': Record<string, string>;
|
|
189
189
|
readonly 'carrier_tracking_number': string;
|
|
190
|
-
readonly 'destination'
|
|
190
|
+
readonly 'destination'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
191
191
|
readonly 'flow_tracking_number': string;
|
|
192
|
-
readonly 'origin'
|
|
192
|
+
readonly 'origin'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
193
193
|
readonly 'package'?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
194
194
|
readonly 'service': io.flow.fulfillment.v0.unions.ServiceDescription;
|
|
195
195
|
readonly 'window'?: io.flow.common.v0.models.DatetimeRange;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare namespace io.flow.order.price.v0.enums {
|
|
2
|
-
type OrderPriceDetailComponentKey = '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' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge';
|
|
3
|
-
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
|
|
2
|
+
type OrderPriceDetailComponentKey = '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' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
3
|
+
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
declare namespace io.flow.order.price.v0.models {
|
|
@@ -164,6 +164,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
164
164
|
|
|
165
165
|
interface ShopifyOrderDestinationForm {
|
|
166
166
|
readonly 'destination': io.flow.common.v0.models.Address;
|
|
167
|
+
readonly 'order_note'?: string;
|
|
167
168
|
}
|
|
168
169
|
|
|
169
170
|
interface ShopifyShopStatistics {
|
|
@@ -666,6 +666,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
666
666
|
readonly 'shipping_address'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
667
667
|
readonly 'note_attributes'?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
|
|
668
668
|
readonly 'metafields'?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafieldForm[];
|
|
669
|
+
readonly 'note'?: string;
|
|
669
670
|
}
|
|
670
671
|
|
|
671
672
|
interface ShopifyWebhookCustomersDataRequest {
|
|
@@ -63,7 +63,7 @@ declare namespace io.flow.v0.enums {
|
|
|
63
63
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
64
64
|
type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
|
|
65
65
|
type ExporterOfRecord = 'flow' | 'organization';
|
|
66
|
-
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
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
69
|
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
@@ -112,8 +112,8 @@ declare namespace io.flow.v0.enums {
|
|
|
112
112
|
type OrderErrorCode = 'generic_error' | 'order_item_not_available' | 'order_identifier_error' | 'authorization_invalid' | 'domestic_shipping_unavailable' | 'shipping_unavailable' | 'value_threshold_exceeded' | 'invalid_currency' | 'invalid_country' | 'invalid_region' | 'invalid_language' | 'item_out_of_stock' | 'gift_card_not_accepted' | 'total_changed';
|
|
113
113
|
type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
|
|
114
114
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
115
|
-
type OrderPriceDetailComponentKey = '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' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge';
|
|
116
|
-
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
|
|
115
|
+
type OrderPriceDetailComponentKey = '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' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
116
|
+
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
117
117
|
type OrderQuoteAddressType = 'shipping';
|
|
118
118
|
type OrderQuoteErrorCode = 'contact_email_invalid' | 'contact_email_required' | 'contact_phone_invalid' | 'contact_phone_required' | 'country_not_supported' | 'currency_invalid' | 'first_name_invalid' | 'first_name_required' | 'geo_required_when_no_session' | 'language_invalid' | 'last_name_invalid' | 'last_name_required' | 'line_item_number_invalid' | 'line_item_number_not_available' | 'line_not_found' | 'line_quantity_invalid' | 'line_value_threshold_exceeded' | 'name_missing_first_or_last' | 'name_required' | 'order_quote_requires_at_least_one_line' | 'session_not_found' | 'session_organization_mismatch';
|
|
119
119
|
type OrderQuoteLineErrorCode = 'line_item_number_invalid' | 'line_item_number_not_available' | 'line_quantity_invalid' | 'line_value_threshold_exceeded';
|
|
@@ -8965,9 +8965,9 @@ declare namespace io.flow.v0.models {
|
|
|
8965
8965
|
readonly 'key': string;
|
|
8966
8966
|
readonly 'attributes': Record<string, string>;
|
|
8967
8967
|
readonly 'carrier_tracking_number': string;
|
|
8968
|
-
readonly 'destination'
|
|
8968
|
+
readonly 'destination'?: io.flow.v0.models.ShippingAddress;
|
|
8969
8969
|
readonly 'flow_tracking_number': string;
|
|
8970
|
-
readonly 'origin'
|
|
8970
|
+
readonly 'origin'?: io.flow.v0.models.ShippingAddress;
|
|
8971
8971
|
readonly 'package'?: io.flow.v0.models.ShippingLabelPackage;
|
|
8972
8972
|
readonly 'service': io.flow.v0.unions.ServiceDescription;
|
|
8973
8973
|
readonly 'window'?: io.flow.v0.models.DatetimeRange;
|
|
@@ -9667,6 +9667,7 @@ declare namespace io.flow.v0.models {
|
|
|
9667
9667
|
readonly 'currency': string;
|
|
9668
9668
|
readonly 'lines': io.flow.v0.models.TaxDutyQuoteLineItemForm[];
|
|
9669
9669
|
readonly 'shipping': io.flow.v0.models.TaxDutyQuoteSimpleShippingForm[];
|
|
9670
|
+
readonly 'includes'?: io.flow.v0.enums.LevyInclusion[];
|
|
9670
9671
|
}
|
|
9671
9672
|
|
|
9672
9673
|
interface TaxDutyQuoteLineItem {
|
|
@@ -10142,6 +10143,7 @@ declare namespace io.flow.v0.models {
|
|
|
10142
10143
|
readonly 'discriminator': 'shipping_label';
|
|
10143
10144
|
readonly 'request_method'?: io.flow.v0.enums.LabelRequestMethod;
|
|
10144
10145
|
readonly 'carrier': io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
10146
|
+
readonly 'revenue_share_percentage'?: number;
|
|
10145
10147
|
}
|
|
10146
10148
|
|
|
10147
10149
|
interface TransactionMetadataShippingLabelCarrier {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.218",
|
|
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": "597e2435a16a5bd699023530c389a211edd61d60"
|
|
18
18
|
}
|