@flowio/types 11.24.112 → 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 +191 -166
- package/dist/api.d.ts +191 -50
- package/package.json +2 -2
- package/src/api-internal.ts +249 -212
- package/src/api.ts +239 -56
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;
|
|
@@ -2759,6 +2774,17 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2759
2774
|
type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
|
|
2760
2775
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
2761
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';
|
|
2762
2788
|
type DeclineCode =
|
|
2763
2789
|
| 'approve_with_id'
|
|
2764
2790
|
| 'call_issuer'
|
|
@@ -3367,6 +3393,46 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3367
3393
|
readonly status: io.flow.stripe.v0.enums.CodeVerificationStatus;
|
|
3368
3394
|
}
|
|
3369
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
|
+
|
|
3370
3436
|
interface Customer {
|
|
3371
3437
|
readonly id: string;
|
|
3372
3438
|
readonly object: string;
|
|
@@ -4487,8 +4553,6 @@ declare namespace io.flow.customer.v0.models {
|
|
|
4487
4553
|
declare namespace io.flow.label.v0.enums {
|
|
4488
4554
|
type CostEstimateSource = 'flow' | 'channel';
|
|
4489
4555
|
type Direction = 'outbound' | 'return';
|
|
4490
|
-
type EstimateOrigin = 'Shopify' | 'GlobalE' | 'Aftership' | 'Carrier';
|
|
4491
|
-
type EstimateType = 'Estimated' | 'Final';
|
|
4492
4556
|
type LabelRequestMethod =
|
|
4493
4557
|
| 'flow_web_sync'
|
|
4494
4558
|
| 'channel_web_async'
|
|
@@ -4593,15 +4657,6 @@ declare namespace io.flow.label.v0.models {
|
|
|
4593
4657
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
4594
4658
|
}
|
|
4595
4659
|
|
|
4596
|
-
interface Estimate {
|
|
4597
|
-
readonly id: string;
|
|
4598
|
-
readonly organization_id: string;
|
|
4599
|
-
readonly label_id: string;
|
|
4600
|
-
readonly estimate: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
4601
|
-
readonly type: io.flow.label.v0.enums.EstimateType;
|
|
4602
|
-
readonly origin?: io.flow.label.v0.enums.EstimateOrigin;
|
|
4603
|
-
}
|
|
4604
|
-
|
|
4605
4660
|
interface LabelOrderSummary {
|
|
4606
4661
|
readonly id: string;
|
|
4607
4662
|
readonly number: string;
|
|
@@ -6048,7 +6103,12 @@ declare namespace io.flow.brickftp.v0.unions {
|
|
|
6048
6103
|
|
|
6049
6104
|
declare namespace io.flow.units.v0.enums {
|
|
6050
6105
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
6051
|
-
type UnitOfVolume =
|
|
6106
|
+
type UnitOfVolume =
|
|
6107
|
+
| 'cubic_inch'
|
|
6108
|
+
| 'cubic_foot'
|
|
6109
|
+
| 'cubic_millimeter'
|
|
6110
|
+
| 'cubic_centimeter'
|
|
6111
|
+
| 'cubic_meter';
|
|
6052
6112
|
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
6053
6113
|
}
|
|
6054
6114
|
|
|
@@ -9443,6 +9503,9 @@ declare namespace io.flow.common.v0.enums {
|
|
|
9443
9503
|
| 'inch'
|
|
9444
9504
|
| 'foot'
|
|
9445
9505
|
| 'cubic_inch'
|
|
9506
|
+
| 'cubic_foot'
|
|
9507
|
+
| 'cubic_millimeter'
|
|
9508
|
+
| 'cubic_centimeter'
|
|
9446
9509
|
| 'cubic_meter'
|
|
9447
9510
|
| 'gram'
|
|
9448
9511
|
| 'kilogram'
|
|
@@ -10284,7 +10347,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
10284
10347
|
| 'by_quantity_percentage';
|
|
10285
10348
|
type OrderStatus = 'open' | 'submitted';
|
|
10286
10349
|
type OrderStorage = 'do_not_persist' | 'persist';
|
|
10287
|
-
type OrderType = 'standard' | 'replacement';
|
|
10350
|
+
type OrderType = 'standard' | 'replacement' | 'edit';
|
|
10288
10351
|
type OrganizationPaymentMethodTag = 'deny';
|
|
10289
10352
|
type PaymentMethodRuleContentKey = 'description';
|
|
10290
10353
|
type PriceFacetBoundary = 'min' | 'max';
|
|
@@ -11450,6 +11513,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11450
11513
|
interface DutiesTaxesPaidSurchargeServiceFee {
|
|
11451
11514
|
readonly discriminator: 'duties_taxes_paid_surcharge_service_fee';
|
|
11452
11515
|
readonly amount: io.flow.common.v0.models.Money;
|
|
11516
|
+
readonly destination_countries?: string[];
|
|
11453
11517
|
readonly starts_at?: string;
|
|
11454
11518
|
readonly ends_at?: string;
|
|
11455
11519
|
}
|
|
@@ -13838,8 +13902,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13838
13902
|
| 'failed_payout'
|
|
13839
13903
|
| 'tax_refund'
|
|
13840
13904
|
| 'non_l4l_tax_duty_fx'
|
|
13841
|
-
| 'ge_revenue_share'
|
|
13842
|
-
| 'tax_duty_delta';
|
|
13905
|
+
| 'ge_revenue_share';
|
|
13843
13906
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
13844
13907
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
13845
13908
|
}
|
|
@@ -16305,8 +16368,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16305
16368
|
| 'non_l4l_tax_duty_fx'
|
|
16306
16369
|
| 'tax_refund'
|
|
16307
16370
|
| 'duty_refund'
|
|
16308
|
-
| 'ge_revenue_share'
|
|
16309
|
-
| 'tax_duty_delta';
|
|
16371
|
+
| 'ge_revenue_share';
|
|
16310
16372
|
type CalculatorEngine =
|
|
16311
16373
|
| 'dtce_with_deminimis'
|
|
16312
16374
|
| 'dtce_with_inclusive_pricing'
|
|
@@ -16480,10 +16542,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16480
16542
|
type EmptyAttribute = 'irrelevant';
|
|
16481
16543
|
type ErpFileType = 'vendor';
|
|
16482
16544
|
type EventType =
|
|
16483
|
-
| 'adjusted_estimates_upserted'
|
|
16484
|
-
| 'adjusted_estimates_deleted'
|
|
16485
|
-
| 'shipping_estimate_upserted'
|
|
16486
|
-
| 'shipping_estimate_deleted'
|
|
16487
16545
|
| 'adyen_authorization_deleted'
|
|
16488
16546
|
| 'adyen_authorization_upserted'
|
|
16489
16547
|
| 'adyen_cancel_deleted'
|
|
@@ -16682,6 +16740,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16682
16740
|
| 'order_validation_failure_deleted'
|
|
16683
16741
|
| 'order_validation_upserted'
|
|
16684
16742
|
| 'order_validation_deleted'
|
|
16743
|
+
| 'label_creation_job_upserted'
|
|
16744
|
+
| 'label_creation_job_deleted'
|
|
16685
16745
|
| 'label_tracking_summary_upserted'
|
|
16686
16746
|
| 'label_tracking_summary_deleted'
|
|
16687
16747
|
| 'logistics_capabilities_upserted'
|
|
@@ -16691,11 +16751,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16691
16751
|
| 'order_combined_shipment_deleted'
|
|
16692
16752
|
| 'order_fulfillment_deleted'
|
|
16693
16753
|
| 'order_fulfillment_upserted'
|
|
16694
|
-
| 'order_placed'
|
|
16695
|
-
| 'ready_to_fulfill'
|
|
16696
|
-
| 'fulfillment_cancel'
|
|
16697
|
-
| 'order_shipped'
|
|
16698
|
-
| 'items_shipped'
|
|
16699
16754
|
| 'organization_business_entity_deleted'
|
|
16700
16755
|
| 'organization_business_entity_upserted'
|
|
16701
16756
|
| 'organization_status_change_upserted'
|
|
@@ -16811,6 +16866,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16811
16866
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
16812
16867
|
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
16813
16868
|
| 'shopify_order_fulfillments_snapshot_deleted'
|
|
16869
|
+
| 'shopify_merchant_plan_upserted'
|
|
16870
|
+
| 'shopify_merchant_plan_deleted'
|
|
16814
16871
|
| 'stripe_authorization_deleted'
|
|
16815
16872
|
| 'stripe_authorization_upserted'
|
|
16816
16873
|
| 'stripe_reversal_deleted'
|
|
@@ -16821,6 +16878,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16821
16878
|
| 'stripe_refund_upserted'
|
|
16822
16879
|
| 'stripe_dispute_upserted'
|
|
16823
16880
|
| 'stripe_dispute_deleted'
|
|
16881
|
+
| 'stripe_connect_report_record_upserted'
|
|
16882
|
+
| 'stripe_connect_report_record_deleted'
|
|
16824
16883
|
| 'liability_remittance_plan_upserted'
|
|
16825
16884
|
| 'liability_remittance_plan_deleted'
|
|
16826
16885
|
| 'tracking_processing_error_upserted'
|
|
@@ -16886,8 +16945,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16886
16945
|
type HarmonizationDecisionSource =
|
|
16887
16946
|
| 'human'
|
|
16888
16947
|
| 'legacy_model'
|
|
16889
|
-
| 'enterprise_model'
|
|
16948
|
+
| 'enterprise_model'
|
|
16949
|
+
| 'merchant';
|
|
16890
16950
|
type HttpMethod = 'get' | 'post';
|
|
16951
|
+
type InternalPaymentEntityType =
|
|
16952
|
+
| 'authorization'
|
|
16953
|
+
| 'capture'
|
|
16954
|
+
| 'refund'
|
|
16955
|
+
| 'dispute';
|
|
16891
16956
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
16892
16957
|
type ItemClassificationStatus =
|
|
16893
16958
|
| 'unknown'
|
|
@@ -16955,6 +17020,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16955
17020
|
| 'negative_balance_guarantee'
|
|
16956
17021
|
| 'bank_payment_failure'
|
|
16957
17022
|
| 'non_fraud_chargeback';
|
|
17023
|
+
type MerchantOverrideStatus = 'in_review' | 'accepted' | 'rejected';
|
|
16958
17024
|
type MixedBagWeight = '0' | '1' | '2';
|
|
16959
17025
|
type NatureOfSale =
|
|
16960
17026
|
| 'consumer'
|
|
@@ -17116,6 +17182,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17116
17182
|
| 'risky_velocity'
|
|
17117
17183
|
| 'suspicious_behavior'
|
|
17118
17184
|
| 'suspicious_past_activity';
|
|
17185
|
+
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
17186
|
+
type ReportFileType = 'stripe_connect_report';
|
|
17119
17187
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
17120
17188
|
type ReportPaymentType = 'credit' | 'debit';
|
|
17121
17189
|
type ReportStatus =
|
|
@@ -17551,29 +17619,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17551
17619
|
readonly province_code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
17552
17620
|
}
|
|
17553
17621
|
|
|
17554
|
-
interface AdjustedEstimates {
|
|
17555
|
-
readonly id: string;
|
|
17556
|
-
readonly organization_id: string;
|
|
17557
|
-
readonly label_id: string;
|
|
17558
|
-
readonly estimates: io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
17559
|
-
}
|
|
17560
|
-
|
|
17561
|
-
interface AdjustedEstimatesDeleted {
|
|
17562
|
-
readonly discriminator: 'adjusted_estimates_deleted';
|
|
17563
|
-
readonly event_id: string;
|
|
17564
|
-
readonly timestamp: string;
|
|
17565
|
-
readonly organization: string;
|
|
17566
|
-
readonly id: string;
|
|
17567
|
-
}
|
|
17568
|
-
|
|
17569
|
-
interface AdjustedEstimatesUpserted {
|
|
17570
|
-
readonly discriminator: 'adjusted_estimates_upserted';
|
|
17571
|
-
readonly event_id: string;
|
|
17572
|
-
readonly timestamp: string;
|
|
17573
|
-
readonly organization: string;
|
|
17574
|
-
readonly adjusted_estimates: io.flow.internal.v0.models.AdjustedEstimates;
|
|
17575
|
-
}
|
|
17576
|
-
|
|
17577
17622
|
interface AdjustmentAmountFixed {
|
|
17578
17623
|
readonly discriminator: 'fixed';
|
|
17579
17624
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -21731,19 +21776,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21731
21776
|
readonly vat_registration_number: string;
|
|
21732
21777
|
}
|
|
21733
21778
|
|
|
21734
|
-
interface FulfillmentCancel {
|
|
21735
|
-
readonly discriminator: 'fulfillment_cancel';
|
|
21736
|
-
readonly event_id: string;
|
|
21737
|
-
readonly timestamp: string;
|
|
21738
|
-
readonly organization: string;
|
|
21739
|
-
readonly order_number: string;
|
|
21740
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
21741
|
-
readonly fulfillments: io.flow.order.management.v0.models.Fulfillment[];
|
|
21742
|
-
readonly change_source: io.flow.order.management.v0.enums.OrderChangeSource;
|
|
21743
|
-
readonly reason: io.flow.order.management.v0.enums.CancelReason;
|
|
21744
|
-
readonly cancelled_lines: io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
21745
|
-
}
|
|
21746
|
-
|
|
21747
21779
|
interface FulfillmentCarrier {
|
|
21748
21780
|
readonly id: string;
|
|
21749
21781
|
readonly service_id?: string;
|
|
@@ -21830,14 +21862,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21830
21862
|
readonly id: string;
|
|
21831
21863
|
}
|
|
21832
21864
|
|
|
21833
|
-
interface FulfillmentShipmentTracking {
|
|
21834
|
-
readonly fulfillment_key: string;
|
|
21835
|
-
readonly flow_tracking_number: string;
|
|
21836
|
-
readonly carrier_tracking_number?: string;
|
|
21837
|
-
readonly carrier_tracking_url?: string;
|
|
21838
|
-
readonly items: io.flow.order.management.v0.models.FulfillmentItem[];
|
|
21839
|
-
}
|
|
21840
|
-
|
|
21841
21865
|
interface FulfillmentShopperBreakdown {
|
|
21842
21866
|
readonly shipping: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21843
21867
|
readonly fees: io.flow.internal.v0.models.ReportingShopperFees;
|
|
@@ -22587,18 +22611,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22587
22611
|
readonly values: string[];
|
|
22588
22612
|
}
|
|
22589
22613
|
|
|
22590
|
-
interface ItemsShipped {
|
|
22591
|
-
readonly discriminator: 'items_shipped';
|
|
22592
|
-
readonly event_id: string;
|
|
22593
|
-
readonly timestamp: string;
|
|
22594
|
-
readonly organization: string;
|
|
22595
|
-
readonly order_number: string;
|
|
22596
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
22597
|
-
readonly fulfillments: io.flow.order.management.v0.models.Fulfillment[];
|
|
22598
|
-
readonly flow_tracking_number: string;
|
|
22599
|
-
readonly shipped_item_values: io.flow.internal.v0.models.ShippedItemValue[];
|
|
22600
|
-
}
|
|
22601
|
-
|
|
22602
22614
|
interface JeanDemoItem {
|
|
22603
22615
|
readonly id: string;
|
|
22604
22616
|
readonly name: string;
|
|
@@ -22666,14 +22678,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22666
22678
|
readonly service_id?: string;
|
|
22667
22679
|
readonly carrier_tracking_number?: string;
|
|
22668
22680
|
readonly flow_tracking_number?: string;
|
|
22681
|
+
readonly label_id?: string;
|
|
22669
22682
|
readonly errors: string[];
|
|
22670
22683
|
}
|
|
22671
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
|
+
|
|
22672
22693
|
interface LabelCreationJobSummary {
|
|
22673
22694
|
readonly reference_id: string;
|
|
22674
22695
|
readonly status: io.flow.internal.v0.enums.LabelCreationStatus;
|
|
22675
22696
|
}
|
|
22676
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
|
+
|
|
22677
22706
|
interface LabelCreationRequestForm {
|
|
22678
22707
|
readonly organization: string;
|
|
22679
22708
|
readonly shipping_label_form: io.flow.label.v0.unions.ShippingLabelForm;
|
|
@@ -22796,6 +22825,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22796
22825
|
readonly destination_country?: string;
|
|
22797
22826
|
readonly reference_id?: string;
|
|
22798
22827
|
readonly logistics_integration_provider?: string;
|
|
22828
|
+
readonly tax_lrp_liabilities?: io.flow.internal.v0.models.Liability[];
|
|
22799
22829
|
}
|
|
22800
22830
|
|
|
22801
22831
|
interface LabelSummary {
|
|
@@ -23222,6 +23252,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23222
23252
|
readonly paid_at?: string;
|
|
23223
23253
|
readonly posted_at?: string;
|
|
23224
23254
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
23255
|
+
readonly channel_statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
23225
23256
|
readonly created_at: string;
|
|
23226
23257
|
readonly original_at?: string;
|
|
23227
23258
|
}
|
|
@@ -23429,6 +23460,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23429
23460
|
readonly currency?: string;
|
|
23430
23461
|
}
|
|
23431
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
|
+
|
|
23432
23476
|
interface MerchantSearchResult {
|
|
23433
23477
|
readonly organization_id: string;
|
|
23434
23478
|
readonly shop_name?: string;
|
|
@@ -23807,16 +23851,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23807
23851
|
readonly placeholder: string;
|
|
23808
23852
|
}
|
|
23809
23853
|
|
|
23810
|
-
interface OrderPlaced {
|
|
23811
|
-
readonly discriminator: 'order_placed';
|
|
23812
|
-
readonly event_id: string;
|
|
23813
|
-
readonly timestamp: string;
|
|
23814
|
-
readonly organization: string;
|
|
23815
|
-
readonly order_number: string;
|
|
23816
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
23817
|
-
readonly allocation: io.flow.experience.v0.models.AllocationV2;
|
|
23818
|
-
}
|
|
23819
|
-
|
|
23820
23854
|
interface OrderRatesDataV3 {
|
|
23821
23855
|
readonly organization: string;
|
|
23822
23856
|
readonly order_id: string;
|
|
@@ -23869,17 +23903,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23869
23903
|
readonly to_service_id: string;
|
|
23870
23904
|
}
|
|
23871
23905
|
|
|
23872
|
-
interface OrderShipped {
|
|
23873
|
-
readonly discriminator: 'order_shipped';
|
|
23874
|
-
readonly event_id: string;
|
|
23875
|
-
readonly timestamp: string;
|
|
23876
|
-
readonly organization: string;
|
|
23877
|
-
readonly order_number: string;
|
|
23878
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
23879
|
-
readonly fulfillments: io.flow.order.management.v0.models.Fulfillment[];
|
|
23880
|
-
readonly shipment_trackings: io.flow.internal.v0.models.FulfillmentShipmentTracking[];
|
|
23881
|
-
}
|
|
23882
|
-
|
|
23883
23906
|
interface OrderSubmissionForm {
|
|
23884
23907
|
readonly authorization?: io.flow.payment.v0.unions.AuthorizationForm;
|
|
23885
23908
|
}
|
|
@@ -25767,17 +25790,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25767
25790
|
readonly summaries: io.flow.internal.v0.models.RateNameSummary[];
|
|
25768
25791
|
}
|
|
25769
25792
|
|
|
25770
|
-
interface ReadyToFulfill {
|
|
25771
|
-
readonly discriminator: 'ready_to_fulfill';
|
|
25772
|
-
readonly event_id: string;
|
|
25773
|
-
readonly timestamp: string;
|
|
25774
|
-
readonly organization: string;
|
|
25775
|
-
readonly order_number: string;
|
|
25776
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
25777
|
-
readonly fulfillments?: io.flow.order.management.v0.models.Fulfillment[];
|
|
25778
|
-
readonly fulfillment_item_allocation_details?: io.flow.order.management.event.v0.models.FulfillmentItemAllocationDetails[];
|
|
25779
|
-
}
|
|
25780
|
-
|
|
25781
25793
|
interface ReboundConfiguration {
|
|
25782
25794
|
readonly id: string;
|
|
25783
25795
|
readonly login: string;
|
|
@@ -25856,6 +25868,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25856
25868
|
readonly account_number: string;
|
|
25857
25869
|
}
|
|
25858
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
|
+
|
|
25859
25880
|
interface ReportFilter {
|
|
25860
25881
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
25861
25882
|
}
|
|
@@ -25894,6 +25915,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25894
25915
|
readonly created_at: string;
|
|
25895
25916
|
}
|
|
25896
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
|
+
|
|
25897
25933
|
interface ReportRuleDecision {
|
|
25898
25934
|
readonly rule_id: string;
|
|
25899
25935
|
readonly rule_name: string;
|
|
@@ -26164,8 +26200,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26164
26200
|
readonly organization_id: string;
|
|
26165
26201
|
readonly restriction_product_id: string;
|
|
26166
26202
|
readonly product_id: string;
|
|
26203
|
+
readonly item_numbers: string[];
|
|
26204
|
+
readonly primary_item_number?: string;
|
|
26167
26205
|
readonly name: string;
|
|
26168
26206
|
readonly price: io.flow.common.v0.models.Price;
|
|
26207
|
+
readonly hs_code?: string;
|
|
26169
26208
|
readonly description: string;
|
|
26170
26209
|
readonly categories: string[];
|
|
26171
26210
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
@@ -26183,6 +26222,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26183
26222
|
readonly user_ids?: string[];
|
|
26184
26223
|
readonly categories?: string[];
|
|
26185
26224
|
readonly product_name_query?: string;
|
|
26225
|
+
readonly hs6?: string;
|
|
26186
26226
|
readonly positive_keywords?: string[];
|
|
26187
26227
|
readonly negative_keywords?: string[];
|
|
26188
26228
|
readonly product_id?: string;
|
|
@@ -26311,6 +26351,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26311
26351
|
readonly user_ids?: string[];
|
|
26312
26352
|
readonly categories?: string[];
|
|
26313
26353
|
readonly product_name_query?: string;
|
|
26354
|
+
readonly hs6?: string;
|
|
26314
26355
|
readonly product_id?: string;
|
|
26315
26356
|
}
|
|
26316
26357
|
|
|
@@ -26431,7 +26472,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26431
26472
|
readonly num_products_transacting_prs: number;
|
|
26432
26473
|
readonly oldest_pr_product_date_setup_complete: string;
|
|
26433
26474
|
readonly oldest_pr_date_transacting: string;
|
|
26434
|
-
readonly percent_products_reviewed_transacting
|
|
26475
|
+
readonly percent_products_reviewed_transacting?: number;
|
|
26435
26476
|
readonly num_pv_inflow_net_new: number;
|
|
26436
26477
|
readonly num_pv_outflow_human_decisions: number;
|
|
26437
26478
|
readonly num_pv_outflow_auto_review_decisions: number;
|
|
@@ -26441,6 +26482,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26441
26482
|
readonly num_pr_outflow_auto_review_decisions: number;
|
|
26442
26483
|
readonly num_pr_outflow_side_effect_decisions: number;
|
|
26443
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;
|
|
26444
26488
|
}
|
|
26445
26489
|
|
|
26446
26490
|
interface RestrictionsDailyopsDeleted {
|
|
@@ -26740,29 +26784,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26740
26784
|
readonly customer_id: string;
|
|
26741
26785
|
}
|
|
26742
26786
|
|
|
26743
|
-
interface ShippedItemValue {
|
|
26744
|
-
readonly item: io.flow.common.v0.models.CatalogItemReference;
|
|
26745
|
-
readonly taxes: io.flow.common.v0.models.PriceWithBase;
|
|
26746
|
-
readonly duties: io.flow.common.v0.models.PriceWithBase;
|
|
26747
|
-
readonly total: io.flow.common.v0.models.PriceWithBase;
|
|
26748
|
-
}
|
|
26749
|
-
|
|
26750
|
-
interface ShippingEstimateDeleted {
|
|
26751
|
-
readonly discriminator: 'shipping_estimate_deleted';
|
|
26752
|
-
readonly event_id: string;
|
|
26753
|
-
readonly timestamp: string;
|
|
26754
|
-
readonly organization: string;
|
|
26755
|
-
readonly id: string;
|
|
26756
|
-
}
|
|
26757
|
-
|
|
26758
|
-
interface ShippingEstimateUpserted {
|
|
26759
|
-
readonly discriminator: 'shipping_estimate_upserted';
|
|
26760
|
-
readonly event_id: string;
|
|
26761
|
-
readonly timestamp: string;
|
|
26762
|
-
readonly organization: string;
|
|
26763
|
-
readonly estimate: io.flow.label.v0.models.Estimate;
|
|
26764
|
-
}
|
|
26765
|
-
|
|
26766
26787
|
interface ShippingLane {
|
|
26767
26788
|
readonly origin: string;
|
|
26768
26789
|
readonly destination: string;
|
|
@@ -27174,6 +27195,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27174
27195
|
readonly plan: io.flow.internal.v0.enums.ShopifyPlanType;
|
|
27175
27196
|
}
|
|
27176
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
|
+
|
|
27177
27212
|
interface ShopifyMetadata {
|
|
27178
27213
|
readonly domain: string;
|
|
27179
27214
|
readonly myshopify_domain: string;
|
|
@@ -27915,6 +27950,46 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27915
27950
|
readonly capture: io.flow.internal.v0.models.StripeInternalCapture;
|
|
27916
27951
|
}
|
|
27917
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
|
+
|
|
27918
27993
|
interface StripeDisputeDeleted {
|
|
27919
27994
|
readonly discriminator: 'stripe_dispute_deleted';
|
|
27920
27995
|
readonly event_id: string;
|
|
@@ -28216,40 +28291,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28216
28291
|
readonly category_code?: string;
|
|
28217
28292
|
}
|
|
28218
28293
|
|
|
28219
|
-
interface TaxDutyDeltaMetadataActual {
|
|
28220
|
-
readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
28221
|
-
}
|
|
28222
|
-
|
|
28223
|
-
interface TaxDutyDeltaMetadataActualProcessing {
|
|
28224
|
-
readonly capture: io.flow.common.v0.models.Money;
|
|
28225
|
-
readonly fees: io.flow.common.v0.models.Money;
|
|
28226
|
-
readonly transfer: io.flow.common.v0.models.Money;
|
|
28227
|
-
readonly total: io.flow.common.v0.models.Money;
|
|
28228
|
-
}
|
|
28229
|
-
|
|
28230
|
-
interface TaxDutyDeltaMetadataExpected {
|
|
28231
|
-
readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
28232
|
-
}
|
|
28233
|
-
|
|
28234
|
-
interface TaxDutyDeltaMetadataExpectedProcessing {
|
|
28235
|
-
readonly tax: io.flow.common.v0.models.Money;
|
|
28236
|
-
readonly duty: io.flow.common.v0.models.Money;
|
|
28237
|
-
readonly total: io.flow.common.v0.models.Money;
|
|
28238
|
-
}
|
|
28239
|
-
|
|
28240
|
-
interface TaxDutyDeltaTransaction {
|
|
28241
|
-
readonly discriminator: 'tax_duty_delta_transaction';
|
|
28242
|
-
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
28243
|
-
readonly id: string;
|
|
28244
|
-
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
28245
|
-
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
28246
|
-
readonly posted_at?: string;
|
|
28247
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
28248
|
-
readonly description: string;
|
|
28249
|
-
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
28250
|
-
readonly created_at: string;
|
|
28251
|
-
}
|
|
28252
|
-
|
|
28253
28294
|
interface TaxRemittanceTransaction {
|
|
28254
28295
|
readonly discriminator: 'tax_remittance_transaction';
|
|
28255
28296
|
readonly order: io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -29046,10 +29087,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29046
29087
|
| io.flow.internal.v0.models.DutyCompoundExpression
|
|
29047
29088
|
| io.flow.internal.v0.models.DutySimpleExpression;
|
|
29048
29089
|
type Event =
|
|
29049
|
-
| io.flow.internal.v0.models.AdjustedEstimatesUpserted
|
|
29050
|
-
| io.flow.internal.v0.models.AdjustedEstimatesDeleted
|
|
29051
|
-
| io.flow.internal.v0.models.ShippingEstimateUpserted
|
|
29052
|
-
| io.flow.internal.v0.models.ShippingEstimateDeleted
|
|
29053
29090
|
| io.flow.internal.v0.models.AdyenAuthorizationDeleted
|
|
29054
29091
|
| io.flow.internal.v0.models.AdyenAuthorizationUpserted
|
|
29055
29092
|
| io.flow.internal.v0.models.AdyenCancelDeleted
|
|
@@ -29248,6 +29285,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29248
29285
|
| io.flow.internal.v0.models.OrderValidationFailureDeleted
|
|
29249
29286
|
| io.flow.internal.v0.models.OrderValidationUpserted
|
|
29250
29287
|
| io.flow.internal.v0.models.OrderValidationDeleted
|
|
29288
|
+
| io.flow.internal.v0.models.LabelCreationJobUpserted
|
|
29289
|
+
| io.flow.internal.v0.models.LabelCreationJobDeleted
|
|
29251
29290
|
| io.flow.internal.v0.models.LabelTrackingSummaryUpserted
|
|
29252
29291
|
| io.flow.internal.v0.models.LabelTrackingSummaryDeleted
|
|
29253
29292
|
| io.flow.internal.v0.models.LogisticsCapabilitiesUpserted
|
|
@@ -29257,11 +29296,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29257
29296
|
| io.flow.internal.v0.models.OrderCombinedShipmentDeleted
|
|
29258
29297
|
| io.flow.internal.v0.models.OrderFulfillmentDeleted
|
|
29259
29298
|
| io.flow.internal.v0.models.OrderFulfillmentUpserted
|
|
29260
|
-
| io.flow.internal.v0.models.OrderPlaced
|
|
29261
|
-
| io.flow.internal.v0.models.ReadyToFulfill
|
|
29262
|
-
| io.flow.internal.v0.models.FulfillmentCancel
|
|
29263
|
-
| io.flow.internal.v0.models.OrderShipped
|
|
29264
|
-
| io.flow.internal.v0.models.ItemsShipped
|
|
29265
29299
|
| io.flow.internal.v0.models.OrganizationBusinessEntityDeleted
|
|
29266
29300
|
| io.flow.internal.v0.models.OrganizationBusinessEntityUpserted
|
|
29267
29301
|
| io.flow.internal.v0.models.OrganizationStatusChangeUpserted
|
|
@@ -29377,6 +29411,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29377
29411
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
29378
29412
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
29379
29413
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted
|
|
29414
|
+
| io.flow.internal.v0.models.ShopifyMerchantPlanUpserted
|
|
29415
|
+
| io.flow.internal.v0.models.ShopifyMerchantPlanDeleted
|
|
29380
29416
|
| io.flow.internal.v0.models.StripeAuthorizationDeleted
|
|
29381
29417
|
| io.flow.internal.v0.models.StripeAuthorizationUpserted
|
|
29382
29418
|
| io.flow.internal.v0.models.StripeReversalDeleted
|
|
@@ -29387,6 +29423,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29387
29423
|
| io.flow.internal.v0.models.StripeRefundUpserted
|
|
29388
29424
|
| io.flow.internal.v0.models.StripeDisputeUpserted
|
|
29389
29425
|
| io.flow.internal.v0.models.StripeDisputeDeleted
|
|
29426
|
+
| io.flow.internal.v0.models.StripeConnectReportRecordUpserted
|
|
29427
|
+
| io.flow.internal.v0.models.StripeConnectReportRecordDeleted
|
|
29390
29428
|
| io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
|
|
29391
29429
|
| io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
|
|
29392
29430
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
@@ -29609,8 +29647,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29609
29647
|
| io.flow.internal.v0.models.TrueupTransaction
|
|
29610
29648
|
| io.flow.internal.v0.models.CarrierChargeTransaction
|
|
29611
29649
|
| io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction
|
|
29612
|
-
| io.flow.internal.v0.models.GeRevenueShareTransaction
|
|
29613
|
-
| io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
29650
|
+
| io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
29614
29651
|
type TransactionSummary =
|
|
29615
29652
|
| io.flow.internal.v0.models.PaymentSummaryV2
|
|
29616
29653
|
| io.flow.internal.v0.models.FraudSummary;
|
|
@@ -29679,11 +29716,6 @@ export type AddressConfigurationSettingForm =
|
|
|
29679
29716
|
io.flow.internal.v0.models.AddressConfigurationSettingForm;
|
|
29680
29717
|
export type AddressConfigurationSettingProvinceCode =
|
|
29681
29718
|
io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
29682
|
-
export type AdjustedEstimates = io.flow.internal.v0.models.AdjustedEstimates;
|
|
29683
|
-
export type AdjustedEstimatesDeleted =
|
|
29684
|
-
io.flow.internal.v0.models.AdjustedEstimatesDeleted;
|
|
29685
|
-
export type AdjustedEstimatesUpserted =
|
|
29686
|
-
io.flow.internal.v0.models.AdjustedEstimatesUpserted;
|
|
29687
29719
|
export type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
29688
29720
|
export type AdjustmentAmountFixed =
|
|
29689
29721
|
io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
@@ -30760,7 +30792,6 @@ export type FulfillmentActionForm =
|
|
|
30760
30792
|
io.flow.internal.v0.models.FulfillmentActionForm;
|
|
30761
30793
|
export type FulfillmentBusiness =
|
|
30762
30794
|
io.flow.internal.v0.models.FulfillmentBusiness;
|
|
30763
|
-
export type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
30764
30795
|
export type FulfillmentCarrier = io.flow.internal.v0.models.FulfillmentCarrier;
|
|
30765
30796
|
export type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
30766
30797
|
export type FulfillmentFallbacks =
|
|
@@ -30781,8 +30812,6 @@ export type FulfillmentProofShippingNotificationReference =
|
|
|
30781
30812
|
io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference;
|
|
30782
30813
|
export type FulfillmentReference =
|
|
30783
30814
|
io.flow.internal.v0.models.FulfillmentReference;
|
|
30784
|
-
export type FulfillmentShipmentTracking =
|
|
30785
|
-
io.flow.internal.v0.models.FulfillmentShipmentTracking;
|
|
30786
30815
|
export type FulfillmentShopperBreakdown =
|
|
30787
30816
|
io.flow.internal.v0.models.FulfillmentShopperBreakdown;
|
|
30788
30817
|
export type FulfillmentSnapshot =
|
|
@@ -30906,6 +30935,8 @@ export type InternalHarmonizationStatistic =
|
|
|
30906
30935
|
io.flow.internal.v0.unions.InternalHarmonizationStatistic;
|
|
30907
30936
|
export type InternalItemForm = io.flow.internal.v0.models.InternalItemForm;
|
|
30908
30937
|
export type InternalOrder = io.flow.internal.v0.models.InternalOrder;
|
|
30938
|
+
export type InternalPaymentEntityType =
|
|
30939
|
+
io.flow.internal.v0.enums.InternalPaymentEntityType;
|
|
30909
30940
|
export type InternalPaymentRequest =
|
|
30910
30941
|
io.flow.internal.v0.models.InternalPaymentRequest;
|
|
30911
30942
|
export type InternalPaymentRequestVerification =
|
|
@@ -30981,7 +31012,6 @@ export type ItemSalesMarginVersion =
|
|
|
30981
31012
|
export type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
30982
31013
|
export type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
30983
31014
|
export type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
30984
|
-
export type ItemsShipped = io.flow.internal.v0.models.ItemsShipped;
|
|
30985
31015
|
export type JeanDemoItem = io.flow.internal.v0.models.JeanDemoItem;
|
|
30986
31016
|
export type Key = io.flow.internal.v0.models.Key;
|
|
30987
31017
|
export type KeyReference = io.flow.internal.v0.models.KeyReference;
|
|
@@ -31004,8 +31034,12 @@ export type LabelCancellationError =
|
|
|
31004
31034
|
export type LabelCancellationErrorCode =
|
|
31005
31035
|
io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
31006
31036
|
export type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJob;
|
|
31037
|
+
export type LabelCreationJobDeleted =
|
|
31038
|
+
io.flow.internal.v0.models.LabelCreationJobDeleted;
|
|
31007
31039
|
export type LabelCreationJobSummary =
|
|
31008
31040
|
io.flow.internal.v0.models.LabelCreationJobSummary;
|
|
31041
|
+
export type LabelCreationJobUpserted =
|
|
31042
|
+
io.flow.internal.v0.models.LabelCreationJobUpserted;
|
|
31009
31043
|
export type LabelCreationRequestForm =
|
|
31010
31044
|
io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
31011
31045
|
export type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
@@ -31177,6 +31211,11 @@ export type MerchantOfRecordEntitySettings =
|
|
|
31177
31211
|
io.flow.internal.v0.models.MerchantOfRecordEntitySettings;
|
|
31178
31212
|
export type MerchantOfRecordEntitySettingsForm =
|
|
31179
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;
|
|
31180
31219
|
export type MerchantSearchResult =
|
|
31181
31220
|
io.flow.internal.v0.models.MerchantSearchResult;
|
|
31182
31221
|
export type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
@@ -31292,7 +31331,6 @@ export type OrderNote = io.flow.internal.v0.models.OrderNote;
|
|
|
31292
31331
|
export type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
|
|
31293
31332
|
export type OrderPaymentAuthorization =
|
|
31294
31333
|
io.flow.internal.v0.models.OrderPaymentAuthorization;
|
|
31295
|
-
export type OrderPlaced = io.flow.internal.v0.models.OrderPlaced;
|
|
31296
31334
|
export type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
|
|
31297
31335
|
export type OrderRatesPublishedV3 =
|
|
31298
31336
|
io.flow.internal.v0.models.OrderRatesPublishedV3;
|
|
@@ -31307,7 +31345,6 @@ export type OrderRevenueTimelineDataPoint =
|
|
|
31307
31345
|
io.flow.internal.v0.models.OrderRevenueTimelineDataPoint;
|
|
31308
31346
|
export type OrderServiceChangeCsvForm =
|
|
31309
31347
|
io.flow.internal.v0.models.OrderServiceChangeCsvForm;
|
|
31310
|
-
export type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
31311
31348
|
export type OrderSubmissionForm =
|
|
31312
31349
|
io.flow.internal.v0.models.OrderSubmissionForm;
|
|
31313
31350
|
export type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
@@ -31800,7 +31837,6 @@ export type RatecardStandardSettings =
|
|
|
31800
31837
|
io.flow.internal.v0.models.RatecardStandardSettings;
|
|
31801
31838
|
export type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
31802
31839
|
export type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
31803
|
-
export type ReadyToFulfill = io.flow.internal.v0.models.ReadyToFulfill;
|
|
31804
31840
|
export type ReboundConfiguration =
|
|
31805
31841
|
io.flow.internal.v0.models.ReboundConfiguration;
|
|
31806
31842
|
export type ReboundConfigurationForm =
|
|
@@ -31824,6 +31860,9 @@ export type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
|
31824
31860
|
export type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
31825
31861
|
export type ReportBankAccountCleartext =
|
|
31826
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;
|
|
31827
31866
|
export type ReportFilter = io.flow.internal.v0.models.ReportFilter;
|
|
31828
31867
|
export type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
31829
31868
|
export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
@@ -31835,6 +31874,9 @@ export type ReportOrganizationReference =
|
|
|
31835
31874
|
export type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
31836
31875
|
export type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
31837
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;
|
|
31838
31880
|
export type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
31839
31881
|
export type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
31840
31882
|
export type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
@@ -32033,11 +32075,6 @@ export type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
|
32033
32075
|
export type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
32034
32076
|
export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
32035
32077
|
export type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
32036
|
-
export type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
32037
|
-
export type ShippingEstimateDeleted =
|
|
32038
|
-
io.flow.internal.v0.models.ShippingEstimateDeleted;
|
|
32039
|
-
export type ShippingEstimateUpserted =
|
|
32040
|
-
io.flow.internal.v0.models.ShippingEstimateUpserted;
|
|
32041
32078
|
export type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
32042
32079
|
export type ShippingMethodReference =
|
|
32043
32080
|
io.flow.internal.v0.models.ShippingMethodReference;
|
|
@@ -32165,6 +32202,10 @@ export type ShopifyMarketsWebhookRegistrationUpserted =
|
|
|
32165
32202
|
io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
32166
32203
|
export type ShopifyMerchantPlan =
|
|
32167
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;
|
|
32168
32209
|
export type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
|
|
32169
32210
|
export type ShopifyMonitoringCarrierService =
|
|
32170
32211
|
io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
@@ -32393,6 +32434,12 @@ export type StripeCaptureDeleted =
|
|
|
32393
32434
|
io.flow.internal.v0.models.StripeCaptureDeleted;
|
|
32394
32435
|
export type StripeCaptureUpserted =
|
|
32395
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;
|
|
32396
32443
|
export type StripeDisputeDeleted =
|
|
32397
32444
|
io.flow.internal.v0.models.StripeDisputeDeleted;
|
|
32398
32445
|
export type StripeDisputeUpserted =
|
|
@@ -32463,16 +32510,6 @@ export type TaxCalculationLineItem =
|
|
|
32463
32510
|
io.flow.internal.v0.models.TaxCalculationLineItem;
|
|
32464
32511
|
export type TaxCalculationLineItemForm =
|
|
32465
32512
|
io.flow.internal.v0.models.TaxCalculationLineItemForm;
|
|
32466
|
-
export type TaxDutyDeltaMetadataActual =
|
|
32467
|
-
io.flow.internal.v0.models.TaxDutyDeltaMetadataActual;
|
|
32468
|
-
export type TaxDutyDeltaMetadataActualProcessing =
|
|
32469
|
-
io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
32470
|
-
export type TaxDutyDeltaMetadataExpected =
|
|
32471
|
-
io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected;
|
|
32472
|
-
export type TaxDutyDeltaMetadataExpectedProcessing =
|
|
32473
|
-
io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
32474
|
-
export type TaxDutyDeltaTransaction =
|
|
32475
|
-
io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
32476
32513
|
export type TaxParty = io.flow.internal.v0.enums.TaxParty;
|
|
32477
32514
|
export type TaxRemittanceTransaction =
|
|
32478
32515
|
io.flow.internal.v0.models.TaxRemittanceTransaction;
|