@flowio/types 11.24.111 → 11.24.113
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/dist/api-internal.d.ts +216 -464
- package/dist/api.d.ts +196 -89
- package/package.json +2 -2
- package/src/api-internal.ts +283 -596
- package/src/api.ts +249 -117
package/src/api-internal.ts
CHANGED
|
@@ -1537,6 +1537,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1537
1537
|
| 'invalid_customer'
|
|
1538
1538
|
| 'invalid_destination'
|
|
1539
1539
|
| 'unknown';
|
|
1540
|
+
type PaymentFeeType = 'fx' | 'mor';
|
|
1540
1541
|
type PaymentSourceConfirmationActionType =
|
|
1541
1542
|
| 'cvv'
|
|
1542
1543
|
| 'billing_address'
|
|
@@ -1765,6 +1766,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1765
1766
|
readonly attributes?: Record<string, string>;
|
|
1766
1767
|
readonly status?: io.flow.payment.v0.enums.CaptureStatus;
|
|
1767
1768
|
readonly base?: io.flow.common.v0.models.Money;
|
|
1769
|
+
readonly fees?: io.flow.payment.v0.models.PaymentFee[];
|
|
1768
1770
|
}
|
|
1769
1771
|
|
|
1770
1772
|
interface CaptureError {
|
|
@@ -2009,6 +2011,12 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2009
2011
|
readonly year: number;
|
|
2010
2012
|
}
|
|
2011
2013
|
|
|
2014
|
+
interface ExternalCard {
|
|
2015
|
+
readonly discriminator: 'external_card';
|
|
2016
|
+
readonly id: string;
|
|
2017
|
+
readonly type?: io.flow.payment.v0.enums.CardType;
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2012
2020
|
interface GooglePayAuthorizationPayload {
|
|
2013
2021
|
readonly discriminator: 'google_pay_authorization_payload';
|
|
2014
2022
|
readonly payload: any /*object*/;
|
|
@@ -2145,6 +2153,12 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2145
2153
|
readonly codes: io.flow.payment.v0.enums.PaymentErrorCode[];
|
|
2146
2154
|
}
|
|
2147
2155
|
|
|
2156
|
+
interface PaymentFee {
|
|
2157
|
+
readonly type: io.flow.payment.v0.enums.PaymentFeeType;
|
|
2158
|
+
readonly money: io.flow.common.v0.models.Money;
|
|
2159
|
+
readonly base?: io.flow.common.v0.models.Money;
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2148
2162
|
interface PaymentPaymentRequestReference {
|
|
2149
2163
|
readonly discriminator: 'payment_request';
|
|
2150
2164
|
readonly payment_request_id: string;
|
|
@@ -2573,7 +2587,8 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2573
2587
|
type ExpandableCard =
|
|
2574
2588
|
| io.flow.payment.v0.models.Card
|
|
2575
2589
|
| io.flow.payment.v0.models.CardReference
|
|
2576
|
-
| io.flow.payment.v0.models.CardSummary
|
|
2590
|
+
| io.flow.payment.v0.models.CardSummary
|
|
2591
|
+
| io.flow.payment.v0.models.ExternalCard;
|
|
2577
2592
|
type ExpandablePaymentProcessor =
|
|
2578
2593
|
| io.flow.payment.v0.models.PaymentProcessor
|
|
2579
2594
|
| io.flow.payment.v0.models.PaymentProcessorReference;
|
|
@@ -2729,6 +2744,12 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2729
2744
|
| 'fraudulent'
|
|
2730
2745
|
| 'requested_by_customer'
|
|
2731
2746
|
| 'void_invoice';
|
|
2747
|
+
type CapabilityStatus =
|
|
2748
|
+
| 'active'
|
|
2749
|
+
| 'disabled'
|
|
2750
|
+
| 'inactive'
|
|
2751
|
+
| 'pending'
|
|
2752
|
+
| 'unrequested';
|
|
2732
2753
|
type CaptureMethod = 'automatic' | 'manual';
|
|
2733
2754
|
type CardBrand =
|
|
2734
2755
|
| 'American Express'
|
|
@@ -2753,6 +2774,17 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2753
2774
|
type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
|
|
2754
2775
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
2755
2776
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
2777
|
+
type ConnectReportReportingCategory =
|
|
2778
|
+
| 'charge'
|
|
2779
|
+
| 'refund'
|
|
2780
|
+
| 'payout_reversal'
|
|
2781
|
+
| 'transfer'
|
|
2782
|
+
| 'transfer_reversal';
|
|
2783
|
+
type ConnectReportShopPlan = 'shopify_plus' | 'standard';
|
|
2784
|
+
type ConnectReportTransferType =
|
|
2785
|
+
| 'ManagedMarketsRefundDebit'
|
|
2786
|
+
| 'ManagedMarketsDutiesAndTaxesAdjustmentDebit'
|
|
2787
|
+
| 'ManagedMarketsDisputedAmountDebit';
|
|
2756
2788
|
type DeclineCode =
|
|
2757
2789
|
| 'approve_with_id'
|
|
2758
2790
|
| 'call_issuer'
|
|
@@ -2922,6 +2954,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2922
2954
|
| 'rate_limit_error'
|
|
2923
2955
|
| 'validation_error';
|
|
2924
2956
|
type EventType =
|
|
2957
|
+
| 'capability.updated'
|
|
2925
2958
|
| 'charge.captured'
|
|
2926
2959
|
| 'charge.failed'
|
|
2927
2960
|
| 'charge.pending'
|
|
@@ -3206,6 +3239,17 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3206
3239
|
readonly type: io.flow.stripe.v0.enums.ApplePayType;
|
|
3207
3240
|
}
|
|
3208
3241
|
|
|
3242
|
+
interface Capability {
|
|
3243
|
+
readonly id: string;
|
|
3244
|
+
readonly account: string;
|
|
3245
|
+
readonly requested: boolean;
|
|
3246
|
+
readonly requirements: any /*object*/;
|
|
3247
|
+
readonly status: io.flow.stripe.v0.enums.CapabilityStatus;
|
|
3248
|
+
readonly object: string;
|
|
3249
|
+
readonly future_requirements: any /*object*/;
|
|
3250
|
+
readonly requested_at?: number;
|
|
3251
|
+
}
|
|
3252
|
+
|
|
3209
3253
|
interface Card {
|
|
3210
3254
|
readonly id: string;
|
|
3211
3255
|
readonly object: string;
|
|
@@ -3349,6 +3393,46 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3349
3393
|
readonly status: io.flow.stripe.v0.enums.CodeVerificationStatus;
|
|
3350
3394
|
}
|
|
3351
3395
|
|
|
3396
|
+
interface ConnectReportRecord {
|
|
3397
|
+
readonly created_utc: string;
|
|
3398
|
+
readonly charge_id?: string;
|
|
3399
|
+
readonly payment_intent_id?: string;
|
|
3400
|
+
readonly gross: number;
|
|
3401
|
+
readonly fee: number;
|
|
3402
|
+
readonly net: number;
|
|
3403
|
+
readonly currency: string;
|
|
3404
|
+
readonly connected_account: string;
|
|
3405
|
+
readonly reporting_category: io.flow.stripe.v0.enums.ConnectReportReportingCategory;
|
|
3406
|
+
readonly dispute_reason?: io.flow.stripe.v0.enums.DisputeReason;
|
|
3407
|
+
readonly available_on_utc: string;
|
|
3408
|
+
readonly automatic_payout_effective_at_utc?: string;
|
|
3409
|
+
readonly source_id?: string;
|
|
3410
|
+
readonly customer_facing_amount?: number;
|
|
3411
|
+
readonly customer_facing_currency?: string;
|
|
3412
|
+
readonly payment_method_type?: string;
|
|
3413
|
+
readonly card_brand?: string;
|
|
3414
|
+
readonly statement_descriptor?: string;
|
|
3415
|
+
readonly payment_metadata?: io.flow.stripe.v0.models.ConnectReportRecordPaymentMetadata;
|
|
3416
|
+
readonly transfer_metadata?: any /*object*/;
|
|
3417
|
+
}
|
|
3418
|
+
|
|
3419
|
+
interface ConnectReportRecordPaymentMetadata {
|
|
3420
|
+
readonly shop_id?: number;
|
|
3421
|
+
readonly shop_plan?: io.flow.stripe.v0.enums.ConnectReportShopPlan;
|
|
3422
|
+
readonly checkout_id?: string;
|
|
3423
|
+
readonly order_id?: number;
|
|
3424
|
+
readonly order_transaction_id?: number;
|
|
3425
|
+
readonly transfer_type?: io.flow.stripe.v0.enums.ConnectReportTransferType;
|
|
3426
|
+
readonly transfer_exchange_rate?: number;
|
|
3427
|
+
readonly charge_total?: number;
|
|
3428
|
+
readonly charge_currency?: string;
|
|
3429
|
+
readonly charge_exchange_rate?: number;
|
|
3430
|
+
readonly duties?: number;
|
|
3431
|
+
readonly import_taxes?: number;
|
|
3432
|
+
readonly mor_fee?: number;
|
|
3433
|
+
readonly fx_fee?: number;
|
|
3434
|
+
}
|
|
3435
|
+
|
|
3352
3436
|
interface Customer {
|
|
3353
3437
|
readonly id: string;
|
|
3354
3438
|
readonly object: string;
|
|
@@ -6019,7 +6103,12 @@ declare namespace io.flow.brickftp.v0.unions {
|
|
|
6019
6103
|
|
|
6020
6104
|
declare namespace io.flow.units.v0.enums {
|
|
6021
6105
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
6022
|
-
type UnitOfVolume =
|
|
6106
|
+
type UnitOfVolume =
|
|
6107
|
+
| 'cubic_inch'
|
|
6108
|
+
| 'cubic_foot'
|
|
6109
|
+
| 'cubic_millimeter'
|
|
6110
|
+
| 'cubic_centimeter'
|
|
6111
|
+
| 'cubic_meter';
|
|
6023
6112
|
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
6024
6113
|
}
|
|
6025
6114
|
|
|
@@ -7146,6 +7235,12 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
7146
7235
|
interface GraphqlMetaobject {
|
|
7147
7236
|
readonly id: string;
|
|
7148
7237
|
readonly displayName: string;
|
|
7238
|
+
readonly fields: io.flow.shopify.external.v0.models.GraphqlMetaobjectField[];
|
|
7239
|
+
}
|
|
7240
|
+
|
|
7241
|
+
interface GraphqlMetaobjectField {
|
|
7242
|
+
readonly key: string;
|
|
7243
|
+
readonly value?: string;
|
|
7149
7244
|
}
|
|
7150
7245
|
|
|
7151
7246
|
interface GraphqlOption {
|
|
@@ -9408,6 +9503,9 @@ declare namespace io.flow.common.v0.enums {
|
|
|
9408
9503
|
| 'inch'
|
|
9409
9504
|
| 'foot'
|
|
9410
9505
|
| 'cubic_inch'
|
|
9506
|
+
| 'cubic_foot'
|
|
9507
|
+
| 'cubic_millimeter'
|
|
9508
|
+
| 'cubic_centimeter'
|
|
9411
9509
|
| 'cubic_meter'
|
|
9412
9510
|
| 'gram'
|
|
9413
9511
|
| 'kilogram'
|
|
@@ -10249,7 +10347,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
10249
10347
|
| 'by_quantity_percentage';
|
|
10250
10348
|
type OrderStatus = 'open' | 'submitted';
|
|
10251
10349
|
type OrderStorage = 'do_not_persist' | 'persist';
|
|
10252
|
-
type OrderType = 'standard' | 'replacement';
|
|
10350
|
+
type OrderType = 'standard' | 'replacement' | 'edit';
|
|
10253
10351
|
type OrganizationPaymentMethodTag = 'deny';
|
|
10254
10352
|
type PaymentMethodRuleContentKey = 'description';
|
|
10255
10353
|
type PriceFacetBoundary = 'min' | 'max';
|
|
@@ -11415,6 +11513,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11415
11513
|
interface DutiesTaxesPaidSurchargeServiceFee {
|
|
11416
11514
|
readonly discriminator: 'duties_taxes_paid_surcharge_service_fee';
|
|
11417
11515
|
readonly amount: io.flow.common.v0.models.Money;
|
|
11516
|
+
readonly destination_countries?: string[];
|
|
11418
11517
|
readonly starts_at?: string;
|
|
11419
11518
|
readonly ends_at?: string;
|
|
11420
11519
|
}
|
|
@@ -13803,8 +13902,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13803
13902
|
| 'failed_payout'
|
|
13804
13903
|
| 'tax_refund'
|
|
13805
13904
|
| 'non_l4l_tax_duty_fx'
|
|
13806
|
-
| 'ge_revenue_share'
|
|
13807
|
-
| 'tax_duty_delta';
|
|
13905
|
+
| 'ge_revenue_share';
|
|
13808
13906
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
13809
13907
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
13810
13908
|
}
|
|
@@ -15522,55 +15620,6 @@ declare namespace io.flow.merchant.of.record.v0.enums {
|
|
|
15522
15620
|
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
|
|
15523
15621
|
}
|
|
15524
15622
|
|
|
15525
|
-
declare namespace io.flow.checkout.v0.models {
|
|
15526
|
-
interface CheckoutToken {
|
|
15527
|
-
readonly id: string;
|
|
15528
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
15529
|
-
readonly checkout: io.flow.common.v0.models.CheckoutReference;
|
|
15530
|
-
readonly order: io.flow.experience.v0.models.OrderNumberReference;
|
|
15531
|
-
readonly urls: io.flow.checkout.v0.models.CheckoutUrls;
|
|
15532
|
-
readonly expires_at: string;
|
|
15533
|
-
readonly session: io.flow.common.v0.models.SessionReference;
|
|
15534
|
-
readonly customer?: io.flow.common.v0.models.CustomerReference;
|
|
15535
|
-
}
|
|
15536
|
-
|
|
15537
|
-
interface CheckoutTokenOrderForm {
|
|
15538
|
-
readonly discriminator: 'checkout_token_order_form';
|
|
15539
|
-
readonly order_form: io.flow.experience.v0.models.OrderForm;
|
|
15540
|
-
readonly customer?: io.flow.customer.v0.models.CustomerForm;
|
|
15541
|
-
readonly address_book?: io.flow.customer.v0.models.CustomerAddressBookForm;
|
|
15542
|
-
readonly payment_sources?: io.flow.payment.v0.unions.PaymentSourceForm[];
|
|
15543
|
-
readonly session_id: string;
|
|
15544
|
-
readonly urls?: io.flow.checkout.v0.models.CheckoutUrlsForm;
|
|
15545
|
-
readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
|
|
15546
|
-
}
|
|
15547
|
-
|
|
15548
|
-
interface CheckoutTokenReferenceForm {
|
|
15549
|
-
readonly discriminator: 'checkout_token_reference_form';
|
|
15550
|
-
readonly order_number: string;
|
|
15551
|
-
readonly session_id: string;
|
|
15552
|
-
readonly urls: io.flow.checkout.v0.models.CheckoutUrlsForm;
|
|
15553
|
-
}
|
|
15554
|
-
|
|
15555
|
-
interface CheckoutUrls {
|
|
15556
|
-
readonly continue_shopping?: string;
|
|
15557
|
-
readonly confirmation?: string;
|
|
15558
|
-
readonly invalid_checkout?: string;
|
|
15559
|
-
}
|
|
15560
|
-
|
|
15561
|
-
interface CheckoutUrlsForm {
|
|
15562
|
-
readonly continue_shopping?: string;
|
|
15563
|
-
readonly confirmation?: string;
|
|
15564
|
-
readonly invalid_checkout?: string;
|
|
15565
|
-
}
|
|
15566
|
-
}
|
|
15567
|
-
|
|
15568
|
-
declare namespace io.flow.checkout.v0.unions {
|
|
15569
|
-
type CheckoutTokenForm =
|
|
15570
|
-
| io.flow.checkout.v0.models.CheckoutTokenOrderForm
|
|
15571
|
-
| io.flow.checkout.v0.models.CheckoutTokenReferenceForm;
|
|
15572
|
-
}
|
|
15573
|
-
|
|
15574
15623
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
15575
15624
|
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
15576
15625
|
type MerchantRejectedReason =
|
|
@@ -16319,9 +16368,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16319
16368
|
| 'non_l4l_tax_duty_fx'
|
|
16320
16369
|
| 'tax_refund'
|
|
16321
16370
|
| 'duty_refund'
|
|
16322
|
-
| 'ge_revenue_share'
|
|
16323
|
-
| 'tax_duty_delta';
|
|
16324
|
-
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
16371
|
+
| 'ge_revenue_share';
|
|
16325
16372
|
type CalculatorEngine =
|
|
16326
16373
|
| 'dtce_with_deminimis'
|
|
16327
16374
|
| 'dtce_with_inclusive_pricing'
|
|
@@ -16495,10 +16542,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16495
16542
|
type EmptyAttribute = 'irrelevant';
|
|
16496
16543
|
type ErpFileType = 'vendor';
|
|
16497
16544
|
type EventType =
|
|
16498
|
-
| 'adjusted_estimates_upserted'
|
|
16499
|
-
| 'adjusted_estimates_deleted'
|
|
16500
|
-
| 'final_estimate_upserted'
|
|
16501
|
-
| 'final_estimate_deleted'
|
|
16502
16545
|
| 'adyen_authorization_deleted'
|
|
16503
16546
|
| 'adyen_authorization_upserted'
|
|
16504
16547
|
| 'adyen_cancel_deleted'
|
|
@@ -16666,7 +16709,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16666
16709
|
| 'center_defaults_deleted'
|
|
16667
16710
|
| 'fulfillment_fallbacks_upserted'
|
|
16668
16711
|
| 'fulfillment_fallbacks_deleted'
|
|
16669
|
-
| 'pregenerated_request_event'
|
|
16670
16712
|
| 'quote_upserted'
|
|
16671
16713
|
| 'quote_deleted'
|
|
16672
16714
|
| 'all_items_export'
|
|
@@ -16675,7 +16717,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16675
16717
|
| 'dutied_items_export'
|
|
16676
16718
|
| 'harmonization_phrase_suggestion_request_import'
|
|
16677
16719
|
| 'harmonization_codes_import'
|
|
16678
|
-
| 'item_classification_created'
|
|
16679
16720
|
| 'harmonize_fully_request_v2'
|
|
16680
16721
|
| 'import_completed'
|
|
16681
16722
|
| 'import_failed'
|
|
@@ -16699,22 +16740,17 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16699
16740
|
| 'order_validation_failure_deleted'
|
|
16700
16741
|
| 'order_validation_upserted'
|
|
16701
16742
|
| 'order_validation_deleted'
|
|
16743
|
+
| 'label_creation_job_upserted'
|
|
16744
|
+
| 'label_creation_job_deleted'
|
|
16702
16745
|
| 'label_tracking_summary_upserted'
|
|
16703
16746
|
| 'label_tracking_summary_deleted'
|
|
16704
16747
|
| 'logistics_capabilities_upserted'
|
|
16705
16748
|
| 'logistics_capabilities_deleted'
|
|
16706
16749
|
| 'localized_item_prices_export_request'
|
|
16707
|
-
| 'optin_prompt_upserted'
|
|
16708
|
-
| 'optin_prompt_deleted'
|
|
16709
16750
|
| 'order_combined_shipment_upserted'
|
|
16710
16751
|
| 'order_combined_shipment_deleted'
|
|
16711
16752
|
| 'order_fulfillment_deleted'
|
|
16712
16753
|
| 'order_fulfillment_upserted'
|
|
16713
|
-
| 'order_placed'
|
|
16714
|
-
| 'ready_to_fulfill'
|
|
16715
|
-
| 'fulfillment_cancel'
|
|
16716
|
-
| 'order_shipped'
|
|
16717
|
-
| 'items_shipped'
|
|
16718
16754
|
| 'organization_business_entity_deleted'
|
|
16719
16755
|
| 'organization_business_entity_upserted'
|
|
16720
16756
|
| 'organization_status_change_upserted'
|
|
@@ -16771,8 +16807,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16771
16807
|
| 'ratecard_standard_configuration_deleted'
|
|
16772
16808
|
| 'ratecard_service_fee_upserted'
|
|
16773
16809
|
| 'ratecard_service_fee_deleted'
|
|
16774
|
-
| 'ratecard_lane_aggregate_upserted'
|
|
16775
|
-
| 'ratecard_lane_aggregate_deleted'
|
|
16776
16810
|
| 'ratecard_rate_level_upserted'
|
|
16777
16811
|
| 'ratecard_rate_level_deleted'
|
|
16778
16812
|
| 'ratecard_rate_level_ratecard_upserted'
|
|
@@ -16832,6 +16866,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16832
16866
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
16833
16867
|
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
16834
16868
|
| 'shopify_order_fulfillments_snapshot_deleted'
|
|
16869
|
+
| 'shopify_merchant_plan_upserted'
|
|
16870
|
+
| 'shopify_merchant_plan_deleted'
|
|
16835
16871
|
| 'stripe_authorization_deleted'
|
|
16836
16872
|
| 'stripe_authorization_upserted'
|
|
16837
16873
|
| 'stripe_reversal_deleted'
|
|
@@ -16842,6 +16878,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16842
16878
|
| 'stripe_refund_upserted'
|
|
16843
16879
|
| 'stripe_dispute_upserted'
|
|
16844
16880
|
| 'stripe_dispute_deleted'
|
|
16881
|
+
| 'stripe_connect_report_record_upserted'
|
|
16882
|
+
| 'stripe_connect_report_record_deleted'
|
|
16845
16883
|
| 'liability_remittance_plan_upserted'
|
|
16846
16884
|
| 'liability_remittance_plan_deleted'
|
|
16847
16885
|
| 'tracking_processing_error_upserted'
|
|
@@ -16907,8 +16945,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16907
16945
|
type HarmonizationDecisionSource =
|
|
16908
16946
|
| 'human'
|
|
16909
16947
|
| 'legacy_model'
|
|
16910
|
-
| 'enterprise_model'
|
|
16948
|
+
| 'enterprise_model'
|
|
16949
|
+
| 'merchant';
|
|
16911
16950
|
type HttpMethod = 'get' | 'post';
|
|
16951
|
+
type InternalPaymentEntityType =
|
|
16952
|
+
| 'authorization'
|
|
16953
|
+
| 'capture'
|
|
16954
|
+
| 'refund'
|
|
16955
|
+
| 'dispute';
|
|
16912
16956
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
16913
16957
|
type ItemClassificationStatus =
|
|
16914
16958
|
| 'unknown'
|
|
@@ -16976,6 +17020,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16976
17020
|
| 'negative_balance_guarantee'
|
|
16977
17021
|
| 'bank_payment_failure'
|
|
16978
17022
|
| 'non_fraud_chargeback';
|
|
17023
|
+
type MerchantOverrideStatus = 'in_review' | 'accepted' | 'rejected';
|
|
16979
17024
|
type MixedBagWeight = '0' | '1' | '2';
|
|
16980
17025
|
type NatureOfSale =
|
|
16981
17026
|
| 'consumer'
|
|
@@ -17122,11 +17167,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17122
17167
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
17123
17168
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
17124
17169
|
type PromptTarget = 'browse' | 'checkout';
|
|
17125
|
-
type QuoteRequestType =
|
|
17126
|
-
| 'generate'
|
|
17127
|
-
| 'delete'
|
|
17128
|
-
| 'update_currency_rate'
|
|
17129
|
-
| 'update_country';
|
|
17130
17170
|
type RateLevelKey =
|
|
17131
17171
|
| 'shopify_small_usa'
|
|
17132
17172
|
| 'shopify_medium_usa'
|
|
@@ -17142,6 +17182,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17142
17182
|
| 'risky_velocity'
|
|
17143
17183
|
| 'suspicious_behavior'
|
|
17144
17184
|
| 'suspicious_past_activity';
|
|
17185
|
+
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
17186
|
+
type ReportFileType = 'stripe_connect_report';
|
|
17145
17187
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
17146
17188
|
type ReportPaymentType = 'credit' | 'debit';
|
|
17147
17189
|
type ReportStatus =
|
|
@@ -17243,6 +17285,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17243
17285
|
| 'tracking_number'
|
|
17244
17286
|
| 'carrier_service'
|
|
17245
17287
|
| 'tracking_url';
|
|
17288
|
+
type ShopifyPlanType = 'standard' | 'shopify_plus';
|
|
17246
17289
|
type ShopifyPromotionBehavior = 'disable_discount_codes';
|
|
17247
17290
|
type ShopifyPromotionOfferAllocationMethod = 'each' | 'across';
|
|
17248
17291
|
type ShopifyPromotionOrderEntitlementComponent =
|
|
@@ -17576,29 +17619,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17576
17619
|
readonly province_code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
17577
17620
|
}
|
|
17578
17621
|
|
|
17579
|
-
interface AdjustedEstimates {
|
|
17580
|
-
readonly id: string;
|
|
17581
|
-
readonly organization_id: string;
|
|
17582
|
-
readonly label_id: string;
|
|
17583
|
-
readonly estimates: io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
17584
|
-
}
|
|
17585
|
-
|
|
17586
|
-
interface AdjustedEstimatesDeleted {
|
|
17587
|
-
readonly discriminator: 'adjusted_estimates_deleted';
|
|
17588
|
-
readonly event_id: string;
|
|
17589
|
-
readonly timestamp: string;
|
|
17590
|
-
readonly organization: string;
|
|
17591
|
-
readonly id: string;
|
|
17592
|
-
}
|
|
17593
|
-
|
|
17594
|
-
interface AdjustedEstimatesUpserted {
|
|
17595
|
-
readonly discriminator: 'adjusted_estimates_upserted';
|
|
17596
|
-
readonly event_id: string;
|
|
17597
|
-
readonly timestamp: string;
|
|
17598
|
-
readonly organization: string;
|
|
17599
|
-
readonly adjusted_estimates: io.flow.internal.v0.models.AdjustedEstimates;
|
|
17600
|
-
}
|
|
17601
|
-
|
|
17602
17622
|
interface AdjustmentAmountFixed {
|
|
17603
17623
|
readonly discriminator: 'fixed';
|
|
17604
17624
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -18597,52 +18617,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18597
18617
|
readonly status: string;
|
|
18598
18618
|
}
|
|
18599
18619
|
|
|
18600
|
-
interface BrowserBundle {
|
|
18601
|
-
readonly country_picker: io.flow.internal.v0.models.CountryPickerData;
|
|
18602
|
-
readonly optins: io.flow.internal.v0.models.OptinPrompt[];
|
|
18603
|
-
readonly features: io.flow.internal.v0.models.FeatureValueResult;
|
|
18604
|
-
readonly payment_methods?: io.flow.internal.v0.models.BrowserBundlePaymentMethods;
|
|
18605
|
-
}
|
|
18606
|
-
|
|
18607
|
-
interface BrowserBundleCountryPickerForm {
|
|
18608
|
-
readonly country?: string;
|
|
18609
|
-
readonly ip?: string;
|
|
18610
|
-
}
|
|
18611
|
-
|
|
18612
|
-
interface BrowserBundleError {
|
|
18613
|
-
readonly code: io.flow.internal.v0.enums.BrowserBundleErrorCode;
|
|
18614
|
-
readonly messages: string[];
|
|
18615
|
-
}
|
|
18616
|
-
|
|
18617
|
-
interface BrowserBundleFeatureForm {
|
|
18618
|
-
readonly keys: string[];
|
|
18619
|
-
readonly context: io.flow.internal.v0.models.FeatureContextForm;
|
|
18620
|
-
}
|
|
18621
|
-
|
|
18622
|
-
interface BrowserBundleForm {
|
|
18623
|
-
readonly optin?: io.flow.internal.v0.models.BrowserBundleOptinForm;
|
|
18624
|
-
readonly country_picker?: io.flow.internal.v0.models.BrowserBundleCountryPickerForm;
|
|
18625
|
-
readonly feature?: io.flow.internal.v0.models.BrowserBundleFeatureForm;
|
|
18626
|
-
readonly payment_method?: io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
|
|
18627
|
-
}
|
|
18628
|
-
|
|
18629
|
-
interface BrowserBundleOptinForm {
|
|
18630
|
-
readonly country: string;
|
|
18631
|
-
}
|
|
18632
|
-
|
|
18633
|
-
interface BrowserBundlePaymentMethod {
|
|
18634
|
-
readonly id: string;
|
|
18635
|
-
}
|
|
18636
|
-
|
|
18637
|
-
interface BrowserBundlePaymentMethodForm {
|
|
18638
|
-
readonly experience_key: string;
|
|
18639
|
-
readonly country: string;
|
|
18640
|
-
}
|
|
18641
|
-
|
|
18642
|
-
interface BrowserBundlePaymentMethods {
|
|
18643
|
-
readonly displayed?: io.flow.internal.v0.models.BrowserBundlePaymentMethod[];
|
|
18644
|
-
}
|
|
18645
|
-
|
|
18646
18620
|
interface BulkClassificationAction {
|
|
18647
18621
|
readonly discriminator: 'bulk';
|
|
18648
18622
|
readonly actions: io.flow.internal.v0.models.SingleClassificationAction[];
|
|
@@ -19506,29 +19480,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19506
19480
|
readonly prompt: io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior;
|
|
19507
19481
|
}
|
|
19508
19482
|
|
|
19509
|
-
interface CheckoutBundle {
|
|
19510
|
-
readonly cart?: io.flow.shopify.v0.models.ShopifyCart;
|
|
19511
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
19512
|
-
readonly order_errors?: io.flow.experience.v0.models.OrderError[];
|
|
19513
|
-
readonly checkout?: io.flow.internal.v0.models.CheckoutContentSummary;
|
|
19514
|
-
readonly optins: io.flow.internal.v0.models.OptinPrompt[];
|
|
19515
|
-
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
19516
|
-
readonly features: io.flow.internal.v0.models.FeatureValueResult;
|
|
19517
|
-
readonly provinces: io.flow.reference.v0.models.Province[];
|
|
19518
|
-
readonly checkout_items: io.flow.experience.v0.models.CheckoutItemContent[];
|
|
19519
|
-
readonly metadata?: io.flow.internal.v0.models.CheckoutBundleMetadata;
|
|
19520
|
-
readonly configuration?: io.flow.internal.v0.models.CheckoutConfiguration;
|
|
19521
|
-
readonly address_configurations?: io.flow.experience.v0.models.AddressConfiguration[];
|
|
19522
|
-
readonly customer?: io.flow.customer.v0.models.Customer;
|
|
19523
|
-
readonly address_book?: io.flow.customer.v0.models.CustomerAddressBook;
|
|
19524
|
-
readonly payment_sources?: io.flow.payment.v0.unions.PaymentSource[];
|
|
19525
|
-
readonly customer_bundle?: io.flow.customer.v0.models.CustomerBundle;
|
|
19526
|
-
}
|
|
19527
|
-
|
|
19528
|
-
interface CheckoutBundleMetadata {
|
|
19529
|
-
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
19530
|
-
}
|
|
19531
|
-
|
|
19532
19483
|
interface CheckoutConfiguration {
|
|
19533
19484
|
readonly id: string;
|
|
19534
19485
|
readonly behavior: io.flow.internal.v0.models.CheckoutBehavior;
|
|
@@ -19592,41 +19543,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19592
19543
|
readonly redirect?: io.flow.internal.v0.models.CheckoutRedirect;
|
|
19593
19544
|
}
|
|
19594
19545
|
|
|
19595
|
-
interface CheckoutFinalizeOrderForm {
|
|
19596
|
-
readonly expected_order_summary: io.flow.internal.v0.models.ExpectedOrderSummary;
|
|
19597
|
-
readonly order_put_form: io.flow.experience.v0.models.OrderPutForm;
|
|
19598
|
-
}
|
|
19599
|
-
|
|
19600
19546
|
interface CheckoutMarketingContent {
|
|
19601
19547
|
readonly optins: io.flow.internal.v0.models.Checkbox[];
|
|
19602
19548
|
}
|
|
19603
19549
|
|
|
19604
|
-
interface CheckoutOrderForm {
|
|
19605
|
-
readonly discriminator: 'order';
|
|
19606
|
-
readonly organization: string;
|
|
19607
|
-
readonly order: io.flow.experience.v0.models.OrderForm;
|
|
19608
|
-
readonly customer?: io.flow.customer.v0.models.CustomerForm;
|
|
19609
|
-
readonly address_book?: io.flow.customer.v0.models.CustomerAddressBookForm;
|
|
19610
|
-
readonly payment_sources?: io.flow.payment.v0.unions.PaymentSourceForm[];
|
|
19611
|
-
readonly urls?: io.flow.checkout.v0.models.CheckoutUrlsForm;
|
|
19612
|
-
readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
|
|
19613
|
-
readonly feature_keys?: string[];
|
|
19614
|
-
readonly order_parameters?: io.flow.internal.v0.models.OrderParameters;
|
|
19615
|
-
}
|
|
19616
|
-
|
|
19617
|
-
interface CheckoutOrderNumberForm {
|
|
19618
|
-
readonly discriminator: 'order_number';
|
|
19619
|
-
readonly organization: string;
|
|
19620
|
-
readonly order_number: string;
|
|
19621
|
-
readonly customer?: io.flow.customer.v0.models.CustomerForm;
|
|
19622
|
-
readonly address_book?: io.flow.customer.v0.models.CustomerAddressBookForm;
|
|
19623
|
-
readonly payment_sources?: io.flow.payment.v0.unions.PaymentSourceForm[];
|
|
19624
|
-
readonly urls?: io.flow.checkout.v0.models.CheckoutUrlsForm;
|
|
19625
|
-
readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
|
|
19626
|
-
readonly feature_keys?: string[];
|
|
19627
|
-
readonly order_parameters?: io.flow.internal.v0.models.OrderParameters;
|
|
19628
|
-
}
|
|
19629
|
-
|
|
19630
19550
|
interface CheckoutPayment {
|
|
19631
19551
|
readonly authorizations: io.flow.payment.v0.unions.Authorization[];
|
|
19632
19552
|
readonly sources: io.flow.payment.v0.unions.PaymentSource[];
|
|
@@ -19651,15 +19571,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19651
19571
|
readonly body?: string;
|
|
19652
19572
|
}
|
|
19653
19573
|
|
|
19654
|
-
interface CheckoutReferenceForm {
|
|
19655
|
-
readonly order_number: string;
|
|
19656
|
-
readonly order_form: io.flow.experience.v0.models.OrderPutForm;
|
|
19657
|
-
readonly order_geo: io.flow.experience.v0.models.OrderGeo;
|
|
19658
|
-
readonly session_id: string;
|
|
19659
|
-
readonly urls?: io.flow.checkout.v0.models.CheckoutUrlsForm;
|
|
19660
|
-
readonly identifiers?: io.flow.experience.v0.models.OrderSubmissionIdentifierForm[];
|
|
19661
|
-
}
|
|
19662
|
-
|
|
19663
19574
|
interface CheckoutSettings {
|
|
19664
19575
|
readonly session_persistence_timeout?: io.flow.common.v0.models.Duration;
|
|
19665
19576
|
readonly session_persistence_attribute_keys?: string[];
|
|
@@ -19668,35 +19579,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19668
19579
|
readonly assets?: io.flow.internal.v0.models.CheckoutAsset[];
|
|
19669
19580
|
}
|
|
19670
19581
|
|
|
19671
|
-
interface CheckoutSourceOrderForm {
|
|
19672
|
-
readonly source_order_number: string;
|
|
19673
|
-
readonly feature_q?: string;
|
|
19674
|
-
}
|
|
19675
|
-
|
|
19676
|
-
interface CheckoutSubmission {
|
|
19677
|
-
readonly builder: io.flow.experience.v0.models.OrderBuilder;
|
|
19678
|
-
readonly action?: io.flow.payment.v0.unions.AuthorizationResultAction;
|
|
19679
|
-
}
|
|
19680
|
-
|
|
19681
|
-
interface CheckoutSubmissionForm {
|
|
19682
|
-
readonly authorization_form?: io.flow.payment.v0.unions.AuthorizationForm;
|
|
19683
|
-
readonly expected_order_summary?: io.flow.internal.v0.models.ExpectedOrderSummary;
|
|
19684
|
-
readonly feature_keys?: string[];
|
|
19685
|
-
}
|
|
19686
|
-
|
|
19687
|
-
interface CheckoutSubmitOrderBundle {
|
|
19688
|
-
readonly discriminator: 'checkout_submit_order_bundle';
|
|
19689
|
-
readonly order?: io.flow.experience.v0.models.Order;
|
|
19690
|
-
readonly redirect?: io.flow.payment.v0.unions.AuthorizationResultAction;
|
|
19691
|
-
readonly errors?: io.flow.experience.v0.models.OrderError[];
|
|
19692
|
-
}
|
|
19693
|
-
|
|
19694
|
-
interface CheckoutSubmitOrderForm {
|
|
19695
|
-
readonly discriminator: 'checkout_submit_order_form';
|
|
19696
|
-
readonly authorization_form?: io.flow.payment.v0.unions.AuthorizationForm;
|
|
19697
|
-
readonly expected_order_summary?: io.flow.internal.v0.models.ExpectedOrderSummary;
|
|
19698
|
-
}
|
|
19699
|
-
|
|
19700
19582
|
interface CheckoutUrl {
|
|
19701
19583
|
readonly url: string;
|
|
19702
19584
|
readonly type: io.flow.internal.v0.enums.CheckoutUrlType;
|
|
@@ -21086,10 +20968,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21086
20968
|
readonly exclusion_rule: io.flow.catalog.exclusion.v0.models.ExclusionRule;
|
|
21087
20969
|
}
|
|
21088
20970
|
|
|
21089
|
-
interface ExpectedOrderSummary {
|
|
21090
|
-
readonly total?: io.flow.common.v0.models.Money;
|
|
21091
|
-
}
|
|
21092
|
-
|
|
21093
20971
|
interface ExperienceExportRequest {
|
|
21094
20972
|
readonly discriminator: 'experience_export_request';
|
|
21095
20973
|
readonly event_id: string;
|
|
@@ -21356,29 +21234,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21356
21234
|
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
21357
21235
|
}
|
|
21358
21236
|
|
|
21359
|
-
interface FinalEstimate {
|
|
21360
|
-
readonly id: string;
|
|
21361
|
-
readonly organization_id: string;
|
|
21362
|
-
readonly label_id: string;
|
|
21363
|
-
readonly estimate: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
21364
|
-
}
|
|
21365
|
-
|
|
21366
|
-
interface FinalEstimateDeleted {
|
|
21367
|
-
readonly discriminator: 'final_estimate_deleted';
|
|
21368
|
-
readonly event_id: string;
|
|
21369
|
-
readonly timestamp: string;
|
|
21370
|
-
readonly organization: string;
|
|
21371
|
-
readonly id: string;
|
|
21372
|
-
}
|
|
21373
|
-
|
|
21374
|
-
interface FinalEstimateUpserted {
|
|
21375
|
-
readonly discriminator: 'final_estimate_upserted';
|
|
21376
|
-
readonly event_id: string;
|
|
21377
|
-
readonly timestamp: string;
|
|
21378
|
-
readonly organization: string;
|
|
21379
|
-
readonly final_estimate: io.flow.internal.v0.models.FinalEstimate;
|
|
21380
|
-
}
|
|
21381
|
-
|
|
21382
21237
|
interface FinanceBankAccount {
|
|
21383
21238
|
readonly id: string;
|
|
21384
21239
|
readonly accounts: io.flow.internal.v0.models.AccountSummary[];
|
|
@@ -21921,19 +21776,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21921
21776
|
readonly vat_registration_number: string;
|
|
21922
21777
|
}
|
|
21923
21778
|
|
|
21924
|
-
interface FulfillmentCancel {
|
|
21925
|
-
readonly discriminator: 'fulfillment_cancel';
|
|
21926
|
-
readonly event_id: string;
|
|
21927
|
-
readonly timestamp: string;
|
|
21928
|
-
readonly organization: string;
|
|
21929
|
-
readonly order_number: string;
|
|
21930
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
21931
|
-
readonly fulfillments: io.flow.order.management.v0.models.Fulfillment[];
|
|
21932
|
-
readonly change_source: io.flow.order.management.v0.enums.OrderChangeSource;
|
|
21933
|
-
readonly reason: io.flow.order.management.v0.enums.CancelReason;
|
|
21934
|
-
readonly cancelled_lines: io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
21935
|
-
}
|
|
21936
|
-
|
|
21937
21779
|
interface FulfillmentCarrier {
|
|
21938
21780
|
readonly id: string;
|
|
21939
21781
|
readonly service_id?: string;
|
|
@@ -21971,11 +21813,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21971
21813
|
readonly fulfillment_fallbacks: io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
21972
21814
|
}
|
|
21973
21815
|
|
|
21974
|
-
interface FulfillmentInternalExperienceReference {
|
|
21975
|
-
readonly id: string;
|
|
21976
|
-
readonly key: string;
|
|
21977
|
-
}
|
|
21978
|
-
|
|
21979
21816
|
interface FulfillmentOrigin {
|
|
21980
21817
|
readonly country: string;
|
|
21981
21818
|
readonly province_code?: string;
|
|
@@ -22025,14 +21862,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22025
21862
|
readonly id: string;
|
|
22026
21863
|
}
|
|
22027
21864
|
|
|
22028
|
-
interface FulfillmentShipmentTracking {
|
|
22029
|
-
readonly fulfillment_key: string;
|
|
22030
|
-
readonly flow_tracking_number: string;
|
|
22031
|
-
readonly carrier_tracking_number?: string;
|
|
22032
|
-
readonly carrier_tracking_url?: string;
|
|
22033
|
-
readonly items: io.flow.order.management.v0.models.FulfillmentItem[];
|
|
22034
|
-
}
|
|
22035
|
-
|
|
22036
21865
|
interface FulfillmentShopperBreakdown {
|
|
22037
21866
|
readonly shipping: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22038
21867
|
readonly fees: io.flow.internal.v0.models.ReportingShopperFees;
|
|
@@ -22470,10 +22299,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22470
22299
|
readonly network_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
22471
22300
|
}
|
|
22472
22301
|
|
|
22473
|
-
interface InvalidCheckoutData {
|
|
22474
|
-
readonly order: io.flow.experience.v0.models.OrderPutForm;
|
|
22475
|
-
}
|
|
22476
|
-
|
|
22477
22302
|
interface Invariant {
|
|
22478
22303
|
readonly name: string;
|
|
22479
22304
|
readonly count: number;
|
|
@@ -22576,18 +22401,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22576
22401
|
readonly model_id: string;
|
|
22577
22402
|
}
|
|
22578
22403
|
|
|
22579
|
-
interface ItemClassificationCreated {
|
|
22580
|
-
readonly discriminator: 'item_classification_created';
|
|
22581
|
-
readonly event_id: string;
|
|
22582
|
-
readonly timestamp: string;
|
|
22583
|
-
readonly organization: string;
|
|
22584
|
-
readonly item_number: string;
|
|
22585
|
-
readonly model_id: string;
|
|
22586
|
-
readonly labels_prediction: io.flow.internal.v0.models.LabelsPrediction;
|
|
22587
|
-
readonly action: io.flow.internal.v0.enums.SuggestionAction;
|
|
22588
|
-
readonly prediction_score?: number;
|
|
22589
|
-
}
|
|
22590
|
-
|
|
22591
22404
|
interface ItemClassificationForm {
|
|
22592
22405
|
readonly organization: string;
|
|
22593
22406
|
readonly uid: string;
|
|
@@ -22798,18 +22611,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22798
22611
|
readonly values: string[];
|
|
22799
22612
|
}
|
|
22800
22613
|
|
|
22801
|
-
interface ItemsShipped {
|
|
22802
|
-
readonly discriminator: 'items_shipped';
|
|
22803
|
-
readonly event_id: string;
|
|
22804
|
-
readonly timestamp: string;
|
|
22805
|
-
readonly organization: string;
|
|
22806
|
-
readonly order_number: string;
|
|
22807
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
22808
|
-
readonly fulfillments: io.flow.order.management.v0.models.Fulfillment[];
|
|
22809
|
-
readonly flow_tracking_number: string;
|
|
22810
|
-
readonly shipped_item_values: io.flow.internal.v0.models.ShippedItemValue[];
|
|
22811
|
-
}
|
|
22812
|
-
|
|
22813
22614
|
interface JeanDemoItem {
|
|
22814
22615
|
readonly id: string;
|
|
22815
22616
|
readonly name: string;
|
|
@@ -22877,14 +22678,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22877
22678
|
readonly service_id?: string;
|
|
22878
22679
|
readonly carrier_tracking_number?: string;
|
|
22879
22680
|
readonly flow_tracking_number?: string;
|
|
22681
|
+
readonly label_id?: string;
|
|
22880
22682
|
readonly errors: string[];
|
|
22881
22683
|
}
|
|
22882
22684
|
|
|
22685
|
+
interface LabelCreationJobDeleted {
|
|
22686
|
+
readonly discriminator: 'label_creation_job_deleted';
|
|
22687
|
+
readonly event_id: string;
|
|
22688
|
+
readonly timestamp: string;
|
|
22689
|
+
readonly organization: string;
|
|
22690
|
+
readonly id: string;
|
|
22691
|
+
}
|
|
22692
|
+
|
|
22883
22693
|
interface LabelCreationJobSummary {
|
|
22884
22694
|
readonly reference_id: string;
|
|
22885
22695
|
readonly status: io.flow.internal.v0.enums.LabelCreationStatus;
|
|
22886
22696
|
}
|
|
22887
22697
|
|
|
22698
|
+
interface LabelCreationJobUpserted {
|
|
22699
|
+
readonly discriminator: 'label_creation_job_upserted';
|
|
22700
|
+
readonly event_id: string;
|
|
22701
|
+
readonly timestamp: string;
|
|
22702
|
+
readonly organization: string;
|
|
22703
|
+
readonly label_creation_job: io.flow.internal.v0.models.LabelCreationJob;
|
|
22704
|
+
}
|
|
22705
|
+
|
|
22888
22706
|
interface LabelCreationRequestForm {
|
|
22889
22707
|
readonly organization: string;
|
|
22890
22708
|
readonly shipping_label_form: io.flow.label.v0.unions.ShippingLabelForm;
|
|
@@ -23007,6 +22825,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23007
22825
|
readonly destination_country?: string;
|
|
23008
22826
|
readonly reference_id?: string;
|
|
23009
22827
|
readonly logistics_integration_provider?: string;
|
|
22828
|
+
readonly tax_lrp_liabilities?: io.flow.internal.v0.models.Liability[];
|
|
23010
22829
|
}
|
|
23011
22830
|
|
|
23012
22831
|
interface LabelSummary {
|
|
@@ -23433,6 +23252,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23433
23252
|
readonly paid_at?: string;
|
|
23434
23253
|
readonly posted_at?: string;
|
|
23435
23254
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
23255
|
+
readonly channel_statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
23436
23256
|
readonly created_at: string;
|
|
23437
23257
|
readonly original_at?: string;
|
|
23438
23258
|
}
|
|
@@ -23640,6 +23460,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23640
23460
|
readonly currency?: string;
|
|
23641
23461
|
}
|
|
23642
23462
|
|
|
23463
|
+
interface MerchantOverride {
|
|
23464
|
+
readonly id: string;
|
|
23465
|
+
readonly organization_id: string;
|
|
23466
|
+
readonly item_number: string;
|
|
23467
|
+
readonly status: io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
23468
|
+
readonly hs6_code: string;
|
|
23469
|
+
readonly merchant_hs6_code: string;
|
|
23470
|
+
}
|
|
23471
|
+
|
|
23472
|
+
interface MerchantOverrideDecisionForm {
|
|
23473
|
+
readonly status: io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
23474
|
+
}
|
|
23475
|
+
|
|
23643
23476
|
interface MerchantSearchResult {
|
|
23644
23477
|
readonly organization_id: string;
|
|
23645
23478
|
readonly shop_name?: string;
|
|
@@ -23855,14 +23688,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23855
23688
|
readonly to: string;
|
|
23856
23689
|
}
|
|
23857
23690
|
|
|
23858
|
-
interface OptinPromptDeleted {
|
|
23859
|
-
readonly discriminator: 'optin_prompt_deleted';
|
|
23860
|
-
readonly event_id: string;
|
|
23861
|
-
readonly timestamp: string;
|
|
23862
|
-
readonly id: string;
|
|
23863
|
-
readonly organization: string;
|
|
23864
|
-
}
|
|
23865
|
-
|
|
23866
23691
|
interface OptinPromptForm {
|
|
23867
23692
|
readonly optin_attribute_key: string;
|
|
23868
23693
|
readonly region: string;
|
|
@@ -23873,15 +23698,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23873
23698
|
readonly display?: io.flow.internal.v0.unions.OptinPromptDisplay;
|
|
23874
23699
|
}
|
|
23875
23700
|
|
|
23876
|
-
interface OptinPromptUpserted {
|
|
23877
|
-
readonly discriminator: 'optin_prompt_upserted';
|
|
23878
|
-
readonly event_id: string;
|
|
23879
|
-
readonly timestamp: string;
|
|
23880
|
-
readonly id: string;
|
|
23881
|
-
readonly organization: string;
|
|
23882
|
-
readonly optin_prompt: io.flow.internal.v0.models.OptinPrompt;
|
|
23883
|
-
}
|
|
23884
|
-
|
|
23885
23701
|
interface OrderActionability {
|
|
23886
23702
|
readonly action: io.flow.internal.v0.enums.OrderAction[];
|
|
23887
23703
|
readonly lines: io.flow.internal.v0.models.LineActionQuantities[];
|
|
@@ -24031,28 +23847,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24031
23847
|
readonly note: string;
|
|
24032
23848
|
}
|
|
24033
23849
|
|
|
24034
|
-
interface OrderParameters {
|
|
24035
|
-
readonly experience?: string;
|
|
24036
|
-
readonly country?: string;
|
|
24037
|
-
readonly ip?: string;
|
|
24038
|
-
readonly currency?: string;
|
|
24039
|
-
readonly language?: string;
|
|
24040
|
-
}
|
|
24041
|
-
|
|
24042
23850
|
interface OrderPaymentAuthorization {
|
|
24043
23851
|
readonly placeholder: string;
|
|
24044
23852
|
}
|
|
24045
23853
|
|
|
24046
|
-
interface OrderPlaced {
|
|
24047
|
-
readonly discriminator: 'order_placed';
|
|
24048
|
-
readonly event_id: string;
|
|
24049
|
-
readonly timestamp: string;
|
|
24050
|
-
readonly organization: string;
|
|
24051
|
-
readonly order_number: string;
|
|
24052
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
24053
|
-
readonly allocation: io.flow.experience.v0.models.AllocationV2;
|
|
24054
|
-
}
|
|
24055
|
-
|
|
24056
23854
|
interface OrderRatesDataV3 {
|
|
24057
23855
|
readonly organization: string;
|
|
24058
23856
|
readonly order_id: string;
|
|
@@ -24105,17 +23903,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24105
23903
|
readonly to_service_id: string;
|
|
24106
23904
|
}
|
|
24107
23905
|
|
|
24108
|
-
interface OrderShipped {
|
|
24109
|
-
readonly discriminator: 'order_shipped';
|
|
24110
|
-
readonly event_id: string;
|
|
24111
|
-
readonly timestamp: string;
|
|
24112
|
-
readonly organization: string;
|
|
24113
|
-
readonly order_number: string;
|
|
24114
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
24115
|
-
readonly fulfillments: io.flow.order.management.v0.models.Fulfillment[];
|
|
24116
|
-
readonly shipment_trackings: io.flow.internal.v0.models.FulfillmentShipmentTracking[];
|
|
24117
|
-
}
|
|
24118
|
-
|
|
24119
23906
|
interface OrderSubmissionForm {
|
|
24120
23907
|
readonly authorization?: io.flow.payment.v0.unions.AuthorizationForm;
|
|
24121
23908
|
}
|
|
@@ -25341,23 +25128,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25341
25128
|
readonly item: string;
|
|
25342
25129
|
}
|
|
25343
25130
|
|
|
25344
|
-
interface PregeneratedQuote {
|
|
25345
|
-
readonly id: string;
|
|
25346
|
-
readonly experience: io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
25347
|
-
readonly destination_country: string;
|
|
25348
|
-
readonly item: io.flow.common.v0.models.ItemReference;
|
|
25349
|
-
readonly quote?: io.flow.fulfillment.v0.models.Quote;
|
|
25350
|
-
readonly errors?: string[];
|
|
25351
|
-
}
|
|
25352
|
-
|
|
25353
|
-
interface PregeneratedRequestEvent {
|
|
25354
|
-
readonly discriminator: 'pregenerated_request_event';
|
|
25355
|
-
readonly event_id: string;
|
|
25356
|
-
readonly timestamp: string;
|
|
25357
|
-
readonly organization: string;
|
|
25358
|
-
readonly quote_request: io.flow.internal.v0.models.QuoteRequest;
|
|
25359
|
-
}
|
|
25360
|
-
|
|
25361
25131
|
interface PrioritizedCenterReference {
|
|
25362
25132
|
readonly center_key: string;
|
|
25363
25133
|
readonly position: number;
|
|
@@ -25662,16 +25432,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25662
25432
|
readonly id: string;
|
|
25663
25433
|
}
|
|
25664
25434
|
|
|
25665
|
-
interface QuoteRequest {
|
|
25666
|
-
readonly id: string;
|
|
25667
|
-
readonly request_type: io.flow.internal.v0.enums.QuoteRequestType;
|
|
25668
|
-
readonly experience_keys?: string[];
|
|
25669
|
-
readonly item_numbers?: string[];
|
|
25670
|
-
readonly rates?: io.flow.internal.v0.models.CurrencyInternalRate[];
|
|
25671
|
-
readonly countries?: io.flow.reference.v0.models.Country[];
|
|
25672
|
-
readonly reason?: string;
|
|
25673
|
-
}
|
|
25674
|
-
|
|
25675
25435
|
interface QuoteUpserted {
|
|
25676
25436
|
readonly discriminator: 'quote_upserted';
|
|
25677
25437
|
readonly event_id: string;
|
|
@@ -25906,40 +25666,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25906
25666
|
readonly number: string;
|
|
25907
25667
|
}
|
|
25908
25668
|
|
|
25909
|
-
interface RatecardLaneAggregate {
|
|
25910
|
-
readonly id: string;
|
|
25911
|
-
readonly organization_id: string;
|
|
25912
|
-
readonly origin: io.flow.common.v0.models.Zone;
|
|
25913
|
-
readonly destination: io.flow.common.v0.models.Zone;
|
|
25914
|
-
readonly currency: string;
|
|
25915
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
25916
|
-
readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
|
|
25917
|
-
readonly dim_factor: number;
|
|
25918
|
-
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
25919
|
-
readonly rounding: io.flow.common.v0.models.Rounding;
|
|
25920
|
-
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
25921
|
-
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
25922
|
-
readonly rates_with_fees: io.flow.internal.v0.models.RateWithFees[];
|
|
25923
|
-
readonly ratecard: io.flow.ratecard.v0.models.RatecardReference;
|
|
25924
|
-
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
25925
|
-
}
|
|
25926
|
-
|
|
25927
|
-
interface RatecardLaneAggregateDeleted {
|
|
25928
|
-
readonly discriminator: 'ratecard_lane_aggregate_deleted';
|
|
25929
|
-
readonly event_id: string;
|
|
25930
|
-
readonly timestamp: string;
|
|
25931
|
-
readonly organization: string;
|
|
25932
|
-
readonly ratecard_aggregate: io.flow.internal.v0.models.RatecardLaneAggregate;
|
|
25933
|
-
}
|
|
25934
|
-
|
|
25935
|
-
interface RatecardLaneAggregateUpserted {
|
|
25936
|
-
readonly discriminator: 'ratecard_lane_aggregate_upserted';
|
|
25937
|
-
readonly event_id: string;
|
|
25938
|
-
readonly timestamp: string;
|
|
25939
|
-
readonly organization: string;
|
|
25940
|
-
readonly ratecard_aggregate: io.flow.internal.v0.models.RatecardLaneAggregate;
|
|
25941
|
-
}
|
|
25942
|
-
|
|
25943
25669
|
interface RatecardLanesImportRequest {
|
|
25944
25670
|
readonly discriminator: 'ratecard_lanes_import_request';
|
|
25945
25671
|
readonly event_id: string;
|
|
@@ -26064,17 +25790,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26064
25790
|
readonly summaries: io.flow.internal.v0.models.RateNameSummary[];
|
|
26065
25791
|
}
|
|
26066
25792
|
|
|
26067
|
-
interface ReadyToFulfill {
|
|
26068
|
-
readonly discriminator: 'ready_to_fulfill';
|
|
26069
|
-
readonly event_id: string;
|
|
26070
|
-
readonly timestamp: string;
|
|
26071
|
-
readonly organization: string;
|
|
26072
|
-
readonly order_number: string;
|
|
26073
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
26074
|
-
readonly fulfillments?: io.flow.order.management.v0.models.Fulfillment[];
|
|
26075
|
-
readonly fulfillment_item_allocation_details?: io.flow.order.management.event.v0.models.FulfillmentItemAllocationDetails[];
|
|
26076
|
-
}
|
|
26077
|
-
|
|
26078
25793
|
interface ReboundConfiguration {
|
|
26079
25794
|
readonly id: string;
|
|
26080
25795
|
readonly login: string;
|
|
@@ -26153,6 +25868,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26153
25868
|
readonly account_number: string;
|
|
26154
25869
|
}
|
|
26155
25870
|
|
|
25871
|
+
interface ReportFile {
|
|
25872
|
+
readonly id: string;
|
|
25873
|
+
readonly processor: string;
|
|
25874
|
+
readonly report_file_type: io.flow.internal.v0.enums.ReportFileType;
|
|
25875
|
+
readonly file_name: string;
|
|
25876
|
+
readonly status: io.flow.internal.v0.enums.ReportFileStatus;
|
|
25877
|
+
readonly failure_reason?: string;
|
|
25878
|
+
}
|
|
25879
|
+
|
|
26156
25880
|
interface ReportFilter {
|
|
26157
25881
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
26158
25882
|
}
|
|
@@ -26191,6 +25915,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26191
25915
|
readonly created_at: string;
|
|
26192
25916
|
}
|
|
26193
25917
|
|
|
25918
|
+
interface ReportRecordError {
|
|
25919
|
+
readonly id: string;
|
|
25920
|
+
readonly file_id: string;
|
|
25921
|
+
readonly line_number: number;
|
|
25922
|
+
readonly failure_reason: string;
|
|
25923
|
+
}
|
|
25924
|
+
|
|
25925
|
+
interface ReportRecordRetryQueue {
|
|
25926
|
+
readonly id: string;
|
|
25927
|
+
readonly report_file_type: io.flow.internal.v0.enums.ReportFileType;
|
|
25928
|
+
readonly type: io.flow.internal.v0.enums.InternalPaymentEntityType;
|
|
25929
|
+
readonly report_record_id: string;
|
|
25930
|
+
readonly dependent_source_id: string;
|
|
25931
|
+
}
|
|
25932
|
+
|
|
26194
25933
|
interface ReportRuleDecision {
|
|
26195
25934
|
readonly rule_id: string;
|
|
26196
25935
|
readonly rule_name: string;
|
|
@@ -26461,8 +26200,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26461
26200
|
readonly organization_id: string;
|
|
26462
26201
|
readonly restriction_product_id: string;
|
|
26463
26202
|
readonly product_id: string;
|
|
26203
|
+
readonly item_numbers: string[];
|
|
26204
|
+
readonly primary_item_number?: string;
|
|
26464
26205
|
readonly name: string;
|
|
26465
26206
|
readonly price: io.flow.common.v0.models.Price;
|
|
26207
|
+
readonly hs_code?: string;
|
|
26466
26208
|
readonly description: string;
|
|
26467
26209
|
readonly categories: string[];
|
|
26468
26210
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
@@ -26480,6 +26222,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26480
26222
|
readonly user_ids?: string[];
|
|
26481
26223
|
readonly categories?: string[];
|
|
26482
26224
|
readonly product_name_query?: string;
|
|
26225
|
+
readonly hs6?: string;
|
|
26483
26226
|
readonly positive_keywords?: string[];
|
|
26484
26227
|
readonly negative_keywords?: string[];
|
|
26485
26228
|
readonly product_id?: string;
|
|
@@ -26608,6 +26351,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26608
26351
|
readonly user_ids?: string[];
|
|
26609
26352
|
readonly categories?: string[];
|
|
26610
26353
|
readonly product_name_query?: string;
|
|
26354
|
+
readonly hs6?: string;
|
|
26611
26355
|
readonly product_id?: string;
|
|
26612
26356
|
}
|
|
26613
26357
|
|
|
@@ -26728,7 +26472,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26728
26472
|
readonly num_products_transacting_prs: number;
|
|
26729
26473
|
readonly oldest_pr_product_date_setup_complete: string;
|
|
26730
26474
|
readonly oldest_pr_date_transacting: string;
|
|
26731
|
-
readonly percent_products_reviewed_transacting
|
|
26475
|
+
readonly percent_products_reviewed_transacting?: number;
|
|
26732
26476
|
readonly num_pv_inflow_net_new: number;
|
|
26733
26477
|
readonly num_pv_outflow_human_decisions: number;
|
|
26734
26478
|
readonly num_pv_outflow_auto_review_decisions: number;
|
|
@@ -26738,6 +26482,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26738
26482
|
readonly num_pr_outflow_auto_review_decisions: number;
|
|
26739
26483
|
readonly num_pr_outflow_side_effect_decisions: number;
|
|
26740
26484
|
readonly num_pending_decisions_transacting: number;
|
|
26485
|
+
readonly oldest_insufficient_details_pv_onboarding?: string;
|
|
26486
|
+
readonly oldest_insufficient_details_pv_active?: string;
|
|
26487
|
+
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
26741
26488
|
}
|
|
26742
26489
|
|
|
26743
26490
|
interface RestrictionsDailyopsDeleted {
|
|
@@ -27037,13 +26784,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27037
26784
|
readonly customer_id: string;
|
|
27038
26785
|
}
|
|
27039
26786
|
|
|
27040
|
-
interface ShippedItemValue {
|
|
27041
|
-
readonly item: io.flow.common.v0.models.CatalogItemReference;
|
|
27042
|
-
readonly taxes: io.flow.common.v0.models.PriceWithBase;
|
|
27043
|
-
readonly duties: io.flow.common.v0.models.PriceWithBase;
|
|
27044
|
-
readonly total: io.flow.common.v0.models.PriceWithBase;
|
|
27045
|
-
}
|
|
27046
|
-
|
|
27047
26787
|
interface ShippingLane {
|
|
27048
26788
|
readonly origin: string;
|
|
27049
26789
|
readonly destination: string;
|
|
@@ -27449,6 +27189,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27449
27189
|
readonly registration: io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
27450
27190
|
}
|
|
27451
27191
|
|
|
27192
|
+
interface ShopifyMerchantPlan {
|
|
27193
|
+
readonly id: string;
|
|
27194
|
+
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
27195
|
+
readonly plan: io.flow.internal.v0.enums.ShopifyPlanType;
|
|
27196
|
+
}
|
|
27197
|
+
|
|
27198
|
+
interface ShopifyMerchantPlanDeleted {
|
|
27199
|
+
readonly discriminator: 'shopify_merchant_plan_deleted';
|
|
27200
|
+
readonly event_id: string;
|
|
27201
|
+
readonly timestamp: string;
|
|
27202
|
+
readonly id: string;
|
|
27203
|
+
}
|
|
27204
|
+
|
|
27205
|
+
interface ShopifyMerchantPlanUpserted {
|
|
27206
|
+
readonly discriminator: 'shopify_merchant_plan_upserted';
|
|
27207
|
+
readonly event_id: string;
|
|
27208
|
+
readonly timestamp: string;
|
|
27209
|
+
readonly shopify_merchant_plan: io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
27210
|
+
}
|
|
27211
|
+
|
|
27452
27212
|
interface ShopifyMetadata {
|
|
27453
27213
|
readonly domain: string;
|
|
27454
27214
|
readonly myshopify_domain: string;
|
|
@@ -28190,6 +27950,46 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28190
27950
|
readonly capture: io.flow.internal.v0.models.StripeInternalCapture;
|
|
28191
27951
|
}
|
|
28192
27952
|
|
|
27953
|
+
interface StripeConnectReportRecord {
|
|
27954
|
+
readonly id: string;
|
|
27955
|
+
readonly file_id: string;
|
|
27956
|
+
readonly line_number: number;
|
|
27957
|
+
readonly created_utc: string;
|
|
27958
|
+
readonly charge_id?: string;
|
|
27959
|
+
readonly payment_intent_id?: string;
|
|
27960
|
+
readonly gross: number;
|
|
27961
|
+
readonly fee: number;
|
|
27962
|
+
readonly net: number;
|
|
27963
|
+
readonly currency: string;
|
|
27964
|
+
readonly connected_account: string;
|
|
27965
|
+
readonly reporting_category: io.flow.stripe.v0.enums.ConnectReportReportingCategory;
|
|
27966
|
+
readonly dispute_reason?: string;
|
|
27967
|
+
readonly available_on_utc: string;
|
|
27968
|
+
readonly automatic_payout_effective_at_utc?: string;
|
|
27969
|
+
readonly source_id?: string;
|
|
27970
|
+
readonly customer_facing_amount?: number;
|
|
27971
|
+
readonly customer_facing_currency?: string;
|
|
27972
|
+
readonly payment_method_type?: string;
|
|
27973
|
+
readonly card_brand?: string;
|
|
27974
|
+
readonly statement_descriptor?: string;
|
|
27975
|
+
readonly payment_metadata?: io.flow.stripe.v0.models.ConnectReportRecordPaymentMetadata;
|
|
27976
|
+
readonly transfer_metadata?: any /*object*/;
|
|
27977
|
+
}
|
|
27978
|
+
|
|
27979
|
+
interface StripeConnectReportRecordDeleted {
|
|
27980
|
+
readonly discriminator: 'stripe_connect_report_record_deleted';
|
|
27981
|
+
readonly event_id: string;
|
|
27982
|
+
readonly timestamp: string;
|
|
27983
|
+
readonly id: string;
|
|
27984
|
+
}
|
|
27985
|
+
|
|
27986
|
+
interface StripeConnectReportRecordUpserted {
|
|
27987
|
+
readonly discriminator: 'stripe_connect_report_record_upserted';
|
|
27988
|
+
readonly event_id: string;
|
|
27989
|
+
readonly timestamp: string;
|
|
27990
|
+
readonly record: io.flow.stripe.v0.models.ConnectReportRecord;
|
|
27991
|
+
}
|
|
27992
|
+
|
|
28193
27993
|
interface StripeDisputeDeleted {
|
|
28194
27994
|
readonly discriminator: 'stripe_dispute_deleted';
|
|
28195
27995
|
readonly event_id: string;
|
|
@@ -28491,40 +28291,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28491
28291
|
readonly category_code?: string;
|
|
28492
28292
|
}
|
|
28493
28293
|
|
|
28494
|
-
interface TaxDutyDeltaMetadataActual {
|
|
28495
|
-
readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
28496
|
-
}
|
|
28497
|
-
|
|
28498
|
-
interface TaxDutyDeltaMetadataActualProcessing {
|
|
28499
|
-
readonly capture: io.flow.common.v0.models.Money;
|
|
28500
|
-
readonly fees: io.flow.common.v0.models.Money;
|
|
28501
|
-
readonly transfer: io.flow.common.v0.models.Money;
|
|
28502
|
-
readonly total: io.flow.common.v0.models.Money;
|
|
28503
|
-
}
|
|
28504
|
-
|
|
28505
|
-
interface TaxDutyDeltaMetadataExpected {
|
|
28506
|
-
readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
28507
|
-
}
|
|
28508
|
-
|
|
28509
|
-
interface TaxDutyDeltaMetadataExpectedProcessing {
|
|
28510
|
-
readonly tax: io.flow.common.v0.models.Money;
|
|
28511
|
-
readonly duty: io.flow.common.v0.models.Money;
|
|
28512
|
-
readonly total: io.flow.common.v0.models.Money;
|
|
28513
|
-
}
|
|
28514
|
-
|
|
28515
|
-
interface TaxDutyDeltaTransaction {
|
|
28516
|
-
readonly discriminator: 'tax_duty_delta_transaction';
|
|
28517
|
-
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
28518
|
-
readonly id: string;
|
|
28519
|
-
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
28520
|
-
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
28521
|
-
readonly posted_at?: string;
|
|
28522
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
28523
|
-
readonly description: string;
|
|
28524
|
-
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
28525
|
-
readonly created_at: string;
|
|
28526
|
-
}
|
|
28527
|
-
|
|
28528
28294
|
interface TaxRemittanceTransaction {
|
|
28529
28295
|
readonly discriminator: 'tax_remittance_transaction';
|
|
28530
28296
|
readonly order: io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -29271,13 +29037,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29271
29037
|
type ChannelRateMetadata =
|
|
29272
29038
|
| io.flow.internal.v0.models.ChannelRateMetadataIdentity
|
|
29273
29039
|
| io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
29274
|
-
type CheckoutForm =
|
|
29275
|
-
| io.flow.internal.v0.models.CheckoutOrderForm
|
|
29276
|
-
| io.flow.internal.v0.models.CheckoutOrderNumberForm;
|
|
29277
|
-
type CheckoutSubmitOrderBundles =
|
|
29278
|
-
io.flow.internal.v0.models.CheckoutSubmitOrderBundle;
|
|
29279
|
-
type CheckoutSubmitOrderForms =
|
|
29280
|
-
io.flow.internal.v0.models.CheckoutSubmitOrderForm;
|
|
29281
29040
|
type ClassificationAction =
|
|
29282
29041
|
| io.flow.internal.v0.models.SingleClassificationAction
|
|
29283
29042
|
| io.flow.internal.v0.models.BulkClassificationAction;
|
|
@@ -29328,10 +29087,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29328
29087
|
| io.flow.internal.v0.models.DutyCompoundExpression
|
|
29329
29088
|
| io.flow.internal.v0.models.DutySimpleExpression;
|
|
29330
29089
|
type Event =
|
|
29331
|
-
| io.flow.internal.v0.models.AdjustedEstimatesUpserted
|
|
29332
|
-
| io.flow.internal.v0.models.AdjustedEstimatesDeleted
|
|
29333
|
-
| io.flow.internal.v0.models.FinalEstimateUpserted
|
|
29334
|
-
| io.flow.internal.v0.models.FinalEstimateDeleted
|
|
29335
29090
|
| io.flow.internal.v0.models.AdyenAuthorizationDeleted
|
|
29336
29091
|
| io.flow.internal.v0.models.AdyenAuthorizationUpserted
|
|
29337
29092
|
| io.flow.internal.v0.models.AdyenCancelDeleted
|
|
@@ -29499,7 +29254,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29499
29254
|
| io.flow.internal.v0.models.CenterDefaultsDeleted
|
|
29500
29255
|
| io.flow.internal.v0.models.FulfillmentFallbacksUpserted
|
|
29501
29256
|
| io.flow.internal.v0.models.FulfillmentFallbacksDeleted
|
|
29502
|
-
| io.flow.internal.v0.models.PregeneratedRequestEvent
|
|
29503
29257
|
| io.flow.internal.v0.models.QuoteUpserted
|
|
29504
29258
|
| io.flow.internal.v0.models.QuoteDeleted
|
|
29505
29259
|
| io.flow.internal.v0.models.AllItemsExport
|
|
@@ -29508,7 +29262,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29508
29262
|
| io.flow.internal.v0.models.DutiedItemsExport
|
|
29509
29263
|
| io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport
|
|
29510
29264
|
| io.flow.internal.v0.models.HarmonizationCodesImport
|
|
29511
|
-
| io.flow.internal.v0.models.ItemClassificationCreated
|
|
29512
29265
|
| io.flow.internal.v0.models.HarmonizeFullyRequestV2
|
|
29513
29266
|
| io.flow.internal.v0.models.ImportCompleted
|
|
29514
29267
|
| io.flow.internal.v0.models.ImportFailed
|
|
@@ -29532,22 +29285,17 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29532
29285
|
| io.flow.internal.v0.models.OrderValidationFailureDeleted
|
|
29533
29286
|
| io.flow.internal.v0.models.OrderValidationUpserted
|
|
29534
29287
|
| io.flow.internal.v0.models.OrderValidationDeleted
|
|
29288
|
+
| io.flow.internal.v0.models.LabelCreationJobUpserted
|
|
29289
|
+
| io.flow.internal.v0.models.LabelCreationJobDeleted
|
|
29535
29290
|
| io.flow.internal.v0.models.LabelTrackingSummaryUpserted
|
|
29536
29291
|
| io.flow.internal.v0.models.LabelTrackingSummaryDeleted
|
|
29537
29292
|
| io.flow.internal.v0.models.LogisticsCapabilitiesUpserted
|
|
29538
29293
|
| io.flow.internal.v0.models.LogisticsCapabilitiesDeleted
|
|
29539
29294
|
| io.flow.internal.v0.models.LocalizedItemPricesExportRequest
|
|
29540
|
-
| io.flow.internal.v0.models.OptinPromptUpserted
|
|
29541
|
-
| io.flow.internal.v0.models.OptinPromptDeleted
|
|
29542
29295
|
| io.flow.internal.v0.models.OrderCombinedShipmentUpserted
|
|
29543
29296
|
| io.flow.internal.v0.models.OrderCombinedShipmentDeleted
|
|
29544
29297
|
| io.flow.internal.v0.models.OrderFulfillmentDeleted
|
|
29545
29298
|
| io.flow.internal.v0.models.OrderFulfillmentUpserted
|
|
29546
|
-
| io.flow.internal.v0.models.OrderPlaced
|
|
29547
|
-
| io.flow.internal.v0.models.ReadyToFulfill
|
|
29548
|
-
| io.flow.internal.v0.models.FulfillmentCancel
|
|
29549
|
-
| io.flow.internal.v0.models.OrderShipped
|
|
29550
|
-
| io.flow.internal.v0.models.ItemsShipped
|
|
29551
29299
|
| io.flow.internal.v0.models.OrganizationBusinessEntityDeleted
|
|
29552
29300
|
| io.flow.internal.v0.models.OrganizationBusinessEntityUpserted
|
|
29553
29301
|
| io.flow.internal.v0.models.OrganizationStatusChangeUpserted
|
|
@@ -29604,8 +29352,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29604
29352
|
| io.flow.internal.v0.models.RatecardStandardConfigurationDeleted
|
|
29605
29353
|
| io.flow.internal.v0.models.RatecardServiceFeeUpserted
|
|
29606
29354
|
| io.flow.internal.v0.models.RatecardServiceFeeDeleted
|
|
29607
|
-
| io.flow.internal.v0.models.RatecardLaneAggregateUpserted
|
|
29608
|
-
| io.flow.internal.v0.models.RatecardLaneAggregateDeleted
|
|
29609
29355
|
| io.flow.internal.v0.models.RatecardRateLevelUpserted
|
|
29610
29356
|
| io.flow.internal.v0.models.RatecardRateLevelDeleted
|
|
29611
29357
|
| io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted
|
|
@@ -29665,6 +29411,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29665
29411
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
29666
29412
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
29667
29413
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted
|
|
29414
|
+
| io.flow.internal.v0.models.ShopifyMerchantPlanUpserted
|
|
29415
|
+
| io.flow.internal.v0.models.ShopifyMerchantPlanDeleted
|
|
29668
29416
|
| io.flow.internal.v0.models.StripeAuthorizationDeleted
|
|
29669
29417
|
| io.flow.internal.v0.models.StripeAuthorizationUpserted
|
|
29670
29418
|
| io.flow.internal.v0.models.StripeReversalDeleted
|
|
@@ -29675,6 +29423,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29675
29423
|
| io.flow.internal.v0.models.StripeRefundUpserted
|
|
29676
29424
|
| io.flow.internal.v0.models.StripeDisputeUpserted
|
|
29677
29425
|
| io.flow.internal.v0.models.StripeDisputeDeleted
|
|
29426
|
+
| io.flow.internal.v0.models.StripeConnectReportRecordUpserted
|
|
29427
|
+
| io.flow.internal.v0.models.StripeConnectReportRecordDeleted
|
|
29678
29428
|
| io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
|
|
29679
29429
|
| io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
|
|
29680
29430
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
@@ -29897,8 +29647,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29897
29647
|
| io.flow.internal.v0.models.TrueupTransaction
|
|
29898
29648
|
| io.flow.internal.v0.models.CarrierChargeTransaction
|
|
29899
29649
|
| io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction
|
|
29900
|
-
| io.flow.internal.v0.models.GeRevenueShareTransaction
|
|
29901
|
-
| io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
29650
|
+
| io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
29902
29651
|
type TransactionSummary =
|
|
29903
29652
|
| io.flow.internal.v0.models.PaymentSummaryV2
|
|
29904
29653
|
| io.flow.internal.v0.models.FraudSummary;
|
|
@@ -29967,11 +29716,6 @@ export type AddressConfigurationSettingForm =
|
|
|
29967
29716
|
io.flow.internal.v0.models.AddressConfigurationSettingForm;
|
|
29968
29717
|
export type AddressConfigurationSettingProvinceCode =
|
|
29969
29718
|
io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
29970
|
-
export type AdjustedEstimates = io.flow.internal.v0.models.AdjustedEstimates;
|
|
29971
|
-
export type AdjustedEstimatesDeleted =
|
|
29972
|
-
io.flow.internal.v0.models.AdjustedEstimatesDeleted;
|
|
29973
|
-
export type AdjustedEstimatesUpserted =
|
|
29974
|
-
io.flow.internal.v0.models.AdjustedEstimatesUpserted;
|
|
29975
29719
|
export type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
29976
29720
|
export type AdjustmentAmountFixed =
|
|
29977
29721
|
io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
@@ -30236,23 +29980,6 @@ export type BooleanFeatureValue =
|
|
|
30236
29980
|
export type BrickWebhookEvent = io.flow.internal.v0.models.BrickWebhookEvent;
|
|
30237
29981
|
export type BrickWebhookEventResponse =
|
|
30238
29982
|
io.flow.internal.v0.models.BrickWebhookEventResponse;
|
|
30239
|
-
export type BrowserBundle = io.flow.internal.v0.models.BrowserBundle;
|
|
30240
|
-
export type BrowserBundleCountryPickerForm =
|
|
30241
|
-
io.flow.internal.v0.models.BrowserBundleCountryPickerForm;
|
|
30242
|
-
export type BrowserBundleError = io.flow.internal.v0.models.BrowserBundleError;
|
|
30243
|
-
export type BrowserBundleErrorCode =
|
|
30244
|
-
io.flow.internal.v0.enums.BrowserBundleErrorCode;
|
|
30245
|
-
export type BrowserBundleFeatureForm =
|
|
30246
|
-
io.flow.internal.v0.models.BrowserBundleFeatureForm;
|
|
30247
|
-
export type BrowserBundleForm = io.flow.internal.v0.models.BrowserBundleForm;
|
|
30248
|
-
export type BrowserBundleOptinForm =
|
|
30249
|
-
io.flow.internal.v0.models.BrowserBundleOptinForm;
|
|
30250
|
-
export type BrowserBundlePaymentMethod =
|
|
30251
|
-
io.flow.internal.v0.models.BrowserBundlePaymentMethod;
|
|
30252
|
-
export type BrowserBundlePaymentMethodForm =
|
|
30253
|
-
io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
|
|
30254
|
-
export type BrowserBundlePaymentMethods =
|
|
30255
|
-
io.flow.internal.v0.models.BrowserBundlePaymentMethods;
|
|
30256
29983
|
export type BulkClassificationAction =
|
|
30257
29984
|
io.flow.internal.v0.models.BulkClassificationAction;
|
|
30258
29985
|
export type BulkDutyUpdateValidationError =
|
|
@@ -30482,9 +30209,6 @@ export type CheckoutBehaviorShippingAddress =
|
|
|
30482
30209
|
io.flow.internal.v0.models.CheckoutBehaviorShippingAddress;
|
|
30483
30210
|
export type CheckoutBehaviorShippingMethod =
|
|
30484
30211
|
io.flow.internal.v0.models.CheckoutBehaviorShippingMethod;
|
|
30485
|
-
export type CheckoutBundle = io.flow.internal.v0.models.CheckoutBundle;
|
|
30486
|
-
export type CheckoutBundleMetadata =
|
|
30487
|
-
io.flow.internal.v0.models.CheckoutBundleMetadata;
|
|
30488
30212
|
export type CheckoutConfiguration =
|
|
30489
30213
|
io.flow.internal.v0.models.CheckoutConfiguration;
|
|
30490
30214
|
export type CheckoutConfigurationDeleted =
|
|
@@ -30502,14 +30226,8 @@ export type CheckoutContentSummary =
|
|
|
30502
30226
|
io.flow.internal.v0.models.CheckoutContentSummary;
|
|
30503
30227
|
export type CheckoutError = io.flow.internal.v0.models.CheckoutError;
|
|
30504
30228
|
export type CheckoutErrorCode = io.flow.internal.v0.enums.CheckoutErrorCode;
|
|
30505
|
-
export type CheckoutFinalizeOrderForm =
|
|
30506
|
-
io.flow.internal.v0.models.CheckoutFinalizeOrderForm;
|
|
30507
|
-
export type CheckoutForm = io.flow.internal.v0.unions.CheckoutForm;
|
|
30508
30229
|
export type CheckoutMarketingContent =
|
|
30509
30230
|
io.flow.internal.v0.models.CheckoutMarketingContent;
|
|
30510
|
-
export type CheckoutOrderForm = io.flow.internal.v0.models.CheckoutOrderForm;
|
|
30511
|
-
export type CheckoutOrderNumberForm =
|
|
30512
|
-
io.flow.internal.v0.models.CheckoutOrderNumberForm;
|
|
30513
30231
|
export type CheckoutPayment = io.flow.internal.v0.models.CheckoutPayment;
|
|
30514
30232
|
export type CheckoutPaymentContent =
|
|
30515
30233
|
io.flow.internal.v0.models.CheckoutPaymentContent;
|
|
@@ -30520,24 +30238,9 @@ export type CheckoutPromptBehavior =
|
|
|
30520
30238
|
export type CheckoutRedirect = io.flow.internal.v0.models.CheckoutRedirect;
|
|
30521
30239
|
export type CheckoutRedirectMethod =
|
|
30522
30240
|
io.flow.internal.v0.enums.CheckoutRedirectMethod;
|
|
30523
|
-
export type CheckoutReferenceForm =
|
|
30524
|
-
io.flow.internal.v0.models.CheckoutReferenceForm;
|
|
30525
30241
|
export type CheckoutSettings = io.flow.internal.v0.models.CheckoutSettings;
|
|
30526
30242
|
export type CheckoutShippingMethodPromptBehavior =
|
|
30527
30243
|
io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior;
|
|
30528
|
-
export type CheckoutSourceOrderForm =
|
|
30529
|
-
io.flow.internal.v0.models.CheckoutSourceOrderForm;
|
|
30530
|
-
export type CheckoutSubmission = io.flow.internal.v0.models.CheckoutSubmission;
|
|
30531
|
-
export type CheckoutSubmissionForm =
|
|
30532
|
-
io.flow.internal.v0.models.CheckoutSubmissionForm;
|
|
30533
|
-
export type CheckoutSubmitOrderBundle =
|
|
30534
|
-
io.flow.internal.v0.models.CheckoutSubmitOrderBundle;
|
|
30535
|
-
export type CheckoutSubmitOrderBundles =
|
|
30536
|
-
io.flow.internal.v0.unions.CheckoutSubmitOrderBundles;
|
|
30537
|
-
export type CheckoutSubmitOrderForm =
|
|
30538
|
-
io.flow.internal.v0.models.CheckoutSubmitOrderForm;
|
|
30539
|
-
export type CheckoutSubmitOrderForms =
|
|
30540
|
-
io.flow.internal.v0.unions.CheckoutSubmitOrderForms;
|
|
30541
30244
|
export type CheckoutUrl = io.flow.internal.v0.models.CheckoutUrl;
|
|
30542
30245
|
export type CheckoutUrlType = io.flow.internal.v0.enums.CheckoutUrlType;
|
|
30543
30246
|
export type Cipher = io.flow.internal.v0.models.Cipher;
|
|
@@ -30891,8 +30594,6 @@ export type ExclusionRuleExportRequest =
|
|
|
30891
30594
|
io.flow.internal.v0.models.ExclusionRuleExportRequest;
|
|
30892
30595
|
export type ExclusionRuleUpserted =
|
|
30893
30596
|
io.flow.internal.v0.models.ExclusionRuleUpserted;
|
|
30894
|
-
export type ExpectedOrderSummary =
|
|
30895
|
-
io.flow.internal.v0.models.ExpectedOrderSummary;
|
|
30896
30597
|
export type ExperienceExportRequest =
|
|
30897
30598
|
io.flow.internal.v0.models.ExperienceExportRequest;
|
|
30898
30599
|
export type ExperienceImportRequest =
|
|
@@ -30967,11 +30668,6 @@ export type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
|
|
|
30967
30668
|
export type Fee = io.flow.internal.v0.models.Fee;
|
|
30968
30669
|
export type Fees = io.flow.internal.v0.models.Fees;
|
|
30969
30670
|
export type FeesSource = io.flow.internal.v0.enums.FeesSource;
|
|
30970
|
-
export type FinalEstimate = io.flow.internal.v0.models.FinalEstimate;
|
|
30971
|
-
export type FinalEstimateDeleted =
|
|
30972
|
-
io.flow.internal.v0.models.FinalEstimateDeleted;
|
|
30973
|
-
export type FinalEstimateUpserted =
|
|
30974
|
-
io.flow.internal.v0.models.FinalEstimateUpserted;
|
|
30975
30671
|
export type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
|
|
30976
30672
|
export type FinanceBankAccountOwner =
|
|
30977
30673
|
io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
@@ -31096,7 +30792,6 @@ export type FulfillmentActionForm =
|
|
|
31096
30792
|
io.flow.internal.v0.models.FulfillmentActionForm;
|
|
31097
30793
|
export type FulfillmentBusiness =
|
|
31098
30794
|
io.flow.internal.v0.models.FulfillmentBusiness;
|
|
31099
|
-
export type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
31100
30795
|
export type FulfillmentCarrier = io.flow.internal.v0.models.FulfillmentCarrier;
|
|
31101
30796
|
export type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
31102
30797
|
export type FulfillmentFallbacks =
|
|
@@ -31105,8 +30800,6 @@ export type FulfillmentFallbacksDeleted =
|
|
|
31105
30800
|
io.flow.internal.v0.models.FulfillmentFallbacksDeleted;
|
|
31106
30801
|
export type FulfillmentFallbacksUpserted =
|
|
31107
30802
|
io.flow.internal.v0.models.FulfillmentFallbacksUpserted;
|
|
31108
|
-
export type FulfillmentInternalExperienceReference =
|
|
31109
|
-
io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
31110
30803
|
export type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
31111
30804
|
export type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
|
|
31112
30805
|
export type FulfillmentProofExternalFulfillmentProofReference =
|
|
@@ -31119,8 +30812,6 @@ export type FulfillmentProofShippingNotificationReference =
|
|
|
31119
30812
|
io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference;
|
|
31120
30813
|
export type FulfillmentReference =
|
|
31121
30814
|
io.flow.internal.v0.models.FulfillmentReference;
|
|
31122
|
-
export type FulfillmentShipmentTracking =
|
|
31123
|
-
io.flow.internal.v0.models.FulfillmentShipmentTracking;
|
|
31124
30815
|
export type FulfillmentShopperBreakdown =
|
|
31125
30816
|
io.flow.internal.v0.models.FulfillmentShopperBreakdown;
|
|
31126
30817
|
export type FulfillmentSnapshot =
|
|
@@ -31244,6 +30935,8 @@ export type InternalHarmonizationStatistic =
|
|
|
31244
30935
|
io.flow.internal.v0.unions.InternalHarmonizationStatistic;
|
|
31245
30936
|
export type InternalItemForm = io.flow.internal.v0.models.InternalItemForm;
|
|
31246
30937
|
export type InternalOrder = io.flow.internal.v0.models.InternalOrder;
|
|
30938
|
+
export type InternalPaymentEntityType =
|
|
30939
|
+
io.flow.internal.v0.enums.InternalPaymentEntityType;
|
|
31247
30940
|
export type InternalPaymentRequest =
|
|
31248
30941
|
io.flow.internal.v0.models.InternalPaymentRequest;
|
|
31249
30942
|
export type InternalPaymentRequestVerification =
|
|
@@ -31257,8 +30950,6 @@ export type InternalTransactionDetails =
|
|
|
31257
30950
|
io.flow.internal.v0.unions.InternalTransactionDetails;
|
|
31258
30951
|
export type InternalTransactionDetailsCard =
|
|
31259
30952
|
io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
31260
|
-
export type InvalidCheckoutData =
|
|
31261
|
-
io.flow.internal.v0.models.InvalidCheckoutData;
|
|
31262
30953
|
export type Invariant = io.flow.internal.v0.models.Invariant;
|
|
31263
30954
|
export type InventoryItemWrapper =
|
|
31264
30955
|
io.flow.internal.v0.models.InventoryItemWrapper;
|
|
@@ -31273,8 +30964,6 @@ export type IssuerUpserted = io.flow.internal.v0.models.IssuerUpserted;
|
|
|
31273
30964
|
export type ItemClassification = io.flow.internal.v0.models.ItemClassification;
|
|
31274
30965
|
export type ItemClassificationAction =
|
|
31275
30966
|
io.flow.internal.v0.enums.ItemClassificationAction;
|
|
31276
|
-
export type ItemClassificationCreated =
|
|
31277
|
-
io.flow.internal.v0.models.ItemClassificationCreated;
|
|
31278
30967
|
export type ItemClassificationForm =
|
|
31279
30968
|
io.flow.internal.v0.models.ItemClassificationForm;
|
|
31280
30969
|
export type ItemClassificationStatus =
|
|
@@ -31323,7 +31012,6 @@ export type ItemSalesMarginVersion =
|
|
|
31323
31012
|
export type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
31324
31013
|
export type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
31325
31014
|
export type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
31326
|
-
export type ItemsShipped = io.flow.internal.v0.models.ItemsShipped;
|
|
31327
31015
|
export type JeanDemoItem = io.flow.internal.v0.models.JeanDemoItem;
|
|
31328
31016
|
export type Key = io.flow.internal.v0.models.Key;
|
|
31329
31017
|
export type KeyReference = io.flow.internal.v0.models.KeyReference;
|
|
@@ -31346,8 +31034,12 @@ export type LabelCancellationError =
|
|
|
31346
31034
|
export type LabelCancellationErrorCode =
|
|
31347
31035
|
io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
31348
31036
|
export type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJob;
|
|
31037
|
+
export type LabelCreationJobDeleted =
|
|
31038
|
+
io.flow.internal.v0.models.LabelCreationJobDeleted;
|
|
31349
31039
|
export type LabelCreationJobSummary =
|
|
31350
31040
|
io.flow.internal.v0.models.LabelCreationJobSummary;
|
|
31041
|
+
export type LabelCreationJobUpserted =
|
|
31042
|
+
io.flow.internal.v0.models.LabelCreationJobUpserted;
|
|
31351
31043
|
export type LabelCreationRequestForm =
|
|
31352
31044
|
io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
31353
31045
|
export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
@@ -31519,6 +31211,11 @@ export type MerchantOfRecordEntitySettings =
|
|
|
31519
31211
|
io.flow.internal.v0.models.MerchantOfRecordEntitySettings;
|
|
31520
31212
|
export type MerchantOfRecordEntitySettingsForm =
|
|
31521
31213
|
io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm;
|
|
31214
|
+
export type MerchantOverride = io.flow.internal.v0.models.MerchantOverride;
|
|
31215
|
+
export type MerchantOverrideDecisionForm =
|
|
31216
|
+
io.flow.internal.v0.models.MerchantOverrideDecisionForm;
|
|
31217
|
+
export type MerchantOverrideStatus =
|
|
31218
|
+
io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
31522
31219
|
export type MerchantSearchResult =
|
|
31523
31220
|
io.flow.internal.v0.models.MerchantSearchResult;
|
|
31524
31221
|
export type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
@@ -31585,11 +31282,8 @@ export type OptinPromptCheckoutDisplay =
|
|
|
31585
31282
|
export type OptinPromptCopy = io.flow.internal.v0.models.OptinPromptCopy;
|
|
31586
31283
|
export type OptinPromptCopyForm =
|
|
31587
31284
|
io.flow.internal.v0.models.OptinPromptCopyForm;
|
|
31588
|
-
export type OptinPromptDeleted = io.flow.internal.v0.models.OptinPromptDeleted;
|
|
31589
31285
|
export type OptinPromptDisplay = io.flow.internal.v0.unions.OptinPromptDisplay;
|
|
31590
31286
|
export type OptinPromptForm = io.flow.internal.v0.models.OptinPromptForm;
|
|
31591
|
-
export type OptinPromptUpserted =
|
|
31592
|
-
io.flow.internal.v0.models.OptinPromptUpserted;
|
|
31593
31287
|
export type OrderAction = io.flow.internal.v0.enums.OrderAction;
|
|
31594
31288
|
export type OrderActionForm = io.flow.internal.v0.unions.OrderActionForm;
|
|
31595
31289
|
export type OrderActionability = io.flow.internal.v0.models.OrderActionability;
|
|
@@ -31635,10 +31329,8 @@ export type OrderFulfillmentUpserted =
|
|
|
31635
31329
|
export type OrderLifecycleEvent = io.flow.internal.v0.enums.OrderLifecycleEvent;
|
|
31636
31330
|
export type OrderNote = io.flow.internal.v0.models.OrderNote;
|
|
31637
31331
|
export type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
|
|
31638
|
-
export type OrderParameters = io.flow.internal.v0.models.OrderParameters;
|
|
31639
31332
|
export type OrderPaymentAuthorization =
|
|
31640
31333
|
io.flow.internal.v0.models.OrderPaymentAuthorization;
|
|
31641
|
-
export type OrderPlaced = io.flow.internal.v0.models.OrderPlaced;
|
|
31642
31334
|
export type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
|
|
31643
31335
|
export type OrderRatesPublishedV3 =
|
|
31644
31336
|
io.flow.internal.v0.models.OrderRatesPublishedV3;
|
|
@@ -31653,7 +31345,6 @@ export type OrderRevenueTimelineDataPoint =
|
|
|
31653
31345
|
io.flow.internal.v0.models.OrderRevenueTimelineDataPoint;
|
|
31654
31346
|
export type OrderServiceChangeCsvForm =
|
|
31655
31347
|
io.flow.internal.v0.models.OrderServiceChangeCsvForm;
|
|
31656
|
-
export type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
31657
31348
|
export type OrderSubmissionForm =
|
|
31658
31349
|
io.flow.internal.v0.models.OrderSubmissionForm;
|
|
31659
31350
|
export type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
@@ -31967,9 +31658,6 @@ export type PlatformFeePercentageTier =
|
|
|
31967
31658
|
export type Prediction = io.flow.internal.v0.models.Prediction;
|
|
31968
31659
|
export type PreferredBillingSchedule =
|
|
31969
31660
|
io.flow.internal.v0.enums.PreferredBillingSchedule;
|
|
31970
|
-
export type PregeneratedQuote = io.flow.internal.v0.models.PregeneratedQuote;
|
|
31971
|
-
export type PregeneratedRequestEvent =
|
|
31972
|
-
io.flow.internal.v0.models.PregeneratedRequestEvent;
|
|
31973
31661
|
export type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
|
|
31974
31662
|
export type PrioritizedCenterReference =
|
|
31975
31663
|
io.flow.internal.v0.models.PrioritizedCenterReference;
|
|
@@ -32064,8 +31752,6 @@ export type PublicHub = io.flow.internal.v0.models.PublicHub;
|
|
|
32064
31752
|
export type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
|
|
32065
31753
|
export type Quote = io.flow.internal.v0.models.Quote;
|
|
32066
31754
|
export type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
|
|
32067
|
-
export type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
32068
|
-
export type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
|
|
32069
31755
|
export type QuoteUpserted = io.flow.internal.v0.models.QuoteUpserted;
|
|
32070
31756
|
export type RateAndRuleItem = io.flow.internal.v0.models.RateAndRuleItem;
|
|
32071
31757
|
export type RateAndRuleItemForm =
|
|
@@ -32117,12 +31803,6 @@ export type RatecardInternalServiceFee =
|
|
|
32117
31803
|
io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
32118
31804
|
export type RatecardInternalSummary =
|
|
32119
31805
|
io.flow.internal.v0.models.RatecardInternalSummary;
|
|
32120
|
-
export type RatecardLaneAggregate =
|
|
32121
|
-
io.flow.internal.v0.models.RatecardLaneAggregate;
|
|
32122
|
-
export type RatecardLaneAggregateDeleted =
|
|
32123
|
-
io.flow.internal.v0.models.RatecardLaneAggregateDeleted;
|
|
32124
|
-
export type RatecardLaneAggregateUpserted =
|
|
32125
|
-
io.flow.internal.v0.models.RatecardLaneAggregateUpserted;
|
|
32126
31806
|
export type RatecardLanesImportRequest =
|
|
32127
31807
|
io.flow.internal.v0.models.RatecardLanesImportRequest;
|
|
32128
31808
|
export type RatecardRateLevelDeleted =
|
|
@@ -32157,7 +31837,6 @@ export type RatecardStandardSettings =
|
|
|
32157
31837
|
io.flow.internal.v0.models.RatecardStandardSettings;
|
|
32158
31838
|
export type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
32159
31839
|
export type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
32160
|
-
export type ReadyToFulfill = io.flow.internal.v0.models.ReadyToFulfill;
|
|
32161
31840
|
export type ReboundConfiguration =
|
|
32162
31841
|
io.flow.internal.v0.models.ReboundConfiguration;
|
|
32163
31842
|
export type ReboundConfigurationForm =
|
|
@@ -32181,6 +31860,9 @@ export type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
|
32181
31860
|
export type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
32182
31861
|
export type ReportBankAccountCleartext =
|
|
32183
31862
|
io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
31863
|
+
export type ReportFile = io.flow.internal.v0.models.ReportFile;
|
|
31864
|
+
export type ReportFileStatus = io.flow.internal.v0.enums.ReportFileStatus;
|
|
31865
|
+
export type ReportFileType = io.flow.internal.v0.enums.ReportFileType;
|
|
32184
31866
|
export type ReportFilter = io.flow.internal.v0.models.ReportFilter;
|
|
32185
31867
|
export type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
32186
31868
|
export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
@@ -32192,6 +31874,9 @@ export type ReportOrganizationReference =
|
|
|
32192
31874
|
export type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
32193
31875
|
export type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
32194
31876
|
export type ReportPaymentType = io.flow.internal.v0.enums.ReportPaymentType;
|
|
31877
|
+
export type ReportRecordError = io.flow.internal.v0.models.ReportRecordError;
|
|
31878
|
+
export type ReportRecordRetryQueue =
|
|
31879
|
+
io.flow.internal.v0.models.ReportRecordRetryQueue;
|
|
32195
31880
|
export type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
32196
31881
|
export type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
32197
31882
|
export type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
@@ -32390,7 +32075,6 @@ export type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
|
32390
32075
|
export type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
32391
32076
|
export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
32392
32077
|
export type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
32393
|
-
export type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
32394
32078
|
export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
32395
32079
|
export type ShippingMethodReference =
|
|
32396
32080
|
io.flow.internal.v0.models.ShippingMethodReference;
|
|
@@ -32516,6 +32200,12 @@ export type ShopifyMarketsWebhookRegistrationDeleted =
|
|
|
32516
32200
|
io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
|
|
32517
32201
|
export type ShopifyMarketsWebhookRegistrationUpserted =
|
|
32518
32202
|
io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
32203
|
+
export type ShopifyMerchantPlan =
|
|
32204
|
+
io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
32205
|
+
export type ShopifyMerchantPlanDeleted =
|
|
32206
|
+
io.flow.internal.v0.models.ShopifyMerchantPlanDeleted;
|
|
32207
|
+
export type ShopifyMerchantPlanUpserted =
|
|
32208
|
+
io.flow.internal.v0.models.ShopifyMerchantPlanUpserted;
|
|
32519
32209
|
export type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
|
|
32520
32210
|
export type ShopifyMonitoringCarrierService =
|
|
32521
32211
|
io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
@@ -32576,6 +32266,7 @@ export type ShopifyPartnerWebhookRaw =
|
|
|
32576
32266
|
io.flow.internal.v0.models.ShopifyPartnerWebhookRaw;
|
|
32577
32267
|
export type ShopifyPaymentSummary =
|
|
32578
32268
|
io.flow.internal.v0.models.ShopifyPaymentSummary;
|
|
32269
|
+
export type ShopifyPlanType = io.flow.internal.v0.enums.ShopifyPlanType;
|
|
32579
32270
|
export type ShopifyProductBundle =
|
|
32580
32271
|
io.flow.internal.v0.models.ShopifyProductBundle;
|
|
32581
32272
|
export type ShopifyProductBundleDeleted =
|
|
@@ -32743,6 +32434,12 @@ export type StripeCaptureDeleted =
|
|
|
32743
32434
|
io.flow.internal.v0.models.StripeCaptureDeleted;
|
|
32744
32435
|
export type StripeCaptureUpserted =
|
|
32745
32436
|
io.flow.internal.v0.models.StripeCaptureUpserted;
|
|
32437
|
+
export type StripeConnectReportRecord =
|
|
32438
|
+
io.flow.internal.v0.models.StripeConnectReportRecord;
|
|
32439
|
+
export type StripeConnectReportRecordDeleted =
|
|
32440
|
+
io.flow.internal.v0.models.StripeConnectReportRecordDeleted;
|
|
32441
|
+
export type StripeConnectReportRecordUpserted =
|
|
32442
|
+
io.flow.internal.v0.models.StripeConnectReportRecordUpserted;
|
|
32746
32443
|
export type StripeDisputeDeleted =
|
|
32747
32444
|
io.flow.internal.v0.models.StripeDisputeDeleted;
|
|
32748
32445
|
export type StripeDisputeUpserted =
|
|
@@ -32813,16 +32510,6 @@ export type TaxCalculationLineItem =
|
|
|
32813
32510
|
io.flow.internal.v0.models.TaxCalculationLineItem;
|
|
32814
32511
|
export type TaxCalculationLineItemForm =
|
|
32815
32512
|
io.flow.internal.v0.models.TaxCalculationLineItemForm;
|
|
32816
|
-
export type TaxDutyDeltaMetadataActual =
|
|
32817
|
-
io.flow.internal.v0.models.TaxDutyDeltaMetadataActual;
|
|
32818
|
-
export type TaxDutyDeltaMetadataActualProcessing =
|
|
32819
|
-
io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
32820
|
-
export type TaxDutyDeltaMetadataExpected =
|
|
32821
|
-
io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected;
|
|
32822
|
-
export type TaxDutyDeltaMetadataExpectedProcessing =
|
|
32823
|
-
io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
32824
|
-
export type TaxDutyDeltaTransaction =
|
|
32825
|
-
io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
32826
32513
|
export type TaxParty = io.flow.internal.v0.enums.TaxParty;
|
|
32827
32514
|
export type TaxRemittanceTransaction =
|
|
32828
32515
|
io.flow.internal.v0.models.TaxRemittanceTransaction;
|