@flowio/api-internal-prop-types 9.24.46 → 9.24.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +217 -110
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +217 -110
- package/src/api-internal.js +359 -202
package/lib/api-internal.d.ts
CHANGED
|
@@ -4390,9 +4390,9 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
4390
4390
|
type Contract = 'RECURRING';
|
|
4391
4391
|
type DeviceChannel = 'app' | 'browser';
|
|
4392
4392
|
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';
|
|
4393
|
-
type
|
|
4393
|
+
type Method = 'GET' | 'POST';
|
|
4394
4394
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
4395
|
-
type PaymentMethod = 'ach' | 'alipay' | '
|
|
4395
|
+
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';
|
|
4396
4396
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
4397
4397
|
type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
|
|
4398
4398
|
type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
|
|
@@ -4414,11 +4414,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4414
4414
|
readonly 'currency': string;
|
|
4415
4415
|
}
|
|
4416
4416
|
|
|
4417
|
-
interface Applepay {
|
|
4418
|
-
readonly 'type': 'applepay';
|
|
4419
|
-
readonly 'applePayToken': string;
|
|
4420
|
-
}
|
|
4421
|
-
|
|
4422
4417
|
interface Authentication {
|
|
4423
4418
|
readonly 'threeds2.fingerprintToken'?: string;
|
|
4424
4419
|
readonly 'threeds2.challengeToken'?: string;
|
|
@@ -4446,8 +4441,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4446
4441
|
readonly 'browserInfo'?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4447
4442
|
readonly 'threeDS2RequestData'?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
4448
4443
|
readonly 'recurringProcessingModel'?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
4449
|
-
readonly 'mcc'?: string;
|
|
4450
|
-
readonly 'metadata'?: any/*object*/;
|
|
4451
4444
|
}
|
|
4452
4445
|
|
|
4453
4446
|
interface AuthorizeRequest3D {
|
|
@@ -4604,14 +4597,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4604
4597
|
readonly 'paymentData'?: string;
|
|
4605
4598
|
}
|
|
4606
4599
|
|
|
4607
|
-
interface PaymentDetailsV663Ds2Challenge {
|
|
4608
|
-
readonly 'threeds2.challengeResult': string;
|
|
4609
|
-
}
|
|
4610
|
-
|
|
4611
|
-
interface PaymentDetailsV663Ds2Fingerprint {
|
|
4612
|
-
readonly 'threeds2.fingerprint': string;
|
|
4613
|
-
}
|
|
4614
|
-
|
|
4615
4600
|
interface PaymentRequest {
|
|
4616
4601
|
readonly 'reference': string;
|
|
4617
4602
|
readonly 'merchantAccount': string;
|
|
@@ -4633,12 +4618,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4633
4618
|
readonly 'browserInfo'?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
4634
4619
|
readonly 'origin'?: string;
|
|
4635
4620
|
readonly 'channel'?: io.flow.adyen.v0.enums.Channel;
|
|
4636
|
-
readonly '
|
|
4637
|
-
readonly 'mcc'?: string;
|
|
4638
|
-
readonly 'metadata'?: any/*object*/;
|
|
4639
|
-
readonly 'redirectToIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4640
|
-
readonly 'redirectFromIssuerMethod'?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
4641
|
-
readonly 'storePaymentMethod'?: boolean;
|
|
4621
|
+
readonly 'returnURL'?: string;
|
|
4642
4622
|
}
|
|
4643
4623
|
|
|
4644
4624
|
interface PaymentResponse {
|
|
@@ -4655,50 +4635,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4655
4635
|
interface PaymentResponseAdditionalData {
|
|
4656
4636
|
readonly 'authCode'?: string;
|
|
4657
4637
|
readonly 'avsResultRaw'?: string;
|
|
4658
|
-
readonly 'avsResult'?: string;
|
|
4659
4638
|
readonly 'cvcResultRaw'?: string;
|
|
4660
|
-
readonly 'cvcResult'?: string;
|
|
4661
|
-
readonly 'refusalReasonRaw'?: string;
|
|
4662
4639
|
readonly 'liabilityShift'?: string;
|
|
4663
4640
|
readonly 'threeDAuthenticated'?: string;
|
|
4664
4641
|
readonly 'threeDAuthenticatedResponse'?: string;
|
|
4665
4642
|
readonly 'threeDOffered'?: string;
|
|
4666
4643
|
readonly 'threeDOfferedResponse'?: string;
|
|
4667
|
-
readonly 'threeDSVersion'?: string;
|
|
4668
|
-
readonly 'eci'?: string;
|
|
4669
|
-
readonly 'scaExemptionRequested'?: string;
|
|
4670
|
-
readonly 'paymentMethod'?: string;
|
|
4671
|
-
readonly 'paymentMethodVariant'?: string;
|
|
4672
|
-
readonly 'tokenTxVariant'?: string;
|
|
4673
|
-
readonly 'acquirerCode'?: string;
|
|
4674
|
-
readonly 'acquirerAccountCode'?: string;
|
|
4675
|
-
readonly 'cardPaymentMethod'?: string;
|
|
4676
|
-
readonly 'coBrandedWith'?: string;
|
|
4677
|
-
readonly 'cardIssuingCountry'?: string;
|
|
4678
|
-
readonly 'cardIssuingCurrency'?: string;
|
|
4679
|
-
readonly 'cardIssuingBank'?: string;
|
|
4680
|
-
readonly 'cardBin'?: string;
|
|
4681
|
-
readonly 'issuerBin'?: string;
|
|
4682
|
-
readonly 'cardSummary'?: string;
|
|
4683
|
-
readonly 'untokenisedCardSummary'?: string;
|
|
4684
|
-
readonly 'ownerName'?: string;
|
|
4685
|
-
readonly 'bankName'?: string;
|
|
4686
|
-
readonly 'issuerCountry'?: string;
|
|
4687
|
-
readonly 'iban'?: string;
|
|
4688
|
-
readonly 'bic'?: string;
|
|
4689
|
-
readonly 'iDealConsumerAccountNumber'?: string;
|
|
4690
|
-
readonly 'iDealConsumerBIC'?: string;
|
|
4691
|
-
readonly 'iDealConsumerCity'?: string;
|
|
4692
|
-
readonly 'iDealConsumerIBAN'?: string;
|
|
4693
|
-
readonly 'iDealConsumerName'?: string;
|
|
4694
|
-
readonly 'iDealTransactionId'?: string;
|
|
4695
|
-
readonly 'recurring.recurringDetailReference'?: string;
|
|
4696
|
-
readonly 'recurring.shopperReference'?: string;
|
|
4697
|
-
readonly 'networkTxReference'?: string;
|
|
4698
|
-
readonly 'PaymentAccountReference'?: string;
|
|
4699
|
-
readonly 'networkToken.available'?: string;
|
|
4700
|
-
readonly 'networkToken.bin'?: string;
|
|
4701
|
-
readonly 'networkToken.tokenSummary'?: string;
|
|
4702
4644
|
}
|
|
4703
4645
|
|
|
4704
4646
|
interface Recurring {
|
|
@@ -4707,7 +4649,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4707
4649
|
|
|
4708
4650
|
interface Redirect {
|
|
4709
4651
|
readonly 'data'?: io.flow.adyen.v0.models.RedirectData;
|
|
4710
|
-
readonly 'method'?: io.flow.adyen.v0.enums.
|
|
4652
|
+
readonly 'method'?: io.flow.adyen.v0.enums.Method;
|
|
4711
4653
|
readonly 'url'?: string;
|
|
4712
4654
|
}
|
|
4713
4655
|
|
|
@@ -4730,17 +4672,6 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4730
4672
|
readonly 'holderName': string;
|
|
4731
4673
|
readonly 'number': string;
|
|
4732
4674
|
readonly 'cvc'?: string;
|
|
4733
|
-
readonly 'storedPaymentMethodId'?: string;
|
|
4734
|
-
readonly 'networkPaymentReference'?: string;
|
|
4735
|
-
}
|
|
4736
|
-
|
|
4737
|
-
interface SdkV3OnCompleteData {
|
|
4738
|
-
readonly 'details': any/*object*/;
|
|
4739
|
-
readonly 'payment_data'?: string;
|
|
4740
|
-
}
|
|
4741
|
-
|
|
4742
|
-
interface SdkV3OnCompleteResult {
|
|
4743
|
-
readonly 'data': io.flow.adyen.v0.models.SdkV3OnCompleteData;
|
|
4744
4675
|
}
|
|
4745
4676
|
|
|
4746
4677
|
interface ThreeDSecureData {
|
|
@@ -4772,7 +4703,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4772
4703
|
|
|
4773
4704
|
declare namespace io.flow.adyen.v0.unions {
|
|
4774
4705
|
type BrowserInfo = (io.flow.adyen.v0.models.BrowserInfo3Ds1 | io.flow.adyen.v0.models.BrowserInfo3Ds2);
|
|
4775
|
-
type PaymentMethodData = (io.flow.adyen.v0.models.Scheme
|
|
4706
|
+
type PaymentMethodData = (io.flow.adyen.v0.models.Scheme);
|
|
4776
4707
|
}
|
|
4777
4708
|
|
|
4778
4709
|
declare namespace io.flow.order.management.v0.enums {
|
|
@@ -4906,7 +4837,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4906
4837
|
readonly 'product_id': number;
|
|
4907
4838
|
readonly 'name': string;
|
|
4908
4839
|
readonly 'position': number;
|
|
4909
|
-
readonly 'values'?: string[];
|
|
4910
4840
|
}
|
|
4911
4841
|
|
|
4912
4842
|
interface PriceRule {
|
|
@@ -5736,7 +5666,9 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5736
5666
|
type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
5737
5667
|
type FulfillmentOrderDeliveryMethodType = 'local' | 'none' | 'pick_up' | 'retail' | 'shipping';
|
|
5738
5668
|
type IncotermDuties = 'DAP' | 'DDP';
|
|
5669
|
+
type ShopifyDiscountValueType = 'fixed_amount' | 'percentage';
|
|
5739
5670
|
type ShopifyDiscrepancyReason = 'restock' | 'damage' | 'customer' | 'other';
|
|
5671
|
+
type ShopifyDraftOrderStatus = 'open' | 'invoice_sent' | 'completed' | 'pending' | 'authorized' | 'partially_paid' | 'paid' | 'partially_refunded' | 'refunded' | 'voided';
|
|
5740
5672
|
type ShopifyOrderCancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
5741
5673
|
type ShopifyOrderDiscountAllocationMethod = 'across' | 'each' | 'one';
|
|
5742
5674
|
type ShopifyOrderDiscountApplicationTargetSelection = 'all' | 'entitled' | 'explicit';
|
|
@@ -5758,6 +5690,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5758
5690
|
type ShopifyOrderTransactionErrorCode = 'incorrect_number' | 'invalid_number' | 'invalid_expiry_date' | 'invalid_cvc' | 'expired_card' | 'incorrect_cvc' | 'incorrect_zip' | 'incorrect_address' | 'card_declined' | 'processing_error' | 'call_issuer' | 'pick_up_card';
|
|
5759
5691
|
type ShopifyOrderTransactionStatus = 'pending' | 'failure' | 'success' | 'error';
|
|
5760
5692
|
type ShopifyOrderValueType = 'string' | 'integer';
|
|
5693
|
+
type ShopifyTaxExemptions = 'EXEMPT_ALL' | 'CA_STATUS_CARD_EXEMPTION' | 'CA_DIPLOMAT_EXEMPTION' | 'CA_BC_RESELLER_EXEMPTION' | 'CA_MB_RESELLER_EXEMPTION' | 'CA_SK_RESELLER_EXEMPTION' | 'CA_BC_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_MB_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_NS_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_PE_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_SK_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_BC_SUB_CONTRACTOR_EXEMPTION' | 'CA_SK_SUB_CONTRACTOR_EXEMPTION' | 'CA_BC_CONTRACTOR_EXEMPTION' | 'CA_SK_CONTRACTOR_EXEMPTION' | 'CA_ON_PURCHASE_EXEMPTION' | 'CA_MB_FARMER_EXEMPTION' | 'CA_NS_FARMER_EXEMPTION' | 'CA_SK_FARMER_EXEMPTION';
|
|
5761
5694
|
type ShopifyWebhookFormat = 'json' | 'xml';
|
|
5762
5695
|
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update';
|
|
5763
5696
|
}
|
|
@@ -5825,11 +5758,58 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5825
5758
|
readonly 'shop': io.flow.shopify.markets.v0.models.Shop;
|
|
5826
5759
|
}
|
|
5827
5760
|
|
|
5761
|
+
interface ShopifyAppliedDiscount {
|
|
5762
|
+
readonly 'title'?: string;
|
|
5763
|
+
readonly 'description'?: string;
|
|
5764
|
+
readonly 'value'?: string;
|
|
5765
|
+
readonly 'value_type'?: io.flow.shopify.markets.v0.enums.ShopifyDiscountValueType;
|
|
5766
|
+
readonly 'amount'?: number;
|
|
5767
|
+
}
|
|
5768
|
+
|
|
5828
5769
|
interface ShopifyCountryHarmonizedSystemCode {
|
|
5829
5770
|
readonly 'country_code': string;
|
|
5830
5771
|
readonly 'harmonized_system_code': string;
|
|
5831
5772
|
}
|
|
5832
5773
|
|
|
5774
|
+
interface ShopifyDraftOrder {
|
|
5775
|
+
readonly 'applied_discount': io.flow.shopify.markets.v0.models.ShopifyAppliedDiscount;
|
|
5776
|
+
readonly 'billing_address'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5777
|
+
readonly 'completed_at'?: string;
|
|
5778
|
+
readonly 'created_at'?: string;
|
|
5779
|
+
readonly 'currency'?: string;
|
|
5780
|
+
readonly 'customer'?: io.flow.shopify.markets.v0.models.ShopifyOrderCustomer;
|
|
5781
|
+
readonly 'email'?: string;
|
|
5782
|
+
readonly 'id'?: number;
|
|
5783
|
+
readonly 'invoice_sent_at'?: string;
|
|
5784
|
+
readonly 'invoice_url'?: string;
|
|
5785
|
+
readonly 'line_items': io.flow.shopify.markets.v0.models.ShopifyOrderLineItem[];
|
|
5786
|
+
readonly 'name'?: string;
|
|
5787
|
+
readonly 'note'?: string;
|
|
5788
|
+
readonly 'note_attributes': io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
|
|
5789
|
+
readonly 'order_id': io.flow.shopify.markets.v0.models.ShopifyOrderId;
|
|
5790
|
+
readonly 'payment_terms': io.flow.shopify.markets.v0.models.ShopifyPaymentTerms;
|
|
5791
|
+
readonly 'shipping_address'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5792
|
+
readonly 'shipping_lines': io.flow.shopify.markets.v0.models.ShopifyOrderShippingLine[];
|
|
5793
|
+
readonly 'source_name'?: string;
|
|
5794
|
+
readonly 'subtotal_price'?: string;
|
|
5795
|
+
readonly 'status'?: io.flow.shopify.markets.v0.enums.ShopifyDraftOrderStatus;
|
|
5796
|
+
readonly 'tags'?: string;
|
|
5797
|
+
readonly 'tax_exemptions'?: io.flow.shopify.markets.v0.enums.ShopifyTaxExemptions[];
|
|
5798
|
+
readonly 'tax_lines': io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
5799
|
+
readonly 'taxes_included': boolean;
|
|
5800
|
+
readonly 'total_price'?: string;
|
|
5801
|
+
readonly 'total_tax'?: string;
|
|
5802
|
+
readonly 'updated_at'?: string;
|
|
5803
|
+
}
|
|
5804
|
+
|
|
5805
|
+
interface ShopifyDraftOrderCount {
|
|
5806
|
+
readonly 'count': number;
|
|
5807
|
+
}
|
|
5808
|
+
|
|
5809
|
+
interface ShopifyDraftOrdersWrapper {
|
|
5810
|
+
readonly 'draft_orders': io.flow.shopify.markets.v0.models.ShopifyDraftOrder[];
|
|
5811
|
+
}
|
|
5812
|
+
|
|
5833
5813
|
interface ShopifyError {
|
|
5834
5814
|
readonly 'errors': any/*object*/;
|
|
5835
5815
|
}
|
|
@@ -6002,7 +5982,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6002
5982
|
|
|
6003
5983
|
interface ShopifyOrderAttribute {
|
|
6004
5984
|
readonly 'name': string;
|
|
6005
|
-
readonly 'value':
|
|
5985
|
+
readonly 'value': any/*json*/;
|
|
6006
5986
|
}
|
|
6007
5987
|
|
|
6008
5988
|
interface ShopifyOrderCancellationForm {
|
|
@@ -6018,6 +5998,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6018
5998
|
readonly 'user_agent'?: string;
|
|
6019
5999
|
}
|
|
6020
6000
|
|
|
6001
|
+
interface ShopifyOrderCount {
|
|
6002
|
+
readonly 'count': number;
|
|
6003
|
+
}
|
|
6004
|
+
|
|
6021
6005
|
interface ShopifyOrderCustomer {
|
|
6022
6006
|
readonly 'id'?: number;
|
|
6023
6007
|
readonly 'email'?: string;
|
|
@@ -6121,6 +6105,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6121
6105
|
readonly 'variant_inventory_management'?: string;
|
|
6122
6106
|
}
|
|
6123
6107
|
|
|
6108
|
+
interface ShopifyOrderId {
|
|
6109
|
+
readonly 'id': number;
|
|
6110
|
+
}
|
|
6111
|
+
|
|
6124
6112
|
interface ShopifyOrderLineItem {
|
|
6125
6113
|
readonly 'fulfillable_quantity'?: number;
|
|
6126
6114
|
readonly 'fulfillment_service': string;
|
|
@@ -6232,7 +6220,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6232
6220
|
interface ShopifyOrderShippingLine {
|
|
6233
6221
|
readonly 'code'?: string;
|
|
6234
6222
|
readonly 'price': string;
|
|
6235
|
-
readonly 'source'
|
|
6223
|
+
readonly 'source'?: string;
|
|
6236
6224
|
readonly 'title': string;
|
|
6237
6225
|
readonly 'tax_lines': io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
6238
6226
|
readonly 'carrier_identifier'?: string;
|
|
@@ -6280,6 +6268,24 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6280
6268
|
readonly 'orders': io.flow.shopify.markets.v0.models.ShopifyOrder[];
|
|
6281
6269
|
}
|
|
6282
6270
|
|
|
6271
|
+
interface ShopifyPaymentSchedules {
|
|
6272
|
+
readonly 'amount'?: number;
|
|
6273
|
+
readonly 'currency'?: string;
|
|
6274
|
+
readonly 'issued_at'?: string;
|
|
6275
|
+
readonly 'due_at'?: string;
|
|
6276
|
+
readonly 'completed_at'?: string;
|
|
6277
|
+
readonly 'expected_payment_method'?: string;
|
|
6278
|
+
}
|
|
6279
|
+
|
|
6280
|
+
interface ShopifyPaymentTerms {
|
|
6281
|
+
readonly 'amount'?: number;
|
|
6282
|
+
readonly 'currency'?: string;
|
|
6283
|
+
readonly 'payment_terms_name'?: string;
|
|
6284
|
+
readonly 'payment_terms_type'?: number;
|
|
6285
|
+
readonly 'due_in_days'?: number;
|
|
6286
|
+
readonly 'payment_schedules'?: io.flow.shopify.markets.v0.models.ShopifyPaymentSchedules;
|
|
6287
|
+
}
|
|
6288
|
+
|
|
6283
6289
|
interface ShopifyRefund {
|
|
6284
6290
|
readonly 'notify_x': boolean;
|
|
6285
6291
|
readonly 'note'?: string;
|
|
@@ -9942,7 +9948,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
9942
9948
|
type AttachmentType = 'csv';
|
|
9943
9949
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
9944
9950
|
type PayoutStatusCode = 'scheduled' | 'sent' | 'cancelled' | 'failed' | 'succeeded';
|
|
9945
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | '
|
|
9951
|
+
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';
|
|
9946
9952
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
9947
9953
|
}
|
|
9948
9954
|
|
|
@@ -10644,6 +10650,7 @@ declare namespace io.flow.fulfillment.v0.models {
|
|
|
10644
10650
|
|
|
10645
10651
|
interface DeliveryOptionCostDetail {
|
|
10646
10652
|
readonly 'source': io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailSource;
|
|
10653
|
+
readonly 'ratecard_id'?: string;
|
|
10647
10654
|
readonly 'currency': string;
|
|
10648
10655
|
readonly 'amount': number;
|
|
10649
10656
|
readonly 'label': string;
|
|
@@ -11303,11 +11310,6 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
11303
11310
|
readonly 'placeholder'?: boolean;
|
|
11304
11311
|
}
|
|
11305
11312
|
|
|
11306
|
-
interface ApplicationReceived {
|
|
11307
|
-
readonly 'discriminator': 'application_received';
|
|
11308
|
-
readonly 'placeholder'?: boolean;
|
|
11309
|
-
}
|
|
11310
|
-
|
|
11311
11313
|
interface InComplianceReview {
|
|
11312
11314
|
readonly 'discriminator': 'in_compliance_review';
|
|
11313
11315
|
readonly 'placeholder'?: boolean;
|
|
@@ -11352,7 +11354,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
11352
11354
|
}
|
|
11353
11355
|
|
|
11354
11356
|
declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
11355
|
-
type OnboardingState = (io.flow.organization.onboarding.state.v0.models.
|
|
11357
|
+
type OnboardingState = (io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated);
|
|
11356
11358
|
}
|
|
11357
11359
|
|
|
11358
11360
|
declare namespace io.flow.fraud.v0.enums {
|
|
@@ -11690,6 +11692,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11690
11692
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
11691
11693
|
type AccountType = 'channel' | 'organization';
|
|
11692
11694
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
11695
|
+
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
11693
11696
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
11694
11697
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
11695
11698
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
@@ -11698,17 +11701,17 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11698
11701
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
11699
11702
|
type BillingStatementReviewStatus = 'approved' | 'pending';
|
|
11700
11703
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
11701
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax';
|
|
11704
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty';
|
|
11702
11705
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
11703
11706
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
11704
11707
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
11705
|
-
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis';
|
|
11708
|
+
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
|
|
11706
11709
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
11707
11710
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
11708
|
-
type ChannelBilledTransactionType = 'adjustment' | 'channel_initiated';
|
|
11711
|
+
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
11709
11712
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information';
|
|
11710
11713
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
11711
|
-
type ChannelTransactionType = 'adjustment' | 'processing';
|
|
11714
|
+
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
11712
11715
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
11713
11716
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
11714
11717
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -11809,8 +11812,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11809
11812
|
type DutyRateUnitOfMeasure = 'kg' | 'sq m' | 'item' | 'pair';
|
|
11810
11813
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
11811
11814
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
11815
|
+
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
11812
11816
|
type EmptyAttribute = 'irrelevant';
|
|
11813
|
-
type
|
|
11817
|
+
type ErpFileType = 'vendor';
|
|
11818
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
11814
11819
|
type ExperienceImportType = 'experience_with_settings';
|
|
11815
11820
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
11816
11821
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -11842,7 +11847,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11842
11847
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
11843
11848
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
11844
11849
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
11845
|
-
type LabelTransactionType = 'adjustment' | 'billable_label' | 'fee' | 'revenue_share';
|
|
11850
|
+
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
11846
11851
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
11847
11852
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
11848
11853
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
@@ -11868,7 +11873,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11868
11873
|
type OrderAttributeIntent = 'discount_code';
|
|
11869
11874
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
11870
11875
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
11871
|
-
type OrderTransactionType = 'adjustment' | 'order_service';
|
|
11876
|
+
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
11872
11877
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
11873
11878
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
11874
11879
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
@@ -11884,7 +11889,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11884
11889
|
type PregenDataKeyField = 'shipping_country' | 'shipping_province' | 'invoicing_country' | 'delivery_option_id';
|
|
11885
11890
|
type PriceSelector = 'minimum' | 'maximum';
|
|
11886
11891
|
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
11887
|
-
type ProcessingTransactionType = 'adjustment' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
11892
|
+
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
11888
11893
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
11889
11894
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
11890
11895
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
@@ -11933,7 +11938,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11933
11938
|
type TaskProcessorKey = 'billing_account' | 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'label_generation_settings' | 'ratecard';
|
|
11934
11939
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
11935
11940
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
11936
|
-
type TaxTransactionType = 'adjustment' | 'tax';
|
|
11941
|
+
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
11937
11942
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
11938
11943
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
11939
11944
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
@@ -12967,6 +12972,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12967
12972
|
readonly 'adjustment': io.flow.common.v0.models.Price;
|
|
12968
12973
|
readonly 'capture': io.flow.common.v0.models.Price;
|
|
12969
12974
|
readonly 'refund': io.flow.common.v0.models.Price;
|
|
12975
|
+
readonly 'reversal': io.flow.common.v0.models.Price;
|
|
12970
12976
|
readonly 'credit_payment': io.flow.common.v0.models.Price;
|
|
12971
12977
|
readonly 'fully_subsidized_order': io.flow.common.v0.models.Price;
|
|
12972
12978
|
readonly 'virtual_card_capture': io.flow.common.v0.models.Price;
|
|
@@ -13648,6 +13654,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13648
13654
|
interface ChannelTransaction {
|
|
13649
13655
|
readonly 'discriminator': 'channel_transaction';
|
|
13650
13656
|
readonly 'transaction': io.flow.internal.v0.models.TransactionReference;
|
|
13657
|
+
readonly 'fees': io.flow.internal.v0.models.Fee[];
|
|
13651
13658
|
readonly 'id': string;
|
|
13652
13659
|
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
13653
13660
|
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -16744,6 +16751,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16744
16751
|
readonly 'unit_of_measure'?: io.flow.internal.v0.enums.DutyRateUnitOfMeasure;
|
|
16745
16752
|
}
|
|
16746
16753
|
|
|
16754
|
+
interface DutyTransaction {
|
|
16755
|
+
readonly 'discriminator': 'duty_transaction';
|
|
16756
|
+
readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
16757
|
+
readonly 'id': string;
|
|
16758
|
+
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
16759
|
+
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
16760
|
+
readonly 'posted_at'?: string;
|
|
16761
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
16762
|
+
readonly 'description': string;
|
|
16763
|
+
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
16764
|
+
readonly 'created_at': string;
|
|
16765
|
+
}
|
|
16766
|
+
|
|
16767
|
+
interface DutyTransactionDeleted {
|
|
16768
|
+
readonly 'discriminator': 'duty_transaction_deleted';
|
|
16769
|
+
readonly 'event_id': string;
|
|
16770
|
+
readonly 'timestamp': string;
|
|
16771
|
+
readonly 'id': string;
|
|
16772
|
+
}
|
|
16773
|
+
|
|
16774
|
+
interface DutyTransactionUpserted {
|
|
16775
|
+
readonly 'discriminator': 'duty_transaction_upserted';
|
|
16776
|
+
readonly 'event_id': string;
|
|
16777
|
+
readonly 'timestamp': string;
|
|
16778
|
+
readonly 'duty_transaction': io.flow.internal.v0.models.DutyTransaction;
|
|
16779
|
+
}
|
|
16780
|
+
|
|
16747
16781
|
interface EmailForm {
|
|
16748
16782
|
readonly 'to': string[];
|
|
16749
16783
|
readonly 'cc'?: string[];
|
|
@@ -16768,6 +16802,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16768
16802
|
readonly 'passphrase_ids': string[];
|
|
16769
16803
|
}
|
|
16770
16804
|
|
|
16805
|
+
interface ErpFlowFile {
|
|
16806
|
+
readonly 'id': string;
|
|
16807
|
+
readonly 'type': io.flow.internal.v0.enums.ErpFileType;
|
|
16808
|
+
readonly 'url': string;
|
|
16809
|
+
readonly 'created_at': string;
|
|
16810
|
+
}
|
|
16811
|
+
|
|
16812
|
+
interface ErpPriorityFile {
|
|
16813
|
+
readonly 'id': string;
|
|
16814
|
+
readonly 'type': io.flow.internal.v0.enums.ErpFileType;
|
|
16815
|
+
readonly 'url': string;
|
|
16816
|
+
readonly 'created_at': string;
|
|
16817
|
+
}
|
|
16818
|
+
|
|
16819
|
+
interface ErpPriorityFileForm {
|
|
16820
|
+
readonly 'type': io.flow.internal.v0.enums.ErpFileType;
|
|
16821
|
+
readonly 'url': string;
|
|
16822
|
+
}
|
|
16823
|
+
|
|
16771
16824
|
interface ExclusionRuleDeleted {
|
|
16772
16825
|
readonly 'discriminator': 'exclusion_rule_deleted';
|
|
16773
16826
|
readonly 'event_id': string;
|
|
@@ -17822,6 +17875,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17822
17875
|
readonly 'created_at': string;
|
|
17823
17876
|
readonly 'updated_at': string;
|
|
17824
17877
|
readonly 'updated_by_user_id': string;
|
|
17878
|
+
readonly 'hs6_code'?: string;
|
|
17879
|
+
readonly 'hs6_description'?: string;
|
|
17825
17880
|
}
|
|
17826
17881
|
|
|
17827
17882
|
interface HarmonizationItemClassificationDeleted {
|
|
@@ -17847,6 +17902,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17847
17902
|
interface HarmonizationMlModelSummary {
|
|
17848
17903
|
readonly 'id'?: string;
|
|
17849
17904
|
readonly 'customs_description'?: string;
|
|
17905
|
+
readonly 'score'?: number;
|
|
17850
17906
|
}
|
|
17851
17907
|
|
|
17852
17908
|
interface HarmonizationPhraseSuggestionRequestImport {
|
|
@@ -18564,6 +18620,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18564
18620
|
readonly 'url': string;
|
|
18565
18621
|
}
|
|
18566
18622
|
|
|
18623
|
+
interface Hs6Detail {
|
|
18624
|
+
readonly 'hs6_code': string;
|
|
18625
|
+
readonly 'description': string;
|
|
18626
|
+
}
|
|
18627
|
+
|
|
18567
18628
|
interface Hs6Metadata {
|
|
18568
18629
|
readonly 'description': string;
|
|
18569
18630
|
}
|
|
@@ -19969,7 +20030,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19969
20030
|
readonly 'legal_name': string;
|
|
19970
20031
|
readonly 'shop_name': string;
|
|
19971
20032
|
readonly 'organization_id': string;
|
|
19972
|
-
readonly '
|
|
20033
|
+
readonly 'onboarding_current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
19973
20034
|
readonly 'gmv': number;
|
|
19974
20035
|
}
|
|
19975
20036
|
|
|
@@ -20084,6 +20145,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20084
20145
|
readonly 'attribute': io.flow.internal.v0.models.OrderAttribute;
|
|
20085
20146
|
}
|
|
20086
20147
|
|
|
20148
|
+
interface OrderCancellation {
|
|
20149
|
+
readonly 'id': string;
|
|
20150
|
+
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
20151
|
+
readonly 'evidence': io.flow.internal.v0.unions.OrderCancellationEvidence;
|
|
20152
|
+
}
|
|
20153
|
+
|
|
20154
|
+
interface OrderCancellationEvidenceFullyRefundedNotFulfilled {
|
|
20155
|
+
readonly 'discriminator': 'fully_refunded_not_fulfilled';
|
|
20156
|
+
readonly 'placeholder'?: string;
|
|
20157
|
+
}
|
|
20158
|
+
|
|
20159
|
+
interface OrderCancellationEvidenceManual {
|
|
20160
|
+
readonly 'discriminator': 'manual';
|
|
20161
|
+
readonly 'description': string;
|
|
20162
|
+
}
|
|
20163
|
+
|
|
20164
|
+
interface OrderCancellationForm {
|
|
20165
|
+
readonly 'evidence': io.flow.internal.v0.models.OrderCancellationEvidenceManual;
|
|
20166
|
+
}
|
|
20167
|
+
|
|
20087
20168
|
interface OrderDetail {
|
|
20088
20169
|
readonly 'order': io.flow.experience.v0.models.Order;
|
|
20089
20170
|
readonly 'status': io.flow.experience.v0.enums.OrderStatus;
|
|
@@ -21155,10 +21236,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21155
21236
|
readonly 'label_tracking_summary_id': string;
|
|
21156
21237
|
}
|
|
21157
21238
|
|
|
21158
|
-
interface
|
|
21159
|
-
readonly 'discriminator': '
|
|
21160
|
-
readonly '
|
|
21161
|
-
readonly 'refund_ids': string[];
|
|
21239
|
+
interface ProofOfPostingOrderCancellation {
|
|
21240
|
+
readonly 'discriminator': 'order_cancellation';
|
|
21241
|
+
readonly 'order_cancellation_id': string;
|
|
21162
21242
|
}
|
|
21163
21243
|
|
|
21164
21244
|
interface ProofOfPostingShippingNotification {
|
|
@@ -22045,6 +22125,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22045
22125
|
readonly 'access_token_masked'?: string;
|
|
22046
22126
|
}
|
|
22047
22127
|
|
|
22128
|
+
interface ShopifyMarketsShopDeleted {
|
|
22129
|
+
readonly 'discriminator': 'shopify_markets_shop_deleted';
|
|
22130
|
+
readonly 'event_id': string;
|
|
22131
|
+
readonly 'timestamp': string;
|
|
22132
|
+
readonly 'organization': string;
|
|
22133
|
+
readonly 'id': string;
|
|
22134
|
+
}
|
|
22135
|
+
|
|
22048
22136
|
interface ShopifyMarketsShopForm {
|
|
22049
22137
|
readonly 'shop': string;
|
|
22050
22138
|
readonly 'domain': string;
|
|
@@ -22060,6 +22148,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22060
22148
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
22061
22149
|
}
|
|
22062
22150
|
|
|
22151
|
+
interface ShopifyMarketsShopUpserted {
|
|
22152
|
+
readonly 'discriminator': 'shopify_markets_shop_upserted';
|
|
22153
|
+
readonly 'event_id': string;
|
|
22154
|
+
readonly 'timestamp': string;
|
|
22155
|
+
readonly 'organization': string;
|
|
22156
|
+
readonly 'shopify_markets_shop': io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
22157
|
+
}
|
|
22158
|
+
|
|
22063
22159
|
interface ShopifyMarketsSubsidiaryCompany {
|
|
22064
22160
|
readonly 'legal_name'?: string;
|
|
22065
22161
|
readonly 'incorporation_country'?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
@@ -22103,7 +22199,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22103
22199
|
readonly 'organization_reference': io.flow.common.v0.models.OrganizationReference;
|
|
22104
22200
|
readonly 'order_number': string;
|
|
22105
22201
|
readonly 'monitor': io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
22106
|
-
readonly 'created_at': string;
|
|
22107
22202
|
}
|
|
22108
22203
|
|
|
22109
22204
|
interface ShopifyMonitoringOrderMonitorEventDeleted {
|
|
@@ -22125,15 +22220,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22125
22220
|
interface ShopifyMonitoringOrderMonitorReview {
|
|
22126
22221
|
readonly 'id': string;
|
|
22127
22222
|
readonly 'order_monitor': io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
22128
|
-
readonly 'order_details': io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
22129
22223
|
readonly 'status': io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
22130
22224
|
}
|
|
22131
22225
|
|
|
22132
|
-
interface ShopifyMonitoringOrderMonitorReviewOrderDetails {
|
|
22133
|
-
readonly 'organization': string;
|
|
22134
|
-
readonly 'shopify_order': io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
22135
|
-
}
|
|
22136
|
-
|
|
22137
22226
|
interface ShopifyMonitoringTrackingNumber {
|
|
22138
22227
|
readonly 'number': string;
|
|
22139
22228
|
}
|
|
@@ -23123,6 +23212,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23123
23212
|
readonly 'original_transaction_id': string;
|
|
23124
23213
|
readonly 'description': string;
|
|
23125
23214
|
readonly 'details': io.flow.internal.v0.unions.AdjustmentDetails;
|
|
23215
|
+
readonly 'type'?: io.flow.internal.v0.enums.AdjustmentTransactionType;
|
|
23126
23216
|
}
|
|
23127
23217
|
|
|
23128
23218
|
interface TransactionReference {
|
|
@@ -23523,7 +23613,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23523
23613
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
23524
23614
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
23525
23615
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
23526
|
-
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
23616
|
+
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
23527
23617
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
23528
23618
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
23529
23619
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -23549,6 +23639,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23549
23639
|
type MarketingGatewaySourceSummary = (io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary | io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary | io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary);
|
|
23550
23640
|
type OptinPromptDisplay = (io.flow.internal.v0.models.OptinPromptCheckoutDisplay);
|
|
23551
23641
|
type OrderActionForm = (io.flow.internal.v0.models.WholeOrderActionForm | io.flow.internal.v0.models.LineActionForm | io.flow.internal.v0.models.FulfillmentActionForm);
|
|
23642
|
+
type OrderCancellationEvidence = (io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled);
|
|
23552
23643
|
type PaymentRedirect = (io.flow.internal.v0.models.OnlineAuthorizationCompleted | io.flow.internal.v0.models.RedirectActionCompleted);
|
|
23553
23644
|
type PaymentSummaryDetails = (io.flow.internal.v0.models.SearchAuthorization);
|
|
23554
23645
|
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);
|
|
@@ -23559,7 +23650,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23559
23650
|
type ProcessorMerchantForm = (io.flow.internal.v0.models.StripeMerchantForm);
|
|
23560
23651
|
type ProcessorMerchantModificationForm = (io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm);
|
|
23561
23652
|
type ProcessorMerchantPutForm = (io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm);
|
|
23562
|
-
type ProofOfPosting = (io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.
|
|
23653
|
+
type ProofOfPosting = (io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation);
|
|
23563
23654
|
type RoutingEntity = (io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant);
|
|
23564
23655
|
type ShopifyMonitoringOrderMonitorType = (io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails);
|
|
23565
23656
|
type ShopifyPromotionOfferDiscount = (io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent);
|
|
@@ -23573,7 +23664,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23573
23664
|
type TaskData = (io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport);
|
|
23574
23665
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
23575
23666
|
type Tracker = (io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel);
|
|
23576
|
-
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction);
|
|
23667
|
+
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction);
|
|
23577
23668
|
type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
|
|
23578
23669
|
type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
|
|
23579
23670
|
type Variant = (io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant);
|
|
@@ -23583,6 +23674,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23583
23674
|
export const accountSettingLiabilitiesMethod: PropTypes.Requireable<io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod>;
|
|
23584
23675
|
export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.AccountType>;
|
|
23585
23676
|
export const addressConfigurationSettingProvinceCode: PropTypes.Requireable<io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode>;
|
|
23677
|
+
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
23586
23678
|
export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
|
|
23587
23679
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
23588
23680
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
@@ -23702,7 +23794,9 @@ export const dutyRateSource: PropTypes.Requireable<io.flow.internal.v0.enums.Dut
|
|
|
23702
23794
|
export const dutyRateUnitOfMeasure: PropTypes.Requireable<io.flow.internal.v0.enums.DutyRateUnitOfMeasure>;
|
|
23703
23795
|
export const dutySelectionRule: PropTypes.Requireable<io.flow.internal.v0.enums.DutySelectionRule>;
|
|
23704
23796
|
export const dutySimpleExpressionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutySimpleExpressionType>;
|
|
23797
|
+
export const dutyTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutyTransactionType>;
|
|
23705
23798
|
export const emptyAttribute: PropTypes.Requireable<io.flow.internal.v0.enums.EmptyAttribute>;
|
|
23799
|
+
export const erpFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ErpFileType>;
|
|
23706
23800
|
export const eventType: PropTypes.Requireable<io.flow.internal.v0.enums.EventType>;
|
|
23707
23801
|
export const experienceImportType: PropTypes.Requireable<io.flow.internal.v0.enums.ExperienceImportType>;
|
|
23708
23802
|
export const experienceOrderAction: PropTypes.Requireable<io.flow.internal.v0.enums.ExperienceOrderAction>;
|
|
@@ -24585,10 +24679,16 @@ export const dutyRaw: PropTypes.Requireable<io.flow.internal.v0.models.DutyRaw>;
|
|
|
24585
24679
|
export const dutyRawBulkUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DutyRawBulkUpserted>;
|
|
24586
24680
|
export const dutyRawUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DutyRawUpserted>;
|
|
24587
24681
|
export const dutySimpleExpression: PropTypes.Requireable<io.flow.internal.v0.models.DutySimpleExpression>;
|
|
24682
|
+
export const dutyTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransaction>;
|
|
24683
|
+
export const dutyTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionDeleted>;
|
|
24684
|
+
export const dutyTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionUpserted>;
|
|
24588
24685
|
export const emailForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailForm>;
|
|
24589
24686
|
export const emailModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailModificationForm>;
|
|
24590
24687
|
export const emptyClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmptyClassificationForm>;
|
|
24591
24688
|
export const encryption: PropTypes.Requireable<io.flow.internal.v0.models.Encryption>;
|
|
24689
|
+
export const erpFlowFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowFile>;
|
|
24690
|
+
export const erpPriorityFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityFile>;
|
|
24691
|
+
export const erpPriorityFileForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpPriorityFileForm>;
|
|
24592
24692
|
export const exclusionRuleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleDeleted>;
|
|
24593
24693
|
export const exclusionRuleExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleExportRequest>;
|
|
24594
24694
|
export const exclusionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleUpserted>;
|
|
@@ -24793,6 +24893,7 @@ export const heapWebsocketRequest: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
24793
24893
|
export const heapWebsocketResponse: PropTypes.Requireable<io.flow.internal.v0.models.HeapWebsocketResponse>;
|
|
24794
24894
|
export const heapWebsocketRetry: PropTypes.Requireable<io.flow.internal.v0.models.HeapWebsocketRetry>;
|
|
24795
24895
|
export const href: PropTypes.Requireable<io.flow.internal.v0.models.Href>;
|
|
24896
|
+
export const hs6Detail: PropTypes.Requireable<io.flow.internal.v0.models.Hs6Detail>;
|
|
24796
24897
|
export const hs6Metadata: PropTypes.Requireable<io.flow.internal.v0.models.Hs6Metadata>;
|
|
24797
24898
|
export const hybrisCatalogItemsImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequest>;
|
|
24798
24899
|
export const hybrisCatalogItemsImportRequestData: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData>;
|
|
@@ -24999,6 +25100,10 @@ export const orderActionability: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
24999
25100
|
export const orderAttribute: PropTypes.Requireable<io.flow.internal.v0.models.OrderAttribute>;
|
|
25000
25101
|
export const orderAttributeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderAttributeDeleted>;
|
|
25001
25102
|
export const orderAttributeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderAttributeUpserted>;
|
|
25103
|
+
export const orderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellation>;
|
|
25104
|
+
export const orderCancellationEvidenceFullyRefundedNotFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled>;
|
|
25105
|
+
export const orderCancellationEvidenceManual: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceManual>;
|
|
25106
|
+
export const orderCancellationForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationForm>;
|
|
25002
25107
|
export const orderDetail: PropTypes.Requireable<io.flow.internal.v0.models.OrderDetail>;
|
|
25003
25108
|
export const orderFulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentDeleted>;
|
|
25004
25109
|
export const orderFulfillmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentUpserted>;
|
|
@@ -25137,7 +25242,7 @@ export const productListSettingsForm: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
25137
25242
|
export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
|
|
25138
25243
|
export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
|
|
25139
25244
|
export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
|
|
25140
|
-
export const
|
|
25245
|
+
export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
|
|
25141
25246
|
export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
|
|
25142
25247
|
export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
|
|
25143
25248
|
export const rateAndRuleItem: PropTypes.Requireable<io.flow.internal.v0.models.RateAndRuleItem>;
|
|
@@ -25261,8 +25366,10 @@ export const shopifyMarketsOrder: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
25261
25366
|
export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderDeleted>;
|
|
25262
25367
|
export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
|
|
25263
25368
|
export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
|
|
25369
|
+
export const shopifyMarketsShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopDeleted>;
|
|
25264
25370
|
export const shopifyMarketsShopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopForm>;
|
|
25265
25371
|
export const shopifyMarketsShopSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopSummary>;
|
|
25372
|
+
export const shopifyMarketsShopUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopUpserted>;
|
|
25266
25373
|
export const shopifyMarketsSubsidiaryCompany: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany>;
|
|
25267
25374
|
export const shopifyMarketsSync: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSync>;
|
|
25268
25375
|
export const shopifyMarketsWebhookRegistration: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration>;
|
|
@@ -25274,7 +25381,6 @@ export const shopifyMonitoringOrderMonitor: PropTypes.Requireable<io.flow.intern
|
|
|
25274
25381
|
export const shopifyMonitoringOrderMonitorEventDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted>;
|
|
25275
25382
|
export const shopifyMonitoringOrderMonitorEventUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted>;
|
|
25276
25383
|
export const shopifyMonitoringOrderMonitorReview: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReview>;
|
|
25277
|
-
export const shopifyMonitoringOrderMonitorReviewOrderDetails: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails>;
|
|
25278
25384
|
export const shopifyMonitoringTrackingNumber: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber>;
|
|
25279
25385
|
export const shopifyMonitoringTrackingUrl: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringTrackingUrl>;
|
|
25280
25386
|
export const shopifyOrderAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderAuthorization>;
|
|
@@ -25575,6 +25681,7 @@ export const marketingGatewayItem: PropTypes.Requireable<io.flow.internal.v0.uni
|
|
|
25575
25681
|
export const marketingGatewaySourceSummary: PropTypes.Requireable<io.flow.internal.v0.unions.MarketingGatewaySourceSummary>;
|
|
25576
25682
|
export const optinPromptDisplay: PropTypes.Requireable<io.flow.internal.v0.unions.OptinPromptDisplay>;
|
|
25577
25683
|
export const orderActionForm: PropTypes.Requireable<io.flow.internal.v0.unions.OrderActionForm>;
|
|
25684
|
+
export const orderCancellationEvidence: PropTypes.Requireable<io.flow.internal.v0.unions.OrderCancellationEvidence>;
|
|
25578
25685
|
export const paymentRedirect: PropTypes.Requireable<io.flow.internal.v0.unions.PaymentRedirect>;
|
|
25579
25686
|
export const paymentSummaryDetails: PropTypes.Requireable<io.flow.internal.v0.unions.PaymentSummaryDetails>;
|
|
25580
25687
|
export const platformFee: PropTypes.Requireable<io.flow.internal.v0.unions.PlatformFee>;
|