@flowio/api-internal-prop-types 9.24.47 → 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 +124 -104
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +124 -104
- package/src/api-internal.js +218 -167
package/src/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 {
|
|
@@ -5735,7 +5666,9 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5735
5666
|
type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
5736
5667
|
type FulfillmentOrderDeliveryMethodType = 'local' | 'none' | 'pick_up' | 'retail' | 'shipping';
|
|
5737
5668
|
type IncotermDuties = 'DAP' | 'DDP';
|
|
5669
|
+
type ShopifyDiscountValueType = 'fixed_amount' | 'percentage';
|
|
5738
5670
|
type ShopifyDiscrepancyReason = 'restock' | 'damage' | 'customer' | 'other';
|
|
5671
|
+
type ShopifyDraftOrderStatus = 'open' | 'invoice_sent' | 'completed' | 'pending' | 'authorized' | 'partially_paid' | 'paid' | 'partially_refunded' | 'refunded' | 'voided';
|
|
5739
5672
|
type ShopifyOrderCancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
5740
5673
|
type ShopifyOrderDiscountAllocationMethod = 'across' | 'each' | 'one';
|
|
5741
5674
|
type ShopifyOrderDiscountApplicationTargetSelection = 'all' | 'entitled' | 'explicit';
|
|
@@ -5757,6 +5690,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5757
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';
|
|
5758
5691
|
type ShopifyOrderTransactionStatus = 'pending' | 'failure' | 'success' | 'error';
|
|
5759
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';
|
|
5760
5694
|
type ShopifyWebhookFormat = 'json' | 'xml';
|
|
5761
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';
|
|
5762
5696
|
}
|
|
@@ -5824,11 +5758,58 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5824
5758
|
readonly 'shop': io.flow.shopify.markets.v0.models.Shop;
|
|
5825
5759
|
}
|
|
5826
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
|
+
|
|
5827
5769
|
interface ShopifyCountryHarmonizedSystemCode {
|
|
5828
5770
|
readonly 'country_code': string;
|
|
5829
5771
|
readonly 'harmonized_system_code': string;
|
|
5830
5772
|
}
|
|
5831
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
|
+
|
|
5832
5813
|
interface ShopifyError {
|
|
5833
5814
|
readonly 'errors': any/*object*/;
|
|
5834
5815
|
}
|
|
@@ -6001,7 +5982,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6001
5982
|
|
|
6002
5983
|
interface ShopifyOrderAttribute {
|
|
6003
5984
|
readonly 'name': string;
|
|
6004
|
-
readonly 'value':
|
|
5985
|
+
readonly 'value': any/*json*/;
|
|
6005
5986
|
}
|
|
6006
5987
|
|
|
6007
5988
|
interface ShopifyOrderCancellationForm {
|
|
@@ -6017,6 +5998,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6017
5998
|
readonly 'user_agent'?: string;
|
|
6018
5999
|
}
|
|
6019
6000
|
|
|
6001
|
+
interface ShopifyOrderCount {
|
|
6002
|
+
readonly 'count': number;
|
|
6003
|
+
}
|
|
6004
|
+
|
|
6020
6005
|
interface ShopifyOrderCustomer {
|
|
6021
6006
|
readonly 'id'?: number;
|
|
6022
6007
|
readonly 'email'?: string;
|
|
@@ -6120,6 +6105,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6120
6105
|
readonly 'variant_inventory_management'?: string;
|
|
6121
6106
|
}
|
|
6122
6107
|
|
|
6108
|
+
interface ShopifyOrderId {
|
|
6109
|
+
readonly 'id': number;
|
|
6110
|
+
}
|
|
6111
|
+
|
|
6123
6112
|
interface ShopifyOrderLineItem {
|
|
6124
6113
|
readonly 'fulfillable_quantity'?: number;
|
|
6125
6114
|
readonly 'fulfillment_service': string;
|
|
@@ -6231,7 +6220,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6231
6220
|
interface ShopifyOrderShippingLine {
|
|
6232
6221
|
readonly 'code'?: string;
|
|
6233
6222
|
readonly 'price': string;
|
|
6234
|
-
readonly 'source'
|
|
6223
|
+
readonly 'source'?: string;
|
|
6235
6224
|
readonly 'title': string;
|
|
6236
6225
|
readonly 'tax_lines': io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
6237
6226
|
readonly 'carrier_identifier'?: string;
|
|
@@ -6279,6 +6268,24 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6279
6268
|
readonly 'orders': io.flow.shopify.markets.v0.models.ShopifyOrder[];
|
|
6280
6269
|
}
|
|
6281
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
|
+
|
|
6282
6289
|
interface ShopifyRefund {
|
|
6283
6290
|
readonly 'notify_x': boolean;
|
|
6284
6291
|
readonly 'note'?: string;
|
|
@@ -9941,7 +9948,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
9941
9948
|
type AttachmentType = 'csv';
|
|
9942
9949
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
9943
9950
|
type PayoutStatusCode = 'scheduled' | 'sent' | 'cancelled' | 'failed' | 'succeeded';
|
|
9944
|
-
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';
|
|
9945
9952
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
9946
9953
|
}
|
|
9947
9954
|
|
|
@@ -11685,6 +11692,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11685
11692
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
11686
11693
|
type AccountType = 'channel' | 'organization';
|
|
11687
11694
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
11695
|
+
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
11688
11696
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
11689
11697
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
11690
11698
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
@@ -11693,17 +11701,17 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11693
11701
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
11694
11702
|
type BillingStatementReviewStatus = 'approved' | 'pending';
|
|
11695
11703
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
11696
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty';
|
|
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';
|
|
11697
11705
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
11698
11706
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
11699
11707
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
11700
11708
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
|
|
11701
11709
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
11702
11710
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
11703
|
-
type ChannelBilledTransactionType = 'adjustment' | 'channel_initiated';
|
|
11711
|
+
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
11704
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';
|
|
11705
11713
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
11706
|
-
type ChannelTransactionType = 'adjustment' | 'processing';
|
|
11714
|
+
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
11707
11715
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
11708
11716
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
11709
11717
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -11804,10 +11812,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11804
11812
|
type DutyRateUnitOfMeasure = 'kg' | 'sq m' | 'item' | 'pair';
|
|
11805
11813
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
11806
11814
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
11807
|
-
type DutyTransactionType = 'adjustment' | 'duty';
|
|
11815
|
+
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
11808
11816
|
type EmptyAttribute = 'irrelevant';
|
|
11809
11817
|
type ErpFileType = 'vendor';
|
|
11810
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
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';
|
|
11811
11819
|
type ExperienceImportType = 'experience_with_settings';
|
|
11812
11820
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
11813
11821
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -11839,7 +11847,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11839
11847
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
11840
11848
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
11841
11849
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
11842
|
-
type LabelTransactionType = 'adjustment' | 'billable_label' | 'fee' | 'revenue_share';
|
|
11850
|
+
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
11843
11851
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
11844
11852
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
11845
11853
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
@@ -11865,7 +11873,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11865
11873
|
type OrderAttributeIntent = 'discount_code';
|
|
11866
11874
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
11867
11875
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
11868
|
-
type OrderTransactionType = 'adjustment' | 'order_service';
|
|
11876
|
+
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
11869
11877
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
11870
11878
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
11871
11879
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
@@ -11881,7 +11889,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11881
11889
|
type PregenDataKeyField = 'shipping_country' | 'shipping_province' | 'invoicing_country' | 'delivery_option_id';
|
|
11882
11890
|
type PriceSelector = 'minimum' | 'maximum';
|
|
11883
11891
|
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
11884
|
-
type ProcessingTransactionType = 'adjustment' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
11892
|
+
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
11885
11893
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
11886
11894
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
11887
11895
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
@@ -11930,7 +11938,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11930
11938
|
type TaskProcessorKey = 'billing_account' | 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'label_generation_settings' | 'ratecard';
|
|
11931
11939
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
11932
11940
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
11933
|
-
type TaxTransactionType = 'adjustment' | 'tax';
|
|
11941
|
+
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
11934
11942
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
11935
11943
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
11936
11944
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
@@ -12964,6 +12972,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12964
12972
|
readonly 'adjustment': io.flow.common.v0.models.Price;
|
|
12965
12973
|
readonly 'capture': io.flow.common.v0.models.Price;
|
|
12966
12974
|
readonly 'refund': io.flow.common.v0.models.Price;
|
|
12975
|
+
readonly 'reversal': io.flow.common.v0.models.Price;
|
|
12967
12976
|
readonly 'credit_payment': io.flow.common.v0.models.Price;
|
|
12968
12977
|
readonly 'fully_subsidized_order': io.flow.common.v0.models.Price;
|
|
12969
12978
|
readonly 'virtual_card_capture': io.flow.common.v0.models.Price;
|
|
@@ -13645,6 +13654,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13645
13654
|
interface ChannelTransaction {
|
|
13646
13655
|
readonly 'discriminator': 'channel_transaction';
|
|
13647
13656
|
readonly 'transaction': io.flow.internal.v0.models.TransactionReference;
|
|
13657
|
+
readonly 'fees': io.flow.internal.v0.models.Fee[];
|
|
13648
13658
|
readonly 'id': string;
|
|
13649
13659
|
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
13650
13660
|
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -18610,6 +18620,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18610
18620
|
readonly 'url': string;
|
|
18611
18621
|
}
|
|
18612
18622
|
|
|
18623
|
+
interface Hs6Detail {
|
|
18624
|
+
readonly 'hs6_code': string;
|
|
18625
|
+
readonly 'description': string;
|
|
18626
|
+
}
|
|
18627
|
+
|
|
18613
18628
|
interface Hs6Metadata {
|
|
18614
18629
|
readonly 'description': string;
|
|
18615
18630
|
}
|
|
@@ -20015,7 +20030,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20015
20030
|
readonly 'legal_name': string;
|
|
20016
20031
|
readonly 'shop_name': string;
|
|
20017
20032
|
readonly 'organization_id': string;
|
|
20018
|
-
readonly 'onboarding_state': io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
20019
20033
|
readonly 'onboarding_current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
20020
20034
|
readonly 'gmv': number;
|
|
20021
20035
|
}
|
|
@@ -21222,12 +21236,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21222
21236
|
readonly 'label_tracking_summary_id': string;
|
|
21223
21237
|
}
|
|
21224
21238
|
|
|
21225
|
-
interface ProofOfPostingFullyRefunded {
|
|
21226
|
-
readonly 'discriminator': 'fully_refunded';
|
|
21227
|
-
readonly 'capture_id': string;
|
|
21228
|
-
readonly 'refund_ids': string[];
|
|
21229
|
-
}
|
|
21230
|
-
|
|
21231
21239
|
interface ProofOfPostingOrderCancellation {
|
|
21232
21240
|
readonly 'discriminator': 'order_cancellation';
|
|
21233
21241
|
readonly 'order_cancellation_id': string;
|
|
@@ -22117,6 +22125,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22117
22125
|
readonly 'access_token_masked'?: string;
|
|
22118
22126
|
}
|
|
22119
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
|
+
|
|
22120
22136
|
interface ShopifyMarketsShopForm {
|
|
22121
22137
|
readonly 'shop': string;
|
|
22122
22138
|
readonly 'domain': string;
|
|
@@ -22132,6 +22148,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22132
22148
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
22133
22149
|
}
|
|
22134
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
|
+
|
|
22135
22159
|
interface ShopifyMarketsSubsidiaryCompany {
|
|
22136
22160
|
readonly 'legal_name'?: string;
|
|
22137
22161
|
readonly 'incorporation_country'?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
@@ -22175,7 +22199,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22175
22199
|
readonly 'organization_reference': io.flow.common.v0.models.OrganizationReference;
|
|
22176
22200
|
readonly 'order_number': string;
|
|
22177
22201
|
readonly 'monitor': io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
22178
|
-
readonly 'created_at': string;
|
|
22179
22202
|
}
|
|
22180
22203
|
|
|
22181
22204
|
interface ShopifyMonitoringOrderMonitorEventDeleted {
|
|
@@ -22197,15 +22220,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22197
22220
|
interface ShopifyMonitoringOrderMonitorReview {
|
|
22198
22221
|
readonly 'id': string;
|
|
22199
22222
|
readonly 'order_monitor': io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
22200
|
-
readonly 'order_details': io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
22201
22223
|
readonly 'status': io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
22202
22224
|
}
|
|
22203
22225
|
|
|
22204
|
-
interface ShopifyMonitoringOrderMonitorReviewOrderDetails {
|
|
22205
|
-
readonly 'organization': string;
|
|
22206
|
-
readonly 'shopify_order': io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
22207
|
-
}
|
|
22208
|
-
|
|
22209
22226
|
interface ShopifyMonitoringTrackingNumber {
|
|
22210
22227
|
readonly 'number': string;
|
|
22211
22228
|
}
|
|
@@ -23195,6 +23212,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23195
23212
|
readonly 'original_transaction_id': string;
|
|
23196
23213
|
readonly 'description': string;
|
|
23197
23214
|
readonly 'details': io.flow.internal.v0.unions.AdjustmentDetails;
|
|
23215
|
+
readonly 'type'?: io.flow.internal.v0.enums.AdjustmentTransactionType;
|
|
23198
23216
|
}
|
|
23199
23217
|
|
|
23200
23218
|
interface TransactionReference {
|
|
@@ -23595,7 +23613,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23595
23613
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
23596
23614
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
23597
23615
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
23598
|
-
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
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);
|
|
23599
23617
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
23600
23618
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
23601
23619
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -23632,7 +23650,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23632
23650
|
type ProcessorMerchantForm = (io.flow.internal.v0.models.StripeMerchantForm);
|
|
23633
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);
|
|
23634
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);
|
|
23635
|
-
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);
|
|
23636
23654
|
type RoutingEntity = (io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant);
|
|
23637
23655
|
type ShopifyMonitoringOrderMonitorType = (io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails);
|
|
23638
23656
|
type ShopifyPromotionOfferDiscount = (io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent);
|
|
@@ -23656,6 +23674,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23656
23674
|
export const accountSettingLiabilitiesMethod: PropTypes.Requireable<io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod>;
|
|
23657
23675
|
export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.AccountType>;
|
|
23658
23676
|
export const addressConfigurationSettingProvinceCode: PropTypes.Requireable<io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode>;
|
|
23677
|
+
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
23659
23678
|
export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
|
|
23660
23679
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
23661
23680
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
@@ -24874,6 +24893,7 @@ export const heapWebsocketRequest: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
24874
24893
|
export const heapWebsocketResponse: PropTypes.Requireable<io.flow.internal.v0.models.HeapWebsocketResponse>;
|
|
24875
24894
|
export const heapWebsocketRetry: PropTypes.Requireable<io.flow.internal.v0.models.HeapWebsocketRetry>;
|
|
24876
24895
|
export const href: PropTypes.Requireable<io.flow.internal.v0.models.Href>;
|
|
24896
|
+
export const hs6Detail: PropTypes.Requireable<io.flow.internal.v0.models.Hs6Detail>;
|
|
24877
24897
|
export const hs6Metadata: PropTypes.Requireable<io.flow.internal.v0.models.Hs6Metadata>;
|
|
24878
24898
|
export const hybrisCatalogItemsImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequest>;
|
|
24879
24899
|
export const hybrisCatalogItemsImportRequestData: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData>;
|
|
@@ -25222,7 +25242,6 @@ export const productListSettingsForm: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
25222
25242
|
export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
|
|
25223
25243
|
export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
|
|
25224
25244
|
export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
|
|
25225
|
-
export const proofOfPostingFullyRefunded: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFullyRefunded>;
|
|
25226
25245
|
export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
|
|
25227
25246
|
export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
|
|
25228
25247
|
export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
|
|
@@ -25347,8 +25366,10 @@ export const shopifyMarketsOrder: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
25347
25366
|
export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderDeleted>;
|
|
25348
25367
|
export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
|
|
25349
25368
|
export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
|
|
25369
|
+
export const shopifyMarketsShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopDeleted>;
|
|
25350
25370
|
export const shopifyMarketsShopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopForm>;
|
|
25351
25371
|
export const shopifyMarketsShopSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopSummary>;
|
|
25372
|
+
export const shopifyMarketsShopUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopUpserted>;
|
|
25352
25373
|
export const shopifyMarketsSubsidiaryCompany: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany>;
|
|
25353
25374
|
export const shopifyMarketsSync: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSync>;
|
|
25354
25375
|
export const shopifyMarketsWebhookRegistration: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration>;
|
|
@@ -25360,7 +25381,6 @@ export const shopifyMonitoringOrderMonitor: PropTypes.Requireable<io.flow.intern
|
|
|
25360
25381
|
export const shopifyMonitoringOrderMonitorEventDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted>;
|
|
25361
25382
|
export const shopifyMonitoringOrderMonitorEventUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted>;
|
|
25362
25383
|
export const shopifyMonitoringOrderMonitorReview: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReview>;
|
|
25363
|
-
export const shopifyMonitoringOrderMonitorReviewOrderDetails: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails>;
|
|
25364
25384
|
export const shopifyMonitoringTrackingNumber: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber>;
|
|
25365
25385
|
export const shopifyMonitoringTrackingUrl: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringTrackingUrl>;
|
|
25366
25386
|
export const shopifyOrderAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderAuthorization>;
|