@flowio/api-internal-prop-types 9.24.60 → 9.24.62
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/lib/api-internal.d.ts +108 -93
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +108 -93
- package/src/api-internal.js +272 -249
package/src/api-internal.d.ts
CHANGED
|
@@ -2396,6 +2396,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2396
2396
|
interface Metadata {
|
|
2397
2397
|
readonly 'order_number'?: string;
|
|
2398
2398
|
readonly 'authorization_id'?: string;
|
|
2399
|
+
readonly 'organization_id'?: string;
|
|
2399
2400
|
}
|
|
2400
2401
|
|
|
2401
2402
|
interface NextAction {
|
|
@@ -2772,6 +2773,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2772
2773
|
readonly 'token'?: string;
|
|
2773
2774
|
readonly 'usage': io.flow.stripe.v0.enums.SourceUsageType;
|
|
2774
2775
|
readonly 'source_order'?: io.flow.stripe.v0.models.SourceOrderRequest;
|
|
2776
|
+
readonly 'metadata'?: io.flow.stripe.v0.models.Metadata;
|
|
2775
2777
|
}
|
|
2776
2778
|
|
|
2777
2779
|
interface Stripe3Ds2Fingerprint {
|
|
@@ -2964,6 +2966,14 @@ declare namespace io.flow.label.v0.models {
|
|
|
2964
2966
|
readonly 'order_numbers': string[];
|
|
2965
2967
|
}
|
|
2966
2968
|
|
|
2969
|
+
interface BridgeShippingLabelForm {
|
|
2970
|
+
readonly 'discriminator': 'bridge_shipping_label_form';
|
|
2971
|
+
readonly 'order_number': string;
|
|
2972
|
+
readonly 'items'?: io.flow.common.v0.models.LineItemForm[];
|
|
2973
|
+
readonly 'package'?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
2974
|
+
readonly 'origin'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
2975
|
+
}
|
|
2976
|
+
|
|
2967
2977
|
interface CrossdockShipment {
|
|
2968
2978
|
readonly 'partner_id': string;
|
|
2969
2979
|
readonly 'center_id': string;
|
|
@@ -2980,7 +2990,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
2980
2990
|
readonly 'attributes'?: Record<string, string>;
|
|
2981
2991
|
readonly 'delivered_duty'?: io.flow.common.v0.enums.DeliveredDuty;
|
|
2982
2992
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
2983
|
-
readonly 'order_number'
|
|
2993
|
+
readonly 'order_number': string;
|
|
2984
2994
|
readonly 'service'?: string;
|
|
2985
2995
|
readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
2986
2996
|
}
|
|
@@ -3146,7 +3156,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3146
3156
|
}
|
|
3147
3157
|
|
|
3148
3158
|
declare namespace io.flow.label.v0.unions {
|
|
3149
|
-
type ShippingLabelForm = (io.flow.label.v0.models.DetailedShippingLabelForm | io.flow.label.v0.models.SummaryShippingLabelForm);
|
|
3159
|
+
type ShippingLabelForm = (io.flow.label.v0.models.DetailedShippingLabelForm | io.flow.label.v0.models.SummaryShippingLabelForm | io.flow.label.v0.models.BridgeShippingLabelForm);
|
|
3150
3160
|
type ShippingNotificationForm = (io.flow.label.v0.models.DetailedShippingNotificationForm | io.flow.label.v0.models.SinglePackageShippingNotificationForm | io.flow.label.v0.models.SummaryShippingNotificationForm);
|
|
3151
3161
|
}
|
|
3152
3162
|
|
|
@@ -3963,9 +3973,9 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
3963
3973
|
type Contract = 'RECURRING';
|
|
3964
3974
|
type DeviceChannel = 'app' | 'browser';
|
|
3965
3975
|
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';
|
|
3966
|
-
type
|
|
3976
|
+
type Method = 'GET' | 'POST';
|
|
3967
3977
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
3968
|
-
type PaymentMethod = 'ach' | 'alipay' | '
|
|
3978
|
+
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';
|
|
3969
3979
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
3970
3980
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
3971
3981
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -3987,11 +3997,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3987
3997
|
readonly 'currency': string;
|
|
3988
3998
|
}
|
|
3989
3999
|
|
|
3990
|
-
interface Applepay {
|
|
3991
|
-
readonly 'type': 'applepay';
|
|
3992
|
-
readonly 'applePayToken': string;
|
|
3993
|
-
}
|
|
3994
|
-
|
|
3995
4000
|
interface Authentication {
|
|
3996
4001
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
3997
4002
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -4019,8 +4024,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4019
4024
|
readonly 'browserInfo'?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4020
4025
|
readonly 'threeDS2RequestData'?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
4021
4026
|
readonly 'recurringProcessingModel'?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
4022
|
-
readonly 'mcc'?: string;
|
|
4023
|
-
readonly 'metadata'?: any/*object*/;
|
|
4024
4027
|
}
|
|
4025
4028
|
|
|
4026
4029
|
interface AuthorizeRequest3D {
|
|
@@ -4177,14 +4180,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4177
4180
|
readonly 'paymentData'?: string;
|
|
4178
4181
|
}
|
|
4179
4182
|
|
|
4180
|
-
interface PaymentDetailsV663Ds2Challenge {
|
|
4181
|
-
readonly 'threeds2.challengeResult': string;
|
|
4182
|
-
}
|
|
4183
|
-
|
|
4184
|
-
interface PaymentDetailsV663Ds2Fingerprint {
|
|
4185
|
-
readonly 'threeds2.fingerprint': string;
|
|
4186
|
-
}
|
|
4187
|
-
|
|
4188
4183
|
interface PaymentRequest {
|
|
4189
4184
|
readonly 'reference': string;
|
|
4190
4185
|
readonly 'merchantAccount': string;
|
|
@@ -4206,12 +4201,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4206
4201
|
readonly 'browserInfo'?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4207
4202
|
readonly 'origin'?: string;
|
|
4208
4203
|
readonly 'channel'?: io.flow.adyen.v0.enums.Channel;
|
|
4209
|
-
readonly '
|
|
4210
|
-
readonly 'mcc'?: string;
|
|
4211
|
-
readonly 'metadata'?: any/*object*/;
|
|
4212
|
-
readonly 'redirectToIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4213
|
-
readonly 'redirectFromIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4214
|
-
readonly 'storePaymentMethod'?: boolean;
|
|
4204
|
+
readonly 'returnURL'?: string;
|
|
4215
4205
|
}
|
|
4216
4206
|
|
|
4217
4207
|
interface PaymentResponse {
|
|
@@ -4228,54 +4218,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4228
4218
|
interface PaymentResponseAdditionalData {
|
|
4229
4219
|
readonly 'authCode'?: string;
|
|
4230
4220
|
readonly 'avsResultRaw'?: string;
|
|
4231
|
-
readonly 'avsResult'?: string;
|
|
4232
4221
|
readonly 'cvcResultRaw'?: string;
|
|
4233
|
-
readonly 'cvcResult'?: string;
|
|
4234
|
-
readonly 'refusalReasonRaw'?: string;
|
|
4235
4222
|
readonly 'liabilityShift'?: string;
|
|
4236
4223
|
readonly 'threeDAuthenticated'?: string;
|
|
4237
4224
|
readonly 'threeDAuthenticatedResponse'?: string;
|
|
4238
4225
|
readonly 'threeDOffered'?: string;
|
|
4239
4226
|
readonly 'threeDOfferedResponse'?: string;
|
|
4240
|
-
readonly 'threeDSVersion'?: string;
|
|
4241
|
-
readonly 'eci'?: string;
|
|
4242
|
-
readonly 'cavv'?: string;
|
|
4243
|
-
readonly 'scaExemptionRequested'?: string;
|
|
4244
|
-
readonly 'paymentMethod'?: string;
|
|
4245
|
-
readonly 'paymentMethodVariant'?: string;
|
|
4246
|
-
readonly 'tokenTxVariant'?: string;
|
|
4247
|
-
readonly 'acquirerCode'?: string;
|
|
4248
|
-
readonly 'acquirerAccountCode'?: string;
|
|
4249
|
-
readonly 'cardPaymentMethod'?: string;
|
|
4250
|
-
readonly 'coBrandedWith'?: string;
|
|
4251
|
-
readonly 'cardIssuingCountry'?: string;
|
|
4252
|
-
readonly 'cardIssuingCurrency'?: string;
|
|
4253
|
-
readonly 'cardIssuingBank'?: string;
|
|
4254
|
-
readonly 'cardBin'?: string;
|
|
4255
|
-
readonly 'issuerBin'?: string;
|
|
4256
|
-
readonly 'cardSummary'?: string;
|
|
4257
|
-
readonly 'untokenisedCardSummary'?: string;
|
|
4258
|
-
readonly 'expiryDate'?: string;
|
|
4259
|
-
readonly 'cardHolderName'?: string;
|
|
4260
|
-
readonly 'fundingSource'?: string;
|
|
4261
|
-
readonly 'ownerName'?: string;
|
|
4262
|
-
readonly 'bankName'?: string;
|
|
4263
|
-
readonly 'issuerCountry'?: string;
|
|
4264
|
-
readonly 'iban'?: string;
|
|
4265
|
-
readonly 'bic'?: string;
|
|
4266
|
-
readonly 'iDealConsumerAccountNumber'?: string;
|
|
4267
|
-
readonly 'iDealConsumerBIC'?: string;
|
|
4268
|
-
readonly 'iDealConsumerCity'?: string;
|
|
4269
|
-
readonly 'iDealConsumerIBAN'?: string;
|
|
4270
|
-
readonly 'iDealConsumerName'?: string;
|
|
4271
|
-
readonly 'iDealTransactionId'?: string;
|
|
4272
|
-
readonly 'recurring.recurringDetailReference'?: string;
|
|
4273
|
-
readonly 'recurring.shopperReference'?: string;
|
|
4274
|
-
readonly 'networkTxReference'?: string;
|
|
4275
|
-
readonly 'PaymentAccountReference'?: string;
|
|
4276
|
-
readonly 'networkToken.available'?: string;
|
|
4277
|
-
readonly 'networkToken.bin'?: string;
|
|
4278
|
-
readonly 'networkToken.tokenSummary'?: string;
|
|
4279
4227
|
}
|
|
4280
4228
|
|
|
4281
4229
|
interface Recurring {
|
|
@@ -4284,7 +4232,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4284
4232
|
|
|
4285
4233
|
interface Redirect {
|
|
4286
4234
|
readonly 'data'?: io.flow.adyen.v0.models.RedirectData;
|
|
4287
|
-
readonly 'method'?: io.flow.adyen.v0.enums.
|
|
4235
|
+
readonly 'method'?: io.flow.adyen.v0.enums.Method;
|
|
4288
4236
|
readonly 'url'?: string;
|
|
4289
4237
|
}
|
|
4290
4238
|
|
|
@@ -4307,17 +4255,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4307
4255
|
readonly 'holderName': string;
|
|
4308
4256
|
readonly 'number': string;
|
|
4309
4257
|
readonly 'cvc'?: string;
|
|
4310
|
-
readonly 'storedPaymentMethodId'?: string;
|
|
4311
|
-
readonly 'networkPaymentReference'?: string;
|
|
4312
|
-
}
|
|
4313
|
-
|
|
4314
|
-
interface SdkV3OnCompleteData {
|
|
4315
|
-
readonly 'details': any/*object*/;
|
|
4316
|
-
readonly 'payment_data'?: string;
|
|
4317
|
-
}
|
|
4318
|
-
|
|
4319
|
-
interface SdkV3OnCompleteResult {
|
|
4320
|
-
readonly 'data': io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
4321
4258
|
}
|
|
4322
4259
|
|
|
4323
4260
|
interface ThreeDSecureData {
|
|
@@ -4349,7 +4286,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4349
4286
|
|
|
4350
4287
|
declare namespace io.flow.adyen.v0.unions {
|
|
4351
4288
|
type BrowserInfo = (io.flow.adyen.v0.models.BrowserInfo3Ds1 | io.flow.adyen.v0.models.BrowserInfo3Ds2);
|
|
4352
|
-
type PaymentMethodData = (io.flow.adyen.v0.models.Scheme
|
|
4289
|
+
type PaymentMethodData = (io.flow.adyen.v0.models.Scheme);
|
|
4353
4290
|
}
|
|
4354
4291
|
|
|
4355
4292
|
declare namespace io.flow.order.management.v0.enums {
|
|
@@ -6858,12 +6795,17 @@ declare namespace io.flow.partner.v0.enums {
|
|
|
6858
6795
|
}
|
|
6859
6796
|
|
|
6860
6797
|
declare namespace io.flow.partner.v0.models {
|
|
6798
|
+
interface BridgeHub {
|
|
6799
|
+
readonly 'hub_code': string;
|
|
6800
|
+
readonly 'address': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
6801
|
+
}
|
|
6802
|
+
|
|
6861
6803
|
interface BridgeLabelForm {
|
|
6862
6804
|
readonly 'discriminator': 'bridge_label_form';
|
|
6863
6805
|
readonly 'organization': string;
|
|
6864
6806
|
readonly 'order_number': string;
|
|
6865
6807
|
readonly 'package': io.flow.partner.v0.models.BridgeLabelPackage;
|
|
6866
|
-
readonly '
|
|
6808
|
+
readonly 'hub'?: io.flow.partner.v0.models.BridgeHub;
|
|
6867
6809
|
}
|
|
6868
6810
|
|
|
6869
6811
|
interface BridgeLabelPackage {
|
|
@@ -10225,7 +10167,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
10225
10167
|
type PayoutAttachmentType = 'transactions';
|
|
10226
10168
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
|
|
10227
10169
|
type StatementAttachmentType = 'csv';
|
|
10228
|
-
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';
|
|
10170
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
10229
10171
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
10230
10172
|
}
|
|
10231
10173
|
|
|
@@ -11541,10 +11483,10 @@ declare namespace io.flow.catalog.RESERVED_WORD_return.v0.models {
|
|
|
11541
11483
|
}
|
|
11542
11484
|
|
|
11543
11485
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
11544
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
11486
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postal_address' | 'phonetic_name';
|
|
11545
11487
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
11546
11488
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
11547
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
11489
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'store_pickup' | 'service_pickup';
|
|
11548
11490
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
11549
11491
|
}
|
|
11550
11492
|
|
|
@@ -11552,7 +11494,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
11552
11494
|
interface ApplePayLineItem {
|
|
11553
11495
|
readonly 'label': string;
|
|
11554
11496
|
readonly 'type': io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
11555
|
-
readonly 'amount':
|
|
11497
|
+
readonly 'amount': number;
|
|
11556
11498
|
}
|
|
11557
11499
|
|
|
11558
11500
|
interface ApplePayPaymentContact {
|
|
@@ -11603,7 +11545,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
11603
11545
|
interface ApplePayShippingMethod {
|
|
11604
11546
|
readonly 'label': string;
|
|
11605
11547
|
readonly 'detail': string;
|
|
11606
|
-
readonly 'amount':
|
|
11548
|
+
readonly 'amount': number;
|
|
11607
11549
|
readonly 'identifier': string;
|
|
11608
11550
|
}
|
|
11609
11551
|
}
|
|
@@ -12177,7 +12119,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12177
12119
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
12178
12120
|
type EmptyAttribute = 'irrelevant';
|
|
12179
12121
|
type ErpFileType = 'vendor';
|
|
12180
|
-
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' | 'label_generation_settings_upserted' | 'label_generation_settings_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' | 'catalog_settings_upserted' | 'catalog_settings_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' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | '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' | 'harmonization_classification_statistics_published' | '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_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_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' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_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_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_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';
|
|
12122
|
+
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' | 'label_generation_settings_upserted' | 'label_generation_settings_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' | 'catalog_settings_upserted' | 'catalog_settings_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' | 'organization_bank_account_upserted' | 'organization_bank_account_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' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | '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' | 'harmonization_classification_statistics_published' | '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_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_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' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_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_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_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';
|
|
12181
12123
|
type ExperienceImportType = 'experience_with_settings';
|
|
12182
12124
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12183
12125
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12209,6 +12151,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12209
12151
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
12210
12152
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
12211
12153
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
12154
|
+
type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
|
|
12212
12155
|
type LabelInputSource = 'estimate';
|
|
12213
12156
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
12214
12157
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
@@ -12233,8 +12176,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12233
12176
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'miscellaneous';
|
|
12234
12177
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
12235
12178
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
12179
|
+
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
12236
12180
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
12237
12181
|
type OrderAttributeIntent = 'discount_code';
|
|
12182
|
+
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
12238
12183
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
12239
12184
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
12240
12185
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
@@ -12371,6 +12316,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12371
12316
|
readonly 'payment_conditions'?: string;
|
|
12372
12317
|
readonly 'deposit_rule'?: io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
12373
12318
|
readonly 'center_key'?: string;
|
|
12319
|
+
readonly 'bank_account_id'?: string;
|
|
12374
12320
|
}
|
|
12375
12321
|
|
|
12376
12322
|
interface AccountOrdersExportRequest {
|
|
@@ -13074,6 +13020,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13074
13020
|
readonly 'experiment_key'?: string;
|
|
13075
13021
|
}
|
|
13076
13022
|
|
|
13023
|
+
interface BankAccountReference {
|
|
13024
|
+
readonly 'id': string;
|
|
13025
|
+
}
|
|
13026
|
+
|
|
13077
13027
|
interface BankPayment {
|
|
13078
13028
|
readonly 'id': string;
|
|
13079
13029
|
readonly 'key': string;
|
|
@@ -13822,6 +13772,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13822
13772
|
readonly 'center_key'?: string;
|
|
13823
13773
|
readonly 'statistics': io.flow.internal.v0.models.AccountStatistics;
|
|
13824
13774
|
readonly 'next_statement': io.flow.internal.v0.models.NextBillingStatement;
|
|
13775
|
+
readonly 'bank_account'?: io.flow.internal.v0.models.BankAccountReference;
|
|
13825
13776
|
readonly 'created_at': string;
|
|
13826
13777
|
}
|
|
13827
13778
|
|
|
@@ -16576,6 +16527,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16576
16527
|
readonly 'total': number;
|
|
16577
16528
|
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
16578
16529
|
readonly 'weight': number;
|
|
16530
|
+
readonly 'variance': number;
|
|
16579
16531
|
}
|
|
16580
16532
|
|
|
16581
16533
|
interface CsvLabel {
|
|
@@ -16614,8 +16566,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16614
16566
|
readonly 'dimensions': io.flow.internal.v0.models.CsvDimensions;
|
|
16615
16567
|
readonly 'input'?: io.flow.internal.v0.models.CsvInput;
|
|
16616
16568
|
readonly 'actual'?: io.flow.internal.v0.models.CsvActual;
|
|
16617
|
-
readonly '
|
|
16618
|
-
readonly '
|
|
16569
|
+
readonly 'variance'?: number;
|
|
16570
|
+
readonly 'deltas': string[];
|
|
16571
|
+
readonly 'outliers': string[];
|
|
16619
16572
|
}
|
|
16620
16573
|
|
|
16621
16574
|
interface CsvServiceFee {
|
|
@@ -16950,6 +16903,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16950
16903
|
readonly 'display'?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
16951
16904
|
}
|
|
16952
16905
|
|
|
16906
|
+
interface DestinationError {
|
|
16907
|
+
readonly 'id': string;
|
|
16908
|
+
readonly 'failed_at': string;
|
|
16909
|
+
readonly 'error': string;
|
|
16910
|
+
readonly 'destination': io.flow.common.v0.models.Address;
|
|
16911
|
+
}
|
|
16912
|
+
|
|
16953
16913
|
interface Details {
|
|
16954
16914
|
readonly 'catalog_item': io.flow.common.v0.models.CatalogItemSummary;
|
|
16955
16915
|
readonly 'experience'?: io.flow.common.v0.models.ExperienceSummary;
|
|
@@ -17870,7 +17830,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17870
17830
|
|
|
17871
17831
|
interface FinanceBankAccount {
|
|
17872
17832
|
readonly 'id': string;
|
|
17873
|
-
readonly '
|
|
17833
|
+
readonly 'accounts': io.flow.internal.v0.models.AccountSummary[];
|
|
17874
17834
|
readonly 'last4': string;
|
|
17875
17835
|
readonly 'info': io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
17876
17836
|
readonly 'owner'?: io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
@@ -18014,6 +17974,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18014
17974
|
readonly 'center_key'?: string;
|
|
18015
17975
|
readonly 'statistics': io.flow.internal.v0.models.AccountStatistics;
|
|
18016
17976
|
readonly 'next_statement': io.flow.internal.v0.models.NextBillingStatement;
|
|
17977
|
+
readonly 'bank_account'?: io.flow.internal.v0.models.BankAccountReference;
|
|
18017
17978
|
readonly 'created_at': string;
|
|
18018
17979
|
}
|
|
18019
17980
|
|
|
@@ -19776,6 +19737,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19776
19737
|
readonly 'reference_id'?: string;
|
|
19777
19738
|
}
|
|
19778
19739
|
|
|
19740
|
+
interface LabelGenerationAddressFailureStatusUpdateForm {
|
|
19741
|
+
readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
19742
|
+
}
|
|
19743
|
+
|
|
19744
|
+
interface LabelGenerationAddressFailures {
|
|
19745
|
+
readonly 'id': string;
|
|
19746
|
+
readonly 'organization_id': string;
|
|
19747
|
+
readonly 'status': io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
19748
|
+
readonly 'order_number': string;
|
|
19749
|
+
readonly 'order_submitted_at': string;
|
|
19750
|
+
readonly 'carrier_id': string;
|
|
19751
|
+
readonly 'destination_errors': io.flow.internal.v0.models.DestinationError[];
|
|
19752
|
+
}
|
|
19753
|
+
|
|
19779
19754
|
interface LabelGenerationSettings {
|
|
19780
19755
|
readonly 'id': string;
|
|
19781
19756
|
readonly 'item_identifier'?: string;
|
|
@@ -20660,6 +20635,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20660
20635
|
readonly 'setup_completed_at'?: string;
|
|
20661
20636
|
readonly 'gmv': number;
|
|
20662
20637
|
readonly 'health_score': number;
|
|
20638
|
+
readonly 'blocked_since'?: string;
|
|
20663
20639
|
}
|
|
20664
20640
|
|
|
20665
20641
|
interface OnboardingStateForm {
|
|
@@ -20794,8 +20770,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20794
20770
|
readonly 'description': string;
|
|
20795
20771
|
}
|
|
20796
20772
|
|
|
20773
|
+
interface OrderCancellationEvidenceReturnToSender {
|
|
20774
|
+
readonly 'discriminator': 'return_to_sender';
|
|
20775
|
+
readonly 'initiated_by': io.flow.internal.v0.enums.OrderCancellationInitiatedBy;
|
|
20776
|
+
}
|
|
20777
|
+
|
|
20797
20778
|
interface OrderCancellationForm {
|
|
20798
|
-
readonly 'evidence': io.flow.internal.v0.
|
|
20779
|
+
readonly 'evidence': io.flow.internal.v0.unions.OrderCancellationEvidence;
|
|
20799
20780
|
}
|
|
20800
20781
|
|
|
20801
20782
|
interface OrderDetail {
|
|
@@ -20964,6 +20945,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20964
20945
|
readonly 'center_key'?: string;
|
|
20965
20946
|
readonly 'statistics': io.flow.internal.v0.models.AccountStatistics;
|
|
20966
20947
|
readonly 'next_statement': io.flow.internal.v0.models.NextBillingStatement;
|
|
20948
|
+
readonly 'bank_account'?: io.flow.internal.v0.models.BankAccountReference;
|
|
20967
20949
|
readonly 'created_at': string;
|
|
20968
20950
|
}
|
|
20969
20951
|
|
|
@@ -20981,6 +20963,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20981
20963
|
readonly 'organization_account': io.flow.internal.v0.models.OrganizationAccount;
|
|
20982
20964
|
}
|
|
20983
20965
|
|
|
20966
|
+
interface OrganizationBankAccountDeleted {
|
|
20967
|
+
readonly 'discriminator': 'organization_bank_account_deleted';
|
|
20968
|
+
readonly 'event_id': string;
|
|
20969
|
+
readonly 'timestamp': string;
|
|
20970
|
+
readonly 'organization': string;
|
|
20971
|
+
readonly 'id': string;
|
|
20972
|
+
}
|
|
20973
|
+
|
|
20974
|
+
interface OrganizationBankAccountUpserted {
|
|
20975
|
+
readonly 'discriminator': 'organization_bank_account_upserted';
|
|
20976
|
+
readonly 'event_id': string;
|
|
20977
|
+
readonly 'timestamp': string;
|
|
20978
|
+
readonly 'organization': string;
|
|
20979
|
+
readonly 'organization_bank_account': io.flow.billing.v0.models.OrganizationBankAccount;
|
|
20980
|
+
}
|
|
20981
|
+
|
|
20984
20982
|
interface OrganizationBillingStatement {
|
|
20985
20983
|
readonly 'id': string;
|
|
20986
20984
|
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
@@ -21155,6 +21153,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21155
21153
|
readonly 'hs_code'?: string;
|
|
21156
21154
|
readonly 'merchant_category_code'?: string;
|
|
21157
21155
|
readonly 'notes'?: io.flow.internal.v0.models.OrganizationRestrictionNoteForm[];
|
|
21156
|
+
readonly 'screening_first_viewed_at'?: string;
|
|
21157
|
+
readonly 'onboarding_first_viewed_at'?: string;
|
|
21158
21158
|
}
|
|
21159
21159
|
|
|
21160
21160
|
interface OrganizationRestrictionSnapshot {
|
|
@@ -21197,6 +21197,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21197
21197
|
readonly 'full_review_end_date'?: string;
|
|
21198
21198
|
readonly 'merchant_category_code'?: string;
|
|
21199
21199
|
readonly 'reason'?: string;
|
|
21200
|
+
readonly 'screening_first_viewed_at'?: string;
|
|
21201
|
+
readonly 'onboarding_first_viewed_at'?: string;
|
|
21200
21202
|
readonly 'updated_at': string;
|
|
21201
21203
|
}
|
|
21202
21204
|
|
|
@@ -22534,11 +22536,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22534
22536
|
readonly 'regions': string[];
|
|
22535
22537
|
readonly 'positive_keywords': string[];
|
|
22536
22538
|
readonly 'negative_keywords': string[];
|
|
22539
|
+
readonly 'value_threshold_usd'?: number;
|
|
22537
22540
|
}
|
|
22538
22541
|
|
|
22539
22542
|
interface RestrictionRuleDecisionForm {
|
|
22540
22543
|
readonly 'rule_id': string;
|
|
22541
22544
|
readonly 'decision': io.flow.internal.v0.enums.RestrictionDecision;
|
|
22545
|
+
readonly 'product_id'?: string;
|
|
22542
22546
|
}
|
|
22543
22547
|
|
|
22544
22548
|
interface RestrictionRuleForm {
|
|
@@ -22548,6 +22552,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22548
22552
|
readonly 'regions': string[];
|
|
22549
22553
|
readonly 'positive_keywords': string[];
|
|
22550
22554
|
readonly 'negative_keywords': string[];
|
|
22555
|
+
readonly 'value_threshold_usd'?: number;
|
|
22551
22556
|
}
|
|
22552
22557
|
|
|
22553
22558
|
interface RestrictionRuleMetadata {
|
|
@@ -24462,7 +24467,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24462
24467
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
24463
24468
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
24464
24469
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
24465
|
-
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.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | 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.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | 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.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | 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.HarmonizationClassificationStatisticsPublished | 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.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | 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.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | 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.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | 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);
|
|
24470
|
+
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.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | 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.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | 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.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | 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.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | 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.HarmonizationClassificationStatisticsPublished | 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.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | 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.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | 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.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | 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);
|
|
24466
24471
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
24467
24472
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
24468
24473
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -24490,7 +24495,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24490
24495
|
type MarketingGatewaySourceSummary = (io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary | io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary | io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary);
|
|
24491
24496
|
type OptinPromptDisplay = (io.flow.internal.v0.models.OptinPromptCheckoutDisplay);
|
|
24492
24497
|
type OrderActionForm = (io.flow.internal.v0.models.WholeOrderActionForm | io.flow.internal.v0.models.LineActionForm | io.flow.internal.v0.models.FulfillmentActionForm);
|
|
24493
|
-
type OrderCancellationEvidence = (io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled);
|
|
24498
|
+
type OrderCancellationEvidence = (io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender);
|
|
24494
24499
|
type PaymentRedirect = (io.flow.internal.v0.models.OnlineAuthorizationCompleted | io.flow.internal.v0.models.RedirectActionCompleted);
|
|
24495
24500
|
type PaymentSummaryDetails = (io.flow.internal.v0.models.SearchAuthorization);
|
|
24496
24501
|
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);
|
|
@@ -24681,6 +24686,7 @@ export const keywordType: PropTypes.Requireable<io.flow.internal.v0.enums.Keywor
|
|
|
24681
24686
|
export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.LabelBillingStrategy>;
|
|
24682
24687
|
export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
|
|
24683
24688
|
export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
|
|
24689
|
+
export const labelGenerationAddressFailureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus>;
|
|
24684
24690
|
export const labelInputSource: PropTypes.Requireable<io.flow.internal.v0.enums.LabelInputSource>;
|
|
24685
24691
|
export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
|
|
24686
24692
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
@@ -24705,8 +24711,10 @@ export const onboardingAuditResult: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
24705
24711
|
export const onboardingAuditThemeKey: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAuditThemeKey>;
|
|
24706
24712
|
export const onboardingAutomationProcessState: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAutomationProcessState>;
|
|
24707
24713
|
export const onboardingAutomationTaskState: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAutomationTaskState>;
|
|
24714
|
+
export const onboardingStateSource: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingStateSource>;
|
|
24708
24715
|
export const orderAction: PropTypes.Requireable<io.flow.internal.v0.enums.OrderAction>;
|
|
24709
24716
|
export const orderAttributeIntent: PropTypes.Requireable<io.flow.internal.v0.enums.OrderAttributeIntent>;
|
|
24717
|
+
export const orderCancellationInitiatedBy: PropTypes.Requireable<io.flow.internal.v0.enums.OrderCancellationInitiatedBy>;
|
|
24710
24718
|
export const orderChargeTrigger: PropTypes.Requireable<io.flow.internal.v0.enums.OrderChargeTrigger>;
|
|
24711
24719
|
export const orderLifecycleEvent: PropTypes.Requireable<io.flow.internal.v0.enums.OrderLifecycleEvent>;
|
|
24712
24720
|
export const orderTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.OrderTransactionType>;
|
|
@@ -24883,6 +24891,7 @@ export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0
|
|
|
24883
24891
|
export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
|
|
24884
24892
|
export const backfill: PropTypes.Requireable<io.flow.internal.v0.models.Backfill>;
|
|
24885
24893
|
export const backfillForm: PropTypes.Requireable<io.flow.internal.v0.models.BackfillForm>;
|
|
24894
|
+
export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
|
|
24886
24895
|
export const bankPayment: PropTypes.Requireable<io.flow.internal.v0.models.BankPayment>;
|
|
24887
24896
|
export const bankPaymentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentDeleted>;
|
|
24888
24897
|
export const bankPaymentDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentDeletedV2>;
|
|
@@ -25512,6 +25521,7 @@ export const deliveredDutyOptions: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
25512
25521
|
export const deliveredDutyOptionsMessage: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyOptionsMessage>;
|
|
25513
25522
|
export const deliveredDutyPreference: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreference>;
|
|
25514
25523
|
export const deliveredDutyPreferenceForm: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreferenceForm>;
|
|
25524
|
+
export const destinationError: PropTypes.Requireable<io.flow.internal.v0.models.DestinationError>;
|
|
25515
25525
|
export const details: PropTypes.Requireable<io.flow.internal.v0.models.Details>;
|
|
25516
25526
|
export const dhl: PropTypes.Requireable<io.flow.internal.v0.models.Dhl>;
|
|
25517
25527
|
export const dhlEcommerce: PropTypes.Requireable<io.flow.internal.v0.models.DhlEcommerce>;
|
|
@@ -25857,6 +25867,8 @@ export const labelCancellationError: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
25857
25867
|
export const labelCreationJob: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJob>;
|
|
25858
25868
|
export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobSummary>;
|
|
25859
25869
|
export const labelCreationRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationRequestForm>;
|
|
25870
|
+
export const labelGenerationAddressFailureStatusUpdateForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationAddressFailureStatusUpdateForm>;
|
|
25871
|
+
export const labelGenerationAddressFailures: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationAddressFailures>;
|
|
25860
25872
|
export const labelGenerationSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettings>;
|
|
25861
25873
|
export const labelGenerationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsDeleted>;
|
|
25862
25874
|
export const labelGenerationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsForm>;
|
|
@@ -25995,6 +26007,7 @@ export const orderAttributeUpserted: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
25995
26007
|
export const orderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellation>;
|
|
25996
26008
|
export const orderCancellationEvidenceFullyRefundedNotFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled>;
|
|
25997
26009
|
export const orderCancellationEvidenceManual: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceManual>;
|
|
26010
|
+
export const orderCancellationEvidenceReturnToSender: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender>;
|
|
25998
26011
|
export const orderCancellationForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationForm>;
|
|
25999
26012
|
export const orderDetail: PropTypes.Requireable<io.flow.internal.v0.models.OrderDetail>;
|
|
26000
26013
|
export const orderFulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentDeleted>;
|
|
@@ -26019,6 +26032,8 @@ export const orderTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0
|
|
|
26019
26032
|
export const organizationAccount: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccount>;
|
|
26020
26033
|
export const organizationAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountDeleted>;
|
|
26021
26034
|
export const organizationAccountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountUpsertedV2>;
|
|
26035
|
+
export const organizationBankAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBankAccountDeleted>;
|
|
26036
|
+
export const organizationBankAccountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBankAccountUpserted>;
|
|
26022
26037
|
export const organizationBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBillingStatement>;
|
|
26023
26038
|
export const organizationBooleanValue: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValue>;
|
|
26024
26039
|
export const organizationBooleanValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValueDeleted>;
|