@flowio/api-types 0.0.200 → 0.0.201
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generated/io.flow.billing.true.up.v0.billing-true-up.d.ts +50 -3
- package/generated/io.flow.billing.v0.billing.d.ts +35 -2
- package/generated/io.flow.experience.v0.experience.d.ts +1 -1
- package/generated/io.flow.internal.v0.api-internal.d.ts +93 -173
- package/generated/io.flow.organization.onboarding.state.v0.organization-onboarding-state.d.ts +1 -0
- package/generated/io.flow.shopify.markets.v0.shopify-markets.d.ts +2 -1
- package/generated/io.flow.stripe.v0.stripe.d.ts +2 -0
- package/generated/io.flow.v0.api.d.ts +37 -3
- package/package.json +2 -2
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
2
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
3
|
-
type WeightSelection = 'dead' | 'dimensional';
|
|
2
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
4
3
|
}
|
|
5
4
|
|
|
6
5
|
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
@@ -24,11 +23,44 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
|
24
23
|
readonly 'metadata': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
25
24
|
}
|
|
26
25
|
|
|
26
|
+
interface LabelInvoiceResponseFile {
|
|
27
|
+
readonly 'id': string;
|
|
28
|
+
readonly 'url': string;
|
|
29
|
+
readonly 'created_at': string;
|
|
30
|
+
readonly 'result'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelInvoiceResponseFileResult;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
interface LabelInvoiceResponseFileForm {
|
|
34
|
+
readonly 'url': string;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
interface LabelInvoiceResponseFileResult {
|
|
38
|
+
readonly 'processed_at': string;
|
|
39
|
+
readonly 'number_lines_successful': number;
|
|
40
|
+
readonly 'number_lines_with_errors': number;
|
|
41
|
+
readonly 'errors_url'?: string;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
interface LabelInvoiceResponseForm {
|
|
45
|
+
readonly 'id': string;
|
|
46
|
+
readonly 'label_invoice_request_id': string;
|
|
47
|
+
readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelResponseUnits;
|
|
48
|
+
readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
49
|
+
readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
|
|
50
|
+
readonly 'total': number;
|
|
51
|
+
}
|
|
52
|
+
|
|
27
53
|
interface LabelMetadata {
|
|
28
54
|
readonly 'ratecard': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
29
55
|
readonly 'weights': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
30
56
|
}
|
|
31
57
|
|
|
58
|
+
interface LabelResponseUnits {
|
|
59
|
+
readonly 'currency': string;
|
|
60
|
+
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
61
|
+
readonly 'length'?: io.flow.units.v0.enums.UnitOfLength;
|
|
62
|
+
}
|
|
63
|
+
|
|
32
64
|
interface LabelSurcharge {
|
|
33
65
|
readonly 'amount': number;
|
|
34
66
|
readonly 'type': io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
@@ -50,6 +82,22 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
|
50
82
|
readonly 'percentage': number;
|
|
51
83
|
}
|
|
52
84
|
|
|
85
|
+
interface LabelSurchargeForm {
|
|
86
|
+
readonly 'fuel'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
87
|
+
readonly 'remote_area'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
88
|
+
readonly 'oversize'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
89
|
+
readonly 'duties_paid'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
90
|
+
readonly 'emergency'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
91
|
+
readonly 'peak'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
92
|
+
readonly 'address_correction'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
interface LabelSurchargeSingleForm {
|
|
96
|
+
readonly 'amount': number;
|
|
97
|
+
readonly 'percentage'?: number;
|
|
98
|
+
readonly 'fee_per_weight_unit'?: number;
|
|
99
|
+
}
|
|
100
|
+
|
|
53
101
|
interface LabelUnits {
|
|
54
102
|
readonly 'currency': string;
|
|
55
103
|
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
@@ -67,7 +115,6 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
|
67
115
|
}
|
|
68
116
|
|
|
69
117
|
interface MetadataWeights {
|
|
70
|
-
readonly 'selected': io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
|
|
71
118
|
readonly 'dead'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
72
119
|
readonly 'dimensional'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
73
120
|
}
|
|
@@ -4,7 +4,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
4
4
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
5
5
|
type StatementAttachmentType = 'csv';
|
|
6
6
|
type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
|
|
7
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
7
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
8
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
9
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
8
10
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
9
11
|
}
|
|
10
12
|
|
|
@@ -249,10 +251,41 @@ declare namespace io.flow.billing.v0.models {
|
|
|
249
251
|
readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
250
252
|
}
|
|
251
253
|
|
|
254
|
+
interface TransactionMetadataTrueup {
|
|
255
|
+
readonly 'discriminator': 'trueup';
|
|
256
|
+
readonly 'estimate': io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
257
|
+
readonly 'actual': io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
interface TransactionMetadataTrueupData {
|
|
261
|
+
readonly 'source': io.flow.billing.v0.enums.TrueupSource;
|
|
262
|
+
readonly 'units': io.flow.billing.v0.models.TrueupLabelUnits;
|
|
263
|
+
readonly 'base': io.flow.billing.v0.models.TrueupLabelBase;
|
|
264
|
+
readonly 'surcharges': io.flow.billing.v0.models.TrueupLabelSurcharge[];
|
|
265
|
+
readonly 'total': number;
|
|
266
|
+
}
|
|
267
|
+
|
|
252
268
|
interface TransactionReference {
|
|
253
269
|
readonly 'id': string;
|
|
254
270
|
}
|
|
255
271
|
|
|
272
|
+
interface TrueupLabelBase {
|
|
273
|
+
readonly 'amount': number;
|
|
274
|
+
readonly 'weight': number;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
interface TrueupLabelSurcharge {
|
|
278
|
+
readonly 'amount': number;
|
|
279
|
+
readonly 'type': io.flow.billing.v0.enums.TrueupSurchargeType;
|
|
280
|
+
readonly 'percentage'?: number;
|
|
281
|
+
readonly 'per_weight_unit'?: number;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
interface TrueupLabelUnits {
|
|
285
|
+
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
286
|
+
readonly 'length'?: io.flow.units.v0.enums.UnitOfLength;
|
|
287
|
+
}
|
|
288
|
+
|
|
256
289
|
interface WithholdingDeduction {
|
|
257
290
|
readonly 'type': io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
258
291
|
readonly 'amount': number;
|
|
@@ -264,5 +297,5 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
264
297
|
type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
|
|
265
298
|
type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
|
|
266
299
|
type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
|
|
267
|
-
type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel);
|
|
300
|
+
type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataTrueup);
|
|
268
301
|
}
|
|
@@ -9,7 +9,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
9
9
|
type ExperiencePaymentMethodTag = 'display';
|
|
10
10
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
11
11
|
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';
|
|
12
|
-
type OrderPaymentType = 'card' | 'online' | 'credit' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
12
|
+
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
13
13
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
14
14
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
15
15
|
type OrderStatus = 'open' | 'submitted';
|
|
@@ -9,11 +9,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
9
9
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
|
|
10
10
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
11
11
|
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';
|
|
12
|
-
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_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_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' | '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_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | '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';
|
|
12
|
+
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_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_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' | '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_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | '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';
|
|
13
13
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
|
|
14
14
|
type BillingStatementBatchFileKey = 'summary';
|
|
15
15
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
16
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty';
|
|
16
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup';
|
|
17
17
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
18
18
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
19
19
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
@@ -131,7 +131,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
131
131
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
132
132
|
type EmptyAttribute = 'irrelevant';
|
|
133
133
|
type ErpFileType = 'vendor';
|
|
134
|
-
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' | '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' | 'label_invoice_request_upserted' | 'label_invoice_request_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' | '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' | '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' | '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_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' | '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' | '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' | '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';
|
|
134
|
+
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' | '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' | 'label_invoice_request_upserted' | 'label_invoice_request_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' | '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' | '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' | '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' | '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' | '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' | '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';
|
|
135
135
|
type ExperienceImportType = 'experience_with_settings';
|
|
136
136
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
137
137
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -164,7 +164,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
164
164
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
165
165
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
166
166
|
type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
|
|
167
|
-
type LabelInputSource = 'estimate';
|
|
168
167
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
169
168
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
170
169
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
@@ -220,7 +219,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
220
219
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
221
220
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
222
221
|
type PromptTarget = 'browse' | 'checkout';
|
|
223
|
-
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | '
|
|
222
|
+
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'label_tracking_summary' | 'label_invoice_request' | 'label_invoice_response' | 'label_invoice_response_file' | 'label_origin' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'refund' | 'refund_deletion' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email';
|
|
224
223
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
225
224
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
226
225
|
type RateSource = 'calculated' | 'market';
|
|
@@ -263,7 +262,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
263
262
|
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
264
263
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
265
264
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
266
|
-
type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
|
|
267
265
|
type TariffEligibilityType = 'rex';
|
|
268
266
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
269
267
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
@@ -273,9 +271,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
273
271
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
274
272
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
275
273
|
type TransferMethod = 'ach';
|
|
276
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
274
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
275
|
+
type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
|
|
277
276
|
type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
|
|
278
|
-
type WashCarrierActualFileStatus = 'pending' | 'processing' | 'processed' | 'failed';
|
|
279
277
|
}
|
|
280
278
|
|
|
281
279
|
declare namespace io.flow.internal.v0.models {
|
|
@@ -331,15 +329,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
331
329
|
readonly 'rate': number;
|
|
332
330
|
}
|
|
333
331
|
|
|
334
|
-
interface AccountForm {
|
|
335
|
-
readonly 'timezone': string;
|
|
336
|
-
readonly 'payment_schedule': io.flow.common.v0.unions.RepeatSchedule;
|
|
337
|
-
readonly 'payment_conditions'?: string;
|
|
338
|
-
readonly 'deposit_rule'?: io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
339
|
-
readonly 'center_key'?: string;
|
|
340
|
-
readonly 'bank_account_id'?: string;
|
|
341
|
-
}
|
|
342
|
-
|
|
343
332
|
interface AccountOrdersExportRequest {
|
|
344
333
|
readonly 'discriminator': 'account_orders_export_request';
|
|
345
334
|
readonly 'event_id': string;
|
|
@@ -364,6 +353,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
364
353
|
readonly 'transaction_created_before'?: string;
|
|
365
354
|
}
|
|
366
355
|
|
|
356
|
+
interface AccountOrigin {
|
|
357
|
+
readonly 'country': string;
|
|
358
|
+
}
|
|
359
|
+
|
|
367
360
|
interface AccountProcessingRateForm {
|
|
368
361
|
readonly 'query': string;
|
|
369
362
|
readonly 'capture': number;
|
|
@@ -1302,6 +1295,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
1302
1295
|
readonly 'channel_billed': io.flow.common.v0.models.Price;
|
|
1303
1296
|
readonly 'tax': io.flow.common.v0.models.Price;
|
|
1304
1297
|
readonly 'duty': io.flow.common.v0.models.Price;
|
|
1298
|
+
readonly 'trueup': io.flow.common.v0.models.Price;
|
|
1305
1299
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
1306
1300
|
}
|
|
1307
1301
|
|
|
@@ -1832,6 +1826,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
1832
1826
|
interface ChannelAccount {
|
|
1833
1827
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
1834
1828
|
readonly 'id': string;
|
|
1829
|
+
readonly 'key'?: string;
|
|
1830
|
+
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
1835
1831
|
readonly 'currency': string;
|
|
1836
1832
|
readonly 'updated_at': string;
|
|
1837
1833
|
readonly 'timezone': io.flow.reference.v0.models.Timezone;
|
|
@@ -4555,132 +4551,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
4555
4551
|
readonly 'signature_secret': string;
|
|
4556
4552
|
}
|
|
4557
4553
|
|
|
4558
|
-
interface CsvActual {
|
|
4559
|
-
readonly 'id': string;
|
|
4560
|
-
readonly 'currency': string;
|
|
4561
|
-
readonly 'base_amount': number;
|
|
4562
|
-
readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
|
|
4563
|
-
readonly 'total': number;
|
|
4564
|
-
readonly 'weight_unit': io.flow.units.v0.enums.UnitOfWeight;
|
|
4565
|
-
readonly 'weight': number;
|
|
4566
|
-
readonly 'ratecard': io.flow.internal.v0.models.CsvActualRatecard;
|
|
4567
|
-
}
|
|
4568
|
-
|
|
4569
|
-
interface CsvActualRatecard {
|
|
4570
|
-
readonly 'base_amount'?: number;
|
|
4571
|
-
}
|
|
4572
|
-
|
|
4573
|
-
interface CsvDimensions {
|
|
4574
|
-
readonly 'unit': io.flow.units.v0.enums.UnitOfLength;
|
|
4575
|
-
readonly 'length': number;
|
|
4576
|
-
readonly 'width': number;
|
|
4577
|
-
readonly 'depth': number;
|
|
4578
|
-
}
|
|
4579
|
-
|
|
4580
|
-
interface CsvFlowRatecard {
|
|
4581
|
-
readonly 'id': string;
|
|
4582
|
-
readonly 'number': string;
|
|
4583
|
-
readonly 'owner': io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
4584
|
-
readonly 'lane': io.flow.internal.v0.models.LaneReference;
|
|
4585
|
-
readonly 'dim_factor': number;
|
|
4586
|
-
readonly 'surcharges': io.flow.internal.v0.models.CsvFlowRatecardSurcharges;
|
|
4587
|
-
readonly 'base_amount'?: number;
|
|
4588
|
-
}
|
|
4589
|
-
|
|
4590
|
-
interface CsvFlowRatecardSurcharges {
|
|
4591
|
-
readonly 'fuel'?: io.flow.internal.v0.models.CsvServiceFee;
|
|
4592
|
-
readonly 'remote_area'?: io.flow.internal.v0.models.CsvServiceFee;
|
|
4593
|
-
readonly 'oversize'?: io.flow.internal.v0.models.CsvServiceFee;
|
|
4594
|
-
readonly 'duties_paid'?: io.flow.internal.v0.models.CsvServiceFee;
|
|
4595
|
-
}
|
|
4596
|
-
|
|
4597
|
-
interface CsvGlobalEProposition {
|
|
4598
|
-
readonly 'name': string;
|
|
4599
|
-
}
|
|
4600
|
-
|
|
4601
|
-
interface CsvGlobalEShippingMethod {
|
|
4602
|
-
readonly 'id': string;
|
|
4603
|
-
readonly 'proposition': io.flow.internal.v0.models.CsvGlobalEProposition;
|
|
4604
|
-
}
|
|
4605
|
-
|
|
4606
|
-
interface CsvInput {
|
|
4607
|
-
readonly 'id': string;
|
|
4608
|
-
readonly 'source': io.flow.internal.v0.enums.LabelInputSource;
|
|
4609
|
-
readonly 'currency': string;
|
|
4610
|
-
readonly 'base_amount': number;
|
|
4611
|
-
readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
|
|
4612
|
-
readonly 'total': number;
|
|
4613
|
-
readonly 'weight_unit': io.flow.units.v0.enums.UnitOfWeight;
|
|
4614
|
-
readonly 'weight': number;
|
|
4615
|
-
readonly 'variance': number;
|
|
4616
|
-
}
|
|
4617
|
-
|
|
4618
|
-
interface CsvLabel {
|
|
4619
|
-
readonly 'id': string;
|
|
4620
|
-
readonly 'cost': io.flow.internal.v0.models.CsvLabelCost;
|
|
4621
|
-
readonly 'created_at': string;
|
|
4622
|
-
readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
4623
|
-
readonly 'trigger_method'?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
4624
|
-
}
|
|
4625
|
-
|
|
4626
|
-
interface CsvLabelCost {
|
|
4627
|
-
readonly 'amount': number;
|
|
4628
|
-
readonly 'currency': string;
|
|
4629
|
-
readonly 'source': io.flow.label.v0.enums.CostEstimateSource;
|
|
4630
|
-
}
|
|
4631
|
-
|
|
4632
|
-
interface CsvOrder {
|
|
4633
|
-
readonly 'organization': io.flow.internal.v0.models.OrganizationReference;
|
|
4634
|
-
readonly 'number': string;
|
|
4635
|
-
readonly 'destination': io.flow.experience.v0.models.OrderAddress;
|
|
4636
|
-
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
4637
|
-
readonly 'tax': io.flow.common.v0.models.Money;
|
|
4638
|
-
readonly 'duty': io.flow.common.v0.models.Money;
|
|
4639
|
-
readonly 'total': io.flow.common.v0.models.Money;
|
|
4640
|
-
readonly 'number_items': number;
|
|
4641
|
-
}
|
|
4642
|
-
|
|
4643
|
-
interface CsvRecord {
|
|
4644
|
-
readonly 'label': io.flow.internal.v0.models.CsvLabel;
|
|
4645
|
-
readonly 'carrier_service_id': string;
|
|
4646
|
-
readonly 'carrier_tracking_number': string;
|
|
4647
|
-
readonly 'order': io.flow.internal.v0.models.CsvOrder;
|
|
4648
|
-
readonly 'flow_ratecard': io.flow.internal.v0.models.CsvFlowRatecard;
|
|
4649
|
-
readonly 'global_e_shipping_method'?: io.flow.internal.v0.models.CsvGlobalEShippingMethod;
|
|
4650
|
-
readonly 'weight': io.flow.internal.v0.models.CsvWeight;
|
|
4651
|
-
readonly 'dimensions': io.flow.internal.v0.models.CsvDimensions;
|
|
4652
|
-
readonly 'input'?: io.flow.internal.v0.models.CsvInput;
|
|
4653
|
-
readonly 'actual'?: io.flow.internal.v0.models.CsvActual;
|
|
4654
|
-
readonly 'variance'?: number;
|
|
4655
|
-
readonly 'deltas': string[];
|
|
4656
|
-
readonly 'outliers': string[];
|
|
4657
|
-
}
|
|
4658
|
-
|
|
4659
|
-
interface CsvServiceFee {
|
|
4660
|
-
readonly 'amount'?: number;
|
|
4661
|
-
readonly 'currency'?: string;
|
|
4662
|
-
readonly 'percentage'?: number;
|
|
4663
|
-
}
|
|
4664
|
-
|
|
4665
|
-
interface CsvSurchargePercentage {
|
|
4666
|
-
readonly 'percentage': number;
|
|
4667
|
-
readonly 'amount': number;
|
|
4668
|
-
}
|
|
4669
|
-
|
|
4670
|
-
interface CsvSurcharges {
|
|
4671
|
-
readonly 'fuel': io.flow.internal.v0.models.CsvSurchargePercentage;
|
|
4672
|
-
readonly 'remote_area': number;
|
|
4673
|
-
readonly 'oversize': number;
|
|
4674
|
-
readonly 'duties_paid': number;
|
|
4675
|
-
}
|
|
4676
|
-
|
|
4677
|
-
interface CsvWeight {
|
|
4678
|
-
readonly 'unit': io.flow.units.v0.enums.UnitOfWeight;
|
|
4679
|
-
readonly 'provided': number;
|
|
4680
|
-
readonly 'dimensional': number;
|
|
4681
|
-
readonly 'lookup': number;
|
|
4682
|
-
}
|
|
4683
|
-
|
|
4684
4554
|
interface CurrencyInternalRate {
|
|
4685
4555
|
readonly 'id': string;
|
|
4686
4556
|
readonly 'organization_id': string;
|
|
@@ -4898,6 +4768,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
4898
4768
|
readonly 'authorization_id'?: string;
|
|
4899
4769
|
readonly 'posting_proof_id'?: string;
|
|
4900
4770
|
readonly 'label_tracking_summary_id'?: string;
|
|
4771
|
+
readonly 'shipping_notification_id'?: string;
|
|
4772
|
+
readonly 'external_fulfillment_proof_id'?: string;
|
|
4901
4773
|
}
|
|
4902
4774
|
|
|
4903
4775
|
interface DebugOrderTransactionFormOrderIdentifier {
|
|
@@ -6219,6 +6091,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
6219
6091
|
interface FlowAccount {
|
|
6220
6092
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
6221
6093
|
readonly 'id': string;
|
|
6094
|
+
readonly 'key'?: string;
|
|
6095
|
+
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
6222
6096
|
readonly 'currency': string;
|
|
6223
6097
|
readonly 'updated_at': string;
|
|
6224
6098
|
readonly 'timezone': io.flow.reference.v0.models.Timezone;
|
|
@@ -6494,6 +6368,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
6494
6368
|
readonly 'shipping': io.flow.internal.v0.models.FulfillmentShipping;
|
|
6495
6369
|
readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
|
|
6496
6370
|
readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
|
|
6371
|
+
readonly 'proof': io.flow.internal.v0.unions.FulfillmentProof;
|
|
6372
|
+
readonly 'responsible_party': io.flow.internal.v0.enums.ResponsibleParty;
|
|
6497
6373
|
readonly 'completes_order': boolean;
|
|
6498
6374
|
readonly 'sequence_number': number;
|
|
6499
6375
|
readonly 'business'?: io.flow.internal.v0.models.FulfillmentBusiness;
|
|
@@ -8184,6 +8060,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
8184
8060
|
readonly 'label_invoice_request': io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
8185
8061
|
}
|
|
8186
8062
|
|
|
8063
|
+
interface LabelInvoiceResponseFile {
|
|
8064
|
+
readonly 'id': string;
|
|
8065
|
+
readonly 'url': string;
|
|
8066
|
+
readonly 'created_at': string;
|
|
8067
|
+
readonly 'result'?: io.flow.internal.v0.models.LabelInvoiceResponseFileResult;
|
|
8068
|
+
}
|
|
8069
|
+
|
|
8070
|
+
interface LabelInvoiceResponseFileForm {
|
|
8071
|
+
readonly 'url': string;
|
|
8072
|
+
}
|
|
8073
|
+
|
|
8074
|
+
interface LabelInvoiceResponseFileResult {
|
|
8075
|
+
readonly 'processed_at': string;
|
|
8076
|
+
readonly 'number_lines_successful': number;
|
|
8077
|
+
readonly 'number_lines_with_errors': number;
|
|
8078
|
+
readonly 'errors_url'?: string;
|
|
8079
|
+
}
|
|
8080
|
+
|
|
8187
8081
|
interface LabelInvoiceResponseForm {
|
|
8188
8082
|
readonly 'id': string;
|
|
8189
8083
|
readonly 'label_invoice_request_id': string;
|
|
@@ -8276,6 +8170,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
8276
8170
|
readonly 'duties_paid'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
8277
8171
|
readonly 'emergency'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
8278
8172
|
readonly 'peak'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
8173
|
+
readonly 'address_correction'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
8279
8174
|
}
|
|
8280
8175
|
|
|
8281
8176
|
interface LabelSurchargeSingleForm {
|
|
@@ -8372,10 +8267,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
8372
8267
|
readonly 'region': string;
|
|
8373
8268
|
}
|
|
8374
8269
|
|
|
8375
|
-
interface LaneReference {
|
|
8376
|
-
readonly 'id': string;
|
|
8377
|
-
}
|
|
8378
|
-
|
|
8379
8270
|
interface LevyRateSummary {
|
|
8380
8271
|
readonly 'id': string;
|
|
8381
8272
|
readonly 'number': string;
|
|
@@ -9193,6 +9084,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
9193
9084
|
|
|
9194
9085
|
interface OnboardingOrganization {
|
|
9195
9086
|
readonly 'age': number;
|
|
9087
|
+
readonly 'setup_time': number;
|
|
9196
9088
|
readonly 'compliance_approved': boolean;
|
|
9197
9089
|
readonly 'compliance_full_review_required': boolean;
|
|
9198
9090
|
readonly 'application_received': string;
|
|
@@ -9349,6 +9241,38 @@ declare namespace io.flow.internal.v0.models {
|
|
|
9349
9241
|
readonly 'evidence': io.flow.internal.v0.unions.OrderCancellationEvidence;
|
|
9350
9242
|
}
|
|
9351
9243
|
|
|
9244
|
+
interface OrderCombinedShipment {
|
|
9245
|
+
readonly 'id': string;
|
|
9246
|
+
readonly 'label_id': string;
|
|
9247
|
+
readonly 'carrier_id': string;
|
|
9248
|
+
readonly 'service_id': string;
|
|
9249
|
+
readonly 'order_number': string;
|
|
9250
|
+
readonly 'provided_carrier_name'?: string;
|
|
9251
|
+
readonly 'carrier_tracking_number': string;
|
|
9252
|
+
}
|
|
9253
|
+
|
|
9254
|
+
interface OrderCombinedShipmentDeleted {
|
|
9255
|
+
readonly 'discriminator': 'order_combined_shipment_deleted';
|
|
9256
|
+
readonly 'event_id': string;
|
|
9257
|
+
readonly 'timestamp': string;
|
|
9258
|
+
readonly 'organization': string;
|
|
9259
|
+
readonly 'id': string;
|
|
9260
|
+
}
|
|
9261
|
+
|
|
9262
|
+
interface OrderCombinedShipmentForm {
|
|
9263
|
+
readonly 'order_number': string;
|
|
9264
|
+
readonly 'provided_carrier_name'?: string;
|
|
9265
|
+
readonly 'carrier_tracking_number': string;
|
|
9266
|
+
}
|
|
9267
|
+
|
|
9268
|
+
interface OrderCombinedShipmentUpserted {
|
|
9269
|
+
readonly 'discriminator': 'order_combined_shipment_upserted';
|
|
9270
|
+
readonly 'event_id': string;
|
|
9271
|
+
readonly 'timestamp': string;
|
|
9272
|
+
readonly 'organization': string;
|
|
9273
|
+
readonly 'order_combined_shipment': io.flow.internal.v0.models.OrderCombinedShipment;
|
|
9274
|
+
}
|
|
9275
|
+
|
|
9352
9276
|
interface OrderDetail {
|
|
9353
9277
|
readonly 'order': io.flow.experience.v0.models.Order;
|
|
9354
9278
|
readonly 'status': io.flow.experience.v0.enums.OrderStatus;
|
|
@@ -9519,6 +9443,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
9519
9443
|
interface OrganizationAccount {
|
|
9520
9444
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
9521
9445
|
readonly 'id': string;
|
|
9446
|
+
readonly 'key'?: string;
|
|
9447
|
+
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
9522
9448
|
readonly 'currency': string;
|
|
9523
9449
|
readonly 'updated_at': string;
|
|
9524
9450
|
readonly 'timezone': io.flow.reference.v0.models.Timezone;
|
|
@@ -9754,10 +9680,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
9754
9680
|
readonly 'organization_payment_setting': io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
9755
9681
|
}
|
|
9756
9682
|
|
|
9757
|
-
interface OrganizationReference {
|
|
9758
|
-
readonly 'id': string;
|
|
9759
|
-
}
|
|
9760
|
-
|
|
9761
9683
|
interface OrganizationRestrictionNoteForm {
|
|
9762
9684
|
readonly 'note': string;
|
|
9763
9685
|
readonly 'note_type': io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -11152,6 +11074,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11152
11074
|
readonly 'hs_code'?: string;
|
|
11153
11075
|
readonly 'merchant_category_code'?: string;
|
|
11154
11076
|
readonly 'notes': io.flow.internal.v0.models.OrganizationRestrictionStatusNote[];
|
|
11077
|
+
readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
|
|
11078
|
+
readonly 'last_year_domestic_gmv'?: io.flow.common.v0.models.Money;
|
|
11155
11079
|
}
|
|
11156
11080
|
|
|
11157
11081
|
interface RestrictionOrganizationDecisionSummary {
|
|
@@ -11778,6 +11702,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11778
11702
|
readonly 'shopify_tracking_number': io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|
|
11779
11703
|
readonly 'shopify_carrier_service'?: io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
11780
11704
|
readonly 'fulfillment_created_at'?: string;
|
|
11705
|
+
readonly 'flow_label_id'?: string;
|
|
11781
11706
|
}
|
|
11782
11707
|
|
|
11783
11708
|
interface ShopifyMonitoringFulfillmentMissingDetails {
|
|
@@ -12063,6 +11988,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12063
11988
|
readonly 'remote_area': number;
|
|
12064
11989
|
readonly 'oversize': number;
|
|
12065
11990
|
readonly 'ccf': number;
|
|
11991
|
+
readonly 'emergency': number;
|
|
11992
|
+
readonly 'peak': number;
|
|
12066
11993
|
readonly 'total': number;
|
|
12067
11994
|
}
|
|
12068
11995
|
|
|
@@ -12486,12 +12413,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12486
12413
|
readonly 'values': io.flow.internal.v0.models.LabelAliases[];
|
|
12487
12414
|
}
|
|
12488
12415
|
|
|
12489
|
-
interface Surcharge {
|
|
12490
|
-
readonly 'amount'?: number;
|
|
12491
|
-
readonly 'percentage'?: number;
|
|
12492
|
-
readonly 'type': io.flow.internal.v0.enums.SurchargeType;
|
|
12493
|
-
}
|
|
12494
|
-
|
|
12495
12416
|
interface SvbVirtualCardClearing {
|
|
12496
12417
|
readonly 'id': string;
|
|
12497
12418
|
readonly 'virtual_card_id': string;
|
|
@@ -12955,6 +12876,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12955
12876
|
readonly 'created_at': string;
|
|
12956
12877
|
}
|
|
12957
12878
|
|
|
12879
|
+
interface TrueupTransaction {
|
|
12880
|
+
readonly 'discriminator': 'trueup_transaction';
|
|
12881
|
+
readonly 'label_transaction': io.flow.internal.v0.models.TransactionReference;
|
|
12882
|
+
readonly 'id': string;
|
|
12883
|
+
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
12884
|
+
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
12885
|
+
readonly 'posted_at'?: string;
|
|
12886
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
12887
|
+
readonly 'description': string;
|
|
12888
|
+
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
12889
|
+
readonly 'created_at': string;
|
|
12890
|
+
}
|
|
12891
|
+
|
|
12958
12892
|
interface UnassignedMerchantGuid {
|
|
12959
12893
|
readonly 'id': string;
|
|
12960
12894
|
readonly 'merchant_guid': string;
|
|
@@ -13196,20 +13130,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13196
13130
|
readonly 'created_at': string;
|
|
13197
13131
|
}
|
|
13198
13132
|
|
|
13199
|
-
interface WashCarrierActualFile {
|
|
13200
|
-
readonly 'id': string;
|
|
13201
|
-
readonly 'url': string;
|
|
13202
|
-
readonly 'status': io.flow.internal.v0.enums.WashCarrierActualFileStatus;
|
|
13203
|
-
}
|
|
13204
|
-
|
|
13205
|
-
interface WashCarrierActualFileForm {
|
|
13206
|
-
readonly 'url': string;
|
|
13207
|
-
}
|
|
13208
|
-
|
|
13209
|
-
interface WashExportRequest {
|
|
13210
|
-
readonly 'url': string;
|
|
13211
|
-
}
|
|
13212
|
-
|
|
13213
13133
|
interface WasteElectricalAndElectronicEquipmentComplianceData {
|
|
13214
13134
|
readonly 'discriminator': 'weee';
|
|
13215
13135
|
readonly 'label': string;
|
|
@@ -13346,7 +13266,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
13346
13266
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
13347
13267
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
13348
13268
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
13349
|
-
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.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.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | 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.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.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.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.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.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.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.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);
|
|
13269
|
+
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.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.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | 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.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.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.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.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.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.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);
|
|
13350
13270
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
13351
13271
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
13352
13272
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -13401,7 +13321,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
13401
13321
|
type TaskData = (io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport);
|
|
13402
13322
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
13403
13323
|
type Tracker = (io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel);
|
|
13404
|
-
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction);
|
|
13324
|
+
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction);
|
|
13405
13325
|
type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
|
|
13406
13326
|
type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
|
|
13407
13327
|
type Variant = (io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant);
|
package/generated/io.flow.organization.onboarding.state.v0.organization-onboarding-state.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
46
46
|
readonly 'current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
47
47
|
readonly 'started_at'?: string;
|
|
48
48
|
readonly 'time_blocked'?: number;
|
|
49
|
+
readonly 'time_in_setup'?: number;
|
|
49
50
|
readonly 'blocked_since'?: string;
|
|
50
51
|
readonly 'completed_at'?: string;
|
|
51
52
|
readonly 'onboarding_started_at'?: string;
|
|
@@ -487,7 +487,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
487
487
|
readonly 'key': string;
|
|
488
488
|
readonly 'namespace': string;
|
|
489
489
|
readonly 'value': string;
|
|
490
|
-
readonly '
|
|
490
|
+
readonly 'type': io.flow.shopify.markets.v0.enums.ShopifyOrderValueType;
|
|
491
491
|
readonly 'description'?: string;
|
|
492
492
|
}
|
|
493
493
|
|
|
@@ -651,6 +651,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
651
651
|
readonly 'id': number;
|
|
652
652
|
readonly 'shipping_address'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
653
653
|
readonly 'note_attributes'?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
|
|
654
|
+
readonly 'metafields'?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafieldForm[];
|
|
654
655
|
}
|
|
655
656
|
|
|
656
657
|
interface ShopifyWebhookCustomersDataRequest {
|
|
@@ -148,6 +148,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
148
148
|
readonly 'id': string;
|
|
149
149
|
readonly 'amount': number;
|
|
150
150
|
readonly 'amount_refunded': number;
|
|
151
|
+
readonly 'authorization_code'?: string;
|
|
151
152
|
readonly 'captured': boolean;
|
|
152
153
|
readonly 'created': number;
|
|
153
154
|
readonly 'currency': string;
|
|
@@ -198,6 +199,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
198
199
|
readonly 'id': string;
|
|
199
200
|
readonly 'amount': number;
|
|
200
201
|
readonly 'amount_refunded': number;
|
|
202
|
+
readonly 'authorization_code'?: string;
|
|
201
203
|
readonly 'captured': boolean;
|
|
202
204
|
readonly 'created': number;
|
|
203
205
|
readonly 'currency': string;
|
|
@@ -110,7 +110,7 @@ declare namespace io.flow.v0.enums {
|
|
|
110
110
|
type OrderChangeSource = 'consumer' | 'retailer' | 'fulfillment' | 'flow' | 'carrier';
|
|
111
111
|
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';
|
|
112
112
|
type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
|
|
113
|
-
type OrderPaymentType = 'card' | 'online' | 'credit' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
113
|
+
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
114
114
|
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';
|
|
115
115
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
|
|
116
116
|
type OrderQuoteAddressType = 'shipping';
|
|
@@ -199,7 +199,9 @@ declare namespace io.flow.v0.enums {
|
|
|
199
199
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
200
200
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
201
201
|
type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
|
|
202
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
202
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
203
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
204
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
203
205
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
204
206
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
205
207
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
@@ -6124,6 +6126,7 @@ declare namespace io.flow.v0.models {
|
|
|
6124
6126
|
readonly 'current_state': io.flow.v0.unions.OnboardingState;
|
|
6125
6127
|
readonly 'started_at'?: string;
|
|
6126
6128
|
readonly 'time_blocked'?: number;
|
|
6129
|
+
readonly 'time_in_setup'?: number;
|
|
6127
6130
|
readonly 'blocked_since'?: string;
|
|
6128
6131
|
readonly 'completed_at'?: string;
|
|
6129
6132
|
readonly 'onboarding_started_at'?: string;
|
|
@@ -9941,6 +9944,20 @@ declare namespace io.flow.v0.models {
|
|
|
9941
9944
|
readonly 'request_method'?: io.flow.v0.enums.LabelRequestMethod;
|
|
9942
9945
|
}
|
|
9943
9946
|
|
|
9947
|
+
interface TransactionMetadataTrueup {
|
|
9948
|
+
readonly 'discriminator': 'trueup';
|
|
9949
|
+
readonly 'estimate': io.flow.v0.models.TransactionMetadataTrueupData;
|
|
9950
|
+
readonly 'actual': io.flow.v0.models.TransactionMetadataTrueupData;
|
|
9951
|
+
}
|
|
9952
|
+
|
|
9953
|
+
interface TransactionMetadataTrueupData {
|
|
9954
|
+
readonly 'source': io.flow.v0.enums.TrueupSource;
|
|
9955
|
+
readonly 'units': io.flow.v0.models.TrueupLabelUnits;
|
|
9956
|
+
readonly 'base': io.flow.v0.models.TrueupLabelBase;
|
|
9957
|
+
readonly 'surcharges': io.flow.v0.models.TrueupLabelSurcharge[];
|
|
9958
|
+
readonly 'total': number;
|
|
9959
|
+
}
|
|
9960
|
+
|
|
9944
9961
|
interface TransactionNetworkDetailsCard {
|
|
9945
9962
|
readonly 'network_transaction_id'?: string;
|
|
9946
9963
|
readonly 'network'?: io.flow.v0.enums.CardType;
|
|
@@ -9973,6 +9990,23 @@ declare namespace io.flow.v0.models {
|
|
|
9973
9990
|
readonly 'to': number;
|
|
9974
9991
|
}
|
|
9975
9992
|
|
|
9993
|
+
interface TrueupLabelBase {
|
|
9994
|
+
readonly 'amount': number;
|
|
9995
|
+
readonly 'weight': number;
|
|
9996
|
+
}
|
|
9997
|
+
|
|
9998
|
+
interface TrueupLabelSurcharge {
|
|
9999
|
+
readonly 'amount': number;
|
|
10000
|
+
readonly 'type': io.flow.v0.enums.TrueupSurchargeType;
|
|
10001
|
+
readonly 'percentage'?: number;
|
|
10002
|
+
readonly 'per_weight_unit'?: number;
|
|
10003
|
+
}
|
|
10004
|
+
|
|
10005
|
+
interface TrueupLabelUnits {
|
|
10006
|
+
readonly 'weight': io.flow.v0.enums.UnitOfWeight;
|
|
10007
|
+
readonly 'length'?: io.flow.v0.enums.UnitOfLength;
|
|
10008
|
+
}
|
|
10009
|
+
|
|
9976
10010
|
interface UltimateBeneficiaryOwner {
|
|
9977
10011
|
readonly 'name': string;
|
|
9978
10012
|
readonly 'dob': string;
|
|
@@ -10311,5 +10345,5 @@ declare namespace io.flow.v0.unions {
|
|
|
10311
10345
|
type Token = (io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken);
|
|
10312
10346
|
type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
|
|
10313
10347
|
type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
|
|
10314
|
-
type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel);
|
|
10348
|
+
type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataTrueup);
|
|
10315
10349
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.201",
|
|
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": "1c87d63f654d1b7f4aa3ef5237a2cf0558fda3d5"
|
|
18
18
|
}
|