@flowio/types 11.24.46 → 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 +196 -103
- package/dist/api.d.ts +19 -10
- package/package.json +2 -2
- package/src/api-internal.ts +274 -119
- package/src/api.ts +25 -9
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';
|
|
@@ -4293,7 +4229,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4293
4229
|
readonly product_id: number;
|
|
4294
4230
|
readonly name: string;
|
|
4295
4231
|
readonly position: number;
|
|
4296
|
-
readonly values?: string[];
|
|
4297
4232
|
}
|
|
4298
4233
|
interface PriceRule {
|
|
4299
4234
|
readonly id: number;
|
|
@@ -5028,7 +4963,9 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5028
4963
|
type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
5029
4964
|
type FulfillmentOrderDeliveryMethodType = 'local' | 'none' | 'pick_up' | 'retail' | 'shipping';
|
|
5030
4965
|
type IncotermDuties = 'DAP' | 'DDP';
|
|
4966
|
+
type ShopifyDiscountValueType = 'fixed_amount' | 'percentage';
|
|
5031
4967
|
type ShopifyDiscrepancyReason = 'restock' | 'damage' | 'customer' | 'other';
|
|
4968
|
+
type ShopifyDraftOrderStatus = 'open' | 'invoice_sent' | 'completed' | 'pending' | 'authorized' | 'partially_paid' | 'paid' | 'partially_refunded' | 'refunded' | 'voided';
|
|
5032
4969
|
type ShopifyOrderCancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
5033
4970
|
type ShopifyOrderDiscountAllocationMethod = 'across' | 'each' | 'one';
|
|
5034
4971
|
type ShopifyOrderDiscountApplicationTargetSelection = 'all' | 'entitled' | 'explicit';
|
|
@@ -5050,6 +4987,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5050
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';
|
|
5051
4988
|
type ShopifyOrderTransactionStatus = 'pending' | 'failure' | 'success' | 'error';
|
|
5052
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';
|
|
5053
4991
|
type ShopifyWebhookFormat = 'json' | 'xml';
|
|
5054
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';
|
|
5055
4993
|
}
|
|
@@ -5111,10 +5049,53 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5111
5049
|
interface ShopWrapper {
|
|
5112
5050
|
readonly shop: io.flow.shopify.markets.v0.models.Shop;
|
|
5113
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
|
+
}
|
|
5114
5059
|
interface ShopifyCountryHarmonizedSystemCode {
|
|
5115
5060
|
readonly country_code: string;
|
|
5116
5061
|
readonly harmonized_system_code: string;
|
|
5117
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
|
+
}
|
|
5118
5099
|
interface ShopifyError {
|
|
5119
5100
|
readonly errors: any;
|
|
5120
5101
|
}
|
|
@@ -5272,7 +5253,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5272
5253
|
}
|
|
5273
5254
|
interface ShopifyOrderAttribute {
|
|
5274
5255
|
readonly name: string;
|
|
5275
|
-
readonly value:
|
|
5256
|
+
readonly value: any;
|
|
5276
5257
|
}
|
|
5277
5258
|
interface ShopifyOrderCancellationForm {
|
|
5278
5259
|
readonly refund: io.flow.shopify.markets.v0.models.ShopifyRefund;
|
|
@@ -5285,6 +5266,9 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5285
5266
|
readonly session_hash?: string;
|
|
5286
5267
|
readonly user_agent?: string;
|
|
5287
5268
|
}
|
|
5269
|
+
interface ShopifyOrderCount {
|
|
5270
|
+
readonly count: number;
|
|
5271
|
+
}
|
|
5288
5272
|
interface ShopifyOrderCustomer {
|
|
5289
5273
|
readonly id?: number;
|
|
5290
5274
|
readonly email?: string;
|
|
@@ -5378,6 +5362,9 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5378
5362
|
readonly updated_at?: string;
|
|
5379
5363
|
readonly variant_inventory_management?: string;
|
|
5380
5364
|
}
|
|
5365
|
+
interface ShopifyOrderId {
|
|
5366
|
+
readonly id: number;
|
|
5367
|
+
}
|
|
5381
5368
|
interface ShopifyOrderLineItem {
|
|
5382
5369
|
readonly fulfillable_quantity?: number;
|
|
5383
5370
|
readonly fulfillment_service: string;
|
|
@@ -5479,7 +5466,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5479
5466
|
interface ShopifyOrderShippingLine {
|
|
5480
5467
|
readonly code?: string;
|
|
5481
5468
|
readonly price: string;
|
|
5482
|
-
readonly source
|
|
5469
|
+
readonly source?: string;
|
|
5483
5470
|
readonly title: string;
|
|
5484
5471
|
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
5485
5472
|
readonly carrier_identifier?: string;
|
|
@@ -5521,6 +5508,22 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5521
5508
|
interface ShopifyOrdersWrapper {
|
|
5522
5509
|
readonly orders: io.flow.shopify.markets.v0.models.ShopifyOrder[];
|
|
5523
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
|
+
}
|
|
5524
5527
|
interface ShopifyRefund {
|
|
5525
5528
|
readonly notify_x: boolean;
|
|
5526
5529
|
readonly note?: string;
|
|
@@ -8666,7 +8669,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
8666
8669
|
type AttachmentType = 'csv';
|
|
8667
8670
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
8668
8671
|
type PayoutStatusCode = 'scheduled' | 'sent' | 'cancelled' | 'failed' | 'succeeded';
|
|
8669
|
-
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';
|
|
8670
8673
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
8671
8674
|
}
|
|
8672
8675
|
declare namespace io.flow.billing.v0.models {
|
|
@@ -9273,6 +9276,7 @@ declare namespace io.flow.fulfillment.v0.models {
|
|
|
9273
9276
|
}
|
|
9274
9277
|
interface DeliveryOptionCostDetail {
|
|
9275
9278
|
readonly source: io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailSource;
|
|
9279
|
+
readonly ratecard_id?: string;
|
|
9276
9280
|
readonly currency: string;
|
|
9277
9281
|
readonly amount: number;
|
|
9278
9282
|
readonly label: string;
|
|
@@ -9839,10 +9843,6 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
9839
9843
|
interface ActivationPutForm {
|
|
9840
9844
|
readonly placeholder?: boolean;
|
|
9841
9845
|
}
|
|
9842
|
-
interface ApplicationReceived {
|
|
9843
|
-
readonly discriminator: 'application_received';
|
|
9844
|
-
readonly placeholder?: boolean;
|
|
9845
|
-
}
|
|
9846
9846
|
interface InComplianceReview {
|
|
9847
9847
|
readonly discriminator: 'in_compliance_review';
|
|
9848
9848
|
readonly placeholder?: boolean;
|
|
@@ -9879,7 +9879,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
9879
9879
|
}
|
|
9880
9880
|
}
|
|
9881
9881
|
declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
9882
|
-
type OnboardingState = io.flow.organization.onboarding.state.v0.models.
|
|
9882
|
+
type OnboardingState = io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated;
|
|
9883
9883
|
}
|
|
9884
9884
|
declare namespace io.flow.fraud.v0.enums {
|
|
9885
9885
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
@@ -10163,6 +10163,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10163
10163
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
10164
10164
|
type AccountType = 'channel' | 'organization';
|
|
10165
10165
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
10166
|
+
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
10166
10167
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
10167
10168
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
10168
10169
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
@@ -10171,17 +10172,17 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10171
10172
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
10172
10173
|
type BillingStatementReviewStatus = 'approved' | 'pending';
|
|
10173
10174
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
10174
|
-
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';
|
|
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';
|
|
10175
10176
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
10176
10177
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
10177
10178
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
10178
|
-
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis';
|
|
10179
|
+
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
|
|
10179
10180
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
10180
10181
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
10181
|
-
type ChannelBilledTransactionType = 'adjustment' | 'channel_initiated';
|
|
10182
|
+
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
10182
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';
|
|
10183
10184
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
10184
|
-
type ChannelTransactionType = 'adjustment' | 'processing';
|
|
10185
|
+
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
10185
10186
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
10186
10187
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
10187
10188
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -10282,8 +10283,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10282
10283
|
type DutyRateUnitOfMeasure = 'kg' | 'sq m' | 'item' | 'pair';
|
|
10283
10284
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
10284
10285
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
10286
|
+
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10285
10287
|
type EmptyAttribute = 'irrelevant';
|
|
10286
|
-
type
|
|
10288
|
+
type ErpFileType = 'vendor';
|
|
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';
|
|
10287
10290
|
type ExperienceImportType = 'experience_with_settings';
|
|
10288
10291
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10289
10292
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10315,7 +10318,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10315
10318
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
10316
10319
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
10317
10320
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
10318
|
-
type LabelTransactionType = 'adjustment' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10321
|
+
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10319
10322
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
10320
10323
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
10321
10324
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
@@ -10341,7 +10344,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10341
10344
|
type OrderAttributeIntent = 'discount_code';
|
|
10342
10345
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
10343
10346
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
10344
|
-
type OrderTransactionType = 'adjustment' | 'order_service';
|
|
10347
|
+
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
10345
10348
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
10346
10349
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
10347
10350
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
@@ -10357,7 +10360,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10357
10360
|
type PregenDataKeyField = 'shipping_country' | 'shipping_province' | 'invoicing_country' | 'delivery_option_id';
|
|
10358
10361
|
type PriceSelector = 'minimum' | 'maximum';
|
|
10359
10362
|
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
10360
|
-
type ProcessingTransactionType = 'adjustment' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
10363
|
+
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
10361
10364
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
10362
10365
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
10363
10366
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
@@ -10406,7 +10409,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10406
10409
|
type TaskProcessorKey = 'billing_account' | 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'label_generation_settings' | 'ratecard';
|
|
10407
10410
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
10408
10411
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
10409
|
-
type TaxTransactionType = 'adjustment' | 'tax';
|
|
10412
|
+
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
10410
10413
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
10411
10414
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
10412
10415
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
@@ -11302,6 +11305,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11302
11305
|
readonly adjustment: io.flow.common.v0.models.Price;
|
|
11303
11306
|
readonly capture: io.flow.common.v0.models.Price;
|
|
11304
11307
|
readonly refund: io.flow.common.v0.models.Price;
|
|
11308
|
+
readonly reversal: io.flow.common.v0.models.Price;
|
|
11305
11309
|
readonly credit_payment: io.flow.common.v0.models.Price;
|
|
11306
11310
|
readonly fully_subsidized_order: io.flow.common.v0.models.Price;
|
|
11307
11311
|
readonly virtual_card_capture: io.flow.common.v0.models.Price;
|
|
@@ -11882,6 +11886,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11882
11886
|
interface ChannelTransaction {
|
|
11883
11887
|
readonly discriminator: 'channel_transaction';
|
|
11884
11888
|
readonly transaction: io.flow.internal.v0.models.TransactionReference;
|
|
11889
|
+
readonly fees: io.flow.internal.v0.models.Fee[];
|
|
11885
11890
|
readonly id: string;
|
|
11886
11891
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
11887
11892
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -14463,6 +14468,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14463
14468
|
readonly value: number;
|
|
14464
14469
|
readonly unit_of_measure?: io.flow.internal.v0.enums.DutyRateUnitOfMeasure;
|
|
14465
14470
|
}
|
|
14471
|
+
interface DutyTransaction {
|
|
14472
|
+
readonly discriminator: 'duty_transaction';
|
|
14473
|
+
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
14474
|
+
readonly id: string;
|
|
14475
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
14476
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
14477
|
+
readonly posted_at?: string;
|
|
14478
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
14479
|
+
readonly description: string;
|
|
14480
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
14481
|
+
readonly created_at: string;
|
|
14482
|
+
}
|
|
14483
|
+
interface DutyTransactionDeleted {
|
|
14484
|
+
readonly discriminator: 'duty_transaction_deleted';
|
|
14485
|
+
readonly event_id: string;
|
|
14486
|
+
readonly timestamp: string;
|
|
14487
|
+
readonly id: string;
|
|
14488
|
+
}
|
|
14489
|
+
interface DutyTransactionUpserted {
|
|
14490
|
+
readonly discriminator: 'duty_transaction_upserted';
|
|
14491
|
+
readonly event_id: string;
|
|
14492
|
+
readonly timestamp: string;
|
|
14493
|
+
readonly duty_transaction: io.flow.internal.v0.models.DutyTransaction;
|
|
14494
|
+
}
|
|
14466
14495
|
interface EmailForm {
|
|
14467
14496
|
readonly to: string[];
|
|
14468
14497
|
readonly cc?: string[];
|
|
@@ -14483,6 +14512,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14483
14512
|
readonly cipher: string;
|
|
14484
14513
|
readonly passphrase_ids: string[];
|
|
14485
14514
|
}
|
|
14515
|
+
interface ErpFlowFile {
|
|
14516
|
+
readonly id: string;
|
|
14517
|
+
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
14518
|
+
readonly url: string;
|
|
14519
|
+
readonly created_at: string;
|
|
14520
|
+
}
|
|
14521
|
+
interface ErpPriorityFile {
|
|
14522
|
+
readonly id: string;
|
|
14523
|
+
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
14524
|
+
readonly url: string;
|
|
14525
|
+
readonly created_at: string;
|
|
14526
|
+
}
|
|
14527
|
+
interface ErpPriorityFileForm {
|
|
14528
|
+
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
14529
|
+
readonly url: string;
|
|
14530
|
+
}
|
|
14486
14531
|
interface ExclusionRuleDeleted {
|
|
14487
14532
|
readonly discriminator: 'exclusion_rule_deleted';
|
|
14488
14533
|
readonly event_id: string;
|
|
@@ -15395,6 +15440,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15395
15440
|
readonly created_at: string;
|
|
15396
15441
|
readonly updated_at: string;
|
|
15397
15442
|
readonly updated_by_user_id: string;
|
|
15443
|
+
readonly hs6_code?: string;
|
|
15444
|
+
readonly hs6_description?: string;
|
|
15398
15445
|
}
|
|
15399
15446
|
interface HarmonizationItemClassificationDeleted {
|
|
15400
15447
|
readonly discriminator: 'harmonization_item_classification_deleted';
|
|
@@ -15416,6 +15463,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15416
15463
|
interface HarmonizationMlModelSummary {
|
|
15417
15464
|
readonly id?: string;
|
|
15418
15465
|
readonly customs_description?: string;
|
|
15466
|
+
readonly score?: number;
|
|
15419
15467
|
}
|
|
15420
15468
|
interface HarmonizationPhraseSuggestionRequestImport {
|
|
15421
15469
|
readonly discriminator: 'harmonization_phrase_suggestion_request_import';
|
|
@@ -16075,6 +16123,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16075
16123
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
16076
16124
|
readonly url: string;
|
|
16077
16125
|
}
|
|
16126
|
+
interface Hs6Detail {
|
|
16127
|
+
readonly hs6_code: string;
|
|
16128
|
+
readonly description: string;
|
|
16129
|
+
}
|
|
16078
16130
|
interface Hs6Metadata {
|
|
16079
16131
|
readonly description: string;
|
|
16080
16132
|
}
|
|
@@ -17290,7 +17342,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17290
17342
|
readonly legal_name: string;
|
|
17291
17343
|
readonly shop_name: string;
|
|
17292
17344
|
readonly organization_id: string;
|
|
17293
|
-
readonly
|
|
17345
|
+
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
17294
17346
|
readonly gmv: number;
|
|
17295
17347
|
}
|
|
17296
17348
|
interface OneTimeTokenRedemptionForm {
|
|
@@ -17389,6 +17441,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17389
17441
|
readonly id: string;
|
|
17390
17442
|
readonly attribute: io.flow.internal.v0.models.OrderAttribute;
|
|
17391
17443
|
}
|
|
17444
|
+
interface OrderCancellation {
|
|
17445
|
+
readonly id: string;
|
|
17446
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
17447
|
+
readonly evidence: io.flow.internal.v0.unions.OrderCancellationEvidence;
|
|
17448
|
+
}
|
|
17449
|
+
interface OrderCancellationEvidenceFullyRefundedNotFulfilled {
|
|
17450
|
+
readonly discriminator: 'fully_refunded_not_fulfilled';
|
|
17451
|
+
readonly placeholder?: string;
|
|
17452
|
+
}
|
|
17453
|
+
interface OrderCancellationEvidenceManual {
|
|
17454
|
+
readonly discriminator: 'manual';
|
|
17455
|
+
readonly description: string;
|
|
17456
|
+
}
|
|
17457
|
+
interface OrderCancellationForm {
|
|
17458
|
+
readonly evidence: io.flow.internal.v0.models.OrderCancellationEvidenceManual;
|
|
17459
|
+
}
|
|
17392
17460
|
interface OrderDetail {
|
|
17393
17461
|
readonly order: io.flow.experience.v0.models.Order;
|
|
17394
17462
|
readonly status: io.flow.experience.v0.enums.OrderStatus;
|
|
@@ -18322,10 +18390,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18322
18390
|
readonly discriminator: 'fulfilled';
|
|
18323
18391
|
readonly label_tracking_summary_id: string;
|
|
18324
18392
|
}
|
|
18325
|
-
interface
|
|
18326
|
-
readonly discriminator: '
|
|
18327
|
-
readonly
|
|
18328
|
-
readonly refund_ids: string[];
|
|
18393
|
+
interface ProofOfPostingOrderCancellation {
|
|
18394
|
+
readonly discriminator: 'order_cancellation';
|
|
18395
|
+
readonly order_cancellation_id: string;
|
|
18329
18396
|
}
|
|
18330
18397
|
interface ProofOfPostingShippingNotification {
|
|
18331
18398
|
readonly discriminator: 'shipping_notification';
|
|
@@ -19088,6 +19155,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19088
19155
|
readonly api_password_masked?: string;
|
|
19089
19156
|
readonly access_token_masked?: string;
|
|
19090
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
|
+
}
|
|
19091
19165
|
interface ShopifyMarketsShopForm {
|
|
19092
19166
|
readonly shop: string;
|
|
19093
19167
|
readonly domain: string;
|
|
@@ -19101,6 +19175,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19101
19175
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
19102
19176
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
19103
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
|
+
}
|
|
19104
19185
|
interface ShopifyMarketsSubsidiaryCompany {
|
|
19105
19186
|
readonly legal_name?: string;
|
|
19106
19187
|
readonly incorporation_country?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
@@ -19137,7 +19218,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19137
19218
|
readonly organization_reference: io.flow.common.v0.models.OrganizationReference;
|
|
19138
19219
|
readonly order_number: string;
|
|
19139
19220
|
readonly monitor: io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
19140
|
-
readonly created_at: string;
|
|
19141
19221
|
}
|
|
19142
19222
|
interface ShopifyMonitoringOrderMonitorEventDeleted {
|
|
19143
19223
|
readonly discriminator: 'shopify_monitoring_order_monitor_event_deleted';
|
|
@@ -19156,13 +19236,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19156
19236
|
interface ShopifyMonitoringOrderMonitorReview {
|
|
19157
19237
|
readonly id: string;
|
|
19158
19238
|
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
19159
|
-
readonly order_details: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
19160
19239
|
readonly status: io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
19161
19240
|
}
|
|
19162
|
-
interface ShopifyMonitoringOrderMonitorReviewOrderDetails {
|
|
19163
|
-
readonly organization: string;
|
|
19164
|
-
readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
19165
|
-
}
|
|
19166
19241
|
interface ShopifyMonitoringTrackingNumber {
|
|
19167
19242
|
readonly number: string;
|
|
19168
19243
|
}
|
|
@@ -20017,6 +20092,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20017
20092
|
readonly original_transaction_id: string;
|
|
20018
20093
|
readonly description: string;
|
|
20019
20094
|
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
20095
|
+
readonly type?: io.flow.internal.v0.enums.AdjustmentTransactionType;
|
|
20020
20096
|
}
|
|
20021
20097
|
interface TransactionReference {
|
|
20022
20098
|
readonly id: string;
|
|
@@ -20373,7 +20449,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20373
20449
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
20374
20450
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
20375
20451
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
20376
|
-
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.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;
|
|
20377
20453
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
20378
20454
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
20379
20455
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -20399,6 +20475,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20399
20475
|
type MarketingGatewaySourceSummary = io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary | io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary | io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
|
|
20400
20476
|
type OptinPromptDisplay = io.flow.internal.v0.models.OptinPromptCheckoutDisplay;
|
|
20401
20477
|
type OrderActionForm = io.flow.internal.v0.models.WholeOrderActionForm | io.flow.internal.v0.models.LineActionForm | io.flow.internal.v0.models.FulfillmentActionForm;
|
|
20478
|
+
type OrderCancellationEvidence = io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled;
|
|
20402
20479
|
type PaymentRedirect = io.flow.internal.v0.models.OnlineAuthorizationCompleted | io.flow.internal.v0.models.RedirectActionCompleted;
|
|
20403
20480
|
type PaymentSummaryDetails = io.flow.internal.v0.models.SearchAuthorization;
|
|
20404
20481
|
type PlatformFee = io.flow.internal.v0.models.PlatformFeePause | io.flow.internal.v0.models.PlatformFeeFlat | io.flow.internal.v0.models.PlatformFeePercentage | io.flow.internal.v0.models.PlatformFeeDisabled;
|
|
@@ -20409,7 +20486,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20409
20486
|
type ProcessorMerchantForm = io.flow.internal.v0.models.StripeMerchantForm;
|
|
20410
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;
|
|
20411
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;
|
|
20412
|
-
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;
|
|
20413
20490
|
type RoutingEntity = io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant;
|
|
20414
20491
|
type ShopifyMonitoringOrderMonitorType = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
20415
20492
|
type ShopifyPromotionOfferDiscount = io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent;
|
|
@@ -20423,7 +20500,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20423
20500
|
type TaskData = io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport;
|
|
20424
20501
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
20425
20502
|
type Tracker = io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel;
|
|
20426
|
-
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction;
|
|
20503
|
+
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction;
|
|
20427
20504
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
20428
20505
|
type ValidationRule = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
20429
20506
|
type Variant = io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant;
|
|
@@ -20471,6 +20548,7 @@ export declare type AdjustmentDetailsAmountPercentage = io.flow.internal.v0.mode
|
|
|
20471
20548
|
export declare type AdjustmentDetailsProcessingTransaction = io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
20472
20549
|
export declare type AdjustmentDetailsProcessingTransactionFee = io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionFee;
|
|
20473
20550
|
export declare type AdjustmentDetailsProcessingTransactionWithholding = io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionWithholding;
|
|
20551
|
+
export declare type AdjustmentTransactionType = io.flow.internal.v0.enums.AdjustmentTransactionType;
|
|
20474
20552
|
export declare type AdyenAccount = io.flow.internal.v0.models.AdyenAccount;
|
|
20475
20553
|
export declare type AdyenAccountModificationForm = io.flow.internal.v0.models.AdyenAccountModificationForm;
|
|
20476
20554
|
export declare type AdyenAccountPutForm = io.flow.internal.v0.models.AdyenAccountPutForm;
|
|
@@ -21401,11 +21479,19 @@ export declare type DutyRawUpserted = io.flow.internal.v0.models.DutyRawUpserted
|
|
|
21401
21479
|
export declare type DutySelectionRule = io.flow.internal.v0.enums.DutySelectionRule;
|
|
21402
21480
|
export declare type DutySimpleExpression = io.flow.internal.v0.models.DutySimpleExpression;
|
|
21403
21481
|
export declare type DutySimpleExpressionType = io.flow.internal.v0.enums.DutySimpleExpressionType;
|
|
21482
|
+
export declare type DutyTransaction = io.flow.internal.v0.models.DutyTransaction;
|
|
21483
|
+
export declare type DutyTransactionDeleted = io.flow.internal.v0.models.DutyTransactionDeleted;
|
|
21484
|
+
export declare type DutyTransactionType = io.flow.internal.v0.enums.DutyTransactionType;
|
|
21485
|
+
export declare type DutyTransactionUpserted = io.flow.internal.v0.models.DutyTransactionUpserted;
|
|
21404
21486
|
export declare type EmailForm = io.flow.internal.v0.models.EmailForm;
|
|
21405
21487
|
export declare type EmailModificationForm = io.flow.internal.v0.models.EmailModificationForm;
|
|
21406
21488
|
export declare type EmptyAttribute = io.flow.internal.v0.enums.EmptyAttribute;
|
|
21407
21489
|
export declare type EmptyClassificationForm = io.flow.internal.v0.models.EmptyClassificationForm;
|
|
21408
21490
|
export declare type Encryption = io.flow.internal.v0.models.Encryption;
|
|
21491
|
+
export declare type ErpFileType = io.flow.internal.v0.enums.ErpFileType;
|
|
21492
|
+
export declare type ErpFlowFile = io.flow.internal.v0.models.ErpFlowFile;
|
|
21493
|
+
export declare type ErpPriorityFile = io.flow.internal.v0.models.ErpPriorityFile;
|
|
21494
|
+
export declare type ErpPriorityFileForm = io.flow.internal.v0.models.ErpPriorityFileForm;
|
|
21409
21495
|
export declare type Event = io.flow.internal.v0.unions.Event;
|
|
21410
21496
|
export declare type EventType = io.flow.internal.v0.enums.EventType;
|
|
21411
21497
|
export declare type ExclusionRuleDeleted = io.flow.internal.v0.models.ExclusionRuleDeleted;
|
|
@@ -21642,6 +21728,7 @@ export declare type HeapWebsocketRequest = io.flow.internal.v0.models.HeapWebsoc
|
|
|
21642
21728
|
export declare type HeapWebsocketResponse = io.flow.internal.v0.models.HeapWebsocketResponse;
|
|
21643
21729
|
export declare type HeapWebsocketRetry = io.flow.internal.v0.models.HeapWebsocketRetry;
|
|
21644
21730
|
export declare type Href = io.flow.internal.v0.models.Href;
|
|
21731
|
+
export declare type Hs6Detail = io.flow.internal.v0.models.Hs6Detail;
|
|
21645
21732
|
export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
21646
21733
|
export declare type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
|
|
21647
21734
|
export declare type HybrisCatalogItemsImportRequest = io.flow.internal.v0.models.HybrisCatalogItemsImportRequest;
|
|
@@ -21898,6 +21985,11 @@ export declare type OrderAttribute = io.flow.internal.v0.models.OrderAttribute;
|
|
|
21898
21985
|
export declare type OrderAttributeDeleted = io.flow.internal.v0.models.OrderAttributeDeleted;
|
|
21899
21986
|
export declare type OrderAttributeIntent = io.flow.internal.v0.enums.OrderAttributeIntent;
|
|
21900
21987
|
export declare type OrderAttributeUpserted = io.flow.internal.v0.models.OrderAttributeUpserted;
|
|
21988
|
+
export declare type OrderCancellation = io.flow.internal.v0.models.OrderCancellation;
|
|
21989
|
+
export declare type OrderCancellationEvidence = io.flow.internal.v0.unions.OrderCancellationEvidence;
|
|
21990
|
+
export declare type OrderCancellationEvidenceFullyRefundedNotFulfilled = io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled;
|
|
21991
|
+
export declare type OrderCancellationEvidenceManual = io.flow.internal.v0.models.OrderCancellationEvidenceManual;
|
|
21992
|
+
export declare type OrderCancellationForm = io.flow.internal.v0.models.OrderCancellationForm;
|
|
21901
21993
|
export declare type OrderChargeTrigger = io.flow.internal.v0.enums.OrderChargeTrigger;
|
|
21902
21994
|
export declare type OrderDetail = io.flow.internal.v0.models.OrderDetail;
|
|
21903
21995
|
export declare type OrderFulfillmentDeleted = io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
@@ -22072,7 +22164,7 @@ export declare type PromptTarget = io.flow.internal.v0.enums.PromptTarget;
|
|
|
22072
22164
|
export declare type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
22073
22165
|
export declare type ProofOfPostingExternallyFulfilled = io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled;
|
|
22074
22166
|
export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
22075
|
-
export declare type
|
|
22167
|
+
export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
22076
22168
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
22077
22169
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
22078
22170
|
export declare type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
|
|
@@ -22217,8 +22309,10 @@ export declare type ShopifyMarketsOrder = io.flow.internal.v0.models.ShopifyMark
|
|
|
22217
22309
|
export declare type ShopifyMarketsOrderDeleted = io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
|
|
22218
22310
|
export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
22219
22311
|
export declare type ShopifyMarketsShop = io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
22312
|
+
export declare type ShopifyMarketsShopDeleted = io.flow.internal.v0.models.ShopifyMarketsShopDeleted;
|
|
22220
22313
|
export declare type ShopifyMarketsShopForm = io.flow.internal.v0.models.ShopifyMarketsShopForm;
|
|
22221
22314
|
export declare type ShopifyMarketsShopSummary = io.flow.internal.v0.models.ShopifyMarketsShopSummary;
|
|
22315
|
+
export declare type ShopifyMarketsShopUpserted = io.flow.internal.v0.models.ShopifyMarketsShopUpserted;
|
|
22222
22316
|
export declare type ShopifyMarketsSubsidiaryCompany = io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany;
|
|
22223
22317
|
export declare type ShopifyMarketsSync = io.flow.internal.v0.models.ShopifyMarketsSync;
|
|
22224
22318
|
export declare type ShopifyMarketsTradeSector = io.flow.internal.v0.enums.ShopifyMarketsTradeSector;
|
|
@@ -22232,7 +22326,6 @@ export declare type ShopifyMonitoringOrderMonitor = io.flow.internal.v0.models.S
|
|
|
22232
22326
|
export declare type ShopifyMonitoringOrderMonitorEventDeleted = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted;
|
|
22233
22327
|
export declare type ShopifyMonitoringOrderMonitorEventUpserted = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted;
|
|
22234
22328
|
export declare type ShopifyMonitoringOrderMonitorReview = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReview;
|
|
22235
|
-
export declare type ShopifyMonitoringOrderMonitorReviewOrderDetails = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
22236
22329
|
export declare type ShopifyMonitoringOrderMonitorType = io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
22237
22330
|
export declare type ShopifyMonitoringTrackingField = io.flow.internal.v0.enums.ShopifyMonitoringTrackingField;
|
|
22238
22331
|
export declare type ShopifyMonitoringTrackingNumber = io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|