@flowio/api-internal-prop-types 9.24.109 → 9.24.110
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +185 -475
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +185 -475
- package/src/api-internal.js +582 -916
package/lib/api-internal.d.ts
CHANGED
|
@@ -1439,6 +1439,17 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1439
1439
|
readonly 'display': string;
|
|
1440
1440
|
}
|
|
1441
1441
|
|
|
1442
|
+
interface AuthorizationRetry {
|
|
1443
|
+
readonly 'id': string;
|
|
1444
|
+
readonly 'authorization_request_id': string;
|
|
1445
|
+
readonly 'authorization_id': string;
|
|
1446
|
+
readonly 'organization_id': string;
|
|
1447
|
+
readonly 'attempt': number;
|
|
1448
|
+
readonly 'last_failure_code': string;
|
|
1449
|
+
readonly 'created_at': string;
|
|
1450
|
+
readonly 'updated_at': string;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1442
1453
|
interface AuthorizationVersion {
|
|
1443
1454
|
readonly 'id': string;
|
|
1444
1455
|
readonly 'timestamp': string;
|
|
@@ -1556,6 +1567,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1556
1567
|
readonly 'processor'?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
|
|
1557
1568
|
readonly 'stored_method_usage_step'?: io.flow.payment.v0.enums.StoredMethodUsageStep;
|
|
1558
1569
|
readonly 'authorized_at'?: string;
|
|
1570
|
+
readonly 'authorization_request_id'?: string;
|
|
1559
1571
|
}
|
|
1560
1572
|
|
|
1561
1573
|
interface CardBrowserActionConfiguration {
|
|
@@ -1837,6 +1849,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1837
1849
|
readonly 'processor'?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
|
|
1838
1850
|
readonly 'confirmation_details'?: io.flow.payment.v0.unions.ConfirmationDetails;
|
|
1839
1851
|
readonly 'authorized_at'?: string;
|
|
1852
|
+
readonly 'authorization_request_id'?: string;
|
|
1840
1853
|
}
|
|
1841
1854
|
|
|
1842
1855
|
interface OnlinePaymentAuthorizationForm {
|
|
@@ -2346,9 +2359,12 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2346
2359
|
type RefundFailureReason = 'charge_for_pending_refund_disputed' | 'declined' | 'expired_or_canceled_card' | 'insufficient_funds' | 'lost_or_stolen_card' | 'merchant_request' | 'unknown';
|
|
2347
2360
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
2348
2361
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
2362
|
+
type ReportingReportRunStatus = 'pending' | 'succeeded' | 'failed';
|
|
2363
|
+
type ReportingReportType = 'ending_balance_reconciliation.itemized.1' | 'ending_balance_reconciliation.itemized.2' | 'ending_balance_reconciliation.itemized.3' | 'ending_balance_reconciliation.itemized.4' | 'payout_reconciliation.itemized.5' | 'payout_reconciliation.by_id.itemized.1' | 'payout_reconciliation.by_id.itemized.2' | 'payout_reconciliation.by_id.itemized.3' | 'payout_reconciliation.by_id.itemized.4' | 'payout_reconciliation.by_id.summary.1' | 'ending_balance_reconciliation.summary.1' | 'payout_reconciliation.itemized.1' | 'payout_reconciliation.itemized.2' | 'payout_reconciliation.itemized.3' | 'payout_reconciliation.itemized.4' | 'payout_reconciliation.summary.1';
|
|
2349
2364
|
type RequestThreeDSecureType = 'automatic' | 'any';
|
|
2350
2365
|
type RequestedCapabilities = 'card_payments' | 'legacy_payments' | 'transfers';
|
|
2351
2366
|
type SetupFutureUsage = 'on_session' | 'off_session';
|
|
2367
|
+
type ShopifyPaymentStripeEventType = 'charge.captured' | 'charge.dispute.created' | 'charge.dispute.closed' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'charge.expired' | 'charge.failed' | 'charge.pending' | 'charge.refund.updated' | 'charge.refunded' | 'charge.succeeded' | 'charge.updated' | 'payment_intent.amount_capturable_updated' | 'payment_intent.canceled' | 'payment_intent.created' | 'payment_intent.partially_funded' | 'payment_intent.payment_failed' | 'payment_intent.processing' | 'payment_intent.requires_action' | 'payment_intent.succeeded' | 'transfer.created' | 'transfer.reversed' | 'transfer.updated' | 'reporting.report_run.succeeded' | 'reporting.report_type.updated' | 'reporting.report_type.failed';
|
|
2352
2368
|
type SourceFlow = 'redirect' | 'receiver' | 'code_verification' | 'none';
|
|
2353
2369
|
type SourceStatus = 'canceled' | 'chargeable' | 'consumed' | 'failed' | 'pending';
|
|
2354
2370
|
type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
|
|
@@ -3242,12 +3258,76 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3242
3258
|
readonly 'url': string;
|
|
3243
3259
|
}
|
|
3244
3260
|
|
|
3261
|
+
interface ReportRunParameters {
|
|
3262
|
+
readonly 'interval_start': number;
|
|
3263
|
+
readonly 'interval_end': number;
|
|
3264
|
+
readonly 'columns'?: string[];
|
|
3265
|
+
readonly 'payout'?: string;
|
|
3266
|
+
readonly 'connected_account'?: string;
|
|
3267
|
+
readonly 'reporting_category'?: string;
|
|
3268
|
+
}
|
|
3269
|
+
|
|
3270
|
+
interface ReportingReportRun {
|
|
3271
|
+
readonly 'id': string;
|
|
3272
|
+
readonly 'object': string;
|
|
3273
|
+
readonly 'created': number;
|
|
3274
|
+
readonly 'error'?: string;
|
|
3275
|
+
readonly 'livemode': boolean;
|
|
3276
|
+
readonly 'status': io.flow.stripe.v0.enums.ReportingReportRunStatus;
|
|
3277
|
+
readonly 'result'?: io.flow.stripe.v0.models.ReportingReportRunResult;
|
|
3278
|
+
readonly 'succeeded_at'?: number;
|
|
3279
|
+
}
|
|
3280
|
+
|
|
3281
|
+
interface ReportingReportRunForm {
|
|
3282
|
+
readonly 'report_type': io.flow.stripe.v0.enums.ReportingReportType;
|
|
3283
|
+
readonly 'parameters': io.flow.stripe.v0.models.ReportRunParameters;
|
|
3284
|
+
}
|
|
3285
|
+
|
|
3286
|
+
interface ReportingReportRunResult {
|
|
3287
|
+
readonly 'id': string;
|
|
3288
|
+
readonly 'object': string;
|
|
3289
|
+
readonly 'created': number;
|
|
3290
|
+
readonly 'expires_at': number;
|
|
3291
|
+
readonly 'filename': string;
|
|
3292
|
+
readonly 'links': any/*object*/;
|
|
3293
|
+
readonly 'purpose': string;
|
|
3294
|
+
readonly 'size': number;
|
|
3295
|
+
readonly 'title': string;
|
|
3296
|
+
readonly 'type': string;
|
|
3297
|
+
readonly 'url': string;
|
|
3298
|
+
}
|
|
3299
|
+
|
|
3300
|
+
interface ReportingReportRuns {
|
|
3301
|
+
readonly 'object': string;
|
|
3302
|
+
readonly 'data': io.flow.stripe.v0.models.ReportingReportRun[];
|
|
3303
|
+
readonly 'has_more': boolean;
|
|
3304
|
+
readonly 'url'?: string;
|
|
3305
|
+
}
|
|
3306
|
+
|
|
3245
3307
|
interface Shipping {
|
|
3246
3308
|
readonly 'address': io.flow.stripe.v0.models.Address;
|
|
3247
3309
|
readonly 'name'?: string;
|
|
3248
3310
|
readonly 'phone'?: string;
|
|
3249
3311
|
}
|
|
3250
3312
|
|
|
3313
|
+
interface ShopifyPaymentStripeEvent {
|
|
3314
|
+
readonly 'id': string;
|
|
3315
|
+
readonly 'api_version'?: string;
|
|
3316
|
+
readonly 'data': io.flow.stripe.v0.models.ShopifyPaymentStripeEventData;
|
|
3317
|
+
readonly 'request'?: any/*object*/;
|
|
3318
|
+
readonly 'type': io.flow.stripe.v0.enums.ShopifyPaymentStripeEventType;
|
|
3319
|
+
readonly 'object': string;
|
|
3320
|
+
readonly 'account'?: string;
|
|
3321
|
+
readonly 'created': number;
|
|
3322
|
+
readonly 'livemode': boolean;
|
|
3323
|
+
readonly 'pending_webhooks': number;
|
|
3324
|
+
}
|
|
3325
|
+
|
|
3326
|
+
interface ShopifyPaymentStripeEventData {
|
|
3327
|
+
readonly 'object'?: any/*object*/;
|
|
3328
|
+
readonly 'previous_attributes'?: any/*object*/;
|
|
3329
|
+
}
|
|
3330
|
+
|
|
3251
3331
|
interface Source {
|
|
3252
3332
|
readonly 'id': string;
|
|
3253
3333
|
readonly 'object': string;
|
|
@@ -4311,7 +4391,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4311
4391
|
readonly 'transaction_updated_date': string;
|
|
4312
4392
|
readonly 'transaction_status': io.flow.external.paypal.v1.enums.ReportingTransactionStatus;
|
|
4313
4393
|
readonly 'transaction_subject'?: string;
|
|
4314
|
-
readonly 'invoice_id'
|
|
4394
|
+
readonly 'invoice_id'?: string;
|
|
4315
4395
|
readonly 'custom_field'?: string;
|
|
4316
4396
|
readonly 'protection_eligibility'?: string;
|
|
4317
4397
|
readonly 'instrument_type'?: string;
|
|
@@ -5532,8 +5612,15 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5532
5612
|
}
|
|
5533
5613
|
|
|
5534
5614
|
interface GraphqlMetafield {
|
|
5615
|
+
readonly 'id': string;
|
|
5535
5616
|
readonly 'key': string;
|
|
5536
5617
|
readonly 'value': string;
|
|
5618
|
+
readonly 'type'?: string;
|
|
5619
|
+
}
|
|
5620
|
+
|
|
5621
|
+
interface GraphqlMetaobject {
|
|
5622
|
+
readonly 'id': string;
|
|
5623
|
+
readonly 'displayName': string;
|
|
5537
5624
|
}
|
|
5538
5625
|
|
|
5539
5626
|
interface GraphqlOption {
|
|
@@ -5709,6 +5796,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5709
5796
|
readonly 'updated_at': string;
|
|
5710
5797
|
readonly 'has_variants_that_requires_components'?: boolean;
|
|
5711
5798
|
readonly 'category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
5799
|
+
readonly 'metafields'?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
5712
5800
|
}
|
|
5713
5801
|
|
|
5714
5802
|
interface ProductDelete {
|
|
@@ -5726,6 +5814,17 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5726
5814
|
readonly 'alt'?: string;
|
|
5727
5815
|
}
|
|
5728
5816
|
|
|
5817
|
+
interface ProductMetafield {
|
|
5818
|
+
readonly 'id': number;
|
|
5819
|
+
readonly 'namespace': string;
|
|
5820
|
+
readonly 'key': string;
|
|
5821
|
+
readonly 'value': string;
|
|
5822
|
+
readonly 'created_at': string;
|
|
5823
|
+
readonly 'updated_at': string;
|
|
5824
|
+
readonly 'type': string;
|
|
5825
|
+
readonly 'admin_graphql_api_id': string;
|
|
5826
|
+
}
|
|
5827
|
+
|
|
5729
5828
|
interface ProductVariant {
|
|
5730
5829
|
readonly 'id': number;
|
|
5731
5830
|
readonly 'sku'?: string;
|
|
@@ -8253,6 +8352,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
8253
8352
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
8254
8353
|
type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
8255
8354
|
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';
|
|
8355
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
8256
8356
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
8257
8357
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
8258
8358
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
@@ -8874,6 +8974,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
8874
8974
|
readonly 'device_details'?: io.flow.payment.v0.unions.DeviceDetails;
|
|
8875
8975
|
readonly 'destination_contact_details'?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
8876
8976
|
readonly 'incoterm_summary'?: io.flow.experience.v0.models.IncotermSummary;
|
|
8977
|
+
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
8877
8978
|
}
|
|
8878
8979
|
|
|
8879
8980
|
interface OrderAddress {
|
|
@@ -8963,6 +9064,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
8963
9064
|
readonly 'authorization_keys'?: string[];
|
|
8964
9065
|
readonly 'options'?: io.flow.experience.v0.models.OrderOptions;
|
|
8965
9066
|
readonly 'device_details'?: io.flow.payment.v0.unions.DeviceDetails;
|
|
9067
|
+
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
8966
9068
|
}
|
|
8967
9069
|
|
|
8968
9070
|
interface OrderGeo {
|
|
@@ -9074,6 +9176,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
9074
9176
|
readonly 'authorization_keys'?: string[];
|
|
9075
9177
|
readonly 'options'?: io.flow.experience.v0.models.OrderOptions;
|
|
9076
9178
|
readonly 'device_details'?: io.flow.payment.v0.unions.DeviceDetails;
|
|
9179
|
+
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
9077
9180
|
}
|
|
9078
9181
|
|
|
9079
9182
|
interface OrderReference {
|
|
@@ -10509,7 +10612,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
10509
10612
|
|
|
10510
10613
|
declare namespace io.flow.tracking.v0.enums {
|
|
10511
10614
|
type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
|
|
10512
|
-
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
10615
|
+
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
10513
10616
|
}
|
|
10514
10617
|
|
|
10515
10618
|
declare namespace io.flow.tracking.v0.models {
|
|
@@ -11450,7 +11553,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11450
11553
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11451
11554
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
11452
11555
|
type StatementAttachmentType = 'csv';
|
|
11453
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | '
|
|
11556
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share' | 'tax_duty_delta';
|
|
11454
11557
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
11455
11558
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11456
11559
|
}
|
|
@@ -13250,21 +13353,22 @@ declare namespace io.flow.fraud.v0.unions {
|
|
|
13250
13353
|
|
|
13251
13354
|
declare namespace io.flow.sellability.v0.enums {
|
|
13252
13355
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
13356
|
+
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category';
|
|
13253
13357
|
}
|
|
13254
13358
|
|
|
13255
13359
|
declare namespace io.flow.sellability.v0.models {
|
|
13256
13360
|
interface ProductSellability {
|
|
13257
|
-
readonly '
|
|
13361
|
+
readonly 'shop_id': string;
|
|
13258
13362
|
readonly 'product_id'?: string;
|
|
13259
|
-
readonly '
|
|
13363
|
+
readonly 'request_id': string;
|
|
13364
|
+
readonly 'hs6_code': string;
|
|
13260
13365
|
readonly 'restricted_regions': io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
13261
|
-
readonly 'in_review_regions': io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
13262
13366
|
}
|
|
13263
13367
|
|
|
13264
13368
|
interface ProductSellabilityForm {
|
|
13265
|
-
readonly '
|
|
13369
|
+
readonly 'shop_id': string;
|
|
13266
13370
|
readonly 'product_id'?: string;
|
|
13267
|
-
readonly '
|
|
13371
|
+
readonly 'request_id': string;
|
|
13268
13372
|
readonly 'name': string;
|
|
13269
13373
|
readonly 'price': io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
13270
13374
|
readonly 'description': string;
|
|
@@ -13276,6 +13380,11 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13276
13380
|
readonly 'amount': number;
|
|
13277
13381
|
}
|
|
13278
13382
|
|
|
13383
|
+
interface SellabilityError {
|
|
13384
|
+
readonly 'code': io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
13385
|
+
readonly 'messages': string[];
|
|
13386
|
+
}
|
|
13387
|
+
|
|
13279
13388
|
interface SellablilityRegionResult {
|
|
13280
13389
|
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13281
13390
|
readonly 'regions': string[];
|
|
@@ -13597,7 +13706,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13597
13706
|
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_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_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | '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_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | '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_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_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_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
|
|
13598
13707
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
13599
13708
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
13600
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | '
|
|
13709
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'tax_duty_delta';
|
|
13601
13710
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
13602
13711
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
13603
13712
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -13649,7 +13758,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13649
13758
|
type DisputeLiability = 'flow' | 'organization';
|
|
13650
13759
|
type DisputeProcessor = 'adyen' | 'paypal' | 'stripe';
|
|
13651
13760
|
type DisputeReportingCategory = 'charge_issues' | 'delivery' | 'fraud' | 'general' | 'product' | 'returns';
|
|
13652
|
-
type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
|
|
13761
|
+
type DisputeStatus = 'pending' | 'won' | 'lost' | 'refunded' | 'expired';
|
|
13653
13762
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
13654
13763
|
type DisputeType = 'chargeback';
|
|
13655
13764
|
type DutyCompoundExpressionType = 'sum' | 'max' | 'min';
|
|
@@ -13661,7 +13770,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13661
13770
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
13662
13771
|
type EmptyAttribute = 'irrelevant';
|
|
13663
13772
|
type ErpFileType = 'vendor';
|
|
13664
|
-
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'final_estimate_upserted' | 'final_estimate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | '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' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_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' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_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' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_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' | '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' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_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' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13773
|
+
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'final_estimate_upserted' | 'final_estimate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | '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' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_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' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | '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_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | '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' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_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' | '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' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_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' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13665
13774
|
type ExperienceImportType = 'experience_with_settings';
|
|
13666
13775
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13667
13776
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13691,8 +13800,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13691
13800
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
13692
13801
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
13693
13802
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
13803
|
+
type LabelEventMedium = 'webhook' | 'pull' | 'post';
|
|
13694
13804
|
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
13695
|
-
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system';
|
|
13805
|
+
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system' | 'carrier';
|
|
13696
13806
|
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
13697
13807
|
type LabelRequestResultState = 'success' | 'failure';
|
|
13698
13808
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
@@ -13701,16 +13811,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13701
13811
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
13702
13812
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
13703
13813
|
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback';
|
|
13704
|
-
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
13705
|
-
type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
|
|
13706
|
-
type MarketingGatewayChannelStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected' | 'unavailable';
|
|
13707
|
-
type MarketingGatewayErrorCode = 'generic_error' | 'google_api_error' | 'facebook_api_error' | 'invalid_oauth_token_error';
|
|
13708
|
-
type MarketingGatewayFacebookTokenStatus = 'unknown' | 'active' | 'expired';
|
|
13709
|
-
type MarketingGatewayFeedDownloadFormat = 'tsv' | 'csv' | 'txt';
|
|
13710
|
-
type MarketingGatewayFeedState = 'initialized' | 'generated' | 'in_review' | 'rejected' | 'active';
|
|
13711
|
-
type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
|
|
13712
|
-
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
13713
|
-
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
13714
13814
|
type MixedBagWeight = '0' | '1' | '2';
|
|
13715
13815
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
13716
13816
|
type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
|
|
@@ -13738,6 +13838,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13738
13838
|
type OrganizationRestrictionScreeningStatus = 'in_review' | 'fully_reviewed' | 'rejected' | 'unscreened';
|
|
13739
13839
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
13740
13840
|
type Owner = 'flow' | 'organization';
|
|
13841
|
+
type PaymentShortUrlDiscriminator = 'adyen_3ds2';
|
|
13741
13842
|
type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
|
|
13742
13843
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
13743
13844
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
@@ -17679,6 +17780,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17679
17780
|
readonly 'raw_carrier_event_code'?: string;
|
|
17680
17781
|
readonly 'aggregator_status_code'?: string;
|
|
17681
17782
|
readonly 'created_at'?: string;
|
|
17783
|
+
readonly 'source'?: io.flow.internal.v0.enums.LabelEventSource;
|
|
17784
|
+
readonly 'medium'?: io.flow.internal.v0.enums.LabelEventMedium;
|
|
17682
17785
|
}
|
|
17683
17786
|
|
|
17684
17787
|
interface ExternalFulfillmentProof {
|
|
@@ -17832,31 +17935,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17832
17935
|
readonly 'description'?: string;
|
|
17833
17936
|
}
|
|
17834
17937
|
|
|
17835
|
-
interface FeedDeleted {
|
|
17836
|
-
readonly 'discriminator': 'feed_deleted';
|
|
17837
|
-
readonly 'event_id': string;
|
|
17838
|
-
readonly 'timestamp': string;
|
|
17839
|
-
readonly 'organization_id': string;
|
|
17840
|
-
readonly 'feed': io.flow.internal.v0.models.MarketingGatewayFeed;
|
|
17841
|
-
}
|
|
17842
|
-
|
|
17843
|
-
interface FeedUpserted {
|
|
17844
|
-
readonly 'discriminator': 'feed_upserted';
|
|
17845
|
-
readonly 'event_id': string;
|
|
17846
|
-
readonly 'timestamp': string;
|
|
17847
|
-
readonly 'organization_id': string;
|
|
17848
|
-
readonly 'feed': io.flow.internal.v0.models.MarketingGatewayFeed;
|
|
17849
|
-
}
|
|
17850
|
-
|
|
17851
|
-
interface FeedsExport {
|
|
17852
|
-
readonly 'discriminator': 'feeds_export';
|
|
17853
|
-
readonly 'event_id': string;
|
|
17854
|
-
readonly 'timestamp': string;
|
|
17855
|
-
readonly 'organization': string;
|
|
17856
|
-
readonly 'export_id': string;
|
|
17857
|
-
readonly 'feed_ids': string[];
|
|
17858
|
-
}
|
|
17859
|
-
|
|
17860
17938
|
interface Fees {
|
|
17861
17939
|
readonly 'processing'?: io.flow.internal.v0.models.Fee;
|
|
17862
17940
|
readonly 'rate_lock': io.flow.internal.v0.models.Fee;
|
|
@@ -18773,20 +18851,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18773
18851
|
readonly 'hs6_description'?: string;
|
|
18774
18852
|
}
|
|
18775
18853
|
|
|
18776
|
-
interface HarmonizationItemClassificationDeleted {
|
|
18777
|
-
readonly 'discriminator': 'harmonization_item_classification_deleted';
|
|
18778
|
-
readonly 'event_id': string;
|
|
18779
|
-
readonly 'timestamp': string;
|
|
18780
|
-
readonly 'harmonization_item_classification': io.flow.internal.v0.models.HarmonizationItemClassification;
|
|
18781
|
-
}
|
|
18782
|
-
|
|
18783
|
-
interface HarmonizationItemClassificationUpserted {
|
|
18784
|
-
readonly 'discriminator': 'harmonization_item_classification_upserted';
|
|
18785
|
-
readonly 'event_id': string;
|
|
18786
|
-
readonly 'timestamp': string;
|
|
18787
|
-
readonly 'harmonization_item_classification': io.flow.internal.v0.models.HarmonizationItemClassification;
|
|
18788
|
-
}
|
|
18789
|
-
|
|
18790
18854
|
interface HarmonizationItemSummary {
|
|
18791
18855
|
readonly 'number': string;
|
|
18792
18856
|
readonly 'product_id'?: string;
|
|
@@ -19830,22 +19894,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19830
19894
|
readonly 'source_localization_id': string;
|
|
19831
19895
|
}
|
|
19832
19896
|
|
|
19833
|
-
interface LocalizedItemDeleted {
|
|
19834
|
-
readonly 'discriminator': 'localized_item_deleted';
|
|
19835
|
-
readonly 'event_id': string;
|
|
19836
|
-
readonly 'timestamp': string;
|
|
19837
|
-
readonly 'organization': string;
|
|
19838
|
-
readonly 'number': string;
|
|
19839
|
-
}
|
|
19840
|
-
|
|
19841
|
-
interface LocalizedItemDeletedV2 {
|
|
19842
|
-
readonly 'discriminator': 'localized_item_deleted_v2';
|
|
19843
|
-
readonly 'event_id': string;
|
|
19844
|
-
readonly 'timestamp': string;
|
|
19845
|
-
readonly 'organization': string;
|
|
19846
|
-
readonly 'id': string;
|
|
19847
|
-
}
|
|
19848
|
-
|
|
19849
19897
|
interface LocalizedItemPricesExportRequest {
|
|
19850
19898
|
readonly 'discriminator': 'localized_item_prices_export_request';
|
|
19851
19899
|
readonly 'event_id': string;
|
|
@@ -19855,43 +19903,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19855
19903
|
readonly 'since'?: string;
|
|
19856
19904
|
}
|
|
19857
19905
|
|
|
19858
|
-
interface LocalizedItemSnapshot {
|
|
19859
|
-
readonly 'discriminator': 'localized_item_snapshot';
|
|
19860
|
-
readonly 'event_id': string;
|
|
19861
|
-
readonly 'timestamp': string;
|
|
19862
|
-
readonly 'organization': string;
|
|
19863
|
-
readonly 'subcatalog_id': string;
|
|
19864
|
-
readonly 'url': string;
|
|
19865
|
-
}
|
|
19866
|
-
|
|
19867
|
-
interface LocalizedItemUpsertedV2 {
|
|
19868
|
-
readonly 'discriminator': 'localized_item_upserted_v2';
|
|
19869
|
-
readonly 'event_id': string;
|
|
19870
|
-
readonly 'timestamp': string;
|
|
19871
|
-
readonly 'organization': string;
|
|
19872
|
-
readonly 'id': string;
|
|
19873
|
-
readonly 'item': io.flow.catalog.v0.models.Item;
|
|
19874
|
-
readonly 'item_schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
19875
|
-
}
|
|
19876
|
-
|
|
19877
19906
|
interface LocalizedItemsExportSettings {
|
|
19878
19907
|
readonly 'content_type': io.flow.internal.v0.enums.ExportContentType;
|
|
19879
19908
|
readonly 'full_export_schedule'?: io.flow.internal.v0.unions.ExportSchedule;
|
|
19880
19909
|
readonly 'delta_export_schedule'?: io.flow.internal.v0.unions.ExportSchedule;
|
|
19881
19910
|
}
|
|
19882
19911
|
|
|
19883
|
-
interface LocalizedPriceBookItem {
|
|
19884
|
-
readonly 'id': string;
|
|
19885
|
-
readonly 'item_id': string;
|
|
19886
|
-
readonly 'item_number': string;
|
|
19887
|
-
readonly 'attributes': Record<string, string>;
|
|
19888
|
-
readonly 'local'?: io.flow.catalog.v0.models.Local;
|
|
19889
|
-
readonly 'price_book_item_id': string;
|
|
19890
|
-
readonly 'price_book_key': string;
|
|
19891
|
-
readonly 'price_book_item_price': io.flow.common.v0.models.Price;
|
|
19892
|
-
readonly 'schedule': io.flow.price.v0.models.PriceBookItemSchedule;
|
|
19893
|
-
}
|
|
19894
|
-
|
|
19895
19912
|
interface LocalizedPriceBookItemData {
|
|
19896
19913
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
19897
19914
|
readonly 'experience': io.flow.common.v0.models.ExperienceSummary;
|
|
@@ -19904,22 +19921,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19904
19921
|
readonly 'price_end_date'?: string;
|
|
19905
19922
|
}
|
|
19906
19923
|
|
|
19907
|
-
interface LocalizedPriceBookItemDeleted {
|
|
19908
|
-
readonly 'discriminator': 'localized_price_book_item_deleted';
|
|
19909
|
-
readonly 'event_id': string;
|
|
19910
|
-
readonly 'timestamp': string;
|
|
19911
|
-
readonly 'organization': string;
|
|
19912
|
-
readonly 'id': string;
|
|
19913
|
-
}
|
|
19914
|
-
|
|
19915
|
-
interface LocalizedPriceBookItemUpserted {
|
|
19916
|
-
readonly 'discriminator': 'localized_price_book_item_upserted';
|
|
19917
|
-
readonly 'event_id': string;
|
|
19918
|
-
readonly 'timestamp': string;
|
|
19919
|
-
readonly 'organization': string;
|
|
19920
|
-
readonly 'item': io.flow.internal.v0.models.LocalizedPriceBookItem;
|
|
19921
|
-
}
|
|
19922
|
-
|
|
19923
19924
|
interface Location {
|
|
19924
19925
|
readonly 'type': io.flow.internal.v0.enums.ContentType;
|
|
19925
19926
|
readonly 'url': string;
|
|
@@ -20112,261 +20113,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20112
20113
|
readonly 'shipping': boolean;
|
|
20113
20114
|
}
|
|
20114
20115
|
|
|
20115
|
-
interface MarketingGatewayChannel {
|
|
20116
|
-
readonly 'id': string;
|
|
20117
|
-
readonly 'platform': io.flow.internal.v0.enums.MarketingGatewayPlatform;
|
|
20118
|
-
readonly 'integration_type': io.flow.internal.v0.enums.MarketingGatewayChannelIntegrationType;
|
|
20119
|
-
readonly 'status': io.flow.internal.v0.enums.MarketingGatewayChannelStatus;
|
|
20120
|
-
readonly 'details'?: io.flow.internal.v0.unions.MarketingGatewayChannelDetails;
|
|
20121
|
-
readonly 'error'?: io.flow.internal.v0.models.MarketingGatewayError;
|
|
20122
|
-
}
|
|
20123
|
-
|
|
20124
|
-
interface MarketingGatewayChannelConnectionForm {
|
|
20125
|
-
readonly 'default_feed_source'?: io.flow.internal.v0.unions.MarketingGatewayFeedSource;
|
|
20126
|
-
}
|
|
20127
|
-
|
|
20128
|
-
interface MarketingGatewayChannelForm {
|
|
20129
|
-
readonly 'platform': io.flow.internal.v0.enums.MarketingGatewayPlatform;
|
|
20130
|
-
readonly 'account_id': number;
|
|
20131
|
-
}
|
|
20132
|
-
|
|
20133
|
-
interface MarketingGatewayChannelSourceSummary {
|
|
20134
|
-
readonly 'channel': io.flow.internal.v0.enums.MarketingGatewayPlatform;
|
|
20135
|
-
readonly 'platform': io.flow.internal.v0.enums.MarketingGatewayPlatform;
|
|
20136
|
-
readonly 'source': io.flow.internal.v0.unions.MarketingGatewaySourceSummary;
|
|
20137
|
-
}
|
|
20138
|
-
|
|
20139
|
-
interface MarketingGatewayDistributionChannelFacebook {
|
|
20140
|
-
readonly 'discriminator': 'marketing_gateway_distribution_channel_facebook';
|
|
20141
|
-
readonly 'catalog_id': number;
|
|
20142
|
-
}
|
|
20143
|
-
|
|
20144
|
-
interface MarketingGatewayDistributionChannelGoogle {
|
|
20145
|
-
readonly 'discriminator': 'marketing_gateway_distribution_channel_google';
|
|
20146
|
-
readonly 'account_id': number;
|
|
20147
|
-
}
|
|
20148
|
-
|
|
20149
|
-
interface MarketingGatewayError {
|
|
20150
|
-
readonly 'code': io.flow.internal.v0.enums.MarketingGatewayErrorCode;
|
|
20151
|
-
readonly 'messages': string[];
|
|
20152
|
-
}
|
|
20153
|
-
|
|
20154
|
-
interface MarketingGatewayFacebookBusiness {
|
|
20155
|
-
readonly 'business_id': number;
|
|
20156
|
-
readonly 'name': string;
|
|
20157
|
-
}
|
|
20158
|
-
|
|
20159
|
-
interface MarketingGatewayFacebookBusinessSummary {
|
|
20160
|
-
readonly 'business_id': number;
|
|
20161
|
-
readonly 'name': string;
|
|
20162
|
-
}
|
|
20163
|
-
|
|
20164
|
-
interface MarketingGatewayFacebookCatalogForm {
|
|
20165
|
-
readonly 'catalog_id': number;
|
|
20166
|
-
}
|
|
20167
|
-
|
|
20168
|
-
interface MarketingGatewayFacebookCatalogSummary {
|
|
20169
|
-
readonly 'catalog_id': number;
|
|
20170
|
-
readonly 'name': string;
|
|
20171
|
-
readonly 'item_count': number;
|
|
20172
|
-
}
|
|
20173
|
-
|
|
20174
|
-
interface MarketingGatewayFacebookChannelDetails {
|
|
20175
|
-
readonly 'discriminator': 'marketing_gateway_facebook_channel_details';
|
|
20176
|
-
readonly 'catalog_id': number;
|
|
20177
|
-
readonly 'catalog_name'?: string;
|
|
20178
|
-
readonly 'business_name'?: string;
|
|
20179
|
-
readonly 'datasources'?: io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary[];
|
|
20180
|
-
readonly 'localized_feed_count'?: number;
|
|
20181
|
-
readonly 'connected_at'?: string;
|
|
20182
|
-
readonly 'token_summary'?: io.flow.internal.v0.models.MarketingGatewayFacebookConnectionAccessTokenSummary;
|
|
20183
|
-
}
|
|
20184
|
-
|
|
20185
|
-
interface MarketingGatewayFacebookConnection {
|
|
20186
|
-
readonly 'organization_id': string;
|
|
20187
|
-
readonly 'businesses': io.flow.internal.v0.models.MarketingGatewayFacebookBusinessSummary[];
|
|
20188
|
-
}
|
|
20189
|
-
|
|
20190
|
-
interface MarketingGatewayFacebookConnectionAccessTokenSummary {
|
|
20191
|
-
readonly 'catalog_id'?: number;
|
|
20192
|
-
readonly 'created_at'?: number;
|
|
20193
|
-
readonly 'expires_at'?: number;
|
|
20194
|
-
readonly 'user_id': string;
|
|
20195
|
-
readonly 'user_email'?: string;
|
|
20196
|
-
readonly 'token_status': io.flow.internal.v0.enums.MarketingGatewayFacebookTokenStatus;
|
|
20197
|
-
}
|
|
20198
|
-
|
|
20199
|
-
interface MarketingGatewayFacebookConnectionDeauth {
|
|
20200
|
-
readonly 'user_id': number;
|
|
20201
|
-
}
|
|
20202
|
-
|
|
20203
|
-
interface MarketingGatewayFacebookConnectionForm {
|
|
20204
|
-
readonly 'access_token': string;
|
|
20205
|
-
}
|
|
20206
|
-
|
|
20207
|
-
interface MarketingGatewayFacebookSourceSummary {
|
|
20208
|
-
readonly 'discriminator': 'marketing_gateway_facebook_source_summary';
|
|
20209
|
-
readonly 'catalog_id': number;
|
|
20210
|
-
readonly 'catalog_name': string;
|
|
20211
|
-
readonly 'business_name': string;
|
|
20212
|
-
readonly 'country': string;
|
|
20213
|
-
readonly 'product_count': number;
|
|
20214
|
-
}
|
|
20215
|
-
|
|
20216
|
-
interface MarketingGatewayFeed {
|
|
20217
|
-
readonly 'id': string;
|
|
20218
|
-
readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
|
|
20219
|
-
readonly 'experience'?: io.flow.common.v0.models.ExperienceSummary;
|
|
20220
|
-
readonly 'schema': io.flow.internal.v0.models.MarketingGatewaySchemaSummary;
|
|
20221
|
-
readonly 'filter': io.flow.internal.v0.models.MarketingGatewayFilterSummary;
|
|
20222
|
-
readonly 'country': string;
|
|
20223
|
-
readonly 'currency': string;
|
|
20224
|
-
readonly 'language': string;
|
|
20225
|
-
readonly 'feed_source': io.flow.internal.v0.unions.MarketingGatewayFeedSource;
|
|
20226
|
-
readonly 'feed_state': io.flow.internal.v0.enums.MarketingGatewayFeedState;
|
|
20227
|
-
readonly 'tsv_download_url': string;
|
|
20228
|
-
readonly 'tsv_channel_download_url'?: string;
|
|
20229
|
-
readonly 'created_at': string;
|
|
20230
|
-
readonly 'updated_at'?: string;
|
|
20231
|
-
readonly 'item_count'?: number;
|
|
20232
|
-
readonly 'platform_feed_id'?: string;
|
|
20233
|
-
}
|
|
20234
|
-
|
|
20235
|
-
interface MarketingGatewayFeedExportForm {
|
|
20236
|
-
readonly 'feed_ids': string[];
|
|
20237
|
-
readonly 'emails': string[];
|
|
20238
|
-
}
|
|
20239
|
-
|
|
20240
|
-
interface MarketingGatewayFeedForm {
|
|
20241
|
-
readonly 'schema_id': string;
|
|
20242
|
-
readonly 'filter_id': string;
|
|
20243
|
-
readonly 'country': string;
|
|
20244
|
-
readonly 'currency': string;
|
|
20245
|
-
readonly 'language': string;
|
|
20246
|
-
readonly 'feed_source': io.flow.internal.v0.unions.MarketingGatewayFeedSource;
|
|
20247
|
-
readonly 'distribution_channel'?: io.flow.internal.v0.unions.MarketingGatewayDistributionChannel;
|
|
20248
|
-
}
|
|
20249
|
-
|
|
20250
|
-
interface MarketingGatewayFeedFormRequest {
|
|
20251
|
-
readonly 'feed_source': io.flow.internal.v0.unions.MarketingGatewayFeedSource;
|
|
20252
|
-
readonly 'channel_id'?: string;
|
|
20253
|
-
readonly 'schema_compatibility'?: io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility;
|
|
20254
|
-
}
|
|
20255
|
-
|
|
20256
|
-
interface MarketingGatewayFeedSourceFacebook {
|
|
20257
|
-
readonly 'discriminator': 'marketing_gateway_feed_source_facebook';
|
|
20258
|
-
readonly 'catalog_id': number;
|
|
20259
|
-
readonly 'feed_id': number;
|
|
20260
|
-
readonly 'name': string;
|
|
20261
|
-
readonly 'country': string;
|
|
20262
|
-
readonly 'currency': string;
|
|
20263
|
-
readonly 'language': string;
|
|
20264
|
-
readonly 'item_count'?: number;
|
|
20265
|
-
readonly 'last_uploaded_at'?: string;
|
|
20266
|
-
readonly 'feed_status'?: io.flow.internal.v0.enums.MarketingGatewayFeedState;
|
|
20267
|
-
}
|
|
20268
|
-
|
|
20269
|
-
interface MarketingGatewayFeedSourceGoogle {
|
|
20270
|
-
readonly 'discriminator': 'marketing_gateway_feed_source_google';
|
|
20271
|
-
readonly 'account_id': number;
|
|
20272
|
-
readonly 'name': string;
|
|
20273
|
-
readonly 'country': string;
|
|
20274
|
-
readonly 'currency': string;
|
|
20275
|
-
readonly 'language': string;
|
|
20276
|
-
readonly 'item_count'?: number;
|
|
20277
|
-
readonly 'last_uploaded_at'?: string;
|
|
20278
|
-
}
|
|
20279
|
-
|
|
20280
|
-
interface MarketingGatewayFilterSummary {
|
|
20281
|
-
readonly 'id': string;
|
|
20282
|
-
readonly 'name': string;
|
|
20283
|
-
}
|
|
20284
|
-
|
|
20285
|
-
interface MarketingGatewayFlowSourceSummary {
|
|
20286
|
-
readonly 'discriminator': 'marketing_gateway_flow_source_summary';
|
|
20287
|
-
readonly 'item_count': number;
|
|
20288
|
-
}
|
|
20289
|
-
|
|
20290
|
-
interface MarketingGatewayGoogleAccountForm {
|
|
20291
|
-
readonly 'account_id': number;
|
|
20292
|
-
}
|
|
20293
|
-
|
|
20294
|
-
interface MarketingGatewayGoogleAccountSummary {
|
|
20295
|
-
readonly 'account_id': number;
|
|
20296
|
-
readonly 'id'?: string;
|
|
20297
|
-
readonly 'name': string;
|
|
20298
|
-
readonly 'website_url': string;
|
|
20299
|
-
readonly 'domestic_feeds_count': number;
|
|
20300
|
-
}
|
|
20301
|
-
|
|
20302
|
-
interface MarketingGatewayGoogleChannelDetails {
|
|
20303
|
-
readonly 'discriminator': 'marketing_gateway_google_channel_details';
|
|
20304
|
-
readonly 'account_id': number;
|
|
20305
|
-
readonly 'account_name'?: string;
|
|
20306
|
-
readonly 'datasources'?: io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary[];
|
|
20307
|
-
readonly 'localized_feed_count'?: number;
|
|
20308
|
-
readonly 'connected_at'?: string;
|
|
20309
|
-
}
|
|
20310
|
-
|
|
20311
|
-
interface MarketingGatewayGoogleConnection {
|
|
20312
|
-
readonly 'status': io.flow.internal.v0.enums.MarketingGatewayAccountConnectionStatus;
|
|
20313
|
-
readonly 'accounts'?: io.flow.internal.v0.models.MarketingGatewayGoogleAccountSummary[];
|
|
20314
|
-
}
|
|
20315
|
-
|
|
20316
|
-
interface MarketingGatewayGoogleConnectionForm {
|
|
20317
|
-
readonly 'access_token': string;
|
|
20318
|
-
readonly 'refresh_token': string;
|
|
20319
|
-
}
|
|
20320
|
-
|
|
20321
|
-
interface MarketingGatewayGoogleItem {
|
|
20322
|
-
readonly 'discriminator': 'marketing_gateway_google_item';
|
|
20323
|
-
readonly 'id': string;
|
|
20324
|
-
readonly 'title'?: string;
|
|
20325
|
-
readonly 'image_link'?: string;
|
|
20326
|
-
readonly 'brand'?: string;
|
|
20327
|
-
readonly 'google_product_category'?: string;
|
|
20328
|
-
readonly 'link'?: string;
|
|
20329
|
-
readonly 'price'?: string;
|
|
20330
|
-
readonly 'sale_price'?: string;
|
|
20331
|
-
readonly 'shipping_price'?: string;
|
|
20332
|
-
}
|
|
20333
|
-
|
|
20334
|
-
interface MarketingGatewayGoogleSourceSummary {
|
|
20335
|
-
readonly 'discriminator': 'marketing_gateway_google_source_summary';
|
|
20336
|
-
readonly 'account_id': number;
|
|
20337
|
-
readonly 'countries': string[];
|
|
20338
|
-
readonly 'product_count': number;
|
|
20339
|
-
}
|
|
20340
|
-
|
|
20341
|
-
interface MarketingGatewayLocalizedItem {
|
|
20342
|
-
readonly 'source': io.flow.internal.v0.unions.MarketingGatewayItem;
|
|
20343
|
-
readonly 'localized': io.flow.internal.v0.unions.MarketingGatewayItem;
|
|
20344
|
-
}
|
|
20345
|
-
|
|
20346
|
-
interface MarketingGatewayNewChannelRequestForm {
|
|
20347
|
-
readonly 'requested_by_user_id': string;
|
|
20348
|
-
readonly 'channel_name': string;
|
|
20349
|
-
}
|
|
20350
|
-
|
|
20351
|
-
interface MarketingGatewayProductDatasourceSummary {
|
|
20352
|
-
readonly 'name': string;
|
|
20353
|
-
readonly 'country'?: string;
|
|
20354
|
-
readonly 'product_count'?: number;
|
|
20355
|
-
}
|
|
20356
|
-
|
|
20357
|
-
interface MarketingGatewaySchemaSummary {
|
|
20358
|
-
readonly 'id': string;
|
|
20359
|
-
readonly 'name': string;
|
|
20360
|
-
readonly 'schema_compatibility': io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility;
|
|
20361
|
-
}
|
|
20362
|
-
|
|
20363
|
-
interface MarketingGatewaySupportedChannelDetails {
|
|
20364
|
-
readonly 'discriminator': 'marketing_gateway_supported_channel_details';
|
|
20365
|
-
readonly 'datasources'?: io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary[];
|
|
20366
|
-
readonly 'localized_feed_count'?: number;
|
|
20367
|
-
readonly 'connected_at'?: string;
|
|
20368
|
-
}
|
|
20369
|
-
|
|
20370
20116
|
interface MarketsOrder {
|
|
20371
20117
|
readonly 'shopify_order': io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
20372
20118
|
readonly 'flow_authorization'?: io.flow.payment.v0.unions.Authorization;
|
|
@@ -20559,6 +20305,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20559
20305
|
readonly 'account': io.flow.internal.v0.models.ReportAccount;
|
|
20560
20306
|
}
|
|
20561
20307
|
|
|
20308
|
+
interface NonL4LTaxDutyFxTransaction {
|
|
20309
|
+
readonly 'discriminator': 'non_l4l_tax_duty_fx_transaction';
|
|
20310
|
+
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
20311
|
+
readonly 'fx': io.flow.internal.v0.models.Fee;
|
|
20312
|
+
readonly 'id': string;
|
|
20313
|
+
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
20314
|
+
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
20315
|
+
readonly 'posted_at'?: string;
|
|
20316
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
20317
|
+
readonly 'description': string;
|
|
20318
|
+
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
20319
|
+
readonly 'created_at': string;
|
|
20320
|
+
}
|
|
20321
|
+
|
|
20562
20322
|
interface Notification {
|
|
20563
20323
|
readonly 'order': io.flow.internal.v0.models.Decision;
|
|
20564
20324
|
}
|
|
@@ -20839,20 +20599,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20839
20599
|
readonly 'center'?: io.flow.fulfillment.v0.models.CenterSummary;
|
|
20840
20600
|
}
|
|
20841
20601
|
|
|
20842
|
-
interface OrderFxTransaction {
|
|
20843
|
-
readonly 'discriminator': 'order_fx_transaction';
|
|
20844
|
-
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
20845
|
-
readonly 'fx': io.flow.internal.v0.models.Fee;
|
|
20846
|
-
readonly 'id': string;
|
|
20847
|
-
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
20848
|
-
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
20849
|
-
readonly 'posted_at'?: string;
|
|
20850
|
-
readonly 'value': io.flow.common.v0.models.Price;
|
|
20851
|
-
readonly 'description': string;
|
|
20852
|
-
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
20853
|
-
readonly 'created_at': string;
|
|
20854
|
-
}
|
|
20855
|
-
|
|
20856
20602
|
interface OrderNote {
|
|
20857
20603
|
readonly 'id': string;
|
|
20858
20604
|
readonly 'note': string;
|
|
@@ -21803,6 +21549,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21803
21549
|
readonly 'merchant': io.flow.internal.v0.unions.ProcessorMerchant;
|
|
21804
21550
|
}
|
|
21805
21551
|
|
|
21552
|
+
interface PaymentShortUrl {
|
|
21553
|
+
readonly 'id': string;
|
|
21554
|
+
readonly 'key': string;
|
|
21555
|
+
readonly 'original_url': string;
|
|
21556
|
+
readonly 'organization_id': string;
|
|
21557
|
+
readonly 'discriminator': io.flow.internal.v0.enums.PaymentShortUrlDiscriminator;
|
|
21558
|
+
readonly 'created_at': string;
|
|
21559
|
+
readonly 'updated_at': string;
|
|
21560
|
+
readonly 'expires_at': string;
|
|
21561
|
+
}
|
|
21562
|
+
|
|
21806
21563
|
interface PaymentSummary {
|
|
21807
21564
|
readonly 'psp': number;
|
|
21808
21565
|
readonly 'credit': number;
|
|
@@ -23450,7 +23207,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23450
23207
|
readonly 'negative_keywords': string[];
|
|
23451
23208
|
readonly 'value_threshold_usd'?: number;
|
|
23452
23209
|
readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
23453
|
-
readonly 'effects'?: string[];
|
|
23454
23210
|
}
|
|
23455
23211
|
|
|
23456
23212
|
interface RestrictionRuleDecisionForm {
|
|
@@ -23468,6 +23224,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23468
23224
|
|
|
23469
23225
|
interface RestrictionRuleEffect {
|
|
23470
23226
|
readonly 'id': string;
|
|
23227
|
+
readonly 'rule_id': string;
|
|
23471
23228
|
readonly 'effect': io.flow.sellability.v0.enums.RuleEffectType;
|
|
23472
23229
|
readonly 'regions': string[];
|
|
23473
23230
|
readonly 'description'?: string;
|
|
@@ -23481,6 +23238,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23481
23238
|
}
|
|
23482
23239
|
|
|
23483
23240
|
interface RestrictionRuleEffectForm {
|
|
23241
|
+
readonly 'rule_id': string;
|
|
23484
23242
|
readonly 'effect': io.flow.sellability.v0.enums.RuleEffectType;
|
|
23485
23243
|
readonly 'regions': string[];
|
|
23486
23244
|
readonly 'description'?: string;
|
|
@@ -23502,7 +23260,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23502
23260
|
readonly 'negative_keywords': string[];
|
|
23503
23261
|
readonly 'value_threshold_usd'?: number;
|
|
23504
23262
|
readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
23505
|
-
readonly 'effects'?: string[];
|
|
23506
23263
|
}
|
|
23507
23264
|
|
|
23508
23265
|
interface RestrictionRuleMetadata {
|
|
@@ -23860,13 +23617,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23860
23617
|
readonly 'customer_id': string;
|
|
23861
23618
|
}
|
|
23862
23619
|
|
|
23863
|
-
interface ShawnRoundtableWorkshopRate {
|
|
23864
|
-
readonly 'origin_country': string;
|
|
23865
|
-
readonly 'destination_country': string;
|
|
23866
|
-
readonly 'weight': number;
|
|
23867
|
-
readonly 'amount': number;
|
|
23868
|
-
}
|
|
23869
|
-
|
|
23870
23620
|
interface ShippedItemValue {
|
|
23871
23621
|
readonly 'item': io.flow.common.v0.models.CatalogItemReference;
|
|
23872
23622
|
readonly 'taxes': io.flow.common.v0.models.PriceWithBase;
|
|
@@ -24542,6 +24292,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24542
24292
|
interface ShopifyProductUpdateWebhookEvent {
|
|
24543
24293
|
readonly 'id': string;
|
|
24544
24294
|
readonly 'product': io.flow.shopify.external.v0.models.Product;
|
|
24295
|
+
readonly 'domain': string;
|
|
24296
|
+
readonly 'api_version': string;
|
|
24545
24297
|
}
|
|
24546
24298
|
|
|
24547
24299
|
interface ShopifyProductWrapper {
|
|
@@ -25319,6 +25071,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25319
25071
|
readonly 'category_code'?: string;
|
|
25320
25072
|
}
|
|
25321
25073
|
|
|
25074
|
+
interface TaxDutyDeltaMetadataActual {
|
|
25075
|
+
readonly 'processing': io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
25076
|
+
}
|
|
25077
|
+
|
|
25078
|
+
interface TaxDutyDeltaMetadataActualProcessing {
|
|
25079
|
+
readonly 'capture': io.flow.common.v0.models.Money;
|
|
25080
|
+
readonly 'fees': io.flow.common.v0.models.Money;
|
|
25081
|
+
readonly 'transfer': io.flow.common.v0.models.Money;
|
|
25082
|
+
readonly 'total': io.flow.common.v0.models.Money;
|
|
25083
|
+
}
|
|
25084
|
+
|
|
25085
|
+
interface TaxDutyDeltaMetadataExpected {
|
|
25086
|
+
readonly 'processing': io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
25087
|
+
}
|
|
25088
|
+
|
|
25089
|
+
interface TaxDutyDeltaMetadataExpectedProcessing {
|
|
25090
|
+
readonly 'tax': io.flow.common.v0.models.Money;
|
|
25091
|
+
readonly 'duty': io.flow.common.v0.models.Money;
|
|
25092
|
+
readonly 'total': io.flow.common.v0.models.Money;
|
|
25093
|
+
}
|
|
25094
|
+
|
|
25322
25095
|
interface TaxDutyDeltaTransaction {
|
|
25323
25096
|
readonly 'discriminator': 'tax_duty_delta_transaction';
|
|
25324
25097
|
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -26080,7 +25853,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26080
25853
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
26081
25854
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
26082
25855
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
26083
|
-
type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.FinalEstimateUpserted | io.flow.internal.v0.models.FinalEstimateDeleted | 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.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | 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.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | 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.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | 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.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | 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.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | 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.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | 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.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | 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.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.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | 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.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
25856
|
+
type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.FinalEstimateUpserted | io.flow.internal.v0.models.FinalEstimateDeleted | 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.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | 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.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | 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.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | 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.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | 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.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | 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.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | 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.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | 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.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | 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.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.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | 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.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26084
25857
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
26085
25858
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
26086
25859
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26102,11 +25875,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26102
25875
|
type InternalRefundForm = (io.flow.internal.v0.models.AdyenRefundForm);
|
|
26103
25876
|
type InternalTransactionDetails = (io.flow.internal.v0.models.InternalTransactionDetailsCard);
|
|
26104
25877
|
type LocalizableContent = (io.flow.internal.v0.models.LocalizableContentReference | io.flow.internal.v0.models.Localization);
|
|
26105
|
-
type MarketingGatewayChannelDetails = (io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails);
|
|
26106
|
-
type MarketingGatewayDistributionChannel = (io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook);
|
|
26107
|
-
type MarketingGatewayFeedSource = (io.flow.internal.v0.models.MarketingGatewayFeedSourceGoogle | io.flow.internal.v0.models.MarketingGatewayFeedSourceFacebook);
|
|
26108
|
-
type MarketingGatewayItem = (io.flow.internal.v0.models.MarketingGatewayGoogleItem);
|
|
26109
|
-
type MarketingGatewaySourceSummary = (io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary | io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary | io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary);
|
|
26110
25878
|
type OptinPromptDisplay = (io.flow.internal.v0.models.OptinPromptCheckoutDisplay);
|
|
26111
25879
|
type OrderActionForm = (io.flow.internal.v0.models.WholeOrderActionForm | io.flow.internal.v0.models.LineActionForm | io.flow.internal.v0.models.FulfillmentActionForm);
|
|
26112
25880
|
type OrderCancellationEvidence = (io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender);
|
|
@@ -26136,7 +25904,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26136
25904
|
type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata);
|
|
26137
25905
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
26138
25906
|
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);
|
|
26139
|
-
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.
|
|
25907
|
+
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction | io.flow.internal.v0.models.TaxDutyDeltaTransaction);
|
|
26140
25908
|
type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
|
|
26141
25909
|
type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
|
|
26142
25910
|
}
|
|
@@ -26253,6 +26021,7 @@ export const keywordType: PropTypes.Requireable<io.flow.internal.v0.enums.Keywor
|
|
|
26253
26021
|
export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.LabelBillingStrategy>;
|
|
26254
26022
|
export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
|
|
26255
26023
|
export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
|
|
26024
|
+
export const labelEventMedium: PropTypes.Requireable<io.flow.internal.v0.enums.LabelEventMedium>;
|
|
26256
26025
|
export const labelEventSource: PropTypes.Requireable<io.flow.internal.v0.enums.LabelEventSource>;
|
|
26257
26026
|
export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility>;
|
|
26258
26027
|
export const labelRequestResultOrganizationType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultOrganizationType>;
|
|
@@ -26263,16 +26032,6 @@ export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enum
|
|
|
26263
26032
|
export const logisticsPayoutResolutionMethod: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod>;
|
|
26264
26033
|
export const manualReviewRuleStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ManualReviewRuleStatus>;
|
|
26265
26034
|
export const manualTransactionCategory: PropTypes.Requireable<io.flow.internal.v0.enums.ManualTransactionCategory>;
|
|
26266
|
-
export const marketingGatewayAccountConnectionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayAccountConnectionStatus>;
|
|
26267
|
-
export const marketingGatewayChannelIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayChannelIntegrationType>;
|
|
26268
|
-
export const marketingGatewayChannelStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayChannelStatus>;
|
|
26269
|
-
export const marketingGatewayErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayErrorCode>;
|
|
26270
|
-
export const marketingGatewayFacebookTokenStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayFacebookTokenStatus>;
|
|
26271
|
-
export const marketingGatewayFeedDownloadFormat: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayFeedDownloadFormat>;
|
|
26272
|
-
export const marketingGatewayFeedState: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayFeedState>;
|
|
26273
|
-
export const marketingGatewayPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayPlatform>;
|
|
26274
|
-
export const marketingGatewayProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewayProductStatus>;
|
|
26275
|
-
export const marketingGatewaySchemaCompatibility: PropTypes.Requireable<io.flow.internal.v0.enums.MarketingGatewaySchemaCompatibility>;
|
|
26276
26035
|
export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
|
|
26277
26036
|
export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
|
|
26278
26037
|
export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
|
|
@@ -26300,6 +26059,7 @@ export const organizationRestrictionRiskLevel: PropTypes.Requireable<io.flow.int
|
|
|
26300
26059
|
export const organizationRestrictionScreeningStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus>;
|
|
26301
26060
|
export const outputStyle: PropTypes.Requireable<io.flow.internal.v0.enums.OutputStyle>;
|
|
26302
26061
|
export const owner: PropTypes.Requireable<io.flow.internal.v0.enums.Owner>;
|
|
26062
|
+
export const paymentShortUrlDiscriminator: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentShortUrlDiscriminator>;
|
|
26303
26063
|
export const paymentSummaryStatus: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryStatus>;
|
|
26304
26064
|
export const paymentSummaryType: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryType>;
|
|
26305
26065
|
export const paymentTerm: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentTerm>;
|
|
@@ -26894,9 +26654,6 @@ export const featureValueResult: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
26894
26654
|
export const fedex: PropTypes.Requireable<io.flow.internal.v0.models.Fedex>;
|
|
26895
26655
|
export const fedexCrossborder: PropTypes.Requireable<io.flow.internal.v0.models.FedexCrossborder>;
|
|
26896
26656
|
export const fee: PropTypes.Requireable<io.flow.internal.v0.models.Fee>;
|
|
26897
|
-
export const feedDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FeedDeleted>;
|
|
26898
|
-
export const feedUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FeedUpserted>;
|
|
26899
|
-
export const feedsExport: PropTypes.Requireable<io.flow.internal.v0.models.FeedsExport>;
|
|
26900
26657
|
export const fees: PropTypes.Requireable<io.flow.internal.v0.models.Fees>;
|
|
26901
26658
|
export const finalEstimate: PropTypes.Requireable<io.flow.internal.v0.models.FinalEstimate>;
|
|
26902
26659
|
export const finalEstimateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FinalEstimateDeleted>;
|
|
@@ -27012,8 +26769,6 @@ export const harmonizationClassificationStatisticsPublished: PropTypes.Requireab
|
|
|
27012
26769
|
export const harmonizationCodesImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationCodesImport>;
|
|
27013
26770
|
export const harmonizationColumnSetting: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationColumnSetting>;
|
|
27014
26771
|
export const harmonizationItemClassification: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationItemClassification>;
|
|
27015
|
-
export const harmonizationItemClassificationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationItemClassificationDeleted>;
|
|
27016
|
-
export const harmonizationItemClassificationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationItemClassificationUpserted>;
|
|
27017
26772
|
export const harmonizationItemSummary: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationItemSummary>;
|
|
27018
26773
|
export const harmonizationMlModelSummary: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationMlModelSummary>;
|
|
27019
26774
|
export const harmonizationPhraseSuggestionRequestImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport>;
|
|
@@ -27148,16 +26903,9 @@ export const localizedContent: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
27148
26903
|
export const localizedContentElement: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedContentElement>;
|
|
27149
26904
|
export const localizedContentForm: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedContentForm>;
|
|
27150
26905
|
export const localizedContentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedContentUpserted>;
|
|
27151
|
-
export const localizedItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedItemDeleted>;
|
|
27152
|
-
export const localizedItemDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedItemDeletedV2>;
|
|
27153
26906
|
export const localizedItemPricesExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedItemPricesExportRequest>;
|
|
27154
|
-
export const localizedItemSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedItemSnapshot>;
|
|
27155
|
-
export const localizedItemUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedItemUpsertedV2>;
|
|
27156
26907
|
export const localizedItemsExportSettings: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedItemsExportSettings>;
|
|
27157
|
-
export const localizedPriceBookItem: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedPriceBookItem>;
|
|
27158
26908
|
export const localizedPriceBookItemData: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedPriceBookItemData>;
|
|
27159
|
-
export const localizedPriceBookItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedPriceBookItemDeleted>;
|
|
27160
|
-
export const localizedPriceBookItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LocalizedPriceBookItemUpserted>;
|
|
27161
26909
|
export const location: PropTypes.Requireable<io.flow.internal.v0.models.Location>;
|
|
27162
26910
|
export const logisticsCapabilities: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsCapabilities>;
|
|
27163
26911
|
export const logisticsCapabilitiesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LogisticsCapabilitiesDeleted>;
|
|
@@ -27185,43 +26933,6 @@ export const manualTransaction: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
27185
26933
|
export const manualTransactionForm: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransactionForm>;
|
|
27186
26934
|
export const manualTransactionFormOrder: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransactionFormOrder>;
|
|
27187
26935
|
export const markedAsFinal: PropTypes.Requireable<io.flow.internal.v0.models.MarkedAsFinal>;
|
|
27188
|
-
export const marketingGatewayChannel: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannel>;
|
|
27189
|
-
export const marketingGatewayChannelConnectionForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannelConnectionForm>;
|
|
27190
|
-
export const marketingGatewayChannelForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannelForm>;
|
|
27191
|
-
export const marketingGatewayChannelSourceSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannelSourceSummary>;
|
|
27192
|
-
export const marketingGatewayDistributionChannelFacebook: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook>;
|
|
27193
|
-
export const marketingGatewayDistributionChannelGoogle: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle>;
|
|
27194
|
-
export const marketingGatewayError: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayError>;
|
|
27195
|
-
export const marketingGatewayFacebookBusiness: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFacebookBusiness>;
|
|
27196
|
-
export const marketingGatewayFacebookBusinessSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFacebookBusinessSummary>;
|
|
27197
|
-
export const marketingGatewayFacebookCatalogForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFacebookCatalogForm>;
|
|
27198
|
-
export const marketingGatewayFacebookCatalogSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFacebookCatalogSummary>;
|
|
27199
|
-
export const marketingGatewayFacebookChannelDetails: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails>;
|
|
27200
|
-
export const marketingGatewayFacebookConnection: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFacebookConnection>;
|
|
27201
|
-
export const marketingGatewayFacebookConnectionAccessTokenSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFacebookConnectionAccessTokenSummary>;
|
|
27202
|
-
export const marketingGatewayFacebookConnectionDeauth: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFacebookConnectionDeauth>;
|
|
27203
|
-
export const marketingGatewayFacebookConnectionForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFacebookConnectionForm>;
|
|
27204
|
-
export const marketingGatewayFacebookSourceSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary>;
|
|
27205
|
-
export const marketingGatewayFeed: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFeed>;
|
|
27206
|
-
export const marketingGatewayFeedExportForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFeedExportForm>;
|
|
27207
|
-
export const marketingGatewayFeedForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFeedForm>;
|
|
27208
|
-
export const marketingGatewayFeedFormRequest: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFeedFormRequest>;
|
|
27209
|
-
export const marketingGatewayFeedSourceFacebook: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFeedSourceFacebook>;
|
|
27210
|
-
export const marketingGatewayFeedSourceGoogle: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFeedSourceGoogle>;
|
|
27211
|
-
export const marketingGatewayFilterSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFilterSummary>;
|
|
27212
|
-
export const marketingGatewayFlowSourceSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary>;
|
|
27213
|
-
export const marketingGatewayGoogleAccountForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayGoogleAccountForm>;
|
|
27214
|
-
export const marketingGatewayGoogleAccountSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayGoogleAccountSummary>;
|
|
27215
|
-
export const marketingGatewayGoogleChannelDetails: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails>;
|
|
27216
|
-
export const marketingGatewayGoogleConnection: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayGoogleConnection>;
|
|
27217
|
-
export const marketingGatewayGoogleConnectionForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayGoogleConnectionForm>;
|
|
27218
|
-
export const marketingGatewayGoogleItem: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayGoogleItem>;
|
|
27219
|
-
export const marketingGatewayGoogleSourceSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary>;
|
|
27220
|
-
export const marketingGatewayLocalizedItem: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayLocalizedItem>;
|
|
27221
|
-
export const marketingGatewayNewChannelRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayNewChannelRequestForm>;
|
|
27222
|
-
export const marketingGatewayProductDatasourceSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayProductDatasourceSummary>;
|
|
27223
|
-
export const marketingGatewaySchemaSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySchemaSummary>;
|
|
27224
|
-
export const marketingGatewaySupportedChannelDetails: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails>;
|
|
27225
26936
|
export const marketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrder>;
|
|
27226
26937
|
export const marketsOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.MarketsOrderSummary>;
|
|
27227
26938
|
export const merchant: PropTypes.Requireable<io.flow.internal.v0.models.Merchant>;
|
|
@@ -27250,6 +26961,7 @@ export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
27250
26961
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
27251
26962
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
27252
26963
|
export const nonChannelPaymentBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.NonChannelPaymentBankAccount>;
|
|
26964
|
+
export const nonL4LTaxDutyFxTransaction: PropTypes.Requireable<io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction>;
|
|
27253
26965
|
export const notification: PropTypes.Requireable<io.flow.internal.v0.models.Notification>;
|
|
27254
26966
|
export const onboardingAuditMessage: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditMessage>;
|
|
27255
26967
|
export const onboardingAuditReport: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditReport>;
|
|
@@ -27287,7 +26999,6 @@ export const orderDetail: PropTypes.Requireable<io.flow.internal.v0.models.Order
|
|
|
27287
26999
|
export const orderEditSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderEditSummary>;
|
|
27288
27000
|
export const orderFulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentDeleted>;
|
|
27289
27001
|
export const orderFulfillmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentUpserted>;
|
|
27290
|
-
export const orderFxTransaction: PropTypes.Requireable<io.flow.internal.v0.models.OrderFxTransaction>;
|
|
27291
27002
|
export const orderNote: PropTypes.Requireable<io.flow.internal.v0.models.OrderNote>;
|
|
27292
27003
|
export const orderNoteForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderNoteForm>;
|
|
27293
27004
|
export const orderParameters: PropTypes.Requireable<io.flow.internal.v0.models.OrderParameters>;
|
|
@@ -27414,6 +27125,7 @@ export const paymentProcessorAccountDeleted: PropTypes.Requireable<io.flow.inter
|
|
|
27414
27125
|
export const paymentProcessorAccountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorAccountUpserted>;
|
|
27415
27126
|
export const paymentProcessorMerchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantDeleted>;
|
|
27416
27127
|
export const paymentProcessorMerchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantUpserted>;
|
|
27128
|
+
export const paymentShortUrl: PropTypes.Requireable<io.flow.internal.v0.models.PaymentShortUrl>;
|
|
27417
27129
|
export const paymentSummary: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummary>;
|
|
27418
27130
|
export const paymentSummaryV2: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummaryV2>;
|
|
27419
27131
|
export const payoutStatusCounts: PropTypes.Requireable<io.flow.internal.v0.models.PayoutStatusCounts>;
|
|
@@ -27681,7 +27393,6 @@ export const sessionRollout: PropTypes.Requireable<io.flow.internal.v0.models.Se
|
|
|
27681
27393
|
export const sessionRolloutForm: PropTypes.Requireable<io.flow.internal.v0.models.SessionRolloutForm>;
|
|
27682
27394
|
export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
|
|
27683
27395
|
export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
|
|
27684
|
-
export const shawnRoundtableWorkshopRate: PropTypes.Requireable<io.flow.internal.v0.models.ShawnRoundtableWorkshopRate>;
|
|
27685
27396
|
export const shippedItemValue: PropTypes.Requireable<io.flow.internal.v0.models.ShippedItemValue>;
|
|
27686
27397
|
export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
|
|
27687
27398
|
export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
|
|
@@ -27885,6 +27596,10 @@ export const taxCalculationError: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27885
27596
|
export const taxCalculationForm: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationForm>;
|
|
27886
27597
|
export const taxCalculationLineItem: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationLineItem>;
|
|
27887
27598
|
export const taxCalculationLineItemForm: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationLineItemForm>;
|
|
27599
|
+
export const taxDutyDeltaMetadataActual: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataActual>;
|
|
27600
|
+
export const taxDutyDeltaMetadataActualProcessing: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing>;
|
|
27601
|
+
export const taxDutyDeltaMetadataExpected: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected>;
|
|
27602
|
+
export const taxDutyDeltaMetadataExpectedProcessing: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing>;
|
|
27888
27603
|
export const taxDutyDeltaTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaTransaction>;
|
|
27889
27604
|
export const taxRemittanceTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransaction>;
|
|
27890
27605
|
export const taxRemittanceTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransactionDeleted>;
|
|
@@ -28031,11 +27746,6 @@ export const internalHarmonizationStatistic: PropTypes.Requireable<io.flow.inter
|
|
|
28031
27746
|
export const internalRefundForm: PropTypes.Requireable<io.flow.internal.v0.unions.InternalRefundForm>;
|
|
28032
27747
|
export const internalTransactionDetails: PropTypes.Requireable<io.flow.internal.v0.unions.InternalTransactionDetails>;
|
|
28033
27748
|
export const localizableContent: PropTypes.Requireable<io.flow.internal.v0.unions.LocalizableContent>;
|
|
28034
|
-
export const marketingGatewayChannelDetails: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayChannelDetails>;
|
|
28035
|
-
export const marketingGatewayDistributionChannel: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayDistributionChannel>;
|
|
28036
|
-
export const marketingGatewayFeedSource: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayFeedSource>;
|
|
28037
|
-
export const marketingGatewayItem: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewayItem>;
|
|
28038
|
-
export const marketingGatewaySourceSummary: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewaySourceSummary>;
|
|
28039
27749
|
export const optinPromptDisplay: PropTypes.Requireable<io.flow.internal.v0.unions.OptinPromptDisplay>;
|
|
28040
27750
|
export const orderActionForm: PropTypes.Requireable<io.flow.internal.v0.unions.OrderActionForm>;
|
|
28041
27751
|
export const orderCancellationEvidence: PropTypes.Requireable<io.flow.internal.v0.unions.OrderCancellationEvidence>;
|