@flowio/types 11.24.102 → 11.24.104
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 +296 -5
- package/dist/api.d.ts +21 -2
- package/package.json +2 -2
- package/src/api-internal.ts +387 -3
- package/src/api.ts +25 -1
package/src/api-internal.ts
CHANGED
|
@@ -4652,6 +4652,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
4652
4652
|
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
4653
4653
|
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
4654
4654
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
4655
|
+
readonly reference_id?: string;
|
|
4656
|
+
readonly hub_code?: string;
|
|
4655
4657
|
}
|
|
4656
4658
|
|
|
4657
4659
|
interface CrossdockShipment {
|
|
@@ -4674,6 +4676,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4674
4676
|
readonly service?: string;
|
|
4675
4677
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
4676
4678
|
readonly package_dimensions_source?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
4679
|
+
readonly reference_id?: string;
|
|
4677
4680
|
}
|
|
4678
4681
|
|
|
4679
4682
|
interface DetailedShippingNotificationForm {
|
|
@@ -4852,6 +4855,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4852
4855
|
readonly items: io.flow.common.v0.models.LineItemForm[];
|
|
4853
4856
|
readonly center_key?: string;
|
|
4854
4857
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
4858
|
+
readonly reference_id?: string;
|
|
4855
4859
|
}
|
|
4856
4860
|
|
|
4857
4861
|
interface SummaryShippingNotificationForm {
|
|
@@ -5347,6 +5351,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5347
5351
|
readonly supporting_info?: io.flow.external.paypal.v1.models.SupportingInfo;
|
|
5348
5352
|
readonly allowed_response_options?: io.flow.external.paypal.v1.models.AllowedResponseOptions;
|
|
5349
5353
|
readonly links?: io.flow.external.paypal.v1.models.Link[];
|
|
5354
|
+
readonly previous_status?: io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
5350
5355
|
}
|
|
5351
5356
|
|
|
5352
5357
|
interface DisputeExtension {
|
|
@@ -6395,6 +6400,15 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6395
6400
|
type Channel = 'web';
|
|
6396
6401
|
type Contract = 'RECURRING';
|
|
6397
6402
|
type DeviceChannel = 'app' | 'browser';
|
|
6403
|
+
type DisputeStatus =
|
|
6404
|
+
| 'Accepted'
|
|
6405
|
+
| 'Expired'
|
|
6406
|
+
| 'Lost'
|
|
6407
|
+
| 'Pending'
|
|
6408
|
+
| 'Responded'
|
|
6409
|
+
| 'Undefended'
|
|
6410
|
+
| 'Unresponded'
|
|
6411
|
+
| 'Won';
|
|
6398
6412
|
type EventCode =
|
|
6399
6413
|
| 'AUTHORISATION'
|
|
6400
6414
|
| 'CANCELLATION'
|
|
@@ -6652,6 +6666,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
6652
6666
|
readonly modificationMerchantReferences: string;
|
|
6653
6667
|
readonly chargebackSchemeCode: string;
|
|
6654
6668
|
readonly defensePeriodEndsAt?: string;
|
|
6669
|
+
readonly disputeStatus?: io.flow.adyen.v0.enums.DisputeStatus;
|
|
6670
|
+
readonly defendable?: string;
|
|
6655
6671
|
}
|
|
6656
6672
|
|
|
6657
6673
|
interface Error {
|
|
@@ -8790,6 +8806,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
8790
8806
|
readonly location_id?: number;
|
|
8791
8807
|
readonly subtotal?: number;
|
|
8792
8808
|
readonly total_tax?: number;
|
|
8809
|
+
readonly total_tax_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
8793
8810
|
}
|
|
8794
8811
|
|
|
8795
8812
|
interface ShopifyOrderShippingLine {
|
|
@@ -9068,6 +9085,9 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
9068
9085
|
|
|
9069
9086
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
9070
9087
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
9088
|
+
type ChannelOrderAcceptanceFailureReasonCode =
|
|
9089
|
+
| 'channel_order_mor_invalid'
|
|
9090
|
+
| 'channel_order_does_not_exist';
|
|
9071
9091
|
type ChannelOrderAcceptanceNextActionFrom =
|
|
9072
9092
|
| 'cx_team'
|
|
9073
9093
|
| 'core_team'
|
|
@@ -9152,6 +9172,15 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9152
9172
|
readonly external_order: any /*object*/;
|
|
9153
9173
|
}
|
|
9154
9174
|
|
|
9175
|
+
interface ChannelOrderAcceptanceFailure {
|
|
9176
|
+
readonly id: string;
|
|
9177
|
+
readonly organization_id: string;
|
|
9178
|
+
readonly channel_id: string;
|
|
9179
|
+
readonly payment_request_id: string;
|
|
9180
|
+
readonly code: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
9181
|
+
readonly reason: string;
|
|
9182
|
+
}
|
|
9183
|
+
|
|
9155
9184
|
interface ChannelOrderAcceptanceForm {
|
|
9156
9185
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
9157
9186
|
}
|
|
@@ -10411,6 +10440,12 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10411
10440
|
readonly display?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
10412
10441
|
}
|
|
10413
10442
|
|
|
10443
|
+
interface DestinationContactDetail {
|
|
10444
|
+
readonly title: string;
|
|
10445
|
+
readonly country: string;
|
|
10446
|
+
readonly import_identifier: string;
|
|
10447
|
+
}
|
|
10448
|
+
|
|
10414
10449
|
interface Discount {
|
|
10415
10450
|
readonly discriminator: 'discount';
|
|
10416
10451
|
readonly id: string;
|
|
@@ -10773,6 +10808,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10773
10808
|
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
10774
10809
|
readonly geo?: io.flow.experience.v0.models.OrderGeo;
|
|
10775
10810
|
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
10811
|
+
readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
10776
10812
|
}
|
|
10777
10813
|
|
|
10778
10814
|
interface OrderAddress {
|
|
@@ -12579,6 +12615,10 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
12579
12615
|
readonly in_transit: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12580
12616
|
readonly delivered?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12581
12617
|
readonly rejected?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12618
|
+
readonly returned?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12619
|
+
readonly crossed_border?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12620
|
+
readonly destroyed?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12621
|
+
readonly return_reversal?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12582
12622
|
}
|
|
12583
12623
|
|
|
12584
12624
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -13022,6 +13062,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
13022
13062
|
readonly local?: io.flow.catalog.v0.models.Local;
|
|
13023
13063
|
readonly created_at?: string;
|
|
13024
13064
|
readonly updated_at?: string;
|
|
13065
|
+
readonly deleted_at?: string;
|
|
13025
13066
|
}
|
|
13026
13067
|
|
|
13027
13068
|
interface ItemAttributesPatchForm {
|
|
@@ -13039,6 +13080,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
13039
13080
|
readonly attributes?: Record<string, string>;
|
|
13040
13081
|
readonly dimensions?: io.flow.common.v0.models.Dimensions;
|
|
13041
13082
|
readonly images?: io.flow.catalog.v0.models.ImageForm[];
|
|
13083
|
+
readonly deleted_at?: string;
|
|
13042
13084
|
}
|
|
13043
13085
|
|
|
13044
13086
|
interface ItemFormOverlay {
|
|
@@ -13052,6 +13094,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
13052
13094
|
readonly attributes?: Record<string, string>;
|
|
13053
13095
|
readonly dimensions?: io.flow.common.v0.models.Dimensions;
|
|
13054
13096
|
readonly images?: io.flow.catalog.v0.models.ImageForm[];
|
|
13097
|
+
readonly deleted_at?: string;
|
|
13055
13098
|
}
|
|
13056
13099
|
|
|
13057
13100
|
interface ItemFormOverlayForm {
|
|
@@ -13064,6 +13107,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
13064
13107
|
readonly attributes?: Record<string, string>;
|
|
13065
13108
|
readonly dimensions?: io.flow.common.v0.models.Dimensions;
|
|
13066
13109
|
readonly images?: io.flow.catalog.v0.models.ImageForm[];
|
|
13110
|
+
readonly deleted_at?: string;
|
|
13067
13111
|
}
|
|
13068
13112
|
|
|
13069
13113
|
interface ItemPriceUpdateForm {
|
|
@@ -13622,7 +13666,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13622
13666
|
| 'waiting_for_in_transit'
|
|
13623
13667
|
| 'waiting_for_next_payout_date'
|
|
13624
13668
|
| 'waiting_for_tracking_info'
|
|
13625
|
-
| 'waiting_for_positive_account_balance'
|
|
13669
|
+
| 'waiting_for_positive_account_balance'
|
|
13670
|
+
| 'unfulfilled_amount_greater_than_negative_balance'
|
|
13671
|
+
| 'account_payment_hold';
|
|
13626
13672
|
type StatementAttachmentType = 'csv';
|
|
13627
13673
|
type TransactionSource =
|
|
13628
13674
|
| 'capture'
|
|
@@ -16347,6 +16393,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16347
16393
|
| 'reversal'
|
|
16348
16394
|
| 'channel_initiated';
|
|
16349
16395
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
16396
|
+
type ChannelOrderAcceptanceFailureReasonCode =
|
|
16397
|
+
| 'channel_order_mor_invalid'
|
|
16398
|
+
| 'channel_order_does_not_exist';
|
|
16350
16399
|
type ChannelOrderAcceptanceNextActionFrom =
|
|
16351
16400
|
| 'cx_team'
|
|
16352
16401
|
| 'core_team'
|
|
@@ -16459,6 +16508,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16459
16508
|
type DiscountRequestOrderEntitlementKey = 'subtotal';
|
|
16460
16509
|
type DisputeBillable = 'flow' | 'organization';
|
|
16461
16510
|
type DisputeCategory = 'friendly_fraud' | 'true_fraud' | 'processing_error';
|
|
16511
|
+
type DisputeDefenseOutcome = 'defended' | 'undefended' | 'undefendable';
|
|
16462
16512
|
type DisputeEvidence = 'proof_of_delivery' | 'proof_of_fulfillment' | 'other';
|
|
16463
16513
|
type DisputeImportStatus = 'new' | 'processing' | 'completed' | 'failed';
|
|
16464
16514
|
type DisputeImportType = 'adyen_dispute' | 'paypal_dispute';
|
|
@@ -16501,6 +16551,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16501
16551
|
type EmptyAttribute = 'irrelevant';
|
|
16502
16552
|
type ErpFileType = 'vendor';
|
|
16503
16553
|
type EventType =
|
|
16554
|
+
| 'adjusted_estimates_upserted'
|
|
16555
|
+
| 'adjusted_estimates_deleted'
|
|
16504
16556
|
| 'adyen_authorization_deleted'
|
|
16505
16557
|
| 'adyen_authorization_upserted'
|
|
16506
16558
|
| 'adyen_cancel_deleted'
|
|
@@ -16509,6 +16561,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16509
16561
|
| 'adyen_capture_upserted'
|
|
16510
16562
|
| 'adyen_refund_deleted'
|
|
16511
16563
|
| 'adyen_refund_upserted'
|
|
16564
|
+
| 'adyen_dispute_upserted'
|
|
16565
|
+
| 'adyen_dispute_deleted'
|
|
16512
16566
|
| 'index_assignment_upserted'
|
|
16513
16567
|
| 'index_assignment_deleted'
|
|
16514
16568
|
| 'fulfillment_upserted'
|
|
@@ -16582,6 +16636,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16582
16636
|
| 'catalog_settings_deleted'
|
|
16583
16637
|
| 'channel_order_acceptance_upserted'
|
|
16584
16638
|
| 'channel_order_acceptance_deleted'
|
|
16639
|
+
| 'channel_order_acceptance_failed'
|
|
16585
16640
|
| 'checkout_configuration_upserted'
|
|
16586
16641
|
| 'checkout_configuration_deleted'
|
|
16587
16642
|
| 'commercial_invoice_internal_upserted'
|
|
@@ -16674,6 +16729,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16674
16729
|
| 'ftp_file_to_process_uploaded'
|
|
16675
16730
|
| 'center_defaults_upserted'
|
|
16676
16731
|
| 'center_defaults_deleted'
|
|
16732
|
+
| 'fulfillment_fallbacks_upserted'
|
|
16733
|
+
| 'fulfillment_fallbacks_deleted'
|
|
16677
16734
|
| 'pregenerated_request_event'
|
|
16678
16735
|
| 'quote_upserted'
|
|
16679
16736
|
| 'quote_deleted'
|
|
@@ -16871,6 +16928,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16871
16928
|
| 'tracking_assurance_analysis_deleted'
|
|
16872
16929
|
| 'tracking_assurance_job_upserted'
|
|
16873
16930
|
| 'tracking_assurance_job_deleted'
|
|
16931
|
+
| 'tracking_label_dimensions_upserted'
|
|
16932
|
+
| 'tracking_label_dimensions_deleted'
|
|
16874
16933
|
| 'tracking_request_upserted'
|
|
16875
16934
|
| 'tracking_response_upserted'
|
|
16876
16935
|
| 'user_upserted_v2'
|
|
@@ -16953,6 +17012,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16953
17012
|
| 'globale_address_repair'
|
|
16954
17013
|
| 'merchant_operations'
|
|
16955
17014
|
| 'globale_system';
|
|
17015
|
+
type LabelRequestResultOrganizationType =
|
|
17016
|
+
| 'all'
|
|
17017
|
+
| 'legacy_production'
|
|
17018
|
+
| 'managed_markets_production'
|
|
17019
|
+
| 'sandbox';
|
|
17020
|
+
type LabelRequestResultState = 'success' | 'failure';
|
|
16956
17021
|
type LabelTransactionType =
|
|
16957
17022
|
| 'adjustment'
|
|
16958
17023
|
| 'reversal'
|
|
@@ -17235,7 +17300,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17235
17300
|
| 'scheduled_payment'
|
|
17236
17301
|
| 'account_quarterly_balances'
|
|
17237
17302
|
| 'invariants'
|
|
17238
|
-
| 'payments'
|
|
17303
|
+
| 'payments'
|
|
17304
|
+
| 'reconcile_not_recorded'
|
|
17305
|
+
| 'products_record';
|
|
17239
17306
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
17240
17307
|
type ReportingScheme =
|
|
17241
17308
|
| 'immediate_reporting_to_tax_authority'
|
|
@@ -17370,6 +17437,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17370
17437
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
17371
17438
|
type ThiagoItemType = 'digital' | 'physical';
|
|
17372
17439
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
17440
|
+
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
17373
17441
|
type TrackingProcessingFailureClassification =
|
|
17374
17442
|
| 'tracking_expired'
|
|
17375
17443
|
| 'expired_tracking_number_new_event'
|
|
@@ -17653,6 +17721,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17653
17721
|
readonly province_code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
17654
17722
|
}
|
|
17655
17723
|
|
|
17724
|
+
interface AdjustedEstimates {
|
|
17725
|
+
readonly id: string;
|
|
17726
|
+
readonly organization_id: string;
|
|
17727
|
+
readonly label_id: string;
|
|
17728
|
+
readonly estimates: io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
17729
|
+
}
|
|
17730
|
+
|
|
17731
|
+
interface AdjustedEstimatesDeleted {
|
|
17732
|
+
readonly discriminator: 'adjusted_estimates_deleted';
|
|
17733
|
+
readonly event_id: string;
|
|
17734
|
+
readonly timestamp: string;
|
|
17735
|
+
readonly organization: string;
|
|
17736
|
+
readonly id: string;
|
|
17737
|
+
}
|
|
17738
|
+
|
|
17739
|
+
interface AdjustedEstimatesUpserted {
|
|
17740
|
+
readonly discriminator: 'adjusted_estimates_upserted';
|
|
17741
|
+
readonly event_id: string;
|
|
17742
|
+
readonly timestamp: string;
|
|
17743
|
+
readonly organization: string;
|
|
17744
|
+
readonly adjusted_estimates: io.flow.internal.v0.models.AdjustedEstimates;
|
|
17745
|
+
}
|
|
17746
|
+
|
|
17656
17747
|
interface AdjustmentAmountFixed {
|
|
17657
17748
|
readonly discriminator: 'fixed';
|
|
17658
17749
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -17784,6 +17875,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17784
17875
|
readonly capture: io.flow.internal.v0.models.AdyenInternalCapture;
|
|
17785
17876
|
}
|
|
17786
17877
|
|
|
17878
|
+
interface AdyenDisputeDeleted {
|
|
17879
|
+
readonly discriminator: 'adyen_dispute_deleted';
|
|
17880
|
+
readonly event_id: string;
|
|
17881
|
+
readonly timestamp: string;
|
|
17882
|
+
readonly id: string;
|
|
17883
|
+
}
|
|
17884
|
+
|
|
17885
|
+
interface AdyenDisputeUpserted {
|
|
17886
|
+
readonly discriminator: 'adyen_dispute_upserted';
|
|
17887
|
+
readonly event_id: string;
|
|
17888
|
+
readonly timestamp: string;
|
|
17889
|
+
readonly dispute: io.flow.internal.v0.models.AdyenInternalDispute;
|
|
17890
|
+
}
|
|
17891
|
+
|
|
17787
17892
|
interface AdyenInternalAuthorization {
|
|
17788
17893
|
readonly id: string;
|
|
17789
17894
|
readonly flow_authorization_id: string;
|
|
@@ -17825,6 +17930,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17825
17930
|
readonly response: string;
|
|
17826
17931
|
}
|
|
17827
17932
|
|
|
17933
|
+
interface AdyenInternalDispute {
|
|
17934
|
+
readonly id: string;
|
|
17935
|
+
readonly amount: number;
|
|
17936
|
+
readonly currency: string;
|
|
17937
|
+
readonly psp_reference: string;
|
|
17938
|
+
readonly original_reference?: string;
|
|
17939
|
+
readonly event_code: string;
|
|
17940
|
+
readonly event_date: string;
|
|
17941
|
+
readonly chargeback_reason_code?: string;
|
|
17942
|
+
readonly modification_merchant_references?: string;
|
|
17943
|
+
readonly chargeback_scheme_code?: string;
|
|
17944
|
+
readonly defense_period_ends_at?: string;
|
|
17945
|
+
readonly dispute_status?: string;
|
|
17946
|
+
readonly defendable?: string;
|
|
17947
|
+
readonly merchant_account_code: string;
|
|
17948
|
+
readonly operations?: string[];
|
|
17949
|
+
readonly merchant_reference: string;
|
|
17950
|
+
readonly payment_method?: string;
|
|
17951
|
+
readonly reason?: string;
|
|
17952
|
+
readonly success: string;
|
|
17953
|
+
readonly livemode: boolean;
|
|
17954
|
+
readonly updated_by_user_id: string;
|
|
17955
|
+
readonly created_at: string;
|
|
17956
|
+
readonly updated_at: string;
|
|
17957
|
+
}
|
|
17958
|
+
|
|
17828
17959
|
interface AdyenInternalRefund {
|
|
17829
17960
|
readonly id: string;
|
|
17830
17961
|
readonly flow_refund_id: string;
|
|
@@ -18106,6 +18237,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18106
18237
|
readonly value: string;
|
|
18107
18238
|
}
|
|
18108
18239
|
|
|
18240
|
+
interface AttemptStatistics {
|
|
18241
|
+
readonly merchant_count: number;
|
|
18242
|
+
readonly amount: number;
|
|
18243
|
+
readonly failed_merchant_count: number;
|
|
18244
|
+
readonly failed_amount: number;
|
|
18245
|
+
readonly success_ratio: number;
|
|
18246
|
+
}
|
|
18247
|
+
|
|
18109
18248
|
interface AttributeLabel {
|
|
18110
18249
|
readonly value: string;
|
|
18111
18250
|
readonly unverified: boolean;
|
|
@@ -19218,6 +19357,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19218
19357
|
readonly external_order: any /*object*/;
|
|
19219
19358
|
}
|
|
19220
19359
|
|
|
19360
|
+
interface ChannelOrderAcceptanceFailed {
|
|
19361
|
+
readonly discriminator: 'channel_order_acceptance_failed';
|
|
19362
|
+
readonly event_id: string;
|
|
19363
|
+
readonly timestamp: string;
|
|
19364
|
+
readonly organization: string;
|
|
19365
|
+
readonly channel_id: string;
|
|
19366
|
+
readonly channel_order_acceptance_failure: io.flow.internal.v0.models.ChannelOrderAcceptanceFailure;
|
|
19367
|
+
}
|
|
19368
|
+
|
|
19369
|
+
interface ChannelOrderAcceptanceFailure {
|
|
19370
|
+
readonly id: string;
|
|
19371
|
+
readonly organization_id: string;
|
|
19372
|
+
readonly channel_id: string;
|
|
19373
|
+
readonly payment_request_id: string;
|
|
19374
|
+
readonly code: io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
19375
|
+
readonly reason: string;
|
|
19376
|
+
}
|
|
19377
|
+
|
|
19221
19378
|
interface ChannelOrderAcceptanceForm {
|
|
19222
19379
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
19223
19380
|
}
|
|
@@ -19718,6 +19875,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19718
19875
|
readonly customs_description_suggestions: io.flow.internal.v0.models.CustomsDescriptionSuggestion[];
|
|
19719
19876
|
}
|
|
19720
19877
|
|
|
19878
|
+
interface ClassificationMerchant {
|
|
19879
|
+
readonly MerchantId: string;
|
|
19880
|
+
readonly PlatformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
19881
|
+
readonly Name: string;
|
|
19882
|
+
readonly DateLastUpdated?: string;
|
|
19883
|
+
readonly Order: number;
|
|
19884
|
+
}
|
|
19885
|
+
|
|
19886
|
+
interface ClassificationMerchantEnvelope {
|
|
19887
|
+
readonly messageType: string[];
|
|
19888
|
+
readonly message: io.flow.internal.v0.models.ClassificationMerchant;
|
|
19889
|
+
}
|
|
19890
|
+
|
|
19721
19891
|
interface ClassificationProduct {
|
|
19722
19892
|
readonly organization_id: string;
|
|
19723
19893
|
readonly product_id?: string;
|
|
@@ -19897,6 +20067,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19897
20067
|
readonly rex_number?: string;
|
|
19898
20068
|
readonly wee_number?: string;
|
|
19899
20069
|
readonly business_gst_numbers: string[];
|
|
20070
|
+
readonly destination_gst_numbers?: string[];
|
|
19900
20071
|
readonly vat_name: string;
|
|
19901
20072
|
readonly shipping_price: string;
|
|
19902
20073
|
readonly shipment_recipient?: string;
|
|
@@ -20533,7 +20704,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20533
20704
|
interface Dispute {
|
|
20534
20705
|
readonly id: string;
|
|
20535
20706
|
readonly organization_id: string;
|
|
20536
|
-
readonly order
|
|
20707
|
+
readonly order?: io.flow.internal.v0.models.DisputeOrderReference;
|
|
20537
20708
|
readonly authorization: io.flow.internal.v0.models.DisputeAuthorizationReference;
|
|
20538
20709
|
readonly processor: io.flow.internal.v0.enums.DisputeProcessor;
|
|
20539
20710
|
readonly key: string;
|
|
@@ -20546,10 +20717,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20546
20717
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20547
20718
|
readonly liability: io.flow.internal.v0.enums.DisputeLiability;
|
|
20548
20719
|
readonly billable: io.flow.internal.v0.enums.DisputeBillable;
|
|
20720
|
+
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
20549
20721
|
readonly details: io.flow.internal.v0.unions.DisputeDetails;
|
|
20550
20722
|
readonly issued_at: string;
|
|
20551
20723
|
readonly expires_at?: string;
|
|
20552
20724
|
readonly created_at: string;
|
|
20725
|
+
readonly updated_at?: string;
|
|
20553
20726
|
}
|
|
20554
20727
|
|
|
20555
20728
|
interface DisputeAuthorizationReference {
|
|
@@ -20565,6 +20738,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20565
20738
|
readonly id: string;
|
|
20566
20739
|
}
|
|
20567
20740
|
|
|
20741
|
+
interface DisputeDetail {
|
|
20742
|
+
readonly authorization: io.flow.internal.v0.models.SearchAuthorization;
|
|
20743
|
+
readonly dispute: io.flow.internal.v0.models.Dispute;
|
|
20744
|
+
}
|
|
20745
|
+
|
|
20568
20746
|
interface DisputeDetailsAdyen {
|
|
20569
20747
|
readonly discriminator: 'adyen';
|
|
20570
20748
|
readonly psp_reference: string;
|
|
@@ -20616,6 +20794,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20616
20794
|
readonly id: string;
|
|
20617
20795
|
}
|
|
20618
20796
|
|
|
20797
|
+
interface DisputeOverrideUpdateForm {
|
|
20798
|
+
readonly billable?: io.flow.internal.v0.enums.DisputeBillable;
|
|
20799
|
+
readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
20800
|
+
readonly category?: io.flow.internal.v0.enums.DisputeCategory;
|
|
20801
|
+
readonly status?: io.flow.internal.v0.enums.DisputeStatus;
|
|
20802
|
+
}
|
|
20803
|
+
|
|
20619
20804
|
interface DisputeStatusForm {
|
|
20620
20805
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20621
20806
|
}
|
|
@@ -21200,6 +21385,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21200
21385
|
readonly description?: string;
|
|
21201
21386
|
readonly order_number?: string;
|
|
21202
21387
|
readonly raw_carrier_event_code?: string;
|
|
21388
|
+
readonly aggregator_status_code?: string;
|
|
21203
21389
|
readonly created_at?: string;
|
|
21204
21390
|
}
|
|
21205
21391
|
|
|
@@ -21954,6 +22140,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21954
22140
|
readonly id: string;
|
|
21955
22141
|
}
|
|
21956
22142
|
|
|
22143
|
+
interface FulfillmentFallbacks {
|
|
22144
|
+
readonly id: string;
|
|
22145
|
+
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
22146
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
22147
|
+
readonly location?: io.flow.common.v0.models.Address;
|
|
22148
|
+
}
|
|
22149
|
+
|
|
22150
|
+
interface FulfillmentFallbacksDeleted {
|
|
22151
|
+
readonly discriminator: 'fulfillment_fallbacks_deleted';
|
|
22152
|
+
readonly event_id: string;
|
|
22153
|
+
readonly timestamp: string;
|
|
22154
|
+
readonly organization: string;
|
|
22155
|
+
readonly id: string;
|
|
22156
|
+
}
|
|
22157
|
+
|
|
22158
|
+
interface FulfillmentFallbacksUpserted {
|
|
22159
|
+
readonly discriminator: 'fulfillment_fallbacks_upserted';
|
|
22160
|
+
readonly event_id: string;
|
|
22161
|
+
readonly timestamp: string;
|
|
22162
|
+
readonly organization: string;
|
|
22163
|
+
readonly fulfillment_fallbacks: io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
22164
|
+
}
|
|
22165
|
+
|
|
21957
22166
|
interface FulfillmentInternalExperienceReference {
|
|
21958
22167
|
readonly id: string;
|
|
21959
22168
|
readonly key: string;
|
|
@@ -23100,6 +23309,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23100
23309
|
readonly label_request_error: io.flow.internal.v0.models.LabelRequestError;
|
|
23101
23310
|
}
|
|
23102
23311
|
|
|
23312
|
+
interface LabelRequestResult {
|
|
23313
|
+
readonly id: string;
|
|
23314
|
+
readonly created_at: string;
|
|
23315
|
+
readonly state: io.flow.internal.v0.enums.LabelRequestResultState;
|
|
23316
|
+
readonly organization_id: string;
|
|
23317
|
+
readonly order_number: string;
|
|
23318
|
+
readonly label_request_method: io.flow.label.v0.enums.LabelRequestMethod;
|
|
23319
|
+
readonly carrier_id?: string;
|
|
23320
|
+
readonly carrier_tracking_number?: string;
|
|
23321
|
+
readonly url?: string;
|
|
23322
|
+
readonly error?: string;
|
|
23323
|
+
readonly suggested_responsibility?: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
23324
|
+
readonly origin_country?: string;
|
|
23325
|
+
readonly destination_country?: string;
|
|
23326
|
+
readonly reference_id?: string;
|
|
23327
|
+
readonly logistics_integration_provider?: string;
|
|
23328
|
+
}
|
|
23329
|
+
|
|
23103
23330
|
interface LabelSummary {
|
|
23104
23331
|
readonly id: string;
|
|
23105
23332
|
readonly commercial_invoice?: string;
|
|
@@ -24036,6 +24263,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24036
24263
|
readonly merchant_guid_assignment: io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
24037
24264
|
}
|
|
24038
24265
|
|
|
24266
|
+
interface MerchantHubOverride {
|
|
24267
|
+
readonly id: string;
|
|
24268
|
+
readonly organization_id: string;
|
|
24269
|
+
readonly code: string;
|
|
24270
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
24271
|
+
readonly location: io.flow.common.v0.models.Address;
|
|
24272
|
+
}
|
|
24273
|
+
|
|
24274
|
+
interface MerchantHubOverrideForm {
|
|
24275
|
+
readonly code: string;
|
|
24276
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
24277
|
+
readonly location: io.flow.common.v0.models.Address;
|
|
24278
|
+
}
|
|
24279
|
+
|
|
24039
24280
|
interface MerchantOfRecordEntitySettings {
|
|
24040
24281
|
readonly id: string;
|
|
24041
24282
|
readonly merchant_of_record_entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
@@ -24183,6 +24424,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24183
24424
|
readonly percent: number;
|
|
24184
24425
|
}
|
|
24185
24426
|
|
|
24427
|
+
interface NegativeDebitMetrics {
|
|
24428
|
+
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24429
|
+
readonly second_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24430
|
+
readonly third_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24431
|
+
}
|
|
24432
|
+
|
|
24186
24433
|
interface NextBillingStatement {
|
|
24187
24434
|
readonly date: string;
|
|
24188
24435
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -24459,6 +24706,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24459
24706
|
readonly created_at: string;
|
|
24460
24707
|
readonly updated_at: string;
|
|
24461
24708
|
readonly shopify_order_id?: string;
|
|
24709
|
+
readonly disputes: io.flow.internal.v0.models.DisputeDetail[];
|
|
24462
24710
|
}
|
|
24463
24711
|
|
|
24464
24712
|
interface OrderFulfillmentDeleted {
|
|
@@ -25325,6 +25573,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25325
25573
|
readonly partner_organization_settings: io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
25326
25574
|
}
|
|
25327
25575
|
|
|
25576
|
+
interface PartnerRequest {
|
|
25577
|
+
readonly id: string;
|
|
25578
|
+
readonly partner_id: string;
|
|
25579
|
+
readonly organization_id: string;
|
|
25580
|
+
readonly request_body?: any /*json*/;
|
|
25581
|
+
}
|
|
25582
|
+
|
|
25328
25583
|
interface Passphrase {
|
|
25329
25584
|
readonly id: string;
|
|
25330
25585
|
readonly tribe: io.flow.internal.v0.models.Tribe;
|
|
@@ -25891,6 +26146,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25891
26146
|
readonly next_product?: io.flow.internal.v0.models.ClassificationProductId;
|
|
25892
26147
|
}
|
|
25893
26148
|
|
|
26149
|
+
interface ProductCurrencies {
|
|
26150
|
+
readonly transaction: string;
|
|
26151
|
+
readonly destination: string;
|
|
26152
|
+
}
|
|
26153
|
+
|
|
25894
26154
|
interface ProductDetailSettingsForm {
|
|
25895
26155
|
readonly keys: string[];
|
|
25896
26156
|
}
|
|
@@ -25918,6 +26178,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25918
26178
|
readonly column_settings: io.flow.internal.v0.models.HarmonizationColumnSetting[];
|
|
25919
26179
|
}
|
|
25920
26180
|
|
|
26181
|
+
interface ProductRecord {
|
|
26182
|
+
readonly organization_id: string;
|
|
26183
|
+
readonly order_number: string;
|
|
26184
|
+
readonly fulfillment_id: string;
|
|
26185
|
+
readonly currencies: io.flow.internal.v0.models.ProductCurrencies;
|
|
26186
|
+
readonly products: io.flow.internal.v0.models.ProductTransaction[];
|
|
26187
|
+
}
|
|
26188
|
+
|
|
25921
26189
|
interface ProductRestrictionResultValidationError {
|
|
25922
26190
|
readonly message: string;
|
|
25923
26191
|
readonly reason: string;
|
|
@@ -25963,6 +26231,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25963
26231
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
25964
26232
|
}
|
|
25965
26233
|
|
|
26234
|
+
interface ProductTransaction {
|
|
26235
|
+
readonly transaction_amount: number;
|
|
26236
|
+
readonly destination_amount: number;
|
|
26237
|
+
readonly quantity: number;
|
|
26238
|
+
}
|
|
26239
|
+
|
|
25966
26240
|
interface Profit {
|
|
25967
26241
|
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
25968
26242
|
readonly principal: io.flow.internal.v0.models.Principal;
|
|
@@ -26037,6 +26311,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26037
26311
|
readonly created_at: string;
|
|
26038
26312
|
}
|
|
26039
26313
|
|
|
26314
|
+
interface PublicHub {
|
|
26315
|
+
readonly id: string;
|
|
26316
|
+
readonly code: string;
|
|
26317
|
+
readonly third_party_logistics_reference: string;
|
|
26318
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
26319
|
+
readonly location: io.flow.common.v0.models.Address;
|
|
26320
|
+
}
|
|
26321
|
+
|
|
26322
|
+
interface PublicHubForm {
|
|
26323
|
+
readonly code: string;
|
|
26324
|
+
readonly third_party_logistics_reference: string;
|
|
26325
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
26326
|
+
readonly location: io.flow.common.v0.models.Address;
|
|
26327
|
+
}
|
|
26328
|
+
|
|
26040
26329
|
interface Quote {
|
|
26041
26330
|
readonly id: string;
|
|
26042
26331
|
readonly base: string;
|
|
@@ -26595,6 +26884,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26595
26884
|
interface ReportingConversionRates {
|
|
26596
26885
|
readonly merchant: number;
|
|
26597
26886
|
readonly entity: number;
|
|
26887
|
+
readonly destination_country: number;
|
|
26598
26888
|
readonly usd: number;
|
|
26599
26889
|
readonly eur: number;
|
|
26600
26890
|
}
|
|
@@ -26608,6 +26898,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26608
26898
|
readonly transaction: string;
|
|
26609
26899
|
readonly merchant: string;
|
|
26610
26900
|
readonly entity: string;
|
|
26901
|
+
readonly destination_country?: string;
|
|
26611
26902
|
}
|
|
26612
26903
|
|
|
26613
26904
|
interface ReportingDebug {
|
|
@@ -26729,6 +27020,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26729
27020
|
readonly transaction: number;
|
|
26730
27021
|
readonly merchant: number;
|
|
26731
27022
|
readonly entity: number;
|
|
27023
|
+
readonly destination_country: number;
|
|
26732
27024
|
readonly usd: number;
|
|
26733
27025
|
readonly eur: number;
|
|
26734
27026
|
}
|
|
@@ -28952,6 +29244,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28952
29244
|
readonly tracking_label: io.flow.internal.v0.models.ExportTrackingLabel;
|
|
28953
29245
|
}
|
|
28954
29246
|
|
|
29247
|
+
interface TrackingLabelDimensions {
|
|
29248
|
+
readonly id: string;
|
|
29249
|
+
readonly organization_id: string;
|
|
29250
|
+
readonly tracking_label_id: string;
|
|
29251
|
+
readonly source: io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
|
|
29252
|
+
readonly created_at: string;
|
|
29253
|
+
readonly dimensions: io.flow.common.v0.models.Dimensions;
|
|
29254
|
+
}
|
|
29255
|
+
|
|
29256
|
+
interface TrackingLabelDimensionsDeleted {
|
|
29257
|
+
readonly discriminator: 'tracking_label_dimensions_deleted';
|
|
29258
|
+
readonly event_id: string;
|
|
29259
|
+
readonly timestamp: string;
|
|
29260
|
+
readonly organization: string;
|
|
29261
|
+
readonly id: string;
|
|
29262
|
+
}
|
|
29263
|
+
|
|
29264
|
+
interface TrackingLabelDimensionsUpserted {
|
|
29265
|
+
readonly discriminator: 'tracking_label_dimensions_upserted';
|
|
29266
|
+
readonly event_id: string;
|
|
29267
|
+
readonly timestamp: string;
|
|
29268
|
+
readonly organization: string;
|
|
29269
|
+
readonly tracking_label_dimensions: io.flow.internal.v0.models.TrackingLabelDimensions;
|
|
29270
|
+
}
|
|
29271
|
+
|
|
28955
29272
|
interface TrackingLabelEventDeletedV2 {
|
|
28956
29273
|
readonly discriminator: 'tracking_label_event_deleted_v2';
|
|
28957
29274
|
readonly event_id: string;
|
|
@@ -29426,6 +29743,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29426
29743
|
| io.flow.internal.v0.models.DutyCompoundExpression
|
|
29427
29744
|
| io.flow.internal.v0.models.DutySimpleExpression;
|
|
29428
29745
|
type Event =
|
|
29746
|
+
| io.flow.internal.v0.models.AdjustedEstimatesUpserted
|
|
29747
|
+
| io.flow.internal.v0.models.AdjustedEstimatesDeleted
|
|
29429
29748
|
| io.flow.internal.v0.models.AdyenAuthorizationDeleted
|
|
29430
29749
|
| io.flow.internal.v0.models.AdyenAuthorizationUpserted
|
|
29431
29750
|
| io.flow.internal.v0.models.AdyenCancelDeleted
|
|
@@ -29434,6 +29753,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29434
29753
|
| io.flow.internal.v0.models.AdyenCaptureUpserted
|
|
29435
29754
|
| io.flow.internal.v0.models.AdyenRefundDeleted
|
|
29436
29755
|
| io.flow.internal.v0.models.AdyenRefundUpserted
|
|
29756
|
+
| io.flow.internal.v0.models.AdyenDisputeUpserted
|
|
29757
|
+
| io.flow.internal.v0.models.AdyenDisputeDeleted
|
|
29437
29758
|
| io.flow.internal.v0.models.IndexAssignmentUpserted
|
|
29438
29759
|
| io.flow.internal.v0.models.IndexAssignmentDeleted
|
|
29439
29760
|
| io.flow.internal.v0.models.FulfillmentUpserted
|
|
@@ -29507,6 +29828,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29507
29828
|
| io.flow.internal.v0.models.CatalogSettingsDeleted
|
|
29508
29829
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted
|
|
29509
29830
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted
|
|
29831
|
+
| io.flow.internal.v0.models.ChannelOrderAcceptanceFailed
|
|
29510
29832
|
| io.flow.internal.v0.models.CheckoutConfigurationUpserted
|
|
29511
29833
|
| io.flow.internal.v0.models.CheckoutConfigurationDeleted
|
|
29512
29834
|
| io.flow.internal.v0.models.CommercialInvoiceInternalUpserted
|
|
@@ -29599,6 +29921,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29599
29921
|
| io.flow.internal.v0.models.FtpFileToProcessUploaded
|
|
29600
29922
|
| io.flow.internal.v0.models.CenterDefaultsUpserted
|
|
29601
29923
|
| io.flow.internal.v0.models.CenterDefaultsDeleted
|
|
29924
|
+
| io.flow.internal.v0.models.FulfillmentFallbacksUpserted
|
|
29925
|
+
| io.flow.internal.v0.models.FulfillmentFallbacksDeleted
|
|
29602
29926
|
| io.flow.internal.v0.models.PregeneratedRequestEvent
|
|
29603
29927
|
| io.flow.internal.v0.models.QuoteUpserted
|
|
29604
29928
|
| io.flow.internal.v0.models.QuoteDeleted
|
|
@@ -29796,6 +30120,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29796
30120
|
| io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted
|
|
29797
30121
|
| io.flow.internal.v0.models.TrackingAssuranceJobUpserted
|
|
29798
30122
|
| io.flow.internal.v0.models.TrackingAssuranceJobDeleted
|
|
30123
|
+
| io.flow.internal.v0.models.TrackingLabelDimensionsUpserted
|
|
30124
|
+
| io.flow.internal.v0.models.TrackingLabelDimensionsDeleted
|
|
29799
30125
|
| io.flow.internal.v0.models.TrackingRequestUpserted
|
|
29800
30126
|
| io.flow.internal.v0.models.TrackingResponseUpserted
|
|
29801
30127
|
| io.flow.internal.v0.models.UserUpsertedV2
|
|
@@ -30083,6 +30409,11 @@ export type AddressConfigurationSettingForm =
|
|
|
30083
30409
|
io.flow.internal.v0.models.AddressConfigurationSettingForm;
|
|
30084
30410
|
export type AddressConfigurationSettingProvinceCode =
|
|
30085
30411
|
io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
30412
|
+
export type AdjustedEstimates = io.flow.internal.v0.models.AdjustedEstimates;
|
|
30413
|
+
export type AdjustedEstimatesDeleted =
|
|
30414
|
+
io.flow.internal.v0.models.AdjustedEstimatesDeleted;
|
|
30415
|
+
export type AdjustedEstimatesUpserted =
|
|
30416
|
+
io.flow.internal.v0.models.AdjustedEstimatesUpserted;
|
|
30086
30417
|
export type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
30087
30418
|
export type AdjustmentAmountFixed =
|
|
30088
30419
|
io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
@@ -30123,6 +30454,10 @@ export type AdyenCaptureDeleted =
|
|
|
30123
30454
|
io.flow.internal.v0.models.AdyenCaptureDeleted;
|
|
30124
30455
|
export type AdyenCaptureUpserted =
|
|
30125
30456
|
io.flow.internal.v0.models.AdyenCaptureUpserted;
|
|
30457
|
+
export type AdyenDisputeDeleted =
|
|
30458
|
+
io.flow.internal.v0.models.AdyenDisputeDeleted;
|
|
30459
|
+
export type AdyenDisputeUpserted =
|
|
30460
|
+
io.flow.internal.v0.models.AdyenDisputeUpserted;
|
|
30126
30461
|
export type AdyenIntegrationType =
|
|
30127
30462
|
io.flow.internal.v0.enums.AdyenIntegrationType;
|
|
30128
30463
|
export type AdyenInternalAuthorization =
|
|
@@ -30131,6 +30466,8 @@ export type AdyenInternalCancel =
|
|
|
30131
30466
|
io.flow.internal.v0.models.AdyenInternalCancel;
|
|
30132
30467
|
export type AdyenInternalCapture =
|
|
30133
30468
|
io.flow.internal.v0.models.AdyenInternalCapture;
|
|
30469
|
+
export type AdyenInternalDispute =
|
|
30470
|
+
io.flow.internal.v0.models.AdyenInternalDispute;
|
|
30134
30471
|
export type AdyenInternalRefund =
|
|
30135
30472
|
io.flow.internal.v0.models.AdyenInternalRefund;
|
|
30136
30473
|
export type AdyenMerchant = io.flow.internal.v0.models.AdyenMerchant;
|
|
@@ -30199,6 +30536,7 @@ export type ApmContent = io.flow.internal.v0.models.ApmContent;
|
|
|
30199
30536
|
export type ApplePayAuthorizationPayload =
|
|
30200
30537
|
io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
30201
30538
|
export type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
30539
|
+
export type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
30202
30540
|
export type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
30203
30541
|
export type AuthenticationForm = io.flow.internal.v0.models.AuthenticationForm;
|
|
30204
30542
|
export type AuthorizationBundle =
|
|
@@ -30496,6 +30834,12 @@ export type ChannelOrderAcceptanceDetails =
|
|
|
30496
30834
|
io.flow.internal.v0.models.ChannelOrderAcceptanceDetails;
|
|
30497
30835
|
export type ChannelOrderAcceptanceErrorAction =
|
|
30498
30836
|
io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
30837
|
+
export type ChannelOrderAcceptanceFailed =
|
|
30838
|
+
io.flow.internal.v0.models.ChannelOrderAcceptanceFailed;
|
|
30839
|
+
export type ChannelOrderAcceptanceFailure =
|
|
30840
|
+
io.flow.internal.v0.models.ChannelOrderAcceptanceFailure;
|
|
30841
|
+
export type ChannelOrderAcceptanceFailureReasonCode =
|
|
30842
|
+
io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
30499
30843
|
export type ChannelOrderAcceptanceForm =
|
|
30500
30844
|
io.flow.internal.v0.models.ChannelOrderAcceptanceForm;
|
|
30501
30845
|
export type ChannelOrderAcceptanceNextActionFrom =
|
|
@@ -30656,6 +31000,10 @@ export type ClassificationJudgementForm =
|
|
|
30656
31000
|
io.flow.internal.v0.unions.ClassificationJudgementForm;
|
|
30657
31001
|
export type ClassificationLabelAttribute =
|
|
30658
31002
|
io.flow.internal.v0.unions.ClassificationLabelAttribute;
|
|
31003
|
+
export type ClassificationMerchant =
|
|
31004
|
+
io.flow.internal.v0.models.ClassificationMerchant;
|
|
31005
|
+
export type ClassificationMerchantEnvelope =
|
|
31006
|
+
io.flow.internal.v0.models.ClassificationMerchantEnvelope;
|
|
30659
31007
|
export type ClassificationPlatform =
|
|
30660
31008
|
io.flow.internal.v0.enums.ClassificationPlatform;
|
|
30661
31009
|
export type ClassificationProduct =
|
|
@@ -30874,7 +31222,10 @@ export type DisputeAuthorizationReference =
|
|
|
30874
31222
|
io.flow.internal.v0.models.DisputeAuthorizationReference;
|
|
30875
31223
|
export type DisputeBillable = io.flow.internal.v0.enums.DisputeBillable;
|
|
30876
31224
|
export type DisputeCategory = io.flow.internal.v0.enums.DisputeCategory;
|
|
31225
|
+
export type DisputeDefenseOutcome =
|
|
31226
|
+
io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
30877
31227
|
export type DisputeDeleted = io.flow.internal.v0.models.DisputeDeleted;
|
|
31228
|
+
export type DisputeDetail = io.flow.internal.v0.models.DisputeDetail;
|
|
30878
31229
|
export type DisputeDetails = io.flow.internal.v0.unions.DisputeDetails;
|
|
30879
31230
|
export type DisputeDetailsAdyen =
|
|
30880
31231
|
io.flow.internal.v0.models.DisputeDetailsAdyen;
|
|
@@ -30895,6 +31246,8 @@ export type DisputeOrderReference =
|
|
|
30895
31246
|
io.flow.internal.v0.models.DisputeOrderReference;
|
|
30896
31247
|
export type DisputeOrganizationReference =
|
|
30897
31248
|
io.flow.internal.v0.models.DisputeOrganizationReference;
|
|
31249
|
+
export type DisputeOverrideUpdateForm =
|
|
31250
|
+
io.flow.internal.v0.models.DisputeOverrideUpdateForm;
|
|
30898
31251
|
export type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcessor;
|
|
30899
31252
|
export type DisputeReportingCategory =
|
|
30900
31253
|
io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
@@ -31192,6 +31545,12 @@ export type FulfillmentBusiness =
|
|
|
31192
31545
|
export type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
31193
31546
|
export type FulfillmentCarrier = io.flow.internal.v0.models.FulfillmentCarrier;
|
|
31194
31547
|
export type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
31548
|
+
export type FulfillmentFallbacks =
|
|
31549
|
+
io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
31550
|
+
export type FulfillmentFallbacksDeleted =
|
|
31551
|
+
io.flow.internal.v0.models.FulfillmentFallbacksDeleted;
|
|
31552
|
+
export type FulfillmentFallbacksUpserted =
|
|
31553
|
+
io.flow.internal.v0.models.FulfillmentFallbacksUpserted;
|
|
31195
31554
|
export type FulfillmentInternalExperienceReference =
|
|
31196
31555
|
io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
31197
31556
|
export type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
@@ -31498,6 +31857,11 @@ export type LabelRequestErrorHandlingResponsibility =
|
|
|
31498
31857
|
io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
31499
31858
|
export type LabelRequestErrorUpserted =
|
|
31500
31859
|
io.flow.internal.v0.models.LabelRequestErrorUpserted;
|
|
31860
|
+
export type LabelRequestResult = io.flow.internal.v0.models.LabelRequestResult;
|
|
31861
|
+
export type LabelRequestResultOrganizationType =
|
|
31862
|
+
io.flow.internal.v0.enums.LabelRequestResultOrganizationType;
|
|
31863
|
+
export type LabelRequestResultState =
|
|
31864
|
+
io.flow.internal.v0.enums.LabelRequestResultState;
|
|
31501
31865
|
export type LabelSummary = io.flow.internal.v0.models.LabelSummary;
|
|
31502
31866
|
export type LabelSurchargeForm = io.flow.internal.v0.models.LabelSurchargeForm;
|
|
31503
31867
|
export type LabelSurchargeSingleForm =
|
|
@@ -31751,6 +32115,10 @@ export type MerchantGuidAssignmentDeleted =
|
|
|
31751
32115
|
io.flow.internal.v0.models.MerchantGuidAssignmentDeleted;
|
|
31752
32116
|
export type MerchantGuidAssignmentUpserted =
|
|
31753
32117
|
io.flow.internal.v0.models.MerchantGuidAssignmentUpserted;
|
|
32118
|
+
export type MerchantHubOverride =
|
|
32119
|
+
io.flow.internal.v0.models.MerchantHubOverride;
|
|
32120
|
+
export type MerchantHubOverrideForm =
|
|
32121
|
+
io.flow.internal.v0.models.MerchantHubOverrideForm;
|
|
31754
32122
|
export type MerchantOfRecordEntitySettings =
|
|
31755
32123
|
io.flow.internal.v0.models.MerchantOfRecordEntitySettings;
|
|
31756
32124
|
export type MerchantOfRecordEntitySettingsForm =
|
|
@@ -31784,6 +32152,8 @@ export type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
|
31784
32152
|
export type MoneyPercentage = io.flow.internal.v0.models.MoneyPercentage;
|
|
31785
32153
|
export type MoneyRule = io.flow.internal.v0.unions.MoneyRule;
|
|
31786
32154
|
export type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
32155
|
+
export type NegativeDebitMetrics =
|
|
32156
|
+
io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
31787
32157
|
export type NextBillingStatement =
|
|
31788
32158
|
io.flow.internal.v0.models.NextBillingStatement;
|
|
31789
32159
|
export type NoCalculatedTaxAmount =
|
|
@@ -32109,6 +32479,7 @@ export type PartnerOrganizationSettingsForm =
|
|
|
32109
32479
|
io.flow.internal.v0.models.PartnerOrganizationSettingsForm;
|
|
32110
32480
|
export type PartnerOrganizationSettingsUpserted =
|
|
32111
32481
|
io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted;
|
|
32482
|
+
export type PartnerRequest = io.flow.internal.v0.models.PartnerRequest;
|
|
32112
32483
|
export type Party = io.flow.internal.v0.enums.Party;
|
|
32113
32484
|
export type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
32114
32485
|
export type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
@@ -32254,6 +32625,7 @@ export type ProductClassificationJudgementForm =
|
|
|
32254
32625
|
io.flow.internal.v0.models.ProductClassificationJudgementForm;
|
|
32255
32626
|
export type ProductClassificationResult =
|
|
32256
32627
|
io.flow.internal.v0.models.ProductClassificationResult;
|
|
32628
|
+
export type ProductCurrencies = io.flow.internal.v0.models.ProductCurrencies;
|
|
32257
32629
|
export type ProductDetailSettingsForm =
|
|
32258
32630
|
io.flow.internal.v0.models.ProductDetailSettingsForm;
|
|
32259
32631
|
export type ProductHarmonization =
|
|
@@ -32263,6 +32635,7 @@ export type ProductHarmonizationForm =
|
|
|
32263
32635
|
export type ProductLabels = io.flow.internal.v0.models.ProductLabels;
|
|
32264
32636
|
export type ProductListSettingsForm =
|
|
32265
32637
|
io.flow.internal.v0.models.ProductListSettingsForm;
|
|
32638
|
+
export type ProductRecord = io.flow.internal.v0.models.ProductRecord;
|
|
32266
32639
|
export type ProductRestrictionResultValidationError =
|
|
32267
32640
|
io.flow.internal.v0.models.ProductRestrictionResultValidationError;
|
|
32268
32641
|
export type ProductRestrictionRuleDecision =
|
|
@@ -32274,6 +32647,7 @@ export type ProductRestrictionRuleDecisionUpserted =
|
|
|
32274
32647
|
export type ProductReviewHistory =
|
|
32275
32648
|
io.flow.internal.v0.models.ProductReviewHistory;
|
|
32276
32649
|
export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
32650
|
+
export type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
32277
32651
|
export type Profit = io.flow.internal.v0.models.Profit;
|
|
32278
32652
|
export type ProfitShare = io.flow.internal.v0.models.ProfitShare;
|
|
32279
32653
|
export type ProfitShareOrderReference =
|
|
@@ -32301,6 +32675,8 @@ export type ProofOfPostingShippingNotification =
|
|
|
32301
32675
|
io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
32302
32676
|
export type ProofOfPostingTimeElapsed =
|
|
32303
32677
|
io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
|
|
32678
|
+
export type PublicHub = io.flow.internal.v0.models.PublicHub;
|
|
32679
|
+
export type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
|
|
32304
32680
|
export type Quote = io.flow.internal.v0.models.Quote;
|
|
32305
32681
|
export type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
|
|
32306
32682
|
export type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
@@ -33061,6 +33437,14 @@ export type TrackingIntegrationType =
|
|
|
33061
33437
|
io.flow.internal.v0.enums.TrackingIntegrationType;
|
|
33062
33438
|
export type TrackingLabelDeleted =
|
|
33063
33439
|
io.flow.internal.v0.models.TrackingLabelDeleted;
|
|
33440
|
+
export type TrackingLabelDimensions =
|
|
33441
|
+
io.flow.internal.v0.models.TrackingLabelDimensions;
|
|
33442
|
+
export type TrackingLabelDimensionsDeleted =
|
|
33443
|
+
io.flow.internal.v0.models.TrackingLabelDimensionsDeleted;
|
|
33444
|
+
export type TrackingLabelDimensionsSource =
|
|
33445
|
+
io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
|
|
33446
|
+
export type TrackingLabelDimensionsUpserted =
|
|
33447
|
+
io.flow.internal.v0.models.TrackingLabelDimensionsUpserted;
|
|
33064
33448
|
export type TrackingLabelEventDeletedV2 =
|
|
33065
33449
|
io.flow.internal.v0.models.TrackingLabelEventDeletedV2;
|
|
33066
33450
|
export type TrackingLabelEventUpsertedV2 =
|