@flowio/types 11.24.47 → 11.24.48
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 +113 -97
- package/dist/api.d.ts +2 -7
- package/package.json +2 -2
- package/src/api-internal.ts +162 -111
- package/src/api.ts +2 -8
package/dist/api-internal.d.ts
CHANGED
|
@@ -3836,9 +3836,9 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
3836
3836
|
type Contract = 'RECURRING';
|
|
3837
3837
|
type DeviceChannel = 'app' | 'browser';
|
|
3838
3838
|
type EventCode = 'AUTHORISATION' | 'CANCELLATION' | 'REFUND' | 'CANCEL_OR_REFUND' | 'CAPTURE' | 'CAPTURE_FAILED' | 'REFUND_FAILED' | 'REFUNDED_REVERSED' | 'PAIDOUT_REVERSED' | 'REQUEST_FOR_INFORMATION' | 'CHARGEBACK' | 'CHARGEBACK_REVERSED' | 'NOTIFICATION_OF_CHARGEBACK' | 'NOTIFICATION_OF_FRAUD' | 'MANUAL_REVIEW_ACCEPT' | 'MANUAL_REVIEW_REJECT' | 'RECURRING_CONTRACT' | 'PAYOUT_EXPIRE' | 'PAYOUT_DECLINE' | 'PAYOUT_THIRDPARTY' | 'REFUND_WITH_DATA' | 'AUTHORISE_REFERRAL' | 'EXPIRE' | 'FRAUD_ONLY' | 'FUND_TRANSFER' | 'HANDLED_EXTERNALLY' | 'OFFER_CLOSED' | 'ORDER_OPENED' | 'ORDER_CLOSED' | 'PENDING' | 'PROCESS_RETRY' | 'REPORT_AVAILABLE' | 'SECOND_CHARGEBACK' | 'PREARBITRATION_WON' | 'PREARBITRATION_LOST';
|
|
3839
|
-
type
|
|
3839
|
+
type Method = 'GET' | 'POST';
|
|
3840
3840
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
3841
|
-
type PaymentMethod = 'ach' | 'alipay' | '
|
|
3841
|
+
type PaymentMethod = 'ach' | 'alipay' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'giropay' | 'ideal' | 'interac' | 'jcb' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mc' | 'molpay_points' | 'multibanco' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'unionpay' | 'visa' | 'wechatpay' | 'unknowncard';
|
|
3842
3842
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
3843
3843
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
3844
3844
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -3857,10 +3857,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3857
3857
|
readonly value: number;
|
|
3858
3858
|
readonly currency: string;
|
|
3859
3859
|
}
|
|
3860
|
-
interface Applepay {
|
|
3861
|
-
readonly type: 'applepay';
|
|
3862
|
-
readonly applePayToken: string;
|
|
3863
|
-
}
|
|
3864
3860
|
interface Authentication {
|
|
3865
3861
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
3866
3862
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -3887,8 +3883,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3887
3883
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
3888
3884
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
3889
3885
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
3890
|
-
readonly mcc?: string;
|
|
3891
|
-
readonly metadata?: any;
|
|
3892
3886
|
}
|
|
3893
3887
|
interface AuthorizeRequest3D {
|
|
3894
3888
|
readonly merchantAccount: string;
|
|
@@ -4022,12 +4016,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4022
4016
|
readonly details: any;
|
|
4023
4017
|
readonly paymentData?: string;
|
|
4024
4018
|
}
|
|
4025
|
-
interface PaymentDetailsV663Ds2Challenge {
|
|
4026
|
-
readonly 'threeds2.challengeResult': string;
|
|
4027
|
-
}
|
|
4028
|
-
interface PaymentDetailsV663Ds2Fingerprint {
|
|
4029
|
-
readonly 'threeds2.fingerprint': string;
|
|
4030
|
-
}
|
|
4031
4019
|
interface PaymentRequest {
|
|
4032
4020
|
readonly reference: string;
|
|
4033
4021
|
readonly merchantAccount: string;
|
|
@@ -4049,12 +4037,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4049
4037
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4050
4038
|
readonly origin?: string;
|
|
4051
4039
|
readonly channel?: io.flow.adyen.v0.enums.Channel;
|
|
4052
|
-
readonly
|
|
4053
|
-
readonly mcc?: string;
|
|
4054
|
-
readonly metadata?: any;
|
|
4055
|
-
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4056
|
-
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4057
|
-
readonly storePaymentMethod?: boolean;
|
|
4040
|
+
readonly returnURL?: string;
|
|
4058
4041
|
}
|
|
4059
4042
|
interface PaymentResponse {
|
|
4060
4043
|
readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
|
|
@@ -4069,57 +4052,19 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4069
4052
|
interface PaymentResponseAdditionalData {
|
|
4070
4053
|
readonly authCode?: string;
|
|
4071
4054
|
readonly avsResultRaw?: string;
|
|
4072
|
-
readonly avsResult?: string;
|
|
4073
4055
|
readonly cvcResultRaw?: string;
|
|
4074
|
-
readonly cvcResult?: string;
|
|
4075
|
-
readonly refusalReasonRaw?: string;
|
|
4076
4056
|
readonly liabilityShift?: string;
|
|
4077
4057
|
readonly threeDAuthenticated?: string;
|
|
4078
4058
|
readonly threeDAuthenticatedResponse?: string;
|
|
4079
4059
|
readonly threeDOffered?: string;
|
|
4080
4060
|
readonly threeDOfferedResponse?: string;
|
|
4081
|
-
readonly threeDSVersion?: string;
|
|
4082
|
-
readonly eci?: string;
|
|
4083
|
-
readonly scaExemptionRequested?: string;
|
|
4084
|
-
readonly paymentMethod?: string;
|
|
4085
|
-
readonly paymentMethodVariant?: string;
|
|
4086
|
-
readonly tokenTxVariant?: string;
|
|
4087
|
-
readonly acquirerCode?: string;
|
|
4088
|
-
readonly acquirerAccountCode?: string;
|
|
4089
|
-
readonly cardPaymentMethod?: string;
|
|
4090
|
-
readonly coBrandedWith?: string;
|
|
4091
|
-
readonly cardIssuingCountry?: string;
|
|
4092
|
-
readonly cardIssuingCurrency?: string;
|
|
4093
|
-
readonly cardIssuingBank?: string;
|
|
4094
|
-
readonly cardBin?: string;
|
|
4095
|
-
readonly issuerBin?: string;
|
|
4096
|
-
readonly cardSummary?: string;
|
|
4097
|
-
readonly untokenisedCardSummary?: string;
|
|
4098
|
-
readonly ownerName?: string;
|
|
4099
|
-
readonly bankName?: string;
|
|
4100
|
-
readonly issuerCountry?: string;
|
|
4101
|
-
readonly iban?: string;
|
|
4102
|
-
readonly bic?: string;
|
|
4103
|
-
readonly iDealConsumerAccountNumber?: string;
|
|
4104
|
-
readonly iDealConsumerBIC?: string;
|
|
4105
|
-
readonly iDealConsumerCity?: string;
|
|
4106
|
-
readonly iDealConsumerIBAN?: string;
|
|
4107
|
-
readonly iDealConsumerName?: string;
|
|
4108
|
-
readonly iDealTransactionId?: string;
|
|
4109
|
-
readonly 'recurring.recurringDetailReference'?: string;
|
|
4110
|
-
readonly 'recurring.shopperReference'?: string;
|
|
4111
|
-
readonly networkTxReference?: string;
|
|
4112
|
-
readonly PaymentAccountReference?: string;
|
|
4113
|
-
readonly 'networkToken.available'?: string;
|
|
4114
|
-
readonly 'networkToken.bin'?: string;
|
|
4115
|
-
readonly 'networkToken.tokenSummary'?: string;
|
|
4116
4061
|
}
|
|
4117
4062
|
interface Recurring {
|
|
4118
4063
|
readonly contract: io.flow.adyen.v0.enums.Contract;
|
|
4119
4064
|
}
|
|
4120
4065
|
interface Redirect {
|
|
4121
4066
|
readonly data?: io.flow.adyen.v0.models.RedirectData;
|
|
4122
|
-
readonly method?: io.flow.adyen.v0.enums.
|
|
4067
|
+
readonly method?: io.flow.adyen.v0.enums.Method;
|
|
4123
4068
|
readonly url?: string;
|
|
4124
4069
|
}
|
|
4125
4070
|
interface RedirectData {
|
|
@@ -4139,15 +4084,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4139
4084
|
readonly holderName: string;
|
|
4140
4085
|
readonly number: string;
|
|
4141
4086
|
readonly cvc?: string;
|
|
4142
|
-
readonly storedPaymentMethodId?: string;
|
|
4143
|
-
readonly networkPaymentReference?: string;
|
|
4144
|
-
}
|
|
4145
|
-
interface SdkV3OnCompleteData {
|
|
4146
|
-
readonly details: any;
|
|
4147
|
-
readonly payment_data?: string;
|
|
4148
|
-
}
|
|
4149
|
-
interface SdkV3OnCompleteResult {
|
|
4150
|
-
readonly data: io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
4151
4087
|
}
|
|
4152
4088
|
interface ThreeDSecureData {
|
|
4153
4089
|
readonly authenticationResponse?: string;
|
|
@@ -4174,7 +4110,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4174
4110
|
}
|
|
4175
4111
|
declare namespace io.flow.adyen.v0.unions {
|
|
4176
4112
|
type BrowserInfo = io.flow.adyen.v0.models.BrowserInfo3Ds1 | io.flow.adyen.v0.models.BrowserInfo3Ds2;
|
|
4177
|
-
type PaymentMethodData = io.flow.adyen.v0.models.Scheme
|
|
4113
|
+
type PaymentMethodData = io.flow.adyen.v0.models.Scheme;
|
|
4178
4114
|
}
|
|
4179
4115
|
declare namespace io.flow.order.management.v0.enums {
|
|
4180
4116
|
type CancelReason = 'out_of_stock' | 'consumer_requested' | 'flow_cancel';
|
|
@@ -5027,7 +4963,9 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5027
4963
|
type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
5028
4964
|
type FulfillmentOrderDeliveryMethodType = 'local' | 'none' | 'pick_up' | 'retail' | 'shipping';
|
|
5029
4965
|
type IncotermDuties = 'DAP' | 'DDP';
|
|
4966
|
+
type ShopifyDiscountValueType = 'fixed_amount' | 'percentage';
|
|
5030
4967
|
type ShopifyDiscrepancyReason = 'restock' | 'damage' | 'customer' | 'other';
|
|
4968
|
+
type ShopifyDraftOrderStatus = 'open' | 'invoice_sent' | 'completed' | 'pending' | 'authorized' | 'partially_paid' | 'paid' | 'partially_refunded' | 'refunded' | 'voided';
|
|
5031
4969
|
type ShopifyOrderCancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
5032
4970
|
type ShopifyOrderDiscountAllocationMethod = 'across' | 'each' | 'one';
|
|
5033
4971
|
type ShopifyOrderDiscountApplicationTargetSelection = 'all' | 'entitled' | 'explicit';
|
|
@@ -5049,6 +4987,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5049
4987
|
type ShopifyOrderTransactionErrorCode = 'incorrect_number' | 'invalid_number' | 'invalid_expiry_date' | 'invalid_cvc' | 'expired_card' | 'incorrect_cvc' | 'incorrect_zip' | 'incorrect_address' | 'card_declined' | 'processing_error' | 'call_issuer' | 'pick_up_card';
|
|
5050
4988
|
type ShopifyOrderTransactionStatus = 'pending' | 'failure' | 'success' | 'error';
|
|
5051
4989
|
type ShopifyOrderValueType = 'string' | 'integer';
|
|
4990
|
+
type ShopifyTaxExemptions = 'EXEMPT_ALL' | 'CA_STATUS_CARD_EXEMPTION' | 'CA_DIPLOMAT_EXEMPTION' | 'CA_BC_RESELLER_EXEMPTION' | 'CA_MB_RESELLER_EXEMPTION' | 'CA_SK_RESELLER_EXEMPTION' | 'CA_BC_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_MB_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_NS_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_PE_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_SK_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_BC_SUB_CONTRACTOR_EXEMPTION' | 'CA_SK_SUB_CONTRACTOR_EXEMPTION' | 'CA_BC_CONTRACTOR_EXEMPTION' | 'CA_SK_CONTRACTOR_EXEMPTION' | 'CA_ON_PURCHASE_EXEMPTION' | 'CA_MB_FARMER_EXEMPTION' | 'CA_NS_FARMER_EXEMPTION' | 'CA_SK_FARMER_EXEMPTION';
|
|
5052
4991
|
type ShopifyWebhookFormat = 'json' | 'xml';
|
|
5053
4992
|
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update';
|
|
5054
4993
|
}
|
|
@@ -5110,10 +5049,53 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5110
5049
|
interface ShopWrapper {
|
|
5111
5050
|
readonly shop: io.flow.shopify.markets.v0.models.Shop;
|
|
5112
5051
|
}
|
|
5052
|
+
interface ShopifyAppliedDiscount {
|
|
5053
|
+
readonly title?: string;
|
|
5054
|
+
readonly description?: string;
|
|
5055
|
+
readonly value?: string;
|
|
5056
|
+
readonly value_type?: io.flow.shopify.markets.v0.enums.ShopifyDiscountValueType;
|
|
5057
|
+
readonly amount?: number;
|
|
5058
|
+
}
|
|
5113
5059
|
interface ShopifyCountryHarmonizedSystemCode {
|
|
5114
5060
|
readonly country_code: string;
|
|
5115
5061
|
readonly harmonized_system_code: string;
|
|
5116
5062
|
}
|
|
5063
|
+
interface ShopifyDraftOrder {
|
|
5064
|
+
readonly applied_discount: io.flow.shopify.markets.v0.models.ShopifyAppliedDiscount;
|
|
5065
|
+
readonly billing_address?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5066
|
+
readonly completed_at?: string;
|
|
5067
|
+
readonly created_at?: string;
|
|
5068
|
+
readonly currency?: string;
|
|
5069
|
+
readonly customer?: io.flow.shopify.markets.v0.models.ShopifyOrderCustomer;
|
|
5070
|
+
readonly email?: string;
|
|
5071
|
+
readonly id?: number;
|
|
5072
|
+
readonly invoice_sent_at?: string;
|
|
5073
|
+
readonly invoice_url?: string;
|
|
5074
|
+
readonly line_items: io.flow.shopify.markets.v0.models.ShopifyOrderLineItem[];
|
|
5075
|
+
readonly name?: string;
|
|
5076
|
+
readonly note?: string;
|
|
5077
|
+
readonly note_attributes: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
|
|
5078
|
+
readonly order_id: io.flow.shopify.markets.v0.models.ShopifyOrderId;
|
|
5079
|
+
readonly payment_terms: io.flow.shopify.markets.v0.models.ShopifyPaymentTerms;
|
|
5080
|
+
readonly shipping_address?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5081
|
+
readonly shipping_lines: io.flow.shopify.markets.v0.models.ShopifyOrderShippingLine[];
|
|
5082
|
+
readonly source_name?: string;
|
|
5083
|
+
readonly subtotal_price?: string;
|
|
5084
|
+
readonly status?: io.flow.shopify.markets.v0.enums.ShopifyDraftOrderStatus;
|
|
5085
|
+
readonly tags?: string;
|
|
5086
|
+
readonly tax_exemptions?: io.flow.shopify.markets.v0.enums.ShopifyTaxExemptions[];
|
|
5087
|
+
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
5088
|
+
readonly taxes_included: boolean;
|
|
5089
|
+
readonly total_price?: string;
|
|
5090
|
+
readonly total_tax?: string;
|
|
5091
|
+
readonly updated_at?: string;
|
|
5092
|
+
}
|
|
5093
|
+
interface ShopifyDraftOrderCount {
|
|
5094
|
+
readonly count: number;
|
|
5095
|
+
}
|
|
5096
|
+
interface ShopifyDraftOrdersWrapper {
|
|
5097
|
+
readonly draft_orders: io.flow.shopify.markets.v0.models.ShopifyDraftOrder[];
|
|
5098
|
+
}
|
|
5117
5099
|
interface ShopifyError {
|
|
5118
5100
|
readonly errors: any;
|
|
5119
5101
|
}
|
|
@@ -5271,7 +5253,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5271
5253
|
}
|
|
5272
5254
|
interface ShopifyOrderAttribute {
|
|
5273
5255
|
readonly name: string;
|
|
5274
|
-
readonly value:
|
|
5256
|
+
readonly value: any;
|
|
5275
5257
|
}
|
|
5276
5258
|
interface ShopifyOrderCancellationForm {
|
|
5277
5259
|
readonly refund: io.flow.shopify.markets.v0.models.ShopifyRefund;
|
|
@@ -5284,6 +5266,9 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5284
5266
|
readonly session_hash?: string;
|
|
5285
5267
|
readonly user_agent?: string;
|
|
5286
5268
|
}
|
|
5269
|
+
interface ShopifyOrderCount {
|
|
5270
|
+
readonly count: number;
|
|
5271
|
+
}
|
|
5287
5272
|
interface ShopifyOrderCustomer {
|
|
5288
5273
|
readonly id?: number;
|
|
5289
5274
|
readonly email?: string;
|
|
@@ -5377,6 +5362,9 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5377
5362
|
readonly updated_at?: string;
|
|
5378
5363
|
readonly variant_inventory_management?: string;
|
|
5379
5364
|
}
|
|
5365
|
+
interface ShopifyOrderId {
|
|
5366
|
+
readonly id: number;
|
|
5367
|
+
}
|
|
5380
5368
|
interface ShopifyOrderLineItem {
|
|
5381
5369
|
readonly fulfillable_quantity?: number;
|
|
5382
5370
|
readonly fulfillment_service: string;
|
|
@@ -5478,7 +5466,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5478
5466
|
interface ShopifyOrderShippingLine {
|
|
5479
5467
|
readonly code?: string;
|
|
5480
5468
|
readonly price: string;
|
|
5481
|
-
readonly source
|
|
5469
|
+
readonly source?: string;
|
|
5482
5470
|
readonly title: string;
|
|
5483
5471
|
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
5484
5472
|
readonly carrier_identifier?: string;
|
|
@@ -5520,6 +5508,22 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5520
5508
|
interface ShopifyOrdersWrapper {
|
|
5521
5509
|
readonly orders: io.flow.shopify.markets.v0.models.ShopifyOrder[];
|
|
5522
5510
|
}
|
|
5511
|
+
interface ShopifyPaymentSchedules {
|
|
5512
|
+
readonly amount?: number;
|
|
5513
|
+
readonly currency?: string;
|
|
5514
|
+
readonly issued_at?: string;
|
|
5515
|
+
readonly due_at?: string;
|
|
5516
|
+
readonly completed_at?: string;
|
|
5517
|
+
readonly expected_payment_method?: string;
|
|
5518
|
+
}
|
|
5519
|
+
interface ShopifyPaymentTerms {
|
|
5520
|
+
readonly amount?: number;
|
|
5521
|
+
readonly currency?: string;
|
|
5522
|
+
readonly payment_terms_name?: string;
|
|
5523
|
+
readonly payment_terms_type?: number;
|
|
5524
|
+
readonly due_in_days?: number;
|
|
5525
|
+
readonly payment_schedules?: io.flow.shopify.markets.v0.models.ShopifyPaymentSchedules;
|
|
5526
|
+
}
|
|
5523
5527
|
interface ShopifyRefund {
|
|
5524
5528
|
readonly notify_x: boolean;
|
|
5525
5529
|
readonly note?: string;
|
|
@@ -8665,7 +8669,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
8665
8669
|
type AttachmentType = 'csv';
|
|
8666
8670
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
8667
8671
|
type PayoutStatusCode = 'scheduled' | 'sent' | 'cancelled' | 'failed' | 'succeeded';
|
|
8668
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | '
|
|
8672
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
8669
8673
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
8670
8674
|
}
|
|
8671
8675
|
declare namespace io.flow.billing.v0.models {
|
|
@@ -10159,6 +10163,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10159
10163
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
10160
10164
|
type AccountType = 'channel' | 'organization';
|
|
10161
10165
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
10166
|
+
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
10162
10167
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
10163
10168
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
10164
10169
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
@@ -10167,17 +10172,17 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10167
10172
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
10168
10173
|
type BillingStatementReviewStatus = 'approved' | 'pending';
|
|
10169
10174
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
10170
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty';
|
|
10175
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty';
|
|
10171
10176
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
10172
10177
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
10173
10178
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
10174
10179
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
|
|
10175
10180
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
10176
10181
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
10177
|
-
type ChannelBilledTransactionType = 'adjustment' | 'channel_initiated';
|
|
10182
|
+
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
10178
10183
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information';
|
|
10179
10184
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
10180
|
-
type ChannelTransactionType = 'adjustment' | 'processing';
|
|
10185
|
+
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
10181
10186
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
10182
10187
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
10183
10188
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -10278,10 +10283,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10278
10283
|
type DutyRateUnitOfMeasure = 'kg' | 'sq m' | 'item' | 'pair';
|
|
10279
10284
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
10280
10285
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
10281
|
-
type DutyTransactionType = 'adjustment' | 'duty';
|
|
10286
|
+
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10282
10287
|
type EmptyAttribute = 'irrelevant';
|
|
10283
10288
|
type ErpFileType = 'vendor';
|
|
10284
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
10289
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
10285
10290
|
type ExperienceImportType = 'experience_with_settings';
|
|
10286
10291
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10287
10292
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10313,7 +10318,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10313
10318
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
10314
10319
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
10315
10320
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
10316
|
-
type LabelTransactionType = 'adjustment' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10321
|
+
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10317
10322
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
10318
10323
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
10319
10324
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
@@ -10339,7 +10344,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10339
10344
|
type OrderAttributeIntent = 'discount_code';
|
|
10340
10345
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
10341
10346
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
10342
|
-
type OrderTransactionType = 'adjustment' | 'order_service';
|
|
10347
|
+
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
10343
10348
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
10344
10349
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
10345
10350
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
@@ -10355,7 +10360,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10355
10360
|
type PregenDataKeyField = 'shipping_country' | 'shipping_province' | 'invoicing_country' | 'delivery_option_id';
|
|
10356
10361
|
type PriceSelector = 'minimum' | 'maximum';
|
|
10357
10362
|
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
10358
|
-
type ProcessingTransactionType = 'adjustment' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
10363
|
+
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
10359
10364
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
10360
10365
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
10361
10366
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
@@ -10404,7 +10409,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10404
10409
|
type TaskProcessorKey = 'billing_account' | 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'label_generation_settings' | 'ratecard';
|
|
10405
10410
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
10406
10411
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
10407
|
-
type TaxTransactionType = 'adjustment' | 'tax';
|
|
10412
|
+
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
10408
10413
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
10409
10414
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
10410
10415
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
@@ -11300,6 +11305,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11300
11305
|
readonly adjustment: io.flow.common.v0.models.Price;
|
|
11301
11306
|
readonly capture: io.flow.common.v0.models.Price;
|
|
11302
11307
|
readonly refund: io.flow.common.v0.models.Price;
|
|
11308
|
+
readonly reversal: io.flow.common.v0.models.Price;
|
|
11303
11309
|
readonly credit_payment: io.flow.common.v0.models.Price;
|
|
11304
11310
|
readonly fully_subsidized_order: io.flow.common.v0.models.Price;
|
|
11305
11311
|
readonly virtual_card_capture: io.flow.common.v0.models.Price;
|
|
@@ -11880,6 +11886,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11880
11886
|
interface ChannelTransaction {
|
|
11881
11887
|
readonly discriminator: 'channel_transaction';
|
|
11882
11888
|
readonly transaction: io.flow.internal.v0.models.TransactionReference;
|
|
11889
|
+
readonly fees: io.flow.internal.v0.models.Fee[];
|
|
11883
11890
|
readonly id: string;
|
|
11884
11891
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
11885
11892
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -16116,6 +16123,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16116
16123
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
16117
16124
|
readonly url: string;
|
|
16118
16125
|
}
|
|
16126
|
+
interface Hs6Detail {
|
|
16127
|
+
readonly hs6_code: string;
|
|
16128
|
+
readonly description: string;
|
|
16129
|
+
}
|
|
16119
16130
|
interface Hs6Metadata {
|
|
16120
16131
|
readonly description: string;
|
|
16121
16132
|
}
|
|
@@ -17331,7 +17342,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17331
17342
|
readonly legal_name: string;
|
|
17332
17343
|
readonly shop_name: string;
|
|
17333
17344
|
readonly organization_id: string;
|
|
17334
|
-
readonly onboarding_state: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
17335
17345
|
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
17336
17346
|
readonly gmv: number;
|
|
17337
17347
|
}
|
|
@@ -18380,11 +18390,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18380
18390
|
readonly discriminator: 'fulfilled';
|
|
18381
18391
|
readonly label_tracking_summary_id: string;
|
|
18382
18392
|
}
|
|
18383
|
-
interface ProofOfPostingFullyRefunded {
|
|
18384
|
-
readonly discriminator: 'fully_refunded';
|
|
18385
|
-
readonly capture_id: string;
|
|
18386
|
-
readonly refund_ids: string[];
|
|
18387
|
-
}
|
|
18388
18393
|
interface ProofOfPostingOrderCancellation {
|
|
18389
18394
|
readonly discriminator: 'order_cancellation';
|
|
18390
18395
|
readonly order_cancellation_id: string;
|
|
@@ -19150,6 +19155,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19150
19155
|
readonly api_password_masked?: string;
|
|
19151
19156
|
readonly access_token_masked?: string;
|
|
19152
19157
|
}
|
|
19158
|
+
interface ShopifyMarketsShopDeleted {
|
|
19159
|
+
readonly discriminator: 'shopify_markets_shop_deleted';
|
|
19160
|
+
readonly event_id: string;
|
|
19161
|
+
readonly timestamp: string;
|
|
19162
|
+
readonly organization: string;
|
|
19163
|
+
readonly id: string;
|
|
19164
|
+
}
|
|
19153
19165
|
interface ShopifyMarketsShopForm {
|
|
19154
19166
|
readonly shop: string;
|
|
19155
19167
|
readonly domain: string;
|
|
@@ -19163,6 +19175,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19163
19175
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
19164
19176
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
19165
19177
|
}
|
|
19178
|
+
interface ShopifyMarketsShopUpserted {
|
|
19179
|
+
readonly discriminator: 'shopify_markets_shop_upserted';
|
|
19180
|
+
readonly event_id: string;
|
|
19181
|
+
readonly timestamp: string;
|
|
19182
|
+
readonly organization: string;
|
|
19183
|
+
readonly shopify_markets_shop: io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
19184
|
+
}
|
|
19166
19185
|
interface ShopifyMarketsSubsidiaryCompany {
|
|
19167
19186
|
readonly legal_name?: string;
|
|
19168
19187
|
readonly incorporation_country?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
@@ -19199,7 +19218,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19199
19218
|
readonly organization_reference: io.flow.common.v0.models.OrganizationReference;
|
|
19200
19219
|
readonly order_number: string;
|
|
19201
19220
|
readonly monitor: io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
19202
|
-
readonly created_at: string;
|
|
19203
19221
|
}
|
|
19204
19222
|
interface ShopifyMonitoringOrderMonitorEventDeleted {
|
|
19205
19223
|
readonly discriminator: 'shopify_monitoring_order_monitor_event_deleted';
|
|
@@ -19218,13 +19236,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19218
19236
|
interface ShopifyMonitoringOrderMonitorReview {
|
|
19219
19237
|
readonly id: string;
|
|
19220
19238
|
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
19221
|
-
readonly order_details: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
19222
19239
|
readonly status: io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
19223
19240
|
}
|
|
19224
|
-
interface ShopifyMonitoringOrderMonitorReviewOrderDetails {
|
|
19225
|
-
readonly organization: string;
|
|
19226
|
-
readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
19227
|
-
}
|
|
19228
19241
|
interface ShopifyMonitoringTrackingNumber {
|
|
19229
19242
|
readonly number: string;
|
|
19230
19243
|
}
|
|
@@ -20079,6 +20092,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20079
20092
|
readonly original_transaction_id: string;
|
|
20080
20093
|
readonly description: string;
|
|
20081
20094
|
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
20095
|
+
readonly type?: io.flow.internal.v0.enums.AdjustmentTransactionType;
|
|
20082
20096
|
}
|
|
20083
20097
|
interface TransactionReference {
|
|
20084
20098
|
readonly id: string;
|
|
@@ -20435,7 +20449,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20435
20449
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
20436
20450
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
20437
20451
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
20438
|
-
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
20452
|
+
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
20439
20453
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
20440
20454
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
20441
20455
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -20472,7 +20486,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20472
20486
|
type ProcessorMerchantForm = io.flow.internal.v0.models.StripeMerchantForm;
|
|
20473
20487
|
type ProcessorMerchantModificationForm = io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm;
|
|
20474
20488
|
type ProcessorMerchantPutForm = io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm;
|
|
20475
|
-
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.
|
|
20489
|
+
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
20476
20490
|
type RoutingEntity = io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant;
|
|
20477
20491
|
type ShopifyMonitoringOrderMonitorType = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
20478
20492
|
type ShopifyPromotionOfferDiscount = io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent;
|
|
@@ -20534,6 +20548,7 @@ export declare type AdjustmentDetailsAmountPercentage = io.flow.internal.v0.mode
|
|
|
20534
20548
|
export declare type AdjustmentDetailsProcessingTransaction = io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
20535
20549
|
export declare type AdjustmentDetailsProcessingTransactionFee = io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionFee;
|
|
20536
20550
|
export declare type AdjustmentDetailsProcessingTransactionWithholding = io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionWithholding;
|
|
20551
|
+
export declare type AdjustmentTransactionType = io.flow.internal.v0.enums.AdjustmentTransactionType;
|
|
20537
20552
|
export declare type AdyenAccount = io.flow.internal.v0.models.AdyenAccount;
|
|
20538
20553
|
export declare type AdyenAccountModificationForm = io.flow.internal.v0.models.AdyenAccountModificationForm;
|
|
20539
20554
|
export declare type AdyenAccountPutForm = io.flow.internal.v0.models.AdyenAccountPutForm;
|
|
@@ -21713,6 +21728,7 @@ export declare type HeapWebsocketRequest = io.flow.internal.v0.models.HeapWebsoc
|
|
|
21713
21728
|
export declare type HeapWebsocketResponse = io.flow.internal.v0.models.HeapWebsocketResponse;
|
|
21714
21729
|
export declare type HeapWebsocketRetry = io.flow.internal.v0.models.HeapWebsocketRetry;
|
|
21715
21730
|
export declare type Href = io.flow.internal.v0.models.Href;
|
|
21731
|
+
export declare type Hs6Detail = io.flow.internal.v0.models.Hs6Detail;
|
|
21716
21732
|
export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
21717
21733
|
export declare type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
|
|
21718
21734
|
export declare type HybrisCatalogItemsImportRequest = io.flow.internal.v0.models.HybrisCatalogItemsImportRequest;
|
|
@@ -22148,7 +22164,6 @@ export declare type PromptTarget = io.flow.internal.v0.enums.PromptTarget;
|
|
|
22148
22164
|
export declare type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
22149
22165
|
export declare type ProofOfPostingExternallyFulfilled = io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled;
|
|
22150
22166
|
export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
22151
|
-
export declare type ProofOfPostingFullyRefunded = io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
22152
22167
|
export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
22153
22168
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
22154
22169
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
@@ -22294,8 +22309,10 @@ export declare type ShopifyMarketsOrder = io.flow.internal.v0.models.ShopifyMark
|
|
|
22294
22309
|
export declare type ShopifyMarketsOrderDeleted = io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
|
|
22295
22310
|
export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
22296
22311
|
export declare type ShopifyMarketsShop = io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
22312
|
+
export declare type ShopifyMarketsShopDeleted = io.flow.internal.v0.models.ShopifyMarketsShopDeleted;
|
|
22297
22313
|
export declare type ShopifyMarketsShopForm = io.flow.internal.v0.models.ShopifyMarketsShopForm;
|
|
22298
22314
|
export declare type ShopifyMarketsShopSummary = io.flow.internal.v0.models.ShopifyMarketsShopSummary;
|
|
22315
|
+
export declare type ShopifyMarketsShopUpserted = io.flow.internal.v0.models.ShopifyMarketsShopUpserted;
|
|
22299
22316
|
export declare type ShopifyMarketsSubsidiaryCompany = io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany;
|
|
22300
22317
|
export declare type ShopifyMarketsSync = io.flow.internal.v0.models.ShopifyMarketsSync;
|
|
22301
22318
|
export declare type ShopifyMarketsTradeSector = io.flow.internal.v0.enums.ShopifyMarketsTradeSector;
|
|
@@ -22309,7 +22326,6 @@ export declare type ShopifyMonitoringOrderMonitor = io.flow.internal.v0.models.S
|
|
|
22309
22326
|
export declare type ShopifyMonitoringOrderMonitorEventDeleted = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted;
|
|
22310
22327
|
export declare type ShopifyMonitoringOrderMonitorEventUpserted = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted;
|
|
22311
22328
|
export declare type ShopifyMonitoringOrderMonitorReview = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReview;
|
|
22312
|
-
export declare type ShopifyMonitoringOrderMonitorReviewOrderDetails = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
22313
22329
|
export declare type ShopifyMonitoringOrderMonitorType = io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
22314
22330
|
export declare type ShopifyMonitoringTrackingField = io.flow.internal.v0.enums.ShopifyMonitoringTrackingField;
|
|
22315
22331
|
export declare type ShopifyMonitoringTrackingNumber = io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|