@flowio/api-internal-prop-types 9.24.61 → 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 +77 -88
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +77 -88
- package/src/api-internal.js +224 -243
package/lib/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 {
|
|
@@ -11546,10 +11483,10 @@ declare namespace io.flow.catalog.RESERVED_WORD_return.v0.models {
|
|
|
11546
11483
|
}
|
|
11547
11484
|
|
|
11548
11485
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
11549
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
11486
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postal_address' | 'phonetic_name';
|
|
11550
11487
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
11551
11488
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
11552
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
11489
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'store_pickup' | 'service_pickup';
|
|
11553
11490
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
11554
11491
|
}
|
|
11555
11492
|
|
|
@@ -11557,7 +11494,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
11557
11494
|
interface ApplePayLineItem {
|
|
11558
11495
|
readonly 'label': string;
|
|
11559
11496
|
readonly 'type': io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
11560
|
-
readonly 'amount':
|
|
11497
|
+
readonly 'amount': number;
|
|
11561
11498
|
}
|
|
11562
11499
|
|
|
11563
11500
|
interface ApplePayPaymentContact {
|
|
@@ -11608,7 +11545,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
11608
11545
|
interface ApplePayShippingMethod {
|
|
11609
11546
|
readonly 'label': string;
|
|
11610
11547
|
readonly 'detail': string;
|
|
11611
|
-
readonly 'amount':
|
|
11548
|
+
readonly 'amount': number;
|
|
11612
11549
|
readonly 'identifier': string;
|
|
11613
11550
|
}
|
|
11614
11551
|
}
|
|
@@ -12182,7 +12119,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12182
12119
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
12183
12120
|
type EmptyAttribute = 'irrelevant';
|
|
12184
12121
|
type ErpFileType = 'vendor';
|
|
12185
|
-
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';
|
|
12186
12123
|
type ExperienceImportType = 'experience_with_settings';
|
|
12187
12124
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12188
12125
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12214,6 +12151,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12214
12151
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
12215
12152
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
12216
12153
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
12154
|
+
type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
|
|
12217
12155
|
type LabelInputSource = 'estimate';
|
|
12218
12156
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
12219
12157
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
@@ -16589,6 +16527,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16589
16527
|
readonly 'total': number;
|
|
16590
16528
|
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
16591
16529
|
readonly 'weight': number;
|
|
16530
|
+
readonly 'variance': number;
|
|
16592
16531
|
}
|
|
16593
16532
|
|
|
16594
16533
|
interface CsvLabel {
|
|
@@ -16627,8 +16566,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16627
16566
|
readonly 'dimensions': io.flow.internal.v0.models.CsvDimensions;
|
|
16628
16567
|
readonly 'input'?: io.flow.internal.v0.models.CsvInput;
|
|
16629
16568
|
readonly 'actual'?: io.flow.internal.v0.models.CsvActual;
|
|
16630
|
-
readonly '
|
|
16631
|
-
readonly '
|
|
16569
|
+
readonly 'variance'?: number;
|
|
16570
|
+
readonly 'deltas': string[];
|
|
16571
|
+
readonly 'outliers': string[];
|
|
16632
16572
|
}
|
|
16633
16573
|
|
|
16634
16574
|
interface CsvServiceFee {
|
|
@@ -16963,6 +16903,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16963
16903
|
readonly 'display'?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
16964
16904
|
}
|
|
16965
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
|
+
|
|
16966
16913
|
interface Details {
|
|
16967
16914
|
readonly 'catalog_item': io.flow.common.v0.models.CatalogItemSummary;
|
|
16968
16915
|
readonly 'experience'?: io.flow.common.v0.models.ExperienceSummary;
|
|
@@ -19790,6 +19737,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19790
19737
|
readonly 'reference_id'?: string;
|
|
19791
19738
|
}
|
|
19792
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
|
+
|
|
19793
19754
|
interface LabelGenerationSettings {
|
|
19794
19755
|
readonly 'id': string;
|
|
19795
19756
|
readonly 'item_identifier'?: string;
|
|
@@ -21002,6 +20963,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21002
20963
|
readonly 'organization_account': io.flow.internal.v0.models.OrganizationAccount;
|
|
21003
20964
|
}
|
|
21004
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
|
+
|
|
21005
20982
|
interface OrganizationBillingStatement {
|
|
21006
20983
|
readonly 'id': string;
|
|
21007
20984
|
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
@@ -21176,6 +21153,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21176
21153
|
readonly 'hs_code'?: string;
|
|
21177
21154
|
readonly 'merchant_category_code'?: string;
|
|
21178
21155
|
readonly 'notes'?: io.flow.internal.v0.models.OrganizationRestrictionNoteForm[];
|
|
21156
|
+
readonly 'screening_first_viewed_at'?: string;
|
|
21157
|
+
readonly 'onboarding_first_viewed_at'?: string;
|
|
21179
21158
|
}
|
|
21180
21159
|
|
|
21181
21160
|
interface OrganizationRestrictionSnapshot {
|
|
@@ -21218,6 +21197,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21218
21197
|
readonly 'full_review_end_date'?: string;
|
|
21219
21198
|
readonly 'merchant_category_code'?: string;
|
|
21220
21199
|
readonly 'reason'?: string;
|
|
21200
|
+
readonly 'screening_first_viewed_at'?: string;
|
|
21201
|
+
readonly 'onboarding_first_viewed_at'?: string;
|
|
21221
21202
|
readonly 'updated_at': string;
|
|
21222
21203
|
}
|
|
21223
21204
|
|
|
@@ -22555,6 +22536,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22555
22536
|
readonly 'regions': string[];
|
|
22556
22537
|
readonly 'positive_keywords': string[];
|
|
22557
22538
|
readonly 'negative_keywords': string[];
|
|
22539
|
+
readonly 'value_threshold_usd'?: number;
|
|
22558
22540
|
}
|
|
22559
22541
|
|
|
22560
22542
|
interface RestrictionRuleDecisionForm {
|
|
@@ -22570,6 +22552,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22570
22552
|
readonly 'regions': string[];
|
|
22571
22553
|
readonly 'positive_keywords': string[];
|
|
22572
22554
|
readonly 'negative_keywords': string[];
|
|
22555
|
+
readonly 'value_threshold_usd'?: number;
|
|
22573
22556
|
}
|
|
22574
22557
|
|
|
22575
22558
|
interface RestrictionRuleMetadata {
|
|
@@ -24484,7 +24467,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24484
24467
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
24485
24468
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
24486
24469
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
24487
|
-
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);
|
|
24488
24471
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
24489
24472
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
24490
24473
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -24703,6 +24686,7 @@ export const keywordType: PropTypes.Requireable<io.flow.internal.v0.enums.Keywor
|
|
|
24703
24686
|
export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.LabelBillingStrategy>;
|
|
24704
24687
|
export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
|
|
24705
24688
|
export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
|
|
24689
|
+
export const labelGenerationAddressFailureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus>;
|
|
24706
24690
|
export const labelInputSource: PropTypes.Requireable<io.flow.internal.v0.enums.LabelInputSource>;
|
|
24707
24691
|
export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
|
|
24708
24692
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
@@ -25537,6 +25521,7 @@ export const deliveredDutyOptions: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
25537
25521
|
export const deliveredDutyOptionsMessage: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyOptionsMessage>;
|
|
25538
25522
|
export const deliveredDutyPreference: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreference>;
|
|
25539
25523
|
export const deliveredDutyPreferenceForm: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreferenceForm>;
|
|
25524
|
+
export const destinationError: PropTypes.Requireable<io.flow.internal.v0.models.DestinationError>;
|
|
25540
25525
|
export const details: PropTypes.Requireable<io.flow.internal.v0.models.Details>;
|
|
25541
25526
|
export const dhl: PropTypes.Requireable<io.flow.internal.v0.models.Dhl>;
|
|
25542
25527
|
export const dhlEcommerce: PropTypes.Requireable<io.flow.internal.v0.models.DhlEcommerce>;
|
|
@@ -25882,6 +25867,8 @@ export const labelCancellationError: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
25882
25867
|
export const labelCreationJob: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJob>;
|
|
25883
25868
|
export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobSummary>;
|
|
25884
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>;
|
|
25885
25872
|
export const labelGenerationSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettings>;
|
|
25886
25873
|
export const labelGenerationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsDeleted>;
|
|
25887
25874
|
export const labelGenerationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsForm>;
|
|
@@ -26045,6 +26032,8 @@ export const orderTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0
|
|
|
26045
26032
|
export const organizationAccount: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccount>;
|
|
26046
26033
|
export const organizationAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationAccountDeleted>;
|
|
26047
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>;
|
|
26048
26037
|
export const organizationBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBillingStatement>;
|
|
26049
26038
|
export const organizationBooleanValue: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValue>;
|
|
26050
26039
|
export const organizationBooleanValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValueDeleted>;
|