@flowio/api-internal-prop-types 9.24.78 → 9.24.80

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.
@@ -2214,10 +2214,18 @@ declare namespace io.flow.billing.csv.v0.models {
2214
2214
  interface BillingCsvTransactionMetadata {
2215
2215
  readonly 'channel'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataChannel;
2216
2216
  readonly 'shipping_label'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabel;
2217
+ readonly 'shipping_label_revenue_share'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabelRevenueShare;
2217
2218
  readonly 'trueup'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
2219
+ readonly 'carrier_charge'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierCharge;
2218
2220
  readonly 'manual'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
2219
2221
  }
2220
2222
 
2223
+ interface BillingCsvTransactionMetadataCarrierCharge {
2224
+ readonly 'reason': io.flow.trueup.v0.enums.CarrierChargeReason;
2225
+ readonly 'carrier_id': string;
2226
+ readonly 'carrier_tracking_number': string;
2227
+ }
2228
+
2221
2229
  interface BillingCsvTransactionMetadataChannel {
2222
2230
  readonly 'method': string;
2223
2231
  readonly 'card'?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
@@ -2232,6 +2240,12 @@ declare namespace io.flow.billing.csv.v0.models {
2232
2240
  readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
2233
2241
  }
2234
2242
 
2243
+ interface BillingCsvTransactionMetadataShippingLabelRevenueShare {
2244
+ readonly 'label_id': string;
2245
+ readonly 'base_amount'?: number;
2246
+ readonly 'percentage'?: number;
2247
+ }
2248
+
2235
2249
  interface BillingCsvTransactionMetadataTrueup {
2236
2250
  readonly 'original': io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
2237
2251
  }
@@ -6151,6 +6165,9 @@ declare namespace io.flow.shopify.external.v0.models {
6151
6165
  }
6152
6166
 
6153
6167
  declare namespace io.flow.shopify.markets.v0.enums {
6168
+ type BulkOperationErrorCode = 'access_denied' | 'internal_server_error' | 'timeout';
6169
+ type BulkOperationStatus = 'canceled' | 'canceling' | 'completed' | 'created' | 'expired' | 'failed' | 'running';
6170
+ type BulkOperationType = 'mutation' | 'query';
6154
6171
  type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
6155
6172
  type FulfillmentOrderDeliveryMethodType = 'local' | 'none' | 'pick_up' | 'retail' | 'shipping';
6156
6173
  type IncotermDuties = 'DAP' | 'DDP';
@@ -6181,7 +6198,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
6181
6198
  type ShopifyOrderValueType = 'string' | 'integer';
6182
6199
  type ShopifyTaxExemptions = 'EXEMPT_ALL' | 'CA_STATUS_CARD_EXEMPTION' | 'CA_DIPLOMAT_EXEMPTION' | 'CA_BC_RESELLER_EXEMPTION' | 'CA_MB_RESELLER_EXEMPTION' | 'CA_SK_RESELLER_EXEMPTION' | 'CA_BC_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_MB_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_NS_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_PE_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_SK_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_BC_SUB_CONTRACTOR_EXEMPTION' | 'CA_SK_SUB_CONTRACTOR_EXEMPTION' | 'CA_BC_CONTRACTOR_EXEMPTION' | 'CA_SK_CONTRACTOR_EXEMPTION' | 'CA_ON_PURCHASE_EXEMPTION' | 'CA_MB_FARMER_EXEMPTION' | 'CA_NS_FARMER_EXEMPTION' | 'CA_SK_FARMER_EXEMPTION';
6183
6200
  type ShopifyWebhookFormat = 'json' | 'xml';
6184
- type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update';
6201
+ type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update' | 'bulk_operations/finish';
6185
6202
  }
6186
6203
 
6187
6204
  declare namespace io.flow.shopify.markets.v0.models {
@@ -6255,6 +6272,15 @@ declare namespace io.flow.shopify.markets.v0.models {
6255
6272
  readonly 'amount'?: number;
6256
6273
  }
6257
6274
 
6275
+ interface ShopifyBulkOperationsFinish {
6276
+ readonly 'admin_graphql_api_id': string;
6277
+ readonly 'completed_at'?: string;
6278
+ readonly 'created_at': string;
6279
+ readonly 'error_code'?: io.flow.shopify.markets.v0.enums.BulkOperationErrorCode;
6280
+ readonly 'status': io.flow.shopify.markets.v0.enums.BulkOperationStatus;
6281
+ readonly 'type': io.flow.shopify.markets.v0.enums.BulkOperationType;
6282
+ }
6283
+
6258
6284
  interface ShopifyCountryHarmonizedSystemCode {
6259
6285
  readonly 'country_code': string;
6260
6286
  readonly 'harmonized_system_code': string;
@@ -7254,6 +7280,8 @@ declare namespace io.flow.payment.gateway.v0.models {
7254
7280
  readonly 'status': io.flow.payment.gateway.v0.models.PaymentAuthorizationStatus;
7255
7281
  readonly 'amount': number;
7256
7282
  readonly 'currency': string;
7283
+ readonly 'base_amount'?: number;
7284
+ readonly 'base_currency'?: string;
7257
7285
  }
7258
7286
 
7259
7287
  interface PaymentAuthorizationStatus {
@@ -7265,6 +7293,8 @@ declare namespace io.flow.payment.gateway.v0.models {
7265
7293
  readonly 'id': string;
7266
7294
  readonly 'amount': number;
7267
7295
  readonly 'currency': string;
7296
+ readonly 'base_amount'?: number;
7297
+ readonly 'base_currency'?: string;
7268
7298
  readonly 'created_at': string;
7269
7299
  readonly 'updated_at': string;
7270
7300
  readonly 'status': io.flow.payment.gateway.v0.models.PaymentCaptureStatus;
@@ -7571,6 +7601,8 @@ declare namespace io.flow.payment.gateway.v0.models {
7571
7601
  readonly 'id': string;
7572
7602
  readonly 'amount': number;
7573
7603
  readonly 'currency': string;
7604
+ readonly 'base_amount'?: number;
7605
+ readonly 'base_currency'?: string;
7574
7606
  readonly 'created_at': string;
7575
7607
  readonly 'updated_at': string;
7576
7608
  readonly 'status': io.flow.payment.gateway.v0.models.PaymentRefundStatus;
@@ -7596,6 +7628,8 @@ declare namespace io.flow.payment.gateway.v0.models {
7596
7628
  readonly 'next_action'?: io.flow.payment.gateway.v0.unions.Action;
7597
7629
  readonly 'amount': number;
7598
7630
  readonly 'currency': string;
7631
+ readonly 'base_amount'?: number;
7632
+ readonly 'base_currency'?: string;
7599
7633
  readonly 'order_information': io.flow.payment.gateway.v0.unions.OrderInformation;
7600
7634
  readonly 'device_details': io.flow.payment.v0.unions.DeviceDetails;
7601
7635
  readonly 'locale'?: string;
@@ -7641,6 +7675,8 @@ declare namespace io.flow.payment.gateway.v0.models {
7641
7675
  readonly 'id': string;
7642
7676
  readonly 'amount': number;
7643
7677
  readonly 'currency': string;
7678
+ readonly 'base_amount'?: number;
7679
+ readonly 'base_currency'?: string;
7644
7680
  readonly 'created_at': string;
7645
7681
  readonly 'updated_at': string;
7646
7682
  readonly 'status': io.flow.payment.gateway.v0.models.PaymentReversalStatus;
@@ -7767,6 +7803,11 @@ declare namespace io.flow.channel.internal.v0.models {
7767
7803
  readonly 'order_updated_at'?: string;
7768
7804
  }
7769
7805
 
7806
+ interface ChannelOrderAcceptanceDetails {
7807
+ readonly 'order_acceptance': io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
7808
+ readonly 'external_order': any/*object*/;
7809
+ }
7810
+
7770
7811
  interface ChannelOrderAcceptanceForm {
7771
7812
  readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
7772
7813
  }
@@ -7781,1811 +7822,1843 @@ declare namespace io.flow.channel.internal.v0.models {
7781
7822
  }
7782
7823
  }
7783
7824
 
7784
- declare namespace io.flow.payment.internal.v0.enums {
7785
- type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
7786
- type ChargebackPaymentStatus = 'captured' | 'refunded';
7787
- type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
7788
- type HttpMethod = 'get' | 'post';
7789
- type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
7790
- type OrganizationPaymentStatus = 'active' | 'archived';
7791
- type Owner = 'flow' | 'organization';
7792
- type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
7793
- type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
7794
- type RedirectReason = 'three_d_secure';
7795
- type RiskCheck = 'three_d_secure';
7825
+ declare namespace io.flow.partner.v0.enums {
7826
+ type LabelFormat = 'pdf' | 'zpl' | 'all';
7796
7827
  }
7797
7828
 
7798
- declare namespace io.flow.payment.internal.v0.models {
7799
- interface AdyenAccount {
7800
- readonly 'discriminator': 'adyen_account';
7801
- readonly 'id': string;
7802
- readonly 'organization_id': string;
7803
- readonly 'key': string;
7804
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
7805
- readonly 'name': string;
7806
- readonly 'ui_reference': string;
7807
- readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthentication;
7808
- readonly 'country': string;
7809
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7810
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
7811
- readonly 'created_at': string;
7812
- readonly 'updated_at': string;
7813
- }
7814
-
7815
- interface AdyenAccountModificationForm {
7816
- readonly 'discriminator': 'adyen_account_modification_form';
7817
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
7818
- readonly 'name': string;
7819
- readonly 'ui_reference': string;
7820
- readonly 'country': string;
7821
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7822
- }
7823
-
7824
- interface AdyenAccountPutForm {
7825
- readonly 'discriminator': 'adyen_account_put_form';
7826
- readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
7827
- readonly 'name': string;
7828
- readonly 'ui_reference': string;
7829
- readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthenticationForm;
7830
- readonly 'country': string;
7831
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7832
- readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
7829
+ declare namespace io.flow.partner.v0.models {
7830
+ interface BridgeHub {
7831
+ readonly 'hub_code': string;
7832
+ readonly 'address': io.flow.fulfillment.v0.models.ShippingAddress;
7833
7833
  }
7834
7834
 
7835
- interface AdyenAuthentication {
7836
- readonly 'username': string;
7837
- readonly 'password_reference': string;
7838
- readonly 'signature_secret_reference': string;
7835
+ interface BridgeLabelForm {
7836
+ readonly 'discriminator': 'bridge_label_form';
7837
+ readonly 'organization': string;
7838
+ readonly 'order_number': string;
7839
+ readonly 'package': io.flow.partner.v0.models.BridgeLabelPackage;
7840
+ readonly 'hub'?: io.flow.partner.v0.models.BridgeHub;
7839
7841
  }
7840
7842
 
7841
- interface AdyenAuthenticationDataReference {
7842
- readonly 'account_id': string;
7843
- readonly 'merchant_account': string;
7844
- readonly 'origin_key'?: string;
7845
- readonly 'integration_type'?: io.flow.payment.internal.v0.enums.AdyenIntegrationType;
7843
+ interface BridgeLabelPackage {
7844
+ readonly 'dimensions'?: io.flow.common.v0.models.Dimension;
7845
+ readonly 'items': io.flow.common.v0.models.LineItemForm[];
7846
+ readonly 'reference_number': string;
7846
7847
  }
7847
7848
 
7848
- interface AdyenAuthenticationForm {
7849
- readonly 'username': string;
7850
- readonly 'password': string;
7851
- readonly 'signature_secret': string;
7849
+ interface DetailedLabelForm {
7850
+ readonly 'discriminator': 'detailed_label_form';
7851
+ readonly 'organization': string;
7852
+ readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
7853
+ readonly 'order_number': string;
7854
+ readonly 'origin': io.flow.fulfillment.v0.models.ShippingAddress;
7855
+ readonly 'package': io.flow.label.v0.models.ShippingLabelPackage;
7856
+ readonly 'service'?: string;
7857
+ readonly 'references'?: string[];
7852
7858
  }
7853
7859
 
7854
- interface AdyenMerchant {
7855
- readonly 'discriminator': 'adyen_merchant';
7860
+ interface Label {
7856
7861
  readonly 'id': string;
7857
- readonly 'key': string;
7858
- readonly 'organization_id': string;
7859
- readonly 'external_id': string;
7860
- readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
7861
- readonly 'country': string;
7862
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7863
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
7864
- readonly 'created_at': string;
7865
- readonly 'updated_at': string;
7866
- }
7867
-
7868
- interface AdyenMerchantModificationForm {
7869
- readonly 'discriminator': 'adyen_merchant_modification_form';
7870
- readonly 'external_id': string;
7871
- readonly 'country': string;
7872
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7873
- }
7874
-
7875
- interface AdyenMerchantPutForm {
7876
- readonly 'discriminator': 'adyen_merchant_put_form';
7877
- readonly 'organization_id': string;
7878
- readonly 'external_id': string;
7879
- readonly 'country': string;
7880
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7881
- readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
7862
+ readonly 'organization': io.flow.partner.v0.models.PartnerOrganizationReference;
7863
+ readonly 'order_number': string;
7864
+ readonly 'package': io.flow.label.v0.models.ShippingLabelPackage;
7865
+ readonly 'carrier_tracking_number': string;
7866
+ readonly 'carrier_tracking_number_url': string;
7867
+ readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
7868
+ readonly 'flow_tracking_number': string;
7869
+ readonly 'flow_tracking_number_url': string;
7870
+ readonly 'origin': io.flow.fulfillment.v0.models.ShippingAddress;
7871
+ readonly 'service': io.flow.fulfillment.v0.models.ServiceSummary;
7872
+ readonly 'window': io.flow.common.v0.models.DatetimeRange;
7873
+ readonly 'zpl'?: string;
7874
+ readonly 'pdf'?: string;
7875
+ readonly 'png'?: string;
7876
+ readonly 'commercial_invoice'?: string;
7877
+ readonly 'references'?: string[];
7878
+ readonly 'label'?: io.flow.label.v0.models.ShippingLabelDocument;
7879
+ readonly 'invoice'?: io.flow.label.v0.models.ShippingLabelDocument;
7880
+ readonly 'cost'?: io.flow.common.v0.models.Price;
7881
+ readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
7882
7882
  }
7883
7883
 
7884
- interface AdyenPaymentDetailsForm {
7885
- readonly 'fingerprint'?: string;
7886
- readonly 'challenge_result'?: string;
7884
+ interface PartnerBridgeManifest {
7885
+ readonly 'id': string;
7886
+ readonly 'organization': io.flow.partner.v0.models.PartnerOrganizationReference;
7887
+ readonly 'service': io.flow.fulfillment.v0.models.ServiceSummary;
7888
+ readonly 'pdf': string;
7889
+ readonly 'data': string;
7887
7890
  }
7888
7891
 
7889
- interface AdyenRefundForm {
7890
- readonly 'discriminator': 'adyen_refund_form';
7891
- readonly 'amount': number;
7892
- readonly 'authorization_id': string;
7893
- readonly 'capture_id': string;
7894
- readonly 'currency': string;
7895
- readonly 'psp_reference': string;
7896
- readonly 'key'?: string;
7892
+ interface PartnerBridgeManifestForm {
7893
+ readonly 'order_numbers': string[];
7897
7894
  }
7898
7895
 
7899
- interface AfterpayAccount {
7900
- readonly 'discriminator': 'afterpay_account';
7901
- readonly 'id': string;
7902
- readonly 'organization_id': string;
7896
+ interface PartnerFulfillment {
7897
+ readonly 'organization': string;
7903
7898
  readonly 'key': string;
7904
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
7905
- readonly 'country': string;
7906
- readonly 'authentication': io.flow.payment.internal.v0.models.AfterpayAuthentication;
7907
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7908
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
7909
- readonly 'created_at': string;
7910
- readonly 'updated_at': string;
7899
+ readonly 'number': string;
7900
+ readonly 'items': io.flow.order.management.v0.models.FulfillmentItem[];
7901
+ readonly 'center'?: io.flow.fulfillment.v0.models.CenterSummary[];
7911
7902
  }
7912
7903
 
7913
- interface AfterpayAccountModificationForm {
7914
- readonly 'discriminator': 'afterpay_account_modification_form';
7915
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
7916
- readonly 'country': string;
7917
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7904
+ interface PartnerFulfillmentCancellationForm {
7905
+ readonly 'change_source': io.flow.order.management.v0.enums.OrderChangeSource;
7906
+ readonly 'reason': io.flow.order.management.v0.enums.CancelReason;
7907
+ readonly 'lines': io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
7918
7908
  }
7919
7909
 
7920
- interface AfterpayAccountPutForm {
7921
- readonly 'discriminator': 'afterpay_account_put_form';
7922
- readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
7923
- readonly 'country': string;
7924
- readonly 'authentication': io.flow.payment.internal.v0.models.AfterpayAuthenticationForm;
7925
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7926
- readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
7910
+ interface PartnerFulfillmentCompleteCancellationForm {
7911
+ readonly 'change_source': io.flow.order.management.v0.enums.OrderChangeSource;
7912
+ readonly 'reason': io.flow.order.management.v0.enums.CancelReason;
7927
7913
  }
7928
7914
 
7929
- interface AfterpayAuthentication {
7930
- readonly 'username': string;
7931
- readonly 'password_reference': string;
7915
+ interface PartnerManifest {
7916
+ readonly 'id': string;
7917
+ readonly 'organization': io.flow.partner.v0.models.PartnerOrganizationReference;
7918
+ readonly 'service'?: io.flow.fulfillment.v0.models.ServiceSummary;
7919
+ readonly 'timestamp': string;
7920
+ readonly 'shipping_labels': io.flow.label.v0.models.ShippingLabelSummary[];
7921
+ readonly 'pdf'?: string;
7932
7922
  }
7933
7923
 
7934
- interface AfterpayAuthenticationDataReference {
7935
- readonly 'account_id': string;
7924
+ interface PartnerManifestForm {
7925
+ readonly 'tracking_numbers': string[];
7926
+ readonly 'service'?: string;
7936
7927
  }
7937
7928
 
7938
- interface AfterpayAuthenticationForm {
7939
- readonly 'username': string;
7940
- readonly 'password': string;
7929
+ interface PartnerOrderIdentifier {
7930
+ readonly 'id': string;
7931
+ readonly 'organization': io.flow.partner.v0.models.PartnerOrganizationReference;
7932
+ readonly 'order': io.flow.partner.v0.models.PartnerOrderReference;
7933
+ readonly 'number': string;
7941
7934
  }
7942
7935
 
7943
- interface ApplePayAuthorizationPayload {
7944
- readonly 'discriminator': 'apple_pay_authorization_payload';
7945
- readonly 'apple_pay_token': string;
7936
+ interface PartnerOrderIdentifierForm {
7937
+ readonly 'number': string;
7938
+ readonly 'order_number': string;
7946
7939
  }
7947
7940
 
7948
- interface AuthenticationForm {
7949
- readonly 'password': string;
7941
+ interface PartnerOrderIdentifierPutForm {
7942
+ readonly 'order_number': string;
7950
7943
  }
7951
7944
 
7952
- interface AuthorizationBundle {
7945
+ interface PartnerOrderReference {
7953
7946
  readonly 'id': string;
7954
- readonly 'organization_id': string;
7955
- readonly 'authorization_reference': io.flow.payment.v0.models.AuthorizationReference;
7956
- readonly 'payment_request_reference': io.flow.payment.gateway.v0.models.PaymentRequestReference;
7957
- readonly 'billing'?: io.flow.payment.request.bundle.v0.models.PaymentRequestBilling;
7947
+ readonly 'number': string;
7958
7948
  }
7959
7949
 
7960
- interface AuthorizationMetadata {
7961
- readonly 'limit'?: number;
7950
+ interface PartnerOrganizationReference {
7951
+ readonly 'id': string;
7962
7952
  }
7963
7953
 
7964
- interface AuthorizationParameters {
7965
- readonly 'method': string;
7966
- readonly 'parameters': any/*object*/;
7954
+ interface SummaryLabelForm {
7955
+ readonly 'discriminator': 'summary_label_form';
7956
+ readonly 'organization': string;
7957
+ readonly 'order_number': string;
7958
+ readonly 'items'?: io.flow.common.v0.models.LineItemForm[];
7959
+ readonly 'package'?: io.flow.label.v0.models.ShippingLabelPackage;
7960
+ readonly 'center_key'?: string;
7967
7961
  }
7962
+ }
7968
7963
 
7969
- interface AuthorizationParametersForm {
7970
- readonly 'order_number': string;
7971
- readonly 'amount': number;
7972
- readonly 'currency': string;
7973
- readonly 'billing_address'?: io.flow.common.v0.models.BillingAddress;
7974
- readonly 'ip'?: string;
7975
- readonly 'origin_url'?: string;
7964
+ declare namespace io.flow.partner.v0.unions {
7965
+ type LabelForm = (io.flow.partner.v0.models.DetailedLabelForm | io.flow.partner.v0.models.SummaryLabelForm | io.flow.partner.v0.models.BridgeLabelForm);
7966
+ }
7967
+
7968
+ declare namespace io.flow.common.v0.enums {
7969
+ type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
7970
+ type AvailabilityStatus = 'enabled' | 'disabled';
7971
+ type Calendar = 'weekdays' | 'everyday';
7972
+ type Capability = 'crossdock';
7973
+ type ChangeType = 'insert' | 'update' | 'delete';
7974
+ type CurrencyLabelFormatter = 'strip_trailing_zeros' | 'symbol_prefix' | 'symbol_suffix';
7975
+ type CurrencySymbolFormat = 'narrow' | 'primary';
7976
+ type DayOfWeek = 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday';
7977
+ type DeliveredDuty = 'paid' | 'unpaid';
7978
+ type DiscountTarget = 'item' | 'shipping';
7979
+ type EntityIdentifierType = 'ioss' | 'voec';
7980
+ type Environment = 'sandbox' | 'production';
7981
+ type ExceptionType = 'open' | 'closed';
7982
+ type GoodsSupply = 'export' | 'intra_community' | 'local';
7983
+ type HolidayCalendar = 'us_bank_holidays' | 'jewish_holidays';
7984
+ type IncludedLevyKey = 'duty' | 'vat' | 'vat_and_duty' | 'none';
7985
+ type Incoterm = 'EXW' | 'FCA' | 'CPT' | 'CIP' | 'DAT' | 'DAP' | 'DDP' | 'FAS' | 'FOB' | 'CFR' | 'CIF' | 'DAF' | 'DES' | 'DEQ' | 'DDU';
7986
+ type InputSpecificationType = 'text' | 'number';
7987
+ type MarginType = 'fixed' | 'percent';
7988
+ type MeasurementSystem = 'imperial' | 'metric';
7989
+ type MerchantOfRecord = 'flow' | 'organization';
7990
+ type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
7991
+ type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
7992
+ type OrganizationType = 'standalone' | 'channel';
7993
+ type PriceBookStatus = 'draft' | 'published' | 'archived';
7994
+ type Role = 'admin' | 'member';
7995
+ type RoundingMethod = 'up' | 'down' | 'nearest';
7996
+ type RoundingType = 'pattern' | 'multiple';
7997
+ type ScheduleExceptionStatus = 'Open' | 'Closed';
7998
+ type SortDirection = 'ascending' | 'descending';
7999
+ type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
8000
+ type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
8001
+ type UserStatus = 'pending' | 'active' | 'inactive';
8002
+ type ValueAddedService = 'Hazardous Material';
8003
+ type Visibility = 'public' | 'private';
8004
+ }
8005
+
8006
+ declare namespace io.flow.common.v0.models {
8007
+ interface Address {
8008
+ readonly 'text'?: string;
8009
+ readonly 'streets'?: string[];
8010
+ readonly 'street_number'?: string;
8011
+ readonly 'city'?: string;
8012
+ readonly 'province'?: string;
8013
+ readonly 'postal'?: string;
8014
+ readonly 'country'?: string;
8015
+ readonly 'latitude'?: string;
8016
+ readonly 'longitude'?: string;
7976
8017
  }
7977
8018
 
7978
- interface BitpayAccount {
7979
- readonly 'discriminator': 'bitpay_account';
7980
- readonly 'id': string;
7981
- readonly 'organization_id': string;
7982
- readonly 'key': string;
7983
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
7984
- readonly 'authentication': io.flow.payment.internal.v0.models.BitpayAuthentication;
7985
- readonly 'country': string;
7986
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
7987
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
7988
- readonly 'created_at': string;
7989
- readonly 'updated_at': string;
8019
+ interface BillingAddress {
8020
+ readonly 'name'?: io.flow.common.v0.models.Name;
8021
+ readonly 'streets'?: string[];
8022
+ readonly 'city'?: string;
8023
+ readonly 'province'?: string;
8024
+ readonly 'postal'?: string;
8025
+ readonly 'country'?: string;
8026
+ readonly 'company'?: string;
7990
8027
  }
7991
8028
 
7992
- interface BitpayAccountModificationForm {
7993
- readonly 'discriminator': 'bitpay_account_modification_form';
7994
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
7995
- readonly 'country': string;
7996
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8029
+ interface CatalogItemReference {
8030
+ readonly 'id': string;
8031
+ readonly 'number': string;
7997
8032
  }
7998
8033
 
7999
- interface BitpayAccountPutForm {
8000
- readonly 'discriminator': 'bitpay_account_put_form';
8001
- readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
8002
- readonly 'authentication': io.flow.payment.internal.v0.models.BitpayAuthenticationForm;
8003
- readonly 'country': string;
8004
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8005
- readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
8034
+ interface CatalogItemSummary {
8035
+ readonly 'number': string;
8036
+ readonly 'name': string;
8037
+ readonly 'attributes': Record<string, string>;
8006
8038
  }
8007
8039
 
8008
- interface BitpayAuthentication {
8009
- readonly 'api_token': string;
8010
- readonly 'public_key': string;
8011
- readonly 'secret_key_reference': string;
8040
+ interface ChannelReference {
8041
+ readonly 'id': string;
8012
8042
  }
8013
8043
 
8014
- interface BitpayAuthenticationDataReference {
8044
+ interface CheckoutReference {
8015
8045
  readonly 'id': string;
8016
8046
  }
8017
8047
 
8018
- interface BitpayAuthenticationForm {
8019
- readonly 'api_token': string;
8020
- readonly 'public_key': string;
8021
- readonly 'secret_key': string;
8048
+ interface Contact {
8049
+ readonly 'name': io.flow.common.v0.models.Name;
8050
+ readonly 'company'?: string;
8051
+ readonly 'email'?: string;
8052
+ readonly 'phone'?: string;
8022
8053
  }
8023
8054
 
8024
- interface Chargeback {
8025
- readonly 'id': string;
8026
- readonly 'key': string;
8027
- readonly 'authorization': io.flow.payment.v0.models.AuthorizationReference;
8028
- readonly 'amount': number;
8029
- readonly 'currency': string;
8030
- readonly 'base'?: io.flow.common.v0.models.Money;
8031
- readonly 'chargeback_issued_at': string;
8032
- readonly 'created_at': string;
8033
- readonly 'payment_status': io.flow.payment.internal.v0.enums.ChargebackPaymentStatus;
8034
- readonly 'process_status': io.flow.payment.internal.v0.enums.ChargebackProcessStatus;
8035
- readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
8036
- readonly 'processor_reason': string;
8037
- readonly 'processor_status': string;
8038
- readonly 'processor_reference'?: string;
8039
- readonly 'provider_reference'?: string;
8040
- readonly 'provider_reason_code'?: string;
8055
+ interface CustomerInvoice {
8056
+ readonly 'address'?: io.flow.common.v0.models.BillingAddress;
8041
8057
  }
8042
8058
 
8043
- interface ChargebackVersion {
8044
- readonly 'id': string;
8045
- readonly 'timestamp': string;
8046
- readonly 'type': io.flow.common.v0.enums.ChangeType;
8047
- readonly 'chargeback': io.flow.payment.internal.v0.models.Chargeback;
8059
+ interface CustomerReference {
8060
+ readonly 'number': string;
8048
8061
  }
8049
8062
 
8050
- interface Cipher {
8051
- readonly 'id': string;
8052
- readonly 'attributes': Record<string, string>;
8063
+ interface DatetimeRange {
8064
+ readonly 'from': string;
8065
+ readonly 'to': string;
8053
8066
  }
8054
8067
 
8055
- interface CipherForm {
8056
- readonly 'text': string;
8057
- readonly 'attributes'?: Record<string, string>;
8058
- readonly 'password'?: string;
8068
+ interface Dimension {
8069
+ readonly 'depth'?: io.flow.common.v0.models.Measurement;
8070
+ readonly 'diameter'?: io.flow.common.v0.models.Measurement;
8071
+ readonly 'length'?: io.flow.common.v0.models.Measurement;
8072
+ readonly 'weight'?: io.flow.common.v0.models.Measurement;
8073
+ readonly 'width'?: io.flow.common.v0.models.Measurement;
8059
8074
  }
8060
8075
 
8061
- interface CipherReference {
8062
- readonly 'id': string;
8076
+ interface Dimensions {
8077
+ readonly 'product'?: io.flow.common.v0.models.Dimension;
8078
+ readonly 'packaging'?: io.flow.common.v0.models.Dimension;
8063
8079
  }
8064
8080
 
8065
- interface ClassicPaymentRedirectForm {
8066
- readonly 'MD': string;
8067
- readonly 'PaRes': string;
8081
+ interface DiscountForm {
8082
+ readonly 'offer': io.flow.common.v0.unions.DiscountOffer;
8083
+ readonly 'target'?: io.flow.common.v0.enums.DiscountTarget;
8084
+ readonly 'label'?: string;
8068
8085
  }
8069
8086
 
8070
- interface CryptoAccount {
8071
- readonly 'discriminator': 'crypto_account';
8072
- readonly 'id': string;
8073
- readonly 'organization_id': string;
8074
- readonly 'key': string;
8075
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8076
- readonly 'authentication': io.flow.payment.internal.v0.models.CryptoAuthentication;
8077
- readonly 'country': string;
8078
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8079
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8080
- readonly 'created_at': string;
8081
- readonly 'updated_at': string;
8087
+ interface DiscountOfferFixed {
8088
+ readonly 'discriminator': 'discount_offer_fixed';
8089
+ readonly 'money': io.flow.common.v0.models.Money;
8082
8090
  }
8083
8091
 
8084
- interface CryptoAccountModificationForm {
8085
- readonly 'discriminator': 'crypto_account_modification_form';
8086
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8087
- readonly 'country': string;
8088
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8092
+ interface DiscountOfferPercent {
8093
+ readonly 'discriminator': 'discount_offer_percent';
8094
+ readonly 'percent': number;
8089
8095
  }
8090
8096
 
8091
- interface CryptoAccountPutForm {
8092
- readonly 'discriminator': 'crypto_account_put_form';
8093
- readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
8094
- readonly 'authentication': io.flow.payment.internal.v0.models.CryptoAuthenticationForm;
8095
- readonly 'country': string;
8096
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8097
- readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
8097
+ interface DiscountsForm {
8098
+ readonly 'discounts': io.flow.common.v0.models.DiscountForm[];
8098
8099
  }
8099
8100
 
8100
- interface CryptoAuthentication {
8101
- readonly 'public_key': string;
8102
- readonly 'secret_key_reference': string;
8103
- readonly 'signature_secret_reference': string;
8101
+ interface Duration {
8102
+ readonly 'unit': io.flow.common.v0.enums.UnitOfTime;
8103
+ readonly 'value': number;
8104
8104
  }
8105
8105
 
8106
- interface CryptoAuthenticationForm {
8107
- readonly 'public_key': string;
8108
- readonly 'secret_key': string;
8109
- readonly 'signature_secret': string;
8106
+ interface EntityIdentifier {
8107
+ readonly 'name': io.flow.common.v0.enums.EntityIdentifierType;
8108
+ readonly 'number': string;
8109
+ readonly 'issuing_country'?: string;
8110
8110
  }
8111
8111
 
8112
- interface DecryptCipherForm {
8113
- readonly 'id': string;
8114
- readonly 'password': string;
8112
+ interface Exception {
8113
+ readonly 'type': io.flow.common.v0.enums.ExceptionType;
8114
+ readonly 'datetime_range': io.flow.common.v0.models.DatetimeRange;
8115
8115
  }
8116
8116
 
8117
- interface DecryptedCipher {
8117
+ interface ExperienceSummary {
8118
8118
  readonly 'id': string;
8119
- readonly 'cleartext': string;
8120
- readonly 'attributes': Record<string, string>;
8119
+ readonly 'key': string;
8120
+ readonly 'name': string;
8121
+ readonly 'country'?: string;
8122
+ readonly 'currency'?: string;
8123
+ readonly 'language'?: string;
8121
8124
  }
8122
8125
 
8123
- interface Encryption {
8124
- readonly 'id': string;
8125
- readonly 'key': io.flow.payment.internal.v0.models.KeyReference;
8126
- readonly 'iv': string;
8127
- readonly 'cipher': string;
8128
- readonly 'passphrase_ids': string[];
8126
+ interface IncludedLevies {
8127
+ readonly 'key': io.flow.common.v0.enums.IncludedLevyKey;
8128
+ readonly 'label': string;
8129
8129
  }
8130
8130
 
8131
- interface FinancialMerchantCategory {
8132
- readonly 'id': string;
8133
- readonly 'iso_18245_4': string;
8134
- readonly 'title': string;
8135
- readonly 'category_group': string;
8136
- readonly 'description'?: string;
8131
+ interface InputForm {
8132
+ readonly 'values'?: Record<string, string>;
8137
8133
  }
8138
8134
 
8139
- interface FiservAccount {
8140
- readonly 'discriminator': 'fiserv_account';
8141
- readonly 'id': string;
8142
- readonly 'organization_id': string;
8143
- readonly 'key': string;
8144
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8145
- readonly 'region': string;
8146
- readonly 'authentication': io.flow.payment.internal.v0.models.FiservAuthentication;
8147
- readonly 'country': string;
8148
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8149
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8150
- readonly 'created_at': string;
8151
- readonly 'updated_at': string;
8135
+ interface InputFormSpecification {
8136
+ readonly 'inputs'?: io.flow.common.v0.models.InputSpecification[];
8137
+ readonly 'limitations'?: io.flow.common.v0.models.InputSpecificationLimitations;
8152
8138
  }
8153
8139
 
8154
- interface FiservAccountModificationForm {
8155
- readonly 'discriminator': 'fiserv_account_modification_form';
8156
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8157
- readonly 'region': string;
8158
- readonly 'country': string;
8159
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8140
+ interface InputSpecification {
8141
+ readonly 'type': io.flow.common.v0.enums.InputSpecificationType;
8142
+ readonly 'name': string;
8143
+ readonly 'display_text'?: string;
8160
8144
  }
8161
8145
 
8162
- interface FiservAccountPutForm {
8163
- readonly 'discriminator': 'fiserv_account_put_form';
8164
- readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
8165
- readonly 'region': string;
8166
- readonly 'authentication': io.flow.payment.internal.v0.models.FiservAuthenticationForm;
8167
- readonly 'country': string;
8168
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8169
- readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
8146
+ interface InputSpecificationLimitationMax {
8147
+ readonly 'discriminator': 'input_specification_limitation_max';
8148
+ readonly 'max': number;
8170
8149
  }
8171
8150
 
8172
- interface FiservAuthentication {
8173
- readonly 'public_key': string;
8174
- readonly 'secret_key_reference': string;
8151
+ interface InputSpecificationLimitations {
8152
+ readonly 'limitations'?: io.flow.common.v0.unions.InputSpecificationLimitation[];
8175
8153
  }
8176
8154
 
8177
- interface FiservAuthenticationDataReference {
8178
- readonly 'account_id': string;
8179
- readonly 'store_id': string;
8155
+ interface ItemReference {
8156
+ readonly 'number': string;
8180
8157
  }
8181
8158
 
8182
- interface FiservAuthenticationForm {
8183
- readonly 'public_key': string;
8184
- readonly 'secret_key': string;
8159
+ interface LineItem {
8160
+ readonly 'number': string;
8161
+ readonly 'quantity': number;
8162
+ readonly 'price': io.flow.common.v0.models.Money;
8163
+ readonly 'attributes': Record<string, string>;
8164
+ readonly 'center'?: string;
8165
+ readonly 'discount'?: io.flow.common.v0.models.Money;
8166
+ }
8167
+
8168
+ interface LineItemAttributesForm {
8169
+ readonly 'attributes': Record<string, string>;
8170
+ }
8171
+
8172
+ interface LineItemForm {
8173
+ readonly 'number': string;
8174
+ readonly 'quantity': number;
8175
+ readonly 'shipment_estimate'?: io.flow.common.v0.models.DatetimeRange;
8176
+ readonly 'price'?: io.flow.common.v0.models.Money;
8177
+ readonly 'attributes'?: Record<string, string>;
8178
+ readonly 'center'?: string;
8179
+ readonly 'discount'?: io.flow.common.v0.models.Money;
8180
+ readonly 'discounts'?: io.flow.common.v0.models.DiscountsForm;
8185
8181
  }
8186
8182
 
8187
- interface FiservMerchant {
8188
- readonly 'discriminator': 'fiserv_merchant';
8189
- readonly 'id': string;
8190
- readonly 'key': string;
8191
- readonly 'organization_id': string;
8192
- readonly 'external_id': string;
8193
- readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
8194
- readonly 'base_currency': string;
8195
- readonly 'funding_currency': string;
8196
- readonly 'country': string;
8197
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8198
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8199
- readonly 'created_at': string;
8200
- readonly 'updated_at': string;
8183
+ interface LineItemQuantityForm {
8184
+ readonly 'quantity': number;
8201
8185
  }
8202
8186
 
8203
- interface FiservMerchantModificationForm {
8204
- readonly 'discriminator': 'fiserv_merchant_modification_form';
8205
- readonly 'external_id': string;
8206
- readonly 'base_currency': string;
8207
- readonly 'funding_currency': string;
8208
- readonly 'country': string;
8209
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8187
+ interface LogoImageSetStatic {
8188
+ readonly 'discriminator': 'static';
8189
+ readonly 'small'?: io.flow.common.v0.models.LogoImageStatic;
8190
+ readonly 'medium': io.flow.common.v0.models.LogoImageStatic;
8191
+ readonly 'large'?: io.flow.common.v0.models.LogoImageStatic;
8210
8192
  }
8211
8193
 
8212
- interface FiservMerchantPutForm {
8213
- readonly 'discriminator': 'fiserv_merchant_put_form';
8214
- readonly 'organization_id': string;
8215
- readonly 'external_id': string;
8216
- readonly 'base_currency': string;
8217
- readonly 'funding_currency': string;
8218
- readonly 'country': string;
8219
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8220
- readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
8194
+ interface LogoImageStatic {
8195
+ readonly 'url': string;
8196
+ readonly 'width': number;
8197
+ readonly 'height': number;
8221
8198
  }
8222
8199
 
8223
- interface InternalAdyenAuthorizationDetails {
8224
- readonly 'discriminator': 'internal_adyen_authorization_details';
8225
- readonly 'adyen_authentication_data': io.flow.payment.internal.v0.models.AdyenAuthenticationDataReference;
8200
+ interface LogoImageSvg {
8201
+ readonly 'discriminator': 'svg';
8202
+ readonly 'url': string;
8226
8203
  }
8227
8204
 
8228
- interface InternalAfterpayAuthorizationDetails {
8229
- readonly 'discriminator': 'internal_afterpay_authorization_details';
8230
- readonly 'afterpay_authentication_data': io.flow.payment.internal.v0.models.AfterpayAuthenticationDataReference;
8205
+ interface Margin {
8206
+ readonly 'type': io.flow.common.v0.enums.MarginType;
8207
+ readonly 'value': number;
8231
8208
  }
8232
8209
 
8233
- interface InternalBitpayAuthorizationDetails {
8234
- readonly 'discriminator': 'internal_bitpay_authorization_details';
8235
- readonly 'bitpay_authentication_data': io.flow.payment.internal.v0.models.BitpayAuthenticationDataReference;
8210
+ interface Measurement {
8211
+ readonly 'value': string;
8212
+ readonly 'units': io.flow.common.v0.enums.UnitOfMeasurement;
8236
8213
  }
8237
8214
 
8238
- interface InternalFiservAuthorizationDetails {
8239
- readonly 'discriminator': 'internal_fiserv_authorization_details';
8240
- readonly 'fiserv_authentication_data': io.flow.payment.internal.v0.models.FiservAuthenticationDataReference;
8215
+ interface MerchantOfRecordEntity {
8216
+ readonly 'organization': io.flow.common.v0.models.OrganizationReference;
8217
+ readonly 'name': string;
8218
+ readonly 'vat'?: io.flow.common.v0.models.MerchantOfRecordEntityRegistration;
8219
+ readonly 'identifiers'?: io.flow.common.v0.models.EntityIdentifier[];
8220
+ readonly 'streets': string[];
8221
+ readonly 'city': string;
8222
+ readonly 'province'?: string;
8223
+ readonly 'postal'?: string;
8224
+ readonly 'country': string;
8225
+ readonly 'phone'?: string;
8226
+ readonly 'email'?: string;
8241
8227
  }
8242
8228
 
8243
- interface InternalPaymentRequest {
8244
- readonly 'payment_request': io.flow.payment.gateway.v0.models.PaymentRequest;
8245
- readonly 'actual_action'?: io.flow.payment.gateway.v0.unions.Action;
8229
+ interface MerchantOfRecordEntityRegistration {
8230
+ readonly 'number': string;
8231
+ readonly 'country': string;
8246
8232
  }
8247
8233
 
8248
- interface InternalPaypalAuthorizationDetails {
8249
- readonly 'discriminator': 'internal_paypal_authorization_details';
8250
- readonly 'paypal_authentication_data': io.flow.payment.internal.v0.models.PaypalAccountReference;
8234
+ interface Money {
8235
+ readonly 'amount': number;
8236
+ readonly 'currency': string;
8251
8237
  }
8252
8238
 
8253
- interface InternalStripeAuthorizationDetails {
8254
- readonly 'discriminator': 'internal_stripe_authorization_details';
8255
- readonly 'stripe_authentication_data': io.flow.payment.internal.v0.models.StripeAuthenticationDataReference;
8239
+ interface MoneyWithBase {
8240
+ readonly 'currency': string;
8241
+ readonly 'amount': number;
8242
+ readonly 'base': io.flow.common.v0.models.Money;
8256
8243
  }
8257
8244
 
8258
- interface InternalTransactionDetailsCard {
8259
- readonly 'type': 'card';
8260
- readonly 'address_verification_result'?: io.flow.payment.v0.models.AddressVerificationResult;
8261
- readonly 'cvv_result'?: io.flow.payment.v0.models.CvvResult;
8262
- readonly 'network_details'?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
8245
+ interface MoneyWithOptionalBase {
8246
+ readonly 'currency': string;
8247
+ readonly 'amount': number;
8248
+ readonly 'base'?: io.flow.common.v0.models.Money;
8263
8249
  }
8264
8250
 
8265
- interface Key {
8266
- readonly 'id': string;
8267
- readonly 'created_at': string;
8251
+ interface Name {
8252
+ readonly 'first'?: string;
8253
+ readonly 'last'?: string;
8268
8254
  }
8269
8255
 
8270
- interface KeyReference {
8271
- readonly 'id': string;
8256
+ interface OrderCustomer {
8257
+ readonly 'name': io.flow.common.v0.models.Name;
8258
+ readonly 'number'?: string;
8259
+ readonly 'phone'?: string;
8260
+ readonly 'email'?: string;
8261
+ readonly 'address'?: io.flow.common.v0.models.BillingAddress;
8262
+ readonly 'invoice'?: io.flow.common.v0.models.CustomerInvoice;
8272
8263
  }
8273
8264
 
8274
- interface KlarnaAuthorizationParameters {
8275
- readonly 'discriminator': 'klarna_authorization_parameters';
8276
- readonly 'client_token': string;
8277
- readonly 'payment_method_categories': io.flow.payment.internal.v0.models.KlarnaPaymentMethodCategory[];
8265
+ interface OrderCustomerForm {
8266
+ readonly 'name'?: io.flow.common.v0.models.Name;
8267
+ readonly 'number'?: string;
8268
+ readonly 'phone'?: string;
8269
+ readonly 'email'?: string;
8270
+ readonly 'address'?: io.flow.common.v0.models.BillingAddress;
8271
+ readonly 'invoice'?: io.flow.common.v0.models.CustomerInvoice;
8278
8272
  }
8279
8273
 
8280
- interface KlarnaPaymentMethodCategory {
8274
+ interface Organization {
8275
+ readonly 'discriminator': 'organization';
8281
8276
  readonly 'id': string;
8282
- readonly 'name'?: string;
8283
- readonly 'standard_asset_urls'?: string;
8284
- readonly 'descriptive_asset_urls'?: string;
8277
+ readonly 'name': string;
8278
+ readonly 'environment': io.flow.common.v0.enums.Environment;
8279
+ readonly 'parent'?: io.flow.common.v0.models.OrganizationReference;
8280
+ readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
8281
+ readonly 'created_at'?: string;
8282
+ readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
8283
+ readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
8285
8284
  }
8286
8285
 
8287
- interface OnlineAuthorizationCompleted {
8288
- readonly 'discriminator': 'online_authorization_completed';
8289
- readonly 'id': string;
8290
- readonly 'organization': string;
8291
- readonly 'key': string;
8292
- readonly 'expires_at': string;
8286
+ interface OrganizationDefaults {
8287
+ readonly 'country': string;
8288
+ readonly 'base_currency': string;
8289
+ readonly 'language': string;
8290
+ readonly 'locale': string;
8291
+ readonly 'timezone': string;
8293
8292
  }
8294
8293
 
8295
- interface OrganizationPaymentSetting {
8294
+ interface OrganizationReference {
8295
+ readonly 'discriminator': 'organization_reference';
8296
8296
  readonly 'id': string;
8297
- readonly 'organization_id': string;
8298
- readonly 'default_capture_option': io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
8299
- readonly 'status': io.flow.payment.internal.v0.enums.OrganizationPaymentStatus;
8300
- readonly 'checkout_domain'?: string;
8301
- readonly 'merchant_category_code'?: string;
8302
- readonly 'payment_statement_suffix'?: string;
8303
- readonly 'payment_statement_condensed'?: string;
8304
- readonly 'created_at': string;
8305
- readonly 'updated_at': string;
8306
- }
8307
-
8308
- interface OrganizationPaymentSettingForm {
8309
- readonly 'default_capture_option': io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
8310
- readonly 'status': io.flow.payment.internal.v0.enums.OrganizationPaymentStatus;
8311
- readonly 'checkout_domain'?: string;
8312
- readonly 'merchant_category_code'?: string;
8313
- readonly 'payment_statement_suffix'?: string;
8314
8297
  }
8315
8298
 
8316
- interface OrganizationPaymentSettingVersion {
8299
+ interface OrganizationSummary {
8317
8300
  readonly 'id': string;
8318
- readonly 'timestamp': string;
8319
- readonly 'type': io.flow.common.v0.enums.ChangeType;
8320
- readonly 'organization_payment_setting': io.flow.payment.internal.v0.models.OrganizationPaymentSetting;
8301
+ readonly 'name': string;
8302
+ readonly 'environment': io.flow.common.v0.enums.Environment;
8321
8303
  }
8322
8304
 
8323
- interface Passphrase {
8305
+ interface PartnerReference {
8324
8306
  readonly 'id': string;
8325
- readonly 'tribe': io.flow.payment.internal.v0.models.Tribe;
8326
- readonly 'salt': string;
8327
- readonly 'iv': string;
8328
- readonly 'challenge_cipher': string;
8329
- readonly 'challenge_text': string;
8330
8307
  }
8331
8308
 
8332
- interface PassphraseForm {
8333
- readonly 'tribe': string;
8334
- readonly 'current_password'?: string;
8335
- readonly 'new_password': string;
8309
+ interface Price {
8310
+ readonly 'amount': number;
8311
+ readonly 'currency': string;
8312
+ readonly 'label': string;
8336
8313
  }
8337
8314
 
8338
- interface PassphraseSummary {
8339
- readonly 'id': string;
8340
- readonly 'tribe': io.flow.payment.internal.v0.models.Tribe;
8315
+ interface PriceForm {
8316
+ readonly 'amount': number;
8317
+ readonly 'currency': string;
8341
8318
  }
8342
8319
 
8343
- interface PaymentMethodDetail {
8344
- readonly 'method': io.flow.reference.v0.models.PaymentMethod;
8345
- readonly 'method_options'?: io.flow.payment.internal.v0.models.PaymentMethodOption[];
8320
+ interface PriceSourceCatalog {
8321
+ readonly 'discriminator': 'catalog';
8322
+ readonly 'price': io.flow.common.v0.models.Money;
8346
8323
  }
8347
8324
 
8348
- interface PaymentMethodOption {
8349
- readonly 'id': string;
8350
- readonly 'name': string;
8351
- readonly 'logo'?: io.flow.common.v0.unions.LogoImage;
8325
+ interface PriceSourcePriceBook {
8326
+ readonly 'discriminator': 'price_book';
8327
+ readonly 'price': io.flow.common.v0.models.Money;
8328
+ readonly 'includes': io.flow.common.v0.models.IncludedLevies;
8329
+ readonly 'price_book_reference': io.flow.common.v0.models.PriceSourcePriceBookReference;
8352
8330
  }
8353
8331
 
8354
- interface PaymentOrganizationSettings {
8332
+ interface PriceSourcePriceBookReference {
8355
8333
  readonly 'id': string;
8356
- readonly 'enable_auto_capture': boolean;
8357
- readonly 'link_capture_to_vcc': boolean;
8358
- readonly 'purge_ciphers': boolean;
8359
- readonly 'domain'?: string;
8360
- readonly 'merchant_category_code'?: number;
8361
- readonly 'payment_statement_suffix'?: string;
8362
- readonly 'payment_statement_condensed'?: string;
8334
+ readonly 'key': string;
8363
8335
  }
8364
8336
 
8365
- interface PaymentOrganizationSettingsPutForm {
8366
- readonly 'enable_auto_capture'?: boolean;
8367
- readonly 'link_capture_to_vcc'?: boolean;
8368
- readonly 'purge_ciphers'?: boolean;
8369
- readonly 'domain'?: string;
8370
- readonly 'merchant_category_code'?: number;
8371
- readonly 'payment_statement_suffix'?: string;
8337
+ interface PriceSourceProvided {
8338
+ readonly 'discriminator': 'provided';
8339
+ readonly 'price': io.flow.common.v0.models.Money;
8372
8340
  }
8373
8341
 
8374
- interface PaypalAccount {
8375
- readonly 'discriminator': 'paypal_account';
8376
- readonly 'id': string;
8377
- readonly 'organization_id': string;
8378
- readonly 'key': string;
8379
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8380
- readonly 'country': string;
8381
- readonly 'authentication': io.flow.payment.internal.v0.models.PaypalAuthentication;
8382
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8383
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8384
- readonly 'created_at': string;
8385
- readonly 'updated_at': string;
8342
+ interface PriceWithBase {
8343
+ readonly 'currency': string;
8344
+ readonly 'amount': number;
8345
+ readonly 'label': string;
8346
+ readonly 'base'?: io.flow.common.v0.models.Price;
8386
8347
  }
8387
8348
 
8388
- interface PaypalAccountModificationForm {
8389
- readonly 'discriminator': 'paypal_account_modification_form';
8390
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8391
- readonly 'country': string;
8392
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8349
+ interface RepeatDaily {
8350
+ readonly 'discriminator': 'repeat_daily';
8351
+ readonly 'interval': number;
8393
8352
  }
8394
8353
 
8395
- interface PaypalAccountPutForm {
8396
- readonly 'discriminator': 'paypal_account_put_form';
8397
- readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
8398
- readonly 'country': string;
8399
- readonly 'authentication': io.flow.payment.internal.v0.models.PaypalAuthenticationForm;
8400
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8401
- readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
8354
+ interface RepeatHourly {
8355
+ readonly 'discriminator': 'repeat_hourly';
8356
+ readonly 'interval': number;
8402
8357
  }
8403
8358
 
8404
- interface PaypalAccountReference {
8405
- readonly 'id': string;
8406
- readonly 'flow_merchant_id'?: string;
8359
+ interface RepeatMonthly {
8360
+ readonly 'discriminator': 'repeat_monthly';
8361
+ readonly 'interval': number;
8362
+ readonly 'days': number[];
8407
8363
  }
8408
8364
 
8409
- interface PaypalAuthentication {
8410
- readonly 'username': string;
8411
- readonly 'password_reference': string;
8365
+ interface RepeatWeekly {
8366
+ readonly 'discriminator': 'repeat_weekly';
8367
+ readonly 'interval': number;
8368
+ readonly 'days_of_week': io.flow.common.v0.enums.DayOfWeek[];
8412
8369
  }
8413
8370
 
8414
- interface PaypalAuthenticationForm {
8415
- readonly 'username': string;
8416
- readonly 'password': string;
8371
+ interface Rounding {
8372
+ readonly 'type': io.flow.common.v0.enums.RoundingType;
8373
+ readonly 'method': io.flow.common.v0.enums.RoundingMethod;
8374
+ readonly 'value': number;
8417
8375
  }
8418
8376
 
8419
- interface PaypalAuthorizationPayload {
8420
- readonly 'discriminator': 'paypal_authorization_payload';
8421
- readonly 'payment_id': string;
8422
- readonly 'payer_id': string;
8377
+ interface Schedule {
8378
+ readonly 'calendar'?: io.flow.common.v0.enums.Calendar;
8379
+ readonly 'holiday': io.flow.common.v0.enums.HolidayCalendar;
8380
+ readonly 'exception': io.flow.common.v0.models.Exception[];
8381
+ readonly 'cutoff'?: string;
8382
+ readonly 'min_lead_time'?: number;
8383
+ readonly 'max_lead_time'?: number;
8423
8384
  }
8424
8385
 
8425
- interface PaypalMerchant {
8426
- readonly 'discriminator': 'paypal_merchant';
8386
+ interface SessionReference {
8427
8387
  readonly 'id': string;
8428
- readonly 'key': string;
8429
- readonly 'organization_id': string;
8430
- readonly 'external_id': string;
8431
- readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
8432
- readonly 'country': string;
8433
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8434
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8435
- readonly 'created_at': string;
8436
- readonly 'updated_at': string;
8437
8388
  }
8438
8389
 
8439
- interface PaypalMerchantModificationForm {
8440
- readonly 'discriminator': 'paypal_merchant_modification_form';
8441
- readonly 'external_id': string;
8442
- readonly 'country': string;
8443
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8390
+ interface User {
8391
+ readonly 'discriminator': 'user';
8392
+ readonly 'id': string;
8393
+ readonly 'email'?: string;
8394
+ readonly 'name': io.flow.common.v0.models.Name;
8395
+ readonly 'status': io.flow.common.v0.enums.UserStatus;
8444
8396
  }
8445
8397
 
8446
- interface PaypalMerchantPutForm {
8447
- readonly 'discriminator': 'paypal_merchant_put_form';
8448
- readonly 'organization_id': string;
8449
- readonly 'external_id': string;
8450
- readonly 'country': string;
8451
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8452
- readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
8398
+ interface UserReference {
8399
+ readonly 'discriminator': 'user_reference';
8400
+ readonly 'id': string;
8453
8401
  }
8454
8402
 
8455
- interface ProcessorAccountReference {
8456
- readonly 'id': string;
8457
- readonly 'organization_id': string;
8458
- readonly 'key': string;
8459
- readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
8403
+ interface Zone {
8404
+ readonly 'postals'?: string[];
8405
+ readonly 'provinces'?: string[];
8460
8406
  readonly 'country': string;
8461
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8462
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8463
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8464
8407
  }
8408
+ }
8465
8409
 
8466
- interface ProcessorEntityStatusForm {
8467
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8410
+ declare namespace io.flow.common.v0.unions {
8411
+ type DiscountOffer = (io.flow.common.v0.models.DiscountOfferFixed | io.flow.common.v0.models.DiscountOfferPercent);
8412
+ type ExpandableOrganization = (io.flow.common.v0.models.Organization | io.flow.common.v0.models.OrganizationReference);
8413
+ type ExpandableUser = (io.flow.common.v0.models.User | io.flow.common.v0.models.UserReference);
8414
+ type InputSpecificationLimitation = (io.flow.common.v0.models.InputSpecificationLimitationMax);
8415
+ type LogoImage = (io.flow.common.v0.models.LogoImageSvg | io.flow.common.v0.models.LogoImageSetStatic);
8416
+ type PriceSource = (io.flow.common.v0.models.PriceSourcePriceBook | io.flow.common.v0.models.PriceSourceCatalog | io.flow.common.v0.models.PriceSourceProvided);
8417
+ type RepeatSchedule = (io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly);
8418
+ }
8419
+
8420
+ declare namespace io.flow.billing.reporting.v0.enums {
8421
+ type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
8422
+ type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account';
8423
+ type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
8424
+ type RevenueRecordType = 'sales' | 'refund';
8425
+ }
8426
+
8427
+ declare namespace io.flow.billing.reporting.v0.models {
8428
+ interface FulfillmentShopperBreakdown {
8429
+ readonly 'shipping': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8430
+ readonly 'fees': io.flow.billing.reporting.v0.models.ReportingShopperFees;
8431
+ readonly 'product': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8432
+ readonly 'subtotal': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8433
+ readonly 'tax': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8434
+ readonly 'duty': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8435
+ readonly 'discount': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8436
+ readonly 'total': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8468
8437
  }
8469
8438
 
8470
- interface ProcessorMerchantReference {
8471
- readonly 'id': string;
8472
- readonly 'organization_id': string;
8473
- readonly 'key': string;
8474
- readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
8475
- readonly 'country': string;
8476
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8477
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8439
+ interface MarkedAsFinal {
8440
+ readonly 'products': boolean;
8441
+ readonly 'shipping': boolean;
8478
8442
  }
8479
8443
 
8480
- interface Redirect {
8444
+ interface NonChannelPaymentBankAccount {
8445
+ readonly 'payment': io.flow.billing.reporting.v0.models.ReportPayment;
8446
+ readonly 'bank_account': io.flow.billing.reporting.v0.models.ReportBankAccount;
8447
+ readonly 'account': io.flow.billing.reporting.v0.models.ReportAccount;
8448
+ }
8449
+
8450
+ interface RecordReference {
8481
8451
  readonly 'id': string;
8482
- readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
8483
- readonly 'reason': io.flow.payment.internal.v0.enums.RedirectReason;
8484
8452
  }
8485
8453
 
8486
- interface RedirectActionCompleted {
8487
- readonly 'discriminator': 'redirect_action_completed';
8454
+ interface Report {
8488
8455
  readonly 'id': string;
8489
- readonly 'organization': string;
8490
- readonly 'key': string;
8491
- readonly 'expires_at': string;
8492
- readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
8493
- readonly 'inline_notification_urls'?: io.flow.payment.v0.models.PostPaymentRedirectUrls;
8456
+ readonly 'status': io.flow.billing.reporting.v0.enums.ReportStatus;
8457
+ readonly 'type': io.flow.billing.reporting.v0.enums.ReportType;
8458
+ readonly 'from': string;
8459
+ readonly 'to': string;
8460
+ readonly 'url'?: string;
8461
+ readonly 'processed_at'?: string;
8494
8462
  }
8495
8463
 
8496
- interface RoutingAccount {
8497
- readonly 'discriminator': 'routing_account';
8498
- readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
8499
- readonly 'processor_account': io.flow.payment.internal.v0.models.ProcessorAccountReference;
8464
+ interface ReportAccount {
8465
+ readonly 'id': string;
8466
+ readonly 'source': io.flow.billing.internal.v0.models.AccountSource;
8500
8467
  }
8501
8468
 
8502
- interface RoutingMerchant {
8503
- readonly 'discriminator': 'routing_merchant';
8504
- readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
8505
- readonly 'processor_account': io.flow.payment.internal.v0.models.ProcessorAccountReference;
8506
- readonly 'processor_merchant': io.flow.payment.internal.v0.models.ProcessorMerchantReference;
8469
+ interface ReportBankAccount {
8470
+ readonly 'id'?: string;
8471
+ readonly 'last4'?: string;
8507
8472
  }
8508
8473
 
8509
- interface RoutingProcessor {
8510
- readonly 'discriminator': 'routing_processor';
8511
- readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
8474
+ interface ReportForm {
8475
+ readonly 'from': string;
8476
+ readonly 'to': string;
8477
+ readonly 'type': io.flow.billing.reporting.v0.enums.ReportType;
8512
8478
  }
8513
8479
 
8514
- interface StripeAccount {
8515
- readonly 'discriminator': 'stripe_account';
8480
+ interface ReportPayment {
8516
8481
  readonly 'id': string;
8517
- readonly 'organization_id': string;
8518
- readonly 'key': string;
8519
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8520
- readonly 'name': string;
8521
- readonly 'external_id': string;
8522
- readonly 'country': string;
8523
- readonly 'authentication': io.flow.payment.internal.v0.models.StripeAuthentication;
8524
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8525
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8526
8482
  readonly 'created_at': string;
8527
- readonly 'updated_at': string;
8528
8483
  }
8529
8484
 
8530
- interface StripeAccountModificationForm {
8531
- readonly 'discriminator': 'stripe_account_modification_form';
8532
- readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8533
- readonly 'name': string;
8534
- readonly 'external_id': string;
8535
- readonly 'country': string;
8536
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8485
+ interface ReportingAuthorizationReference {
8486
+ readonly 'id': string;
8537
8487
  }
8538
8488
 
8539
- interface StripeAccountPutForm {
8540
- readonly 'discriminator': 'stripe_account_put_form';
8541
- readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
8542
- readonly 'name': string;
8543
- readonly 'external_id': string;
8544
- readonly 'country': string;
8545
- readonly 'authentication': io.flow.payment.internal.v0.models.StripeAuthenticationForm;
8546
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8547
- readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
8489
+ interface ReportingBusiness {
8490
+ readonly 'vat_registration_number': string;
8491
+ readonly 'name'?: string;
8548
8492
  }
8549
8493
 
8550
- interface StripeAuthentication {
8551
- readonly 'public_key': string;
8552
- readonly 'secret_key_reference': string;
8494
+ interface ReportingConversionRates {
8495
+ readonly 'merchant': number;
8496
+ readonly 'entity': number;
8497
+ readonly 'usd': number;
8498
+ readonly 'eur': number;
8553
8499
  }
8554
8500
 
8555
- interface StripeAuthenticationDataReference {
8556
- readonly 'id': string;
8501
+ interface ReportingCountry {
8502
+ readonly 'code': string;
8503
+ readonly 'is_eu': boolean;
8557
8504
  }
8558
8505
 
8559
- interface StripeAuthenticationForm {
8560
- readonly 'public_key': string;
8561
- readonly 'secret_key': string;
8506
+ interface ReportingCurrencies {
8507
+ readonly 'transaction': string;
8508
+ readonly 'merchant': string;
8509
+ readonly 'entity': string;
8562
8510
  }
8563
8511
 
8564
- interface StripeMerchant {
8565
- readonly 'discriminator': 'stripe_merchant';
8566
- readonly 'id': string;
8567
- readonly 'key': string;
8568
- readonly 'organization_id': string;
8569
- readonly 'external_id': string;
8570
- readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
8571
- readonly 'name': string;
8572
- readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
8573
- readonly 'country': string;
8574
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8575
- readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8576
- readonly 'created_at': string;
8577
- readonly 'updated_at': string;
8512
+ interface ReportingDebug {
8513
+ readonly 'console_order_link': string;
8514
+ readonly 'allocation_order_totals_delta'?: number;
8515
+ readonly 'allocation_order_item_discount_delta'?: number;
8516
+ readonly 'missing_item_subsidies'?: io.flow.billing.reporting.v0.models.ReportingDebugMissingSubsidies;
8517
+ readonly 'missing_shipping_subsidies'?: io.flow.billing.reporting.v0.models.ReportingDebugMissingSubsidies;
8578
8518
  }
8579
8519
 
8580
- interface StripeMerchantForm {
8581
- readonly 'discriminator': 'stripe_merchant_form';
8582
- readonly 'key'?: string;
8583
- readonly 'organization_id': string;
8584
- readonly 'name': string;
8585
- readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
8586
- readonly 'country': string;
8587
- readonly 'payment_statement': string;
8588
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8520
+ interface ReportingDebugMissingSubsidies {
8521
+ readonly 'price'?: boolean;
8522
+ readonly 'tax'?: boolean;
8523
+ readonly 'duty'?: boolean;
8589
8524
  }
8590
8525
 
8591
- interface StripeMerchantModificationForm {
8592
- readonly 'discriminator': 'stripe_merchant_modification_form';
8593
- readonly 'external_id': string;
8594
- readonly 'name': string;
8595
- readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
8596
- readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8597
- readonly 'country': string;
8526
+ interface ReportingDestination {
8527
+ readonly 'country': io.flow.billing.reporting.v0.models.ReportingCountry;
8528
+ readonly 'province'?: io.flow.billing.reporting.v0.models.ReportingProvince;
8598
8529
  }
8599
8530
 
8600
- interface StripeMerchantPutForm {
8601
- readonly 'discriminator': 'stripe_merchant_put_form';
8602
- readonly 'organization_id': string;
8603
- readonly 'external_id': string;
8604
- readonly 'name': string;
8605
- readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
8606
- readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8607
- readonly 'country': string;
8608
- readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
8531
+ interface ReportingEntity {
8532
+ readonly 'id': string;
8609
8533
  }
8610
8534
 
8611
- interface Tribe {
8535
+ interface ReportingFulfillment {
8612
8536
  readonly 'id': string;
8613
- readonly 'description': string;
8537
+ readonly 'sequence_number': number;
8538
+ readonly 'fulfilled_at': string;
8539
+ readonly 'completes_order': boolean;
8540
+ readonly 'payment': io.flow.billing.reporting.v0.models.ReportingPayment;
8541
+ readonly 'refund'?: io.flow.billing.reporting.v0.models.ReportingRefundReference;
8542
+ readonly 'value': io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
8543
+ readonly 'dispatch_country'?: io.flow.billing.reporting.v0.models.ReportingCountry;
8544
+ readonly 'destination'?: io.flow.billing.reporting.v0.models.ReportingDestination;
8545
+ readonly 'shipment'?: io.flow.billing.reporting.v0.models.ReportingShipment;
8546
+ readonly 'is': io.flow.billing.reporting.v0.models.ReportingFulfillmentIs;
8547
+ readonly 'has': io.flow.billing.reporting.v0.models.ReportingFulfillmentHas;
8548
+ readonly 'fx': io.flow.billing.reporting.v0.models.ReportingFx;
8549
+ readonly 'business'?: io.flow.billing.reporting.v0.models.ReportingBusiness;
8614
8550
  }
8615
8551
 
8616
- interface VirtualCardProvider {
8617
- readonly 'id': string;
8618
- readonly 'organization_id': string;
8619
- readonly 'provider': string;
8620
- readonly 'attributes'?: Record<string, string>;
8621
- readonly 'created_at': string;
8622
- readonly 'updated_at': string;
8552
+ interface ReportingFulfillmentHas {
8553
+ readonly 'zero_vat_product': boolean;
8623
8554
  }
8624
- }
8625
8555
 
8626
- declare namespace io.flow.payment.internal.v0.unions {
8627
- type AuthorizationPayload = (io.flow.payment.internal.v0.models.ApplePayAuthorizationPayload | io.flow.payment.internal.v0.models.PaypalAuthorizationPayload);
8628
- type InlineAuthorizationParameters = (io.flow.payment.internal.v0.models.KlarnaAuthorizationParameters);
8629
- type InternalAuthorizationDetails = (io.flow.payment.internal.v0.models.InternalPaypalAuthorizationDetails | io.flow.payment.internal.v0.models.InternalBitpayAuthorizationDetails | io.flow.payment.internal.v0.models.InternalStripeAuthorizationDetails | io.flow.payment.internal.v0.models.InternalAdyenAuthorizationDetails | io.flow.payment.internal.v0.models.InternalAfterpayAuthorizationDetails | io.flow.payment.internal.v0.models.InternalFiservAuthorizationDetails);
8630
- type InternalRefundForm = (io.flow.payment.internal.v0.models.AdyenRefundForm);
8631
- type InternalTransactionDetails = (io.flow.payment.internal.v0.models.InternalTransactionDetailsCard);
8632
- type PaymentRedirect = (io.flow.payment.internal.v0.models.OnlineAuthorizationCompleted | io.flow.payment.internal.v0.models.RedirectActionCompleted);
8633
- type ProcessorAccount = (io.flow.payment.internal.v0.models.StripeAccount | io.flow.payment.internal.v0.models.AdyenAccount | io.flow.payment.internal.v0.models.PaypalAccount | io.flow.payment.internal.v0.models.AfterpayAccount | io.flow.payment.internal.v0.models.BitpayAccount | io.flow.payment.internal.v0.models.FiservAccount | io.flow.payment.internal.v0.models.CryptoAccount);
8634
- type ProcessorAccountModificationForm = (io.flow.payment.internal.v0.models.StripeAccountModificationForm | io.flow.payment.internal.v0.models.AdyenAccountModificationForm | io.flow.payment.internal.v0.models.PaypalAccountModificationForm | io.flow.payment.internal.v0.models.AfterpayAccountModificationForm | io.flow.payment.internal.v0.models.BitpayAccountModificationForm | io.flow.payment.internal.v0.models.FiservAccountModificationForm | io.flow.payment.internal.v0.models.CryptoAccountModificationForm);
8635
- type ProcessorAccountPutForm = (io.flow.payment.internal.v0.models.StripeAccountPutForm | io.flow.payment.internal.v0.models.AdyenAccountPutForm | io.flow.payment.internal.v0.models.PaypalAccountPutForm | io.flow.payment.internal.v0.models.AfterpayAccountPutForm | io.flow.payment.internal.v0.models.BitpayAccountPutForm | io.flow.payment.internal.v0.models.FiservAccountPutForm | io.flow.payment.internal.v0.models.CryptoAccountPutForm);
8636
- type ProcessorMerchant = (io.flow.payment.internal.v0.models.StripeMerchant | io.flow.payment.internal.v0.models.AdyenMerchant | io.flow.payment.internal.v0.models.FiservMerchant | io.flow.payment.internal.v0.models.PaypalMerchant);
8637
- type ProcessorMerchantForm = (io.flow.payment.internal.v0.models.StripeMerchantForm);
8638
- type ProcessorMerchantModificationForm = (io.flow.payment.internal.v0.models.StripeMerchantModificationForm | io.flow.payment.internal.v0.models.AdyenMerchantModificationForm | io.flow.payment.internal.v0.models.FiservMerchantModificationForm | io.flow.payment.internal.v0.models.PaypalMerchantModificationForm);
8639
- type ProcessorMerchantPutForm = (io.flow.payment.internal.v0.models.StripeMerchantPutForm | io.flow.payment.internal.v0.models.AdyenMerchantPutForm | io.flow.payment.internal.v0.models.FiservMerchantPutForm | io.flow.payment.internal.v0.models.PaypalMerchantPutForm);
8640
- type RoutingEntity = (io.flow.payment.internal.v0.models.RoutingProcessor | io.flow.payment.internal.v0.models.RoutingAccount | io.flow.payment.internal.v0.models.RoutingMerchant);
8641
- }
8556
+ interface ReportingFulfillmentIs {
8557
+ readonly 'replacement': boolean;
8558
+ readonly 'virtual': io.flow.billing.reporting.v0.enums.ReportingFulfillmentIsVirtual;
8559
+ readonly 'duties_guaranteed': boolean;
8560
+ readonly 'wyol': boolean;
8561
+ readonly 'b2b': boolean;
8562
+ readonly 'domestic': boolean;
8563
+ }
8642
8564
 
8643
- declare namespace io.flow.partner.v0.enums {
8644
- type LabelFormat = 'pdf' | 'zpl' | 'all';
8645
- }
8565
+ interface ReportingFx {
8566
+ readonly 'shipping': io.flow.billing.reporting.v0.models.ReportingUsd;
8567
+ readonly 'fees': io.flow.billing.reporting.v0.models.ReportingUsd;
8568
+ readonly 'product': io.flow.billing.reporting.v0.models.ReportingUsd;
8569
+ readonly 'tax': io.flow.billing.reporting.v0.models.ReportingUsd;
8570
+ readonly 'duty': io.flow.billing.reporting.v0.models.ReportingUsd;
8571
+ readonly 'total': io.flow.billing.reporting.v0.models.ReportingUsd;
8572
+ }
8646
8573
 
8647
- declare namespace io.flow.partner.v0.models {
8648
- interface BridgeHub {
8649
- readonly 'hub_code': string;
8650
- readonly 'address': io.flow.fulfillment.v0.models.ShippingAddress;
8574
+ interface ReportingMerchantBreakdown {
8575
+ readonly 'subsidies': io.flow.billing.reporting.v0.models.ReportingMerchantSubsidies;
8576
+ readonly 'fees': io.flow.billing.reporting.v0.models.ReportingMerchantFees;
8577
+ readonly 'transactions': io.flow.billing.reporting.v0.models.ReportingMerchantTransactions;
8651
8578
  }
8652
8579
 
8653
- interface BridgeLabelForm {
8654
- readonly 'discriminator': 'bridge_label_form';
8655
- readonly 'organization': string;
8656
- readonly 'order_number': string;
8657
- readonly 'package': io.flow.partner.v0.models.BridgeLabelPackage;
8658
- readonly 'hub'?: io.flow.partner.v0.models.BridgeHub;
8580
+ interface ReportingMerchantFees {
8581
+ readonly 'duty_guarantee': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8582
+ readonly 'mor': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8583
+ readonly 'fraud': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8584
+ readonly 'fx': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8585
+ readonly 'processing': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8586
+ readonly 'rate_lock': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8587
+ readonly 'transfer': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8659
8588
  }
8660
8589
 
8661
- interface BridgeLabelPackage {
8662
- readonly 'dimensions'?: io.flow.common.v0.models.Dimension;
8663
- readonly 'items': io.flow.common.v0.models.LineItemForm[];
8664
- readonly 'reference_number': string;
8590
+ interface ReportingMerchantSubsidies {
8591
+ readonly 'shipping': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8592
+ readonly 'tax': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8593
+ readonly 'duty': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8594
+ readonly 'ccf': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8665
8595
  }
8666
8596
 
8667
- interface DetailedLabelForm {
8668
- readonly 'discriminator': 'detailed_label_form';
8669
- readonly 'organization': string;
8670
- readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
8671
- readonly 'order_number': string;
8672
- readonly 'origin': io.flow.fulfillment.v0.models.ShippingAddress;
8673
- readonly 'package': io.flow.label.v0.models.ShippingLabelPackage;
8674
- readonly 'service'?: string;
8675
- readonly 'references'?: string[];
8597
+ interface ReportingMerchantTransactions {
8598
+ readonly 'adjustment': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8599
+ readonly 'reversal': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8600
+ readonly 'tax': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8601
+ readonly 'duty': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8602
+ readonly 'freight': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8603
+ readonly 'refund': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8676
8604
  }
8677
8605
 
8678
- interface Label {
8679
- readonly 'id': string;
8680
- readonly 'organization': io.flow.partner.v0.models.PartnerOrganizationReference;
8681
- readonly 'order_number': string;
8682
- readonly 'package': io.flow.label.v0.models.ShippingLabelPackage;
8683
- readonly 'carrier_tracking_number': string;
8684
- readonly 'carrier_tracking_number_url': string;
8685
- readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
8686
- readonly 'flow_tracking_number': string;
8687
- readonly 'flow_tracking_number_url': string;
8688
- readonly 'origin': io.flow.fulfillment.v0.models.ShippingAddress;
8689
- readonly 'service': io.flow.fulfillment.v0.models.ServiceSummary;
8690
- readonly 'window': io.flow.common.v0.models.DatetimeRange;
8691
- readonly 'zpl'?: string;
8692
- readonly 'pdf'?: string;
8693
- readonly 'png'?: string;
8694
- readonly 'commercial_invoice'?: string;
8695
- readonly 'references'?: string[];
8696
- readonly 'label'?: io.flow.label.v0.models.ShippingLabelDocument;
8697
- readonly 'invoice'?: io.flow.label.v0.models.ShippingLabelDocument;
8698
- readonly 'cost'?: io.flow.common.v0.models.Price;
8699
- readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
8606
+ interface ReportingMonetaryValue {
8607
+ readonly 'transaction': number;
8608
+ readonly 'merchant': number;
8609
+ readonly 'entity': number;
8610
+ readonly 'usd': number;
8611
+ readonly 'eur': number;
8700
8612
  }
8701
8613
 
8702
- interface PartnerBridgeManifest {
8614
+ interface ReportingOrderSummary {
8703
8615
  readonly 'id': string;
8704
- readonly 'organization': io.flow.partner.v0.models.PartnerOrganizationReference;
8705
- readonly 'service': io.flow.fulfillment.v0.models.ServiceSummary;
8706
- readonly 'pdf': string;
8707
- readonly 'data': string;
8616
+ readonly 'number': string;
8617
+ readonly 'submitted_at': string;
8708
8618
  }
8709
8619
 
8710
- interface PartnerBridgeManifestForm {
8711
- readonly 'order_numbers': string[];
8620
+ interface ReportingOrganizationSummary {
8621
+ readonly 'id': string;
8622
+ readonly 'name': string;
8712
8623
  }
8713
8624
 
8714
- interface PartnerFulfillment {
8715
- readonly 'organization': string;
8716
- readonly 'key': string;
8717
- readonly 'number': string;
8718
- readonly 'items': io.flow.order.management.v0.models.FulfillmentItem[];
8719
- readonly 'center'?: io.flow.fulfillment.v0.models.CenterSummary[];
8625
+ interface ReportingPayment {
8626
+ readonly 'metadata'?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadata;
8627
+ readonly 'psp': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8628
+ readonly 'credit': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8629
+ readonly 'total': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8720
8630
  }
8721
8631
 
8722
- interface PartnerFulfillmentCancellationForm {
8723
- readonly 'change_source': io.flow.order.management.v0.enums.OrderChangeSource;
8724
- readonly 'reason': io.flow.order.management.v0.enums.CancelReason;
8725
- readonly 'lines': io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
8632
+ interface ReportingPaymentMetadata {
8633
+ readonly 'gateway': io.flow.payment.internal.v0.enums.Processor;
8634
+ readonly 'method': string;
8635
+ readonly 'psp_reference'?: string;
8636
+ readonly 'authorization'?: io.flow.billing.reporting.v0.models.ReportingAuthorizationReference;
8637
+ readonly 'settlement_date': string;
8638
+ readonly 'additional_authorizations'?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
8726
8639
  }
8727
8640
 
8728
- interface PartnerFulfillmentCompleteCancellationForm {
8729
- readonly 'change_source': io.flow.order.management.v0.enums.OrderChangeSource;
8730
- readonly 'reason': io.flow.order.management.v0.enums.CancelReason;
8641
+ interface ReportingPaymentMetadataAdditionalAuthorizations {
8642
+ readonly 'ids': string;
8731
8643
  }
8732
8644
 
8733
- interface PartnerManifest {
8734
- readonly 'id': string;
8735
- readonly 'organization': io.flow.partner.v0.models.PartnerOrganizationReference;
8736
- readonly 'service'?: io.flow.fulfillment.v0.models.ServiceSummary;
8737
- readonly 'timestamp': string;
8738
- readonly 'shipping_labels': io.flow.label.v0.models.ShippingLabelSummary[];
8739
- readonly 'pdf'?: string;
8645
+ interface ReportingProvince {
8646
+ readonly 'code'?: string;
8647
+ readonly 'name': string;
8740
8648
  }
8741
8649
 
8742
- interface PartnerManifestForm {
8743
- readonly 'tracking_numbers': string[];
8744
- readonly 'service'?: string;
8650
+ interface ReportingReconciliation {
8651
+ readonly 'date': string;
8652
+ readonly 'month': number;
8653
+ readonly 'year': number;
8745
8654
  }
8746
8655
 
8747
- interface PartnerOrderIdentifier {
8656
+ interface ReportingRefundReference {
8748
8657
  readonly 'id': string;
8749
- readonly 'organization': io.flow.partner.v0.models.PartnerOrganizationReference;
8750
- readonly 'order': io.flow.partner.v0.models.PartnerOrderReference;
8751
- readonly 'number': string;
8752
8658
  }
8753
8659
 
8754
- interface PartnerOrderIdentifierForm {
8755
- readonly 'number': string;
8756
- readonly 'order_number': string;
8660
+ interface ReportingShipment {
8661
+ readonly 'carrier': string;
8662
+ readonly 'tracking_number'?: string;
8757
8663
  }
8758
8664
 
8759
- interface PartnerOrderIdentifierPutForm {
8760
- readonly 'order_number': string;
8665
+ interface ReportingShopperFees {
8666
+ readonly 'fuel': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8667
+ readonly 'remote_area': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8668
+ readonly 'oversize': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8669
+ readonly 'ccf': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8670
+ readonly 'emergency': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8671
+ readonly 'peak': io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
8761
8672
  }
8762
8673
 
8763
- interface PartnerOrderReference {
8764
- readonly 'id': string;
8765
- readonly 'number': string;
8674
+ interface ReportingUsd {
8675
+ readonly 'usd': number;
8766
8676
  }
8767
8677
 
8768
- interface PartnerOrganizationReference {
8769
- readonly 'id': string;
8678
+ interface ReportingVatRemittance {
8679
+ readonly 'currency': string;
8680
+ readonly 'rate': io.flow.billing.reporting.v0.models.ReportingVatRemittanceRate;
8770
8681
  }
8771
8682
 
8772
- interface SummaryLabelForm {
8773
- readonly 'discriminator': 'summary_label_form';
8774
- readonly 'organization': string;
8775
- readonly 'order_number': string;
8776
- readonly 'items'?: io.flow.common.v0.models.LineItemForm[];
8777
- readonly 'package'?: io.flow.label.v0.models.ShippingLabelPackage;
8778
- readonly 'center_key'?: string;
8683
+ interface ReportingVatRemittanceRate {
8684
+ readonly 'entity': number;
8779
8685
  }
8780
- }
8781
8686
 
8782
- declare namespace io.flow.partner.v0.unions {
8783
- type LabelForm = (io.flow.partner.v0.models.DetailedLabelForm | io.flow.partner.v0.models.SummaryLabelForm | io.flow.partner.v0.models.BridgeLabelForm);
8784
- }
8687
+ interface ReportingVendor {
8688
+ readonly 'id': string;
8689
+ }
8785
8690
 
8786
- declare namespace io.flow.common.v0.enums {
8787
- type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
8788
- type AvailabilityStatus = 'enabled' | 'disabled';
8789
- type Calendar = 'weekdays' | 'everyday';
8790
- type Capability = 'crossdock';
8791
- type ChangeType = 'insert' | 'update' | 'delete';
8792
- type CurrencyLabelFormatter = 'strip_trailing_zeros' | 'symbol_prefix' | 'symbol_suffix';
8793
- type CurrencySymbolFormat = 'narrow' | 'primary';
8794
- type DayOfWeek = 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday';
8795
- type DeliveredDuty = 'paid' | 'unpaid';
8796
- type DiscountTarget = 'item' | 'shipping';
8797
- type EntityIdentifierType = 'ioss' | 'voec';
8798
- type Environment = 'sandbox' | 'production';
8799
- type ExceptionType = 'open' | 'closed';
8800
- type GoodsSupply = 'export' | 'intra_community' | 'local';
8801
- type HolidayCalendar = 'us_bank_holidays' | 'jewish_holidays';
8802
- type IncludedLevyKey = 'duty' | 'vat' | 'vat_and_duty' | 'none';
8803
- type Incoterm = 'EXW' | 'FCA' | 'CPT' | 'CIP' | 'DAT' | 'DAP' | 'DDP' | 'FAS' | 'FOB' | 'CFR' | 'CIF' | 'DAF' | 'DES' | 'DEQ' | 'DDU';
8804
- type InputSpecificationType = 'text' | 'number';
8805
- type MarginType = 'fixed' | 'percent';
8806
- type MeasurementSystem = 'imperial' | 'metric';
8807
- type MerchantOfRecord = 'flow' | 'organization';
8808
- type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
8809
- type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
8810
- type OrganizationType = 'standalone' | 'channel';
8811
- type PriceBookStatus = 'draft' | 'published' | 'archived';
8812
- type Role = 'admin' | 'member';
8813
- type RoundingMethod = 'up' | 'down' | 'nearest';
8814
- type RoundingType = 'pattern' | 'multiple';
8815
- type ScheduleExceptionStatus = 'Open' | 'Closed';
8816
- type SortDirection = 'ascending' | 'descending';
8817
- type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
8818
- type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
8819
- type UserStatus = 'pending' | 'active' | 'inactive';
8820
- type ValueAddedService = 'Hazardous Material';
8821
- type Visibility = 'public' | 'private';
8691
+ interface RevenueRecord {
8692
+ readonly 'id': string;
8693
+ readonly 'organization': io.flow.billing.reporting.v0.models.ReportingOrganizationSummary;
8694
+ readonly 'parent'?: io.flow.billing.reporting.v0.models.RecordReference;
8695
+ readonly 'type': io.flow.billing.reporting.v0.enums.RevenueRecordType;
8696
+ readonly 'order': io.flow.billing.reporting.v0.models.ReportingOrderSummary;
8697
+ readonly 'entity': io.flow.billing.reporting.v0.models.ReportingEntity;
8698
+ readonly 'vendor': io.flow.billing.reporting.v0.models.ReportingVendor;
8699
+ readonly 'currencies': io.flow.billing.reporting.v0.models.ReportingCurrencies;
8700
+ readonly 'conversion_rate': io.flow.billing.reporting.v0.models.ReportingConversionRates;
8701
+ readonly 'reconciliation': io.flow.billing.reporting.v0.models.ReportingReconciliation;
8702
+ readonly 'merchant': io.flow.billing.reporting.v0.models.ReportingMerchantBreakdown;
8703
+ readonly 'fulfillment': io.flow.billing.reporting.v0.models.ReportingFulfillment;
8704
+ readonly 'vat_remittance': io.flow.billing.reporting.v0.models.ReportingVatRemittance;
8705
+ readonly 'marked_as_final': io.flow.billing.reporting.v0.models.MarkedAsFinal;
8706
+ readonly 'debug': io.flow.billing.reporting.v0.models.ReportingDebug;
8707
+ }
8822
8708
  }
8823
8709
 
8824
- declare namespace io.flow.common.v0.models {
8825
- interface Address {
8826
- readonly 'text'?: string;
8827
- readonly 'streets'?: string[];
8828
- readonly 'street_number'?: string;
8829
- readonly 'city'?: string;
8830
- readonly 'province'?: string;
8831
- readonly 'postal'?: string;
8832
- readonly 'country'?: string;
8833
- readonly 'latitude'?: string;
8834
- readonly 'longitude'?: string;
8835
- }
8710
+ declare namespace io.flow.payment.internal.v0.enums {
8711
+ type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
8712
+ type ChargebackPaymentStatus = 'captured' | 'refunded';
8713
+ type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
8714
+ type HttpMethod = 'get' | 'post';
8715
+ type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
8716
+ type OrganizationPaymentStatus = 'active' | 'archived';
8717
+ type Owner = 'flow' | 'organization';
8718
+ type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
8719
+ type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
8720
+ type RedirectReason = 'three_d_secure';
8721
+ type RiskCheck = 'three_d_secure';
8722
+ }
8836
8723
 
8837
- interface BillingAddress {
8838
- readonly 'name'?: io.flow.common.v0.models.Name;
8839
- readonly 'streets'?: string[];
8840
- readonly 'city'?: string;
8841
- readonly 'province'?: string;
8842
- readonly 'postal'?: string;
8843
- readonly 'country'?: string;
8844
- readonly 'company'?: string;
8724
+ declare namespace io.flow.payment.internal.v0.models {
8725
+ interface AdyenAccount {
8726
+ readonly 'discriminator': 'adyen_account';
8727
+ readonly 'id': string;
8728
+ readonly 'organization_id': string;
8729
+ readonly 'key': string;
8730
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8731
+ readonly 'name': string;
8732
+ readonly 'ui_reference': string;
8733
+ readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthentication;
8734
+ readonly 'country': string;
8735
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8736
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8737
+ readonly 'created_at': string;
8738
+ readonly 'updated_at': string;
8845
8739
  }
8846
8740
 
8847
- interface CatalogItemReference {
8848
- readonly 'id': string;
8849
- readonly 'number': string;
8741
+ interface AdyenAccountModificationForm {
8742
+ readonly 'discriminator': 'adyen_account_modification_form';
8743
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8744
+ readonly 'name': string;
8745
+ readonly 'ui_reference': string;
8746
+ readonly 'country': string;
8747
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8850
8748
  }
8851
8749
 
8852
- interface CatalogItemSummary {
8853
- readonly 'number': string;
8750
+ interface AdyenAccountPutForm {
8751
+ readonly 'discriminator': 'adyen_account_put_form';
8752
+ readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
8854
8753
  readonly 'name': string;
8855
- readonly 'attributes': Record<string, string>;
8754
+ readonly 'ui_reference': string;
8755
+ readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthenticationForm;
8756
+ readonly 'country': string;
8757
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8758
+ readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
8856
8759
  }
8857
8760
 
8858
- interface ChannelReference {
8859
- readonly 'id': string;
8761
+ interface AdyenAuthentication {
8762
+ readonly 'username': string;
8763
+ readonly 'password_reference': string;
8764
+ readonly 'signature_secret_reference': string;
8860
8765
  }
8861
8766
 
8862
- interface CheckoutReference {
8863
- readonly 'id': string;
8767
+ interface AdyenAuthenticationDataReference {
8768
+ readonly 'account_id': string;
8769
+ readonly 'merchant_account': string;
8770
+ readonly 'origin_key'?: string;
8771
+ readonly 'integration_type'?: io.flow.payment.internal.v0.enums.AdyenIntegrationType;
8864
8772
  }
8865
8773
 
8866
- interface Contact {
8867
- readonly 'name': io.flow.common.v0.models.Name;
8868
- readonly 'company'?: string;
8869
- readonly 'email'?: string;
8870
- readonly 'phone'?: string;
8774
+ interface AdyenAuthenticationForm {
8775
+ readonly 'username': string;
8776
+ readonly 'password': string;
8777
+ readonly 'signature_secret': string;
8871
8778
  }
8872
8779
 
8873
- interface CustomerInvoice {
8874
- readonly 'address'?: io.flow.common.v0.models.BillingAddress;
8780
+ interface AdyenMerchant {
8781
+ readonly 'discriminator': 'adyen_merchant';
8782
+ readonly 'id': string;
8783
+ readonly 'key': string;
8784
+ readonly 'organization_id': string;
8785
+ readonly 'external_id': string;
8786
+ readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
8787
+ readonly 'country': string;
8788
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8789
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8790
+ readonly 'created_at': string;
8791
+ readonly 'updated_at': string;
8875
8792
  }
8876
8793
 
8877
- interface CustomerReference {
8878
- readonly 'number': string;
8794
+ interface AdyenMerchantModificationForm {
8795
+ readonly 'discriminator': 'adyen_merchant_modification_form';
8796
+ readonly 'external_id': string;
8797
+ readonly 'country': string;
8798
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8879
8799
  }
8880
8800
 
8881
- interface DatetimeRange {
8882
- readonly 'from': string;
8883
- readonly 'to': string;
8801
+ interface AdyenMerchantPutForm {
8802
+ readonly 'discriminator': 'adyen_merchant_put_form';
8803
+ readonly 'organization_id': string;
8804
+ readonly 'external_id': string;
8805
+ readonly 'country': string;
8806
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8807
+ readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
8884
8808
  }
8885
8809
 
8886
- interface Dimension {
8887
- readonly 'depth'?: io.flow.common.v0.models.Measurement;
8888
- readonly 'diameter'?: io.flow.common.v0.models.Measurement;
8889
- readonly 'length'?: io.flow.common.v0.models.Measurement;
8890
- readonly 'weight'?: io.flow.common.v0.models.Measurement;
8891
- readonly 'width'?: io.flow.common.v0.models.Measurement;
8810
+ interface AdyenPaymentDetailsForm {
8811
+ readonly 'fingerprint'?: string;
8812
+ readonly 'challenge_result'?: string;
8892
8813
  }
8893
8814
 
8894
- interface Dimensions {
8895
- readonly 'product'?: io.flow.common.v0.models.Dimension;
8896
- readonly 'packaging'?: io.flow.common.v0.models.Dimension;
8815
+ interface AdyenRefundForm {
8816
+ readonly 'discriminator': 'adyen_refund_form';
8817
+ readonly 'amount': number;
8818
+ readonly 'authorization_id': string;
8819
+ readonly 'capture_id': string;
8820
+ readonly 'currency': string;
8821
+ readonly 'psp_reference': string;
8822
+ readonly 'key'?: string;
8897
8823
  }
8898
8824
 
8899
- interface DiscountForm {
8900
- readonly 'offer': io.flow.common.v0.unions.DiscountOffer;
8901
- readonly 'target'?: io.flow.common.v0.enums.DiscountTarget;
8902
- readonly 'label'?: string;
8825
+ interface AfterpayAccount {
8826
+ readonly 'discriminator': 'afterpay_account';
8827
+ readonly 'id': string;
8828
+ readonly 'organization_id': string;
8829
+ readonly 'key': string;
8830
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8831
+ readonly 'country': string;
8832
+ readonly 'authentication': io.flow.payment.internal.v0.models.AfterpayAuthentication;
8833
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8834
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8835
+ readonly 'created_at': string;
8836
+ readonly 'updated_at': string;
8903
8837
  }
8904
8838
 
8905
- interface DiscountOfferFixed {
8906
- readonly 'discriminator': 'discount_offer_fixed';
8907
- readonly 'money': io.flow.common.v0.models.Money;
8839
+ interface AfterpayAccountModificationForm {
8840
+ readonly 'discriminator': 'afterpay_account_modification_form';
8841
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8842
+ readonly 'country': string;
8843
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8908
8844
  }
8909
8845
 
8910
- interface DiscountOfferPercent {
8911
- readonly 'discriminator': 'discount_offer_percent';
8912
- readonly 'percent': number;
8846
+ interface AfterpayAccountPutForm {
8847
+ readonly 'discriminator': 'afterpay_account_put_form';
8848
+ readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
8849
+ readonly 'country': string;
8850
+ readonly 'authentication': io.flow.payment.internal.v0.models.AfterpayAuthenticationForm;
8851
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8852
+ readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
8913
8853
  }
8914
8854
 
8915
- interface DiscountsForm {
8916
- readonly 'discounts': io.flow.common.v0.models.DiscountForm[];
8855
+ interface AfterpayAuthentication {
8856
+ readonly 'username': string;
8857
+ readonly 'password_reference': string;
8917
8858
  }
8918
8859
 
8919
- interface Duration {
8920
- readonly 'unit': io.flow.common.v0.enums.UnitOfTime;
8921
- readonly 'value': number;
8860
+ interface AfterpayAuthenticationDataReference {
8861
+ readonly 'account_id': string;
8922
8862
  }
8923
8863
 
8924
- interface EntityIdentifier {
8925
- readonly 'name': io.flow.common.v0.enums.EntityIdentifierType;
8926
- readonly 'number': string;
8927
- readonly 'issuing_country'?: string;
8864
+ interface AfterpayAuthenticationForm {
8865
+ readonly 'username': string;
8866
+ readonly 'password': string;
8928
8867
  }
8929
8868
 
8930
- interface Exception {
8931
- readonly 'type': io.flow.common.v0.enums.ExceptionType;
8932
- readonly 'datetime_range': io.flow.common.v0.models.DatetimeRange;
8869
+ interface ApplePayAuthorizationPayload {
8870
+ readonly 'discriminator': 'apple_pay_authorization_payload';
8871
+ readonly 'apple_pay_token': string;
8933
8872
  }
8934
8873
 
8935
- interface ExperienceSummary {
8874
+ interface AuthenticationForm {
8875
+ readonly 'password': string;
8876
+ }
8877
+
8878
+ interface AuthorizationBundle {
8936
8879
  readonly 'id': string;
8937
- readonly 'key': string;
8938
- readonly 'name': string;
8939
- readonly 'country'?: string;
8940
- readonly 'currency'?: string;
8941
- readonly 'language'?: string;
8880
+ readonly 'organization_id': string;
8881
+ readonly 'authorization_reference': io.flow.payment.v0.models.AuthorizationReference;
8882
+ readonly 'payment_request_reference': io.flow.payment.gateway.v0.models.PaymentRequestReference;
8883
+ readonly 'billing'?: io.flow.payment.request.bundle.v0.models.PaymentRequestBilling;
8942
8884
  }
8943
8885
 
8944
- interface IncludedLevies {
8945
- readonly 'key': io.flow.common.v0.enums.IncludedLevyKey;
8946
- readonly 'label': string;
8886
+ interface AuthorizationMetadata {
8887
+ readonly 'limit'?: number;
8947
8888
  }
8948
8889
 
8949
- interface InputForm {
8950
- readonly 'values'?: Record<string, string>;
8890
+ interface AuthorizationParameters {
8891
+ readonly 'method': string;
8892
+ readonly 'parameters': any/*object*/;
8951
8893
  }
8952
8894
 
8953
- interface InputFormSpecification {
8954
- readonly 'inputs'?: io.flow.common.v0.models.InputSpecification[];
8955
- readonly 'limitations'?: io.flow.common.v0.models.InputSpecificationLimitations;
8895
+ interface AuthorizationParametersForm {
8896
+ readonly 'order_number': string;
8897
+ readonly 'amount': number;
8898
+ readonly 'currency': string;
8899
+ readonly 'billing_address'?: io.flow.common.v0.models.BillingAddress;
8900
+ readonly 'ip'?: string;
8901
+ readonly 'origin_url'?: string;
8956
8902
  }
8957
8903
 
8958
- interface InputSpecification {
8959
- readonly 'type': io.flow.common.v0.enums.InputSpecificationType;
8960
- readonly 'name': string;
8961
- readonly 'display_text'?: string;
8904
+ interface BitpayAccount {
8905
+ readonly 'discriminator': 'bitpay_account';
8906
+ readonly 'id': string;
8907
+ readonly 'organization_id': string;
8908
+ readonly 'key': string;
8909
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8910
+ readonly 'authentication': io.flow.payment.internal.v0.models.BitpayAuthentication;
8911
+ readonly 'country': string;
8912
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8913
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
8914
+ readonly 'created_at': string;
8915
+ readonly 'updated_at': string;
8962
8916
  }
8963
8917
 
8964
- interface InputSpecificationLimitationMax {
8965
- readonly 'discriminator': 'input_specification_limitation_max';
8966
- readonly 'max': number;
8918
+ interface BitpayAccountModificationForm {
8919
+ readonly 'discriminator': 'bitpay_account_modification_form';
8920
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
8921
+ readonly 'country': string;
8922
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8967
8923
  }
8968
8924
 
8969
- interface InputSpecificationLimitations {
8970
- readonly 'limitations'?: io.flow.common.v0.unions.InputSpecificationLimitation[];
8925
+ interface BitpayAccountPutForm {
8926
+ readonly 'discriminator': 'bitpay_account_put_form';
8927
+ readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
8928
+ readonly 'authentication': io.flow.payment.internal.v0.models.BitpayAuthenticationForm;
8929
+ readonly 'country': string;
8930
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
8931
+ readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
8971
8932
  }
8972
8933
 
8973
- interface ItemReference {
8974
- readonly 'number': string;
8934
+ interface BitpayAuthentication {
8935
+ readonly 'api_token': string;
8936
+ readonly 'public_key': string;
8937
+ readonly 'secret_key_reference': string;
8975
8938
  }
8976
8939
 
8977
- interface LineItem {
8978
- readonly 'number': string;
8979
- readonly 'quantity': number;
8980
- readonly 'price': io.flow.common.v0.models.Money;
8981
- readonly 'attributes': Record<string, string>;
8982
- readonly 'center'?: string;
8983
- readonly 'discount'?: io.flow.common.v0.models.Money;
8940
+ interface BitpayAuthenticationDataReference {
8941
+ readonly 'id': string;
8984
8942
  }
8985
8943
 
8986
- interface LineItemAttributesForm {
8987
- readonly 'attributes': Record<string, string>;
8944
+ interface BitpayAuthenticationForm {
8945
+ readonly 'api_token': string;
8946
+ readonly 'public_key': string;
8947
+ readonly 'secret_key': string;
8988
8948
  }
8989
8949
 
8990
- interface LineItemForm {
8991
- readonly 'number': string;
8992
- readonly 'quantity': number;
8993
- readonly 'shipment_estimate'?: io.flow.common.v0.models.DatetimeRange;
8994
- readonly 'price'?: io.flow.common.v0.models.Money;
8995
- readonly 'attributes'?: Record<string, string>;
8996
- readonly 'center'?: string;
8997
- readonly 'discount'?: io.flow.common.v0.models.Money;
8998
- readonly 'discounts'?: io.flow.common.v0.models.DiscountsForm;
8950
+ interface Chargeback {
8951
+ readonly 'id': string;
8952
+ readonly 'key': string;
8953
+ readonly 'authorization': io.flow.payment.v0.models.AuthorizationReference;
8954
+ readonly 'amount': number;
8955
+ readonly 'currency': string;
8956
+ readonly 'base'?: io.flow.common.v0.models.Money;
8957
+ readonly 'chargeback_issued_at': string;
8958
+ readonly 'created_at': string;
8959
+ readonly 'payment_status': io.flow.payment.internal.v0.enums.ChargebackPaymentStatus;
8960
+ readonly 'process_status': io.flow.payment.internal.v0.enums.ChargebackProcessStatus;
8961
+ readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
8962
+ readonly 'processor_reason': string;
8963
+ readonly 'processor_status': string;
8964
+ readonly 'processor_reference'?: string;
8965
+ readonly 'provider_reference'?: string;
8966
+ readonly 'provider_reason_code'?: string;
8999
8967
  }
9000
8968
 
9001
- interface LineItemQuantityForm {
9002
- readonly 'quantity': number;
8969
+ interface ChargebackVersion {
8970
+ readonly 'id': string;
8971
+ readonly 'timestamp': string;
8972
+ readonly 'type': io.flow.common.v0.enums.ChangeType;
8973
+ readonly 'chargeback': io.flow.payment.internal.v0.models.Chargeback;
9003
8974
  }
9004
8975
 
9005
- interface LogoImageSetStatic {
9006
- readonly 'discriminator': 'static';
9007
- readonly 'small'?: io.flow.common.v0.models.LogoImageStatic;
9008
- readonly 'medium': io.flow.common.v0.models.LogoImageStatic;
9009
- readonly 'large'?: io.flow.common.v0.models.LogoImageStatic;
8976
+ interface Cipher {
8977
+ readonly 'id': string;
8978
+ readonly 'attributes': Record<string, string>;
9010
8979
  }
9011
8980
 
9012
- interface LogoImageStatic {
9013
- readonly 'url': string;
9014
- readonly 'width': number;
9015
- readonly 'height': number;
8981
+ interface CipherForm {
8982
+ readonly 'text': string;
8983
+ readonly 'attributes'?: Record<string, string>;
8984
+ readonly 'password'?: string;
9016
8985
  }
9017
8986
 
9018
- interface LogoImageSvg {
9019
- readonly 'discriminator': 'svg';
9020
- readonly 'url': string;
8987
+ interface CipherReference {
8988
+ readonly 'id': string;
9021
8989
  }
9022
8990
 
9023
- interface Margin {
9024
- readonly 'type': io.flow.common.v0.enums.MarginType;
9025
- readonly 'value': number;
8991
+ interface ClassicPaymentRedirectForm {
8992
+ readonly 'MD': string;
8993
+ readonly 'PaRes': string;
9026
8994
  }
9027
8995
 
9028
- interface Measurement {
9029
- readonly 'value': string;
9030
- readonly 'units': io.flow.common.v0.enums.UnitOfMeasurement;
8996
+ interface CryptoAccount {
8997
+ readonly 'discriminator': 'crypto_account';
8998
+ readonly 'id': string;
8999
+ readonly 'organization_id': string;
9000
+ readonly 'key': string;
9001
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
9002
+ readonly 'authentication': io.flow.payment.internal.v0.models.CryptoAuthentication;
9003
+ readonly 'country': string;
9004
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9005
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
9006
+ readonly 'created_at': string;
9007
+ readonly 'updated_at': string;
9031
9008
  }
9032
9009
 
9033
- interface MerchantOfRecordEntity {
9034
- readonly 'organization': io.flow.common.v0.models.OrganizationReference;
9035
- readonly 'name': string;
9036
- readonly 'vat'?: io.flow.common.v0.models.MerchantOfRecordEntityRegistration;
9037
- readonly 'identifiers'?: io.flow.common.v0.models.EntityIdentifier[];
9038
- readonly 'streets': string[];
9039
- readonly 'city': string;
9040
- readonly 'province'?: string;
9041
- readonly 'postal'?: string;
9010
+ interface CryptoAccountModificationForm {
9011
+ readonly 'discriminator': 'crypto_account_modification_form';
9012
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
9042
9013
  readonly 'country': string;
9043
- readonly 'phone'?: string;
9044
- readonly 'email'?: string;
9014
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9045
9015
  }
9046
9016
 
9047
- interface MerchantOfRecordEntityRegistration {
9048
- readonly 'number': string;
9017
+ interface CryptoAccountPutForm {
9018
+ readonly 'discriminator': 'crypto_account_put_form';
9019
+ readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
9020
+ readonly 'authentication': io.flow.payment.internal.v0.models.CryptoAuthenticationForm;
9049
9021
  readonly 'country': string;
9022
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9023
+ readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
9050
9024
  }
9051
9025
 
9052
- interface Money {
9053
- readonly 'amount': number;
9054
- readonly 'currency': string;
9026
+ interface CryptoAuthentication {
9027
+ readonly 'public_key': string;
9028
+ readonly 'secret_key_reference': string;
9029
+ readonly 'signature_secret_reference': string;
9055
9030
  }
9056
9031
 
9057
- interface MoneyWithBase {
9058
- readonly 'currency': string;
9059
- readonly 'amount': number;
9060
- readonly 'base': io.flow.common.v0.models.Money;
9032
+ interface CryptoAuthenticationForm {
9033
+ readonly 'public_key': string;
9034
+ readonly 'secret_key': string;
9035
+ readonly 'signature_secret': string;
9061
9036
  }
9062
9037
 
9063
- interface MoneyWithOptionalBase {
9064
- readonly 'currency': string;
9065
- readonly 'amount': number;
9066
- readonly 'base'?: io.flow.common.v0.models.Money;
9038
+ interface DecryptCipherForm {
9039
+ readonly 'id': string;
9040
+ readonly 'password': string;
9067
9041
  }
9068
9042
 
9069
- interface Name {
9070
- readonly 'first'?: string;
9071
- readonly 'last'?: string;
9043
+ interface DecryptedCipher {
9044
+ readonly 'id': string;
9045
+ readonly 'cleartext': string;
9046
+ readonly 'attributes': Record<string, string>;
9072
9047
  }
9073
9048
 
9074
- interface OrderCustomer {
9075
- readonly 'name': io.flow.common.v0.models.Name;
9076
- readonly 'number'?: string;
9077
- readonly 'phone'?: string;
9078
- readonly 'email'?: string;
9079
- readonly 'address'?: io.flow.common.v0.models.BillingAddress;
9080
- readonly 'invoice'?: io.flow.common.v0.models.CustomerInvoice;
9049
+ interface Encryption {
9050
+ readonly 'id': string;
9051
+ readonly 'key': io.flow.payment.internal.v0.models.KeyReference;
9052
+ readonly 'iv': string;
9053
+ readonly 'cipher': string;
9054
+ readonly 'passphrase_ids': string[];
9081
9055
  }
9082
9056
 
9083
- interface OrderCustomerForm {
9084
- readonly 'name'?: io.flow.common.v0.models.Name;
9085
- readonly 'number'?: string;
9086
- readonly 'phone'?: string;
9087
- readonly 'email'?: string;
9088
- readonly 'address'?: io.flow.common.v0.models.BillingAddress;
9089
- readonly 'invoice'?: io.flow.common.v0.models.CustomerInvoice;
9057
+ interface FinancialMerchantCategory {
9058
+ readonly 'id': string;
9059
+ readonly 'iso_18245_4': string;
9060
+ readonly 'title': string;
9061
+ readonly 'category_group': string;
9062
+ readonly 'description'?: string;
9090
9063
  }
9091
9064
 
9092
- interface Organization {
9093
- readonly 'discriminator': 'organization';
9065
+ interface FiservAccount {
9066
+ readonly 'discriminator': 'fiserv_account';
9094
9067
  readonly 'id': string;
9095
- readonly 'name': string;
9096
- readonly 'environment': io.flow.common.v0.enums.Environment;
9097
- readonly 'parent'?: io.flow.common.v0.models.OrganizationReference;
9098
- readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
9099
- readonly 'created_at'?: string;
9100
- readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
9101
- readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
9068
+ readonly 'organization_id': string;
9069
+ readonly 'key': string;
9070
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
9071
+ readonly 'region': string;
9072
+ readonly 'authentication': io.flow.payment.internal.v0.models.FiservAuthentication;
9073
+ readonly 'country': string;
9074
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9075
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
9076
+ readonly 'created_at': string;
9077
+ readonly 'updated_at': string;
9102
9078
  }
9103
9079
 
9104
- interface OrganizationDefaults {
9080
+ interface FiservAccountModificationForm {
9081
+ readonly 'discriminator': 'fiserv_account_modification_form';
9082
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
9083
+ readonly 'region': string;
9105
9084
  readonly 'country': string;
9106
- readonly 'base_currency': string;
9107
- readonly 'language': string;
9108
- readonly 'locale': string;
9109
- readonly 'timezone': string;
9085
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9110
9086
  }
9111
9087
 
9112
- interface OrganizationReference {
9113
- readonly 'discriminator': 'organization_reference';
9114
- readonly 'id': string;
9088
+ interface FiservAccountPutForm {
9089
+ readonly 'discriminator': 'fiserv_account_put_form';
9090
+ readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
9091
+ readonly 'region': string;
9092
+ readonly 'authentication': io.flow.payment.internal.v0.models.FiservAuthenticationForm;
9093
+ readonly 'country': string;
9094
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9095
+ readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
9115
9096
  }
9116
9097
 
9117
- interface OrganizationSummary {
9118
- readonly 'id': string;
9119
- readonly 'name': string;
9120
- readonly 'environment': io.flow.common.v0.enums.Environment;
9098
+ interface FiservAuthentication {
9099
+ readonly 'public_key': string;
9100
+ readonly 'secret_key_reference': string;
9121
9101
  }
9122
9102
 
9123
- interface PartnerReference {
9103
+ interface FiservAuthenticationDataReference {
9104
+ readonly 'account_id': string;
9105
+ readonly 'store_id': string;
9106
+ }
9107
+
9108
+ interface FiservAuthenticationForm {
9109
+ readonly 'public_key': string;
9110
+ readonly 'secret_key': string;
9111
+ }
9112
+
9113
+ interface FiservMerchant {
9114
+ readonly 'discriminator': 'fiserv_merchant';
9124
9115
  readonly 'id': string;
9116
+ readonly 'key': string;
9117
+ readonly 'organization_id': string;
9118
+ readonly 'external_id': string;
9119
+ readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
9120
+ readonly 'base_currency': string;
9121
+ readonly 'funding_currency': string;
9122
+ readonly 'country': string;
9123
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9124
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
9125
+ readonly 'created_at': string;
9126
+ readonly 'updated_at': string;
9125
9127
  }
9126
9128
 
9127
- interface Price {
9128
- readonly 'amount': number;
9129
- readonly 'currency': string;
9130
- readonly 'label': string;
9129
+ interface FiservMerchantModificationForm {
9130
+ readonly 'discriminator': 'fiserv_merchant_modification_form';
9131
+ readonly 'external_id': string;
9132
+ readonly 'base_currency': string;
9133
+ readonly 'funding_currency': string;
9134
+ readonly 'country': string;
9135
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9136
+ }
9137
+
9138
+ interface FiservMerchantPutForm {
9139
+ readonly 'discriminator': 'fiserv_merchant_put_form';
9140
+ readonly 'organization_id': string;
9141
+ readonly 'external_id': string;
9142
+ readonly 'base_currency': string;
9143
+ readonly 'funding_currency': string;
9144
+ readonly 'country': string;
9145
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9146
+ readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
9131
9147
  }
9132
9148
 
9133
- interface PriceForm {
9134
- readonly 'amount': number;
9135
- readonly 'currency': string;
9149
+ interface InternalAdyenAuthorizationDetails {
9150
+ readonly 'discriminator': 'internal_adyen_authorization_details';
9151
+ readonly 'adyen_authentication_data': io.flow.payment.internal.v0.models.AdyenAuthenticationDataReference;
9136
9152
  }
9137
9153
 
9138
- interface PriceSourceCatalog {
9139
- readonly 'discriminator': 'catalog';
9140
- readonly 'price': io.flow.common.v0.models.Money;
9154
+ interface InternalAfterpayAuthorizationDetails {
9155
+ readonly 'discriminator': 'internal_afterpay_authorization_details';
9156
+ readonly 'afterpay_authentication_data': io.flow.payment.internal.v0.models.AfterpayAuthenticationDataReference;
9141
9157
  }
9142
9158
 
9143
- interface PriceSourcePriceBook {
9144
- readonly 'discriminator': 'price_book';
9145
- readonly 'price': io.flow.common.v0.models.Money;
9146
- readonly 'includes': io.flow.common.v0.models.IncludedLevies;
9147
- readonly 'price_book_reference': io.flow.common.v0.models.PriceSourcePriceBookReference;
9159
+ interface InternalBitpayAuthorizationDetails {
9160
+ readonly 'discriminator': 'internal_bitpay_authorization_details';
9161
+ readonly 'bitpay_authentication_data': io.flow.payment.internal.v0.models.BitpayAuthenticationDataReference;
9148
9162
  }
9149
9163
 
9150
- interface PriceSourcePriceBookReference {
9151
- readonly 'id': string;
9152
- readonly 'key': string;
9164
+ interface InternalFiservAuthorizationDetails {
9165
+ readonly 'discriminator': 'internal_fiserv_authorization_details';
9166
+ readonly 'fiserv_authentication_data': io.flow.payment.internal.v0.models.FiservAuthenticationDataReference;
9153
9167
  }
9154
9168
 
9155
- interface PriceSourceProvided {
9156
- readonly 'discriminator': 'provided';
9157
- readonly 'price': io.flow.common.v0.models.Money;
9169
+ interface InternalPaymentRequest {
9170
+ readonly 'payment_request': io.flow.payment.gateway.v0.models.PaymentRequest;
9171
+ readonly 'actual_action'?: io.flow.payment.gateway.v0.unions.Action;
9158
9172
  }
9159
9173
 
9160
- interface PriceWithBase {
9161
- readonly 'currency': string;
9162
- readonly 'amount': number;
9163
- readonly 'label': string;
9164
- readonly 'base'?: io.flow.common.v0.models.Price;
9174
+ interface InternalPaypalAuthorizationDetails {
9175
+ readonly 'discriminator': 'internal_paypal_authorization_details';
9176
+ readonly 'paypal_authentication_data': io.flow.payment.internal.v0.models.PaypalAccountReference;
9165
9177
  }
9166
9178
 
9167
- interface RepeatDaily {
9168
- readonly 'discriminator': 'repeat_daily';
9169
- readonly 'interval': number;
9179
+ interface InternalStripeAuthorizationDetails {
9180
+ readonly 'discriminator': 'internal_stripe_authorization_details';
9181
+ readonly 'stripe_authentication_data': io.flow.payment.internal.v0.models.StripeAuthenticationDataReference;
9170
9182
  }
9171
9183
 
9172
- interface RepeatHourly {
9173
- readonly 'discriminator': 'repeat_hourly';
9174
- readonly 'interval': number;
9184
+ interface InternalTransactionDetailsCard {
9185
+ readonly 'type': 'card';
9186
+ readonly 'address_verification_result'?: io.flow.payment.v0.models.AddressVerificationResult;
9187
+ readonly 'cvv_result'?: io.flow.payment.v0.models.CvvResult;
9188
+ readonly 'network_details'?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
9175
9189
  }
9176
9190
 
9177
- interface RepeatMonthly {
9178
- readonly 'discriminator': 'repeat_monthly';
9179
- readonly 'interval': number;
9180
- readonly 'days': number[];
9191
+ interface Key {
9192
+ readonly 'id': string;
9193
+ readonly 'created_at': string;
9181
9194
  }
9182
9195
 
9183
- interface RepeatWeekly {
9184
- readonly 'discriminator': 'repeat_weekly';
9185
- readonly 'interval': number;
9186
- readonly 'days_of_week': io.flow.common.v0.enums.DayOfWeek[];
9196
+ interface KeyReference {
9197
+ readonly 'id': string;
9187
9198
  }
9188
9199
 
9189
- interface Rounding {
9190
- readonly 'type': io.flow.common.v0.enums.RoundingType;
9191
- readonly 'method': io.flow.common.v0.enums.RoundingMethod;
9192
- readonly 'value': number;
9200
+ interface KlarnaAuthorizationParameters {
9201
+ readonly 'discriminator': 'klarna_authorization_parameters';
9202
+ readonly 'client_token': string;
9203
+ readonly 'payment_method_categories': io.flow.payment.internal.v0.models.KlarnaPaymentMethodCategory[];
9193
9204
  }
9194
9205
 
9195
- interface Schedule {
9196
- readonly 'calendar'?: io.flow.common.v0.enums.Calendar;
9197
- readonly 'holiday': io.flow.common.v0.enums.HolidayCalendar;
9198
- readonly 'exception': io.flow.common.v0.models.Exception[];
9199
- readonly 'cutoff'?: string;
9200
- readonly 'min_lead_time'?: number;
9201
- readonly 'max_lead_time'?: number;
9206
+ interface KlarnaPaymentMethodCategory {
9207
+ readonly 'id': string;
9208
+ readonly 'name'?: string;
9209
+ readonly 'standard_asset_urls'?: string;
9210
+ readonly 'descriptive_asset_urls'?: string;
9202
9211
  }
9203
9212
 
9204
- interface SessionReference {
9213
+ interface OnlineAuthorizationCompleted {
9214
+ readonly 'discriminator': 'online_authorization_completed';
9205
9215
  readonly 'id': string;
9216
+ readonly 'organization': string;
9217
+ readonly 'key': string;
9218
+ readonly 'expires_at': string;
9206
9219
  }
9207
9220
 
9208
- interface User {
9209
- readonly 'discriminator': 'user';
9221
+ interface OrganizationPaymentSetting {
9210
9222
  readonly 'id': string;
9211
- readonly 'email'?: string;
9212
- readonly 'name': io.flow.common.v0.models.Name;
9213
- readonly 'status': io.flow.common.v0.enums.UserStatus;
9223
+ readonly 'organization_id': string;
9224
+ readonly 'default_capture_option': io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
9225
+ readonly 'status': io.flow.payment.internal.v0.enums.OrganizationPaymentStatus;
9226
+ readonly 'checkout_domain'?: string;
9227
+ readonly 'merchant_category_code'?: string;
9228
+ readonly 'payment_statement_suffix'?: string;
9229
+ readonly 'payment_statement_condensed'?: string;
9230
+ readonly 'created_at': string;
9231
+ readonly 'updated_at': string;
9214
9232
  }
9215
9233
 
9216
- interface UserReference {
9217
- readonly 'discriminator': 'user_reference';
9234
+ interface OrganizationPaymentSettingForm {
9235
+ readonly 'default_capture_option': io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
9236
+ readonly 'status': io.flow.payment.internal.v0.enums.OrganizationPaymentStatus;
9237
+ readonly 'checkout_domain'?: string;
9238
+ readonly 'merchant_category_code'?: string;
9239
+ readonly 'payment_statement_suffix'?: string;
9240
+ }
9241
+
9242
+ interface OrganizationPaymentSettingVersion {
9218
9243
  readonly 'id': string;
9244
+ readonly 'timestamp': string;
9245
+ readonly 'type': io.flow.common.v0.enums.ChangeType;
9246
+ readonly 'organization_payment_setting': io.flow.payment.internal.v0.models.OrganizationPaymentSetting;
9219
9247
  }
9220
9248
 
9221
- interface Zone {
9222
- readonly 'postals'?: string[];
9223
- readonly 'provinces'?: string[];
9224
- readonly 'country': string;
9249
+ interface Passphrase {
9250
+ readonly 'id': string;
9251
+ readonly 'tribe': io.flow.payment.internal.v0.models.Tribe;
9252
+ readonly 'salt': string;
9253
+ readonly 'iv': string;
9254
+ readonly 'challenge_cipher': string;
9255
+ readonly 'challenge_text': string;
9225
9256
  }
9226
- }
9227
9257
 
9228
- declare namespace io.flow.common.v0.unions {
9229
- type DiscountOffer = (io.flow.common.v0.models.DiscountOfferFixed | io.flow.common.v0.models.DiscountOfferPercent);
9230
- type ExpandableOrganization = (io.flow.common.v0.models.Organization | io.flow.common.v0.models.OrganizationReference);
9231
- type ExpandableUser = (io.flow.common.v0.models.User | io.flow.common.v0.models.UserReference);
9232
- type InputSpecificationLimitation = (io.flow.common.v0.models.InputSpecificationLimitationMax);
9233
- type LogoImage = (io.flow.common.v0.models.LogoImageSvg | io.flow.common.v0.models.LogoImageSetStatic);
9234
- type PriceSource = (io.flow.common.v0.models.PriceSourcePriceBook | io.flow.common.v0.models.PriceSourceCatalog | io.flow.common.v0.models.PriceSourceProvided);
9235
- type RepeatSchedule = (io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly);
9236
- }
9258
+ interface PassphraseForm {
9259
+ readonly 'tribe': string;
9260
+ readonly 'current_password'?: string;
9261
+ readonly 'new_password': string;
9262
+ }
9237
9263
 
9238
- declare namespace io.flow.ftp.v0.enums {
9239
- type FtpFileSource = 'flow' | 'organization';
9240
- }
9264
+ interface PassphraseSummary {
9265
+ readonly 'id': string;
9266
+ readonly 'tribe': io.flow.payment.internal.v0.models.Tribe;
9267
+ }
9241
9268
 
9242
- declare namespace io.flow.ftp.v0.models {
9243
- interface FtpAccount {
9244
- readonly 'server': io.flow.ftp.v0.models.FtpServer;
9245
- readonly 'user': io.flow.ftp.v0.models.FtpUser;
9269
+ interface PaymentMethodDetail {
9270
+ readonly 'method': io.flow.reference.v0.models.PaymentMethod;
9271
+ readonly 'method_options'?: io.flow.payment.internal.v0.models.PaymentMethodOption[];
9246
9272
  }
9247
9273
 
9248
- interface FtpFile {
9274
+ interface PaymentMethodOption {
9249
9275
  readonly 'id': string;
9250
- readonly 'source': io.flow.ftp.v0.enums.FtpFileSource;
9251
9276
  readonly 'name': string;
9252
- readonly 'directory': string;
9253
- readonly 'url': string;
9254
- readonly 'created_at': string;
9277
+ readonly 'logo'?: io.flow.common.v0.unions.LogoImage;
9255
9278
  }
9256
9279
 
9257
- interface FtpFileForm {
9258
- readonly 'url': string;
9259
- readonly 'directory': string;
9260
- readonly 'name'?: string;
9280
+ interface PaymentOrganizationSettings {
9281
+ readonly 'id': string;
9282
+ readonly 'enable_auto_capture': boolean;
9283
+ readonly 'link_capture_to_vcc': boolean;
9284
+ readonly 'purge_ciphers': boolean;
9285
+ readonly 'domain'?: string;
9286
+ readonly 'merchant_category_code'?: number;
9287
+ readonly 'payment_statement_suffix'?: string;
9288
+ readonly 'payment_statement_condensed'?: string;
9261
9289
  }
9262
9290
 
9263
- interface FtpFolder {
9291
+ interface PaymentOrganizationSettingsPutForm {
9292
+ readonly 'enable_auto_capture'?: boolean;
9293
+ readonly 'link_capture_to_vcc'?: boolean;
9294
+ readonly 'purge_ciphers'?: boolean;
9295
+ readonly 'domain'?: string;
9296
+ readonly 'merchant_category_code'?: number;
9297
+ readonly 'payment_statement_suffix'?: string;
9298
+ }
9299
+
9300
+ interface PaypalAccount {
9301
+ readonly 'discriminator': 'paypal_account';
9264
9302
  readonly 'id': string;
9265
- readonly 'path': string;
9266
- readonly 'webhook': boolean;
9267
- readonly 'description'?: string;
9303
+ readonly 'organization_id': string;
9304
+ readonly 'key': string;
9305
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
9306
+ readonly 'country': string;
9307
+ readonly 'authentication': io.flow.payment.internal.v0.models.PaypalAuthentication;
9308
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9309
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
9310
+ readonly 'created_at': string;
9311
+ readonly 'updated_at': string;
9268
9312
  }
9269
9313
 
9270
- interface FtpFolderForm {
9271
- readonly 'path': string;
9272
- readonly 'webhook': boolean;
9273
- readonly 'description'?: string;
9314
+ interface PaypalAccountModificationForm {
9315
+ readonly 'discriminator': 'paypal_account_modification_form';
9316
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
9317
+ readonly 'country': string;
9318
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9274
9319
  }
9275
9320
 
9276
- interface FtpOrganizationSettings {
9277
- readonly 'enabled': boolean;
9278
- readonly 'emails': string[];
9279
- readonly 'account'?: io.flow.ftp.v0.models.FtpAccount;
9321
+ interface PaypalAccountPutForm {
9322
+ readonly 'discriminator': 'paypal_account_put_form';
9323
+ readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
9324
+ readonly 'country': string;
9325
+ readonly 'authentication': io.flow.payment.internal.v0.models.PaypalAuthenticationForm;
9326
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9327
+ readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
9280
9328
  }
9281
9329
 
9282
- interface FtpOrganizationSettingsForm {
9283
- readonly 'enabled': boolean;
9284
- readonly 'emails': string[];
9330
+ interface PaypalAccountReference {
9331
+ readonly 'id': string;
9332
+ readonly 'flow_merchant_id'?: string;
9285
9333
  }
9286
9334
 
9287
- interface FtpServer {
9288
- readonly 'hostname': string;
9335
+ interface PaypalAuthentication {
9336
+ readonly 'username': string;
9337
+ readonly 'password_reference': string;
9289
9338
  }
9290
9339
 
9291
- interface FtpUser {
9340
+ interface PaypalAuthenticationForm {
9292
9341
  readonly 'username': string;
9293
- readonly 'password'?: string;
9342
+ readonly 'password': string;
9294
9343
  }
9295
- }
9296
9344
 
9297
- declare namespace io.flow.billing.reporting.csv.v0.enums {
9298
- type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
9299
- }
9345
+ interface PaypalAuthorizationPayload {
9346
+ readonly 'discriminator': 'paypal_authorization_payload';
9347
+ readonly 'payment_id': string;
9348
+ readonly 'payer_id': string;
9349
+ }
9300
9350
 
9301
- declare namespace io.flow.billing.reporting.csv.v0.models {
9302
- interface FulfillmentShopperBreakdown {
9303
- readonly 'shipping': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9304
- readonly 'fees': io.flow.billing.reporting.csv.v0.models.ReportingShopperFees;
9305
- readonly 'product': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9306
- readonly 'subtotal': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9307
- readonly 'tax': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9308
- readonly 'duty': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9309
- readonly 'discount': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9310
- readonly 'total': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9351
+ interface PaypalMerchant {
9352
+ readonly 'discriminator': 'paypal_merchant';
9353
+ readonly 'id': string;
9354
+ readonly 'key': string;
9355
+ readonly 'organization_id': string;
9356
+ readonly 'external_id': string;
9357
+ readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
9358
+ readonly 'country': string;
9359
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9360
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
9361
+ readonly 'created_at': string;
9362
+ readonly 'updated_at': string;
9311
9363
  }
9312
9364
 
9313
- interface MarkedAsFinal {
9314
- readonly 'products': boolean;
9315
- readonly 'shipping': boolean;
9365
+ interface PaypalMerchantModificationForm {
9366
+ readonly 'discriminator': 'paypal_merchant_modification_form';
9367
+ readonly 'external_id': string;
9368
+ readonly 'country': string;
9369
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9316
9370
  }
9317
9371
 
9318
- interface RefundRecord {
9319
- readonly 'billing_entity': string;
9320
- readonly 'order_id': string;
9321
- readonly 'order_refund_id': string;
9322
- readonly 'refund_created_at_date': string;
9323
- readonly 'reconciliation_date': string;
9324
- readonly 'reconciliation_month': number;
9325
- readonly 'reconciliation_year': number;
9326
- readonly 'order_created_at_date': string;
9327
- readonly 'order_status': string;
9328
- readonly 'b2b_sale': boolean;
9329
- readonly 'a_zero_vat_product_exists': boolean;
9330
- readonly 'payment_merchant_reference'?: string;
9331
- readonly 'merchant_reference'?: string;
9332
- readonly 'merchant_id': string;
9333
- readonly 'merchant_name': string;
9334
- readonly 'destination_country': string;
9335
- readonly 'shopper_country_is_eu': boolean;
9336
- readonly 'order_refund_reason_name': string;
9337
- readonly 'order_refund_status_name': string;
9338
- readonly 'original_ccy': string;
9339
- readonly 'transaction_ccy': string;
9340
- readonly 'total_refund_amount_exc_vat_in_transaction_ccy'?: number;
9341
- readonly 'refund_vat_in_transaction_ccy'?: number;
9342
- readonly 'total_refund_amount_inc_vat_in_transaction_ccy'?: number;
9343
- readonly 'merchant_total_products_refund_amount_exc_vat_in_original_ccy': number;
9344
- readonly 'merchant_shipping_refund_amount_exc_vat_in_transaction_ccy'?: number;
9345
- readonly 'merchant_shipping_refund_amount_exc_vat_in_original_ccy': number;
9346
- readonly 'total_refund_amount_exc_tax_collected_in_shopper_ccy'?: number;
9347
- readonly 'tax_collected_amount_in_shopper_ccy': number;
9348
- readonly 'total_refund_amount_inc_tax_collected_in_shopper_ccy'?: number;
9349
- readonly 'payment_gateway': string;
9350
- readonly 'min_product_customer_vat_rate'?: number;
9351
- readonly 'is_virtual_order': boolean;
9352
- readonly 'is_mixed_virtual_order': boolean;
9353
- readonly 'total_refund_amount_exc_tax_collected_in_usd': number;
9354
- readonly 'tax_collected_amount_in_usd': number;
9355
- readonly 'total_refund_amount_inc_tax_collected_in_usd': number;
9356
- readonly 'total_refund_amount_exc_tax_collected_in_eur': number;
9357
- readonly 'tax_collected_amount_in_eur': number;
9358
- readonly 'total_refund_amount_inc_tax_collected_in_eur': number;
9359
- readonly 'is_wyol_order': boolean;
9360
- readonly 'is_duties_guaranteed': boolean;
9361
- readonly 'invoice_id'?: string;
9362
- readonly 'total_refund_amount_exc_vat_in_entity_ccy': number;
9363
- readonly 'refund_vat_in_entity_ccy': number;
9364
- readonly 'total_refund_amount_inc_vat_in_entity_ccy': number;
9365
- readonly 'merchant_total_products_refund_amount_exc_vat_in_entity_ccy': number;
9366
- readonly 'merchant_shipping_refund_amount_exc_vat_in_entity_ccy': number;
9367
- readonly 'merchant_duties_and_taxes_refund_amount_in_entity_ccy': number;
9368
- readonly 'merchant_service_gesture_amount_exc_vat_in_entity_ccy': number;
9369
- readonly 'customer_prepaid_refund_amount_exc_vat_in_entity_ccy': number;
9370
- readonly 'total_refund_amount_exc_tax_collected_in_entity_ccy': number;
9371
- readonly 'tax_collected_amount_in_entity_ccy': number;
9372
- readonly 'total_refund_amount_inc_tax_collected_in_entity_ccy': number;
9373
- readonly 'conversion_rate_transaction_to_entity_ccy': number;
9374
- readonly 'merchant_order_id': string;
9375
- readonly 'transaction_date': string;
9376
- readonly 'debug_console_order_link': string;
9372
+ interface PaypalMerchantPutForm {
9373
+ readonly 'discriminator': 'paypal_merchant_put_form';
9374
+ readonly 'organization_id': string;
9375
+ readonly 'external_id': string;
9376
+ readonly 'country': string;
9377
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9378
+ readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
9377
9379
  }
9378
9380
 
9379
- interface ReportingAuthorizationReference {
9381
+ interface ProcessorAccountReference {
9380
9382
  readonly 'id': string;
9383
+ readonly 'organization_id': string;
9384
+ readonly 'key': string;
9385
+ readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
9386
+ readonly 'country': string;
9387
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
9388
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9389
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
9381
9390
  }
9382
9391
 
9383
- interface ReportingBusiness {
9384
- readonly 'vat_registration_number': string;
9385
- readonly 'name'?: string;
9392
+ interface ProcessorEntityStatusForm {
9393
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9386
9394
  }
9387
9395
 
9388
- interface ReportingConversionRates {
9389
- readonly 'merchant': number;
9390
- readonly 'entity': number;
9391
- readonly 'usd': number;
9392
- readonly 'eur': number;
9396
+ interface ProcessorMerchantReference {
9397
+ readonly 'id': string;
9398
+ readonly 'organization_id': string;
9399
+ readonly 'key': string;
9400
+ readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
9401
+ readonly 'country': string;
9402
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9403
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
9393
9404
  }
9394
9405
 
9395
- interface ReportingCountry {
9396
- readonly 'code': string;
9397
- readonly 'is_eu': boolean;
9406
+ interface Redirect {
9407
+ readonly 'id': string;
9408
+ readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
9409
+ readonly 'reason': io.flow.payment.internal.v0.enums.RedirectReason;
9398
9410
  }
9399
9411
 
9400
- interface ReportingCurrencies {
9401
- readonly 'transaction': string;
9402
- readonly 'merchant': string;
9403
- readonly 'entity': string;
9412
+ interface RedirectActionCompleted {
9413
+ readonly 'discriminator': 'redirect_action_completed';
9414
+ readonly 'id': string;
9415
+ readonly 'organization': string;
9416
+ readonly 'key': string;
9417
+ readonly 'expires_at': string;
9418
+ readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
9419
+ readonly 'inline_notification_urls'?: io.flow.payment.v0.models.PostPaymentRedirectUrls;
9404
9420
  }
9405
9421
 
9406
- interface ReportingDebug {
9407
- readonly 'console_order_link': string;
9408
- readonly 'allocation_order_totals_delta'?: number;
9409
- readonly 'allocation_order_item_discount_delta'?: number;
9410
- readonly 'missing_item_subsidies'?: io.flow.billing.reporting.csv.v0.models.ReportingDebugMissingSubsidies;
9411
- readonly 'missing_shipping_subsidies'?: io.flow.billing.reporting.csv.v0.models.ReportingDebugMissingSubsidies;
9422
+ interface RoutingAccount {
9423
+ readonly 'discriminator': 'routing_account';
9424
+ readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
9425
+ readonly 'processor_account': io.flow.payment.internal.v0.models.ProcessorAccountReference;
9412
9426
  }
9413
9427
 
9414
- interface ReportingDebugMissingSubsidies {
9415
- readonly 'price'?: boolean;
9416
- readonly 'tax'?: boolean;
9417
- readonly 'duty'?: boolean;
9428
+ interface RoutingMerchant {
9429
+ readonly 'discriminator': 'routing_merchant';
9430
+ readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
9431
+ readonly 'processor_account': io.flow.payment.internal.v0.models.ProcessorAccountReference;
9432
+ readonly 'processor_merchant': io.flow.payment.internal.v0.models.ProcessorMerchantReference;
9418
9433
  }
9419
9434
 
9420
- interface ReportingDestination {
9421
- readonly 'country': io.flow.billing.reporting.csv.v0.models.ReportingCountry;
9422
- readonly 'province'?: io.flow.billing.reporting.csv.v0.models.ReportingProvince;
9435
+ interface RoutingProcessor {
9436
+ readonly 'discriminator': 'routing_processor';
9437
+ readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
9423
9438
  }
9424
9439
 
9425
- interface ReportingEntity {
9440
+ interface StripeAccount {
9441
+ readonly 'discriminator': 'stripe_account';
9426
9442
  readonly 'id': string;
9443
+ readonly 'organization_id': string;
9444
+ readonly 'key': string;
9445
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
9446
+ readonly 'name': string;
9447
+ readonly 'external_id': string;
9448
+ readonly 'country': string;
9449
+ readonly 'authentication': io.flow.payment.internal.v0.models.StripeAuthentication;
9450
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9451
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
9452
+ readonly 'created_at': string;
9453
+ readonly 'updated_at': string;
9427
9454
  }
9428
9455
 
9429
- interface ReportingFulfillment {
9430
- readonly 'id': string;
9431
- readonly 'sequence_number': number;
9432
- readonly 'fulfilled_at': string;
9433
- readonly 'completes_order': boolean;
9434
- readonly 'payment': io.flow.billing.reporting.csv.v0.models.ReportingFulfillmentPayment;
9435
- readonly 'value': io.flow.billing.reporting.csv.v0.models.FulfillmentShopperBreakdown;
9436
- readonly 'dispatch_country'?: io.flow.billing.reporting.csv.v0.models.ReportingCountry;
9437
- readonly 'destination': io.flow.billing.reporting.csv.v0.models.ReportingDestination;
9438
- readonly 'carrier'?: string;
9439
- readonly 'is': io.flow.billing.reporting.csv.v0.models.ReportingFulfillmentIs;
9440
- readonly 'has': io.flow.billing.reporting.csv.v0.models.ReportingFulfillmentHas;
9441
- readonly 'fx': io.flow.billing.reporting.csv.v0.models.ReportingFx;
9442
- readonly 'business'?: io.flow.billing.reporting.csv.v0.models.ReportingBusiness;
9456
+ interface StripeAccountModificationForm {
9457
+ readonly 'discriminator': 'stripe_account_modification_form';
9458
+ readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
9459
+ readonly 'name': string;
9460
+ readonly 'external_id': string;
9461
+ readonly 'country': string;
9462
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9443
9463
  }
9444
9464
 
9445
- interface ReportingFulfillmentHas {
9446
- readonly 'zero_vat_product': boolean;
9465
+ interface StripeAccountPutForm {
9466
+ readonly 'discriminator': 'stripe_account_put_form';
9467
+ readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
9468
+ readonly 'name': string;
9469
+ readonly 'external_id': string;
9470
+ readonly 'country': string;
9471
+ readonly 'authentication': io.flow.payment.internal.v0.models.StripeAuthenticationForm;
9472
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9473
+ readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
9447
9474
  }
9448
9475
 
9449
- interface ReportingFulfillmentIs {
9450
- readonly 'replacement': boolean;
9451
- readonly 'virtual': io.flow.billing.reporting.csv.v0.enums.ReportingFulfillmentIsVirtual;
9452
- readonly 'duties_guaranteed': boolean;
9453
- readonly 'wyol': boolean;
9454
- readonly 'b2b': boolean;
9455
- readonly 'domestic': boolean;
9476
+ interface StripeAuthentication {
9477
+ readonly 'public_key': string;
9478
+ readonly 'secret_key_reference': string;
9456
9479
  }
9457
9480
 
9458
- interface ReportingFulfillmentPayment {
9459
- readonly 'metadata'?: io.flow.billing.reporting.csv.v0.models.ReportingFulfillmentPaymentMetadata;
9460
- readonly 'psp': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9461
- readonly 'credit': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9462
- readonly 'total': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9481
+ interface StripeAuthenticationDataReference {
9482
+ readonly 'id': string;
9463
9483
  }
9464
9484
 
9465
- interface ReportingFulfillmentPaymentMetadata {
9466
- readonly 'gateway': io.flow.payment.internal.v0.enums.Processor;
9467
- readonly 'method': string;
9468
- readonly 'psp_reference'?: string;
9469
- readonly 'authorization'?: io.flow.billing.reporting.csv.v0.models.ReportingAuthorizationReference;
9470
- readonly 'settlement_date': string;
9471
- readonly 'additional_authorizations'?: io.flow.billing.reporting.csv.v0.models.ReportingFulfillmentPaymentMetadataAdditionalAuthorizations;
9485
+ interface StripeAuthenticationForm {
9486
+ readonly 'public_key': string;
9487
+ readonly 'secret_key': string;
9472
9488
  }
9473
9489
 
9474
- interface ReportingFulfillmentPaymentMetadataAdditionalAuthorizations {
9475
- readonly 'ids': string;
9490
+ interface StripeMerchant {
9491
+ readonly 'discriminator': 'stripe_merchant';
9492
+ readonly 'id': string;
9493
+ readonly 'key': string;
9494
+ readonly 'organization_id': string;
9495
+ readonly 'external_id': string;
9496
+ readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
9497
+ readonly 'name': string;
9498
+ readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
9499
+ readonly 'country': string;
9500
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9501
+ readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
9502
+ readonly 'created_at': string;
9503
+ readonly 'updated_at': string;
9476
9504
  }
9477
9505
 
9478
- interface ReportingFx {
9479
- readonly 'shipping': io.flow.billing.reporting.csv.v0.models.ReportingUsd;
9480
- readonly 'fees': io.flow.billing.reporting.csv.v0.models.ReportingUsd;
9481
- readonly 'product': io.flow.billing.reporting.csv.v0.models.ReportingUsd;
9482
- readonly 'tax': io.flow.billing.reporting.csv.v0.models.ReportingUsd;
9483
- readonly 'duty': io.flow.billing.reporting.csv.v0.models.ReportingUsd;
9484
- readonly 'total': io.flow.billing.reporting.csv.v0.models.ReportingUsd;
9506
+ interface StripeMerchantForm {
9507
+ readonly 'discriminator': 'stripe_merchant_form';
9508
+ readonly 'key'?: string;
9509
+ readonly 'organization_id': string;
9510
+ readonly 'name': string;
9511
+ readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
9512
+ readonly 'country': string;
9513
+ readonly 'payment_statement': string;
9514
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9485
9515
  }
9486
9516
 
9487
- interface ReportingMerchantFees {
9488
- readonly 'duty_guarantee': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9489
- readonly 'mor': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9490
- readonly 'fraud': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9491
- readonly 'fx': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9492
- readonly 'processing': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9493
- readonly 'rate_lock': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9494
- readonly 'transfer': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9517
+ interface StripeMerchantModificationForm {
9518
+ readonly 'discriminator': 'stripe_merchant_modification_form';
9519
+ readonly 'external_id': string;
9520
+ readonly 'name': string;
9521
+ readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
9522
+ readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9523
+ readonly 'country': string;
9495
9524
  }
9496
9525
 
9497
- interface ReportingMerchantSubsidies {
9498
- readonly 'shipping': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9499
- readonly 'tax': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9500
- readonly 'duty': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9501
- readonly 'ccf': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9526
+ interface StripeMerchantPutForm {
9527
+ readonly 'discriminator': 'stripe_merchant_put_form';
9528
+ readonly 'organization_id': string;
9529
+ readonly 'external_id': string;
9530
+ readonly 'name': string;
9531
+ readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
9532
+ readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
9533
+ readonly 'country': string;
9534
+ readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
9502
9535
  }
9503
9536
 
9504
- interface ReportingMerchantTransactions {
9505
- readonly 'adjustment': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9506
- readonly 'reversal': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9507
- readonly 'tax': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9508
- readonly 'duty': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9509
- readonly 'freight': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9537
+ interface Tribe {
9538
+ readonly 'id': string;
9539
+ readonly 'description': string;
9510
9540
  }
9511
9541
 
9512
- interface ReportingMonetaryValue {
9513
- readonly 'transaction': number;
9514
- readonly 'merchant': number;
9515
- readonly 'entity': number;
9516
- readonly 'usd': number;
9517
- readonly 'eur': number;
9542
+ interface VirtualCardProvider {
9543
+ readonly 'id': string;
9544
+ readonly 'organization_id': string;
9545
+ readonly 'provider': string;
9546
+ readonly 'attributes'?: Record<string, string>;
9547
+ readonly 'created_at': string;
9548
+ readonly 'updated_at': string;
9518
9549
  }
9550
+ }
9519
9551
 
9520
- interface ReportingOrderSummary {
9521
- readonly 'id': string;
9522
- readonly 'number': string;
9523
- readonly 'submitted_at': string;
9552
+ declare namespace io.flow.payment.internal.v0.unions {
9553
+ type AuthorizationPayload = (io.flow.payment.internal.v0.models.ApplePayAuthorizationPayload | io.flow.payment.internal.v0.models.PaypalAuthorizationPayload);
9554
+ type InlineAuthorizationParameters = (io.flow.payment.internal.v0.models.KlarnaAuthorizationParameters);
9555
+ type InternalAuthorizationDetails = (io.flow.payment.internal.v0.models.InternalPaypalAuthorizationDetails | io.flow.payment.internal.v0.models.InternalBitpayAuthorizationDetails | io.flow.payment.internal.v0.models.InternalStripeAuthorizationDetails | io.flow.payment.internal.v0.models.InternalAdyenAuthorizationDetails | io.flow.payment.internal.v0.models.InternalAfterpayAuthorizationDetails | io.flow.payment.internal.v0.models.InternalFiservAuthorizationDetails);
9556
+ type InternalRefundForm = (io.flow.payment.internal.v0.models.AdyenRefundForm);
9557
+ type InternalTransactionDetails = (io.flow.payment.internal.v0.models.InternalTransactionDetailsCard);
9558
+ type PaymentRedirect = (io.flow.payment.internal.v0.models.OnlineAuthorizationCompleted | io.flow.payment.internal.v0.models.RedirectActionCompleted);
9559
+ type ProcessorAccount = (io.flow.payment.internal.v0.models.StripeAccount | io.flow.payment.internal.v0.models.AdyenAccount | io.flow.payment.internal.v0.models.PaypalAccount | io.flow.payment.internal.v0.models.AfterpayAccount | io.flow.payment.internal.v0.models.BitpayAccount | io.flow.payment.internal.v0.models.FiservAccount | io.flow.payment.internal.v0.models.CryptoAccount);
9560
+ type ProcessorAccountModificationForm = (io.flow.payment.internal.v0.models.StripeAccountModificationForm | io.flow.payment.internal.v0.models.AdyenAccountModificationForm | io.flow.payment.internal.v0.models.PaypalAccountModificationForm | io.flow.payment.internal.v0.models.AfterpayAccountModificationForm | io.flow.payment.internal.v0.models.BitpayAccountModificationForm | io.flow.payment.internal.v0.models.FiservAccountModificationForm | io.flow.payment.internal.v0.models.CryptoAccountModificationForm);
9561
+ type ProcessorAccountPutForm = (io.flow.payment.internal.v0.models.StripeAccountPutForm | io.flow.payment.internal.v0.models.AdyenAccountPutForm | io.flow.payment.internal.v0.models.PaypalAccountPutForm | io.flow.payment.internal.v0.models.AfterpayAccountPutForm | io.flow.payment.internal.v0.models.BitpayAccountPutForm | io.flow.payment.internal.v0.models.FiservAccountPutForm | io.flow.payment.internal.v0.models.CryptoAccountPutForm);
9562
+ type ProcessorMerchant = (io.flow.payment.internal.v0.models.StripeMerchant | io.flow.payment.internal.v0.models.AdyenMerchant | io.flow.payment.internal.v0.models.FiservMerchant | io.flow.payment.internal.v0.models.PaypalMerchant);
9563
+ type ProcessorMerchantForm = (io.flow.payment.internal.v0.models.StripeMerchantForm);
9564
+ type ProcessorMerchantModificationForm = (io.flow.payment.internal.v0.models.StripeMerchantModificationForm | io.flow.payment.internal.v0.models.AdyenMerchantModificationForm | io.flow.payment.internal.v0.models.FiservMerchantModificationForm | io.flow.payment.internal.v0.models.PaypalMerchantModificationForm);
9565
+ type ProcessorMerchantPutForm = (io.flow.payment.internal.v0.models.StripeMerchantPutForm | io.flow.payment.internal.v0.models.AdyenMerchantPutForm | io.flow.payment.internal.v0.models.FiservMerchantPutForm | io.flow.payment.internal.v0.models.PaypalMerchantPutForm);
9566
+ type RoutingEntity = (io.flow.payment.internal.v0.models.RoutingProcessor | io.flow.payment.internal.v0.models.RoutingAccount | io.flow.payment.internal.v0.models.RoutingMerchant);
9567
+ }
9568
+
9569
+ declare namespace io.flow.ftp.v0.enums {
9570
+ type FtpFileSource = 'flow' | 'organization';
9571
+ }
9572
+
9573
+ declare namespace io.flow.ftp.v0.models {
9574
+ interface FtpAccount {
9575
+ readonly 'server': io.flow.ftp.v0.models.FtpServer;
9576
+ readonly 'user': io.flow.ftp.v0.models.FtpUser;
9524
9577
  }
9525
9578
 
9526
- interface ReportingOrganizationSummary {
9579
+ interface FtpFile {
9527
9580
  readonly 'id': string;
9581
+ readonly 'source': io.flow.ftp.v0.enums.FtpFileSource;
9528
9582
  readonly 'name': string;
9583
+ readonly 'directory': string;
9584
+ readonly 'url': string;
9585
+ readonly 'created_at': string;
9529
9586
  }
9530
9587
 
9531
- interface ReportingProvince {
9532
- readonly 'code'?: string;
9533
- readonly 'name': string;
9588
+ interface FtpFileForm {
9589
+ readonly 'url': string;
9590
+ readonly 'directory': string;
9591
+ readonly 'name'?: string;
9592
+ }
9593
+
9594
+ interface FtpFolder {
9595
+ readonly 'id': string;
9596
+ readonly 'path': string;
9597
+ readonly 'webhook': boolean;
9598
+ readonly 'description'?: string;
9534
9599
  }
9535
9600
 
9536
- interface ReportingReconciliation {
9537
- readonly 'date': string;
9538
- readonly 'month': number;
9539
- readonly 'year': number;
9601
+ interface FtpFolderForm {
9602
+ readonly 'path': string;
9603
+ readonly 'webhook': boolean;
9604
+ readonly 'description'?: string;
9540
9605
  }
9541
9606
 
9542
- interface ReportingShopperFees {
9543
- readonly 'fuel': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9544
- readonly 'remote_area': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9545
- readonly 'oversize': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9546
- readonly 'ccf': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9547
- readonly 'emergency': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9548
- readonly 'peak': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
9607
+ interface FtpOrganizationSettings {
9608
+ readonly 'enabled': boolean;
9609
+ readonly 'emails': string[];
9610
+ readonly 'account'?: io.flow.ftp.v0.models.FtpAccount;
9549
9611
  }
9550
9612
 
9551
- interface ReportingUsd {
9552
- readonly 'usd': number;
9613
+ interface FtpOrganizationSettingsForm {
9614
+ readonly 'enabled': boolean;
9615
+ readonly 'emails': string[];
9553
9616
  }
9554
9617
 
9555
- interface ReportingVatRemittance {
9556
- readonly 'currency': string;
9557
- readonly 'rate': io.flow.billing.reporting.csv.v0.models.ReportingVatRemittanceRate;
9618
+ interface FtpServer {
9619
+ readonly 'hostname': string;
9558
9620
  }
9559
9621
 
9560
- interface ReportingVatRemittanceRate {
9561
- readonly 'entity': number;
9622
+ interface FtpUser {
9623
+ readonly 'username': string;
9624
+ readonly 'password'?: string;
9562
9625
  }
9626
+ }
9563
9627
 
9564
- interface ReportingVendor {
9628
+ declare namespace io.flow.billing.reporting.csv.v0.models {
9629
+ interface ReportingFulfillment {
9565
9630
  readonly 'id': string;
9631
+ readonly 'sequence_number': number;
9632
+ readonly 'fulfilled_at': string;
9633
+ readonly 'completes_order': boolean;
9634
+ readonly 'payment': io.flow.billing.reporting.v0.models.ReportingPayment;
9635
+ readonly 'value': io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
9636
+ readonly 'dispatch_country'?: io.flow.billing.reporting.v0.models.ReportingCountry;
9637
+ readonly 'destination': io.flow.billing.reporting.v0.models.ReportingDestination;
9638
+ readonly 'carrier'?: string;
9639
+ readonly 'is': io.flow.billing.reporting.v0.models.ReportingFulfillmentIs;
9640
+ readonly 'has': io.flow.billing.reporting.v0.models.ReportingFulfillmentHas;
9641
+ readonly 'fx': io.flow.billing.reporting.v0.models.ReportingFx;
9642
+ readonly 'business'?: io.flow.billing.reporting.v0.models.ReportingBusiness;
9566
9643
  }
9567
9644
 
9568
9645
  interface SalesRecord {
9569
9646
  readonly 'id': string;
9570
- readonly 'parent'?: io.flow.billing.reporting.csv.v0.models.SalesRecordReference;
9571
- readonly 'merchant': io.flow.billing.reporting.csv.v0.models.ReportingOrganizationSummary;
9572
- readonly 'order': io.flow.billing.reporting.csv.v0.models.ReportingOrderSummary;
9573
- readonly 'entity': io.flow.billing.reporting.csv.v0.models.ReportingEntity;
9574
- readonly 'vendor': io.flow.billing.reporting.csv.v0.models.ReportingVendor;
9575
- readonly 'currencies': io.flow.billing.reporting.csv.v0.models.ReportingCurrencies;
9576
- readonly 'conversion_rate': io.flow.billing.reporting.csv.v0.models.ReportingConversionRates;
9647
+ readonly 'parent'?: io.flow.billing.reporting.v0.models.RecordReference;
9648
+ readonly 'merchant': io.flow.billing.reporting.v0.models.ReportingOrganizationSummary;
9649
+ readonly 'order': io.flow.billing.reporting.v0.models.ReportingOrderSummary;
9650
+ readonly 'entity': io.flow.billing.reporting.v0.models.ReportingEntity;
9651
+ readonly 'vendor': io.flow.billing.reporting.v0.models.ReportingVendor;
9652
+ readonly 'currencies': io.flow.billing.reporting.v0.models.ReportingCurrencies;
9653
+ readonly 'conversion_rate': io.flow.billing.reporting.v0.models.ReportingConversionRates;
9654
+ readonly 'reconciliation': io.flow.billing.reporting.v0.models.ReportingReconciliation;
9655
+ readonly 'merchant_subsidies': io.flow.billing.reporting.v0.models.ReportingMerchantSubsidies;
9656
+ readonly 'merchant_fees': io.flow.billing.reporting.v0.models.ReportingMerchantFees;
9657
+ readonly 'merchant_transactions': io.flow.billing.reporting.v0.models.ReportingMerchantTransactions;
9658
+ readonly 'debug': io.flow.billing.reporting.v0.models.ReportingDebug;
9577
9659
  readonly 'fulfillment': io.flow.billing.reporting.csv.v0.models.ReportingFulfillment;
9578
- readonly 'reconciliation': io.flow.billing.reporting.csv.v0.models.ReportingReconciliation;
9579
- readonly 'marked_as_final': io.flow.billing.reporting.csv.v0.models.MarkedAsFinal;
9580
- readonly 'merchant_subsidies': io.flow.billing.reporting.csv.v0.models.ReportingMerchantSubsidies;
9581
- readonly 'merchant_fees': io.flow.billing.reporting.csv.v0.models.ReportingMerchantFees;
9582
- readonly 'merchant_transactions': io.flow.billing.reporting.csv.v0.models.ReportingMerchantTransactions;
9583
- readonly 'vat_remittance': io.flow.billing.reporting.csv.v0.models.ReportingVatRemittance;
9584
- readonly 'debug': io.flow.billing.reporting.csv.v0.models.ReportingDebug;
9585
- }
9586
-
9587
- interface SalesRecordReference {
9588
- readonly 'id': string;
9660
+ readonly 'vat_remittance': io.flow.billing.reporting.v0.models.ReportingVatRemittance;
9661
+ readonly 'marked_as_final': io.flow.billing.reporting.v0.models.MarkedAsFinal;
9589
9662
  }
9590
9663
  }
9591
9664
 
@@ -10814,6 +10887,12 @@ declare namespace io.flow.experience.v0.unions {
10814
10887
  declare namespace io.flow.payment.request.bundle.v0.models {
10815
10888
  interface PaymentRequestBilling {
10816
10889
  readonly 'fees': io.flow.payment.request.bundle.v0.models.PaymentRequestBillingFees;
10890
+ readonly 'currency_rate'?: io.flow.payment.request.bundle.v0.models.PaymentRequestBillingCurrencyRate;
10891
+ }
10892
+
10893
+ interface PaymentRequestBillingCurrencyRate {
10894
+ readonly 'base_amount': number;
10895
+ readonly 'base_currency': string;
10817
10896
  }
10818
10897
 
10819
10898
  interface PaymentRequestBillingFees {
@@ -11748,6 +11827,7 @@ declare namespace io.flow.price.v0.unions {
11748
11827
  }
11749
11828
 
11750
11829
  declare namespace io.flow.trueup.v0.enums {
11830
+ type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
11751
11831
  type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
11752
11832
  }
11753
11833
 
@@ -12847,10 +12927,11 @@ declare namespace io.flow.billing.internal.v0.enums {
12847
12927
  type AdjustmentTransactionType = 'adjustment' | 'reversal';
12848
12928
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
12849
12929
  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';
12850
- type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'all';
12930
+ type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
12851
12931
  type BillingStatementBatchFileKey = 'summary';
12852
12932
  type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
12853
- type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup';
12933
+ type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
12934
+ type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
12854
12935
  type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
12855
12936
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
12856
12937
  type DisputeTransactionType = 'adjustment' | 'dispute';
@@ -12863,7 +12944,7 @@ declare namespace io.flow.billing.internal.v0.enums {
12863
12944
  type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
12864
12945
  type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
12865
12946
  type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
12866
- type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event' | 'credit_and_subsidy' | 'negative_balance_guarantee';
12947
+ type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'return_refund' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'refund_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event' | 'credit_and_subsidy' | 'negative_balance_guarantee';
12867
12948
  type ResponsibleParty = 'flow' | 'organization';
12868
12949
  type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
12869
12950
  type SubscriptionFrequency = 'yearly' | 'monthly';
@@ -13158,6 +13239,7 @@ declare namespace io.flow.billing.internal.v0.models {
13158
13239
  readonly 'tax': io.flow.common.v0.models.Price;
13159
13240
  readonly 'duty': io.flow.common.v0.models.Price;
13160
13241
  readonly 'trueup': io.flow.common.v0.models.Price;
13242
+ readonly 'carrier_charge': io.flow.common.v0.models.Price;
13161
13243
  readonly 'ending_balance': io.flow.common.v0.models.Price;
13162
13244
  }
13163
13245
 
@@ -13172,6 +13254,19 @@ declare namespace io.flow.billing.internal.v0.models {
13172
13254
  readonly 'statement'?: io.flow.billing.internal.v0.models.BillingStatementReference;
13173
13255
  }
13174
13256
 
13257
+ interface CarrierChargeTransaction {
13258
+ readonly 'discriminator': 'carrier_charge_transaction';
13259
+ readonly 'order': io.flow.billing.internal.v0.models.BillingOrderTransactionOrderReference;
13260
+ readonly 'id': string;
13261
+ readonly 'type': io.flow.billing.internal.v0.enums.BillingTransactionType;
13262
+ readonly 'status': io.flow.billing.internal.v0.enums.BillingTransactionStatus;
13263
+ readonly 'posted_at'?: string;
13264
+ readonly 'value': io.flow.common.v0.models.Price;
13265
+ readonly 'description': string;
13266
+ readonly 'statement'?: io.flow.billing.internal.v0.models.BillingStatementReference;
13267
+ readonly 'created_at': string;
13268
+ }
13269
+
13175
13270
  interface ChannelAccount {
13176
13271
  readonly 'channel': io.flow.common.v0.models.ChannelReference;
13177
13272
  readonly 'id': string;
@@ -13878,7 +13973,7 @@ declare namespace io.flow.billing.internal.v0.unions {
13878
13973
  type PlatformFee = (io.flow.billing.internal.v0.models.PlatformFeePause | io.flow.billing.internal.v0.models.PlatformFeeFlat | io.flow.billing.internal.v0.models.PlatformFeePercentage | io.flow.billing.internal.v0.models.PlatformFeeDisabled);
13879
13974
  type ProofOfPosting = (io.flow.billing.internal.v0.models.ProofOfPostingFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingShippingNotification | io.flow.billing.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.billing.internal.v0.models.ProofOfPostingOrderCombinedShipment);
13880
13975
  type SpotRateMetadata = (io.flow.billing.internal.v0.models.SpotRateMetadataIdentity | io.flow.billing.internal.v0.models.SpotRateMetadataRate);
13881
- type Transaction = (io.flow.billing.internal.v0.models.InvoiceTransaction | io.flow.billing.internal.v0.models.ManualTransaction | io.flow.billing.internal.v0.models.ProcessingTransaction | io.flow.billing.internal.v0.models.SubscriptionTransaction | io.flow.billing.internal.v0.models.TaxRemittanceTransaction | io.flow.billing.internal.v0.models.TransferTransaction | io.flow.billing.internal.v0.models.VirtualCardTransaction | io.flow.billing.internal.v0.models.DisputeTransaction | io.flow.billing.internal.v0.models.ChannelTransaction | io.flow.billing.internal.v0.models.LabelTransaction | io.flow.billing.internal.v0.models.OrderTransaction | io.flow.billing.internal.v0.models.ChannelBilledTransaction | io.flow.billing.internal.v0.models.TaxTransaction | io.flow.billing.internal.v0.models.DutyTransaction | io.flow.billing.internal.v0.models.TrueupTransaction);
13976
+ type Transaction = (io.flow.billing.internal.v0.models.InvoiceTransaction | io.flow.billing.internal.v0.models.ManualTransaction | io.flow.billing.internal.v0.models.ProcessingTransaction | io.flow.billing.internal.v0.models.SubscriptionTransaction | io.flow.billing.internal.v0.models.TaxRemittanceTransaction | io.flow.billing.internal.v0.models.TransferTransaction | io.flow.billing.internal.v0.models.VirtualCardTransaction | io.flow.billing.internal.v0.models.DisputeTransaction | io.flow.billing.internal.v0.models.ChannelTransaction | io.flow.billing.internal.v0.models.LabelTransaction | io.flow.billing.internal.v0.models.OrderTransaction | io.flow.billing.internal.v0.models.ChannelBilledTransaction | io.flow.billing.internal.v0.models.TaxTransaction | io.flow.billing.internal.v0.models.DutyTransaction | io.flow.billing.internal.v0.models.TrueupTransaction | io.flow.billing.internal.v0.models.CarrierChargeTransaction);
13882
13977
  }
13883
13978
 
13884
13979
  declare namespace io.flow.billing.v0.enums {
@@ -13887,7 +13982,7 @@ declare namespace io.flow.billing.v0.enums {
13887
13982
  type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
13888
13983
  type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
13889
13984
  type StatementAttachmentType = 'csv';
13890
- type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
13985
+ type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'carrier_charge' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
13891
13986
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
13892
13987
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
13893
13988
  }
@@ -14143,6 +14238,13 @@ declare namespace io.flow.billing.v0.models {
14143
14238
  readonly 'updated_at': string;
14144
14239
  }
14145
14240
 
14241
+ interface TransactionMetadataCarrierCharge {
14242
+ readonly 'discriminator': 'carrier_charge';
14243
+ readonly 'reason': io.flow.trueup.v0.enums.CarrierChargeReason;
14244
+ readonly 'carrier_id': string;
14245
+ readonly 'carrier_tracking_number': string;
14246
+ }
14247
+
14146
14248
  interface TransactionMetadataChannel {
14147
14249
  readonly 'discriminator': 'channel';
14148
14250
  readonly 'method': string;
@@ -14230,7 +14332,7 @@ declare namespace io.flow.billing.v0.unions {
14230
14332
  type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
14231
14333
  type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
14232
14334
  type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
14233
- type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataManual);
14335
+ type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataCarrierCharge | io.flow.billing.v0.models.TransactionMetadataManual);
14234
14336
  }
14235
14337
 
14236
14338
  declare namespace io.flow.harmonization.v0.enums {
@@ -15889,16 +15991,16 @@ declare namespace io.flow.internal.v0.enums {
15889
15991
  type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
15890
15992
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
15891
15993
  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';
15892
- type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days';
15893
- type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'all';
15994
+ type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'negative_balance_number_accounts' | 'negative_balance_total' | 'negative_balance_single_account_max';
15995
+ type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
15894
15996
  type BillingStatementBatchFileKey = 'summary';
15895
15997
  type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
15896
- type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup';
15998
+ type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
15897
15999
  type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
15898
16000
  type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
15899
16001
  type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
15900
- type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
15901
- type CarrierChargeOtherReason = 'return_to_origin' | 'other';
16002
+ type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
16003
+ type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
15902
16004
  type CarrierLabelGenerationMethod = 'direct' | 'easypost';
15903
16005
  type CarrierValidationStatus = 'success' | 'error';
15904
16006
  type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
@@ -15909,6 +16011,8 @@ declare namespace io.flow.internal.v0.enums {
15909
16011
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
15910
16012
  type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
15911
16013
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
16014
+ type ChargeEstimateSource = 'global-e' | 'shopify';
16015
+ type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery';
15912
16016
  type ChargebackPaymentStatus = 'captured' | 'refunded';
15913
16017
  type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
15914
16018
  type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
@@ -16014,7 +16118,7 @@ declare namespace io.flow.internal.v0.enums {
16014
16118
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
16015
16119
  type EmptyAttribute = 'irrelevant';
16016
16120
  type ErpFileType = 'vendor';
16017
- 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' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'merchant_upserted' | 'merchant_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' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_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' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | '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_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_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' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
16121
+ 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' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'merchant_upserted' | 'merchant_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' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_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' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | '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_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_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' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
16018
16122
  type ExperienceImportType = 'experience_with_settings';
16019
16123
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
16020
16124
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -16069,7 +16173,7 @@ declare namespace io.flow.internal.v0.enums {
16069
16173
  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';
16070
16174
  type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
16071
16175
  type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
16072
- type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
16176
+ type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'category_constraints' | 'miscellaneous';
16073
16177
  type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
16074
16178
  type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
16075
16179
  type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
@@ -16104,7 +16208,7 @@ declare namespace io.flow.internal.v0.enums {
16104
16208
  type PromptCheckoutDisplayPosition = 'email' | 'submission';
16105
16209
  type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
16106
16210
  type PromptTarget = 'browse' | 'checkout';
16107
- type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event' | 'credit_and_subsidy' | 'negative_balance_guarantee';
16211
+ type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'return_refund' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'refund_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event' | 'credit_and_subsidy' | 'negative_balance_guarantee';
16108
16212
  type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
16109
16213
  type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
16110
16214
  type RateSource = 'calculated' | 'market';
@@ -16114,11 +16218,13 @@ declare namespace io.flow.internal.v0.enums {
16114
16218
  type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
16115
16219
  type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
16116
16220
  type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account';
16221
+ type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
16117
16222
  type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
16118
16223
  type ResponsibleParty = 'flow' | 'organization';
16119
16224
  type RestrictionAction = 'prohibited' | 'restricted';
16120
16225
  type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
16121
16226
  type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
16227
+ type RevenueRecordType = 'sales' | 'refund';
16122
16228
  type RiskCheck = 'three_d_secure';
16123
16229
  type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
16124
16230
  type Scope = 'organization' | 'global';
@@ -16129,7 +16235,7 @@ declare namespace io.flow.internal.v0.enums {
16129
16235
  type ShopifyGrantStatus = 'pass' | 'fail';
16130
16236
  type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
16131
16237
  type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
16132
- type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'product_restriction_result' | 'product_sync';
16238
+ type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations';
16133
16239
  type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
16134
16240
  type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
16135
16241
  type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
@@ -17201,6 +17307,7 @@ declare namespace io.flow.internal.v0.models {
17201
17307
  readonly 'tax': io.flow.common.v0.models.Price;
17202
17308
  readonly 'duty': io.flow.common.v0.models.Price;
17203
17309
  readonly 'trueup': io.flow.common.v0.models.Price;
17310
+ readonly 'carrier_charge': io.flow.common.v0.models.Price;
17204
17311
  readonly 'ending_balance': io.flow.common.v0.models.Price;
17205
17312
  }
17206
17313
 
@@ -17643,7 +17750,7 @@ declare namespace io.flow.internal.v0.models {
17643
17750
  interface CarrierChargeFormOther {
17644
17751
  readonly 'discriminator': 'other';
17645
17752
  readonly 'id': string;
17646
- readonly 'reason': io.flow.internal.v0.enums.CarrierChargeOtherReason;
17753
+ readonly 'reason': io.flow.trueup.v0.enums.CarrierChargeReason;
17647
17754
  readonly 'organization_id': string;
17648
17755
  readonly 'order_number': string;
17649
17756
  readonly 'carrier_id': string;
@@ -17658,6 +17765,19 @@ declare namespace io.flow.internal.v0.models {
17658
17765
  readonly 'attributes'?: Record<string, string>;
17659
17766
  }
17660
17767
 
17768
+ interface CarrierChargeTransaction {
17769
+ readonly 'discriminator': 'carrier_charge_transaction';
17770
+ readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
17771
+ readonly 'id': string;
17772
+ readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
17773
+ readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
17774
+ readonly 'posted_at'?: string;
17775
+ readonly 'value': io.flow.common.v0.models.Price;
17776
+ readonly 'description': string;
17777
+ readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
17778
+ readonly 'created_at': string;
17779
+ }
17780
+
17661
17781
  interface CarrierChargeUnits {
17662
17782
  readonly 'currency': string;
17663
17783
  readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
@@ -17983,6 +18103,11 @@ declare namespace io.flow.internal.v0.models {
17983
18103
  readonly 'channel_order_acceptance': io.flow.internal.v0.models.ChannelOrderAcceptance;
17984
18104
  }
17985
18105
 
18106
+ interface ChannelOrderAcceptanceDetails {
18107
+ readonly 'order_acceptance': io.flow.internal.v0.models.ChannelOrderAcceptance;
18108
+ readonly 'external_order': any/*object*/;
18109
+ }
18110
+
17986
18111
  interface ChannelOrderAcceptanceForm {
17987
18112
  readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
17988
18113
  }
@@ -18098,6 +18223,12 @@ declare namespace io.flow.internal.v0.models {
18098
18223
  readonly 'channel_transaction': io.flow.internal.v0.models.ChannelTransaction;
18099
18224
  }
18100
18225
 
18226
+ interface ChargeInput {
18227
+ readonly 'charge_input_code': io.flow.internal.v0.enums.ChargeInputType;
18228
+ readonly 'price': io.flow.common.v0.models.Money;
18229
+ readonly 'charge_input_source': io.flow.internal.v0.enums.ChargeEstimateSource;
18230
+ }
18231
+
18101
18232
  interface Chargeback {
18102
18233
  readonly 'id': string;
18103
18234
  readonly 'key': string;
@@ -22545,6 +22676,17 @@ declare namespace io.flow.internal.v0.models {
22545
22676
  readonly 'items': io.flow.order.management.v0.models.FulfillmentItem[];
22546
22677
  }
22547
22678
 
22679
+ interface FulfillmentShopperBreakdown {
22680
+ readonly 'shipping': io.flow.internal.v0.models.ReportingMonetaryValue;
22681
+ readonly 'fees': io.flow.internal.v0.models.ReportingShopperFees;
22682
+ readonly 'product': io.flow.internal.v0.models.ReportingMonetaryValue;
22683
+ readonly 'subtotal': io.flow.internal.v0.models.ReportingMonetaryValue;
22684
+ readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
22685
+ readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
22686
+ readonly 'discount': io.flow.internal.v0.models.ReportingMonetaryValue;
22687
+ readonly 'total': io.flow.internal.v0.models.ReportingMonetaryValue;
22688
+ }
22689
+
22548
22690
  interface FulfillmentSnapshot {
22549
22691
  readonly 'tracking_source': string;
22550
22692
  readonly 'fulfillment_status'?: string;
@@ -24018,6 +24160,11 @@ declare namespace io.flow.internal.v0.models {
24018
24160
  readonly 'shipped_item_values': io.flow.internal.v0.models.ShippedItemValue[];
24019
24161
  }
24020
24162
 
24163
+ interface JeanDemoItem {
24164
+ readonly 'id': string;
24165
+ readonly 'name': string;
24166
+ }
24167
+
24021
24168
  interface Key {
24022
24169
  readonly 'id': string;
24023
24170
  readonly 'created_at': string;
@@ -24092,6 +24239,7 @@ declare namespace io.flow.internal.v0.models {
24092
24239
  readonly 'organization': string;
24093
24240
  readonly 'shipping_label_form': io.flow.label.v0.unions.ShippingLabelForm;
24094
24241
  readonly 'shipment_cost'?: io.flow.common.v0.models.Money;
24242
+ readonly 'charges'?: io.flow.internal.v0.models.ChargeInput[];
24095
24243
  readonly 'reference_id'?: string;
24096
24244
  }
24097
24245
 
@@ -24713,6 +24861,11 @@ declare namespace io.flow.internal.v0.models {
24713
24861
  readonly 'number': string;
24714
24862
  }
24715
24863
 
24864
+ interface MarkedAsFinal {
24865
+ readonly 'products': boolean;
24866
+ readonly 'shipping': boolean;
24867
+ }
24868
+
24716
24869
  interface MarketingGatewayChannel {
24717
24870
  readonly 'id': string;
24718
24871
  readonly 'platform': io.flow.internal.v0.enums.MarketingGatewayPlatform;
@@ -27050,6 +27203,10 @@ declare namespace io.flow.internal.v0.models {
27050
27203
  readonly 'orders_since_submitted_at'?: string;
27051
27204
  }
27052
27205
 
27206
+ interface RecordReference {
27207
+ readonly 'id': string;
27208
+ }
27209
+
27053
27210
  interface Redirect {
27054
27211
  readonly 'id': string;
27055
27212
  readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
@@ -27118,6 +27275,52 @@ declare namespace io.flow.internal.v0.models {
27118
27275
  readonly 'task_id': string;
27119
27276
  }
27120
27277
 
27278
+ interface ReportingAuthorizationReference {
27279
+ readonly 'id': string;
27280
+ }
27281
+
27282
+ interface ReportingBusiness {
27283
+ readonly 'vat_registration_number': string;
27284
+ readonly 'name'?: string;
27285
+ }
27286
+
27287
+ interface ReportingConversionRates {
27288
+ readonly 'merchant': number;
27289
+ readonly 'entity': number;
27290
+ readonly 'usd': number;
27291
+ readonly 'eur': number;
27292
+ }
27293
+
27294
+ interface ReportingCountry {
27295
+ readonly 'code': string;
27296
+ readonly 'is_eu': boolean;
27297
+ }
27298
+
27299
+ interface ReportingCurrencies {
27300
+ readonly 'transaction': string;
27301
+ readonly 'merchant': string;
27302
+ readonly 'entity': string;
27303
+ }
27304
+
27305
+ interface ReportingDebug {
27306
+ readonly 'console_order_link': string;
27307
+ readonly 'allocation_order_totals_delta'?: number;
27308
+ readonly 'allocation_order_item_discount_delta'?: number;
27309
+ readonly 'missing_item_subsidies'?: io.flow.internal.v0.models.ReportingDebugMissingSubsidies;
27310
+ readonly 'missing_shipping_subsidies'?: io.flow.internal.v0.models.ReportingDebugMissingSubsidies;
27311
+ }
27312
+
27313
+ interface ReportingDebugMissingSubsidies {
27314
+ readonly 'price'?: boolean;
27315
+ readonly 'tax'?: boolean;
27316
+ readonly 'duty'?: boolean;
27317
+ }
27318
+
27319
+ interface ReportingDestination {
27320
+ readonly 'country': io.flow.internal.v0.models.ReportingCountry;
27321
+ readonly 'province'?: io.flow.internal.v0.models.ReportingProvince;
27322
+ }
27323
+
27121
27324
  interface ReportingDetails {
27122
27325
  readonly 'accounting_transactions'?: any/*object*/[];
27123
27326
  readonly 'fulfillments'?: any/*object*/[];
@@ -27126,6 +27329,166 @@ declare namespace io.flow.internal.v0.models {
27126
27329
  readonly 'refund_records'?: any/*object*/[];
27127
27330
  }
27128
27331
 
27332
+ interface ReportingEntity {
27333
+ readonly 'id': string;
27334
+ }
27335
+
27336
+ interface ReportingFulfillment {
27337
+ readonly 'id': string;
27338
+ readonly 'sequence_number': number;
27339
+ readonly 'fulfilled_at': string;
27340
+ readonly 'completes_order': boolean;
27341
+ readonly 'payment': io.flow.internal.v0.models.ReportingPayment;
27342
+ readonly 'refund'?: io.flow.internal.v0.models.ReportingRefundReference;
27343
+ readonly 'value': io.flow.internal.v0.models.FulfillmentShopperBreakdown;
27344
+ readonly 'dispatch_country'?: io.flow.internal.v0.models.ReportingCountry;
27345
+ readonly 'destination'?: io.flow.internal.v0.models.ReportingDestination;
27346
+ readonly 'shipment'?: io.flow.internal.v0.models.ReportingShipment;
27347
+ readonly 'is': io.flow.internal.v0.models.ReportingFulfillmentIs;
27348
+ readonly 'has': io.flow.internal.v0.models.ReportingFulfillmentHas;
27349
+ readonly 'fx': io.flow.internal.v0.models.ReportingFx;
27350
+ readonly 'business'?: io.flow.internal.v0.models.ReportingBusiness;
27351
+ }
27352
+
27353
+ interface ReportingFulfillmentHas {
27354
+ readonly 'zero_vat_product': boolean;
27355
+ }
27356
+
27357
+ interface ReportingFulfillmentIs {
27358
+ readonly 'replacement': boolean;
27359
+ readonly 'virtual': io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual;
27360
+ readonly 'duties_guaranteed': boolean;
27361
+ readonly 'wyol': boolean;
27362
+ readonly 'b2b': boolean;
27363
+ readonly 'domestic': boolean;
27364
+ }
27365
+
27366
+ interface ReportingFx {
27367
+ readonly 'shipping': io.flow.internal.v0.models.ReportingUsd;
27368
+ readonly 'fees': io.flow.internal.v0.models.ReportingUsd;
27369
+ readonly 'product': io.flow.internal.v0.models.ReportingUsd;
27370
+ readonly 'tax': io.flow.internal.v0.models.ReportingUsd;
27371
+ readonly 'duty': io.flow.internal.v0.models.ReportingUsd;
27372
+ readonly 'total': io.flow.internal.v0.models.ReportingUsd;
27373
+ }
27374
+
27375
+ interface ReportingMerchantBreakdown {
27376
+ readonly 'subsidies': io.flow.internal.v0.models.ReportingMerchantSubsidies;
27377
+ readonly 'fees': io.flow.internal.v0.models.ReportingMerchantFees;
27378
+ readonly 'transactions': io.flow.internal.v0.models.ReportingMerchantTransactions;
27379
+ }
27380
+
27381
+ interface ReportingMerchantFees {
27382
+ readonly 'duty_guarantee': io.flow.internal.v0.models.ReportingMonetaryValue;
27383
+ readonly 'mor': io.flow.internal.v0.models.ReportingMonetaryValue;
27384
+ readonly 'fraud': io.flow.internal.v0.models.ReportingMonetaryValue;
27385
+ readonly 'fx': io.flow.internal.v0.models.ReportingMonetaryValue;
27386
+ readonly 'processing': io.flow.internal.v0.models.ReportingMonetaryValue;
27387
+ readonly 'rate_lock': io.flow.internal.v0.models.ReportingMonetaryValue;
27388
+ readonly 'transfer': io.flow.internal.v0.models.ReportingMonetaryValue;
27389
+ }
27390
+
27391
+ interface ReportingMerchantSubsidies {
27392
+ readonly 'shipping': io.flow.internal.v0.models.ReportingMonetaryValue;
27393
+ readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
27394
+ readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
27395
+ readonly 'ccf': io.flow.internal.v0.models.ReportingMonetaryValue;
27396
+ }
27397
+
27398
+ interface ReportingMerchantTransactions {
27399
+ readonly 'adjustment': io.flow.internal.v0.models.ReportingMonetaryValue;
27400
+ readonly 'reversal': io.flow.internal.v0.models.ReportingMonetaryValue;
27401
+ readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
27402
+ readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
27403
+ readonly 'freight': io.flow.internal.v0.models.ReportingMonetaryValue;
27404
+ readonly 'refund': io.flow.internal.v0.models.ReportingMonetaryValue;
27405
+ }
27406
+
27407
+ interface ReportingMonetaryValue {
27408
+ readonly 'transaction': number;
27409
+ readonly 'merchant': number;
27410
+ readonly 'entity': number;
27411
+ readonly 'usd': number;
27412
+ readonly 'eur': number;
27413
+ }
27414
+
27415
+ interface ReportingOrderSummary {
27416
+ readonly 'id': string;
27417
+ readonly 'number': string;
27418
+ readonly 'submitted_at': string;
27419
+ }
27420
+
27421
+ interface ReportingOrganizationSummary {
27422
+ readonly 'id': string;
27423
+ readonly 'name': string;
27424
+ }
27425
+
27426
+ interface ReportingPayment {
27427
+ readonly 'metadata'?: io.flow.internal.v0.models.ReportingPaymentMetadata;
27428
+ readonly 'psp': io.flow.internal.v0.models.ReportingMonetaryValue;
27429
+ readonly 'credit': io.flow.internal.v0.models.ReportingMonetaryValue;
27430
+ readonly 'total': io.flow.internal.v0.models.ReportingMonetaryValue;
27431
+ }
27432
+
27433
+ interface ReportingPaymentMetadata {
27434
+ readonly 'gateway': io.flow.internal.v0.enums.Processor;
27435
+ readonly 'method': string;
27436
+ readonly 'psp_reference'?: string;
27437
+ readonly 'authorization'?: io.flow.internal.v0.models.ReportingAuthorizationReference;
27438
+ readonly 'settlement_date': string;
27439
+ readonly 'additional_authorizations'?: io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
27440
+ }
27441
+
27442
+ interface ReportingPaymentMetadataAdditionalAuthorizations {
27443
+ readonly 'ids': string;
27444
+ }
27445
+
27446
+ interface ReportingProvince {
27447
+ readonly 'code'?: string;
27448
+ readonly 'name': string;
27449
+ }
27450
+
27451
+ interface ReportingReconciliation {
27452
+ readonly 'date': string;
27453
+ readonly 'month': number;
27454
+ readonly 'year': number;
27455
+ }
27456
+
27457
+ interface ReportingRefundReference {
27458
+ readonly 'id': string;
27459
+ }
27460
+
27461
+ interface ReportingShipment {
27462
+ readonly 'carrier': string;
27463
+ readonly 'tracking_number'?: string;
27464
+ }
27465
+
27466
+ interface ReportingShopperFees {
27467
+ readonly 'fuel': io.flow.internal.v0.models.ReportingMonetaryValue;
27468
+ readonly 'remote_area': io.flow.internal.v0.models.ReportingMonetaryValue;
27469
+ readonly 'oversize': io.flow.internal.v0.models.ReportingMonetaryValue;
27470
+ readonly 'ccf': io.flow.internal.v0.models.ReportingMonetaryValue;
27471
+ readonly 'emergency': io.flow.internal.v0.models.ReportingMonetaryValue;
27472
+ readonly 'peak': io.flow.internal.v0.models.ReportingMonetaryValue;
27473
+ }
27474
+
27475
+ interface ReportingUsd {
27476
+ readonly 'usd': number;
27477
+ }
27478
+
27479
+ interface ReportingVatRemittance {
27480
+ readonly 'currency': string;
27481
+ readonly 'rate': io.flow.internal.v0.models.ReportingVatRemittanceRate;
27482
+ }
27483
+
27484
+ interface ReportingVatRemittanceRate {
27485
+ readonly 'entity': number;
27486
+ }
27487
+
27488
+ interface ReportingVendor {
27489
+ readonly 'id': string;
27490
+ }
27491
+
27129
27492
  interface RequeueRequestForm {
27130
27493
  readonly 'product_ids'?: string[];
27131
27494
  readonly 'hs6_codes'?: string[];
@@ -27178,6 +27541,7 @@ declare namespace io.flow.internal.v0.models {
27178
27541
  readonly 'status'?: io.flow.internal.v0.enums.RestrictionStatus;
27179
27542
  readonly 'statuses'?: io.flow.internal.v0.enums.RestrictionStatus[];
27180
27543
  readonly 'rule_ids'?: string[];
27544
+ readonly 'user_ids'?: string[];
27181
27545
  readonly 'categories'?: string[];
27182
27546
  readonly 'product_name_query'?: string;
27183
27547
  readonly 'positive_keywords'?: string[];
@@ -27400,6 +27764,7 @@ declare namespace io.flow.internal.v0.models {
27400
27764
  readonly 'posting_cutoff': string;
27401
27765
  readonly 'trigger': io.flow.internal.v0.unions.ReturnTrigger;
27402
27766
  readonly 'returned_at': string;
27767
+ readonly 'completes_order': boolean;
27403
27768
  }
27404
27769
 
27405
27770
  interface ReturnPolicyDeleted {
@@ -27446,6 +27811,40 @@ declare namespace io.flow.internal.v0.models {
27446
27811
  readonly 'refund': io.flow.payment.v0.models.RefundReference;
27447
27812
  }
27448
27813
 
27814
+ interface RevenueRecord {
27815
+ readonly 'id': string;
27816
+ readonly 'organization': io.flow.internal.v0.models.ReportingOrganizationSummary;
27817
+ readonly 'parent'?: io.flow.internal.v0.models.RecordReference;
27818
+ readonly 'type': io.flow.internal.v0.enums.RevenueRecordType;
27819
+ readonly 'order': io.flow.internal.v0.models.ReportingOrderSummary;
27820
+ readonly 'entity': io.flow.internal.v0.models.ReportingEntity;
27821
+ readonly 'vendor': io.flow.internal.v0.models.ReportingVendor;
27822
+ readonly 'currencies': io.flow.internal.v0.models.ReportingCurrencies;
27823
+ readonly 'conversion_rate': io.flow.internal.v0.models.ReportingConversionRates;
27824
+ readonly 'reconciliation': io.flow.internal.v0.models.ReportingReconciliation;
27825
+ readonly 'merchant': io.flow.internal.v0.models.ReportingMerchantBreakdown;
27826
+ readonly 'fulfillment': io.flow.internal.v0.models.ReportingFulfillment;
27827
+ readonly 'vat_remittance': io.flow.internal.v0.models.ReportingVatRemittance;
27828
+ readonly 'marked_as_final': io.flow.internal.v0.models.MarkedAsFinal;
27829
+ readonly 'debug': io.flow.internal.v0.models.ReportingDebug;
27830
+ }
27831
+
27832
+ interface RevenueRecordDeleted {
27833
+ readonly 'discriminator': 'revenue_record_deleted';
27834
+ readonly 'event_id': string;
27835
+ readonly 'timestamp': string;
27836
+ readonly 'organization': string;
27837
+ readonly 'id': string;
27838
+ }
27839
+
27840
+ interface RevenueRecordUpserted {
27841
+ readonly 'discriminator': 'revenue_record_upserted';
27842
+ readonly 'event_id': string;
27843
+ readonly 'timestamp': string;
27844
+ readonly 'organization': string;
27845
+ readonly 'revenue_record': io.flow.internal.v0.models.RevenueRecord;
27846
+ }
27847
+
27449
27848
  interface RoutingAccount {
27450
27849
  readonly 'discriminator': 'routing_account';
27451
27850
  readonly 'processor': io.flow.internal.v0.enums.Processor;
@@ -29472,7 +29871,7 @@ declare namespace io.flow.internal.v0.unions {
29472
29871
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
29473
29872
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
29474
29873
  type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
29475
- 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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | 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.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | 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.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | 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.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | 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.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
29874
+ 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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | 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.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | 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.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | 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.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | 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.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
29476
29875
  type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
29477
29876
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
29478
29877
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -29528,7 +29927,7 @@ declare namespace io.flow.internal.v0.unions {
29528
29927
  type TaskData = (io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport);
29529
29928
  type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
29530
29929
  type Tracker = (io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel);
29531
- type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction);
29930
+ type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction);
29532
29931
  type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
29533
29932
  type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
29534
29933
  type Variant = (io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant);
@@ -29554,7 +29953,7 @@ export const blazeCheckoutEvent: PropTypes.Requireable<io.flow.internal.v0.enums
29554
29953
  export const blazeCheckoutStep: PropTypes.Requireable<io.flow.internal.v0.enums.BlazeCheckoutStep>;
29555
29954
  export const browserBundleErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.BrowserBundleErrorCode>;
29556
29955
  export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.CalculatorEngine>;
29557
- export const carrierChargeOtherReason: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeOtherReason>;
29956
+ export const carrierChargeTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeTransactionType>;
29558
29957
  export const carrierLabelGenerationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierLabelGenerationMethod>;
29559
29958
  export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierValidationStatus>;
29560
29959
  export const catalogImportType: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogImportType>;
@@ -29565,6 +29964,8 @@ export const channelOrderAcceptanceRejectionReason: PropTypes.Requireable<io.flo
29565
29964
  export const channelOrderAcceptanceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus>;
29566
29965
  export const channelOrderFulfillmentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode>;
29567
29966
  export const channelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelTransactionType>;
29967
+ export const chargeEstimateSource: PropTypes.Requireable<io.flow.internal.v0.enums.ChargeEstimateSource>;
29968
+ export const chargeInputType: PropTypes.Requireable<io.flow.internal.v0.enums.ChargeInputType>;
29568
29969
  export const chargebackPaymentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChargebackPaymentStatus>;
29569
29970
  export const chargebackProcessStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChargebackProcessStatus>;
29570
29971
  export const checkoutAddAuthorizationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.CheckoutAddAuthorizationErrorCode>;
@@ -29770,11 +30171,13 @@ export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.Re
29770
30171
  export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
29771
30172
  export const reportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportStatus>;
29772
30173
  export const reportType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportType>;
30174
+ export const reportingFulfillmentIsVirtual: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual>;
29773
30175
  export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingScheme>;
29774
30176
  export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
29775
30177
  export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAction>;
29776
30178
  export const restrictionDecision: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionDecision>;
29777
30179
  export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStatus>;
30180
+ export const revenueRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueRecordType>;
29778
30181
  export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskCheck>;
29779
30182
  export const riskEvaluation: PropTypes.Requireable<io.flow.internal.v0.enums.RiskEvaluation>;
29780
30183
  export const scope: PropTypes.Requireable<io.flow.internal.v0.enums.Scope>;
@@ -30020,6 +30423,7 @@ export const carrierChargeFileForm: PropTypes.Requireable<io.flow.internal.v0.mo
30020
30423
  export const carrierChargeFileResult: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFileResult>;
30021
30424
  export const carrierChargeFormLabel: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFormLabel>;
30022
30425
  export const carrierChargeFormOther: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFormOther>;
30426
+ export const carrierChargeTransaction: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeTransaction>;
30023
30427
  export const carrierChargeUnits: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeUnits>;
30024
30428
  export const carrierInvoice: PropTypes.Requireable<io.flow.internal.v0.models.CarrierInvoice>;
30025
30429
  export const catalogImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.CatalogImportRequest>;
@@ -30064,6 +30468,7 @@ export const channelMembershipPutForm: PropTypes.Requireable<io.flow.internal.v0
30064
30468
  export const channelOrder: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrder>;
30065
30469
  export const channelOrderAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptance>;
30066
30470
  export const channelOrderAcceptanceDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted>;
30471
+ export const channelOrderAcceptanceDetails: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceDetails>;
30067
30472
  export const channelOrderAcceptanceForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceForm>;
30068
30473
  export const channelOrderAcceptanceReason: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceReason>;
30069
30474
  export const channelOrderAcceptanceUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted>;
@@ -30080,6 +30485,7 @@ export const channelTransaction: PropTypes.Requireable<io.flow.internal.v0.model
30080
30485
  export const channelTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionDeleted>;
30081
30486
  export const channelTransactionRate: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionRate>;
30082
30487
  export const channelTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionUpserted>;
30488
+ export const chargeInput: PropTypes.Requireable<io.flow.internal.v0.models.ChargeInput>;
30083
30489
  export const chargeback: PropTypes.Requireable<io.flow.internal.v0.models.Chargeback>;
30084
30490
  export const chargebackDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChargebackDeleted>;
30085
30491
  export const chargebackUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChargebackUpserted>;
@@ -30756,6 +31162,7 @@ export const fulfillmentProofOrderCombinedShipmentReference: PropTypes.Requireab
30756
31162
  export const fulfillmentProofShippingNotificationReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference>;
30757
31163
  export const fulfillmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentReference>;
30758
31164
  export const fulfillmentShipmentTracking: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipmentTracking>;
31165
+ export const fulfillmentShopperBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShopperBreakdown>;
30759
31166
  export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSnapshot>;
30760
31167
  export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
30761
31168
  export const fulfillmentTriggerProof: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentTriggerProof>;
@@ -30918,6 +31325,7 @@ export const itemSalesMarginVersion: PropTypes.Requireable<io.flow.internal.v0.m
30918
31325
  export const itemSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemSummary>;
30919
31326
  export const itemValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemValuesForm>;
30920
31327
  export const itemsShipped: PropTypes.Requireable<io.flow.internal.v0.models.ItemsShipped>;
31328
+ export const jeanDemoItem: PropTypes.Requireable<io.flow.internal.v0.models.JeanDemoItem>;
30921
31329
  export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
30922
31330
  export const keyReference: PropTypes.Requireable<io.flow.internal.v0.models.KeyReference>;
30923
31331
  export const klarnaAuthorizationParameters: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaAuthorizationParameters>;
@@ -31008,6 +31416,7 @@ export const manualReviewRuleUpserted: PropTypes.Requireable<io.flow.internal.v0
31008
31416
  export const manualTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransaction>;
31009
31417
  export const manualTransactionForm: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransactionForm>;
31010
31418
  export const manualTransactionFormOrder: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransactionFormOrder>;
31419
+ export const markedAsFinal: PropTypes.Requireable<io.flow.internal.v0.models.MarkedAsFinal>;
31011
31420
  export const marketingGatewayChannel: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannel>;
31012
31421
  export const marketingGatewayChannelConnectionForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannelConnectionForm>;
31013
31422
  export const marketingGatewayChannelForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannelForm>;
@@ -31318,6 +31727,7 @@ export const ratesNamesSummary: PropTypes.Requireable<io.flow.internal.v0.models
31318
31727
  export const readyToFulfill: PropTypes.Requireable<io.flow.internal.v0.models.ReadyToFulfill>;
31319
31728
  export const reboundConfiguration: PropTypes.Requireable<io.flow.internal.v0.models.ReboundConfiguration>;
31320
31729
  export const reboundConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.models.ReboundConfigurationForm>;
31730
+ export const recordReference: PropTypes.Requireable<io.flow.internal.v0.models.RecordReference>;
31321
31731
  export const redirect: PropTypes.Requireable<io.flow.internal.v0.models.Redirect>;
31322
31732
  export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.models.RedirectActionCompleted>;
31323
31733
  export const registeredExporterTariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData>;
@@ -31329,7 +31739,39 @@ export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.Report
31329
31739
  export const reportPayment: PropTypes.Requireable<io.flow.internal.v0.models.ReportPayment>;
31330
31740
  export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
31331
31741
  export const reportSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportSummary>;
31742
+ export const reportingAuthorizationReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportingAuthorizationReference>;
31743
+ export const reportingBusiness: PropTypes.Requireable<io.flow.internal.v0.models.ReportingBusiness>;
31744
+ export const reportingConversionRates: PropTypes.Requireable<io.flow.internal.v0.models.ReportingConversionRates>;
31745
+ export const reportingCountry: PropTypes.Requireable<io.flow.internal.v0.models.ReportingCountry>;
31746
+ export const reportingCurrencies: PropTypes.Requireable<io.flow.internal.v0.models.ReportingCurrencies>;
31747
+ export const reportingDebug: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDebug>;
31748
+ export const reportingDebugMissingSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDebugMissingSubsidies>;
31749
+ export const reportingDestination: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDestination>;
31332
31750
  export const reportingDetails: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDetails>;
31751
+ export const reportingEntity: PropTypes.Requireable<io.flow.internal.v0.models.ReportingEntity>;
31752
+ export const reportingFulfillment: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillment>;
31753
+ export const reportingFulfillmentHas: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentHas>;
31754
+ export const reportingFulfillmentIs: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentIs>;
31755
+ export const reportingFx: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFx>;
31756
+ export const reportingMerchantBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantBreakdown>;
31757
+ export const reportingMerchantFees: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantFees>;
31758
+ export const reportingMerchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantSubsidies>;
31759
+ export const reportingMerchantTransactions: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantTransactions>;
31760
+ export const reportingMonetaryValue: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMonetaryValue>;
31761
+ export const reportingOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportingOrderSummary>;
31762
+ export const reportingOrganizationSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportingOrganizationSummary>;
31763
+ export const reportingPayment: PropTypes.Requireable<io.flow.internal.v0.models.ReportingPayment>;
31764
+ export const reportingPaymentMetadata: PropTypes.Requireable<io.flow.internal.v0.models.ReportingPaymentMetadata>;
31765
+ export const reportingPaymentMetadataAdditionalAuthorizations: PropTypes.Requireable<io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations>;
31766
+ export const reportingProvince: PropTypes.Requireable<io.flow.internal.v0.models.ReportingProvince>;
31767
+ export const reportingReconciliation: PropTypes.Requireable<io.flow.internal.v0.models.ReportingReconciliation>;
31768
+ export const reportingRefundReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportingRefundReference>;
31769
+ export const reportingShipment: PropTypes.Requireable<io.flow.internal.v0.models.ReportingShipment>;
31770
+ export const reportingShopperFees: PropTypes.Requireable<io.flow.internal.v0.models.ReportingShopperFees>;
31771
+ export const reportingUsd: PropTypes.Requireable<io.flow.internal.v0.models.ReportingUsd>;
31772
+ export const reportingVatRemittance: PropTypes.Requireable<io.flow.internal.v0.models.ReportingVatRemittance>;
31773
+ export const reportingVatRemittanceRate: PropTypes.Requireable<io.flow.internal.v0.models.ReportingVatRemittanceRate>;
31774
+ export const reportingVendor: PropTypes.Requireable<io.flow.internal.v0.models.ReportingVendor>;
31333
31775
  export const requeueRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RequeueRequestForm>;
31334
31776
  export const restrictionCategory: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionCategory>;
31335
31777
  export const restrictionFilter: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionFilter>;
@@ -31370,6 +31812,9 @@ export const returnPolicyItemResultUpserted: PropTypes.Requireable<io.flow.inter
31370
31812
  export const returnPolicyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyUpserted>;
31371
31813
  export const returnSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReturnSummary>;
31372
31814
  export const returnTriggerRefund: PropTypes.Requireable<io.flow.internal.v0.models.ReturnTriggerRefund>;
31815
+ export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecord>;
31816
+ export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
31817
+ export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
31373
31818
  export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
31374
31819
  export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
31375
31820
  export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;