@flowio/types 11.24.52 → 11.24.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +275 -67
- package/dist/api.d.ts +74 -28
- package/package.json +2 -2
- package/src/api-internal.ts +360 -77
- package/src/api.ts +88 -35
package/dist/api-internal.d.ts
CHANGED
|
@@ -3088,6 +3088,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3088
3088
|
readonly order_identifier?: string;
|
|
3089
3089
|
readonly fulfillment_key?: string;
|
|
3090
3090
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3091
|
+
readonly updated_at: string;
|
|
3091
3092
|
}
|
|
3092
3093
|
interface ShippingNotificationVersion {
|
|
3093
3094
|
readonly id: string;
|
|
@@ -4735,7 +4736,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4735
4736
|
readonly id: number;
|
|
4736
4737
|
readonly quantity: number;
|
|
4737
4738
|
readonly fulfillable_quantity?: number;
|
|
4738
|
-
readonly fulfillment_service: string;
|
|
4739
4739
|
readonly fulfillment_status?: io.flow.shopify.external.v0.enums.FulfillmentStatusType;
|
|
4740
4740
|
readonly grams?: number;
|
|
4741
4741
|
readonly price?: string;
|
|
@@ -4755,7 +4755,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4755
4755
|
}
|
|
4756
4756
|
interface ShopifyLineItemForm {
|
|
4757
4757
|
readonly fulfillable_quantity?: number;
|
|
4758
|
-
readonly fulfillment_service: string;
|
|
4759
4758
|
readonly fulfillment_status?: io.flow.shopify.external.v0.enums.FulfillmentStatusType;
|
|
4760
4759
|
readonly grams?: number;
|
|
4761
4760
|
readonly price?: string;
|
|
@@ -4921,7 +4920,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4921
4920
|
readonly title: string;
|
|
4922
4921
|
readonly tax_lines: io.flow.shopify.external.v0.models.ShopifyTaxLine[];
|
|
4923
4922
|
readonly carrier_identifier?: string;
|
|
4924
|
-
readonly requested_fulfillment_service_id?: string;
|
|
4925
4923
|
}
|
|
4926
4924
|
interface ShopifyTaxLine {
|
|
4927
4925
|
readonly price: string;
|
|
@@ -5343,10 +5341,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5343
5341
|
readonly updated_at?: string;
|
|
5344
5342
|
readonly first_name?: string;
|
|
5345
5343
|
readonly last_name?: string;
|
|
5346
|
-
readonly orders_count?: number;
|
|
5347
5344
|
readonly state?: string;
|
|
5348
|
-
readonly total_spent?: string;
|
|
5349
|
-
readonly last_order_id?: number;
|
|
5350
5345
|
readonly note?: string;
|
|
5351
5346
|
readonly verified_email?: boolean;
|
|
5352
5347
|
readonly multipass_identifier?: string;
|
|
@@ -5354,7 +5349,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5354
5349
|
readonly tax_exemptions?: any[];
|
|
5355
5350
|
readonly phone?: string;
|
|
5356
5351
|
readonly tags?: string;
|
|
5357
|
-
readonly last_order_name?: string;
|
|
5358
5352
|
readonly currency?: string;
|
|
5359
5353
|
readonly addresses?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5360
5354
|
readonly default_address?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
@@ -5433,7 +5427,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5433
5427
|
}
|
|
5434
5428
|
interface ShopifyOrderLineItem {
|
|
5435
5429
|
readonly fulfillable_quantity?: number;
|
|
5436
|
-
readonly fulfillment_service: string;
|
|
5437
5430
|
readonly fulfillment_status?: io.flow.shopify.markets.v0.enums.ShopifyOrderFulfillmentStatusType;
|
|
5438
5431
|
readonly grams?: number;
|
|
5439
5432
|
readonly id: number;
|
|
@@ -5457,7 +5450,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5457
5450
|
readonly total_discount?: string;
|
|
5458
5451
|
readonly total_discount_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
5459
5452
|
readonly discount_allocations?: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountAllocation[];
|
|
5460
|
-
readonly origin_location?: io.flow.shopify.markets.v0.models.ShopifyOrderOriginLocation;
|
|
5461
5453
|
readonly variant_inventory_management?: string;
|
|
5462
5454
|
readonly product_exists?: boolean;
|
|
5463
5455
|
readonly duties: io.flow.shopify.markets.v0.models.ShopifyOrderDuty[];
|
|
@@ -5536,7 +5528,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5536
5528
|
readonly title: string;
|
|
5537
5529
|
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
5538
5530
|
readonly carrier_identifier?: string;
|
|
5539
|
-
readonly requested_fulfillment_service_id?: string;
|
|
5540
5531
|
readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
5541
5532
|
readonly discounted_price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
5542
5533
|
}
|
|
@@ -5554,7 +5545,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5554
5545
|
readonly currency: string;
|
|
5555
5546
|
readonly status?: io.flow.shopify.markets.v0.enums.ShopifyOrderTransactionStatus;
|
|
5556
5547
|
readonly payment_details?: io.flow.shopify.markets.v0.models.ShopifyOrderPaymentDetail;
|
|
5557
|
-
readonly receipt
|
|
5548
|
+
readonly receipt?: any;
|
|
5558
5549
|
readonly authorization?: string;
|
|
5559
5550
|
readonly created_at: string;
|
|
5560
5551
|
readonly device_id?: number;
|
|
@@ -6119,8 +6110,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6119
6110
|
readonly card_data: io.flow.payment.gateway.v0.unions.PaymentMethodCard;
|
|
6120
6111
|
readonly device_fingerprint_details: io.flow.payment.gateway.v0.unions.DeviceFingerprintDetails;
|
|
6121
6112
|
readonly cvv?: string;
|
|
6122
|
-
readonly
|
|
6123
|
-
readonly previous_transaction_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
6113
|
+
readonly stored_details_card?: io.flow.payment.gateway.v0.unions.PaymentMethodStoredDetailsCard;
|
|
6124
6114
|
}
|
|
6125
6115
|
interface PaymentMethodDataAuthorizeGooglepay {
|
|
6126
6116
|
readonly type: 'authorize_googlepay';
|
|
@@ -6196,6 +6186,15 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6196
6186
|
readonly type: 'validate_applepay';
|
|
6197
6187
|
readonly validation_url: string;
|
|
6198
6188
|
}
|
|
6189
|
+
interface PaymentMethodStoredDetailsCardInitial {
|
|
6190
|
+
readonly type: 'initial';
|
|
6191
|
+
readonly reference?: string;
|
|
6192
|
+
}
|
|
6193
|
+
interface PaymentMethodStoredDetailsCardSubsequent {
|
|
6194
|
+
readonly type: 'subsequent';
|
|
6195
|
+
readonly reference?: string;
|
|
6196
|
+
readonly previous_transaction_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
6197
|
+
}
|
|
6199
6198
|
interface PaymentMethodSummaryAfterpay {
|
|
6200
6199
|
readonly type: 'afterpay';
|
|
6201
6200
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
@@ -6353,6 +6352,7 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
6353
6352
|
type PaymentMethodDataAuthorizeApplepayResult = io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
|
|
6354
6353
|
type PaymentMethodDataAuthorizeKlarnaResult = io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
|
|
6355
6354
|
type PaymentMethodDataOptionLogo = io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg;
|
|
6355
|
+
type PaymentMethodStoredDetailsCard = io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardSubsequent;
|
|
6356
6356
|
type PaymentMethodSummary = io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact;
|
|
6357
6357
|
type SdkAdyenV3AuthenticationToken = io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken;
|
|
6358
6358
|
}
|
|
@@ -7962,6 +7962,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
7962
7962
|
}
|
|
7963
7963
|
interface LabelTrackingSummaryUpdate {
|
|
7964
7964
|
readonly timestamp: string;
|
|
7965
|
+
readonly created_at?: string;
|
|
7965
7966
|
}
|
|
7966
7967
|
interface Tracking {
|
|
7967
7968
|
readonly id: string;
|
|
@@ -8741,9 +8742,10 @@ declare namespace io.flow.item.v0.models {
|
|
|
8741
8742
|
}
|
|
8742
8743
|
}
|
|
8743
8744
|
declare namespace io.flow.billing.v0.enums {
|
|
8744
|
-
type AttachmentType = 'csv';
|
|
8745
8745
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
8746
|
-
type
|
|
8746
|
+
type PayoutAttachmentType = 'transactions';
|
|
8747
|
+
type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
|
|
8748
|
+
type StatementAttachmentType = 'csv';
|
|
8747
8749
|
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';
|
|
8748
8750
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
8749
8751
|
}
|
|
@@ -8753,7 +8755,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8753
8755
|
readonly currency: string;
|
|
8754
8756
|
}
|
|
8755
8757
|
interface Attachment {
|
|
8756
|
-
readonly type: io.flow.billing.v0.enums.
|
|
8758
|
+
readonly type: io.flow.billing.v0.enums.StatementAttachmentType;
|
|
8757
8759
|
readonly url: string;
|
|
8758
8760
|
}
|
|
8759
8761
|
interface BankAccountForm {
|
|
@@ -8782,6 +8784,15 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8782
8784
|
readonly amount: number;
|
|
8783
8785
|
readonly description?: string;
|
|
8784
8786
|
}
|
|
8787
|
+
interface ChannelPayout {
|
|
8788
|
+
readonly id: string;
|
|
8789
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
8790
|
+
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
8791
|
+
readonly amount: number;
|
|
8792
|
+
readonly attachments: io.flow.billing.v0.models.PayoutAttachment[];
|
|
8793
|
+
readonly created_at: string;
|
|
8794
|
+
readonly updated_at: string;
|
|
8795
|
+
}
|
|
8785
8796
|
interface ChannelStatement {
|
|
8786
8797
|
readonly id: string;
|
|
8787
8798
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -8791,12 +8802,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8791
8802
|
readonly created_at: string;
|
|
8792
8803
|
}
|
|
8793
8804
|
interface ChannelTransaction {
|
|
8805
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
8794
8806
|
readonly id: string;
|
|
8795
8807
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
8796
|
-
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
8797
8808
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
8798
8809
|
readonly currency: string;
|
|
8799
8810
|
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
8811
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
8800
8812
|
readonly gross: number;
|
|
8801
8813
|
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
8802
8814
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
@@ -8804,6 +8816,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8804
8816
|
readonly net: number;
|
|
8805
8817
|
readonly identifiers: Record<string, string>;
|
|
8806
8818
|
readonly created_at: string;
|
|
8819
|
+
readonly updated_at: string;
|
|
8807
8820
|
}
|
|
8808
8821
|
interface DefaultBankAccountForm {
|
|
8809
8822
|
readonly bank_account_id: string;
|
|
@@ -8813,10 +8826,6 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8813
8826
|
readonly amount: number;
|
|
8814
8827
|
readonly description?: string;
|
|
8815
8828
|
}
|
|
8816
|
-
interface NoPayout {
|
|
8817
|
-
readonly discriminator: 'no_payout';
|
|
8818
|
-
readonly placeholder?: string;
|
|
8819
|
-
}
|
|
8820
8829
|
interface OrganizationBankAccount {
|
|
8821
8830
|
readonly id: string;
|
|
8822
8831
|
readonly last4: string;
|
|
@@ -8825,16 +8834,62 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8825
8834
|
readonly id: string;
|
|
8826
8835
|
readonly bank_account: io.flow.billing.v0.models.BankAccountReference;
|
|
8827
8836
|
}
|
|
8828
|
-
interface
|
|
8837
|
+
interface OrganizationPayout {
|
|
8838
|
+
readonly id: string;
|
|
8839
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
8840
|
+
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
8841
|
+
readonly amount: number;
|
|
8842
|
+
readonly attachments: io.flow.billing.v0.models.PayoutAttachment[];
|
|
8843
|
+
readonly created_at: string;
|
|
8844
|
+
readonly updated_at: string;
|
|
8845
|
+
}
|
|
8846
|
+
interface ParentTransactionSummary {
|
|
8847
|
+
readonly id: string;
|
|
8848
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
8849
|
+
}
|
|
8850
|
+
interface PayoutAttachment {
|
|
8851
|
+
readonly type: io.flow.billing.v0.enums.PayoutAttachmentType;
|
|
8852
|
+
readonly url: string;
|
|
8853
|
+
}
|
|
8854
|
+
interface PayoutStatusFailed {
|
|
8855
|
+
readonly code: 'failed';
|
|
8856
|
+
readonly timestamp: string;
|
|
8857
|
+
readonly reason: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
8858
|
+
}
|
|
8859
|
+
interface PayoutStatusScheduled {
|
|
8860
|
+
readonly code: 'scheduled';
|
|
8861
|
+
readonly placeholder?: string;
|
|
8862
|
+
}
|
|
8863
|
+
interface PayoutStatusSent {
|
|
8864
|
+
readonly code: 'sent';
|
|
8865
|
+
readonly timestamp: string;
|
|
8866
|
+
}
|
|
8867
|
+
interface PayoutTransaction {
|
|
8868
|
+
readonly id: string;
|
|
8869
|
+
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
8870
|
+
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
8871
|
+
readonly currency: string;
|
|
8872
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
8873
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
8874
|
+
readonly gross: number;
|
|
8875
|
+
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
8876
|
+
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
8877
|
+
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
8878
|
+
readonly net: number;
|
|
8879
|
+
readonly identifiers: Record<string, string>;
|
|
8880
|
+
readonly created_at: string;
|
|
8881
|
+
readonly updated_at: string;
|
|
8882
|
+
}
|
|
8883
|
+
interface SettlementNoPayout {
|
|
8884
|
+
readonly discriminator: 'no_payout';
|
|
8885
|
+
readonly placeholder?: string;
|
|
8886
|
+
}
|
|
8887
|
+
interface SettlementPayout {
|
|
8829
8888
|
readonly discriminator: 'payout';
|
|
8830
|
-
readonly status: io.flow.billing.v0.
|
|
8889
|
+
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
8831
8890
|
readonly amount: number;
|
|
8832
8891
|
readonly sent_on?: string;
|
|
8833
8892
|
}
|
|
8834
|
-
interface PayoutStatus {
|
|
8835
|
-
readonly code: io.flow.billing.v0.enums.PayoutStatusCode;
|
|
8836
|
-
readonly reason?: string;
|
|
8837
|
-
}
|
|
8838
8893
|
interface Statement {
|
|
8839
8894
|
readonly id: string;
|
|
8840
8895
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -8844,12 +8899,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8844
8899
|
readonly created_at: string;
|
|
8845
8900
|
}
|
|
8846
8901
|
interface Transaction {
|
|
8902
|
+
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
8847
8903
|
readonly id: string;
|
|
8848
8904
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
8849
|
-
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
8850
8905
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
8851
8906
|
readonly currency: string;
|
|
8852
8907
|
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
8908
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
8853
8909
|
readonly gross: number;
|
|
8854
8910
|
readonly fees: io.flow.billing.v0.models.FeeDeduction[];
|
|
8855
8911
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
@@ -8857,6 +8913,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8857
8913
|
readonly net: number;
|
|
8858
8914
|
readonly identifiers: Record<string, string>;
|
|
8859
8915
|
readonly created_at: string;
|
|
8916
|
+
readonly updated_at: string;
|
|
8860
8917
|
}
|
|
8861
8918
|
interface WithholdingDeduction {
|
|
8862
8919
|
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
@@ -8865,7 +8922,8 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8865
8922
|
}
|
|
8866
8923
|
}
|
|
8867
8924
|
declare namespace io.flow.billing.v0.unions {
|
|
8868
|
-
type
|
|
8925
|
+
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
8926
|
+
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
8869
8927
|
}
|
|
8870
8928
|
declare namespace io.flow.harmonization.v0.enums {
|
|
8871
8929
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -9804,7 +9862,7 @@ declare namespace io.flow.catalog.RESERVED_WORD_return.v0.models {
|
|
|
9804
9862
|
}
|
|
9805
9863
|
}
|
|
9806
9864
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
9807
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
9865
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
9808
9866
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
9809
9867
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
9810
9868
|
type ApplePayShippingType = 'shipping' | 'delivery' | 'store_pickup' | 'service_pickup';
|
|
@@ -9814,7 +9872,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
9814
9872
|
interface ApplePayLineItem {
|
|
9815
9873
|
readonly label: string;
|
|
9816
9874
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
9817
|
-
readonly amount:
|
|
9875
|
+
readonly amount: string;
|
|
9818
9876
|
}
|
|
9819
9877
|
interface ApplePayPaymentContact {
|
|
9820
9878
|
readonly email_address?: string;
|
|
@@ -9861,7 +9919,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
9861
9919
|
interface ApplePayShippingMethod {
|
|
9862
9920
|
readonly label: string;
|
|
9863
9921
|
readonly detail: string;
|
|
9864
|
-
readonly amount:
|
|
9922
|
+
readonly amount: string;
|
|
9865
9923
|
readonly identifier: string;
|
|
9866
9924
|
}
|
|
9867
9925
|
}
|
|
@@ -9946,7 +10004,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
9946
10004
|
}
|
|
9947
10005
|
interface SetupCompleted {
|
|
9948
10006
|
readonly discriminator: 'setup_completed';
|
|
9949
|
-
readonly
|
|
10007
|
+
readonly third_party_logistics_guid: string;
|
|
9950
10008
|
}
|
|
9951
10009
|
interface SetupInProgress {
|
|
9952
10010
|
readonly discriminator: 'setup_in_progress';
|
|
@@ -10242,6 +10300,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10242
10300
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
10243
10301
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
10244
10302
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
10303
|
+
type BankPaymentStatusCode = 'sent' | 'failed';
|
|
10245
10304
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
10246
10305
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
|
|
10247
10306
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
@@ -10255,7 +10314,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10255
10314
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
10256
10315
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
10257
10316
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
10258
|
-
type
|
|
10317
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject';
|
|
10318
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order';
|
|
10259
10319
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
10260
10320
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
10261
10321
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -10361,7 +10421,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10361
10421
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10362
10422
|
type EmptyAttribute = 'irrelevant';
|
|
10363
10423
|
type ErpFileType = 'vendor';
|
|
10364
|
-
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' | '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' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_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';
|
|
10424
|
+
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' | 'test_upserted' | 'test_deleted' | '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_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | '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';
|
|
10365
10425
|
type ExperienceImportType = 'experience_with_settings';
|
|
10366
10426
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10367
10427
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10408,6 +10468,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10408
10468
|
type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
|
|
10409
10469
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
10410
10470
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
10471
|
+
type MixedBagWeight = '0' | '1' | '2';
|
|
10411
10472
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
10412
10473
|
type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
|
|
10413
10474
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
@@ -10446,6 +10507,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10446
10507
|
type RateSource = 'calculated' | 'market';
|
|
10447
10508
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
10448
10509
|
type RedirectReason = 'three_d_secure';
|
|
10510
|
+
type RejectionReason = 'suspicious_behavior' | 'suspicious_past_activity' | 'risky_velocity' | 'previous_chargebacks' | 'restricted_party_screening';
|
|
10449
10511
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
10450
10512
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
10451
10513
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -10496,19 +10558,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10496
10558
|
readonly accepted_by: io.flow.common.v0.models.UserReference;
|
|
10497
10559
|
readonly accepted_at: string;
|
|
10498
10560
|
}
|
|
10499
|
-
interface Account {
|
|
10500
|
-
readonly id: string;
|
|
10501
|
-
readonly currency: string;
|
|
10502
|
-
readonly updated_at: string;
|
|
10503
|
-
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
10504
|
-
readonly payment_schedule: io.flow.common.v0.unions.RepeatSchedule;
|
|
10505
|
-
readonly payment_conditions?: string;
|
|
10506
|
-
readonly deposit_rule?: io.flow.internal.v0.models.AccountDepositRule;
|
|
10507
|
-
readonly center_key?: string;
|
|
10508
|
-
readonly statistics: io.flow.internal.v0.models.AccountStatistics;
|
|
10509
|
-
readonly next_statement: io.flow.internal.v0.models.NextBillingStatement;
|
|
10510
|
-
readonly created_at: string;
|
|
10511
|
-
}
|
|
10512
10561
|
interface AccountContact {
|
|
10513
10562
|
readonly id: string;
|
|
10514
10563
|
readonly email: string;
|
|
@@ -10608,10 +10657,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10608
10657
|
readonly timestamp: string;
|
|
10609
10658
|
readonly rates: io.flow.internal.v0.models.AccountProcessingRates;
|
|
10610
10659
|
}
|
|
10611
|
-
interface AccountReference {
|
|
10612
|
-
readonly id: string;
|
|
10613
|
-
readonly currency: string;
|
|
10614
|
-
}
|
|
10615
10660
|
interface AccountSettingLabelFees {
|
|
10616
10661
|
readonly flow?: io.flow.internal.v0.models.TieredFee;
|
|
10617
10662
|
readonly organization?: io.flow.internal.v0.models.TieredFee;
|
|
@@ -10639,6 +10684,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10639
10684
|
readonly require_payment_request: boolean;
|
|
10640
10685
|
readonly round_individual_transactions: boolean;
|
|
10641
10686
|
readonly liabilities_method: io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
10687
|
+
readonly enable_fee_reversals: boolean;
|
|
10642
10688
|
}
|
|
10643
10689
|
interface AccountSettingsDeleted {
|
|
10644
10690
|
readonly discriminator: 'account_settings_deleted';
|
|
@@ -10688,13 +10734,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10688
10734
|
readonly event_id: string;
|
|
10689
10735
|
readonly timestamp: string;
|
|
10690
10736
|
readonly organization: string;
|
|
10691
|
-
readonly account: io.flow.internal.v0.models.
|
|
10737
|
+
readonly account: io.flow.internal.v0.models.OrganizationAccount;
|
|
10692
10738
|
}
|
|
10693
10739
|
interface AccountUpsertedV2 {
|
|
10694
10740
|
readonly discriminator: 'account_upserted_v2';
|
|
10695
10741
|
readonly event_id: string;
|
|
10696
10742
|
readonly timestamp: string;
|
|
10697
|
-
readonly account: io.flow.internal.v0.models.
|
|
10743
|
+
readonly account: io.flow.internal.v0.models.FlowAccount;
|
|
10698
10744
|
}
|
|
10699
10745
|
interface ActionQuantity {
|
|
10700
10746
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
@@ -11166,10 +11212,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11166
11212
|
interface BankPayment {
|
|
11167
11213
|
readonly id: string;
|
|
11168
11214
|
readonly key: string;
|
|
11169
|
-
readonly account: io.flow.
|
|
11215
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
11170
11216
|
readonly reference?: string;
|
|
11171
11217
|
readonly sent_on: string;
|
|
11172
|
-
readonly status: io.flow.billing.v0.
|
|
11218
|
+
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
11173
11219
|
readonly expected_delivery_by: string;
|
|
11174
11220
|
readonly total: io.flow.common.v0.models.Price;
|
|
11175
11221
|
}
|
|
@@ -11196,8 +11242,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11196
11242
|
readonly transfer_transaction_ids: string[];
|
|
11197
11243
|
}
|
|
11198
11244
|
interface BankPaymentStatusForm {
|
|
11199
|
-
readonly code: io.flow.
|
|
11200
|
-
readonly
|
|
11245
|
+
readonly code: io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
11246
|
+
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
11201
11247
|
}
|
|
11202
11248
|
interface BankPaymentUpserted {
|
|
11203
11249
|
readonly discriminator: 'bank_payment_upserted';
|
|
@@ -11366,7 +11412,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11366
11412
|
}
|
|
11367
11413
|
interface BillingStatementSummary {
|
|
11368
11414
|
readonly id: string;
|
|
11369
|
-
readonly account: io.flow.
|
|
11415
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
11370
11416
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
11371
11417
|
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
11372
11418
|
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
@@ -11751,6 +11797,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11751
11797
|
readonly organization: string;
|
|
11752
11798
|
readonly data: io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
11753
11799
|
}
|
|
11800
|
+
interface CatalogSettings {
|
|
11801
|
+
readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
|
|
11802
|
+
}
|
|
11803
|
+
interface CatalogSettingsPutForm {
|
|
11804
|
+
readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
|
|
11805
|
+
}
|
|
11754
11806
|
interface CenterDefaults {
|
|
11755
11807
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
11756
11808
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
@@ -11837,7 +11889,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11837
11889
|
}
|
|
11838
11890
|
interface ChannelBillingStatement {
|
|
11839
11891
|
readonly id: string;
|
|
11840
|
-
readonly account: io.flow.
|
|
11892
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
11841
11893
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
11842
11894
|
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
11843
11895
|
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
@@ -13889,6 +13941,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13889
13941
|
readonly status: io.flow.internal.v0.enums.ItemClassificationStatus;
|
|
13890
13942
|
readonly classified_by: string;
|
|
13891
13943
|
}
|
|
13944
|
+
interface CommercialInvoiceComparison {
|
|
13945
|
+
readonly urls: string[];
|
|
13946
|
+
}
|
|
13892
13947
|
interface Compliance {
|
|
13893
13948
|
readonly id: string;
|
|
13894
13949
|
readonly destination: string;
|
|
@@ -14230,6 +14285,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14230
14285
|
readonly discriminator: 'channel_order_acceptance';
|
|
14231
14286
|
readonly decline_reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
14232
14287
|
}
|
|
14288
|
+
interface DeclineReasonFraud {
|
|
14289
|
+
readonly discriminator: 'fraud';
|
|
14290
|
+
readonly rejection_reason: io.flow.internal.v0.enums.RejectionReason;
|
|
14291
|
+
}
|
|
14233
14292
|
interface DecryptCipherForm {
|
|
14234
14293
|
readonly id: string;
|
|
14235
14294
|
readonly password: string;
|
|
@@ -15163,6 +15222,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15163
15222
|
readonly country: string;
|
|
15164
15223
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
15165
15224
|
}
|
|
15225
|
+
interface FlowAccount {
|
|
15226
|
+
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
15227
|
+
readonly id: string;
|
|
15228
|
+
readonly currency: string;
|
|
15229
|
+
readonly updated_at: string;
|
|
15230
|
+
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
15231
|
+
readonly payment_schedule: io.flow.common.v0.unions.RepeatSchedule;
|
|
15232
|
+
readonly payment_conditions?: string;
|
|
15233
|
+
readonly deposit_rule?: io.flow.internal.v0.models.AccountDepositRule;
|
|
15234
|
+
readonly center_key?: string;
|
|
15235
|
+
readonly statistics: io.flow.internal.v0.models.AccountStatistics;
|
|
15236
|
+
readonly next_statement: io.flow.internal.v0.models.NextBillingStatement;
|
|
15237
|
+
readonly created_at: string;
|
|
15238
|
+
}
|
|
15239
|
+
interface FlowChannelOrganization {
|
|
15240
|
+
readonly placeholder?: string;
|
|
15241
|
+
}
|
|
15166
15242
|
interface FlowLabProject {
|
|
15167
15243
|
readonly id: string;
|
|
15168
15244
|
readonly key: string;
|
|
@@ -15440,6 +15516,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15440
15516
|
readonly local: io.flow.common.v0.models.Money;
|
|
15441
15517
|
readonly transaction_created_at: string;
|
|
15442
15518
|
}
|
|
15519
|
+
interface GenerateLoad {
|
|
15520
|
+
readonly organization_id: string;
|
|
15521
|
+
readonly num_events: number;
|
|
15522
|
+
}
|
|
15443
15523
|
interface GiftCard {
|
|
15444
15524
|
readonly id: string;
|
|
15445
15525
|
readonly number: string;
|
|
@@ -17037,7 +17117,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17037
17117
|
}
|
|
17038
17118
|
interface MainTransaction {
|
|
17039
17119
|
readonly id: string;
|
|
17040
|
-
readonly account: io.flow.
|
|
17120
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
17041
17121
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
17042
17122
|
readonly value: io.flow.common.v0.models.Price;
|
|
17043
17123
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -17417,6 +17497,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17417
17497
|
readonly shop_name: string;
|
|
17418
17498
|
readonly organization_id: string;
|
|
17419
17499
|
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
17500
|
+
readonly setup_completed_at?: string;
|
|
17420
17501
|
readonly gmv: number;
|
|
17421
17502
|
}
|
|
17422
17503
|
interface OneTimeTokenRedemptionForm {
|
|
@@ -17693,7 +17774,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17693
17774
|
}
|
|
17694
17775
|
interface OrganizationBillingStatement {
|
|
17695
17776
|
readonly id: string;
|
|
17696
|
-
readonly account: io.flow.
|
|
17777
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
17697
17778
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
17698
17779
|
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
17699
17780
|
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
@@ -17716,6 +17797,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17716
17797
|
readonly timestamp: string;
|
|
17717
17798
|
readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
17718
17799
|
}
|
|
17800
|
+
interface OrganizationBusinessEntity {
|
|
17801
|
+
readonly id: string;
|
|
17802
|
+
readonly name: string;
|
|
17803
|
+
readonly streets: string[];
|
|
17804
|
+
readonly city: string;
|
|
17805
|
+
readonly province?: string;
|
|
17806
|
+
readonly postal?: string;
|
|
17807
|
+
readonly country: string;
|
|
17808
|
+
}
|
|
17809
|
+
interface OrganizationBusinessEntityDeleted {
|
|
17810
|
+
readonly discriminator: 'organization_business_entity_deleted';
|
|
17811
|
+
readonly event_id: string;
|
|
17812
|
+
readonly timestamp: string;
|
|
17813
|
+
readonly organization: string;
|
|
17814
|
+
readonly business_entity: io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
17815
|
+
readonly id: string;
|
|
17816
|
+
}
|
|
17817
|
+
interface OrganizationBusinessEntityUpserted {
|
|
17818
|
+
readonly discriminator: 'organization_business_entity_upserted';
|
|
17819
|
+
readonly event_id: string;
|
|
17820
|
+
readonly timestamp: string;
|
|
17821
|
+
readonly organization: string;
|
|
17822
|
+
readonly business_entity: io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
17823
|
+
}
|
|
17719
17824
|
interface OrganizationCurrencySetting {
|
|
17720
17825
|
readonly id: string;
|
|
17721
17826
|
readonly organization: string;
|
|
@@ -18197,7 +18302,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18197
18302
|
}
|
|
18198
18303
|
interface PendingBankPayment {
|
|
18199
18304
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
18200
|
-
readonly account: io.flow.
|
|
18305
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
18201
18306
|
readonly recommended_reference: string;
|
|
18202
18307
|
readonly total: io.flow.common.v0.models.Price;
|
|
18203
18308
|
readonly details: io.flow.internal.v0.models.PendingBankPaymentDetail[];
|
|
@@ -18551,6 +18656,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18551
18656
|
readonly timestamp: string;
|
|
18552
18657
|
readonly rate_freshness_summary: io.flow.internal.v0.models.RateFreshnessSummary;
|
|
18553
18658
|
}
|
|
18659
|
+
interface RateLevel {
|
|
18660
|
+
readonly id: string;
|
|
18661
|
+
readonly name: string;
|
|
18662
|
+
}
|
|
18663
|
+
interface RateLevelForm {
|
|
18664
|
+
readonly name: string;
|
|
18665
|
+
}
|
|
18666
|
+
interface RateLevelOrganization {
|
|
18667
|
+
readonly id: string;
|
|
18668
|
+
readonly organization_id: string;
|
|
18669
|
+
readonly rate_level_id: string;
|
|
18670
|
+
readonly effective_at: string;
|
|
18671
|
+
}
|
|
18672
|
+
interface RateLevelOrganizationForm {
|
|
18673
|
+
readonly rate_level_id: string;
|
|
18674
|
+
readonly effective_at: string;
|
|
18675
|
+
}
|
|
18676
|
+
interface RateLevelRatecard {
|
|
18677
|
+
readonly id: string;
|
|
18678
|
+
readonly ratecard_id: string;
|
|
18679
|
+
readonly rate_level_id: string;
|
|
18680
|
+
}
|
|
18681
|
+
interface RateLevelRatecardForm {
|
|
18682
|
+
readonly ratecard_id: string;
|
|
18683
|
+
}
|
|
18554
18684
|
interface RateNameSummary {
|
|
18555
18685
|
readonly name: string;
|
|
18556
18686
|
readonly long_name?: string;
|
|
@@ -18670,6 +18800,44 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18670
18800
|
readonly organization: string;
|
|
18671
18801
|
readonly data: io.flow.ratecard.v0.models.RatecardLanesImportRequestData;
|
|
18672
18802
|
}
|
|
18803
|
+
interface RatecardRateLevelDeleted {
|
|
18804
|
+
readonly discriminator: 'ratecard_rate_level_deleted';
|
|
18805
|
+
readonly event_id: string;
|
|
18806
|
+
readonly timestamp: string;
|
|
18807
|
+
readonly rate_level: io.flow.internal.v0.models.RateLevel;
|
|
18808
|
+
}
|
|
18809
|
+
interface RatecardRateLevelOrganizationDeleted {
|
|
18810
|
+
readonly discriminator: 'ratecard_rate_level_organization_deleted';
|
|
18811
|
+
readonly event_id: string;
|
|
18812
|
+
readonly timestamp: string;
|
|
18813
|
+
readonly organization: string;
|
|
18814
|
+
readonly rate_level_organization: io.flow.internal.v0.models.RateLevelOrganization;
|
|
18815
|
+
}
|
|
18816
|
+
interface RatecardRateLevelOrganizationUpserted {
|
|
18817
|
+
readonly discriminator: 'ratecard_rate_level_organization_upserted';
|
|
18818
|
+
readonly event_id: string;
|
|
18819
|
+
readonly timestamp: string;
|
|
18820
|
+
readonly organization: string;
|
|
18821
|
+
readonly rate_level_organization: io.flow.internal.v0.models.RateLevelOrganization;
|
|
18822
|
+
}
|
|
18823
|
+
interface RatecardRateLevelRatecardDeleted {
|
|
18824
|
+
readonly discriminator: 'ratecard_rate_level_ratecard_deleted';
|
|
18825
|
+
readonly event_id: string;
|
|
18826
|
+
readonly timestamp: string;
|
|
18827
|
+
readonly rate_level_ratecard: io.flow.internal.v0.models.RateLevelRatecard;
|
|
18828
|
+
}
|
|
18829
|
+
interface RatecardRateLevelRatecardUpserted {
|
|
18830
|
+
readonly discriminator: 'ratecard_rate_level_ratecard_upserted';
|
|
18831
|
+
readonly event_id: string;
|
|
18832
|
+
readonly timestamp: string;
|
|
18833
|
+
readonly rate_level_ratecard: io.flow.internal.v0.models.RateLevelRatecard;
|
|
18834
|
+
}
|
|
18835
|
+
interface RatecardRateLevelUpserted {
|
|
18836
|
+
readonly discriminator: 'ratecard_rate_level_upserted';
|
|
18837
|
+
readonly event_id: string;
|
|
18838
|
+
readonly timestamp: string;
|
|
18839
|
+
readonly rate_level: io.flow.internal.v0.models.RateLevel;
|
|
18840
|
+
}
|
|
18673
18841
|
interface RatecardServiceFeeDeleted {
|
|
18674
18842
|
readonly discriminator: 'ratecard_service_fee_deleted';
|
|
18675
18843
|
readonly event_id: string;
|
|
@@ -20023,9 +20191,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20023
20191
|
readonly id: string;
|
|
20024
20192
|
readonly name: string;
|
|
20025
20193
|
}
|
|
20194
|
+
interface TestDeleted {
|
|
20195
|
+
readonly discriminator: 'test_deleted';
|
|
20196
|
+
readonly event_id: string;
|
|
20197
|
+
readonly timestamp: string;
|
|
20198
|
+
readonly organization: string;
|
|
20199
|
+
readonly id: string;
|
|
20200
|
+
}
|
|
20026
20201
|
interface TestForm {
|
|
20027
20202
|
readonly name: string;
|
|
20028
20203
|
}
|
|
20204
|
+
interface TestUpserted {
|
|
20205
|
+
readonly discriminator: 'test_upserted';
|
|
20206
|
+
readonly event_id: string;
|
|
20207
|
+
readonly timestamp: string;
|
|
20208
|
+
readonly organization: string;
|
|
20209
|
+
readonly test: io.flow.internal.v0.models.Test;
|
|
20210
|
+
}
|
|
20029
20211
|
interface ThirdPartyLogisticsPartner {
|
|
20030
20212
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
20031
20213
|
readonly warehouse_url?: string;
|
|
@@ -20531,11 +20713,11 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20531
20713
|
type ComplianceData = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|
|
20532
20714
|
type ComplianceForm = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm;
|
|
20533
20715
|
type ContentItem = io.flow.internal.v0.models.Dict | io.flow.internal.v0.models.Href | io.flow.internal.v0.models.ContentLabel | io.flow.internal.v0.models.Load;
|
|
20534
|
-
type DeclineReason = io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance;
|
|
20716
|
+
type DeclineReason = io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance | io.flow.internal.v0.models.DeclineReasonFraud;
|
|
20535
20717
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
20536
20718
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
20537
20719
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
20538
|
-
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.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.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | 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;
|
|
20720
|
+
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.TestUpserted | io.flow.internal.v0.models.TestDeleted | 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.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.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;
|
|
20539
20721
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
20540
20722
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
20541
20723
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -20594,7 +20776,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20594
20776
|
type VariantForm = io.flow.internal.v0.models.ExperienceVariantForm | io.flow.internal.v0.models.FeatureVariantForm;
|
|
20595
20777
|
}
|
|
20596
20778
|
export declare type Acceptance = io.flow.internal.v0.models.Acceptance;
|
|
20597
|
-
export declare type Account = io.flow.internal.v0.models.Account;
|
|
20598
20779
|
export declare type AccountContact = io.flow.internal.v0.models.AccountContact;
|
|
20599
20780
|
export declare type AccountContactDeleted = io.flow.internal.v0.models.AccountContactDeleted;
|
|
20600
20781
|
export declare type AccountContactForm = io.flow.internal.v0.models.AccountContactForm;
|
|
@@ -20609,7 +20790,6 @@ export declare type AccountProcessingRates = io.flow.internal.v0.models.AccountP
|
|
|
20609
20790
|
export declare type AccountProcessingRatesDeleted = io.flow.internal.v0.models.AccountProcessingRatesDeleted;
|
|
20610
20791
|
export declare type AccountProcessingRatesForm = io.flow.internal.v0.models.AccountProcessingRatesForm;
|
|
20611
20792
|
export declare type AccountProcessingRatesUpserted = io.flow.internal.v0.models.AccountProcessingRatesUpserted;
|
|
20612
|
-
export declare type AccountReference = io.flow.internal.v0.models.AccountReference;
|
|
20613
20793
|
export declare type AccountSettingLabelFees = io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
20614
20794
|
export declare type AccountSettingLiabilitiesMethod = io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
20615
20795
|
export declare type AccountSettings = io.flow.internal.v0.models.AccountSettings;
|
|
@@ -20710,6 +20890,7 @@ export declare type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
|
20710
20890
|
export declare type BankPaymentDeleted = io.flow.internal.v0.models.BankPaymentDeleted;
|
|
20711
20891
|
export declare type BankPaymentDeletedV2 = io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
20712
20892
|
export declare type BankPaymentForm = io.flow.internal.v0.models.BankPaymentForm;
|
|
20893
|
+
export declare type BankPaymentStatusCode = io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
20713
20894
|
export declare type BankPaymentStatusForm = io.flow.internal.v0.models.BankPaymentStatusForm;
|
|
20714
20895
|
export declare type BankPaymentUpserted = io.flow.internal.v0.models.BankPaymentUpserted;
|
|
20715
20896
|
export declare type BankPaymentUpsertedV2 = io.flow.internal.v0.models.BankPaymentUpsertedV2;
|
|
@@ -20823,6 +21004,8 @@ export declare type CatalogItemIndexTask = io.flow.internal.v0.models.CatalogIte
|
|
|
20823
21004
|
export declare type CatalogItemRegionAvailabilities = io.flow.internal.v0.models.CatalogItemRegionAvailabilities;
|
|
20824
21005
|
export declare type CatalogItemRegionAvailabilitiesData = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
20825
21006
|
export declare type CatalogItemRegionAvailabilitiesPublished = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished;
|
|
21007
|
+
export declare type CatalogSettings = io.flow.internal.v0.models.CatalogSettings;
|
|
21008
|
+
export declare type CatalogSettingsPutForm = io.flow.internal.v0.models.CatalogSettingsPutForm;
|
|
20826
21009
|
export declare type CenterDefaults = io.flow.internal.v0.models.CenterDefaults;
|
|
20827
21010
|
export declare type CenterDefaultsForm = io.flow.internal.v0.models.CenterDefaultsForm;
|
|
20828
21011
|
export declare type CenterQueryBuilder = io.flow.internal.v0.models.CenterQueryBuilder;
|
|
@@ -20850,6 +21033,7 @@ export declare type ChannelMembershipForm = io.flow.internal.v0.models.ChannelMe
|
|
|
20850
21033
|
export declare type ChannelMembershipPutForm = io.flow.internal.v0.models.ChannelMembershipPutForm;
|
|
20851
21034
|
export declare type ChannelOrderAcceptance = io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
20852
21035
|
export declare type ChannelOrderAcceptanceDeleted = io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted;
|
|
21036
|
+
export declare type ChannelOrderAcceptanceErrorAction = io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
20853
21037
|
export declare type ChannelOrderAcceptanceForm = io.flow.internal.v0.models.ChannelOrderAcceptanceForm;
|
|
20854
21038
|
export declare type ChannelOrderAcceptanceReason = io.flow.internal.v0.models.ChannelOrderAcceptanceReason;
|
|
20855
21039
|
export declare type ChannelOrderAcceptanceRejectionReason = io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
@@ -21430,6 +21614,7 @@ export declare type ClassificationTaxonomy = io.flow.internal.v0.unions.Classifi
|
|
|
21430
21614
|
export declare type ClassificationWrapper = io.flow.internal.v0.models.ClassificationWrapper;
|
|
21431
21615
|
export declare type ClassifiedProduct = io.flow.internal.v0.models.ClassifiedProduct;
|
|
21432
21616
|
export declare type ClassifiedProductDetail = io.flow.internal.v0.models.ClassifiedProductDetail;
|
|
21617
|
+
export declare type CommercialInvoiceComparison = io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
21433
21618
|
export declare type Compliance = io.flow.internal.v0.models.Compliance;
|
|
21434
21619
|
export declare type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
21435
21620
|
export declare type ComplianceForm = io.flow.internal.v0.unions.ComplianceForm;
|
|
@@ -21493,6 +21678,7 @@ export declare type DebugTransactionQueued = io.flow.internal.v0.models.DebugTra
|
|
|
21493
21678
|
export declare type Decision = io.flow.internal.v0.models.Decision;
|
|
21494
21679
|
export declare type DeclineReason = io.flow.internal.v0.unions.DeclineReason;
|
|
21495
21680
|
export declare type DeclineReasonChannelOrderAcceptance = io.flow.internal.v0.models.DeclineReasonChannelOrderAcceptance;
|
|
21681
|
+
export declare type DeclineReasonFraud = io.flow.internal.v0.models.DeclineReasonFraud;
|
|
21496
21682
|
export declare type DecryptCipherForm = io.flow.internal.v0.models.DecryptCipherForm;
|
|
21497
21683
|
export declare type DecryptedCipher = io.flow.internal.v0.models.DecryptedCipher;
|
|
21498
21684
|
export declare type DeleteIndexTask = io.flow.internal.v0.models.DeleteIndexTask;
|
|
@@ -21685,7 +21871,9 @@ export declare type FiservAuthenticationForm = io.flow.internal.v0.models.Fiserv
|
|
|
21685
21871
|
export declare type FiservMerchant = io.flow.internal.v0.models.FiservMerchant;
|
|
21686
21872
|
export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
21687
21873
|
export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
21874
|
+
export declare type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
21688
21875
|
export declare type FlowApp = io.flow.internal.v0.enums.FlowApp;
|
|
21876
|
+
export declare type FlowChannelOrganization = io.flow.internal.v0.models.FlowChannelOrganization;
|
|
21689
21877
|
export declare type FlowLabProject = io.flow.internal.v0.models.FlowLabProject;
|
|
21690
21878
|
export declare type FlowLabProjectPostForm = io.flow.internal.v0.models.FlowLabProjectPostForm;
|
|
21691
21879
|
export declare type FlowLabProjectPutForm = io.flow.internal.v0.models.FlowLabProjectPutForm;
|
|
@@ -21738,6 +21926,7 @@ export declare type FxRevenueRecognitionOrder = io.flow.internal.v0.models.FxRev
|
|
|
21738
21926
|
export declare type FxRevenueRecognitionOrganization = io.flow.internal.v0.models.FxRevenueRecognitionOrganization;
|
|
21739
21927
|
export declare type FxRevenueRecognitionRate = io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
21740
21928
|
export declare type FxRevenueRecognitionSource = io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
21929
|
+
export declare type GenerateLoad = io.flow.internal.v0.models.GenerateLoad;
|
|
21741
21930
|
export declare type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
21742
21931
|
export declare type GiftCardAuthorizationError = io.flow.internal.v0.models.GiftCardAuthorizationError;
|
|
21743
21932
|
export declare type GiftCardForm = io.flow.internal.v0.models.GiftCardForm;
|
|
@@ -22036,6 +22225,7 @@ export declare type MerchantApplicationSummaries = io.flow.internal.v0.models.Me
|
|
|
22036
22225
|
export declare type MerchantApplicationSummary = io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
22037
22226
|
export declare type MerchantOfRecordEntitySettings = io.flow.internal.v0.models.MerchantOfRecordEntitySettings;
|
|
22038
22227
|
export declare type MerchantOfRecordEntitySettingsForm = io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm;
|
|
22228
|
+
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
22039
22229
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
22040
22230
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
22041
22231
|
export declare type NoCalculatedTaxAmount = io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
@@ -22107,6 +22297,9 @@ export declare type OrganizationBillingStatement = io.flow.internal.v0.models.Or
|
|
|
22107
22297
|
export declare type OrganizationBooleanValue = io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
22108
22298
|
export declare type OrganizationBooleanValueDeleted = io.flow.internal.v0.models.OrganizationBooleanValueDeleted;
|
|
22109
22299
|
export declare type OrganizationBooleanValueUpserted = io.flow.internal.v0.models.OrganizationBooleanValueUpserted;
|
|
22300
|
+
export declare type OrganizationBusinessEntity = io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
22301
|
+
export declare type OrganizationBusinessEntityDeleted = io.flow.internal.v0.models.OrganizationBusinessEntityDeleted;
|
|
22302
|
+
export declare type OrganizationBusinessEntityUpserted = io.flow.internal.v0.models.OrganizationBusinessEntityUpserted;
|
|
22110
22303
|
export declare type OrganizationCapability = io.flow.internal.v0.enums.OrganizationCapability;
|
|
22111
22304
|
export declare type OrganizationCurrencySetting = io.flow.internal.v0.models.OrganizationCurrencySetting;
|
|
22112
22305
|
export declare type OrganizationCurrencySettingDeleted = io.flow.internal.v0.models.OrganizationCurrencySettingDeleted;
|
|
@@ -22265,6 +22458,12 @@ export declare type RateDestinationFreshnessSummary = io.flow.internal.v0.models
|
|
|
22265
22458
|
export declare type RateFreshnessSummary = io.flow.internal.v0.models.RateFreshnessSummary;
|
|
22266
22459
|
export declare type RateFreshnessSummaryDeleted = io.flow.internal.v0.models.RateFreshnessSummaryDeleted;
|
|
22267
22460
|
export declare type RateFreshnessSummaryUpserted = io.flow.internal.v0.models.RateFreshnessSummaryUpserted;
|
|
22461
|
+
export declare type RateLevel = io.flow.internal.v0.models.RateLevel;
|
|
22462
|
+
export declare type RateLevelForm = io.flow.internal.v0.models.RateLevelForm;
|
|
22463
|
+
export declare type RateLevelOrganization = io.flow.internal.v0.models.RateLevelOrganization;
|
|
22464
|
+
export declare type RateLevelOrganizationForm = io.flow.internal.v0.models.RateLevelOrganizationForm;
|
|
22465
|
+
export declare type RateLevelRatecard = io.flow.internal.v0.models.RateLevelRatecard;
|
|
22466
|
+
export declare type RateLevelRatecardForm = io.flow.internal.v0.models.RateLevelRatecardForm;
|
|
22268
22467
|
export declare type RateNameSummary = io.flow.internal.v0.models.RateNameSummary;
|
|
22269
22468
|
export declare type RateSource = io.flow.internal.v0.enums.RateSource;
|
|
22270
22469
|
export declare type RateSourceCompositionSummary = io.flow.internal.v0.models.RateSourceCompositionSummary;
|
|
@@ -22282,6 +22481,12 @@ export declare type RatecardLaneAggregate = io.flow.internal.v0.models.RatecardL
|
|
|
22282
22481
|
export declare type RatecardLaneAggregateDeleted = io.flow.internal.v0.models.RatecardLaneAggregateDeleted;
|
|
22283
22482
|
export declare type RatecardLaneAggregateUpserted = io.flow.internal.v0.models.RatecardLaneAggregateUpserted;
|
|
22284
22483
|
export declare type RatecardLanesImportRequest = io.flow.internal.v0.models.RatecardLanesImportRequest;
|
|
22484
|
+
export declare type RatecardRateLevelDeleted = io.flow.internal.v0.models.RatecardRateLevelDeleted;
|
|
22485
|
+
export declare type RatecardRateLevelOrganizationDeleted = io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted;
|
|
22486
|
+
export declare type RatecardRateLevelOrganizationUpserted = io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted;
|
|
22487
|
+
export declare type RatecardRateLevelRatecardDeleted = io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted;
|
|
22488
|
+
export declare type RatecardRateLevelRatecardUpserted = io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted;
|
|
22489
|
+
export declare type RatecardRateLevelUpserted = io.flow.internal.v0.models.RatecardRateLevelUpserted;
|
|
22285
22490
|
export declare type RatecardServiceFeeDeleted = io.flow.internal.v0.models.RatecardServiceFeeDeleted;
|
|
22286
22491
|
export declare type RatecardServiceFeeUpserted = io.flow.internal.v0.models.RatecardServiceFeeUpserted;
|
|
22287
22492
|
export declare type RatecardServiceFeesOverride = io.flow.internal.v0.models.RatecardServiceFeesOverride;
|
|
@@ -22302,6 +22507,7 @@ export declare type RedirectActionCompleted = io.flow.internal.v0.models.Redirec
|
|
|
22302
22507
|
export declare type RedirectReason = io.flow.internal.v0.enums.RedirectReason;
|
|
22303
22508
|
export declare type RegisteredExporterTariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
22304
22509
|
export declare type RegisteredExporterTariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
22510
|
+
export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
22305
22511
|
export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
22306
22512
|
export declare type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
|
|
22307
22513
|
export declare type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
@@ -22557,7 +22763,9 @@ export declare type TaxTransactionUpserted = io.flow.internal.v0.models.TaxTrans
|
|
|
22557
22763
|
export declare type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
|
|
22558
22764
|
export declare type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
|
|
22559
22765
|
export declare type Test = io.flow.internal.v0.models.Test;
|
|
22766
|
+
export declare type TestDeleted = io.flow.internal.v0.models.TestDeleted;
|
|
22560
22767
|
export declare type TestForm = io.flow.internal.v0.models.TestForm;
|
|
22768
|
+
export declare type TestUpserted = io.flow.internal.v0.models.TestUpserted;
|
|
22561
22769
|
export declare type ThirdPartyLogisticsPartner = io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
22562
22770
|
export declare type ThirdPartyLogisticsPickUpTimeWindow = io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow;
|
|
22563
22771
|
export declare type TieredFee = io.flow.internal.v0.models.TieredFee;
|