@flowio/api-internal-prop-types 9.24.79 → 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.
- package/lib/api-internal.d.ts +1752 -1302
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +1752 -1302
- package/src/api-internal.js +952 -459
package/src/api-internal.d.ts
CHANGED
|
@@ -2216,9 +2216,16 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2216
2216
|
readonly 'shipping_label'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabel;
|
|
2217
2217
|
readonly 'shipping_label_revenue_share'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabelRevenueShare;
|
|
2218
2218
|
readonly 'trueup'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
|
|
2219
|
+
readonly 'carrier_charge'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierCharge;
|
|
2219
2220
|
readonly 'manual'?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
|
|
2220
2221
|
}
|
|
2221
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
|
+
|
|
2222
2229
|
interface BillingCsvTransactionMetadataChannel {
|
|
2223
2230
|
readonly 'method': string;
|
|
2224
2231
|
readonly 'card'?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
@@ -6158,6 +6165,9 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6158
6165
|
}
|
|
6159
6166
|
|
|
6160
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';
|
|
6161
6171
|
type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
6162
6172
|
type FulfillmentOrderDeliveryMethodType = 'local' | 'none' | 'pick_up' | 'retail' | 'shipping';
|
|
6163
6173
|
type IncotermDuties = 'DAP' | 'DDP';
|
|
@@ -6188,7 +6198,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
6188
6198
|
type ShopifyOrderValueType = 'string' | 'integer';
|
|
6189
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';
|
|
6190
6200
|
type ShopifyWebhookFormat = 'json' | 'xml';
|
|
6191
|
-
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';
|
|
6192
6202
|
}
|
|
6193
6203
|
|
|
6194
6204
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
@@ -6262,6 +6272,15 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6262
6272
|
readonly 'amount'?: number;
|
|
6263
6273
|
}
|
|
6264
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
|
+
|
|
6265
6284
|
interface ShopifyCountryHarmonizedSystemCode {
|
|
6266
6285
|
readonly 'country_code': string;
|
|
6267
6286
|
readonly 'harmonized_system_code': string;
|
|
@@ -7261,6 +7280,8 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
7261
7280
|
readonly 'status': io.flow.payment.gateway.v0.models.PaymentAuthorizationStatus;
|
|
7262
7281
|
readonly 'amount': number;
|
|
7263
7282
|
readonly 'currency': string;
|
|
7283
|
+
readonly 'base_amount'?: number;
|
|
7284
|
+
readonly 'base_currency'?: string;
|
|
7264
7285
|
}
|
|
7265
7286
|
|
|
7266
7287
|
interface PaymentAuthorizationStatus {
|
|
@@ -7272,6 +7293,8 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
7272
7293
|
readonly 'id': string;
|
|
7273
7294
|
readonly 'amount': number;
|
|
7274
7295
|
readonly 'currency': string;
|
|
7296
|
+
readonly 'base_amount'?: number;
|
|
7297
|
+
readonly 'base_currency'?: string;
|
|
7275
7298
|
readonly 'created_at': string;
|
|
7276
7299
|
readonly 'updated_at': string;
|
|
7277
7300
|
readonly 'status': io.flow.payment.gateway.v0.models.PaymentCaptureStatus;
|
|
@@ -7578,6 +7601,8 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
7578
7601
|
readonly 'id': string;
|
|
7579
7602
|
readonly 'amount': number;
|
|
7580
7603
|
readonly 'currency': string;
|
|
7604
|
+
readonly 'base_amount'?: number;
|
|
7605
|
+
readonly 'base_currency'?: string;
|
|
7581
7606
|
readonly 'created_at': string;
|
|
7582
7607
|
readonly 'updated_at': string;
|
|
7583
7608
|
readonly 'status': io.flow.payment.gateway.v0.models.PaymentRefundStatus;
|
|
@@ -7603,6 +7628,8 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
7603
7628
|
readonly 'next_action'?: io.flow.payment.gateway.v0.unions.Action;
|
|
7604
7629
|
readonly 'amount': number;
|
|
7605
7630
|
readonly 'currency': string;
|
|
7631
|
+
readonly 'base_amount'?: number;
|
|
7632
|
+
readonly 'base_currency'?: string;
|
|
7606
7633
|
readonly 'order_information': io.flow.payment.gateway.v0.unions.OrderInformation;
|
|
7607
7634
|
readonly 'device_details': io.flow.payment.v0.unions.DeviceDetails;
|
|
7608
7635
|
readonly 'locale'?: string;
|
|
@@ -7648,6 +7675,8 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
7648
7675
|
readonly 'id': string;
|
|
7649
7676
|
readonly 'amount': number;
|
|
7650
7677
|
readonly 'currency': string;
|
|
7678
|
+
readonly 'base_amount'?: number;
|
|
7679
|
+
readonly 'base_currency'?: string;
|
|
7651
7680
|
readonly 'created_at': string;
|
|
7652
7681
|
readonly 'updated_at': string;
|
|
7653
7682
|
readonly 'status': io.flow.payment.gateway.v0.models.PaymentReversalStatus;
|
|
@@ -7793,795 +7822,968 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7793
7822
|
}
|
|
7794
7823
|
}
|
|
7795
7824
|
|
|
7796
|
-
declare namespace io.flow.
|
|
7797
|
-
type
|
|
7798
|
-
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
7799
|
-
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
7800
|
-
type HttpMethod = 'get' | 'post';
|
|
7801
|
-
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
7802
|
-
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
7803
|
-
type Owner = 'flow' | 'organization';
|
|
7804
|
-
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
7805
|
-
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
7806
|
-
type RedirectReason = 'three_d_secure';
|
|
7807
|
-
type RiskCheck = 'three_d_secure';
|
|
7825
|
+
declare namespace io.flow.partner.v0.enums {
|
|
7826
|
+
type LabelFormat = 'pdf' | 'zpl' | 'all';
|
|
7808
7827
|
}
|
|
7809
7828
|
|
|
7810
|
-
declare namespace io.flow.
|
|
7811
|
-
interface
|
|
7812
|
-
readonly '
|
|
7813
|
-
readonly '
|
|
7814
|
-
readonly 'organization_id': string;
|
|
7815
|
-
readonly 'key': string;
|
|
7816
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
7817
|
-
readonly 'name': string;
|
|
7818
|
-
readonly 'ui_reference': string;
|
|
7819
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthentication;
|
|
7820
|
-
readonly 'country': string;
|
|
7821
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
7822
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
7823
|
-
readonly 'created_at': string;
|
|
7824
|
-
readonly 'updated_at': string;
|
|
7825
|
-
}
|
|
7826
|
-
|
|
7827
|
-
interface AdyenAccountModificationForm {
|
|
7828
|
-
readonly 'discriminator': 'adyen_account_modification_form';
|
|
7829
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
7830
|
-
readonly 'name': string;
|
|
7831
|
-
readonly 'ui_reference': string;
|
|
7832
|
-
readonly 'country': string;
|
|
7833
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
7834
|
-
}
|
|
7835
|
-
|
|
7836
|
-
interface AdyenAccountPutForm {
|
|
7837
|
-
readonly 'discriminator': 'adyen_account_put_form';
|
|
7838
|
-
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
7839
|
-
readonly 'name': string;
|
|
7840
|
-
readonly 'ui_reference': string;
|
|
7841
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthenticationForm;
|
|
7842
|
-
readonly 'country': string;
|
|
7843
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
7844
|
-
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;
|
|
7845
7833
|
}
|
|
7846
7834
|
|
|
7847
|
-
interface
|
|
7848
|
-
readonly '
|
|
7849
|
-
readonly '
|
|
7850
|
-
readonly '
|
|
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;
|
|
7851
7841
|
}
|
|
7852
7842
|
|
|
7853
|
-
interface
|
|
7854
|
-
readonly '
|
|
7855
|
-
readonly '
|
|
7856
|
-
readonly '
|
|
7857
|
-
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;
|
|
7858
7847
|
}
|
|
7859
7848
|
|
|
7860
|
-
interface
|
|
7861
|
-
readonly '
|
|
7862
|
-
readonly '
|
|
7863
|
-
readonly '
|
|
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[];
|
|
7864
7858
|
}
|
|
7865
7859
|
|
|
7866
|
-
interface
|
|
7867
|
-
readonly 'discriminator': 'adyen_merchant';
|
|
7860
|
+
interface Label {
|
|
7868
7861
|
readonly 'id': string;
|
|
7869
|
-
readonly '
|
|
7870
|
-
readonly '
|
|
7871
|
-
readonly '
|
|
7872
|
-
readonly '
|
|
7873
|
-
readonly '
|
|
7874
|
-
readonly '
|
|
7875
|
-
readonly '
|
|
7876
|
-
readonly '
|
|
7877
|
-
readonly '
|
|
7878
|
-
|
|
7879
|
-
|
|
7880
|
-
|
|
7881
|
-
readonly '
|
|
7882
|
-
readonly '
|
|
7883
|
-
readonly '
|
|
7884
|
-
readonly '
|
|
7885
|
-
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
readonly '
|
|
7889
|
-
readonly 'organization_id': string;
|
|
7890
|
-
readonly 'external_id': string;
|
|
7891
|
-
readonly 'country': string;
|
|
7892
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
7893
|
-
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;
|
|
7894
7882
|
}
|
|
7895
7883
|
|
|
7896
|
-
interface
|
|
7897
|
-
readonly '
|
|
7898
|
-
readonly '
|
|
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;
|
|
7899
7890
|
}
|
|
7900
7891
|
|
|
7901
|
-
interface
|
|
7902
|
-
readonly '
|
|
7903
|
-
readonly 'amount': number;
|
|
7904
|
-
readonly 'authorization_id': string;
|
|
7905
|
-
readonly 'capture_id': string;
|
|
7906
|
-
readonly 'currency': string;
|
|
7907
|
-
readonly 'psp_reference': string;
|
|
7908
|
-
readonly 'key'?: string;
|
|
7892
|
+
interface PartnerBridgeManifestForm {
|
|
7893
|
+
readonly 'order_numbers': string[];
|
|
7909
7894
|
}
|
|
7910
7895
|
|
|
7911
|
-
interface
|
|
7912
|
-
readonly '
|
|
7913
|
-
readonly 'id': string;
|
|
7914
|
-
readonly 'organization_id': string;
|
|
7896
|
+
interface PartnerFulfillment {
|
|
7897
|
+
readonly 'organization': string;
|
|
7915
7898
|
readonly 'key': string;
|
|
7916
|
-
readonly '
|
|
7917
|
-
readonly '
|
|
7918
|
-
readonly '
|
|
7919
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
7920
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
7921
|
-
readonly 'created_at': string;
|
|
7922
|
-
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[];
|
|
7923
7902
|
}
|
|
7924
7903
|
|
|
7925
|
-
interface
|
|
7926
|
-
readonly '
|
|
7927
|
-
readonly '
|
|
7928
|
-
readonly '
|
|
7929
|
-
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[];
|
|
7930
7908
|
}
|
|
7931
7909
|
|
|
7932
|
-
interface
|
|
7933
|
-
readonly '
|
|
7934
|
-
readonly '
|
|
7935
|
-
readonly 'country': string;
|
|
7936
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.AfterpayAuthenticationForm;
|
|
7937
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
7938
|
-
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;
|
|
7939
7913
|
}
|
|
7940
7914
|
|
|
7941
|
-
interface
|
|
7942
|
-
readonly '
|
|
7943
|
-
readonly '
|
|
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;
|
|
7944
7922
|
}
|
|
7945
7923
|
|
|
7946
|
-
interface
|
|
7947
|
-
readonly '
|
|
7924
|
+
interface PartnerManifestForm {
|
|
7925
|
+
readonly 'tracking_numbers': string[];
|
|
7926
|
+
readonly 'service'?: string;
|
|
7948
7927
|
}
|
|
7949
7928
|
|
|
7950
|
-
interface
|
|
7951
|
-
readonly '
|
|
7952
|
-
readonly '
|
|
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;
|
|
7953
7934
|
}
|
|
7954
7935
|
|
|
7955
|
-
interface
|
|
7956
|
-
readonly '
|
|
7957
|
-
readonly '
|
|
7936
|
+
interface PartnerOrderIdentifierForm {
|
|
7937
|
+
readonly 'number': string;
|
|
7938
|
+
readonly 'order_number': string;
|
|
7958
7939
|
}
|
|
7959
7940
|
|
|
7960
|
-
interface
|
|
7961
|
-
readonly '
|
|
7941
|
+
interface PartnerOrderIdentifierPutForm {
|
|
7942
|
+
readonly 'order_number': string;
|
|
7962
7943
|
}
|
|
7963
7944
|
|
|
7964
|
-
interface
|
|
7945
|
+
interface PartnerOrderReference {
|
|
7965
7946
|
readonly 'id': string;
|
|
7966
|
-
readonly '
|
|
7967
|
-
readonly 'authorization_reference': io.flow.payment.v0.models.AuthorizationReference;
|
|
7968
|
-
readonly 'payment_request_reference': io.flow.payment.gateway.v0.models.PaymentRequestReference;
|
|
7969
|
-
readonly 'billing'?: io.flow.payment.request.bundle.v0.models.PaymentRequestBilling;
|
|
7947
|
+
readonly 'number': string;
|
|
7970
7948
|
}
|
|
7971
7949
|
|
|
7972
|
-
interface
|
|
7973
|
-
readonly '
|
|
7950
|
+
interface PartnerOrganizationReference {
|
|
7951
|
+
readonly 'id': string;
|
|
7974
7952
|
}
|
|
7975
7953
|
|
|
7976
|
-
interface
|
|
7977
|
-
readonly '
|
|
7978
|
-
readonly '
|
|
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;
|
|
7979
7961
|
}
|
|
7962
|
+
}
|
|
7980
7963
|
|
|
7981
|
-
|
|
7982
|
-
|
|
7983
|
-
|
|
7984
|
-
|
|
7985
|
-
|
|
7986
|
-
|
|
7987
|
-
|
|
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;
|
|
7988
8017
|
}
|
|
7989
8018
|
|
|
7990
|
-
interface
|
|
7991
|
-
readonly '
|
|
7992
|
-
readonly '
|
|
7993
|
-
readonly '
|
|
7994
|
-
readonly '
|
|
7995
|
-
readonly '
|
|
7996
|
-
readonly '
|
|
7997
|
-
readonly '
|
|
7998
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
7999
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8000
|
-
readonly 'created_at': string;
|
|
8001
|
-
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;
|
|
8002
8027
|
}
|
|
8003
8028
|
|
|
8004
|
-
interface
|
|
8005
|
-
readonly '
|
|
8006
|
-
readonly '
|
|
8007
|
-
readonly 'country': string;
|
|
8008
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8029
|
+
interface CatalogItemReference {
|
|
8030
|
+
readonly 'id': string;
|
|
8031
|
+
readonly 'number': string;
|
|
8009
8032
|
}
|
|
8010
8033
|
|
|
8011
|
-
interface
|
|
8012
|
-
readonly '
|
|
8013
|
-
readonly '
|
|
8014
|
-
readonly '
|
|
8015
|
-
readonly 'country': string;
|
|
8016
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8017
|
-
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>;
|
|
8018
8038
|
}
|
|
8019
8039
|
|
|
8020
|
-
interface
|
|
8021
|
-
readonly '
|
|
8022
|
-
readonly 'public_key': string;
|
|
8023
|
-
readonly 'secret_key_reference': string;
|
|
8040
|
+
interface ChannelReference {
|
|
8041
|
+
readonly 'id': string;
|
|
8024
8042
|
}
|
|
8025
8043
|
|
|
8026
|
-
interface
|
|
8044
|
+
interface CheckoutReference {
|
|
8027
8045
|
readonly 'id': string;
|
|
8028
8046
|
}
|
|
8029
8047
|
|
|
8030
|
-
interface
|
|
8031
|
-
readonly '
|
|
8032
|
-
readonly '
|
|
8033
|
-
readonly '
|
|
8048
|
+
interface Contact {
|
|
8049
|
+
readonly 'name': io.flow.common.v0.models.Name;
|
|
8050
|
+
readonly 'company'?: string;
|
|
8051
|
+
readonly 'email'?: string;
|
|
8052
|
+
readonly 'phone'?: string;
|
|
8034
8053
|
}
|
|
8035
8054
|
|
|
8036
|
-
interface
|
|
8055
|
+
interface CustomerInvoice {
|
|
8056
|
+
readonly 'address'?: io.flow.common.v0.models.BillingAddress;
|
|
8057
|
+
}
|
|
8058
|
+
|
|
8059
|
+
interface CustomerReference {
|
|
8060
|
+
readonly 'number': string;
|
|
8061
|
+
}
|
|
8062
|
+
|
|
8063
|
+
interface DatetimeRange {
|
|
8064
|
+
readonly 'from': string;
|
|
8065
|
+
readonly 'to': string;
|
|
8066
|
+
}
|
|
8067
|
+
|
|
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;
|
|
8074
|
+
}
|
|
8075
|
+
|
|
8076
|
+
interface Dimensions {
|
|
8077
|
+
readonly 'product'?: io.flow.common.v0.models.Dimension;
|
|
8078
|
+
readonly 'packaging'?: io.flow.common.v0.models.Dimension;
|
|
8079
|
+
}
|
|
8080
|
+
|
|
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;
|
|
8085
|
+
}
|
|
8086
|
+
|
|
8087
|
+
interface DiscountOfferFixed {
|
|
8088
|
+
readonly 'discriminator': 'discount_offer_fixed';
|
|
8089
|
+
readonly 'money': io.flow.common.v0.models.Money;
|
|
8090
|
+
}
|
|
8091
|
+
|
|
8092
|
+
interface DiscountOfferPercent {
|
|
8093
|
+
readonly 'discriminator': 'discount_offer_percent';
|
|
8094
|
+
readonly 'percent': number;
|
|
8095
|
+
}
|
|
8096
|
+
|
|
8097
|
+
interface DiscountsForm {
|
|
8098
|
+
readonly 'discounts': io.flow.common.v0.models.DiscountForm[];
|
|
8099
|
+
}
|
|
8100
|
+
|
|
8101
|
+
interface Duration {
|
|
8102
|
+
readonly 'unit': io.flow.common.v0.enums.UnitOfTime;
|
|
8103
|
+
readonly 'value': number;
|
|
8104
|
+
}
|
|
8105
|
+
|
|
8106
|
+
interface EntityIdentifier {
|
|
8107
|
+
readonly 'name': io.flow.common.v0.enums.EntityIdentifierType;
|
|
8108
|
+
readonly 'number': string;
|
|
8109
|
+
readonly 'issuing_country'?: string;
|
|
8110
|
+
}
|
|
8111
|
+
|
|
8112
|
+
interface Exception {
|
|
8113
|
+
readonly 'type': io.flow.common.v0.enums.ExceptionType;
|
|
8114
|
+
readonly 'datetime_range': io.flow.common.v0.models.DatetimeRange;
|
|
8115
|
+
}
|
|
8116
|
+
|
|
8117
|
+
interface ExperienceSummary {
|
|
8037
8118
|
readonly 'id': string;
|
|
8038
8119
|
readonly 'key': string;
|
|
8039
|
-
readonly '
|
|
8120
|
+
readonly 'name': string;
|
|
8121
|
+
readonly 'country'?: string;
|
|
8122
|
+
readonly 'currency'?: string;
|
|
8123
|
+
readonly 'language'?: string;
|
|
8124
|
+
}
|
|
8125
|
+
|
|
8126
|
+
interface IncludedLevies {
|
|
8127
|
+
readonly 'key': io.flow.common.v0.enums.IncludedLevyKey;
|
|
8128
|
+
readonly 'label': string;
|
|
8129
|
+
}
|
|
8130
|
+
|
|
8131
|
+
interface InputForm {
|
|
8132
|
+
readonly 'values'?: Record<string, string>;
|
|
8133
|
+
}
|
|
8134
|
+
|
|
8135
|
+
interface InputFormSpecification {
|
|
8136
|
+
readonly 'inputs'?: io.flow.common.v0.models.InputSpecification[];
|
|
8137
|
+
readonly 'limitations'?: io.flow.common.v0.models.InputSpecificationLimitations;
|
|
8138
|
+
}
|
|
8139
|
+
|
|
8140
|
+
interface InputSpecification {
|
|
8141
|
+
readonly 'type': io.flow.common.v0.enums.InputSpecificationType;
|
|
8142
|
+
readonly 'name': string;
|
|
8143
|
+
readonly 'display_text'?: string;
|
|
8144
|
+
}
|
|
8145
|
+
|
|
8146
|
+
interface InputSpecificationLimitationMax {
|
|
8147
|
+
readonly 'discriminator': 'input_specification_limitation_max';
|
|
8148
|
+
readonly 'max': number;
|
|
8149
|
+
}
|
|
8150
|
+
|
|
8151
|
+
interface InputSpecificationLimitations {
|
|
8152
|
+
readonly 'limitations'?: io.flow.common.v0.unions.InputSpecificationLimitation[];
|
|
8153
|
+
}
|
|
8154
|
+
|
|
8155
|
+
interface ItemReference {
|
|
8156
|
+
readonly 'number': string;
|
|
8157
|
+
}
|
|
8158
|
+
|
|
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;
|
|
8181
|
+
}
|
|
8182
|
+
|
|
8183
|
+
interface LineItemQuantityForm {
|
|
8184
|
+
readonly 'quantity': number;
|
|
8185
|
+
}
|
|
8186
|
+
|
|
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;
|
|
8192
|
+
}
|
|
8193
|
+
|
|
8194
|
+
interface LogoImageStatic {
|
|
8195
|
+
readonly 'url': string;
|
|
8196
|
+
readonly 'width': number;
|
|
8197
|
+
readonly 'height': number;
|
|
8198
|
+
}
|
|
8199
|
+
|
|
8200
|
+
interface LogoImageSvg {
|
|
8201
|
+
readonly 'discriminator': 'svg';
|
|
8202
|
+
readonly 'url': string;
|
|
8203
|
+
}
|
|
8204
|
+
|
|
8205
|
+
interface Margin {
|
|
8206
|
+
readonly 'type': io.flow.common.v0.enums.MarginType;
|
|
8207
|
+
readonly 'value': number;
|
|
8208
|
+
}
|
|
8209
|
+
|
|
8210
|
+
interface Measurement {
|
|
8211
|
+
readonly 'value': string;
|
|
8212
|
+
readonly 'units': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
8213
|
+
}
|
|
8214
|
+
|
|
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;
|
|
8227
|
+
}
|
|
8228
|
+
|
|
8229
|
+
interface MerchantOfRecordEntityRegistration {
|
|
8230
|
+
readonly 'number': string;
|
|
8231
|
+
readonly 'country': string;
|
|
8232
|
+
}
|
|
8233
|
+
|
|
8234
|
+
interface Money {
|
|
8040
8235
|
readonly 'amount': number;
|
|
8041
8236
|
readonly 'currency': string;
|
|
8237
|
+
}
|
|
8238
|
+
|
|
8239
|
+
interface MoneyWithBase {
|
|
8240
|
+
readonly 'currency': string;
|
|
8241
|
+
readonly 'amount': number;
|
|
8242
|
+
readonly 'base': io.flow.common.v0.models.Money;
|
|
8243
|
+
}
|
|
8244
|
+
|
|
8245
|
+
interface MoneyWithOptionalBase {
|
|
8246
|
+
readonly 'currency': string;
|
|
8247
|
+
readonly 'amount': number;
|
|
8042
8248
|
readonly 'base'?: io.flow.common.v0.models.Money;
|
|
8043
|
-
readonly 'chargeback_issued_at': string;
|
|
8044
|
-
readonly 'created_at': string;
|
|
8045
|
-
readonly 'payment_status': io.flow.payment.internal.v0.enums.ChargebackPaymentStatus;
|
|
8046
|
-
readonly 'process_status': io.flow.payment.internal.v0.enums.ChargebackProcessStatus;
|
|
8047
|
-
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
8048
|
-
readonly 'processor_reason': string;
|
|
8049
|
-
readonly 'processor_status': string;
|
|
8050
|
-
readonly 'processor_reference'?: string;
|
|
8051
|
-
readonly 'provider_reference'?: string;
|
|
8052
|
-
readonly 'provider_reason_code'?: string;
|
|
8053
8249
|
}
|
|
8054
8250
|
|
|
8055
|
-
interface
|
|
8056
|
-
readonly '
|
|
8057
|
-
readonly '
|
|
8058
|
-
|
|
8059
|
-
|
|
8251
|
+
interface Name {
|
|
8252
|
+
readonly 'first'?: string;
|
|
8253
|
+
readonly 'last'?: string;
|
|
8254
|
+
}
|
|
8255
|
+
|
|
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;
|
|
8263
|
+
}
|
|
8264
|
+
|
|
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;
|
|
8060
8272
|
}
|
|
8061
8273
|
|
|
8062
|
-
interface
|
|
8274
|
+
interface Organization {
|
|
8275
|
+
readonly 'discriminator': 'organization';
|
|
8063
8276
|
readonly 'id': string;
|
|
8064
|
-
readonly '
|
|
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;
|
|
8065
8284
|
}
|
|
8066
8285
|
|
|
8067
|
-
interface
|
|
8068
|
-
readonly '
|
|
8069
|
-
readonly '
|
|
8070
|
-
readonly '
|
|
8286
|
+
interface OrganizationDefaults {
|
|
8287
|
+
readonly 'country': string;
|
|
8288
|
+
readonly 'base_currency': string;
|
|
8289
|
+
readonly 'language': string;
|
|
8290
|
+
readonly 'locale': string;
|
|
8291
|
+
readonly 'timezone': string;
|
|
8071
8292
|
}
|
|
8072
8293
|
|
|
8073
|
-
interface
|
|
8294
|
+
interface OrganizationReference {
|
|
8295
|
+
readonly 'discriminator': 'organization_reference';
|
|
8074
8296
|
readonly 'id': string;
|
|
8075
8297
|
}
|
|
8076
8298
|
|
|
8077
|
-
interface
|
|
8078
|
-
readonly '
|
|
8079
|
-
readonly '
|
|
8299
|
+
interface OrganizationSummary {
|
|
8300
|
+
readonly 'id': string;
|
|
8301
|
+
readonly 'name': string;
|
|
8302
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
8080
8303
|
}
|
|
8081
8304
|
|
|
8082
|
-
interface
|
|
8083
|
-
readonly 'discriminator': 'crypto_account';
|
|
8305
|
+
interface PartnerReference {
|
|
8084
8306
|
readonly 'id': string;
|
|
8085
|
-
readonly 'organization_id': string;
|
|
8086
|
-
readonly 'key': string;
|
|
8087
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
8088
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.CryptoAuthentication;
|
|
8089
|
-
readonly 'country': string;
|
|
8090
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8091
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8092
|
-
readonly 'created_at': string;
|
|
8093
|
-
readonly 'updated_at': string;
|
|
8094
8307
|
}
|
|
8095
8308
|
|
|
8096
|
-
interface
|
|
8097
|
-
readonly '
|
|
8098
|
-
readonly '
|
|
8099
|
-
readonly '
|
|
8100
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8309
|
+
interface Price {
|
|
8310
|
+
readonly 'amount': number;
|
|
8311
|
+
readonly 'currency': string;
|
|
8312
|
+
readonly 'label': string;
|
|
8101
8313
|
}
|
|
8102
8314
|
|
|
8103
|
-
interface
|
|
8104
|
-
readonly '
|
|
8105
|
-
readonly '
|
|
8106
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.CryptoAuthenticationForm;
|
|
8107
|
-
readonly 'country': string;
|
|
8108
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8109
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8315
|
+
interface PriceForm {
|
|
8316
|
+
readonly 'amount': number;
|
|
8317
|
+
readonly 'currency': string;
|
|
8110
8318
|
}
|
|
8111
8319
|
|
|
8112
|
-
interface
|
|
8113
|
-
readonly '
|
|
8114
|
-
readonly '
|
|
8115
|
-
readonly 'signature_secret_reference': string;
|
|
8320
|
+
interface PriceSourceCatalog {
|
|
8321
|
+
readonly 'discriminator': 'catalog';
|
|
8322
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
8116
8323
|
}
|
|
8117
8324
|
|
|
8118
|
-
interface
|
|
8119
|
-
readonly '
|
|
8120
|
-
readonly '
|
|
8121
|
-
readonly '
|
|
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;
|
|
8122
8330
|
}
|
|
8123
8331
|
|
|
8124
|
-
interface
|
|
8332
|
+
interface PriceSourcePriceBookReference {
|
|
8125
8333
|
readonly 'id': string;
|
|
8126
|
-
readonly '
|
|
8334
|
+
readonly 'key': string;
|
|
8127
8335
|
}
|
|
8128
8336
|
|
|
8129
|
-
interface
|
|
8130
|
-
readonly '
|
|
8131
|
-
readonly '
|
|
8132
|
-
readonly 'attributes': Record<string, string>;
|
|
8337
|
+
interface PriceSourceProvided {
|
|
8338
|
+
readonly 'discriminator': 'provided';
|
|
8339
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
8133
8340
|
}
|
|
8134
8341
|
|
|
8135
|
-
interface
|
|
8136
|
-
readonly '
|
|
8137
|
-
readonly '
|
|
8138
|
-
readonly '
|
|
8139
|
-
readonly '
|
|
8140
|
-
readonly 'passphrase_ids': 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;
|
|
8141
8347
|
}
|
|
8142
8348
|
|
|
8143
|
-
interface
|
|
8144
|
-
readonly '
|
|
8145
|
-
readonly '
|
|
8146
|
-
readonly 'title': string;
|
|
8147
|
-
readonly 'category_group': string;
|
|
8148
|
-
readonly 'description'?: string;
|
|
8349
|
+
interface RepeatDaily {
|
|
8350
|
+
readonly 'discriminator': 'repeat_daily';
|
|
8351
|
+
readonly 'interval': number;
|
|
8149
8352
|
}
|
|
8150
8353
|
|
|
8151
|
-
interface
|
|
8152
|
-
readonly 'discriminator': '
|
|
8153
|
-
readonly '
|
|
8154
|
-
readonly 'organization_id': string;
|
|
8155
|
-
readonly 'key': string;
|
|
8156
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
8157
|
-
readonly 'region': string;
|
|
8158
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.FiservAuthentication;
|
|
8159
|
-
readonly 'country': string;
|
|
8160
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8161
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8162
|
-
readonly 'created_at': string;
|
|
8163
|
-
readonly 'updated_at': string;
|
|
8354
|
+
interface RepeatHourly {
|
|
8355
|
+
readonly 'discriminator': 'repeat_hourly';
|
|
8356
|
+
readonly 'interval': number;
|
|
8164
8357
|
}
|
|
8165
8358
|
|
|
8166
|
-
interface
|
|
8167
|
-
readonly 'discriminator': '
|
|
8168
|
-
readonly '
|
|
8169
|
-
readonly '
|
|
8170
|
-
readonly 'country': string;
|
|
8171
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8359
|
+
interface RepeatMonthly {
|
|
8360
|
+
readonly 'discriminator': 'repeat_monthly';
|
|
8361
|
+
readonly 'interval': number;
|
|
8362
|
+
readonly 'days': number[];
|
|
8172
8363
|
}
|
|
8173
8364
|
|
|
8174
|
-
interface
|
|
8175
|
-
readonly 'discriminator': '
|
|
8176
|
-
readonly '
|
|
8177
|
-
readonly '
|
|
8178
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.FiservAuthenticationForm;
|
|
8179
|
-
readonly 'country': string;
|
|
8180
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8181
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8365
|
+
interface RepeatWeekly {
|
|
8366
|
+
readonly 'discriminator': 'repeat_weekly';
|
|
8367
|
+
readonly 'interval': number;
|
|
8368
|
+
readonly 'days_of_week': io.flow.common.v0.enums.DayOfWeek[];
|
|
8182
8369
|
}
|
|
8183
8370
|
|
|
8184
|
-
interface
|
|
8185
|
-
readonly '
|
|
8186
|
-
readonly '
|
|
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;
|
|
8187
8375
|
}
|
|
8188
8376
|
|
|
8189
|
-
interface
|
|
8190
|
-
readonly '
|
|
8191
|
-
readonly '
|
|
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;
|
|
8192
8384
|
}
|
|
8193
8385
|
|
|
8194
|
-
interface
|
|
8195
|
-
readonly '
|
|
8196
|
-
readonly 'secret_key': string;
|
|
8386
|
+
interface SessionReference {
|
|
8387
|
+
readonly 'id': string;
|
|
8197
8388
|
}
|
|
8198
8389
|
|
|
8199
|
-
interface
|
|
8200
|
-
readonly 'discriminator': '
|
|
8390
|
+
interface User {
|
|
8391
|
+
readonly 'discriminator': 'user';
|
|
8201
8392
|
readonly 'id': string;
|
|
8202
|
-
readonly '
|
|
8203
|
-
readonly '
|
|
8204
|
-
readonly '
|
|
8205
|
-
readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
|
|
8206
|
-
readonly 'base_currency': string;
|
|
8207
|
-
readonly 'funding_currency': string;
|
|
8208
|
-
readonly 'country': string;
|
|
8209
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8210
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8211
|
-
readonly 'created_at': string;
|
|
8212
|
-
readonly 'updated_at': string;
|
|
8393
|
+
readonly 'email'?: string;
|
|
8394
|
+
readonly 'name': io.flow.common.v0.models.Name;
|
|
8395
|
+
readonly 'status': io.flow.common.v0.enums.UserStatus;
|
|
8213
8396
|
}
|
|
8214
8397
|
|
|
8215
|
-
interface
|
|
8216
|
-
readonly 'discriminator': '
|
|
8217
|
-
readonly '
|
|
8218
|
-
readonly 'base_currency': string;
|
|
8219
|
-
readonly 'funding_currency': string;
|
|
8220
|
-
readonly 'country': string;
|
|
8221
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8398
|
+
interface UserReference {
|
|
8399
|
+
readonly 'discriminator': 'user_reference';
|
|
8400
|
+
readonly 'id': string;
|
|
8222
8401
|
}
|
|
8223
8402
|
|
|
8224
|
-
interface
|
|
8225
|
-
readonly '
|
|
8226
|
-
readonly '
|
|
8227
|
-
readonly 'external_id': string;
|
|
8228
|
-
readonly 'base_currency': string;
|
|
8229
|
-
readonly 'funding_currency': string;
|
|
8403
|
+
interface Zone {
|
|
8404
|
+
readonly 'postals'?: string[];
|
|
8405
|
+
readonly 'provinces'?: string[];
|
|
8230
8406
|
readonly 'country': string;
|
|
8231
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8232
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8233
8407
|
}
|
|
8408
|
+
}
|
|
8234
8409
|
|
|
8235
|
-
|
|
8236
|
-
|
|
8237
|
-
|
|
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;
|
|
8238
8437
|
}
|
|
8239
8438
|
|
|
8240
|
-
interface
|
|
8241
|
-
readonly '
|
|
8242
|
-
readonly '
|
|
8439
|
+
interface MarkedAsFinal {
|
|
8440
|
+
readonly 'products': boolean;
|
|
8441
|
+
readonly 'shipping': boolean;
|
|
8243
8442
|
}
|
|
8244
8443
|
|
|
8245
|
-
interface
|
|
8246
|
-
readonly '
|
|
8247
|
-
readonly '
|
|
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;
|
|
8248
8448
|
}
|
|
8249
8449
|
|
|
8250
|
-
interface
|
|
8251
|
-
readonly '
|
|
8252
|
-
readonly 'fiserv_authentication_data': io.flow.payment.internal.v0.models.FiservAuthenticationDataReference;
|
|
8450
|
+
interface RecordReference {
|
|
8451
|
+
readonly 'id': string;
|
|
8253
8452
|
}
|
|
8254
8453
|
|
|
8255
|
-
interface
|
|
8256
|
-
readonly '
|
|
8257
|
-
readonly '
|
|
8454
|
+
interface Report {
|
|
8455
|
+
readonly 'id': string;
|
|
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;
|
|
8258
8462
|
}
|
|
8259
8463
|
|
|
8260
|
-
interface
|
|
8261
|
-
readonly '
|
|
8262
|
-
readonly '
|
|
8464
|
+
interface ReportAccount {
|
|
8465
|
+
readonly 'id': string;
|
|
8466
|
+
readonly 'source': io.flow.billing.internal.v0.models.AccountSource;
|
|
8263
8467
|
}
|
|
8264
8468
|
|
|
8265
|
-
interface
|
|
8266
|
-
readonly '
|
|
8267
|
-
readonly '
|
|
8469
|
+
interface ReportBankAccount {
|
|
8470
|
+
readonly 'id'?: string;
|
|
8471
|
+
readonly 'last4'?: string;
|
|
8268
8472
|
}
|
|
8269
8473
|
|
|
8270
|
-
interface
|
|
8271
|
-
readonly '
|
|
8272
|
-
readonly '
|
|
8273
|
-
readonly '
|
|
8274
|
-
readonly 'network_details'?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
8474
|
+
interface ReportForm {
|
|
8475
|
+
readonly 'from': string;
|
|
8476
|
+
readonly 'to': string;
|
|
8477
|
+
readonly 'type': io.flow.billing.reporting.v0.enums.ReportType;
|
|
8275
8478
|
}
|
|
8276
8479
|
|
|
8277
|
-
interface
|
|
8480
|
+
interface ReportPayment {
|
|
8278
8481
|
readonly 'id': string;
|
|
8279
8482
|
readonly 'created_at': string;
|
|
8280
8483
|
}
|
|
8281
8484
|
|
|
8282
|
-
interface
|
|
8485
|
+
interface ReportingAuthorizationReference {
|
|
8283
8486
|
readonly 'id': string;
|
|
8284
8487
|
}
|
|
8285
8488
|
|
|
8286
|
-
interface
|
|
8287
|
-
readonly '
|
|
8288
|
-
readonly '
|
|
8289
|
-
readonly 'payment_method_categories': io.flow.payment.internal.v0.models.KlarnaPaymentMethodCategory[];
|
|
8489
|
+
interface ReportingBusiness {
|
|
8490
|
+
readonly 'vat_registration_number': string;
|
|
8491
|
+
readonly 'name'?: string;
|
|
8290
8492
|
}
|
|
8291
8493
|
|
|
8292
|
-
interface
|
|
8293
|
-
readonly '
|
|
8294
|
-
readonly '
|
|
8295
|
-
readonly '
|
|
8296
|
-
readonly '
|
|
8494
|
+
interface ReportingConversionRates {
|
|
8495
|
+
readonly 'merchant': number;
|
|
8496
|
+
readonly 'entity': number;
|
|
8497
|
+
readonly 'usd': number;
|
|
8498
|
+
readonly 'eur': number;
|
|
8297
8499
|
}
|
|
8298
8500
|
|
|
8299
|
-
interface
|
|
8300
|
-
readonly '
|
|
8301
|
-
readonly '
|
|
8302
|
-
readonly 'organization': string;
|
|
8303
|
-
readonly 'key': string;
|
|
8304
|
-
readonly 'expires_at': string;
|
|
8501
|
+
interface ReportingCountry {
|
|
8502
|
+
readonly 'code': string;
|
|
8503
|
+
readonly 'is_eu': boolean;
|
|
8305
8504
|
}
|
|
8306
8505
|
|
|
8307
|
-
interface
|
|
8308
|
-
readonly '
|
|
8309
|
-
readonly '
|
|
8310
|
-
readonly '
|
|
8311
|
-
readonly 'status': io.flow.payment.internal.v0.enums.OrganizationPaymentStatus;
|
|
8312
|
-
readonly 'checkout_domain'?: string;
|
|
8313
|
-
readonly 'merchant_category_code'?: string;
|
|
8314
|
-
readonly 'payment_statement_suffix'?: string;
|
|
8315
|
-
readonly 'payment_statement_condensed'?: string;
|
|
8316
|
-
readonly 'created_at': string;
|
|
8317
|
-
readonly 'updated_at': string;
|
|
8506
|
+
interface ReportingCurrencies {
|
|
8507
|
+
readonly 'transaction': string;
|
|
8508
|
+
readonly 'merchant': string;
|
|
8509
|
+
readonly 'entity': string;
|
|
8318
8510
|
}
|
|
8319
8511
|
|
|
8320
|
-
interface
|
|
8321
|
-
readonly '
|
|
8322
|
-
readonly '
|
|
8323
|
-
readonly '
|
|
8324
|
-
readonly '
|
|
8325
|
-
readonly '
|
|
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;
|
|
8326
8518
|
}
|
|
8327
8519
|
|
|
8328
|
-
interface
|
|
8329
|
-
readonly '
|
|
8330
|
-
readonly '
|
|
8331
|
-
readonly '
|
|
8332
|
-
readonly 'organization_payment_setting': io.flow.payment.internal.v0.models.OrganizationPaymentSetting;
|
|
8520
|
+
interface ReportingDebugMissingSubsidies {
|
|
8521
|
+
readonly 'price'?: boolean;
|
|
8522
|
+
readonly 'tax'?: boolean;
|
|
8523
|
+
readonly 'duty'?: boolean;
|
|
8333
8524
|
}
|
|
8334
8525
|
|
|
8335
|
-
interface
|
|
8336
|
-
readonly '
|
|
8337
|
-
readonly '
|
|
8338
|
-
readonly 'salt': string;
|
|
8339
|
-
readonly 'iv': string;
|
|
8340
|
-
readonly 'challenge_cipher': string;
|
|
8341
|
-
readonly 'challenge_text': string;
|
|
8526
|
+
interface ReportingDestination {
|
|
8527
|
+
readonly 'country': io.flow.billing.reporting.v0.models.ReportingCountry;
|
|
8528
|
+
readonly 'province'?: io.flow.billing.reporting.v0.models.ReportingProvince;
|
|
8342
8529
|
}
|
|
8343
8530
|
|
|
8344
|
-
interface
|
|
8345
|
-
readonly '
|
|
8346
|
-
readonly 'current_password'?: string;
|
|
8347
|
-
readonly 'new_password': string;
|
|
8531
|
+
interface ReportingEntity {
|
|
8532
|
+
readonly 'id': string;
|
|
8348
8533
|
}
|
|
8349
8534
|
|
|
8350
|
-
interface
|
|
8535
|
+
interface ReportingFulfillment {
|
|
8351
8536
|
readonly 'id': string;
|
|
8352
|
-
readonly '
|
|
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;
|
|
8353
8550
|
}
|
|
8354
8551
|
|
|
8355
|
-
interface
|
|
8356
|
-
readonly '
|
|
8357
|
-
readonly 'method_options'?: io.flow.payment.internal.v0.models.PaymentMethodOption[];
|
|
8552
|
+
interface ReportingFulfillmentHas {
|
|
8553
|
+
readonly 'zero_vat_product': boolean;
|
|
8358
8554
|
}
|
|
8359
8555
|
|
|
8360
|
-
interface
|
|
8361
|
-
readonly '
|
|
8362
|
-
readonly '
|
|
8363
|
-
readonly '
|
|
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;
|
|
8364
8563
|
}
|
|
8365
8564
|
|
|
8366
|
-
interface
|
|
8367
|
-
readonly '
|
|
8368
|
-
readonly '
|
|
8369
|
-
readonly '
|
|
8370
|
-
readonly '
|
|
8371
|
-
readonly '
|
|
8372
|
-
readonly '
|
|
8373
|
-
readonly 'payment_statement_suffix'?: string;
|
|
8374
|
-
readonly 'payment_statement_condensed'?: string;
|
|
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;
|
|
8375
8572
|
}
|
|
8376
8573
|
|
|
8377
|
-
interface
|
|
8378
|
-
readonly '
|
|
8379
|
-
readonly '
|
|
8380
|
-
readonly '
|
|
8381
|
-
readonly 'domain'?: string;
|
|
8382
|
-
readonly 'merchant_category_code'?: number;
|
|
8383
|
-
readonly 'payment_statement_suffix'?: string;
|
|
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;
|
|
8384
8578
|
}
|
|
8385
8579
|
|
|
8386
|
-
interface
|
|
8387
|
-
readonly '
|
|
8388
|
-
readonly '
|
|
8389
|
-
readonly '
|
|
8390
|
-
readonly '
|
|
8391
|
-
readonly '
|
|
8392
|
-
readonly '
|
|
8393
|
-
readonly '
|
|
8394
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8395
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8396
|
-
readonly 'created_at': string;
|
|
8397
|
-
readonly 'updated_at': string;
|
|
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;
|
|
8398
8588
|
}
|
|
8399
8589
|
|
|
8400
|
-
interface
|
|
8401
|
-
readonly '
|
|
8402
|
-
readonly '
|
|
8403
|
-
readonly '
|
|
8404
|
-
readonly '
|
|
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;
|
|
8405
8595
|
}
|
|
8406
8596
|
|
|
8407
|
-
interface
|
|
8408
|
-
readonly '
|
|
8409
|
-
readonly '
|
|
8410
|
-
readonly '
|
|
8411
|
-
readonly '
|
|
8412
|
-
readonly '
|
|
8413
|
-
readonly '
|
|
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;
|
|
8414
8604
|
}
|
|
8415
8605
|
|
|
8416
|
-
interface
|
|
8606
|
+
interface ReportingMonetaryValue {
|
|
8607
|
+
readonly 'transaction': number;
|
|
8608
|
+
readonly 'merchant': number;
|
|
8609
|
+
readonly 'entity': number;
|
|
8610
|
+
readonly 'usd': number;
|
|
8611
|
+
readonly 'eur': number;
|
|
8612
|
+
}
|
|
8613
|
+
|
|
8614
|
+
interface ReportingOrderSummary {
|
|
8417
8615
|
readonly 'id': string;
|
|
8418
|
-
readonly '
|
|
8616
|
+
readonly 'number': string;
|
|
8617
|
+
readonly 'submitted_at': string;
|
|
8419
8618
|
}
|
|
8420
8619
|
|
|
8421
|
-
interface
|
|
8422
|
-
readonly '
|
|
8423
|
-
readonly '
|
|
8620
|
+
interface ReportingOrganizationSummary {
|
|
8621
|
+
readonly 'id': string;
|
|
8622
|
+
readonly 'name': string;
|
|
8424
8623
|
}
|
|
8425
8624
|
|
|
8426
|
-
interface
|
|
8427
|
-
readonly '
|
|
8428
|
-
readonly '
|
|
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;
|
|
8429
8630
|
}
|
|
8430
8631
|
|
|
8431
|
-
interface
|
|
8432
|
-
readonly '
|
|
8433
|
-
readonly '
|
|
8434
|
-
readonly '
|
|
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;
|
|
8435
8639
|
}
|
|
8436
8640
|
|
|
8437
|
-
interface
|
|
8438
|
-
readonly '
|
|
8439
|
-
readonly 'id': string;
|
|
8440
|
-
readonly 'key': string;
|
|
8441
|
-
readonly 'organization_id': string;
|
|
8442
|
-
readonly 'external_id': string;
|
|
8443
|
-
readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
|
|
8444
|
-
readonly 'country': string;
|
|
8445
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8446
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8447
|
-
readonly 'created_at': string;
|
|
8448
|
-
readonly 'updated_at': string;
|
|
8641
|
+
interface ReportingPaymentMetadataAdditionalAuthorizations {
|
|
8642
|
+
readonly 'ids': string;
|
|
8449
8643
|
}
|
|
8450
8644
|
|
|
8451
|
-
interface
|
|
8452
|
-
readonly '
|
|
8453
|
-
readonly '
|
|
8454
|
-
readonly 'country': string;
|
|
8455
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8645
|
+
interface ReportingProvince {
|
|
8646
|
+
readonly 'code'?: string;
|
|
8647
|
+
readonly 'name': string;
|
|
8456
8648
|
}
|
|
8457
8649
|
|
|
8458
|
-
interface
|
|
8459
|
-
readonly '
|
|
8460
|
-
readonly '
|
|
8461
|
-
readonly '
|
|
8462
|
-
readonly 'country': string;
|
|
8463
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8464
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8650
|
+
interface ReportingReconciliation {
|
|
8651
|
+
readonly 'date': string;
|
|
8652
|
+
readonly 'month': number;
|
|
8653
|
+
readonly 'year': number;
|
|
8465
8654
|
}
|
|
8466
8655
|
|
|
8467
|
-
interface
|
|
8656
|
+
interface ReportingRefundReference {
|
|
8468
8657
|
readonly 'id': string;
|
|
8469
|
-
readonly 'organization_id': string;
|
|
8470
|
-
readonly 'key': string;
|
|
8471
|
-
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
8472
|
-
readonly 'country': string;
|
|
8473
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
8474
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8475
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8476
8658
|
}
|
|
8477
8659
|
|
|
8478
|
-
interface
|
|
8479
|
-
readonly '
|
|
8660
|
+
interface ReportingShipment {
|
|
8661
|
+
readonly 'carrier': string;
|
|
8662
|
+
readonly 'tracking_number'?: string;
|
|
8480
8663
|
}
|
|
8481
8664
|
|
|
8482
|
-
interface
|
|
8483
|
-
readonly '
|
|
8484
|
-
readonly '
|
|
8485
|
-
readonly '
|
|
8486
|
-
readonly '
|
|
8487
|
-
readonly '
|
|
8488
|
-
readonly '
|
|
8489
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
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;
|
|
8490
8672
|
}
|
|
8491
8673
|
|
|
8492
|
-
interface
|
|
8493
|
-
readonly '
|
|
8494
|
-
readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
|
|
8495
|
-
readonly 'reason': io.flow.payment.internal.v0.enums.RedirectReason;
|
|
8674
|
+
interface ReportingUsd {
|
|
8675
|
+
readonly 'usd': number;
|
|
8496
8676
|
}
|
|
8497
8677
|
|
|
8498
|
-
interface
|
|
8499
|
-
readonly '
|
|
8500
|
-
readonly '
|
|
8501
|
-
readonly 'organization': string;
|
|
8502
|
-
readonly 'key': string;
|
|
8503
|
-
readonly 'expires_at': string;
|
|
8504
|
-
readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
|
|
8505
|
-
readonly 'inline_notification_urls'?: io.flow.payment.v0.models.PostPaymentRedirectUrls;
|
|
8678
|
+
interface ReportingVatRemittance {
|
|
8679
|
+
readonly 'currency': string;
|
|
8680
|
+
readonly 'rate': io.flow.billing.reporting.v0.models.ReportingVatRemittanceRate;
|
|
8506
8681
|
}
|
|
8507
8682
|
|
|
8508
|
-
interface
|
|
8509
|
-
readonly '
|
|
8510
|
-
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
8511
|
-
readonly 'processor_account': io.flow.payment.internal.v0.models.ProcessorAccountReference;
|
|
8683
|
+
interface ReportingVatRemittanceRate {
|
|
8684
|
+
readonly 'entity': number;
|
|
8512
8685
|
}
|
|
8513
8686
|
|
|
8514
|
-
interface
|
|
8515
|
-
readonly '
|
|
8516
|
-
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
8517
|
-
readonly 'processor_account': io.flow.payment.internal.v0.models.ProcessorAccountReference;
|
|
8518
|
-
readonly 'processor_merchant': io.flow.payment.internal.v0.models.ProcessorMerchantReference;
|
|
8687
|
+
interface ReportingVendor {
|
|
8688
|
+
readonly 'id': string;
|
|
8519
8689
|
}
|
|
8520
8690
|
|
|
8521
|
-
interface
|
|
8522
|
-
readonly '
|
|
8523
|
-
readonly '
|
|
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;
|
|
8524
8707
|
}
|
|
8708
|
+
}
|
|
8525
8709
|
|
|
8526
|
-
|
|
8527
|
-
|
|
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
|
+
}
|
|
8723
|
+
|
|
8724
|
+
declare namespace io.flow.payment.internal.v0.models {
|
|
8725
|
+
interface AdyenAccount {
|
|
8726
|
+
readonly 'discriminator': 'adyen_account';
|
|
8528
8727
|
readonly 'id': string;
|
|
8529
8728
|
readonly 'organization_id': string;
|
|
8530
8729
|
readonly 'key': string;
|
|
8531
8730
|
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
8532
8731
|
readonly 'name': string;
|
|
8533
|
-
readonly '
|
|
8732
|
+
readonly 'ui_reference': string;
|
|
8733
|
+
readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthentication;
|
|
8534
8734
|
readonly 'country': string;
|
|
8535
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.StripeAuthentication;
|
|
8536
8735
|
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8537
8736
|
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8538
8737
|
readonly 'created_at': string;
|
|
8539
8738
|
readonly 'updated_at': string;
|
|
8540
8739
|
}
|
|
8541
8740
|
|
|
8542
|
-
interface
|
|
8543
|
-
readonly 'discriminator': '
|
|
8741
|
+
interface AdyenAccountModificationForm {
|
|
8742
|
+
readonly 'discriminator': 'adyen_account_modification_form';
|
|
8544
8743
|
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
8545
8744
|
readonly 'name': string;
|
|
8546
|
-
readonly '
|
|
8745
|
+
readonly 'ui_reference': string;
|
|
8547
8746
|
readonly 'country': string;
|
|
8548
8747
|
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8549
8748
|
}
|
|
8550
8749
|
|
|
8551
|
-
interface
|
|
8552
|
-
readonly 'discriminator': '
|
|
8750
|
+
interface AdyenAccountPutForm {
|
|
8751
|
+
readonly 'discriminator': 'adyen_account_put_form';
|
|
8553
8752
|
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
8554
8753
|
readonly 'name': string;
|
|
8555
|
-
readonly '
|
|
8754
|
+
readonly 'ui_reference': string;
|
|
8755
|
+
readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthenticationForm;
|
|
8556
8756
|
readonly 'country': string;
|
|
8557
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.StripeAuthenticationForm;
|
|
8558
8757
|
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8559
8758
|
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8560
8759
|
}
|
|
8561
8760
|
|
|
8562
|
-
interface
|
|
8563
|
-
readonly '
|
|
8564
|
-
readonly '
|
|
8761
|
+
interface AdyenAuthentication {
|
|
8762
|
+
readonly 'username': string;
|
|
8763
|
+
readonly 'password_reference': string;
|
|
8764
|
+
readonly 'signature_secret_reference': string;
|
|
8565
8765
|
}
|
|
8566
8766
|
|
|
8567
|
-
interface
|
|
8568
|
-
readonly '
|
|
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;
|
|
8569
8772
|
}
|
|
8570
8773
|
|
|
8571
|
-
interface
|
|
8572
|
-
readonly '
|
|
8573
|
-
readonly '
|
|
8774
|
+
interface AdyenAuthenticationForm {
|
|
8775
|
+
readonly 'username': string;
|
|
8776
|
+
readonly 'password': string;
|
|
8777
|
+
readonly 'signature_secret': string;
|
|
8574
8778
|
}
|
|
8575
8779
|
|
|
8576
|
-
interface
|
|
8577
|
-
readonly 'discriminator': '
|
|
8780
|
+
interface AdyenMerchant {
|
|
8781
|
+
readonly 'discriminator': 'adyen_merchant';
|
|
8578
8782
|
readonly 'id': string;
|
|
8579
8783
|
readonly 'key': string;
|
|
8580
8784
|
readonly 'organization_id': string;
|
|
8581
8785
|
readonly 'external_id': string;
|
|
8582
8786
|
readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
|
|
8583
|
-
readonly 'name': string;
|
|
8584
|
-
readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
|
|
8585
8787
|
readonly 'country': string;
|
|
8586
8788
|
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8587
8789
|
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
@@ -8589,980 +8791,874 @@ declare namespace io.flow.payment.internal.v0.models {
|
|
|
8589
8791
|
readonly 'updated_at': string;
|
|
8590
8792
|
}
|
|
8591
8793
|
|
|
8592
|
-
interface
|
|
8593
|
-
readonly 'discriminator': '
|
|
8594
|
-
readonly 'key'?: string;
|
|
8595
|
-
readonly 'organization_id': string;
|
|
8596
|
-
readonly 'name': string;
|
|
8597
|
-
readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
|
|
8598
|
-
readonly 'country': string;
|
|
8599
|
-
readonly 'payment_statement': string;
|
|
8600
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8601
|
-
}
|
|
8602
|
-
|
|
8603
|
-
interface StripeMerchantModificationForm {
|
|
8604
|
-
readonly 'discriminator': 'stripe_merchant_modification_form';
|
|
8605
|
-
readonly 'external_id': string;
|
|
8606
|
-
readonly 'name': string;
|
|
8607
|
-
readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
|
|
8608
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8609
|
-
readonly 'country': string;
|
|
8610
|
-
}
|
|
8611
|
-
|
|
8612
|
-
interface StripeMerchantPutForm {
|
|
8613
|
-
readonly 'discriminator': 'stripe_merchant_put_form';
|
|
8614
|
-
readonly 'organization_id': string;
|
|
8794
|
+
interface AdyenMerchantModificationForm {
|
|
8795
|
+
readonly 'discriminator': 'adyen_merchant_modification_form';
|
|
8615
8796
|
readonly 'external_id': string;
|
|
8616
|
-
readonly 'name': string;
|
|
8617
|
-
readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
|
|
8618
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8619
8797
|
readonly 'country': string;
|
|
8620
|
-
readonly '
|
|
8621
|
-
}
|
|
8622
|
-
|
|
8623
|
-
interface Tribe {
|
|
8624
|
-
readonly 'id': string;
|
|
8625
|
-
readonly 'description': string;
|
|
8626
|
-
}
|
|
8627
|
-
|
|
8628
|
-
interface VirtualCardProvider {
|
|
8629
|
-
readonly 'id': string;
|
|
8630
|
-
readonly 'organization_id': string;
|
|
8631
|
-
readonly 'provider': string;
|
|
8632
|
-
readonly 'attributes'?: Record<string, string>;
|
|
8633
|
-
readonly 'created_at': string;
|
|
8634
|
-
readonly 'updated_at': string;
|
|
8635
|
-
}
|
|
8636
|
-
}
|
|
8637
|
-
|
|
8638
|
-
declare namespace io.flow.payment.internal.v0.unions {
|
|
8639
|
-
type AuthorizationPayload = (io.flow.payment.internal.v0.models.ApplePayAuthorizationPayload | io.flow.payment.internal.v0.models.PaypalAuthorizationPayload);
|
|
8640
|
-
type InlineAuthorizationParameters = (io.flow.payment.internal.v0.models.KlarnaAuthorizationParameters);
|
|
8641
|
-
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);
|
|
8642
|
-
type InternalRefundForm = (io.flow.payment.internal.v0.models.AdyenRefundForm);
|
|
8643
|
-
type InternalTransactionDetails = (io.flow.payment.internal.v0.models.InternalTransactionDetailsCard);
|
|
8644
|
-
type PaymentRedirect = (io.flow.payment.internal.v0.models.OnlineAuthorizationCompleted | io.flow.payment.internal.v0.models.RedirectActionCompleted);
|
|
8645
|
-
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);
|
|
8646
|
-
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);
|
|
8647
|
-
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);
|
|
8648
|
-
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);
|
|
8649
|
-
type ProcessorMerchantForm = (io.flow.payment.internal.v0.models.StripeMerchantForm);
|
|
8650
|
-
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);
|
|
8651
|
-
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);
|
|
8652
|
-
type RoutingEntity = (io.flow.payment.internal.v0.models.RoutingProcessor | io.flow.payment.internal.v0.models.RoutingAccount | io.flow.payment.internal.v0.models.RoutingMerchant);
|
|
8653
|
-
}
|
|
8654
|
-
|
|
8655
|
-
declare namespace io.flow.partner.v0.enums {
|
|
8656
|
-
type LabelFormat = 'pdf' | 'zpl' | 'all';
|
|
8657
|
-
}
|
|
8658
|
-
|
|
8659
|
-
declare namespace io.flow.partner.v0.models {
|
|
8660
|
-
interface BridgeHub {
|
|
8661
|
-
readonly 'hub_code': string;
|
|
8662
|
-
readonly 'address': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
8663
|
-
}
|
|
8664
|
-
|
|
8665
|
-
interface BridgeLabelForm {
|
|
8666
|
-
readonly 'discriminator': 'bridge_label_form';
|
|
8667
|
-
readonly 'organization': string;
|
|
8668
|
-
readonly 'order_number': string;
|
|
8669
|
-
readonly 'package': io.flow.partner.v0.models.BridgeLabelPackage;
|
|
8670
|
-
readonly 'hub'?: io.flow.partner.v0.models.BridgeHub;
|
|
8671
|
-
}
|
|
8672
|
-
|
|
8673
|
-
interface BridgeLabelPackage {
|
|
8674
|
-
readonly 'dimensions'?: io.flow.common.v0.models.Dimension;
|
|
8675
|
-
readonly 'items': io.flow.common.v0.models.LineItemForm[];
|
|
8676
|
-
readonly 'reference_number': string;
|
|
8677
|
-
}
|
|
8678
|
-
|
|
8679
|
-
interface DetailedLabelForm {
|
|
8680
|
-
readonly 'discriminator': 'detailed_label_form';
|
|
8681
|
-
readonly 'organization': string;
|
|
8682
|
-
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
8683
|
-
readonly 'order_number': string;
|
|
8684
|
-
readonly 'origin': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
8685
|
-
readonly 'package': io.flow.label.v0.models.ShippingLabelPackage;
|
|
8686
|
-
readonly 'service'?: string;
|
|
8687
|
-
readonly 'references'?: string[];
|
|
8688
|
-
}
|
|
8689
|
-
|
|
8690
|
-
interface Label {
|
|
8691
|
-
readonly 'id': string;
|
|
8692
|
-
readonly 'organization': io.flow.partner.v0.models.PartnerOrganizationReference;
|
|
8693
|
-
readonly 'order_number': string;
|
|
8694
|
-
readonly 'package': io.flow.label.v0.models.ShippingLabelPackage;
|
|
8695
|
-
readonly 'carrier_tracking_number': string;
|
|
8696
|
-
readonly 'carrier_tracking_number_url': string;
|
|
8697
|
-
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
8698
|
-
readonly 'flow_tracking_number': string;
|
|
8699
|
-
readonly 'flow_tracking_number_url': string;
|
|
8700
|
-
readonly 'origin': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
8701
|
-
readonly 'service': io.flow.fulfillment.v0.models.ServiceSummary;
|
|
8702
|
-
readonly 'window': io.flow.common.v0.models.DatetimeRange;
|
|
8703
|
-
readonly 'zpl'?: string;
|
|
8704
|
-
readonly 'pdf'?: string;
|
|
8705
|
-
readonly 'png'?: string;
|
|
8706
|
-
readonly 'commercial_invoice'?: string;
|
|
8707
|
-
readonly 'references'?: string[];
|
|
8708
|
-
readonly 'label'?: io.flow.label.v0.models.ShippingLabelDocument;
|
|
8709
|
-
readonly 'invoice'?: io.flow.label.v0.models.ShippingLabelDocument;
|
|
8710
|
-
readonly 'cost'?: io.flow.common.v0.models.Price;
|
|
8711
|
-
readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
8712
|
-
}
|
|
8713
|
-
|
|
8714
|
-
interface PartnerBridgeManifest {
|
|
8715
|
-
readonly 'id': string;
|
|
8716
|
-
readonly 'organization': io.flow.partner.v0.models.PartnerOrganizationReference;
|
|
8717
|
-
readonly 'service': io.flow.fulfillment.v0.models.ServiceSummary;
|
|
8718
|
-
readonly 'pdf': string;
|
|
8719
|
-
readonly 'data': string;
|
|
8720
|
-
}
|
|
8721
|
-
|
|
8722
|
-
interface PartnerBridgeManifestForm {
|
|
8723
|
-
readonly 'order_numbers': string[];
|
|
8724
|
-
}
|
|
8725
|
-
|
|
8726
|
-
interface PartnerFulfillment {
|
|
8727
|
-
readonly 'organization': string;
|
|
8728
|
-
readonly 'key': string;
|
|
8729
|
-
readonly 'number': string;
|
|
8730
|
-
readonly 'items': io.flow.order.management.v0.models.FulfillmentItem[];
|
|
8731
|
-
readonly 'center'?: io.flow.fulfillment.v0.models.CenterSummary[];
|
|
8732
|
-
}
|
|
8733
|
-
|
|
8734
|
-
interface PartnerFulfillmentCancellationForm {
|
|
8735
|
-
readonly 'change_source': io.flow.order.management.v0.enums.OrderChangeSource;
|
|
8736
|
-
readonly 'reason': io.flow.order.management.v0.enums.CancelReason;
|
|
8737
|
-
readonly 'lines': io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
8738
|
-
}
|
|
8739
|
-
|
|
8740
|
-
interface PartnerFulfillmentCompleteCancellationForm {
|
|
8741
|
-
readonly 'change_source': io.flow.order.management.v0.enums.OrderChangeSource;
|
|
8742
|
-
readonly 'reason': io.flow.order.management.v0.enums.CancelReason;
|
|
8743
|
-
}
|
|
8744
|
-
|
|
8745
|
-
interface PartnerManifest {
|
|
8746
|
-
readonly 'id': string;
|
|
8747
|
-
readonly 'organization': io.flow.partner.v0.models.PartnerOrganizationReference;
|
|
8748
|
-
readonly 'service'?: io.flow.fulfillment.v0.models.ServiceSummary;
|
|
8749
|
-
readonly 'timestamp': string;
|
|
8750
|
-
readonly 'shipping_labels': io.flow.label.v0.models.ShippingLabelSummary[];
|
|
8751
|
-
readonly 'pdf'?: string;
|
|
8752
|
-
}
|
|
8753
|
-
|
|
8754
|
-
interface PartnerManifestForm {
|
|
8755
|
-
readonly 'tracking_numbers': string[];
|
|
8756
|
-
readonly 'service'?: string;
|
|
8757
|
-
}
|
|
8758
|
-
|
|
8759
|
-
interface PartnerOrderIdentifier {
|
|
8760
|
-
readonly 'id': string;
|
|
8761
|
-
readonly 'organization': io.flow.partner.v0.models.PartnerOrganizationReference;
|
|
8762
|
-
readonly 'order': io.flow.partner.v0.models.PartnerOrderReference;
|
|
8763
|
-
readonly 'number': string;
|
|
8798
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8764
8799
|
}
|
|
8765
8800
|
|
|
8766
|
-
interface
|
|
8767
|
-
readonly '
|
|
8768
|
-
readonly '
|
|
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;
|
|
8769
8808
|
}
|
|
8770
8809
|
|
|
8771
|
-
interface
|
|
8772
|
-
readonly '
|
|
8810
|
+
interface AdyenPaymentDetailsForm {
|
|
8811
|
+
readonly 'fingerprint'?: string;
|
|
8812
|
+
readonly 'challenge_result'?: string;
|
|
8773
8813
|
}
|
|
8774
8814
|
|
|
8775
|
-
interface
|
|
8776
|
-
readonly '
|
|
8777
|
-
readonly '
|
|
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;
|
|
8778
8823
|
}
|
|
8779
8824
|
|
|
8780
|
-
interface
|
|
8825
|
+
interface AfterpayAccount {
|
|
8826
|
+
readonly 'discriminator': 'afterpay_account';
|
|
8781
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;
|
|
8782
8837
|
}
|
|
8783
8838
|
|
|
8784
|
-
interface
|
|
8785
|
-
readonly 'discriminator': '
|
|
8786
|
-
readonly '
|
|
8787
|
-
readonly '
|
|
8788
|
-
readonly '
|
|
8789
|
-
readonly 'package'?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
8790
|
-
readonly 'center_key'?: string;
|
|
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;
|
|
8791
8844
|
}
|
|
8792
|
-
}
|
|
8793
|
-
|
|
8794
|
-
declare namespace io.flow.partner.v0.unions {
|
|
8795
|
-
type LabelForm = (io.flow.partner.v0.models.DetailedLabelForm | io.flow.partner.v0.models.SummaryLabelForm | io.flow.partner.v0.models.BridgeLabelForm);
|
|
8796
|
-
}
|
|
8797
8845
|
|
|
8798
|
-
|
|
8799
|
-
|
|
8800
|
-
|
|
8801
|
-
|
|
8802
|
-
|
|
8803
|
-
|
|
8804
|
-
|
|
8805
|
-
|
|
8806
|
-
type DayOfWeek = 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday';
|
|
8807
|
-
type DeliveredDuty = 'paid' | 'unpaid';
|
|
8808
|
-
type DiscountTarget = 'item' | 'shipping';
|
|
8809
|
-
type EntityIdentifierType = 'ioss' | 'voec';
|
|
8810
|
-
type Environment = 'sandbox' | 'production';
|
|
8811
|
-
type ExceptionType = 'open' | 'closed';
|
|
8812
|
-
type GoodsSupply = 'export' | 'intra_community' | 'local';
|
|
8813
|
-
type HolidayCalendar = 'us_bank_holidays' | 'jewish_holidays';
|
|
8814
|
-
type IncludedLevyKey = 'duty' | 'vat' | 'vat_and_duty' | 'none';
|
|
8815
|
-
type Incoterm = 'EXW' | 'FCA' | 'CPT' | 'CIP' | 'DAT' | 'DAP' | 'DDP' | 'FAS' | 'FOB' | 'CFR' | 'CIF' | 'DAF' | 'DES' | 'DEQ' | 'DDU';
|
|
8816
|
-
type InputSpecificationType = 'text' | 'number';
|
|
8817
|
-
type MarginType = 'fixed' | 'percent';
|
|
8818
|
-
type MeasurementSystem = 'imperial' | 'metric';
|
|
8819
|
-
type MerchantOfRecord = 'flow' | 'organization';
|
|
8820
|
-
type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
|
|
8821
|
-
type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
|
|
8822
|
-
type OrganizationType = 'standalone' | 'channel';
|
|
8823
|
-
type PriceBookStatus = 'draft' | 'published' | 'archived';
|
|
8824
|
-
type Role = 'admin' | 'member';
|
|
8825
|
-
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
8826
|
-
type RoundingType = 'pattern' | 'multiple';
|
|
8827
|
-
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
8828
|
-
type SortDirection = 'ascending' | 'descending';
|
|
8829
|
-
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
8830
|
-
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
8831
|
-
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
8832
|
-
type ValueAddedService = 'Hazardous Material';
|
|
8833
|
-
type Visibility = 'public' | 'private';
|
|
8834
|
-
}
|
|
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;
|
|
8853
|
+
}
|
|
8835
8854
|
|
|
8836
|
-
|
|
8837
|
-
|
|
8838
|
-
readonly '
|
|
8839
|
-
readonly 'streets'?: string[];
|
|
8840
|
-
readonly 'street_number'?: string;
|
|
8841
|
-
readonly 'city'?: string;
|
|
8842
|
-
readonly 'province'?: string;
|
|
8843
|
-
readonly 'postal'?: string;
|
|
8844
|
-
readonly 'country'?: string;
|
|
8845
|
-
readonly 'latitude'?: string;
|
|
8846
|
-
readonly 'longitude'?: string;
|
|
8855
|
+
interface AfterpayAuthentication {
|
|
8856
|
+
readonly 'username': string;
|
|
8857
|
+
readonly 'password_reference': string;
|
|
8847
8858
|
}
|
|
8848
8859
|
|
|
8849
|
-
interface
|
|
8850
|
-
readonly '
|
|
8851
|
-
readonly 'streets'?: string[];
|
|
8852
|
-
readonly 'city'?: string;
|
|
8853
|
-
readonly 'province'?: string;
|
|
8854
|
-
readonly 'postal'?: string;
|
|
8855
|
-
readonly 'country'?: string;
|
|
8856
|
-
readonly 'company'?: string;
|
|
8860
|
+
interface AfterpayAuthenticationDataReference {
|
|
8861
|
+
readonly 'account_id': string;
|
|
8857
8862
|
}
|
|
8858
8863
|
|
|
8859
|
-
interface
|
|
8860
|
-
readonly '
|
|
8861
|
-
readonly '
|
|
8864
|
+
interface AfterpayAuthenticationForm {
|
|
8865
|
+
readonly 'username': string;
|
|
8866
|
+
readonly 'password': string;
|
|
8862
8867
|
}
|
|
8863
8868
|
|
|
8864
|
-
interface
|
|
8865
|
-
readonly '
|
|
8866
|
-
readonly '
|
|
8867
|
-
readonly 'attributes': Record<string, string>;
|
|
8869
|
+
interface ApplePayAuthorizationPayload {
|
|
8870
|
+
readonly 'discriminator': 'apple_pay_authorization_payload';
|
|
8871
|
+
readonly 'apple_pay_token': string;
|
|
8868
8872
|
}
|
|
8869
8873
|
|
|
8870
|
-
interface
|
|
8871
|
-
readonly '
|
|
8874
|
+
interface AuthenticationForm {
|
|
8875
|
+
readonly 'password': string;
|
|
8872
8876
|
}
|
|
8873
8877
|
|
|
8874
|
-
interface
|
|
8878
|
+
interface AuthorizationBundle {
|
|
8875
8879
|
readonly 'id': 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;
|
|
8876
8884
|
}
|
|
8877
8885
|
|
|
8878
|
-
interface
|
|
8879
|
-
readonly '
|
|
8880
|
-
readonly 'company'?: string;
|
|
8881
|
-
readonly 'email'?: string;
|
|
8882
|
-
readonly 'phone'?: string;
|
|
8886
|
+
interface AuthorizationMetadata {
|
|
8887
|
+
readonly 'limit'?: number;
|
|
8883
8888
|
}
|
|
8884
8889
|
|
|
8885
|
-
interface
|
|
8886
|
-
readonly '
|
|
8890
|
+
interface AuthorizationParameters {
|
|
8891
|
+
readonly 'method': string;
|
|
8892
|
+
readonly 'parameters': any/*object*/;
|
|
8887
8893
|
}
|
|
8888
8894
|
|
|
8889
|
-
interface
|
|
8890
|
-
readonly '
|
|
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;
|
|
8891
8902
|
}
|
|
8892
8903
|
|
|
8893
|
-
interface
|
|
8894
|
-
readonly '
|
|
8895
|
-
readonly '
|
|
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;
|
|
8896
8916
|
}
|
|
8897
8917
|
|
|
8898
|
-
interface
|
|
8899
|
-
readonly '
|
|
8900
|
-
readonly '
|
|
8901
|
-
readonly '
|
|
8902
|
-
readonly '
|
|
8903
|
-
readonly 'width'?: io.flow.common.v0.models.Measurement;
|
|
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;
|
|
8904
8923
|
}
|
|
8905
8924
|
|
|
8906
|
-
interface
|
|
8907
|
-
readonly '
|
|
8908
|
-
readonly '
|
|
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;
|
|
8909
8932
|
}
|
|
8910
8933
|
|
|
8911
|
-
interface
|
|
8912
|
-
readonly '
|
|
8913
|
-
readonly '
|
|
8914
|
-
readonly '
|
|
8934
|
+
interface BitpayAuthentication {
|
|
8935
|
+
readonly 'api_token': string;
|
|
8936
|
+
readonly 'public_key': string;
|
|
8937
|
+
readonly 'secret_key_reference': string;
|
|
8915
8938
|
}
|
|
8916
8939
|
|
|
8917
|
-
interface
|
|
8918
|
-
readonly '
|
|
8919
|
-
readonly 'money': io.flow.common.v0.models.Money;
|
|
8940
|
+
interface BitpayAuthenticationDataReference {
|
|
8941
|
+
readonly 'id': string;
|
|
8920
8942
|
}
|
|
8921
8943
|
|
|
8922
|
-
interface
|
|
8923
|
-
readonly '
|
|
8924
|
-
readonly '
|
|
8944
|
+
interface BitpayAuthenticationForm {
|
|
8945
|
+
readonly 'api_token': string;
|
|
8946
|
+
readonly 'public_key': string;
|
|
8947
|
+
readonly 'secret_key': string;
|
|
8925
8948
|
}
|
|
8926
8949
|
|
|
8927
|
-
interface
|
|
8928
|
-
readonly '
|
|
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;
|
|
8929
8967
|
}
|
|
8930
8968
|
|
|
8931
|
-
interface
|
|
8932
|
-
readonly '
|
|
8933
|
-
readonly '
|
|
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;
|
|
8934
8974
|
}
|
|
8935
8975
|
|
|
8936
|
-
interface
|
|
8937
|
-
readonly '
|
|
8938
|
-
readonly '
|
|
8939
|
-
readonly 'issuing_country'?: string;
|
|
8976
|
+
interface Cipher {
|
|
8977
|
+
readonly 'id': string;
|
|
8978
|
+
readonly 'attributes': Record<string, string>;
|
|
8940
8979
|
}
|
|
8941
8980
|
|
|
8942
|
-
interface
|
|
8943
|
-
readonly '
|
|
8944
|
-
readonly '
|
|
8981
|
+
interface CipherForm {
|
|
8982
|
+
readonly 'text': string;
|
|
8983
|
+
readonly 'attributes'?: Record<string, string>;
|
|
8984
|
+
readonly 'password'?: string;
|
|
8945
8985
|
}
|
|
8946
8986
|
|
|
8947
|
-
interface
|
|
8987
|
+
interface CipherReference {
|
|
8948
8988
|
readonly 'id': string;
|
|
8949
|
-
readonly 'key': string;
|
|
8950
|
-
readonly 'name': string;
|
|
8951
|
-
readonly 'country'?: string;
|
|
8952
|
-
readonly 'currency'?: string;
|
|
8953
|
-
readonly 'language'?: string;
|
|
8954
8989
|
}
|
|
8955
8990
|
|
|
8956
|
-
interface
|
|
8957
|
-
readonly '
|
|
8958
|
-
readonly '
|
|
8991
|
+
interface ClassicPaymentRedirectForm {
|
|
8992
|
+
readonly 'MD': string;
|
|
8993
|
+
readonly 'PaRes': string;
|
|
8959
8994
|
}
|
|
8960
8995
|
|
|
8961
|
-
interface
|
|
8962
|
-
readonly '
|
|
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;
|
|
8963
9008
|
}
|
|
8964
9009
|
|
|
8965
|
-
interface
|
|
8966
|
-
readonly '
|
|
8967
|
-
readonly '
|
|
9010
|
+
interface CryptoAccountModificationForm {
|
|
9011
|
+
readonly 'discriminator': 'crypto_account_modification_form';
|
|
9012
|
+
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
9013
|
+
readonly 'country': string;
|
|
9014
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8968
9015
|
}
|
|
8969
9016
|
|
|
8970
|
-
interface
|
|
8971
|
-
readonly '
|
|
8972
|
-
readonly '
|
|
8973
|
-
readonly '
|
|
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;
|
|
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;
|
|
8974
9024
|
}
|
|
8975
9025
|
|
|
8976
|
-
interface
|
|
8977
|
-
readonly '
|
|
8978
|
-
readonly '
|
|
9026
|
+
interface CryptoAuthentication {
|
|
9027
|
+
readonly 'public_key': string;
|
|
9028
|
+
readonly 'secret_key_reference': string;
|
|
9029
|
+
readonly 'signature_secret_reference': string;
|
|
8979
9030
|
}
|
|
8980
9031
|
|
|
8981
|
-
interface
|
|
8982
|
-
readonly '
|
|
9032
|
+
interface CryptoAuthenticationForm {
|
|
9033
|
+
readonly 'public_key': string;
|
|
9034
|
+
readonly 'secret_key': string;
|
|
9035
|
+
readonly 'signature_secret': string;
|
|
8983
9036
|
}
|
|
8984
9037
|
|
|
8985
|
-
interface
|
|
8986
|
-
readonly '
|
|
9038
|
+
interface DecryptCipherForm {
|
|
9039
|
+
readonly 'id': string;
|
|
9040
|
+
readonly 'password': string;
|
|
8987
9041
|
}
|
|
8988
9042
|
|
|
8989
|
-
interface
|
|
8990
|
-
readonly '
|
|
8991
|
-
readonly '
|
|
8992
|
-
readonly 'price': io.flow.common.v0.models.Money;
|
|
9043
|
+
interface DecryptedCipher {
|
|
9044
|
+
readonly 'id': string;
|
|
9045
|
+
readonly 'cleartext': string;
|
|
8993
9046
|
readonly 'attributes': Record<string, string>;
|
|
8994
|
-
readonly 'center'?: string;
|
|
8995
|
-
readonly 'discount'?: io.flow.common.v0.models.Money;
|
|
8996
9047
|
}
|
|
8997
9048
|
|
|
8998
|
-
interface
|
|
8999
|
-
readonly '
|
|
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[];
|
|
9000
9055
|
}
|
|
9001
9056
|
|
|
9002
|
-
interface
|
|
9003
|
-
readonly '
|
|
9004
|
-
readonly '
|
|
9005
|
-
readonly '
|
|
9006
|
-
readonly '
|
|
9007
|
-
readonly '
|
|
9008
|
-
readonly 'center'?: string;
|
|
9009
|
-
readonly 'discount'?: io.flow.common.v0.models.Money;
|
|
9010
|
-
readonly 'discounts'?: io.flow.common.v0.models.DiscountsForm;
|
|
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;
|
|
9011
9063
|
}
|
|
9012
9064
|
|
|
9013
|
-
interface
|
|
9014
|
-
readonly '
|
|
9065
|
+
interface FiservAccount {
|
|
9066
|
+
readonly 'discriminator': 'fiserv_account';
|
|
9067
|
+
readonly 'id': string;
|
|
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;
|
|
9015
9078
|
}
|
|
9016
9079
|
|
|
9017
|
-
interface
|
|
9018
|
-
readonly 'discriminator': '
|
|
9019
|
-
readonly '
|
|
9020
|
-
readonly '
|
|
9021
|
-
readonly '
|
|
9080
|
+
interface FiservAccountModificationForm {
|
|
9081
|
+
readonly 'discriminator': 'fiserv_account_modification_form';
|
|
9082
|
+
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
9083
|
+
readonly 'region': string;
|
|
9084
|
+
readonly 'country': string;
|
|
9085
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
9022
9086
|
}
|
|
9023
9087
|
|
|
9024
|
-
interface
|
|
9025
|
-
readonly '
|
|
9026
|
-
readonly '
|
|
9027
|
-
readonly '
|
|
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;
|
|
9028
9096
|
}
|
|
9029
9097
|
|
|
9030
|
-
interface
|
|
9031
|
-
readonly '
|
|
9032
|
-
readonly '
|
|
9098
|
+
interface FiservAuthentication {
|
|
9099
|
+
readonly 'public_key': string;
|
|
9100
|
+
readonly 'secret_key_reference': string;
|
|
9033
9101
|
}
|
|
9034
9102
|
|
|
9035
|
-
interface
|
|
9036
|
-
readonly '
|
|
9037
|
-
readonly '
|
|
9103
|
+
interface FiservAuthenticationDataReference {
|
|
9104
|
+
readonly 'account_id': string;
|
|
9105
|
+
readonly 'store_id': string;
|
|
9038
9106
|
}
|
|
9039
9107
|
|
|
9040
|
-
interface
|
|
9041
|
-
readonly '
|
|
9042
|
-
readonly '
|
|
9108
|
+
interface FiservAuthenticationForm {
|
|
9109
|
+
readonly 'public_key': string;
|
|
9110
|
+
readonly 'secret_key': string;
|
|
9043
9111
|
}
|
|
9044
9112
|
|
|
9045
|
-
interface
|
|
9046
|
-
readonly '
|
|
9047
|
-
readonly '
|
|
9048
|
-
readonly '
|
|
9049
|
-
readonly '
|
|
9050
|
-
readonly '
|
|
9051
|
-
readonly '
|
|
9052
|
-
readonly '
|
|
9053
|
-
readonly '
|
|
9113
|
+
interface FiservMerchant {
|
|
9114
|
+
readonly 'discriminator': 'fiserv_merchant';
|
|
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;
|
|
9054
9122
|
readonly 'country': string;
|
|
9055
|
-
readonly '
|
|
9056
|
-
readonly '
|
|
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;
|
|
9057
9127
|
}
|
|
9058
9128
|
|
|
9059
|
-
interface
|
|
9060
|
-
readonly '
|
|
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;
|
|
9061
9134
|
readonly 'country': string;
|
|
9135
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
9062
9136
|
}
|
|
9063
9137
|
|
|
9064
|
-
interface
|
|
9065
|
-
readonly '
|
|
9066
|
-
readonly '
|
|
9067
|
-
|
|
9068
|
-
|
|
9069
|
-
|
|
9070
|
-
readonly '
|
|
9071
|
-
readonly '
|
|
9072
|
-
readonly '
|
|
9073
|
-
}
|
|
9074
|
-
|
|
9075
|
-
interface MoneyWithOptionalBase {
|
|
9076
|
-
readonly 'currency': string;
|
|
9077
|
-
readonly 'amount': number;
|
|
9078
|
-
readonly 'base'?: io.flow.common.v0.models.Money;
|
|
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;
|
|
9079
9147
|
}
|
|
9080
9148
|
|
|
9081
|
-
interface
|
|
9082
|
-
readonly '
|
|
9083
|
-
readonly '
|
|
9149
|
+
interface InternalAdyenAuthorizationDetails {
|
|
9150
|
+
readonly 'discriminator': 'internal_adyen_authorization_details';
|
|
9151
|
+
readonly 'adyen_authentication_data': io.flow.payment.internal.v0.models.AdyenAuthenticationDataReference;
|
|
9084
9152
|
}
|
|
9085
9153
|
|
|
9086
|
-
interface
|
|
9087
|
-
readonly '
|
|
9088
|
-
readonly '
|
|
9089
|
-
readonly 'phone'?: string;
|
|
9090
|
-
readonly 'email'?: string;
|
|
9091
|
-
readonly 'address'?: io.flow.common.v0.models.BillingAddress;
|
|
9092
|
-
readonly 'invoice'?: io.flow.common.v0.models.CustomerInvoice;
|
|
9154
|
+
interface InternalAfterpayAuthorizationDetails {
|
|
9155
|
+
readonly 'discriminator': 'internal_afterpay_authorization_details';
|
|
9156
|
+
readonly 'afterpay_authentication_data': io.flow.payment.internal.v0.models.AfterpayAuthenticationDataReference;
|
|
9093
9157
|
}
|
|
9094
9158
|
|
|
9095
|
-
interface
|
|
9096
|
-
readonly '
|
|
9097
|
-
readonly '
|
|
9098
|
-
readonly 'phone'?: string;
|
|
9099
|
-
readonly 'email'?: string;
|
|
9100
|
-
readonly 'address'?: io.flow.common.v0.models.BillingAddress;
|
|
9101
|
-
readonly 'invoice'?: io.flow.common.v0.models.CustomerInvoice;
|
|
9159
|
+
interface InternalBitpayAuthorizationDetails {
|
|
9160
|
+
readonly 'discriminator': 'internal_bitpay_authorization_details';
|
|
9161
|
+
readonly 'bitpay_authentication_data': io.flow.payment.internal.v0.models.BitpayAuthenticationDataReference;
|
|
9102
9162
|
}
|
|
9103
9163
|
|
|
9104
|
-
interface
|
|
9105
|
-
readonly 'discriminator': '
|
|
9106
|
-
readonly '
|
|
9107
|
-
readonly 'name': string;
|
|
9108
|
-
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
9109
|
-
readonly 'parent'?: io.flow.common.v0.models.OrganizationReference;
|
|
9110
|
-
readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
|
|
9111
|
-
readonly 'created_at'?: string;
|
|
9112
|
-
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
9113
|
-
readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
|
|
9164
|
+
interface InternalFiservAuthorizationDetails {
|
|
9165
|
+
readonly 'discriminator': 'internal_fiserv_authorization_details';
|
|
9166
|
+
readonly 'fiserv_authentication_data': io.flow.payment.internal.v0.models.FiservAuthenticationDataReference;
|
|
9114
9167
|
}
|
|
9115
9168
|
|
|
9116
|
-
interface
|
|
9117
|
-
readonly '
|
|
9118
|
-
readonly '
|
|
9119
|
-
readonly 'language': string;
|
|
9120
|
-
readonly 'locale': string;
|
|
9121
|
-
readonly 'timezone': string;
|
|
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;
|
|
9122
9172
|
}
|
|
9123
9173
|
|
|
9124
|
-
interface
|
|
9125
|
-
readonly 'discriminator': '
|
|
9126
|
-
readonly '
|
|
9174
|
+
interface InternalPaypalAuthorizationDetails {
|
|
9175
|
+
readonly 'discriminator': 'internal_paypal_authorization_details';
|
|
9176
|
+
readonly 'paypal_authentication_data': io.flow.payment.internal.v0.models.PaypalAccountReference;
|
|
9127
9177
|
}
|
|
9128
9178
|
|
|
9129
|
-
interface
|
|
9130
|
-
readonly '
|
|
9131
|
-
readonly '
|
|
9132
|
-
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
9179
|
+
interface InternalStripeAuthorizationDetails {
|
|
9180
|
+
readonly 'discriminator': 'internal_stripe_authorization_details';
|
|
9181
|
+
readonly 'stripe_authentication_data': io.flow.payment.internal.v0.models.StripeAuthenticationDataReference;
|
|
9133
9182
|
}
|
|
9134
9183
|
|
|
9135
|
-
interface
|
|
9136
|
-
readonly '
|
|
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;
|
|
9137
9189
|
}
|
|
9138
9190
|
|
|
9139
|
-
interface
|
|
9140
|
-
readonly '
|
|
9141
|
-
readonly '
|
|
9142
|
-
readonly 'label': string;
|
|
9191
|
+
interface Key {
|
|
9192
|
+
readonly 'id': string;
|
|
9193
|
+
readonly 'created_at': string;
|
|
9143
9194
|
}
|
|
9144
9195
|
|
|
9145
|
-
interface
|
|
9146
|
-
readonly '
|
|
9147
|
-
readonly 'currency': string;
|
|
9196
|
+
interface KeyReference {
|
|
9197
|
+
readonly 'id': string;
|
|
9148
9198
|
}
|
|
9149
9199
|
|
|
9150
|
-
interface
|
|
9151
|
-
readonly 'discriminator': '
|
|
9152
|
-
readonly '
|
|
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[];
|
|
9153
9204
|
}
|
|
9154
9205
|
|
|
9155
|
-
interface
|
|
9156
|
-
readonly '
|
|
9157
|
-
readonly '
|
|
9158
|
-
readonly '
|
|
9159
|
-
readonly '
|
|
9206
|
+
interface KlarnaPaymentMethodCategory {
|
|
9207
|
+
readonly 'id': string;
|
|
9208
|
+
readonly 'name'?: string;
|
|
9209
|
+
readonly 'standard_asset_urls'?: string;
|
|
9210
|
+
readonly 'descriptive_asset_urls'?: string;
|
|
9160
9211
|
}
|
|
9161
9212
|
|
|
9162
|
-
interface
|
|
9213
|
+
interface OnlineAuthorizationCompleted {
|
|
9214
|
+
readonly 'discriminator': 'online_authorization_completed';
|
|
9163
9215
|
readonly 'id': string;
|
|
9216
|
+
readonly 'organization': string;
|
|
9164
9217
|
readonly 'key': string;
|
|
9218
|
+
readonly 'expires_at': string;
|
|
9165
9219
|
}
|
|
9166
9220
|
|
|
9167
|
-
interface
|
|
9168
|
-
readonly '
|
|
9169
|
-
readonly '
|
|
9221
|
+
interface OrganizationPaymentSetting {
|
|
9222
|
+
readonly 'id': string;
|
|
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;
|
|
9170
9232
|
}
|
|
9171
9233
|
|
|
9172
|
-
interface
|
|
9173
|
-
readonly '
|
|
9174
|
-
readonly '
|
|
9175
|
-
readonly '
|
|
9176
|
-
readonly '
|
|
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;
|
|
9177
9240
|
}
|
|
9178
9241
|
|
|
9179
|
-
interface
|
|
9180
|
-
readonly '
|
|
9181
|
-
readonly '
|
|
9242
|
+
interface OrganizationPaymentSettingVersion {
|
|
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;
|
|
9182
9247
|
}
|
|
9183
9248
|
|
|
9184
|
-
interface
|
|
9185
|
-
readonly '
|
|
9186
|
-
readonly '
|
|
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;
|
|
9187
9256
|
}
|
|
9188
9257
|
|
|
9189
|
-
interface
|
|
9190
|
-
readonly '
|
|
9191
|
-
readonly '
|
|
9192
|
-
readonly '
|
|
9258
|
+
interface PassphraseForm {
|
|
9259
|
+
readonly 'tribe': string;
|
|
9260
|
+
readonly 'current_password'?: string;
|
|
9261
|
+
readonly 'new_password': string;
|
|
9193
9262
|
}
|
|
9194
9263
|
|
|
9195
|
-
interface
|
|
9196
|
-
readonly '
|
|
9197
|
-
readonly '
|
|
9198
|
-
readonly 'days_of_week': io.flow.common.v0.enums.DayOfWeek[];
|
|
9264
|
+
interface PassphraseSummary {
|
|
9265
|
+
readonly 'id': string;
|
|
9266
|
+
readonly 'tribe': io.flow.payment.internal.v0.models.Tribe;
|
|
9199
9267
|
}
|
|
9200
9268
|
|
|
9201
|
-
interface
|
|
9202
|
-
readonly '
|
|
9203
|
-
readonly '
|
|
9204
|
-
readonly 'value': number;
|
|
9269
|
+
interface PaymentMethodDetail {
|
|
9270
|
+
readonly 'method': io.flow.reference.v0.models.PaymentMethod;
|
|
9271
|
+
readonly 'method_options'?: io.flow.payment.internal.v0.models.PaymentMethodOption[];
|
|
9205
9272
|
}
|
|
9206
9273
|
|
|
9207
|
-
interface
|
|
9208
|
-
readonly '
|
|
9209
|
-
readonly '
|
|
9210
|
-
readonly '
|
|
9211
|
-
readonly 'cutoff'?: string;
|
|
9212
|
-
readonly 'min_lead_time'?: number;
|
|
9213
|
-
readonly 'max_lead_time'?: number;
|
|
9274
|
+
interface PaymentMethodOption {
|
|
9275
|
+
readonly 'id': string;
|
|
9276
|
+
readonly 'name': string;
|
|
9277
|
+
readonly 'logo'?: io.flow.common.v0.unions.LogoImage;
|
|
9214
9278
|
}
|
|
9215
9279
|
|
|
9216
|
-
interface
|
|
9280
|
+
interface PaymentOrganizationSettings {
|
|
9217
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;
|
|
9218
9289
|
}
|
|
9219
9290
|
|
|
9220
|
-
interface
|
|
9221
|
-
readonly '
|
|
9222
|
-
readonly '
|
|
9223
|
-
readonly '
|
|
9224
|
-
readonly '
|
|
9225
|
-
readonly '
|
|
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;
|
|
9226
9298
|
}
|
|
9227
9299
|
|
|
9228
|
-
interface
|
|
9229
|
-
readonly 'discriminator': '
|
|
9300
|
+
interface PaypalAccount {
|
|
9301
|
+
readonly 'discriminator': 'paypal_account';
|
|
9230
9302
|
readonly 'id': 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;
|
|
9231
9312
|
}
|
|
9232
9313
|
|
|
9233
|
-
interface
|
|
9234
|
-
readonly '
|
|
9235
|
-
readonly '
|
|
9314
|
+
interface PaypalAccountModificationForm {
|
|
9315
|
+
readonly 'discriminator': 'paypal_account_modification_form';
|
|
9316
|
+
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
9236
9317
|
readonly 'country': string;
|
|
9318
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
9237
9319
|
}
|
|
9238
|
-
}
|
|
9239
|
-
|
|
9240
|
-
declare namespace io.flow.common.v0.unions {
|
|
9241
|
-
type DiscountOffer = (io.flow.common.v0.models.DiscountOfferFixed | io.flow.common.v0.models.DiscountOfferPercent);
|
|
9242
|
-
type ExpandableOrganization = (io.flow.common.v0.models.Organization | io.flow.common.v0.models.OrganizationReference);
|
|
9243
|
-
type ExpandableUser = (io.flow.common.v0.models.User | io.flow.common.v0.models.UserReference);
|
|
9244
|
-
type InputSpecificationLimitation = (io.flow.common.v0.models.InputSpecificationLimitationMax);
|
|
9245
|
-
type LogoImage = (io.flow.common.v0.models.LogoImageSvg | io.flow.common.v0.models.LogoImageSetStatic);
|
|
9246
|
-
type PriceSource = (io.flow.common.v0.models.PriceSourcePriceBook | io.flow.common.v0.models.PriceSourceCatalog | io.flow.common.v0.models.PriceSourceProvided);
|
|
9247
|
-
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);
|
|
9248
|
-
}
|
|
9249
|
-
|
|
9250
|
-
declare namespace io.flow.ftp.v0.enums {
|
|
9251
|
-
type FtpFileSource = 'flow' | 'organization';
|
|
9252
|
-
}
|
|
9253
9320
|
|
|
9254
|
-
|
|
9255
|
-
|
|
9256
|
-
readonly '
|
|
9257
|
-
readonly '
|
|
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;
|
|
9258
9328
|
}
|
|
9259
9329
|
|
|
9260
|
-
interface
|
|
9330
|
+
interface PaypalAccountReference {
|
|
9261
9331
|
readonly 'id': string;
|
|
9262
|
-
readonly '
|
|
9263
|
-
readonly 'name': string;
|
|
9264
|
-
readonly 'directory': string;
|
|
9265
|
-
readonly 'url': string;
|
|
9266
|
-
readonly 'created_at': string;
|
|
9267
|
-
}
|
|
9268
|
-
|
|
9269
|
-
interface FtpFileForm {
|
|
9270
|
-
readonly 'url': string;
|
|
9271
|
-
readonly 'directory': string;
|
|
9272
|
-
readonly 'name'?: string;
|
|
9332
|
+
readonly 'flow_merchant_id'?: string;
|
|
9273
9333
|
}
|
|
9274
9334
|
|
|
9275
|
-
interface
|
|
9276
|
-
readonly '
|
|
9277
|
-
readonly '
|
|
9278
|
-
readonly 'webhook': boolean;
|
|
9279
|
-
readonly 'description'?: string;
|
|
9335
|
+
interface PaypalAuthentication {
|
|
9336
|
+
readonly 'username': string;
|
|
9337
|
+
readonly 'password_reference': string;
|
|
9280
9338
|
}
|
|
9281
9339
|
|
|
9282
|
-
interface
|
|
9283
|
-
readonly '
|
|
9284
|
-
readonly '
|
|
9285
|
-
readonly 'description'?: string;
|
|
9340
|
+
interface PaypalAuthenticationForm {
|
|
9341
|
+
readonly 'username': string;
|
|
9342
|
+
readonly 'password': string;
|
|
9286
9343
|
}
|
|
9287
9344
|
|
|
9288
|
-
interface
|
|
9289
|
-
readonly '
|
|
9290
|
-
readonly '
|
|
9291
|
-
readonly '
|
|
9345
|
+
interface PaypalAuthorizationPayload {
|
|
9346
|
+
readonly 'discriminator': 'paypal_authorization_payload';
|
|
9347
|
+
readonly 'payment_id': string;
|
|
9348
|
+
readonly 'payer_id': string;
|
|
9292
9349
|
}
|
|
9293
9350
|
|
|
9294
|
-
interface
|
|
9295
|
-
readonly '
|
|
9296
|
-
readonly '
|
|
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;
|
|
9297
9363
|
}
|
|
9298
9364
|
|
|
9299
|
-
interface
|
|
9300
|
-
readonly '
|
|
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;
|
|
9301
9370
|
}
|
|
9302
9371
|
|
|
9303
|
-
interface
|
|
9304
|
-
readonly '
|
|
9305
|
-
readonly '
|
|
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;
|
|
9306
9379
|
}
|
|
9307
|
-
}
|
|
9308
|
-
|
|
9309
|
-
declare namespace io.flow.billing.reporting.csv.v0.enums {
|
|
9310
|
-
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
9311
|
-
}
|
|
9312
9380
|
|
|
9313
|
-
|
|
9314
|
-
|
|
9315
|
-
readonly '
|
|
9316
|
-
readonly '
|
|
9317
|
-
readonly '
|
|
9318
|
-
readonly '
|
|
9319
|
-
readonly '
|
|
9320
|
-
readonly '
|
|
9321
|
-
readonly '
|
|
9322
|
-
readonly 'total': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9381
|
+
interface ProcessorAccountReference {
|
|
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;
|
|
9323
9390
|
}
|
|
9324
9391
|
|
|
9325
|
-
interface
|
|
9326
|
-
readonly '
|
|
9327
|
-
readonly 'shipping': boolean;
|
|
9392
|
+
interface ProcessorEntityStatusForm {
|
|
9393
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
9328
9394
|
}
|
|
9329
9395
|
|
|
9330
|
-
interface
|
|
9396
|
+
interface ProcessorMerchantReference {
|
|
9331
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;
|
|
9332
9404
|
}
|
|
9333
9405
|
|
|
9334
|
-
interface
|
|
9406
|
+
interface Redirect {
|
|
9335
9407
|
readonly 'id': string;
|
|
9336
|
-
readonly '
|
|
9337
|
-
readonly '
|
|
9338
|
-
readonly 'order': io.flow.billing.reporting.csv.v0.models.ReportingOrderSummary;
|
|
9339
|
-
readonly 'entity': io.flow.billing.reporting.csv.v0.models.ReportingEntity;
|
|
9340
|
-
readonly 'vendor': io.flow.billing.reporting.csv.v0.models.ReportingVendor;
|
|
9341
|
-
readonly 'currencies': io.flow.billing.reporting.csv.v0.models.ReportingCurrencies;
|
|
9342
|
-
readonly 'conversion_rate': io.flow.billing.reporting.csv.v0.models.ReportingConversionRates;
|
|
9343
|
-
readonly 'reconciliation': io.flow.billing.reporting.csv.v0.models.ReportingReconciliation;
|
|
9344
|
-
readonly 'merchant_subsidies': io.flow.billing.reporting.csv.v0.models.ReportingMerchantSubsidies;
|
|
9345
|
-
readonly 'merchant_fees': io.flow.billing.reporting.csv.v0.models.ReportingMerchantFees;
|
|
9346
|
-
readonly 'merchant_transactions': io.flow.billing.reporting.csv.v0.models.ReportingMerchantTransactions;
|
|
9347
|
-
readonly 'debug': io.flow.billing.reporting.csv.v0.models.ReportingDebug;
|
|
9348
|
-
readonly 'return'?: io.flow.billing.reporting.csv.v0.models.ReportingReturn;
|
|
9408
|
+
readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
|
|
9409
|
+
readonly 'reason': io.flow.payment.internal.v0.enums.RedirectReason;
|
|
9349
9410
|
}
|
|
9350
9411
|
|
|
9351
|
-
interface
|
|
9412
|
+
interface RedirectActionCompleted {
|
|
9413
|
+
readonly 'discriminator': 'redirect_action_completed';
|
|
9352
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;
|
|
9353
9420
|
}
|
|
9354
9421
|
|
|
9355
|
-
interface
|
|
9356
|
-
readonly '
|
|
9357
|
-
readonly '
|
|
9358
|
-
|
|
9359
|
-
|
|
9360
|
-
interface ReportingConversionRates {
|
|
9361
|
-
readonly 'merchant': number;
|
|
9362
|
-
readonly 'entity': number;
|
|
9363
|
-
readonly 'usd': number;
|
|
9364
|
-
readonly 'eur': number;
|
|
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;
|
|
9365
9426
|
}
|
|
9366
9427
|
|
|
9367
|
-
interface
|
|
9368
|
-
readonly '
|
|
9369
|
-
readonly '
|
|
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;
|
|
9370
9433
|
}
|
|
9371
9434
|
|
|
9372
|
-
interface
|
|
9373
|
-
readonly '
|
|
9374
|
-
readonly '
|
|
9375
|
-
readonly 'entity': string;
|
|
9435
|
+
interface RoutingProcessor {
|
|
9436
|
+
readonly 'discriminator': 'routing_processor';
|
|
9437
|
+
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
9376
9438
|
}
|
|
9377
9439
|
|
|
9378
|
-
interface
|
|
9379
|
-
readonly '
|
|
9380
|
-
readonly '
|
|
9381
|
-
readonly '
|
|
9382
|
-
readonly '
|
|
9383
|
-
readonly '
|
|
9440
|
+
interface StripeAccount {
|
|
9441
|
+
readonly 'discriminator': 'stripe_account';
|
|
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;
|
|
9384
9454
|
}
|
|
9385
9455
|
|
|
9386
|
-
interface
|
|
9387
|
-
readonly '
|
|
9388
|
-
readonly '
|
|
9389
|
-
readonly '
|
|
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;
|
|
9390
9463
|
}
|
|
9391
9464
|
|
|
9392
|
-
interface
|
|
9393
|
-
readonly '
|
|
9394
|
-
readonly '
|
|
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;
|
|
9395
9474
|
}
|
|
9396
9475
|
|
|
9397
|
-
interface
|
|
9398
|
-
readonly '
|
|
9476
|
+
interface StripeAuthentication {
|
|
9477
|
+
readonly 'public_key': string;
|
|
9478
|
+
readonly 'secret_key_reference': string;
|
|
9399
9479
|
}
|
|
9400
9480
|
|
|
9401
|
-
interface
|
|
9481
|
+
interface StripeAuthenticationDataReference {
|
|
9402
9482
|
readonly 'id': string;
|
|
9403
|
-
readonly 'sequence_number': number;
|
|
9404
|
-
readonly 'fulfilled_at': string;
|
|
9405
|
-
readonly 'completes_order': boolean;
|
|
9406
|
-
readonly 'payment': io.flow.billing.reporting.csv.v0.models.ReportingFulfillmentPayment;
|
|
9407
|
-
readonly 'value': io.flow.billing.reporting.csv.v0.models.FulfillmentShopperBreakdown;
|
|
9408
|
-
readonly 'dispatch_country'?: io.flow.billing.reporting.csv.v0.models.ReportingCountry;
|
|
9409
|
-
readonly 'destination': io.flow.billing.reporting.csv.v0.models.ReportingDestination;
|
|
9410
|
-
readonly 'carrier'?: string;
|
|
9411
|
-
readonly 'is': io.flow.billing.reporting.csv.v0.models.ReportingFulfillmentIs;
|
|
9412
|
-
readonly 'has': io.flow.billing.reporting.csv.v0.models.ReportingFulfillmentHas;
|
|
9413
|
-
readonly 'fx': io.flow.billing.reporting.csv.v0.models.ReportingFx;
|
|
9414
|
-
readonly 'business'?: io.flow.billing.reporting.csv.v0.models.ReportingBusiness;
|
|
9415
|
-
}
|
|
9416
|
-
|
|
9417
|
-
interface ReportingFulfillmentHas {
|
|
9418
|
-
readonly 'zero_vat_product': boolean;
|
|
9419
9483
|
}
|
|
9420
9484
|
|
|
9421
|
-
interface
|
|
9422
|
-
readonly '
|
|
9423
|
-
readonly '
|
|
9424
|
-
readonly 'duties_guaranteed': boolean;
|
|
9425
|
-
readonly 'wyol': boolean;
|
|
9426
|
-
readonly 'b2b': boolean;
|
|
9427
|
-
readonly 'domestic': boolean;
|
|
9485
|
+
interface StripeAuthenticationForm {
|
|
9486
|
+
readonly 'public_key': string;
|
|
9487
|
+
readonly 'secret_key': string;
|
|
9428
9488
|
}
|
|
9429
9489
|
|
|
9430
|
-
interface
|
|
9431
|
-
readonly '
|
|
9432
|
-
readonly '
|
|
9433
|
-
readonly '
|
|
9434
|
-
readonly '
|
|
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;
|
|
9435
9504
|
}
|
|
9436
9505
|
|
|
9437
|
-
interface
|
|
9438
|
-
readonly '
|
|
9439
|
-
readonly '
|
|
9440
|
-
readonly '
|
|
9441
|
-
readonly '
|
|
9442
|
-
readonly '
|
|
9443
|
-
readonly '
|
|
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;
|
|
9444
9515
|
}
|
|
9445
9516
|
|
|
9446
|
-
interface
|
|
9447
|
-
readonly '
|
|
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;
|
|
9448
9524
|
}
|
|
9449
9525
|
|
|
9450
|
-
interface
|
|
9451
|
-
readonly '
|
|
9452
|
-
readonly '
|
|
9453
|
-
readonly '
|
|
9454
|
-
readonly '
|
|
9455
|
-
readonly '
|
|
9456
|
-
readonly '
|
|
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;
|
|
9457
9535
|
}
|
|
9458
9536
|
|
|
9459
|
-
interface
|
|
9460
|
-
readonly '
|
|
9461
|
-
readonly '
|
|
9462
|
-
readonly 'fraud': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9463
|
-
readonly 'fx': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9464
|
-
readonly 'processing': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9465
|
-
readonly 'rate_lock': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9466
|
-
readonly 'transfer': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9537
|
+
interface Tribe {
|
|
9538
|
+
readonly 'id': string;
|
|
9539
|
+
readonly 'description': string;
|
|
9467
9540
|
}
|
|
9468
9541
|
|
|
9469
|
-
interface
|
|
9470
|
-
readonly '
|
|
9471
|
-
readonly '
|
|
9472
|
-
readonly '
|
|
9473
|
-
readonly '
|
|
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;
|
|
9474
9549
|
}
|
|
9550
|
+
}
|
|
9475
9551
|
|
|
9476
|
-
|
|
9477
|
-
|
|
9478
|
-
|
|
9479
|
-
|
|
9480
|
-
|
|
9481
|
-
|
|
9482
|
-
|
|
9483
|
-
|
|
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
|
+
}
|
|
9484
9568
|
|
|
9485
|
-
|
|
9486
|
-
|
|
9487
|
-
|
|
9488
|
-
readonly 'entity': number;
|
|
9489
|
-
readonly 'usd': number;
|
|
9490
|
-
readonly 'eur': number;
|
|
9491
|
-
}
|
|
9569
|
+
declare namespace io.flow.ftp.v0.enums {
|
|
9570
|
+
type FtpFileSource = 'flow' | 'organization';
|
|
9571
|
+
}
|
|
9492
9572
|
|
|
9493
|
-
|
|
9494
|
-
|
|
9495
|
-
readonly '
|
|
9496
|
-
readonly '
|
|
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;
|
|
9497
9577
|
}
|
|
9498
9578
|
|
|
9499
|
-
interface
|
|
9579
|
+
interface FtpFile {
|
|
9500
9580
|
readonly 'id': string;
|
|
9581
|
+
readonly 'source': io.flow.ftp.v0.enums.FtpFileSource;
|
|
9501
9582
|
readonly 'name': string;
|
|
9583
|
+
readonly 'directory': string;
|
|
9584
|
+
readonly 'url': string;
|
|
9585
|
+
readonly 'created_at': string;
|
|
9502
9586
|
}
|
|
9503
9587
|
|
|
9504
|
-
interface
|
|
9505
|
-
readonly '
|
|
9506
|
-
readonly '
|
|
9588
|
+
interface FtpFileForm {
|
|
9589
|
+
readonly 'url': string;
|
|
9590
|
+
readonly 'directory': string;
|
|
9591
|
+
readonly 'name'?: string;
|
|
9507
9592
|
}
|
|
9508
9593
|
|
|
9509
|
-
interface
|
|
9510
|
-
readonly '
|
|
9511
|
-
readonly '
|
|
9512
|
-
readonly '
|
|
9594
|
+
interface FtpFolder {
|
|
9595
|
+
readonly 'id': string;
|
|
9596
|
+
readonly 'path': string;
|
|
9597
|
+
readonly 'webhook': boolean;
|
|
9598
|
+
readonly 'description'?: string;
|
|
9513
9599
|
}
|
|
9514
9600
|
|
|
9515
|
-
interface
|
|
9516
|
-
readonly '
|
|
9601
|
+
interface FtpFolderForm {
|
|
9602
|
+
readonly 'path': string;
|
|
9603
|
+
readonly 'webhook': boolean;
|
|
9604
|
+
readonly 'description'?: string;
|
|
9517
9605
|
}
|
|
9518
9606
|
|
|
9519
|
-
interface
|
|
9520
|
-
readonly '
|
|
9521
|
-
readonly '
|
|
9522
|
-
readonly '
|
|
9523
|
-
readonly 'ccf': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9524
|
-
readonly 'emergency': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9525
|
-
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;
|
|
9526
9611
|
}
|
|
9527
9612
|
|
|
9528
|
-
interface
|
|
9529
|
-
readonly '
|
|
9613
|
+
interface FtpOrganizationSettingsForm {
|
|
9614
|
+
readonly 'enabled': boolean;
|
|
9615
|
+
readonly 'emails': string[];
|
|
9530
9616
|
}
|
|
9531
9617
|
|
|
9532
|
-
interface
|
|
9533
|
-
readonly '
|
|
9534
|
-
readonly 'rate': io.flow.billing.reporting.csv.v0.models.ReportingVatRemittanceRate;
|
|
9618
|
+
interface FtpServer {
|
|
9619
|
+
readonly 'hostname': string;
|
|
9535
9620
|
}
|
|
9536
9621
|
|
|
9537
|
-
interface
|
|
9538
|
-
readonly '
|
|
9622
|
+
interface FtpUser {
|
|
9623
|
+
readonly 'username': string;
|
|
9624
|
+
readonly 'password'?: string;
|
|
9539
9625
|
}
|
|
9626
|
+
}
|
|
9540
9627
|
|
|
9541
|
-
|
|
9628
|
+
declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
9629
|
+
interface ReportingFulfillment {
|
|
9542
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;
|
|
9543
9643
|
}
|
|
9544
9644
|
|
|
9545
9645
|
interface SalesRecord {
|
|
9546
9646
|
readonly 'id': string;
|
|
9547
|
-
readonly 'parent'?: io.flow.billing.reporting.
|
|
9548
|
-
readonly 'merchant': io.flow.billing.reporting.
|
|
9549
|
-
readonly 'order': io.flow.billing.reporting.
|
|
9550
|
-
readonly 'entity': io.flow.billing.reporting.
|
|
9551
|
-
readonly 'vendor': io.flow.billing.reporting.
|
|
9552
|
-
readonly 'currencies': io.flow.billing.reporting.
|
|
9553
|
-
readonly 'conversion_rate': io.flow.billing.reporting.
|
|
9554
|
-
readonly 'reconciliation': io.flow.billing.reporting.
|
|
9555
|
-
readonly 'merchant_subsidies': io.flow.billing.reporting.
|
|
9556
|
-
readonly 'merchant_fees': io.flow.billing.reporting.
|
|
9557
|
-
readonly 'merchant_transactions': io.flow.billing.reporting.
|
|
9558
|
-
readonly 'debug': io.flow.billing.reporting.
|
|
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;
|
|
9559
9659
|
readonly 'fulfillment': io.flow.billing.reporting.csv.v0.models.ReportingFulfillment;
|
|
9560
|
-
readonly 'vat_remittance': io.flow.billing.reporting.
|
|
9561
|
-
readonly 'marked_as_final': io.flow.billing.reporting.
|
|
9562
|
-
}
|
|
9563
|
-
|
|
9564
|
-
interface TransactionReference {
|
|
9565
|
-
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;
|
|
9566
9662
|
}
|
|
9567
9663
|
}
|
|
9568
9664
|
|
|
@@ -10791,6 +10887,12 @@ declare namespace io.flow.experience.v0.unions {
|
|
|
10791
10887
|
declare namespace io.flow.payment.request.bundle.v0.models {
|
|
10792
10888
|
interface PaymentRequestBilling {
|
|
10793
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;
|
|
10794
10896
|
}
|
|
10795
10897
|
|
|
10796
10898
|
interface PaymentRequestBillingFees {
|
|
@@ -11725,6 +11827,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
11725
11827
|
}
|
|
11726
11828
|
|
|
11727
11829
|
declare namespace io.flow.trueup.v0.enums {
|
|
11830
|
+
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
11728
11831
|
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
11729
11832
|
}
|
|
11730
11833
|
|
|
@@ -12824,10 +12927,11 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
12824
12927
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
12825
12928
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12826
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';
|
|
12827
|
-
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';
|
|
12828
12931
|
type BillingStatementBatchFileKey = 'summary';
|
|
12829
12932
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
12830
|
-
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';
|
|
12831
12935
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
12832
12936
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
12833
12937
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
@@ -12840,7 +12944,7 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
12840
12944
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
12841
12945
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
12842
12946
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
12843
|
-
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';
|
|
12844
12948
|
type ResponsibleParty = 'flow' | 'organization';
|
|
12845
12949
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
12846
12950
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
@@ -13135,6 +13239,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13135
13239
|
readonly 'tax': io.flow.common.v0.models.Price;
|
|
13136
13240
|
readonly 'duty': io.flow.common.v0.models.Price;
|
|
13137
13241
|
readonly 'trueup': io.flow.common.v0.models.Price;
|
|
13242
|
+
readonly 'carrier_charge': io.flow.common.v0.models.Price;
|
|
13138
13243
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
13139
13244
|
}
|
|
13140
13245
|
|
|
@@ -13149,6 +13254,19 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13149
13254
|
readonly 'statement'?: io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
13150
13255
|
}
|
|
13151
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
|
+
|
|
13152
13270
|
interface ChannelAccount {
|
|
13153
13271
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
13154
13272
|
readonly 'id': string;
|
|
@@ -13855,7 +13973,7 @@ declare namespace io.flow.billing.internal.v0.unions {
|
|
|
13855
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);
|
|
13856
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);
|
|
13857
13975
|
type SpotRateMetadata = (io.flow.billing.internal.v0.models.SpotRateMetadataIdentity | io.flow.billing.internal.v0.models.SpotRateMetadataRate);
|
|
13858
|
-
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);
|
|
13859
13977
|
}
|
|
13860
13978
|
|
|
13861
13979
|
declare namespace io.flow.billing.v0.enums {
|
|
@@ -13864,7 +13982,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13864
13982
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
13865
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';
|
|
13866
13984
|
type StatementAttachmentType = 'csv';
|
|
13867
|
-
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';
|
|
13868
13986
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
13869
13987
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
13870
13988
|
}
|
|
@@ -14120,6 +14238,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
14120
14238
|
readonly 'updated_at': string;
|
|
14121
14239
|
}
|
|
14122
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
|
+
|
|
14123
14248
|
interface TransactionMetadataChannel {
|
|
14124
14249
|
readonly 'discriminator': 'channel';
|
|
14125
14250
|
readonly 'method': string;
|
|
@@ -14207,7 +14332,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
14207
14332
|
type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
|
|
14208
14333
|
type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
|
|
14209
14334
|
type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
|
|
14210
|
-
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);
|
|
14211
14336
|
}
|
|
14212
14337
|
|
|
14213
14338
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -15866,16 +15991,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15866
15991
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
15867
15992
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
15868
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';
|
|
15869
|
-
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';
|
|
15870
|
-
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';
|
|
15871
15996
|
type BillingStatementBatchFileKey = 'summary';
|
|
15872
15997
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
15873
|
-
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';
|
|
15874
15999
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
15875
16000
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
15876
16001
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
15877
|
-
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
|
|
15878
|
-
type
|
|
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';
|
|
15879
16004
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
15880
16005
|
type CarrierValidationStatus = 'success' | 'error';
|
|
15881
16006
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
@@ -15887,7 +16012,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15887
16012
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
15888
16013
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
15889
16014
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
15890
|
-
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'remote_area_delivery';
|
|
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';
|
|
15891
16016
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
15892
16017
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
15893
16018
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -15993,7 +16118,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15993
16118
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
15994
16119
|
type EmptyAttribute = 'irrelevant';
|
|
15995
16120
|
type ErpFileType = 'vendor';
|
|
15996
|
-
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';
|
|
15997
16122
|
type ExperienceImportType = 'experience_with_settings';
|
|
15998
16123
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
15999
16124
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -16048,7 +16173,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16048
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';
|
|
16049
16174
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
16050
16175
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
16051
|
-
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';
|
|
16052
16177
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
16053
16178
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
16054
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';
|
|
@@ -16083,7 +16208,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16083
16208
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
16084
16209
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
16085
16210
|
type PromptTarget = 'browse' | 'checkout';
|
|
16086
|
-
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' | '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';
|
|
16087
16212
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
16088
16213
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
16089
16214
|
type RateSource = 'calculated' | 'market';
|
|
@@ -16093,11 +16218,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16093
16218
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
16094
16219
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
16095
16220
|
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account';
|
|
16221
|
+
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
16096
16222
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
16097
16223
|
type ResponsibleParty = 'flow' | 'organization';
|
|
16098
16224
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
16099
16225
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
16100
16226
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
16227
|
+
type RevenueRecordType = 'sales' | 'refund';
|
|
16101
16228
|
type RiskCheck = 'three_d_secure';
|
|
16102
16229
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
16103
16230
|
type Scope = 'organization' | 'global';
|
|
@@ -16108,7 +16235,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16108
16235
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
16109
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';
|
|
16110
16237
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
16111
|
-
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';
|
|
16112
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';
|
|
16113
16240
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
16114
16241
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
@@ -17180,6 +17307,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17180
17307
|
readonly 'tax': io.flow.common.v0.models.Price;
|
|
17181
17308
|
readonly 'duty': io.flow.common.v0.models.Price;
|
|
17182
17309
|
readonly 'trueup': io.flow.common.v0.models.Price;
|
|
17310
|
+
readonly 'carrier_charge': io.flow.common.v0.models.Price;
|
|
17183
17311
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
17184
17312
|
}
|
|
17185
17313
|
|
|
@@ -17622,7 +17750,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17622
17750
|
interface CarrierChargeFormOther {
|
|
17623
17751
|
readonly 'discriminator': 'other';
|
|
17624
17752
|
readonly 'id': string;
|
|
17625
|
-
readonly 'reason': io.flow.
|
|
17753
|
+
readonly 'reason': io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
17626
17754
|
readonly 'organization_id': string;
|
|
17627
17755
|
readonly 'order_number': string;
|
|
17628
17756
|
readonly 'carrier_id': string;
|
|
@@ -17637,6 +17765,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17637
17765
|
readonly 'attributes'?: Record<string, string>;
|
|
17638
17766
|
}
|
|
17639
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
|
+
|
|
17640
17781
|
interface CarrierChargeUnits {
|
|
17641
17782
|
readonly 'currency': string;
|
|
17642
17783
|
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
@@ -22535,6 +22676,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22535
22676
|
readonly 'items': io.flow.order.management.v0.models.FulfillmentItem[];
|
|
22536
22677
|
}
|
|
22537
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
|
+
|
|
22538
22690
|
interface FulfillmentSnapshot {
|
|
22539
22691
|
readonly 'tracking_source': string;
|
|
22540
22692
|
readonly 'fulfillment_status'?: string;
|
|
@@ -24008,6 +24160,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24008
24160
|
readonly 'shipped_item_values': io.flow.internal.v0.models.ShippedItemValue[];
|
|
24009
24161
|
}
|
|
24010
24162
|
|
|
24163
|
+
interface JeanDemoItem {
|
|
24164
|
+
readonly 'id': string;
|
|
24165
|
+
readonly 'name': string;
|
|
24166
|
+
}
|
|
24167
|
+
|
|
24011
24168
|
interface Key {
|
|
24012
24169
|
readonly 'id': string;
|
|
24013
24170
|
readonly 'created_at': string;
|
|
@@ -24704,6 +24861,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24704
24861
|
readonly 'number': string;
|
|
24705
24862
|
}
|
|
24706
24863
|
|
|
24864
|
+
interface MarkedAsFinal {
|
|
24865
|
+
readonly 'products': boolean;
|
|
24866
|
+
readonly 'shipping': boolean;
|
|
24867
|
+
}
|
|
24868
|
+
|
|
24707
24869
|
interface MarketingGatewayChannel {
|
|
24708
24870
|
readonly 'id': string;
|
|
24709
24871
|
readonly 'platform': io.flow.internal.v0.enums.MarketingGatewayPlatform;
|
|
@@ -27041,6 +27203,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27041
27203
|
readonly 'orders_since_submitted_at'?: string;
|
|
27042
27204
|
}
|
|
27043
27205
|
|
|
27206
|
+
interface RecordReference {
|
|
27207
|
+
readonly 'id': string;
|
|
27208
|
+
}
|
|
27209
|
+
|
|
27044
27210
|
interface Redirect {
|
|
27045
27211
|
readonly 'id': string;
|
|
27046
27212
|
readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
|
|
@@ -27109,6 +27275,52 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27109
27275
|
readonly 'task_id': string;
|
|
27110
27276
|
}
|
|
27111
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
|
+
|
|
27112
27324
|
interface ReportingDetails {
|
|
27113
27325
|
readonly 'accounting_transactions'?: any/*object*/[];
|
|
27114
27326
|
readonly 'fulfillments'?: any/*object*/[];
|
|
@@ -27117,6 +27329,166 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27117
27329
|
readonly 'refund_records'?: any/*object*/[];
|
|
27118
27330
|
}
|
|
27119
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
|
+
|
|
27120
27492
|
interface RequeueRequestForm {
|
|
27121
27493
|
readonly 'product_ids'?: string[];
|
|
27122
27494
|
readonly 'hs6_codes'?: string[];
|
|
@@ -27169,6 +27541,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27169
27541
|
readonly 'status'?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
27170
27542
|
readonly 'statuses'?: io.flow.internal.v0.enums.RestrictionStatus[];
|
|
27171
27543
|
readonly 'rule_ids'?: string[];
|
|
27544
|
+
readonly 'user_ids'?: string[];
|
|
27172
27545
|
readonly 'categories'?: string[];
|
|
27173
27546
|
readonly 'product_name_query'?: string;
|
|
27174
27547
|
readonly 'positive_keywords'?: string[];
|
|
@@ -27391,6 +27764,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27391
27764
|
readonly 'posting_cutoff': string;
|
|
27392
27765
|
readonly 'trigger': io.flow.internal.v0.unions.ReturnTrigger;
|
|
27393
27766
|
readonly 'returned_at': string;
|
|
27767
|
+
readonly 'completes_order': boolean;
|
|
27394
27768
|
}
|
|
27395
27769
|
|
|
27396
27770
|
interface ReturnPolicyDeleted {
|
|
@@ -27437,6 +27811,40 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27437
27811
|
readonly 'refund': io.flow.payment.v0.models.RefundReference;
|
|
27438
27812
|
}
|
|
27439
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
|
+
|
|
27440
27848
|
interface RoutingAccount {
|
|
27441
27849
|
readonly 'discriminator': 'routing_account';
|
|
27442
27850
|
readonly 'processor': io.flow.internal.v0.enums.Processor;
|
|
@@ -29463,7 +29871,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29463
29871
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
29464
29872
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
29465
29873
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
29466
|
-
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);
|
|
29467
29875
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
29468
29876
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
29469
29877
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -29519,7 +29927,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29519
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);
|
|
29520
29928
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
29521
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);
|
|
29522
|
-
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);
|
|
29523
29931
|
type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
|
|
29524
29932
|
type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
|
|
29525
29933
|
type Variant = (io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant);
|
|
@@ -29545,7 +29953,7 @@ export const blazeCheckoutEvent: PropTypes.Requireable<io.flow.internal.v0.enums
|
|
|
29545
29953
|
export const blazeCheckoutStep: PropTypes.Requireable<io.flow.internal.v0.enums.BlazeCheckoutStep>;
|
|
29546
29954
|
export const browserBundleErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.BrowserBundleErrorCode>;
|
|
29547
29955
|
export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.CalculatorEngine>;
|
|
29548
|
-
export const
|
|
29956
|
+
export const carrierChargeTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeTransactionType>;
|
|
29549
29957
|
export const carrierLabelGenerationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierLabelGenerationMethod>;
|
|
29550
29958
|
export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierValidationStatus>;
|
|
29551
29959
|
export const catalogImportType: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogImportType>;
|
|
@@ -29763,11 +30171,13 @@ export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.Re
|
|
|
29763
30171
|
export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
|
|
29764
30172
|
export const reportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportStatus>;
|
|
29765
30173
|
export const reportType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportType>;
|
|
30174
|
+
export const reportingFulfillmentIsVirtual: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual>;
|
|
29766
30175
|
export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingScheme>;
|
|
29767
30176
|
export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
|
|
29768
30177
|
export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAction>;
|
|
29769
30178
|
export const restrictionDecision: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionDecision>;
|
|
29770
30179
|
export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStatus>;
|
|
30180
|
+
export const revenueRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueRecordType>;
|
|
29771
30181
|
export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskCheck>;
|
|
29772
30182
|
export const riskEvaluation: PropTypes.Requireable<io.flow.internal.v0.enums.RiskEvaluation>;
|
|
29773
30183
|
export const scope: PropTypes.Requireable<io.flow.internal.v0.enums.Scope>;
|
|
@@ -30013,6 +30423,7 @@ export const carrierChargeFileForm: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
30013
30423
|
export const carrierChargeFileResult: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFileResult>;
|
|
30014
30424
|
export const carrierChargeFormLabel: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFormLabel>;
|
|
30015
30425
|
export const carrierChargeFormOther: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFormOther>;
|
|
30426
|
+
export const carrierChargeTransaction: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeTransaction>;
|
|
30016
30427
|
export const carrierChargeUnits: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeUnits>;
|
|
30017
30428
|
export const carrierInvoice: PropTypes.Requireable<io.flow.internal.v0.models.CarrierInvoice>;
|
|
30018
30429
|
export const catalogImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.CatalogImportRequest>;
|
|
@@ -30751,6 +31162,7 @@ export const fulfillmentProofOrderCombinedShipmentReference: PropTypes.Requireab
|
|
|
30751
31162
|
export const fulfillmentProofShippingNotificationReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference>;
|
|
30752
31163
|
export const fulfillmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentReference>;
|
|
30753
31164
|
export const fulfillmentShipmentTracking: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipmentTracking>;
|
|
31165
|
+
export const fulfillmentShopperBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShopperBreakdown>;
|
|
30754
31166
|
export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSnapshot>;
|
|
30755
31167
|
export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
|
|
30756
31168
|
export const fulfillmentTriggerProof: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentTriggerProof>;
|
|
@@ -30913,6 +31325,7 @@ export const itemSalesMarginVersion: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
30913
31325
|
export const itemSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemSummary>;
|
|
30914
31326
|
export const itemValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemValuesForm>;
|
|
30915
31327
|
export const itemsShipped: PropTypes.Requireable<io.flow.internal.v0.models.ItemsShipped>;
|
|
31328
|
+
export const jeanDemoItem: PropTypes.Requireable<io.flow.internal.v0.models.JeanDemoItem>;
|
|
30916
31329
|
export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
|
|
30917
31330
|
export const keyReference: PropTypes.Requireable<io.flow.internal.v0.models.KeyReference>;
|
|
30918
31331
|
export const klarnaAuthorizationParameters: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaAuthorizationParameters>;
|
|
@@ -31003,6 +31416,7 @@ export const manualReviewRuleUpserted: PropTypes.Requireable<io.flow.internal.v0
|
|
|
31003
31416
|
export const manualTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransaction>;
|
|
31004
31417
|
export const manualTransactionForm: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransactionForm>;
|
|
31005
31418
|
export const manualTransactionFormOrder: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransactionFormOrder>;
|
|
31419
|
+
export const markedAsFinal: PropTypes.Requireable<io.flow.internal.v0.models.MarkedAsFinal>;
|
|
31006
31420
|
export const marketingGatewayChannel: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannel>;
|
|
31007
31421
|
export const marketingGatewayChannelConnectionForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannelConnectionForm>;
|
|
31008
31422
|
export const marketingGatewayChannelForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannelForm>;
|
|
@@ -31313,6 +31727,7 @@ export const ratesNamesSummary: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
31313
31727
|
export const readyToFulfill: PropTypes.Requireable<io.flow.internal.v0.models.ReadyToFulfill>;
|
|
31314
31728
|
export const reboundConfiguration: PropTypes.Requireable<io.flow.internal.v0.models.ReboundConfiguration>;
|
|
31315
31729
|
export const reboundConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.models.ReboundConfigurationForm>;
|
|
31730
|
+
export const recordReference: PropTypes.Requireable<io.flow.internal.v0.models.RecordReference>;
|
|
31316
31731
|
export const redirect: PropTypes.Requireable<io.flow.internal.v0.models.Redirect>;
|
|
31317
31732
|
export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.models.RedirectActionCompleted>;
|
|
31318
31733
|
export const registeredExporterTariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData>;
|
|
@@ -31324,7 +31739,39 @@ export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.Report
|
|
|
31324
31739
|
export const reportPayment: PropTypes.Requireable<io.flow.internal.v0.models.ReportPayment>;
|
|
31325
31740
|
export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
|
|
31326
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>;
|
|
31327
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>;
|
|
31328
31775
|
export const requeueRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RequeueRequestForm>;
|
|
31329
31776
|
export const restrictionCategory: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionCategory>;
|
|
31330
31777
|
export const restrictionFilter: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionFilter>;
|
|
@@ -31365,6 +31812,9 @@ export const returnPolicyItemResultUpserted: PropTypes.Requireable<io.flow.inter
|
|
|
31365
31812
|
export const returnPolicyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyUpserted>;
|
|
31366
31813
|
export const returnSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReturnSummary>;
|
|
31367
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>;
|
|
31368
31818
|
export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
|
|
31369
31819
|
export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
|
|
31370
31820
|
export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
|