@flowio/api-internal-prop-types 9.24.79 → 9.24.81
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 +1837 -1333
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +1837 -1333
- package/src/api-internal.js +1019 -525
package/lib/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,1458 +7822,1748 @@ 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
|
-
readonly 'currency': string;
|
|
7985
|
-
readonly 'billing_address'?: io.flow.common.v0.models.BillingAddress;
|
|
7986
|
-
readonly 'ip'?: string;
|
|
7987
|
-
readonly 'origin_url'?: string;
|
|
7988
|
-
}
|
|
7989
|
-
|
|
7990
|
-
interface BitpayAccount {
|
|
7991
|
-
readonly 'discriminator': 'bitpay_account';
|
|
7992
|
-
readonly 'id': string;
|
|
7993
|
-
readonly 'organization_id': string;
|
|
7994
|
-
readonly 'key': string;
|
|
7995
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
7996
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.BitpayAuthentication;
|
|
7997
|
-
readonly 'country': string;
|
|
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;
|
|
8002
|
-
}
|
|
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
|
+
}
|
|
8003
7967
|
|
|
8004
|
-
|
|
8005
|
-
|
|
8006
|
-
|
|
8007
|
-
|
|
8008
|
-
|
|
8009
|
-
|
|
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
|
+
}
|
|
8010
8005
|
|
|
8011
|
-
|
|
8012
|
-
|
|
8013
|
-
readonly '
|
|
8014
|
-
readonly '
|
|
8015
|
-
readonly '
|
|
8016
|
-
readonly '
|
|
8017
|
-
readonly '
|
|
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;
|
|
8018
8017
|
}
|
|
8019
8018
|
|
|
8020
|
-
interface
|
|
8021
|
-
readonly '
|
|
8022
|
-
readonly '
|
|
8023
|
-
readonly '
|
|
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;
|
|
8024
8027
|
}
|
|
8025
8028
|
|
|
8026
|
-
interface
|
|
8029
|
+
interface CatalogItemReference {
|
|
8027
8030
|
readonly 'id': string;
|
|
8031
|
+
readonly 'number': string;
|
|
8028
8032
|
}
|
|
8029
8033
|
|
|
8030
|
-
interface
|
|
8031
|
-
readonly '
|
|
8032
|
-
readonly '
|
|
8033
|
-
readonly '
|
|
8034
|
+
interface CatalogItemSummary {
|
|
8035
|
+
readonly 'number': string;
|
|
8036
|
+
readonly 'name': string;
|
|
8037
|
+
readonly 'attributes': Record<string, string>;
|
|
8034
8038
|
}
|
|
8035
8039
|
|
|
8036
|
-
interface
|
|
8040
|
+
interface ChannelReference {
|
|
8037
8041
|
readonly 'id': string;
|
|
8038
|
-
readonly 'key': string;
|
|
8039
|
-
readonly 'authorization': io.flow.payment.v0.models.AuthorizationReference;
|
|
8040
|
-
readonly 'amount': number;
|
|
8041
|
-
readonly 'currency': string;
|
|
8042
|
-
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
8042
|
}
|
|
8054
8043
|
|
|
8055
|
-
interface
|
|
8044
|
+
interface CheckoutReference {
|
|
8056
8045
|
readonly 'id': string;
|
|
8057
|
-
readonly 'timestamp': string;
|
|
8058
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
8059
|
-
readonly 'chargeback': io.flow.payment.internal.v0.models.Chargeback;
|
|
8060
8046
|
}
|
|
8061
8047
|
|
|
8062
|
-
interface
|
|
8063
|
-
readonly '
|
|
8064
|
-
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;
|
|
8065
8053
|
}
|
|
8066
8054
|
|
|
8067
|
-
interface
|
|
8068
|
-
readonly '
|
|
8069
|
-
readonly 'attributes'?: Record<string, string>;
|
|
8070
|
-
readonly 'password'?: string;
|
|
8055
|
+
interface CustomerInvoice {
|
|
8056
|
+
readonly 'address'?: io.flow.common.v0.models.BillingAddress;
|
|
8071
8057
|
}
|
|
8072
8058
|
|
|
8073
|
-
interface
|
|
8074
|
-
readonly '
|
|
8059
|
+
interface CustomerReference {
|
|
8060
|
+
readonly 'number': string;
|
|
8075
8061
|
}
|
|
8076
8062
|
|
|
8077
|
-
interface
|
|
8078
|
-
readonly '
|
|
8079
|
-
readonly '
|
|
8063
|
+
interface DatetimeRange {
|
|
8064
|
+
readonly 'from': string;
|
|
8065
|
+
readonly 'to': string;
|
|
8080
8066
|
}
|
|
8081
8067
|
|
|
8082
|
-
interface
|
|
8083
|
-
readonly '
|
|
8084
|
-
readonly '
|
|
8085
|
-
readonly '
|
|
8086
|
-
readonly '
|
|
8087
|
-
readonly '
|
|
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;
|
|
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;
|
|
8094
8074
|
}
|
|
8095
8075
|
|
|
8096
|
-
interface
|
|
8097
|
-
readonly '
|
|
8098
|
-
readonly '
|
|
8099
|
-
readonly 'country': string;
|
|
8100
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8076
|
+
interface Dimensions {
|
|
8077
|
+
readonly 'product'?: io.flow.common.v0.models.Dimension;
|
|
8078
|
+
readonly 'packaging'?: io.flow.common.v0.models.Dimension;
|
|
8101
8079
|
}
|
|
8102
8080
|
|
|
8103
|
-
interface
|
|
8104
|
-
readonly '
|
|
8105
|
-
readonly '
|
|
8106
|
-
readonly '
|
|
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;
|
|
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;
|
|
8110
8085
|
}
|
|
8111
8086
|
|
|
8112
|
-
interface
|
|
8113
|
-
readonly '
|
|
8114
|
-
readonly '
|
|
8115
|
-
readonly 'signature_secret_reference': string;
|
|
8087
|
+
interface DiscountOfferFixed {
|
|
8088
|
+
readonly 'discriminator': 'discount_offer_fixed';
|
|
8089
|
+
readonly 'money': io.flow.common.v0.models.Money;
|
|
8116
8090
|
}
|
|
8117
8091
|
|
|
8118
|
-
interface
|
|
8119
|
-
readonly '
|
|
8120
|
-
readonly '
|
|
8121
|
-
readonly 'signature_secret': string;
|
|
8092
|
+
interface DiscountOfferPercent {
|
|
8093
|
+
readonly 'discriminator': 'discount_offer_percent';
|
|
8094
|
+
readonly 'percent': number;
|
|
8122
8095
|
}
|
|
8123
8096
|
|
|
8124
|
-
interface
|
|
8125
|
-
readonly '
|
|
8126
|
-
readonly 'password': string;
|
|
8097
|
+
interface DiscountsForm {
|
|
8098
|
+
readonly 'discounts': io.flow.common.v0.models.DiscountForm[];
|
|
8127
8099
|
}
|
|
8128
8100
|
|
|
8129
|
-
interface
|
|
8130
|
-
readonly '
|
|
8131
|
-
readonly '
|
|
8132
|
-
readonly 'attributes': Record<string, string>;
|
|
8101
|
+
interface Duration {
|
|
8102
|
+
readonly 'unit': io.flow.common.v0.enums.UnitOfTime;
|
|
8103
|
+
readonly 'value': number;
|
|
8133
8104
|
}
|
|
8134
8105
|
|
|
8135
|
-
interface
|
|
8136
|
-
readonly '
|
|
8137
|
-
readonly '
|
|
8138
|
-
readonly '
|
|
8139
|
-
readonly 'cipher': string;
|
|
8140
|
-
readonly 'passphrase_ids': string[];
|
|
8106
|
+
interface EntityIdentifier {
|
|
8107
|
+
readonly 'name': io.flow.common.v0.enums.EntityIdentifierType;
|
|
8108
|
+
readonly 'number': string;
|
|
8109
|
+
readonly 'issuing_country'?: string;
|
|
8141
8110
|
}
|
|
8142
8111
|
|
|
8143
|
-
interface
|
|
8144
|
-
readonly '
|
|
8145
|
-
readonly '
|
|
8146
|
-
readonly 'title': string;
|
|
8147
|
-
readonly 'category_group': string;
|
|
8148
|
-
readonly 'description'?: string;
|
|
8112
|
+
interface Exception {
|
|
8113
|
+
readonly 'type': io.flow.common.v0.enums.ExceptionType;
|
|
8114
|
+
readonly 'datetime_range': io.flow.common.v0.models.DatetimeRange;
|
|
8149
8115
|
}
|
|
8150
8116
|
|
|
8151
|
-
interface
|
|
8152
|
-
readonly 'discriminator': 'fiserv_account';
|
|
8117
|
+
interface ExperienceSummary {
|
|
8153
8118
|
readonly 'id': string;
|
|
8154
|
-
readonly 'organization_id': string;
|
|
8155
8119
|
readonly 'key': string;
|
|
8156
|
-
readonly '
|
|
8157
|
-
readonly '
|
|
8158
|
-
readonly '
|
|
8159
|
-
readonly '
|
|
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;
|
|
8120
|
+
readonly 'name': string;
|
|
8121
|
+
readonly 'country'?: string;
|
|
8122
|
+
readonly 'currency'?: string;
|
|
8123
|
+
readonly 'language'?: string;
|
|
8164
8124
|
}
|
|
8165
8125
|
|
|
8166
|
-
interface
|
|
8167
|
-
readonly '
|
|
8168
|
-
readonly '
|
|
8169
|
-
readonly 'region': string;
|
|
8170
|
-
readonly 'country': string;
|
|
8171
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8126
|
+
interface IncludedLevies {
|
|
8127
|
+
readonly 'key': io.flow.common.v0.enums.IncludedLevyKey;
|
|
8128
|
+
readonly 'label': string;
|
|
8172
8129
|
}
|
|
8173
8130
|
|
|
8174
|
-
interface
|
|
8175
|
-
readonly '
|
|
8176
|
-
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
8177
|
-
readonly 'region': string;
|
|
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;
|
|
8131
|
+
interface InputForm {
|
|
8132
|
+
readonly 'values'?: Record<string, string>;
|
|
8182
8133
|
}
|
|
8183
8134
|
|
|
8184
|
-
interface
|
|
8185
|
-
readonly '
|
|
8186
|
-
readonly '
|
|
8135
|
+
interface InputFormSpecification {
|
|
8136
|
+
readonly 'inputs'?: io.flow.common.v0.models.InputSpecification[];
|
|
8137
|
+
readonly 'limitations'?: io.flow.common.v0.models.InputSpecificationLimitations;
|
|
8187
8138
|
}
|
|
8188
8139
|
|
|
8189
|
-
interface
|
|
8190
|
-
readonly '
|
|
8191
|
-
readonly '
|
|
8140
|
+
interface InputSpecification {
|
|
8141
|
+
readonly 'type': io.flow.common.v0.enums.InputSpecificationType;
|
|
8142
|
+
readonly 'name': string;
|
|
8143
|
+
readonly 'display_text'?: string;
|
|
8192
8144
|
}
|
|
8193
8145
|
|
|
8194
|
-
interface
|
|
8195
|
-
readonly '
|
|
8196
|
-
readonly '
|
|
8146
|
+
interface InputSpecificationLimitationMax {
|
|
8147
|
+
readonly 'discriminator': 'input_specification_limitation_max';
|
|
8148
|
+
readonly 'max': number;
|
|
8197
8149
|
}
|
|
8198
8150
|
|
|
8199
|
-
interface
|
|
8200
|
-
readonly '
|
|
8201
|
-
readonly 'id': string;
|
|
8202
|
-
readonly 'key': string;
|
|
8203
|
-
readonly 'organization_id': string;
|
|
8204
|
-
readonly 'external_id': string;
|
|
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;
|
|
8151
|
+
interface InputSpecificationLimitations {
|
|
8152
|
+
readonly 'limitations'?: io.flow.common.v0.unions.InputSpecificationLimitation[];
|
|
8213
8153
|
}
|
|
8214
8154
|
|
|
8215
|
-
interface
|
|
8216
|
-
readonly '
|
|
8217
|
-
readonly 'external_id': string;
|
|
8218
|
-
readonly 'base_currency': string;
|
|
8219
|
-
readonly 'funding_currency': string;
|
|
8220
|
-
readonly 'country': string;
|
|
8221
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8155
|
+
interface ItemReference {
|
|
8156
|
+
readonly 'number': string;
|
|
8222
8157
|
}
|
|
8223
8158
|
|
|
8224
|
-
interface
|
|
8225
|
-
readonly '
|
|
8226
|
-
readonly '
|
|
8227
|
-
readonly '
|
|
8228
|
-
readonly '
|
|
8229
|
-
readonly '
|
|
8230
|
-
readonly '
|
|
8231
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8232
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
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;
|
|
8233
8166
|
}
|
|
8234
8167
|
|
|
8235
|
-
interface
|
|
8236
|
-
readonly '
|
|
8237
|
-
readonly 'adyen_authentication_data': io.flow.payment.internal.v0.models.AdyenAuthenticationDataReference;
|
|
8168
|
+
interface LineItemAttributesForm {
|
|
8169
|
+
readonly 'attributes': Record<string, string>;
|
|
8238
8170
|
}
|
|
8239
8171
|
|
|
8240
|
-
interface
|
|
8241
|
-
readonly '
|
|
8242
|
-
readonly '
|
|
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;
|
|
8243
8181
|
}
|
|
8244
8182
|
|
|
8245
|
-
interface
|
|
8246
|
-
readonly '
|
|
8247
|
-
readonly 'bitpay_authentication_data': io.flow.payment.internal.v0.models.BitpayAuthenticationDataReference;
|
|
8183
|
+
interface LineItemQuantityForm {
|
|
8184
|
+
readonly 'quantity': number;
|
|
8248
8185
|
}
|
|
8249
8186
|
|
|
8250
|
-
interface
|
|
8251
|
-
readonly 'discriminator': '
|
|
8252
|
-
readonly '
|
|
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;
|
|
8253
8192
|
}
|
|
8254
8193
|
|
|
8255
|
-
interface
|
|
8256
|
-
readonly '
|
|
8257
|
-
readonly '
|
|
8194
|
+
interface LogoImageStatic {
|
|
8195
|
+
readonly 'url': string;
|
|
8196
|
+
readonly 'width': number;
|
|
8197
|
+
readonly 'height': number;
|
|
8258
8198
|
}
|
|
8259
8199
|
|
|
8260
|
-
interface
|
|
8261
|
-
readonly 'discriminator': '
|
|
8262
|
-
readonly '
|
|
8200
|
+
interface LogoImageSvg {
|
|
8201
|
+
readonly 'discriminator': 'svg';
|
|
8202
|
+
readonly 'url': string;
|
|
8263
8203
|
}
|
|
8264
8204
|
|
|
8265
|
-
interface
|
|
8266
|
-
readonly '
|
|
8267
|
-
readonly '
|
|
8205
|
+
interface Margin {
|
|
8206
|
+
readonly 'type': io.flow.common.v0.enums.MarginType;
|
|
8207
|
+
readonly 'value': number;
|
|
8268
8208
|
}
|
|
8269
8209
|
|
|
8270
|
-
interface
|
|
8271
|
-
readonly '
|
|
8272
|
-
readonly '
|
|
8273
|
-
readonly 'cvv_result'?: io.flow.payment.v0.models.CvvResult;
|
|
8274
|
-
readonly 'network_details'?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
8210
|
+
interface Measurement {
|
|
8211
|
+
readonly 'value': string;
|
|
8212
|
+
readonly 'units': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
8275
8213
|
}
|
|
8276
8214
|
|
|
8277
|
-
interface
|
|
8278
|
-
readonly '
|
|
8279
|
-
readonly '
|
|
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;
|
|
8280
8227
|
}
|
|
8281
8228
|
|
|
8282
|
-
interface
|
|
8283
|
-
readonly '
|
|
8229
|
+
interface MerchantOfRecordEntityRegistration {
|
|
8230
|
+
readonly 'number': string;
|
|
8231
|
+
readonly 'country': string;
|
|
8284
8232
|
}
|
|
8285
8233
|
|
|
8286
|
-
interface
|
|
8287
|
-
readonly '
|
|
8288
|
-
readonly '
|
|
8289
|
-
readonly 'payment_method_categories': io.flow.payment.internal.v0.models.KlarnaPaymentMethodCategory[];
|
|
8234
|
+
interface Money {
|
|
8235
|
+
readonly 'amount': number;
|
|
8236
|
+
readonly 'currency': string;
|
|
8290
8237
|
}
|
|
8291
8238
|
|
|
8292
|
-
interface
|
|
8293
|
-
readonly '
|
|
8294
|
-
readonly '
|
|
8295
|
-
readonly '
|
|
8296
|
-
readonly 'descriptive_asset_urls'?: string;
|
|
8239
|
+
interface MoneyWithBase {
|
|
8240
|
+
readonly 'currency': string;
|
|
8241
|
+
readonly 'amount': number;
|
|
8242
|
+
readonly 'base': io.flow.common.v0.models.Money;
|
|
8297
8243
|
}
|
|
8298
8244
|
|
|
8299
|
-
interface
|
|
8300
|
-
readonly '
|
|
8301
|
-
readonly '
|
|
8302
|
-
readonly '
|
|
8303
|
-
readonly 'key': string;
|
|
8304
|
-
readonly 'expires_at': string;
|
|
8245
|
+
interface MoneyWithOptionalBase {
|
|
8246
|
+
readonly 'currency': string;
|
|
8247
|
+
readonly 'amount': number;
|
|
8248
|
+
readonly 'base'?: io.flow.common.v0.models.Money;
|
|
8305
8249
|
}
|
|
8306
8250
|
|
|
8307
|
-
interface
|
|
8308
|
-
readonly '
|
|
8309
|
-
readonly '
|
|
8310
|
-
readonly 'default_capture_option': io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
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;
|
|
8251
|
+
interface Name {
|
|
8252
|
+
readonly 'first'?: string;
|
|
8253
|
+
readonly 'last'?: string;
|
|
8318
8254
|
}
|
|
8319
8255
|
|
|
8320
|
-
interface
|
|
8321
|
-
readonly '
|
|
8322
|
-
readonly '
|
|
8323
|
-
readonly '
|
|
8324
|
-
readonly '
|
|
8325
|
-
readonly '
|
|
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;
|
|
8326
8263
|
}
|
|
8327
8264
|
|
|
8328
|
-
interface
|
|
8329
|
-
readonly '
|
|
8330
|
-
readonly '
|
|
8331
|
-
readonly '
|
|
8332
|
-
readonly '
|
|
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;
|
|
8333
8272
|
}
|
|
8334
8273
|
|
|
8335
|
-
interface
|
|
8274
|
+
interface Organization {
|
|
8275
|
+
readonly 'discriminator': 'organization';
|
|
8336
8276
|
readonly 'id': string;
|
|
8337
|
-
readonly '
|
|
8338
|
-
readonly '
|
|
8339
|
-
readonly '
|
|
8340
|
-
readonly '
|
|
8341
|
-
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;
|
|
8342
8284
|
}
|
|
8343
8285
|
|
|
8344
|
-
interface
|
|
8345
|
-
readonly '
|
|
8346
|
-
readonly '
|
|
8347
|
-
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;
|
|
8348
8292
|
}
|
|
8349
8293
|
|
|
8350
|
-
interface
|
|
8294
|
+
interface OrganizationReference {
|
|
8295
|
+
readonly 'discriminator': 'organization_reference';
|
|
8351
8296
|
readonly 'id': string;
|
|
8352
|
-
readonly 'tribe': io.flow.payment.internal.v0.models.Tribe;
|
|
8353
|
-
}
|
|
8354
|
-
|
|
8355
|
-
interface PaymentMethodDetail {
|
|
8356
|
-
readonly 'method': io.flow.reference.v0.models.PaymentMethod;
|
|
8357
|
-
readonly 'method_options'?: io.flow.payment.internal.v0.models.PaymentMethodOption[];
|
|
8358
8297
|
}
|
|
8359
8298
|
|
|
8360
|
-
interface
|
|
8299
|
+
interface OrganizationSummary {
|
|
8361
8300
|
readonly 'id': string;
|
|
8362
8301
|
readonly 'name': string;
|
|
8363
|
-
readonly '
|
|
8302
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
8364
8303
|
}
|
|
8365
8304
|
|
|
8366
|
-
interface
|
|
8305
|
+
interface PartnerReference {
|
|
8367
8306
|
readonly 'id': string;
|
|
8368
|
-
readonly 'enable_auto_capture': boolean;
|
|
8369
|
-
readonly 'link_capture_to_vcc': boolean;
|
|
8370
|
-
readonly 'purge_ciphers': boolean;
|
|
8371
|
-
readonly 'domain'?: string;
|
|
8372
|
-
readonly 'merchant_category_code'?: number;
|
|
8373
|
-
readonly 'payment_statement_suffix'?: string;
|
|
8374
|
-
readonly 'payment_statement_condensed'?: string;
|
|
8375
8307
|
}
|
|
8376
8308
|
|
|
8377
|
-
interface
|
|
8378
|
-
readonly '
|
|
8379
|
-
readonly '
|
|
8380
|
-
readonly '
|
|
8381
|
-
readonly 'domain'?: string;
|
|
8382
|
-
readonly 'merchant_category_code'?: number;
|
|
8383
|
-
readonly 'payment_statement_suffix'?: string;
|
|
8309
|
+
interface Price {
|
|
8310
|
+
readonly 'amount': number;
|
|
8311
|
+
readonly 'currency': string;
|
|
8312
|
+
readonly 'label': string;
|
|
8384
8313
|
}
|
|
8385
8314
|
|
|
8386
|
-
interface
|
|
8387
|
-
readonly '
|
|
8388
|
-
readonly '
|
|
8389
|
-
readonly 'organization_id': string;
|
|
8390
|
-
readonly 'key': string;
|
|
8391
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
8392
|
-
readonly 'country': string;
|
|
8393
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.PaypalAuthentication;
|
|
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;
|
|
8315
|
+
interface PriceForm {
|
|
8316
|
+
readonly 'amount': number;
|
|
8317
|
+
readonly 'currency': string;
|
|
8398
8318
|
}
|
|
8399
8319
|
|
|
8400
|
-
interface
|
|
8401
|
-
readonly 'discriminator': '
|
|
8402
|
-
readonly '
|
|
8403
|
-
readonly 'country': string;
|
|
8404
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8320
|
+
interface PriceSourceCatalog {
|
|
8321
|
+
readonly 'discriminator': 'catalog';
|
|
8322
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
8405
8323
|
}
|
|
8406
8324
|
|
|
8407
|
-
interface
|
|
8408
|
-
readonly 'discriminator': '
|
|
8409
|
-
readonly '
|
|
8410
|
-
readonly '
|
|
8411
|
-
readonly '
|
|
8412
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8413
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
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;
|
|
8414
8330
|
}
|
|
8415
8331
|
|
|
8416
|
-
interface
|
|
8332
|
+
interface PriceSourcePriceBookReference {
|
|
8417
8333
|
readonly 'id': string;
|
|
8418
|
-
readonly '
|
|
8334
|
+
readonly 'key': string;
|
|
8419
8335
|
}
|
|
8420
8336
|
|
|
8421
|
-
interface
|
|
8422
|
-
readonly '
|
|
8423
|
-
readonly '
|
|
8337
|
+
interface PriceSourceProvided {
|
|
8338
|
+
readonly 'discriminator': 'provided';
|
|
8339
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
8424
8340
|
}
|
|
8425
8341
|
|
|
8426
|
-
interface
|
|
8427
|
-
readonly '
|
|
8428
|
-
readonly '
|
|
8342
|
+
interface PriceWithBase {
|
|
8343
|
+
readonly 'currency': string;
|
|
8344
|
+
readonly 'amount': number;
|
|
8345
|
+
readonly 'label': string;
|
|
8346
|
+
readonly 'base'?: io.flow.common.v0.models.Price;
|
|
8429
8347
|
}
|
|
8430
8348
|
|
|
8431
|
-
interface
|
|
8432
|
-
readonly 'discriminator': '
|
|
8433
|
-
readonly '
|
|
8434
|
-
readonly 'payer_id': string;
|
|
8349
|
+
interface RepeatDaily {
|
|
8350
|
+
readonly 'discriminator': 'repeat_daily';
|
|
8351
|
+
readonly 'interval': number;
|
|
8435
8352
|
}
|
|
8436
8353
|
|
|
8437
|
-
interface
|
|
8438
|
-
readonly 'discriminator': '
|
|
8439
|
-
readonly '
|
|
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;
|
|
8354
|
+
interface RepeatHourly {
|
|
8355
|
+
readonly 'discriminator': 'repeat_hourly';
|
|
8356
|
+
readonly 'interval': number;
|
|
8449
8357
|
}
|
|
8450
8358
|
|
|
8451
|
-
interface
|
|
8452
|
-
readonly 'discriminator': '
|
|
8453
|
-
readonly '
|
|
8454
|
-
readonly '
|
|
8455
|
-
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[];
|
|
8456
8363
|
}
|
|
8457
8364
|
|
|
8458
|
-
interface
|
|
8459
|
-
readonly 'discriminator': '
|
|
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;
|
|
8365
|
+
interface RepeatWeekly {
|
|
8366
|
+
readonly 'discriminator': 'repeat_weekly';
|
|
8367
|
+
readonly 'interval': number;
|
|
8368
|
+
readonly 'days_of_week': io.flow.common.v0.enums.DayOfWeek[];
|
|
8465
8369
|
}
|
|
8466
8370
|
|
|
8467
|
-
interface
|
|
8468
|
-
readonly '
|
|
8469
|
-
readonly '
|
|
8470
|
-
readonly '
|
|
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;
|
|
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;
|
|
8476
8375
|
}
|
|
8477
8376
|
|
|
8478
|
-
interface
|
|
8479
|
-
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;
|
|
8480
8384
|
}
|
|
8481
8385
|
|
|
8482
|
-
interface
|
|
8386
|
+
interface SessionReference {
|
|
8483
8387
|
readonly 'id': string;
|
|
8484
|
-
readonly 'organization_id': string;
|
|
8485
|
-
readonly 'key': string;
|
|
8486
|
-
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
8487
|
-
readonly 'country': string;
|
|
8488
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8489
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8490
8388
|
}
|
|
8491
8389
|
|
|
8492
|
-
interface
|
|
8390
|
+
interface User {
|
|
8391
|
+
readonly 'discriminator': 'user';
|
|
8493
8392
|
readonly 'id': string;
|
|
8494
|
-
readonly '
|
|
8495
|
-
readonly '
|
|
8393
|
+
readonly 'email'?: string;
|
|
8394
|
+
readonly 'name': io.flow.common.v0.models.Name;
|
|
8395
|
+
readonly 'status': io.flow.common.v0.enums.UserStatus;
|
|
8496
8396
|
}
|
|
8497
8397
|
|
|
8498
|
-
interface
|
|
8499
|
-
readonly 'discriminator': '
|
|
8398
|
+
interface UserReference {
|
|
8399
|
+
readonly 'discriminator': 'user_reference';
|
|
8500
8400
|
readonly 'id': string;
|
|
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;
|
|
8506
8401
|
}
|
|
8507
8402
|
|
|
8508
|
-
interface
|
|
8509
|
-
readonly '
|
|
8510
|
-
readonly '
|
|
8511
|
-
readonly '
|
|
8403
|
+
interface Zone {
|
|
8404
|
+
readonly 'postals'?: string[];
|
|
8405
|
+
readonly 'provinces'?: string[];
|
|
8406
|
+
readonly 'country': string;
|
|
8512
8407
|
}
|
|
8408
|
+
}
|
|
8513
8409
|
|
|
8514
|
-
|
|
8515
|
-
|
|
8516
|
-
|
|
8517
|
-
|
|
8518
|
-
|
|
8519
|
-
|
|
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
|
+
}
|
|
8520
8419
|
|
|
8521
|
-
|
|
8522
|
-
|
|
8523
|
-
|
|
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;
|
|
8524
8437
|
}
|
|
8525
8438
|
|
|
8526
|
-
interface
|
|
8527
|
-
readonly '
|
|
8528
|
-
readonly '
|
|
8529
|
-
readonly 'organization_id': string;
|
|
8530
|
-
readonly 'key': string;
|
|
8531
|
-
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
8532
|
-
readonly 'name': string;
|
|
8533
|
-
readonly 'external_id': string;
|
|
8534
|
-
readonly 'country': string;
|
|
8535
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.StripeAuthentication;
|
|
8536
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8537
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8538
|
-
readonly 'created_at': string;
|
|
8539
|
-
readonly 'updated_at': string;
|
|
8439
|
+
interface MarkedAsFinal {
|
|
8440
|
+
readonly 'products': boolean;
|
|
8441
|
+
readonly 'shipping': boolean;
|
|
8540
8442
|
}
|
|
8541
8443
|
|
|
8542
|
-
interface
|
|
8543
|
-
readonly '
|
|
8544
|
-
readonly '
|
|
8545
|
-
readonly '
|
|
8546
|
-
readonly 'external_id': string;
|
|
8547
|
-
readonly 'country': string;
|
|
8548
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
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;
|
|
8549
8448
|
}
|
|
8550
8449
|
|
|
8551
|
-
interface
|
|
8552
|
-
readonly '
|
|
8553
|
-
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
8554
|
-
readonly 'name': string;
|
|
8555
|
-
readonly 'external_id': string;
|
|
8556
|
-
readonly 'country': string;
|
|
8557
|
-
readonly 'authentication': io.flow.payment.internal.v0.models.StripeAuthenticationForm;
|
|
8558
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8559
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8450
|
+
interface RecordReference {
|
|
8451
|
+
readonly 'id': string;
|
|
8560
8452
|
}
|
|
8561
8453
|
|
|
8562
|
-
interface
|
|
8563
|
-
readonly '
|
|
8564
|
-
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;
|
|
8565
8462
|
}
|
|
8566
8463
|
|
|
8567
|
-
interface
|
|
8464
|
+
interface ReportAccount {
|
|
8568
8465
|
readonly 'id': string;
|
|
8466
|
+
readonly 'source': io.flow.billing.internal.v0.models.AccountSource;
|
|
8569
8467
|
}
|
|
8570
8468
|
|
|
8571
|
-
interface
|
|
8572
|
-
readonly '
|
|
8573
|
-
readonly '
|
|
8469
|
+
interface ReportBankAccount {
|
|
8470
|
+
readonly 'id'?: string;
|
|
8471
|
+
readonly 'last4'?: string;
|
|
8574
8472
|
}
|
|
8575
8473
|
|
|
8576
|
-
interface
|
|
8577
|
-
readonly '
|
|
8474
|
+
interface ReportForm {
|
|
8475
|
+
readonly 'from': string;
|
|
8476
|
+
readonly 'to': string;
|
|
8477
|
+
readonly 'type': io.flow.billing.reporting.v0.enums.ReportType;
|
|
8478
|
+
}
|
|
8479
|
+
|
|
8480
|
+
interface ReportPayment {
|
|
8578
8481
|
readonly 'id': string;
|
|
8579
|
-
readonly 'key': string;
|
|
8580
|
-
readonly 'organization_id': string;
|
|
8581
|
-
readonly 'external_id': string;
|
|
8582
|
-
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
|
-
readonly 'country': string;
|
|
8586
|
-
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8587
|
-
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8588
8482
|
readonly 'created_at': string;
|
|
8589
|
-
readonly 'updated_at': string;
|
|
8590
8483
|
}
|
|
8591
8484
|
|
|
8592
|
-
interface
|
|
8593
|
-
readonly '
|
|
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;
|
|
8485
|
+
interface ReportingAuthorizationReference {
|
|
8486
|
+
readonly 'id': string;
|
|
8601
8487
|
}
|
|
8602
8488
|
|
|
8603
|
-
interface
|
|
8604
|
-
readonly '
|
|
8605
|
-
readonly '
|
|
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;
|
|
8489
|
+
interface ReportingBusiness {
|
|
8490
|
+
readonly 'vat_registration_number': string;
|
|
8491
|
+
readonly 'name'?: string;
|
|
8610
8492
|
}
|
|
8611
8493
|
|
|
8612
|
-
interface
|
|
8613
|
-
readonly '
|
|
8614
|
-
readonly '
|
|
8615
|
-
readonly '
|
|
8616
|
-
readonly '
|
|
8617
|
-
readonly 'account_type': io.flow.stripe.v0.enums.AccountType;
|
|
8618
|
-
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8619
|
-
readonly 'country': string;
|
|
8620
|
-
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8494
|
+
interface ReportingConversionRates {
|
|
8495
|
+
readonly 'merchant': number;
|
|
8496
|
+
readonly 'entity': number;
|
|
8497
|
+
readonly 'usd': number;
|
|
8498
|
+
readonly 'eur': number;
|
|
8621
8499
|
}
|
|
8622
8500
|
|
|
8623
|
-
interface
|
|
8501
|
+
interface ReportingCountry {
|
|
8502
|
+
readonly 'code': string;
|
|
8503
|
+
readonly 'is_eu': boolean;
|
|
8504
|
+
}
|
|
8505
|
+
|
|
8506
|
+
interface ReportingCurrencies {
|
|
8507
|
+
readonly 'transaction': string;
|
|
8508
|
+
readonly 'merchant': string;
|
|
8509
|
+
readonly 'entity': string;
|
|
8510
|
+
}
|
|
8511
|
+
|
|
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;
|
|
8518
|
+
}
|
|
8519
|
+
|
|
8520
|
+
interface ReportingDebugMissingSubsidies {
|
|
8521
|
+
readonly 'price'?: boolean;
|
|
8522
|
+
readonly 'tax'?: boolean;
|
|
8523
|
+
readonly 'duty'?: boolean;
|
|
8524
|
+
}
|
|
8525
|
+
|
|
8526
|
+
interface ReportingDestination {
|
|
8527
|
+
readonly 'country': io.flow.billing.reporting.v0.models.ReportingCountry;
|
|
8528
|
+
readonly 'province'?: io.flow.billing.reporting.v0.models.ReportingProvince;
|
|
8529
|
+
}
|
|
8530
|
+
|
|
8531
|
+
interface ReportingEntity {
|
|
8624
8532
|
readonly 'id': string;
|
|
8625
|
-
readonly 'description': string;
|
|
8626
8533
|
}
|
|
8627
8534
|
|
|
8628
|
-
interface
|
|
8535
|
+
interface ReportingFulfillment {
|
|
8629
8536
|
readonly 'id': string;
|
|
8630
|
-
readonly '
|
|
8631
|
-
readonly '
|
|
8632
|
-
readonly '
|
|
8633
|
-
readonly '
|
|
8634
|
-
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;
|
|
8635
8550
|
}
|
|
8636
|
-
}
|
|
8637
8551
|
|
|
8638
|
-
|
|
8639
|
-
|
|
8640
|
-
|
|
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
|
-
}
|
|
8552
|
+
interface ReportingFulfillmentHas {
|
|
8553
|
+
readonly 'zero_vat_product': boolean;
|
|
8554
|
+
}
|
|
8654
8555
|
|
|
8655
|
-
|
|
8656
|
-
|
|
8657
|
-
|
|
8556
|
+
interface ReportingFulfillmentIs {
|
|
8557
|
+
readonly 'replacement': boolean;
|
|
8558
|
+
readonly 'virtual': io.flow.billing.reporting.v0.enums.ReportingFulfillmentIsVirtual;
|
|
8559
|
+
readonly 'duties_guaranteed': boolean;
|
|
8560
|
+
readonly 'wyol': boolean;
|
|
8561
|
+
readonly 'b2b': boolean;
|
|
8562
|
+
readonly 'domestic': boolean;
|
|
8563
|
+
}
|
|
8658
8564
|
|
|
8659
|
-
|
|
8660
|
-
|
|
8661
|
-
readonly '
|
|
8662
|
-
readonly '
|
|
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;
|
|
8663
8572
|
}
|
|
8664
8573
|
|
|
8665
|
-
interface
|
|
8666
|
-
readonly '
|
|
8667
|
-
readonly '
|
|
8668
|
-
readonly '
|
|
8669
|
-
readonly 'package': io.flow.partner.v0.models.BridgeLabelPackage;
|
|
8670
|
-
readonly 'hub'?: io.flow.partner.v0.models.BridgeHub;
|
|
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;
|
|
8671
8578
|
}
|
|
8672
8579
|
|
|
8673
|
-
interface
|
|
8674
|
-
readonly '
|
|
8675
|
-
readonly '
|
|
8676
|
-
readonly '
|
|
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;
|
|
8677
8588
|
}
|
|
8678
8589
|
|
|
8679
|
-
interface
|
|
8680
|
-
readonly '
|
|
8681
|
-
readonly '
|
|
8682
|
-
readonly '
|
|
8683
|
-
readonly '
|
|
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[];
|
|
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;
|
|
8688
8595
|
}
|
|
8689
8596
|
|
|
8690
|
-
interface
|
|
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;
|
|
8604
|
+
}
|
|
8605
|
+
|
|
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 {
|
|
8691
8615
|
readonly 'id': string;
|
|
8692
|
-
readonly '
|
|
8693
|
-
readonly '
|
|
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;
|
|
8616
|
+
readonly 'number': string;
|
|
8617
|
+
readonly 'submitted_at': string;
|
|
8712
8618
|
}
|
|
8713
8619
|
|
|
8714
|
-
interface
|
|
8620
|
+
interface ReportingOrganizationSummary {
|
|
8715
8621
|
readonly 'id': string;
|
|
8716
|
-
readonly '
|
|
8717
|
-
readonly 'service': io.flow.fulfillment.v0.models.ServiceSummary;
|
|
8718
|
-
readonly 'pdf': string;
|
|
8719
|
-
readonly 'data': string;
|
|
8622
|
+
readonly 'name': string;
|
|
8720
8623
|
}
|
|
8721
8624
|
|
|
8722
|
-
interface
|
|
8723
|
-
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;
|
|
8724
8630
|
}
|
|
8725
8631
|
|
|
8726
|
-
interface
|
|
8727
|
-
readonly '
|
|
8728
|
-
readonly '
|
|
8729
|
-
readonly '
|
|
8730
|
-
readonly '
|
|
8731
|
-
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;
|
|
8732
8639
|
}
|
|
8733
8640
|
|
|
8734
|
-
interface
|
|
8735
|
-
readonly '
|
|
8736
|
-
readonly 'reason': io.flow.order.management.v0.enums.CancelReason;
|
|
8737
|
-
readonly 'lines': io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
8641
|
+
interface ReportingPaymentMetadataAdditionalAuthorizations {
|
|
8642
|
+
readonly 'ids': string;
|
|
8738
8643
|
}
|
|
8739
8644
|
|
|
8740
|
-
interface
|
|
8741
|
-
readonly '
|
|
8742
|
-
readonly '
|
|
8645
|
+
interface ReportingProvince {
|
|
8646
|
+
readonly 'code'?: string;
|
|
8647
|
+
readonly 'name': string;
|
|
8743
8648
|
}
|
|
8744
8649
|
|
|
8745
|
-
interface
|
|
8650
|
+
interface ReportingReconciliation {
|
|
8651
|
+
readonly 'date': string;
|
|
8652
|
+
readonly 'month': number;
|
|
8653
|
+
readonly 'year': number;
|
|
8654
|
+
}
|
|
8655
|
+
|
|
8656
|
+
interface ReportingRefundReference {
|
|
8746
8657
|
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
8658
|
}
|
|
8753
8659
|
|
|
8754
|
-
interface
|
|
8755
|
-
readonly '
|
|
8756
|
-
readonly '
|
|
8660
|
+
interface ReportingShipment {
|
|
8661
|
+
readonly 'carrier': string;
|
|
8662
|
+
readonly 'tracking_number'?: string;
|
|
8757
8663
|
}
|
|
8758
8664
|
|
|
8759
|
-
interface
|
|
8760
|
-
readonly '
|
|
8761
|
-
readonly '
|
|
8762
|
-
readonly '
|
|
8763
|
-
readonly '
|
|
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;
|
|
8764
8672
|
}
|
|
8765
8673
|
|
|
8766
|
-
interface
|
|
8767
|
-
readonly '
|
|
8768
|
-
readonly 'order_number': string;
|
|
8674
|
+
interface ReportingUsd {
|
|
8675
|
+
readonly 'usd': number;
|
|
8769
8676
|
}
|
|
8770
8677
|
|
|
8771
|
-
interface
|
|
8772
|
-
readonly '
|
|
8678
|
+
interface ReportingVatRemittance {
|
|
8679
|
+
readonly 'currency': string;
|
|
8680
|
+
readonly 'rate': io.flow.billing.reporting.v0.models.ReportingVatRemittanceRate;
|
|
8773
8681
|
}
|
|
8774
8682
|
|
|
8775
|
-
interface
|
|
8776
|
-
readonly '
|
|
8777
|
-
readonly 'number': string;
|
|
8683
|
+
interface ReportingVatRemittanceRate {
|
|
8684
|
+
readonly 'entity': number;
|
|
8778
8685
|
}
|
|
8779
8686
|
|
|
8780
|
-
interface
|
|
8687
|
+
interface ReportingVendor {
|
|
8781
8688
|
readonly 'id': string;
|
|
8782
8689
|
}
|
|
8783
8690
|
|
|
8784
|
-
interface
|
|
8785
|
-
readonly '
|
|
8786
|
-
readonly 'organization':
|
|
8787
|
-
readonly '
|
|
8788
|
-
readonly '
|
|
8789
|
-
readonly '
|
|
8790
|
-
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;
|
|
8791
8707
|
}
|
|
8792
8708
|
}
|
|
8793
8709
|
|
|
8794
|
-
declare namespace io.flow.
|
|
8795
|
-
type
|
|
8796
|
-
|
|
8797
|
-
|
|
8798
|
-
|
|
8799
|
-
type
|
|
8800
|
-
type
|
|
8801
|
-
type
|
|
8802
|
-
type
|
|
8803
|
-
type
|
|
8804
|
-
type
|
|
8805
|
-
type
|
|
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';
|
|
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';
|
|
8834
8722
|
}
|
|
8835
8723
|
|
|
8836
|
-
declare namespace io.flow.
|
|
8837
|
-
interface
|
|
8838
|
-
readonly '
|
|
8839
|
-
readonly '
|
|
8840
|
-
readonly '
|
|
8841
|
-
readonly '
|
|
8842
|
-
readonly '
|
|
8843
|
-
readonly '
|
|
8844
|
-
readonly '
|
|
8845
|
-
readonly '
|
|
8846
|
-
readonly '
|
|
8724
|
+
declare namespace io.flow.payment.internal.v0.models {
|
|
8725
|
+
interface AdyenAccount {
|
|
8726
|
+
readonly 'discriminator': 'adyen_account';
|
|
8727
|
+
readonly 'id': string;
|
|
8728
|
+
readonly 'organization_id': string;
|
|
8729
|
+
readonly 'key': string;
|
|
8730
|
+
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
8731
|
+
readonly 'name': string;
|
|
8732
|
+
readonly 'ui_reference': string;
|
|
8733
|
+
readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthentication;
|
|
8734
|
+
readonly 'country': string;
|
|
8735
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8736
|
+
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8737
|
+
readonly 'created_at': string;
|
|
8738
|
+
readonly 'updated_at': string;
|
|
8847
8739
|
}
|
|
8848
8740
|
|
|
8849
|
-
interface
|
|
8850
|
-
readonly '
|
|
8851
|
-
readonly '
|
|
8852
|
-
readonly '
|
|
8853
|
-
readonly '
|
|
8854
|
-
readonly '
|
|
8855
|
-
readonly '
|
|
8856
|
-
readonly 'company'?: string;
|
|
8741
|
+
interface AdyenAccountModificationForm {
|
|
8742
|
+
readonly 'discriminator': 'adyen_account_modification_form';
|
|
8743
|
+
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
8744
|
+
readonly 'name': string;
|
|
8745
|
+
readonly 'ui_reference': string;
|
|
8746
|
+
readonly 'country': string;
|
|
8747
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8857
8748
|
}
|
|
8858
8749
|
|
|
8859
|
-
interface
|
|
8750
|
+
interface AdyenAccountPutForm {
|
|
8751
|
+
readonly 'discriminator': 'adyen_account_put_form';
|
|
8752
|
+
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
8753
|
+
readonly 'name': string;
|
|
8754
|
+
readonly 'ui_reference': string;
|
|
8755
|
+
readonly 'authentication': io.flow.payment.internal.v0.models.AdyenAuthenticationForm;
|
|
8756
|
+
readonly 'country': string;
|
|
8757
|
+
readonly 'status'?: io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8758
|
+
readonly 'organization_capability'?: io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8759
|
+
}
|
|
8760
|
+
|
|
8761
|
+
interface AdyenAuthentication {
|
|
8762
|
+
readonly 'username': string;
|
|
8763
|
+
readonly 'password_reference': string;
|
|
8764
|
+
readonly 'signature_secret_reference': string;
|
|
8765
|
+
}
|
|
8766
|
+
|
|
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;
|
|
8772
|
+
}
|
|
8773
|
+
|
|
8774
|
+
interface AdyenAuthenticationForm {
|
|
8775
|
+
readonly 'username': string;
|
|
8776
|
+
readonly 'password': string;
|
|
8777
|
+
readonly 'signature_secret': string;
|
|
8778
|
+
}
|
|
8779
|
+
|
|
8780
|
+
interface AdyenMerchant {
|
|
8781
|
+
readonly 'discriminator': 'adyen_merchant';
|
|
8860
8782
|
readonly 'id': string;
|
|
8861
|
-
readonly '
|
|
8783
|
+
readonly 'key': string;
|
|
8784
|
+
readonly 'organization_id': string;
|
|
8785
|
+
readonly 'external_id': string;
|
|
8786
|
+
readonly 'processor_account_reference': io.flow.payment.internal.v0.models.ProcessorAccountReference;
|
|
8787
|
+
readonly 'country': string;
|
|
8788
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8789
|
+
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8790
|
+
readonly 'created_at': string;
|
|
8791
|
+
readonly 'updated_at': string;
|
|
8792
|
+
}
|
|
8793
|
+
|
|
8794
|
+
interface AdyenMerchantModificationForm {
|
|
8795
|
+
readonly 'discriminator': 'adyen_merchant_modification_form';
|
|
8796
|
+
readonly 'external_id': string;
|
|
8797
|
+
readonly 'country': string;
|
|
8798
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8799
|
+
}
|
|
8800
|
+
|
|
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;
|
|
8808
|
+
}
|
|
8809
|
+
|
|
8810
|
+
interface AdyenPaymentDetailsForm {
|
|
8811
|
+
readonly 'fingerprint'?: string;
|
|
8812
|
+
readonly 'challenge_result'?: string;
|
|
8813
|
+
}
|
|
8814
|
+
|
|
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;
|
|
8823
|
+
}
|
|
8824
|
+
|
|
8825
|
+
interface AfterpayAccount {
|
|
8826
|
+
readonly 'discriminator': 'afterpay_account';
|
|
8827
|
+
readonly 'id': string;
|
|
8828
|
+
readonly 'organization_id': string;
|
|
8829
|
+
readonly 'key': string;
|
|
8830
|
+
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
8831
|
+
readonly 'country': string;
|
|
8832
|
+
readonly 'authentication': io.flow.payment.internal.v0.models.AfterpayAuthentication;
|
|
8833
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8834
|
+
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
8835
|
+
readonly 'created_at': string;
|
|
8836
|
+
readonly 'updated_at': string;
|
|
8837
|
+
}
|
|
8838
|
+
|
|
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;
|
|
8844
|
+
}
|
|
8845
|
+
|
|
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
|
+
}
|
|
8854
|
+
|
|
8855
|
+
interface AfterpayAuthentication {
|
|
8856
|
+
readonly 'username': string;
|
|
8857
|
+
readonly 'password_reference': string;
|
|
8858
|
+
}
|
|
8859
|
+
|
|
8860
|
+
interface AfterpayAuthenticationDataReference {
|
|
8861
|
+
readonly 'account_id': string;
|
|
8862
|
+
}
|
|
8863
|
+
|
|
8864
|
+
interface AfterpayAuthenticationForm {
|
|
8865
|
+
readonly 'username': string;
|
|
8866
|
+
readonly 'password': string;
|
|
8867
|
+
}
|
|
8868
|
+
|
|
8869
|
+
interface ApplePayAuthorizationPayload {
|
|
8870
|
+
readonly 'discriminator': 'apple_pay_authorization_payload';
|
|
8871
|
+
readonly 'apple_pay_token': string;
|
|
8872
|
+
}
|
|
8873
|
+
|
|
8874
|
+
interface AuthenticationForm {
|
|
8875
|
+
readonly 'password': string;
|
|
8876
|
+
}
|
|
8877
|
+
|
|
8878
|
+
interface AuthorizationBundle {
|
|
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;
|
|
8884
|
+
}
|
|
8885
|
+
|
|
8886
|
+
interface AuthorizationMetadata {
|
|
8887
|
+
readonly 'limit'?: number;
|
|
8888
|
+
}
|
|
8889
|
+
|
|
8890
|
+
interface AuthorizationParameters {
|
|
8891
|
+
readonly 'method': string;
|
|
8892
|
+
readonly 'parameters': any/*object*/;
|
|
8893
|
+
}
|
|
8894
|
+
|
|
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;
|
|
8902
|
+
}
|
|
8903
|
+
|
|
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;
|
|
8916
|
+
}
|
|
8917
|
+
|
|
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;
|
|
8923
|
+
}
|
|
8924
|
+
|
|
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;
|
|
8932
|
+
}
|
|
8933
|
+
|
|
8934
|
+
interface BitpayAuthentication {
|
|
8935
|
+
readonly 'api_token': string;
|
|
8936
|
+
readonly 'public_key': string;
|
|
8937
|
+
readonly 'secret_key_reference': string;
|
|
8938
|
+
}
|
|
8939
|
+
|
|
8940
|
+
interface BitpayAuthenticationDataReference {
|
|
8941
|
+
readonly 'id': string;
|
|
8942
|
+
}
|
|
8943
|
+
|
|
8944
|
+
interface BitpayAuthenticationForm {
|
|
8945
|
+
readonly 'api_token': string;
|
|
8946
|
+
readonly 'public_key': string;
|
|
8947
|
+
readonly 'secret_key': string;
|
|
8948
|
+
}
|
|
8949
|
+
|
|
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;
|
|
8967
|
+
}
|
|
8968
|
+
|
|
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;
|
|
8974
|
+
}
|
|
8975
|
+
|
|
8976
|
+
interface Cipher {
|
|
8977
|
+
readonly 'id': string;
|
|
8978
|
+
readonly 'attributes': Record<string, string>;
|
|
8979
|
+
}
|
|
8980
|
+
|
|
8981
|
+
interface CipherForm {
|
|
8982
|
+
readonly 'text': string;
|
|
8983
|
+
readonly 'attributes'?: Record<string, string>;
|
|
8984
|
+
readonly 'password'?: string;
|
|
8985
|
+
}
|
|
8986
|
+
|
|
8987
|
+
interface CipherReference {
|
|
8988
|
+
readonly 'id': string;
|
|
8989
|
+
}
|
|
8990
|
+
|
|
8991
|
+
interface ClassicPaymentRedirectForm {
|
|
8992
|
+
readonly 'MD': string;
|
|
8993
|
+
readonly 'PaRes': string;
|
|
8994
|
+
}
|
|
8995
|
+
|
|
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;
|
|
9008
|
+
}
|
|
9009
|
+
|
|
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;
|
|
9015
|
+
}
|
|
9016
|
+
|
|
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;
|
|
9024
|
+
}
|
|
9025
|
+
|
|
9026
|
+
interface CryptoAuthentication {
|
|
9027
|
+
readonly 'public_key': string;
|
|
9028
|
+
readonly 'secret_key_reference': string;
|
|
9029
|
+
readonly 'signature_secret_reference': string;
|
|
9030
|
+
}
|
|
9031
|
+
|
|
9032
|
+
interface CryptoAuthenticationForm {
|
|
9033
|
+
readonly 'public_key': string;
|
|
9034
|
+
readonly 'secret_key': string;
|
|
9035
|
+
readonly 'signature_secret': string;
|
|
9036
|
+
}
|
|
9037
|
+
|
|
9038
|
+
interface DecryptCipherForm {
|
|
9039
|
+
readonly 'id': string;
|
|
9040
|
+
readonly 'password': string;
|
|
9041
|
+
}
|
|
9042
|
+
|
|
9043
|
+
interface DecryptedCipher {
|
|
9044
|
+
readonly 'id': string;
|
|
9045
|
+
readonly 'cleartext': string;
|
|
9046
|
+
readonly 'attributes': Record<string, string>;
|
|
9047
|
+
}
|
|
9048
|
+
|
|
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[];
|
|
9055
|
+
}
|
|
9056
|
+
|
|
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;
|
|
9063
|
+
}
|
|
9064
|
+
|
|
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;
|
|
8862
9078
|
}
|
|
8863
9079
|
|
|
8864
|
-
interface
|
|
8865
|
-
readonly '
|
|
8866
|
-
readonly '
|
|
8867
|
-
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;
|
|
8868
9086
|
}
|
|
8869
9087
|
|
|
8870
|
-
interface
|
|
8871
|
-
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;
|
|
8872
9096
|
}
|
|
8873
9097
|
|
|
8874
|
-
interface
|
|
8875
|
-
readonly '
|
|
9098
|
+
interface FiservAuthentication {
|
|
9099
|
+
readonly 'public_key': string;
|
|
9100
|
+
readonly 'secret_key_reference': string;
|
|
8876
9101
|
}
|
|
8877
9102
|
|
|
8878
|
-
interface
|
|
8879
|
-
readonly '
|
|
8880
|
-
readonly '
|
|
8881
|
-
readonly 'email'?: string;
|
|
8882
|
-
readonly 'phone'?: string;
|
|
9103
|
+
interface FiservAuthenticationDataReference {
|
|
9104
|
+
readonly 'account_id': string;
|
|
9105
|
+
readonly 'store_id': string;
|
|
8883
9106
|
}
|
|
8884
9107
|
|
|
8885
|
-
interface
|
|
8886
|
-
readonly '
|
|
9108
|
+
interface FiservAuthenticationForm {
|
|
9109
|
+
readonly 'public_key': string;
|
|
9110
|
+
readonly 'secret_key': string;
|
|
8887
9111
|
}
|
|
8888
9112
|
|
|
8889
|
-
interface
|
|
8890
|
-
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;
|
|
9122
|
+
readonly 'country': string;
|
|
9123
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
9124
|
+
readonly 'organization_capability': io.flow.payment.internal.v0.enums.OrganizationCapability;
|
|
9125
|
+
readonly 'created_at': string;
|
|
9126
|
+
readonly 'updated_at': string;
|
|
8891
9127
|
}
|
|
8892
9128
|
|
|
8893
|
-
interface
|
|
8894
|
-
readonly '
|
|
8895
|
-
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;
|
|
9134
|
+
readonly 'country': string;
|
|
9135
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
8896
9136
|
}
|
|
8897
9137
|
|
|
8898
|
-
interface
|
|
8899
|
-
readonly '
|
|
8900
|
-
readonly '
|
|
8901
|
-
readonly '
|
|
8902
|
-
readonly '
|
|
8903
|
-
readonly '
|
|
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;
|
|
8904
9147
|
}
|
|
8905
9148
|
|
|
8906
|
-
interface
|
|
8907
|
-
readonly '
|
|
8908
|
-
readonly '
|
|
9149
|
+
interface InternalAdyenAuthorizationDetails {
|
|
9150
|
+
readonly 'discriminator': 'internal_adyen_authorization_details';
|
|
9151
|
+
readonly 'adyen_authentication_data': io.flow.payment.internal.v0.models.AdyenAuthenticationDataReference;
|
|
8909
9152
|
}
|
|
8910
9153
|
|
|
8911
|
-
interface
|
|
8912
|
-
readonly '
|
|
8913
|
-
readonly '
|
|
8914
|
-
readonly 'label'?: string;
|
|
9154
|
+
interface InternalAfterpayAuthorizationDetails {
|
|
9155
|
+
readonly 'discriminator': 'internal_afterpay_authorization_details';
|
|
9156
|
+
readonly 'afterpay_authentication_data': io.flow.payment.internal.v0.models.AfterpayAuthenticationDataReference;
|
|
8915
9157
|
}
|
|
8916
9158
|
|
|
8917
|
-
interface
|
|
8918
|
-
readonly 'discriminator': '
|
|
8919
|
-
readonly '
|
|
9159
|
+
interface InternalBitpayAuthorizationDetails {
|
|
9160
|
+
readonly 'discriminator': 'internal_bitpay_authorization_details';
|
|
9161
|
+
readonly 'bitpay_authentication_data': io.flow.payment.internal.v0.models.BitpayAuthenticationDataReference;
|
|
8920
9162
|
}
|
|
8921
9163
|
|
|
8922
|
-
interface
|
|
8923
|
-
readonly 'discriminator': '
|
|
8924
|
-
readonly '
|
|
9164
|
+
interface InternalFiservAuthorizationDetails {
|
|
9165
|
+
readonly 'discriminator': 'internal_fiserv_authorization_details';
|
|
9166
|
+
readonly 'fiserv_authentication_data': io.flow.payment.internal.v0.models.FiservAuthenticationDataReference;
|
|
8925
9167
|
}
|
|
8926
9168
|
|
|
8927
|
-
interface
|
|
8928
|
-
readonly '
|
|
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;
|
|
8929
9172
|
}
|
|
8930
9173
|
|
|
8931
|
-
interface
|
|
8932
|
-
readonly '
|
|
8933
|
-
readonly '
|
|
9174
|
+
interface InternalPaypalAuthorizationDetails {
|
|
9175
|
+
readonly 'discriminator': 'internal_paypal_authorization_details';
|
|
9176
|
+
readonly 'paypal_authentication_data': io.flow.payment.internal.v0.models.PaypalAccountReference;
|
|
8934
9177
|
}
|
|
8935
9178
|
|
|
8936
|
-
interface
|
|
8937
|
-
readonly '
|
|
8938
|
-
readonly '
|
|
8939
|
-
readonly 'issuing_country'?: string;
|
|
9179
|
+
interface InternalStripeAuthorizationDetails {
|
|
9180
|
+
readonly 'discriminator': 'internal_stripe_authorization_details';
|
|
9181
|
+
readonly 'stripe_authentication_data': io.flow.payment.internal.v0.models.StripeAuthenticationDataReference;
|
|
8940
9182
|
}
|
|
8941
9183
|
|
|
8942
|
-
interface
|
|
8943
|
-
readonly 'type':
|
|
8944
|
-
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;
|
|
8945
9189
|
}
|
|
8946
9190
|
|
|
8947
|
-
interface
|
|
9191
|
+
interface Key {
|
|
8948
9192
|
readonly 'id': string;
|
|
8949
|
-
readonly '
|
|
8950
|
-
readonly 'name': string;
|
|
8951
|
-
readonly 'country'?: string;
|
|
8952
|
-
readonly 'currency'?: string;
|
|
8953
|
-
readonly 'language'?: string;
|
|
8954
|
-
}
|
|
8955
|
-
|
|
8956
|
-
interface IncludedLevies {
|
|
8957
|
-
readonly 'key': io.flow.common.v0.enums.IncludedLevyKey;
|
|
8958
|
-
readonly 'label': string;
|
|
9193
|
+
readonly 'created_at': string;
|
|
8959
9194
|
}
|
|
8960
9195
|
|
|
8961
|
-
interface
|
|
8962
|
-
readonly '
|
|
9196
|
+
interface KeyReference {
|
|
9197
|
+
readonly 'id': string;
|
|
8963
9198
|
}
|
|
8964
9199
|
|
|
8965
|
-
interface
|
|
8966
|
-
readonly '
|
|
8967
|
-
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[];
|
|
8968
9204
|
}
|
|
8969
9205
|
|
|
8970
|
-
interface
|
|
8971
|
-
readonly '
|
|
8972
|
-
readonly 'name'
|
|
8973
|
-
readonly '
|
|
9206
|
+
interface KlarnaPaymentMethodCategory {
|
|
9207
|
+
readonly 'id': string;
|
|
9208
|
+
readonly 'name'?: string;
|
|
9209
|
+
readonly 'standard_asset_urls'?: string;
|
|
9210
|
+
readonly 'descriptive_asset_urls'?: string;
|
|
8974
9211
|
}
|
|
8975
9212
|
|
|
8976
|
-
interface
|
|
8977
|
-
readonly 'discriminator': '
|
|
8978
|
-
readonly '
|
|
9213
|
+
interface OnlineAuthorizationCompleted {
|
|
9214
|
+
readonly 'discriminator': 'online_authorization_completed';
|
|
9215
|
+
readonly 'id': string;
|
|
9216
|
+
readonly 'organization': string;
|
|
9217
|
+
readonly 'key': string;
|
|
9218
|
+
readonly 'expires_at': string;
|
|
8979
9219
|
}
|
|
8980
9220
|
|
|
8981
|
-
interface
|
|
8982
|
-
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;
|
|
8983
9232
|
}
|
|
8984
9233
|
|
|
8985
|
-
interface
|
|
8986
|
-
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;
|
|
8987
9240
|
}
|
|
8988
9241
|
|
|
8989
|
-
interface
|
|
8990
|
-
readonly '
|
|
8991
|
-
readonly '
|
|
8992
|
-
readonly '
|
|
8993
|
-
readonly '
|
|
8994
|
-
readonly 'center'?: string;
|
|
8995
|
-
readonly 'discount'?: io.flow.common.v0.models.Money;
|
|
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;
|
|
8996
9247
|
}
|
|
8997
9248
|
|
|
8998
|
-
interface
|
|
8999
|
-
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;
|
|
9000
9256
|
}
|
|
9001
9257
|
|
|
9002
|
-
interface
|
|
9003
|
-
readonly '
|
|
9004
|
-
readonly '
|
|
9005
|
-
readonly '
|
|
9006
|
-
readonly 'price'?: io.flow.common.v0.models.Money;
|
|
9007
|
-
readonly 'attributes'?: Record<string, string>;
|
|
9008
|
-
readonly 'center'?: string;
|
|
9009
|
-
readonly 'discount'?: io.flow.common.v0.models.Money;
|
|
9010
|
-
readonly 'discounts'?: io.flow.common.v0.models.DiscountsForm;
|
|
9258
|
+
interface PassphraseForm {
|
|
9259
|
+
readonly 'tribe': string;
|
|
9260
|
+
readonly 'current_password'?: string;
|
|
9261
|
+
readonly 'new_password': string;
|
|
9011
9262
|
}
|
|
9012
9263
|
|
|
9013
|
-
interface
|
|
9014
|
-
readonly '
|
|
9264
|
+
interface PassphraseSummary {
|
|
9265
|
+
readonly 'id': string;
|
|
9266
|
+
readonly 'tribe': io.flow.payment.internal.v0.models.Tribe;
|
|
9015
9267
|
}
|
|
9016
9268
|
|
|
9017
|
-
interface
|
|
9018
|
-
readonly '
|
|
9019
|
-
readonly '
|
|
9020
|
-
readonly 'medium': io.flow.common.v0.models.LogoImageStatic;
|
|
9021
|
-
readonly 'large'?: io.flow.common.v0.models.LogoImageStatic;
|
|
9269
|
+
interface PaymentMethodDetail {
|
|
9270
|
+
readonly 'method': io.flow.reference.v0.models.PaymentMethod;
|
|
9271
|
+
readonly 'method_options'?: io.flow.payment.internal.v0.models.PaymentMethodOption[];
|
|
9022
9272
|
}
|
|
9023
9273
|
|
|
9024
|
-
interface
|
|
9025
|
-
readonly '
|
|
9026
|
-
readonly '
|
|
9027
|
-
readonly '
|
|
9274
|
+
interface PaymentMethodOption {
|
|
9275
|
+
readonly 'id': string;
|
|
9276
|
+
readonly 'name': string;
|
|
9277
|
+
readonly 'logo'?: io.flow.common.v0.unions.LogoImage;
|
|
9028
9278
|
}
|
|
9029
9279
|
|
|
9030
|
-
interface
|
|
9031
|
-
readonly '
|
|
9032
|
-
readonly '
|
|
9280
|
+
interface PaymentOrganizationSettings {
|
|
9281
|
+
readonly 'id': string;
|
|
9282
|
+
readonly 'enable_auto_capture': boolean;
|
|
9283
|
+
readonly 'link_capture_to_vcc': boolean;
|
|
9284
|
+
readonly 'purge_ciphers': boolean;
|
|
9285
|
+
readonly 'domain'?: string;
|
|
9286
|
+
readonly 'merchant_category_code'?: number;
|
|
9287
|
+
readonly 'payment_statement_suffix'?: string;
|
|
9288
|
+
readonly 'payment_statement_condensed'?: string;
|
|
9033
9289
|
}
|
|
9034
9290
|
|
|
9035
|
-
interface
|
|
9036
|
-
readonly '
|
|
9037
|
-
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;
|
|
9038
9298
|
}
|
|
9039
9299
|
|
|
9040
|
-
interface
|
|
9041
|
-
readonly '
|
|
9042
|
-
readonly '
|
|
9300
|
+
interface PaypalAccount {
|
|
9301
|
+
readonly 'discriminator': 'paypal_account';
|
|
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;
|
|
9043
9312
|
}
|
|
9044
9313
|
|
|
9045
|
-
interface
|
|
9046
|
-
readonly '
|
|
9047
|
-
readonly '
|
|
9048
|
-
readonly 'vat'?: io.flow.common.v0.models.MerchantOfRecordEntityRegistration;
|
|
9049
|
-
readonly 'identifiers'?: io.flow.common.v0.models.EntityIdentifier[];
|
|
9050
|
-
readonly 'streets': string[];
|
|
9051
|
-
readonly 'city': string;
|
|
9052
|
-
readonly 'province'?: string;
|
|
9053
|
-
readonly 'postal'?: string;
|
|
9314
|
+
interface PaypalAccountModificationForm {
|
|
9315
|
+
readonly 'discriminator': 'paypal_account_modification_form';
|
|
9316
|
+
readonly 'owner': io.flow.payment.internal.v0.enums.Owner;
|
|
9054
9317
|
readonly 'country': string;
|
|
9055
|
-
readonly '
|
|
9056
|
-
readonly 'email'?: string;
|
|
9318
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
9057
9319
|
}
|
|
9058
9320
|
|
|
9059
|
-
interface
|
|
9060
|
-
readonly '
|
|
9321
|
+
interface PaypalAccountPutForm {
|
|
9322
|
+
readonly 'discriminator': 'paypal_account_put_form';
|
|
9323
|
+
readonly 'owner'?: io.flow.payment.internal.v0.enums.Owner;
|
|
9061
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;
|
|
9062
9328
|
}
|
|
9063
9329
|
|
|
9064
|
-
interface
|
|
9065
|
-
readonly '
|
|
9066
|
-
readonly '
|
|
9330
|
+
interface PaypalAccountReference {
|
|
9331
|
+
readonly 'id': string;
|
|
9332
|
+
readonly 'flow_merchant_id'?: string;
|
|
9067
9333
|
}
|
|
9068
9334
|
|
|
9069
|
-
interface
|
|
9070
|
-
readonly '
|
|
9071
|
-
readonly '
|
|
9072
|
-
readonly 'base': io.flow.common.v0.models.Money;
|
|
9335
|
+
interface PaypalAuthentication {
|
|
9336
|
+
readonly 'username': string;
|
|
9337
|
+
readonly 'password_reference': string;
|
|
9073
9338
|
}
|
|
9074
9339
|
|
|
9075
|
-
interface
|
|
9076
|
-
readonly '
|
|
9077
|
-
readonly '
|
|
9078
|
-
readonly 'base'?: io.flow.common.v0.models.Money;
|
|
9340
|
+
interface PaypalAuthenticationForm {
|
|
9341
|
+
readonly 'username': string;
|
|
9342
|
+
readonly 'password': string;
|
|
9079
9343
|
}
|
|
9080
9344
|
|
|
9081
|
-
interface
|
|
9082
|
-
readonly '
|
|
9083
|
-
readonly '
|
|
9345
|
+
interface PaypalAuthorizationPayload {
|
|
9346
|
+
readonly 'discriminator': 'paypal_authorization_payload';
|
|
9347
|
+
readonly 'payment_id': string;
|
|
9348
|
+
readonly 'payer_id': string;
|
|
9084
9349
|
}
|
|
9085
9350
|
|
|
9086
|
-
interface
|
|
9087
|
-
readonly '
|
|
9088
|
-
readonly '
|
|
9089
|
-
readonly '
|
|
9090
|
-
readonly '
|
|
9091
|
-
readonly '
|
|
9092
|
-
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;
|
|
9093
9363
|
}
|
|
9094
9364
|
|
|
9095
|
-
interface
|
|
9096
|
-
readonly '
|
|
9097
|
-
readonly '
|
|
9098
|
-
readonly '
|
|
9099
|
-
readonly '
|
|
9100
|
-
readonly 'address'?: io.flow.common.v0.models.BillingAddress;
|
|
9101
|
-
readonly 'invoice'?: io.flow.common.v0.models.CustomerInvoice;
|
|
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;
|
|
9102
9370
|
}
|
|
9103
9371
|
|
|
9104
|
-
interface
|
|
9105
|
-
readonly 'discriminator': '
|
|
9106
|
-
readonly '
|
|
9107
|
-
readonly '
|
|
9108
|
-
readonly '
|
|
9109
|
-
readonly '
|
|
9110
|
-
readonly '
|
|
9111
|
-
readonly 'created_at'?: string;
|
|
9112
|
-
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
9113
|
-
readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
|
|
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;
|
|
9114
9379
|
}
|
|
9115
9380
|
|
|
9116
|
-
interface
|
|
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;
|
|
9117
9386
|
readonly 'country': string;
|
|
9118
|
-
readonly '
|
|
9119
|
-
readonly '
|
|
9120
|
-
readonly '
|
|
9121
|
-
readonly 'timezone': 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;
|
|
9122
9390
|
}
|
|
9123
9391
|
|
|
9124
|
-
interface
|
|
9125
|
-
readonly '
|
|
9126
|
-
readonly 'id': string;
|
|
9392
|
+
interface ProcessorEntityStatusForm {
|
|
9393
|
+
readonly 'status': io.flow.payment.internal.v0.enums.ProcessorEntityStatus;
|
|
9127
9394
|
}
|
|
9128
9395
|
|
|
9129
|
-
interface
|
|
9396
|
+
interface ProcessorMerchantReference {
|
|
9130
9397
|
readonly 'id': string;
|
|
9131
|
-
readonly '
|
|
9132
|
-
readonly '
|
|
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;
|
|
9133
9404
|
}
|
|
9134
9405
|
|
|
9135
|
-
interface
|
|
9406
|
+
interface Redirect {
|
|
9136
9407
|
readonly 'id': string;
|
|
9408
|
+
readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
|
|
9409
|
+
readonly 'reason': io.flow.payment.internal.v0.enums.RedirectReason;
|
|
9137
9410
|
}
|
|
9138
9411
|
|
|
9139
|
-
interface
|
|
9140
|
-
readonly '
|
|
9141
|
-
readonly '
|
|
9142
|
-
readonly '
|
|
9412
|
+
interface RedirectActionCompleted {
|
|
9413
|
+
readonly 'discriminator': 'redirect_action_completed';
|
|
9414
|
+
readonly 'id': string;
|
|
9415
|
+
readonly 'organization': string;
|
|
9416
|
+
readonly 'key': string;
|
|
9417
|
+
readonly 'expires_at': string;
|
|
9418
|
+
readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
|
|
9419
|
+
readonly 'inline_notification_urls'?: io.flow.payment.v0.models.PostPaymentRedirectUrls;
|
|
9143
9420
|
}
|
|
9144
9421
|
|
|
9145
|
-
interface
|
|
9146
|
-
readonly '
|
|
9147
|
-
readonly '
|
|
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;
|
|
9148
9426
|
}
|
|
9149
9427
|
|
|
9150
|
-
interface
|
|
9151
|
-
readonly 'discriminator': '
|
|
9152
|
-
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;
|
|
9153
9433
|
}
|
|
9154
9434
|
|
|
9155
|
-
interface
|
|
9156
|
-
readonly 'discriminator': '
|
|
9157
|
-
readonly '
|
|
9158
|
-
readonly 'includes': io.flow.common.v0.models.IncludedLevies;
|
|
9159
|
-
readonly 'price_book_reference': io.flow.common.v0.models.PriceSourcePriceBookReference;
|
|
9435
|
+
interface RoutingProcessor {
|
|
9436
|
+
readonly 'discriminator': 'routing_processor';
|
|
9437
|
+
readonly 'processor': io.flow.payment.internal.v0.enums.Processor;
|
|
9160
9438
|
}
|
|
9161
9439
|
|
|
9162
|
-
interface
|
|
9440
|
+
interface StripeAccount {
|
|
9441
|
+
readonly 'discriminator': 'stripe_account';
|
|
9163
9442
|
readonly 'id': string;
|
|
9443
|
+
readonly 'organization_id': string;
|
|
9164
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;
|
|
9165
9454
|
}
|
|
9166
9455
|
|
|
9167
|
-
interface
|
|
9168
|
-
readonly 'discriminator': '
|
|
9169
|
-
readonly '
|
|
9170
|
-
|
|
9171
|
-
|
|
9172
|
-
|
|
9173
|
-
readonly '
|
|
9174
|
-
readonly 'amount': number;
|
|
9175
|
-
readonly 'label': string;
|
|
9176
|
-
readonly 'base'?: io.flow.common.v0.models.Price;
|
|
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;
|
|
9177
9463
|
}
|
|
9178
9464
|
|
|
9179
|
-
interface
|
|
9180
|
-
readonly 'discriminator': '
|
|
9181
|
-
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;
|
|
9182
9474
|
}
|
|
9183
9475
|
|
|
9184
|
-
interface
|
|
9185
|
-
readonly '
|
|
9186
|
-
readonly '
|
|
9476
|
+
interface StripeAuthentication {
|
|
9477
|
+
readonly 'public_key': string;
|
|
9478
|
+
readonly 'secret_key_reference': string;
|
|
9187
9479
|
}
|
|
9188
9480
|
|
|
9189
|
-
interface
|
|
9190
|
-
readonly '
|
|
9191
|
-
readonly 'interval': number;
|
|
9192
|
-
readonly 'days': number[];
|
|
9481
|
+
interface StripeAuthenticationDataReference {
|
|
9482
|
+
readonly 'id': string;
|
|
9193
9483
|
}
|
|
9194
9484
|
|
|
9195
|
-
interface
|
|
9196
|
-
readonly '
|
|
9197
|
-
readonly '
|
|
9198
|
-
readonly 'days_of_week': io.flow.common.v0.enums.DayOfWeek[];
|
|
9485
|
+
interface StripeAuthenticationForm {
|
|
9486
|
+
readonly 'public_key': string;
|
|
9487
|
+
readonly 'secret_key': string;
|
|
9199
9488
|
}
|
|
9200
9489
|
|
|
9201
|
-
interface
|
|
9202
|
-
readonly '
|
|
9203
|
-
readonly '
|
|
9204
|
-
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;
|
|
9205
9504
|
}
|
|
9206
9505
|
|
|
9207
|
-
interface
|
|
9208
|
-
readonly '
|
|
9209
|
-
readonly '
|
|
9210
|
-
readonly '
|
|
9211
|
-
readonly '
|
|
9212
|
-
readonly '
|
|
9213
|
-
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;
|
|
9214
9515
|
}
|
|
9215
9516
|
|
|
9216
|
-
interface
|
|
9217
|
-
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;
|
|
9218
9524
|
}
|
|
9219
9525
|
|
|
9220
|
-
interface
|
|
9221
|
-
readonly 'discriminator': '
|
|
9222
|
-
readonly '
|
|
9223
|
-
readonly '
|
|
9224
|
-
readonly 'name':
|
|
9225
|
-
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;
|
|
9226
9535
|
}
|
|
9227
9536
|
|
|
9228
|
-
interface
|
|
9229
|
-
readonly 'discriminator': 'user_reference';
|
|
9537
|
+
interface Tribe {
|
|
9230
9538
|
readonly 'id': string;
|
|
9539
|
+
readonly 'description': string;
|
|
9231
9540
|
}
|
|
9232
9541
|
|
|
9233
|
-
interface
|
|
9234
|
-
readonly '
|
|
9235
|
-
readonly '
|
|
9236
|
-
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;
|
|
9237
9549
|
}
|
|
9238
9550
|
}
|
|
9239
9551
|
|
|
9240
|
-
declare namespace io.flow.
|
|
9241
|
-
type
|
|
9242
|
-
type
|
|
9243
|
-
type
|
|
9244
|
-
type
|
|
9245
|
-
type
|
|
9246
|
-
type
|
|
9247
|
-
type
|
|
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);
|
|
9248
9567
|
}
|
|
9249
9568
|
|
|
9250
9569
|
declare namespace io.flow.ftp.v0.enums {
|
|
@@ -9301,268 +9620,45 @@ declare namespace io.flow.ftp.v0.models {
|
|
|
9301
9620
|
}
|
|
9302
9621
|
|
|
9303
9622
|
interface FtpUser {
|
|
9304
|
-
readonly 'username': string;
|
|
9305
|
-
readonly 'password'?: string;
|
|
9306
|
-
}
|
|
9307
|
-
}
|
|
9308
|
-
|
|
9309
|
-
declare namespace io.flow.billing.reporting.csv.v0.enums {
|
|
9310
|
-
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
9311
|
-
}
|
|
9312
|
-
|
|
9313
|
-
declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
9314
|
-
interface FulfillmentShopperBreakdown {
|
|
9315
|
-
readonly 'shipping': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9316
|
-
readonly 'fees': io.flow.billing.reporting.csv.v0.models.ReportingShopperFees;
|
|
9317
|
-
readonly 'product': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9318
|
-
readonly 'subtotal': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9319
|
-
readonly 'tax': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9320
|
-
readonly 'duty': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9321
|
-
readonly 'discount': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9322
|
-
readonly 'total': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9323
|
-
}
|
|
9324
|
-
|
|
9325
|
-
interface MarkedAsFinal {
|
|
9326
|
-
readonly 'products': boolean;
|
|
9327
|
-
readonly 'shipping': boolean;
|
|
9328
|
-
}
|
|
9329
|
-
|
|
9330
|
-
interface RecordReference {
|
|
9331
|
-
readonly 'id': string;
|
|
9332
|
-
}
|
|
9333
|
-
|
|
9334
|
-
interface RefundRecord {
|
|
9335
|
-
readonly 'id': string;
|
|
9336
|
-
readonly 'parent'?: io.flow.billing.reporting.csv.v0.models.RecordReference;
|
|
9337
|
-
readonly 'merchant': io.flow.billing.reporting.csv.v0.models.ReportingOrganizationSummary;
|
|
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;
|
|
9349
|
-
}
|
|
9350
|
-
|
|
9351
|
-
interface ReportingAuthorizationReference {
|
|
9352
|
-
readonly 'id': string;
|
|
9353
|
-
}
|
|
9354
|
-
|
|
9355
|
-
interface ReportingBusiness {
|
|
9356
|
-
readonly 'vat_registration_number': string;
|
|
9357
|
-
readonly 'name'?: string;
|
|
9358
|
-
}
|
|
9359
|
-
|
|
9360
|
-
interface ReportingConversionRates {
|
|
9361
|
-
readonly 'merchant': number;
|
|
9362
|
-
readonly 'entity': number;
|
|
9363
|
-
readonly 'usd': number;
|
|
9364
|
-
readonly 'eur': number;
|
|
9365
|
-
}
|
|
9366
|
-
|
|
9367
|
-
interface ReportingCountry {
|
|
9368
|
-
readonly 'code': string;
|
|
9369
|
-
readonly 'is_eu': boolean;
|
|
9370
|
-
}
|
|
9371
|
-
|
|
9372
|
-
interface ReportingCurrencies {
|
|
9373
|
-
readonly 'transaction': string;
|
|
9374
|
-
readonly 'merchant': string;
|
|
9375
|
-
readonly 'entity': string;
|
|
9376
|
-
}
|
|
9377
|
-
|
|
9378
|
-
interface ReportingDebug {
|
|
9379
|
-
readonly 'console_order_link': string;
|
|
9380
|
-
readonly 'allocation_order_totals_delta'?: number;
|
|
9381
|
-
readonly 'allocation_order_item_discount_delta'?: number;
|
|
9382
|
-
readonly 'missing_item_subsidies'?: io.flow.billing.reporting.csv.v0.models.ReportingDebugMissingSubsidies;
|
|
9383
|
-
readonly 'missing_shipping_subsidies'?: io.flow.billing.reporting.csv.v0.models.ReportingDebugMissingSubsidies;
|
|
9384
|
-
}
|
|
9385
|
-
|
|
9386
|
-
interface ReportingDebugMissingSubsidies {
|
|
9387
|
-
readonly 'price'?: boolean;
|
|
9388
|
-
readonly 'tax'?: boolean;
|
|
9389
|
-
readonly 'duty'?: boolean;
|
|
9390
|
-
}
|
|
9391
|
-
|
|
9392
|
-
interface ReportingDestination {
|
|
9393
|
-
readonly 'country': io.flow.billing.reporting.csv.v0.models.ReportingCountry;
|
|
9394
|
-
readonly 'province'?: io.flow.billing.reporting.csv.v0.models.ReportingProvince;
|
|
9395
|
-
}
|
|
9396
|
-
|
|
9397
|
-
interface ReportingEntity {
|
|
9398
|
-
readonly 'id': string;
|
|
9399
|
-
}
|
|
9400
|
-
|
|
9401
|
-
interface ReportingFulfillment {
|
|
9402
|
-
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
|
-
}
|
|
9420
|
-
|
|
9421
|
-
interface ReportingFulfillmentIs {
|
|
9422
|
-
readonly 'replacement': boolean;
|
|
9423
|
-
readonly 'virtual': io.flow.billing.reporting.csv.v0.enums.ReportingFulfillmentIsVirtual;
|
|
9424
|
-
readonly 'duties_guaranteed': boolean;
|
|
9425
|
-
readonly 'wyol': boolean;
|
|
9426
|
-
readonly 'b2b': boolean;
|
|
9427
|
-
readonly 'domestic': boolean;
|
|
9428
|
-
}
|
|
9429
|
-
|
|
9430
|
-
interface ReportingFulfillmentPayment {
|
|
9431
|
-
readonly 'metadata'?: io.flow.billing.reporting.csv.v0.models.ReportingFulfillmentPaymentMetadata;
|
|
9432
|
-
readonly 'psp': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9433
|
-
readonly 'credit': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9434
|
-
readonly 'total': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9435
|
-
}
|
|
9436
|
-
|
|
9437
|
-
interface ReportingFulfillmentPaymentMetadata {
|
|
9438
|
-
readonly 'gateway': io.flow.payment.internal.v0.enums.Processor;
|
|
9439
|
-
readonly 'method': string;
|
|
9440
|
-
readonly 'psp_reference'?: string;
|
|
9441
|
-
readonly 'authorization'?: io.flow.billing.reporting.csv.v0.models.ReportingAuthorizationReference;
|
|
9442
|
-
readonly 'settlement_date': string;
|
|
9443
|
-
readonly 'additional_authorizations'?: io.flow.billing.reporting.csv.v0.models.ReportingFulfillmentPaymentMetadataAdditionalAuthorizations;
|
|
9444
|
-
}
|
|
9445
|
-
|
|
9446
|
-
interface ReportingFulfillmentPaymentMetadataAdditionalAuthorizations {
|
|
9447
|
-
readonly 'ids': string;
|
|
9448
|
-
}
|
|
9449
|
-
|
|
9450
|
-
interface ReportingFx {
|
|
9451
|
-
readonly 'shipping': io.flow.billing.reporting.csv.v0.models.ReportingUsd;
|
|
9452
|
-
readonly 'fees': io.flow.billing.reporting.csv.v0.models.ReportingUsd;
|
|
9453
|
-
readonly 'product': io.flow.billing.reporting.csv.v0.models.ReportingUsd;
|
|
9454
|
-
readonly 'tax': io.flow.billing.reporting.csv.v0.models.ReportingUsd;
|
|
9455
|
-
readonly 'duty': io.flow.billing.reporting.csv.v0.models.ReportingUsd;
|
|
9456
|
-
readonly 'total': io.flow.billing.reporting.csv.v0.models.ReportingUsd;
|
|
9457
|
-
}
|
|
9458
|
-
|
|
9459
|
-
interface ReportingMerchantFees {
|
|
9460
|
-
readonly 'duty_guarantee': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9461
|
-
readonly 'mor': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
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;
|
|
9467
|
-
}
|
|
9468
|
-
|
|
9469
|
-
interface ReportingMerchantSubsidies {
|
|
9470
|
-
readonly 'shipping': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9471
|
-
readonly 'tax': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9472
|
-
readonly 'duty': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9473
|
-
readonly 'ccf': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9474
|
-
}
|
|
9475
|
-
|
|
9476
|
-
interface ReportingMerchantTransactions {
|
|
9477
|
-
readonly 'adjustment': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9478
|
-
readonly 'reversal': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9479
|
-
readonly 'tax': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9480
|
-
readonly 'duty': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9481
|
-
readonly 'freight': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9482
|
-
readonly 'refund': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9483
|
-
}
|
|
9484
|
-
|
|
9485
|
-
interface ReportingMonetaryValue {
|
|
9486
|
-
readonly 'transaction': number;
|
|
9487
|
-
readonly 'merchant': number;
|
|
9488
|
-
readonly 'entity': number;
|
|
9489
|
-
readonly 'usd': number;
|
|
9490
|
-
readonly 'eur': number;
|
|
9491
|
-
}
|
|
9492
|
-
|
|
9493
|
-
interface ReportingOrderSummary {
|
|
9494
|
-
readonly 'id': string;
|
|
9495
|
-
readonly 'number': string;
|
|
9496
|
-
readonly 'submitted_at': string;
|
|
9497
|
-
}
|
|
9498
|
-
|
|
9499
|
-
interface ReportingOrganizationSummary {
|
|
9500
|
-
readonly 'id': string;
|
|
9501
|
-
readonly 'name': string;
|
|
9502
|
-
}
|
|
9503
|
-
|
|
9504
|
-
interface ReportingProvince {
|
|
9505
|
-
readonly 'code'?: string;
|
|
9506
|
-
readonly 'name': string;
|
|
9507
|
-
}
|
|
9508
|
-
|
|
9509
|
-
interface ReportingReconciliation {
|
|
9510
|
-
readonly 'date': string;
|
|
9511
|
-
readonly 'month': number;
|
|
9512
|
-
readonly 'year': number;
|
|
9513
|
-
}
|
|
9514
|
-
|
|
9515
|
-
interface ReportingReturn {
|
|
9516
|
-
readonly 'placeholder': string;
|
|
9517
|
-
}
|
|
9518
|
-
|
|
9519
|
-
interface ReportingShopperFees {
|
|
9520
|
-
readonly 'fuel': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9521
|
-
readonly 'remote_area': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
9522
|
-
readonly 'oversize': io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
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;
|
|
9526
|
-
}
|
|
9527
|
-
|
|
9528
|
-
interface ReportingUsd {
|
|
9529
|
-
readonly 'usd': number;
|
|
9530
|
-
}
|
|
9531
|
-
|
|
9532
|
-
interface ReportingVatRemittance {
|
|
9533
|
-
readonly 'currency': string;
|
|
9534
|
-
readonly 'rate': io.flow.billing.reporting.csv.v0.models.ReportingVatRemittanceRate;
|
|
9535
|
-
}
|
|
9536
|
-
|
|
9537
|
-
interface ReportingVatRemittanceRate {
|
|
9538
|
-
readonly 'entity': number;
|
|
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';
|
|
@@ -12835,12 +12939,11 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
12835
12939
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
12836
12940
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
12837
12941
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
12838
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee';
|
|
12942
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure';
|
|
12839
12943
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
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';
|
|
12844
12947
|
type ResponsibleParty = 'flow' | 'organization';
|
|
12845
12948
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
12846
12949
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
@@ -13135,6 +13238,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13135
13238
|
readonly 'tax': io.flow.common.v0.models.Price;
|
|
13136
13239
|
readonly 'duty': io.flow.common.v0.models.Price;
|
|
13137
13240
|
readonly 'trueup': io.flow.common.v0.models.Price;
|
|
13241
|
+
readonly 'carrier_charge': io.flow.common.v0.models.Price;
|
|
13138
13242
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
13139
13243
|
}
|
|
13140
13244
|
|
|
@@ -13149,6 +13253,19 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
13149
13253
|
readonly 'statement'?: io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
13150
13254
|
}
|
|
13151
13255
|
|
|
13256
|
+
interface CarrierChargeTransaction {
|
|
13257
|
+
readonly 'discriminator': 'carrier_charge_transaction';
|
|
13258
|
+
readonly 'order': io.flow.billing.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
13259
|
+
readonly 'id': string;
|
|
13260
|
+
readonly 'type': io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
13261
|
+
readonly 'status': io.flow.billing.internal.v0.enums.BillingTransactionStatus;
|
|
13262
|
+
readonly 'posted_at'?: string;
|
|
13263
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
13264
|
+
readonly 'description': string;
|
|
13265
|
+
readonly 'statement'?: io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
13266
|
+
readonly 'created_at': string;
|
|
13267
|
+
}
|
|
13268
|
+
|
|
13152
13269
|
interface ChannelAccount {
|
|
13153
13270
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
13154
13271
|
readonly 'id': string;
|
|
@@ -13855,7 +13972,7 @@ declare namespace io.flow.billing.internal.v0.unions {
|
|
|
13855
13972
|
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
13973
|
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
13974
|
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);
|
|
13975
|
+
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
13976
|
}
|
|
13860
13977
|
|
|
13861
13978
|
declare namespace io.flow.billing.v0.enums {
|
|
@@ -13864,7 +13981,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13864
13981
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
13865
13982
|
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
13983
|
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';
|
|
13984
|
+
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
13985
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
13869
13986
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
13870
13987
|
}
|
|
@@ -14120,6 +14237,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
14120
14237
|
readonly 'updated_at': string;
|
|
14121
14238
|
}
|
|
14122
14239
|
|
|
14240
|
+
interface TransactionMetadataCarrierCharge {
|
|
14241
|
+
readonly 'discriminator': 'carrier_charge';
|
|
14242
|
+
readonly 'reason': io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
14243
|
+
readonly 'carrier_id': string;
|
|
14244
|
+
readonly 'carrier_tracking_number': string;
|
|
14245
|
+
}
|
|
14246
|
+
|
|
14123
14247
|
interface TransactionMetadataChannel {
|
|
14124
14248
|
readonly 'discriminator': 'channel';
|
|
14125
14249
|
readonly 'method': string;
|
|
@@ -14207,7 +14331,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
14207
14331
|
type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
|
|
14208
14332
|
type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
|
|
14209
14333
|
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);
|
|
14334
|
+
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
14335
|
}
|
|
14212
14336
|
|
|
14213
14337
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -15866,16 +15990,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15866
15990
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
15867
15991
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
15868
15992
|
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';
|
|
15993
|
+
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';
|
|
15994
|
+
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
15995
|
type BillingStatementBatchFileKey = 'summary';
|
|
15872
15996
|
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';
|
|
15997
|
+
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
15998
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
15875
15999
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
15876
16000
|
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
|
|
16001
|
+
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
|
|
16002
|
+
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge';
|
|
15879
16003
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
15880
16004
|
type CarrierValidationStatus = 'success' | 'error';
|
|
15881
16005
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
@@ -15887,7 +16011,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15887
16011
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
15888
16012
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
15889
16013
|
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';
|
|
16014
|
+
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
16015
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
15892
16016
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
15893
16017
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -15964,6 +16088,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15964
16088
|
type CheckoutSubmitErrorCode = 'balance_not_zero' | 'address_book_contact_invalid' | 'address_book_contact_not_found' | 'address_city_invalid' | 'address_city_required' | 'address_country_invalid' | 'address_country_required' | 'address_line_number_invalid' | 'address_postal_invalid' | 'address_postal_required' | 'address_province_invalid' | 'address_province_required' | 'address_street1_invalid' | 'address_street1_required' | 'address_street2_invalid' | 'address_street2_required' | 'address_streets_must_be_unique' | 'authorization_amount_exceeds_balance' | 'authorization_form_not_supported' | 'authorization_invalid_amount' | 'authorization_invalid_currency' | 'authorization_not_found' | 'checkout_not_found' | 'checkout_requires_at_least_one_line' | 'contact_email_invalid' | 'contact_email_required' | 'contact_phone_invalid' | 'contact_phone_required' | 'country_not_supported' | 'currency_invalid' | 'delivery_not_found' | 'delivery_option_not_found' | 'delivery_option_not_supported' | 'delivery_option_required' | 'first_name_invalid' | 'first_name_required' | 'gift_card_insufficient_funds' | 'gift_card_invalid_number' | 'gift_card_not_supported' | 'invalid_prediction' | 'language_invalid' | 'last_name_invalid' | 'last_name_required' | 'line_item_number_invalid' | 'line_item_number_not_available' | 'line_not_found' | 'line_quantity_invalid' | 'line_value_threshold_exceeded' | 'locale_invalid' | 'name_missing_first_or_last' | 'name_required' | 'national_id_number_invalid' | 'no_customer' | 'no_valid_address_book_contacts' | 'optin_prompt_consent_required' | 'optin_prompt_invalid_value' | 'optin_prompt_not_found' | 'order_balance_not_available' | 'order_identifier_invalid' | 'payment_failed' | 'payment_not_found' | 'payment_source_confirmation_required' | 'payment_source_failed' | 'payment_source_not_found' | 'payment_type_does_not_support_delete' | 'promotion_code_does_not_meet_requirements' | 'promotion_code_expired' | 'promotion_code_invalid' | 'promotion_code_not_supported' | 'promotion_code_order_item_not_available';
|
|
15965
16089
|
type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
|
|
15966
16090
|
type ClassificationErrorCode = 'generic_error';
|
|
16091
|
+
type ColmItemType = 'physical' | 'digital';
|
|
15967
16092
|
type ComplianceType = 'weee';
|
|
15968
16093
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
15969
16094
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
@@ -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';
|
|
@@ -16032,7 +16157,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16032
16157
|
type LogisticsResponsibility = 'organization' | 'flow';
|
|
16033
16158
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
16034
16159
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
16035
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee';
|
|
16160
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure';
|
|
16036
16161
|
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
16037
16162
|
type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
|
|
16038
16163
|
type MarketingGatewayChannelStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected' | 'unavailable';
|
|
@@ -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,6 @@ 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';
|
|
16087
16211
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
16088
16212
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
16089
16213
|
type RateSource = 'calculated' | 'market';
|
|
@@ -16093,11 +16217,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16093
16217
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
16094
16218
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
16095
16219
|
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account';
|
|
16220
|
+
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
16096
16221
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
16097
16222
|
type ResponsibleParty = 'flow' | 'organization';
|
|
16098
16223
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
16099
16224
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
16100
16225
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
16226
|
+
type RevenueRecordType = 'sales' | 'refund';
|
|
16101
16227
|
type RiskCheck = 'three_d_secure';
|
|
16102
16228
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
16103
16229
|
type Scope = 'organization' | 'global';
|
|
@@ -16108,7 +16234,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16108
16234
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
16109
16235
|
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
16236
|
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';
|
|
16237
|
+
type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations';
|
|
16112
16238
|
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
16239
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
16114
16240
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
@@ -16117,6 +16243,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16117
16243
|
type ShopifyPromotionOrderEntitlementComponent = 'subtotal' | 'shipping' | 'vat' | 'duty';
|
|
16118
16244
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
16119
16245
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
16246
|
+
type ShrutiDemoType = 'digital' | 'physical';
|
|
16120
16247
|
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
16121
16248
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
16122
16249
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
@@ -16127,6 +16254,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16127
16254
|
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
16128
16255
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
16129
16256
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
16257
|
+
type SvitlanaType = 'physical' | 'digital';
|
|
16130
16258
|
type TariffEligibilityType = 'rex';
|
|
16131
16259
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
16132
16260
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
@@ -17180,6 +17308,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17180
17308
|
readonly 'tax': io.flow.common.v0.models.Price;
|
|
17181
17309
|
readonly 'duty': io.flow.common.v0.models.Price;
|
|
17182
17310
|
readonly 'trueup': io.flow.common.v0.models.Price;
|
|
17311
|
+
readonly 'carrier_charge': io.flow.common.v0.models.Price;
|
|
17183
17312
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
17184
17313
|
}
|
|
17185
17314
|
|
|
@@ -17622,7 +17751,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17622
17751
|
interface CarrierChargeFormOther {
|
|
17623
17752
|
readonly 'discriminator': 'other';
|
|
17624
17753
|
readonly 'id': string;
|
|
17625
|
-
readonly 'reason': io.flow.
|
|
17754
|
+
readonly 'reason': io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
17626
17755
|
readonly 'organization_id': string;
|
|
17627
17756
|
readonly 'order_number': string;
|
|
17628
17757
|
readonly 'carrier_id': string;
|
|
@@ -17637,6 +17766,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17637
17766
|
readonly 'attributes'?: Record<string, string>;
|
|
17638
17767
|
}
|
|
17639
17768
|
|
|
17769
|
+
interface CarrierChargeTransaction {
|
|
17770
|
+
readonly 'discriminator': 'carrier_charge_transaction';
|
|
17771
|
+
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
17772
|
+
readonly 'id': string;
|
|
17773
|
+
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
17774
|
+
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
17775
|
+
readonly 'posted_at'?: string;
|
|
17776
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
17777
|
+
readonly 'description': string;
|
|
17778
|
+
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17779
|
+
readonly 'created_at': string;
|
|
17780
|
+
}
|
|
17781
|
+
|
|
17640
17782
|
interface CarrierChargeUnits {
|
|
17641
17783
|
readonly 'currency': string;
|
|
17642
17784
|
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
@@ -20404,6 +20546,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20404
20546
|
readonly 'classified_by': string;
|
|
20405
20547
|
}
|
|
20406
20548
|
|
|
20549
|
+
interface ColmItem {
|
|
20550
|
+
readonly 'id': string;
|
|
20551
|
+
readonly 'number': string;
|
|
20552
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
20553
|
+
readonly 'description'?: string;
|
|
20554
|
+
readonly 'type': io.flow.internal.v0.enums.ColmItemType;
|
|
20555
|
+
readonly 'added_on': string;
|
|
20556
|
+
}
|
|
20557
|
+
|
|
20558
|
+
interface ColmItemForm {
|
|
20559
|
+
readonly 'number': string;
|
|
20560
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
20561
|
+
readonly 'description'?: string;
|
|
20562
|
+
readonly 'type': io.flow.internal.v0.enums.ColmItemType;
|
|
20563
|
+
readonly 'added_on': string;
|
|
20564
|
+
}
|
|
20565
|
+
|
|
20407
20566
|
interface CommercialInvoiceComparison {
|
|
20408
20567
|
readonly 'urls': string[];
|
|
20409
20568
|
}
|
|
@@ -22535,6 +22694,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22535
22694
|
readonly 'items': io.flow.order.management.v0.models.FulfillmentItem[];
|
|
22536
22695
|
}
|
|
22537
22696
|
|
|
22697
|
+
interface FulfillmentShopperBreakdown {
|
|
22698
|
+
readonly 'shipping': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22699
|
+
readonly 'fees': io.flow.internal.v0.models.ReportingShopperFees;
|
|
22700
|
+
readonly 'product': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22701
|
+
readonly 'subtotal': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22702
|
+
readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22703
|
+
readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22704
|
+
readonly 'discount': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22705
|
+
readonly 'total': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22706
|
+
}
|
|
22707
|
+
|
|
22538
22708
|
interface FulfillmentSnapshot {
|
|
22539
22709
|
readonly 'tracking_source': string;
|
|
22540
22710
|
readonly 'fulfillment_status'?: string;
|
|
@@ -24008,6 +24178,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24008
24178
|
readonly 'shipped_item_values': io.flow.internal.v0.models.ShippedItemValue[];
|
|
24009
24179
|
}
|
|
24010
24180
|
|
|
24181
|
+
interface JeanDemoItem {
|
|
24182
|
+
readonly 'id': string;
|
|
24183
|
+
readonly 'name': string;
|
|
24184
|
+
}
|
|
24185
|
+
|
|
24011
24186
|
interface Key {
|
|
24012
24187
|
readonly 'id': string;
|
|
24013
24188
|
readonly 'created_at': string;
|
|
@@ -24704,6 +24879,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24704
24879
|
readonly 'number': string;
|
|
24705
24880
|
}
|
|
24706
24881
|
|
|
24882
|
+
interface MarkedAsFinal {
|
|
24883
|
+
readonly 'products': boolean;
|
|
24884
|
+
readonly 'shipping': boolean;
|
|
24885
|
+
}
|
|
24886
|
+
|
|
24707
24887
|
interface MarketingGatewayChannel {
|
|
24708
24888
|
readonly 'id': string;
|
|
24709
24889
|
readonly 'platform': io.flow.internal.v0.enums.MarketingGatewayPlatform;
|
|
@@ -26555,8 +26735,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26555
26735
|
readonly 'status': io.flow.internal.v0.enums.RestrictionStatus;
|
|
26556
26736
|
readonly 'matching_positive_keywords': string[];
|
|
26557
26737
|
readonly 'matching_negative_keywords': string[];
|
|
26558
|
-
readonly 'positive_search_matches'?: string[];
|
|
26559
|
-
readonly 'negative_search_matches'?: string[];
|
|
26560
26738
|
readonly 'updated_by_user_id': string;
|
|
26561
26739
|
}
|
|
26562
26740
|
|
|
@@ -27041,6 +27219,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27041
27219
|
readonly 'orders_since_submitted_at'?: string;
|
|
27042
27220
|
}
|
|
27043
27221
|
|
|
27222
|
+
interface RecordReference {
|
|
27223
|
+
readonly 'id': string;
|
|
27224
|
+
}
|
|
27225
|
+
|
|
27044
27226
|
interface Redirect {
|
|
27045
27227
|
readonly 'id': string;
|
|
27046
27228
|
readonly 'post_payment_redirect_urls': io.flow.payment.v0.models.PostPaymentRedirectUrls;
|
|
@@ -27109,6 +27291,52 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27109
27291
|
readonly 'task_id': string;
|
|
27110
27292
|
}
|
|
27111
27293
|
|
|
27294
|
+
interface ReportingAuthorizationReference {
|
|
27295
|
+
readonly 'id': string;
|
|
27296
|
+
}
|
|
27297
|
+
|
|
27298
|
+
interface ReportingBusiness {
|
|
27299
|
+
readonly 'vat_registration_number': string;
|
|
27300
|
+
readonly 'name'?: string;
|
|
27301
|
+
}
|
|
27302
|
+
|
|
27303
|
+
interface ReportingConversionRates {
|
|
27304
|
+
readonly 'merchant': number;
|
|
27305
|
+
readonly 'entity': number;
|
|
27306
|
+
readonly 'usd': number;
|
|
27307
|
+
readonly 'eur': number;
|
|
27308
|
+
}
|
|
27309
|
+
|
|
27310
|
+
interface ReportingCountry {
|
|
27311
|
+
readonly 'code': string;
|
|
27312
|
+
readonly 'is_eu': boolean;
|
|
27313
|
+
}
|
|
27314
|
+
|
|
27315
|
+
interface ReportingCurrencies {
|
|
27316
|
+
readonly 'transaction': string;
|
|
27317
|
+
readonly 'merchant': string;
|
|
27318
|
+
readonly 'entity': string;
|
|
27319
|
+
}
|
|
27320
|
+
|
|
27321
|
+
interface ReportingDebug {
|
|
27322
|
+
readonly 'console_order_link': string;
|
|
27323
|
+
readonly 'allocation_order_totals_delta'?: number;
|
|
27324
|
+
readonly 'allocation_order_item_discount_delta'?: number;
|
|
27325
|
+
readonly 'missing_item_subsidies'?: io.flow.internal.v0.models.ReportingDebugMissingSubsidies;
|
|
27326
|
+
readonly 'missing_shipping_subsidies'?: io.flow.internal.v0.models.ReportingDebugMissingSubsidies;
|
|
27327
|
+
}
|
|
27328
|
+
|
|
27329
|
+
interface ReportingDebugMissingSubsidies {
|
|
27330
|
+
readonly 'price'?: boolean;
|
|
27331
|
+
readonly 'tax'?: boolean;
|
|
27332
|
+
readonly 'duty'?: boolean;
|
|
27333
|
+
}
|
|
27334
|
+
|
|
27335
|
+
interface ReportingDestination {
|
|
27336
|
+
readonly 'country': io.flow.internal.v0.models.ReportingCountry;
|
|
27337
|
+
readonly 'province'?: io.flow.internal.v0.models.ReportingProvince;
|
|
27338
|
+
}
|
|
27339
|
+
|
|
27112
27340
|
interface ReportingDetails {
|
|
27113
27341
|
readonly 'accounting_transactions'?: any/*object*/[];
|
|
27114
27342
|
readonly 'fulfillments'?: any/*object*/[];
|
|
@@ -27117,6 +27345,166 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27117
27345
|
readonly 'refund_records'?: any/*object*/[];
|
|
27118
27346
|
}
|
|
27119
27347
|
|
|
27348
|
+
interface ReportingEntity {
|
|
27349
|
+
readonly 'id': string;
|
|
27350
|
+
}
|
|
27351
|
+
|
|
27352
|
+
interface ReportingFulfillment {
|
|
27353
|
+
readonly 'id': string;
|
|
27354
|
+
readonly 'sequence_number': number;
|
|
27355
|
+
readonly 'fulfilled_at': string;
|
|
27356
|
+
readonly 'completes_order': boolean;
|
|
27357
|
+
readonly 'payment': io.flow.internal.v0.models.ReportingPayment;
|
|
27358
|
+
readonly 'refund'?: io.flow.internal.v0.models.ReportingRefundReference;
|
|
27359
|
+
readonly 'value': io.flow.internal.v0.models.FulfillmentShopperBreakdown;
|
|
27360
|
+
readonly 'dispatch_country'?: io.flow.internal.v0.models.ReportingCountry;
|
|
27361
|
+
readonly 'destination'?: io.flow.internal.v0.models.ReportingDestination;
|
|
27362
|
+
readonly 'shipment'?: io.flow.internal.v0.models.ReportingShipment;
|
|
27363
|
+
readonly 'is': io.flow.internal.v0.models.ReportingFulfillmentIs;
|
|
27364
|
+
readonly 'has': io.flow.internal.v0.models.ReportingFulfillmentHas;
|
|
27365
|
+
readonly 'fx': io.flow.internal.v0.models.ReportingFx;
|
|
27366
|
+
readonly 'business'?: io.flow.internal.v0.models.ReportingBusiness;
|
|
27367
|
+
}
|
|
27368
|
+
|
|
27369
|
+
interface ReportingFulfillmentHas {
|
|
27370
|
+
readonly 'zero_vat_product': boolean;
|
|
27371
|
+
}
|
|
27372
|
+
|
|
27373
|
+
interface ReportingFulfillmentIs {
|
|
27374
|
+
readonly 'replacement': boolean;
|
|
27375
|
+
readonly 'virtual': io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual;
|
|
27376
|
+
readonly 'duties_guaranteed': boolean;
|
|
27377
|
+
readonly 'wyol': boolean;
|
|
27378
|
+
readonly 'b2b': boolean;
|
|
27379
|
+
readonly 'domestic': boolean;
|
|
27380
|
+
}
|
|
27381
|
+
|
|
27382
|
+
interface ReportingFx {
|
|
27383
|
+
readonly 'shipping': io.flow.internal.v0.models.ReportingUsd;
|
|
27384
|
+
readonly 'fees': io.flow.internal.v0.models.ReportingUsd;
|
|
27385
|
+
readonly 'product': io.flow.internal.v0.models.ReportingUsd;
|
|
27386
|
+
readonly 'tax': io.flow.internal.v0.models.ReportingUsd;
|
|
27387
|
+
readonly 'duty': io.flow.internal.v0.models.ReportingUsd;
|
|
27388
|
+
readonly 'total': io.flow.internal.v0.models.ReportingUsd;
|
|
27389
|
+
}
|
|
27390
|
+
|
|
27391
|
+
interface ReportingMerchantBreakdown {
|
|
27392
|
+
readonly 'subsidies': io.flow.internal.v0.models.ReportingMerchantSubsidies;
|
|
27393
|
+
readonly 'fees': io.flow.internal.v0.models.ReportingMerchantFees;
|
|
27394
|
+
readonly 'transactions': io.flow.internal.v0.models.ReportingMerchantTransactions;
|
|
27395
|
+
}
|
|
27396
|
+
|
|
27397
|
+
interface ReportingMerchantFees {
|
|
27398
|
+
readonly 'duty_guarantee': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27399
|
+
readonly 'mor': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27400
|
+
readonly 'fraud': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27401
|
+
readonly 'fx': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27402
|
+
readonly 'processing': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27403
|
+
readonly 'rate_lock': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27404
|
+
readonly 'transfer': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27405
|
+
}
|
|
27406
|
+
|
|
27407
|
+
interface ReportingMerchantSubsidies {
|
|
27408
|
+
readonly 'shipping': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27409
|
+
readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27410
|
+
readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27411
|
+
readonly 'ccf': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27412
|
+
}
|
|
27413
|
+
|
|
27414
|
+
interface ReportingMerchantTransactions {
|
|
27415
|
+
readonly 'adjustment': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27416
|
+
readonly 'reversal': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27417
|
+
readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27418
|
+
readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27419
|
+
readonly 'freight': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27420
|
+
readonly 'refund': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27421
|
+
}
|
|
27422
|
+
|
|
27423
|
+
interface ReportingMonetaryValue {
|
|
27424
|
+
readonly 'transaction': number;
|
|
27425
|
+
readonly 'merchant': number;
|
|
27426
|
+
readonly 'entity': number;
|
|
27427
|
+
readonly 'usd': number;
|
|
27428
|
+
readonly 'eur': number;
|
|
27429
|
+
}
|
|
27430
|
+
|
|
27431
|
+
interface ReportingOrderSummary {
|
|
27432
|
+
readonly 'id': string;
|
|
27433
|
+
readonly 'number': string;
|
|
27434
|
+
readonly 'submitted_at': string;
|
|
27435
|
+
}
|
|
27436
|
+
|
|
27437
|
+
interface ReportingOrganizationSummary {
|
|
27438
|
+
readonly 'id': string;
|
|
27439
|
+
readonly 'name': string;
|
|
27440
|
+
}
|
|
27441
|
+
|
|
27442
|
+
interface ReportingPayment {
|
|
27443
|
+
readonly 'metadata'?: io.flow.internal.v0.models.ReportingPaymentMetadata;
|
|
27444
|
+
readonly 'psp': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27445
|
+
readonly 'credit': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27446
|
+
readonly 'total': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27447
|
+
}
|
|
27448
|
+
|
|
27449
|
+
interface ReportingPaymentMetadata {
|
|
27450
|
+
readonly 'gateway': io.flow.internal.v0.enums.Processor;
|
|
27451
|
+
readonly 'method': string;
|
|
27452
|
+
readonly 'psp_reference'?: string;
|
|
27453
|
+
readonly 'authorization'?: io.flow.internal.v0.models.ReportingAuthorizationReference;
|
|
27454
|
+
readonly 'settlement_date': string;
|
|
27455
|
+
readonly 'additional_authorizations'?: io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
|
|
27456
|
+
}
|
|
27457
|
+
|
|
27458
|
+
interface ReportingPaymentMetadataAdditionalAuthorizations {
|
|
27459
|
+
readonly 'ids': string;
|
|
27460
|
+
}
|
|
27461
|
+
|
|
27462
|
+
interface ReportingProvince {
|
|
27463
|
+
readonly 'code'?: string;
|
|
27464
|
+
readonly 'name': string;
|
|
27465
|
+
}
|
|
27466
|
+
|
|
27467
|
+
interface ReportingReconciliation {
|
|
27468
|
+
readonly 'date': string;
|
|
27469
|
+
readonly 'month': number;
|
|
27470
|
+
readonly 'year': number;
|
|
27471
|
+
}
|
|
27472
|
+
|
|
27473
|
+
interface ReportingRefundReference {
|
|
27474
|
+
readonly 'id': string;
|
|
27475
|
+
}
|
|
27476
|
+
|
|
27477
|
+
interface ReportingShipment {
|
|
27478
|
+
readonly 'carrier': string;
|
|
27479
|
+
readonly 'tracking_number'?: string;
|
|
27480
|
+
}
|
|
27481
|
+
|
|
27482
|
+
interface ReportingShopperFees {
|
|
27483
|
+
readonly 'fuel': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27484
|
+
readonly 'remote_area': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27485
|
+
readonly 'oversize': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27486
|
+
readonly 'ccf': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27487
|
+
readonly 'emergency': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27488
|
+
readonly 'peak': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27489
|
+
}
|
|
27490
|
+
|
|
27491
|
+
interface ReportingUsd {
|
|
27492
|
+
readonly 'usd': number;
|
|
27493
|
+
}
|
|
27494
|
+
|
|
27495
|
+
interface ReportingVatRemittance {
|
|
27496
|
+
readonly 'currency': string;
|
|
27497
|
+
readonly 'rate': io.flow.internal.v0.models.ReportingVatRemittanceRate;
|
|
27498
|
+
}
|
|
27499
|
+
|
|
27500
|
+
interface ReportingVatRemittanceRate {
|
|
27501
|
+
readonly 'entity': number;
|
|
27502
|
+
}
|
|
27503
|
+
|
|
27504
|
+
interface ReportingVendor {
|
|
27505
|
+
readonly 'id': string;
|
|
27506
|
+
}
|
|
27507
|
+
|
|
27120
27508
|
interface RequeueRequestForm {
|
|
27121
27509
|
readonly 'product_ids'?: string[];
|
|
27122
27510
|
readonly 'hs6_codes'?: string[];
|
|
@@ -27169,6 +27557,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27169
27557
|
readonly 'status'?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
27170
27558
|
readonly 'statuses'?: io.flow.internal.v0.enums.RestrictionStatus[];
|
|
27171
27559
|
readonly 'rule_ids'?: string[];
|
|
27560
|
+
readonly 'user_ids'?: string[];
|
|
27172
27561
|
readonly 'categories'?: string[];
|
|
27173
27562
|
readonly 'product_name_query'?: string;
|
|
27174
27563
|
readonly 'positive_keywords'?: string[];
|
|
@@ -27206,8 +27595,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27206
27595
|
interface RestrictionKeywords {
|
|
27207
27596
|
readonly 'positive_keywords': string[];
|
|
27208
27597
|
readonly 'negative_keywords': string[];
|
|
27209
|
-
readonly 'positive_search_matches': string[];
|
|
27210
|
-
readonly 'negative_search_matches': string[];
|
|
27211
27598
|
}
|
|
27212
27599
|
|
|
27213
27600
|
interface RestrictionOrganization {
|
|
@@ -27296,8 +27683,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27296
27683
|
readonly 'accepted_rules'?: string[];
|
|
27297
27684
|
readonly 'positive_keywords'?: string[];
|
|
27298
27685
|
readonly 'negative_keywords'?: string[];
|
|
27299
|
-
readonly 'positive_search_matches'?: string[];
|
|
27300
|
-
readonly 'negative_search_matches'?: string[];
|
|
27301
27686
|
readonly 'user_ids'?: string[];
|
|
27302
27687
|
readonly 'categories'?: string[];
|
|
27303
27688
|
readonly 'product_name_query'?: string;
|
|
@@ -27391,6 +27776,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27391
27776
|
readonly 'posting_cutoff': string;
|
|
27392
27777
|
readonly 'trigger': io.flow.internal.v0.unions.ReturnTrigger;
|
|
27393
27778
|
readonly 'returned_at': string;
|
|
27779
|
+
readonly 'completes_order': boolean;
|
|
27394
27780
|
}
|
|
27395
27781
|
|
|
27396
27782
|
interface ReturnPolicyDeleted {
|
|
@@ -27437,6 +27823,40 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27437
27823
|
readonly 'refund': io.flow.payment.v0.models.RefundReference;
|
|
27438
27824
|
}
|
|
27439
27825
|
|
|
27826
|
+
interface RevenueRecord {
|
|
27827
|
+
readonly 'id': string;
|
|
27828
|
+
readonly 'organization': io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
27829
|
+
readonly 'parent'?: io.flow.internal.v0.models.RecordReference;
|
|
27830
|
+
readonly 'type': io.flow.internal.v0.enums.RevenueRecordType;
|
|
27831
|
+
readonly 'order': io.flow.internal.v0.models.ReportingOrderSummary;
|
|
27832
|
+
readonly 'entity': io.flow.internal.v0.models.ReportingEntity;
|
|
27833
|
+
readonly 'vendor': io.flow.internal.v0.models.ReportingVendor;
|
|
27834
|
+
readonly 'currencies': io.flow.internal.v0.models.ReportingCurrencies;
|
|
27835
|
+
readonly 'conversion_rate': io.flow.internal.v0.models.ReportingConversionRates;
|
|
27836
|
+
readonly 'reconciliation': io.flow.internal.v0.models.ReportingReconciliation;
|
|
27837
|
+
readonly 'merchant': io.flow.internal.v0.models.ReportingMerchantBreakdown;
|
|
27838
|
+
readonly 'fulfillment': io.flow.internal.v0.models.ReportingFulfillment;
|
|
27839
|
+
readonly 'vat_remittance': io.flow.internal.v0.models.ReportingVatRemittance;
|
|
27840
|
+
readonly 'marked_as_final': io.flow.internal.v0.models.MarkedAsFinal;
|
|
27841
|
+
readonly 'debug': io.flow.internal.v0.models.ReportingDebug;
|
|
27842
|
+
}
|
|
27843
|
+
|
|
27844
|
+
interface RevenueRecordDeleted {
|
|
27845
|
+
readonly 'discriminator': 'revenue_record_deleted';
|
|
27846
|
+
readonly 'event_id': string;
|
|
27847
|
+
readonly 'timestamp': string;
|
|
27848
|
+
readonly 'organization': string;
|
|
27849
|
+
readonly 'id': string;
|
|
27850
|
+
}
|
|
27851
|
+
|
|
27852
|
+
interface RevenueRecordUpserted {
|
|
27853
|
+
readonly 'discriminator': 'revenue_record_upserted';
|
|
27854
|
+
readonly 'event_id': string;
|
|
27855
|
+
readonly 'timestamp': string;
|
|
27856
|
+
readonly 'organization': string;
|
|
27857
|
+
readonly 'revenue_record': io.flow.internal.v0.models.RevenueRecord;
|
|
27858
|
+
}
|
|
27859
|
+
|
|
27440
27860
|
interface RoutingAccount {
|
|
27441
27861
|
readonly 'discriminator': 'routing_account';
|
|
27442
27862
|
readonly 'processor': io.flow.internal.v0.enums.Processor;
|
|
@@ -27770,11 +28190,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27770
28190
|
readonly 'shopify_markets_order': io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
27771
28191
|
}
|
|
27772
28192
|
|
|
27773
|
-
interface
|
|
28193
|
+
interface ShopifyMarketsOrderVersionWithShopId {
|
|
27774
28194
|
readonly 'id': string;
|
|
27775
28195
|
readonly 'timestamp': string;
|
|
27776
28196
|
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
27777
28197
|
readonly 'shopify_markets_order': io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
28198
|
+
readonly 'shop_id'?: string;
|
|
27778
28199
|
}
|
|
27779
28200
|
|
|
27780
28201
|
interface ShopifyMarketsOrdersMetrics {
|
|
@@ -28236,6 +28657,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28236
28657
|
readonly 'total': number;
|
|
28237
28658
|
}
|
|
28238
28659
|
|
|
28660
|
+
interface ShrutiDemoItem {
|
|
28661
|
+
readonly 'id': string;
|
|
28662
|
+
readonly 'number': string;
|
|
28663
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
28664
|
+
readonly 'description'?: string;
|
|
28665
|
+
readonly 'type': io.flow.internal.v0.enums.ShrutiDemoType;
|
|
28666
|
+
readonly 'added_on': string;
|
|
28667
|
+
}
|
|
28668
|
+
|
|
28669
|
+
interface ShrutiDemoItemForm {
|
|
28670
|
+
readonly 'number': string;
|
|
28671
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
28672
|
+
readonly 'description'?: string;
|
|
28673
|
+
readonly 'type': io.flow.internal.v0.enums.ShrutiDemoType;
|
|
28674
|
+
readonly 'added_on': string;
|
|
28675
|
+
}
|
|
28676
|
+
|
|
28239
28677
|
interface SimpleAccountReference {
|
|
28240
28678
|
readonly 'id': string;
|
|
28241
28679
|
}
|
|
@@ -28684,6 +29122,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28684
29122
|
readonly 'svb_virtual_card_clearing': io.flow.internal.v0.models.SvbVirtualCardClearing;
|
|
28685
29123
|
}
|
|
28686
29124
|
|
|
29125
|
+
interface SvitlanaItem {
|
|
29126
|
+
readonly 'id': string;
|
|
29127
|
+
readonly 'number': string;
|
|
29128
|
+
readonly 'amount': number;
|
|
29129
|
+
readonly 'description'?: string;
|
|
29130
|
+
readonly 'type': io.flow.internal.v0.enums.SvitlanaType;
|
|
29131
|
+
readonly 'added_on': string;
|
|
29132
|
+
}
|
|
29133
|
+
|
|
29134
|
+
interface SvitlanaItemForm {
|
|
29135
|
+
readonly 'number': string;
|
|
29136
|
+
readonly 'amount': number;
|
|
29137
|
+
readonly 'description'?: string;
|
|
29138
|
+
readonly 'type': io.flow.internal.v0.enums.SvitlanaType;
|
|
29139
|
+
}
|
|
29140
|
+
|
|
28687
29141
|
interface TariffCodeDuty {
|
|
28688
29142
|
readonly 'tariff_code': string;
|
|
28689
29143
|
readonly 'duties': Record<string, io.flow.internal.v0.models.Duties>;
|
|
@@ -29463,7 +29917,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29463
29917
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
29464
29918
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
29465
29919
|
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);
|
|
29920
|
+
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
29921
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
29468
29922
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
29469
29923
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -29519,7 +29973,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29519
29973
|
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
29974
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
29521
29975
|
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);
|
|
29976
|
+
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
29977
|
type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
|
|
29524
29978
|
type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
|
|
29525
29979
|
type Variant = (io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant);
|
|
@@ -29545,7 +29999,7 @@ export const blazeCheckoutEvent: PropTypes.Requireable<io.flow.internal.v0.enums
|
|
|
29545
29999
|
export const blazeCheckoutStep: PropTypes.Requireable<io.flow.internal.v0.enums.BlazeCheckoutStep>;
|
|
29546
30000
|
export const browserBundleErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.BrowserBundleErrorCode>;
|
|
29547
30001
|
export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.CalculatorEngine>;
|
|
29548
|
-
export const
|
|
30002
|
+
export const carrierChargeTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeTransactionType>;
|
|
29549
30003
|
export const carrierLabelGenerationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierLabelGenerationMethod>;
|
|
29550
30004
|
export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierValidationStatus>;
|
|
29551
30005
|
export const catalogImportType: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogImportType>;
|
|
@@ -29634,6 +30088,7 @@ export const checkoutShippingMethodPromptBehavior: PropTypes.Requireable<io.flow
|
|
|
29634
30088
|
export const checkoutSubmitErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.CheckoutSubmitErrorCode>;
|
|
29635
30089
|
export const checkoutUrlType: PropTypes.Requireable<io.flow.internal.v0.enums.CheckoutUrlType>;
|
|
29636
30090
|
export const classificationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationErrorCode>;
|
|
30091
|
+
export const colmItemType: PropTypes.Requireable<io.flow.internal.v0.enums.ColmItemType>;
|
|
29637
30092
|
export const complianceType: PropTypes.Requireable<io.flow.internal.v0.enums.ComplianceType>;
|
|
29638
30093
|
export const contentElementType: PropTypes.Requireable<io.flow.internal.v0.enums.ContentElementType>;
|
|
29639
30094
|
export const contentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ContentStatus>;
|
|
@@ -29753,7 +30208,6 @@ export const promptAction: PropTypes.Requireable<io.flow.internal.v0.enums.Promp
|
|
|
29753
30208
|
export const promptCheckoutDisplayPosition: PropTypes.Requireable<io.flow.internal.v0.enums.PromptCheckoutDisplayPosition>;
|
|
29754
30209
|
export const promptOptions: PropTypes.Requireable<io.flow.internal.v0.enums.PromptOptions>;
|
|
29755
30210
|
export const promptTarget: PropTypes.Requireable<io.flow.internal.v0.enums.PromptTarget>;
|
|
29756
|
-
export const queuedRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.QueuedRecordType>;
|
|
29757
30211
|
export const quoteRequestType: PropTypes.Requireable<io.flow.internal.v0.enums.QuoteRequestType>;
|
|
29758
30212
|
export const rateLevelKey: PropTypes.Requireable<io.flow.internal.v0.enums.RateLevelKey>;
|
|
29759
30213
|
export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSource>;
|
|
@@ -29763,11 +30217,13 @@ export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.Re
|
|
|
29763
30217
|
export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
|
|
29764
30218
|
export const reportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportStatus>;
|
|
29765
30219
|
export const reportType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportType>;
|
|
30220
|
+
export const reportingFulfillmentIsVirtual: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual>;
|
|
29766
30221
|
export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingScheme>;
|
|
29767
30222
|
export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
|
|
29768
30223
|
export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAction>;
|
|
29769
30224
|
export const restrictionDecision: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionDecision>;
|
|
29770
30225
|
export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStatus>;
|
|
30226
|
+
export const revenueRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueRecordType>;
|
|
29771
30227
|
export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskCheck>;
|
|
29772
30228
|
export const riskEvaluation: PropTypes.Requireable<io.flow.internal.v0.enums.RiskEvaluation>;
|
|
29773
30229
|
export const scope: PropTypes.Requireable<io.flow.internal.v0.enums.Scope>;
|
|
@@ -29787,6 +30243,7 @@ export const shopifyPromotionOfferAllocationMethod: PropTypes.Requireable<io.flo
|
|
|
29787
30243
|
export const shopifyPromotionOrderEntitlementComponent: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPromotionOrderEntitlementComponent>;
|
|
29788
30244
|
export const shopifyPromotionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPromotionStatus>;
|
|
29789
30245
|
export const shopifyService: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyService>;
|
|
30246
|
+
export const shrutiDemoType: PropTypes.Requireable<io.flow.internal.v0.enums.ShrutiDemoType>;
|
|
29790
30247
|
export const significanceAction: PropTypes.Requireable<io.flow.internal.v0.enums.SignificanceAction>;
|
|
29791
30248
|
export const simpleRoundingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.SimpleRoundingStrategy>;
|
|
29792
30249
|
export const snoozeNextActionWith: PropTypes.Requireable<io.flow.internal.v0.enums.SnoozeNextActionWith>;
|
|
@@ -29797,6 +30254,7 @@ export const statisticType: PropTypes.Requireable<io.flow.internal.v0.enums.Stat
|
|
|
29797
30254
|
export const status: PropTypes.Requireable<io.flow.internal.v0.enums.Status>;
|
|
29798
30255
|
export const subscriptionFrequency: PropTypes.Requireable<io.flow.internal.v0.enums.SubscriptionFrequency>;
|
|
29799
30256
|
export const suggestionAction: PropTypes.Requireable<io.flow.internal.v0.enums.SuggestionAction>;
|
|
30257
|
+
export const svitlanaType: PropTypes.Requireable<io.flow.internal.v0.enums.SvitlanaType>;
|
|
29800
30258
|
export const tariffEligibilityType: PropTypes.Requireable<io.flow.internal.v0.enums.TariffEligibilityType>;
|
|
29801
30259
|
export const taskProcessorKey: PropTypes.Requireable<io.flow.internal.v0.enums.TaskProcessorKey>;
|
|
29802
30260
|
export const taxCalculationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.TaxCalculationErrorCode>;
|
|
@@ -30013,6 +30471,7 @@ export const carrierChargeFileForm: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
30013
30471
|
export const carrierChargeFileResult: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFileResult>;
|
|
30014
30472
|
export const carrierChargeFormLabel: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFormLabel>;
|
|
30015
30473
|
export const carrierChargeFormOther: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeFormOther>;
|
|
30474
|
+
export const carrierChargeTransaction: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeTransaction>;
|
|
30016
30475
|
export const carrierChargeUnits: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeUnits>;
|
|
30017
30476
|
export const carrierInvoice: PropTypes.Requireable<io.flow.internal.v0.models.CarrierInvoice>;
|
|
30018
30477
|
export const catalogImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.CatalogImportRequest>;
|
|
@@ -30482,6 +30941,8 @@ export const classificationSummaryReportPayload: PropTypes.Requireable<io.flow.i
|
|
|
30482
30941
|
export const classificationWrapper: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationWrapper>;
|
|
30483
30942
|
export const classifiedProduct: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProduct>;
|
|
30484
30943
|
export const classifiedProductDetail: PropTypes.Requireable<io.flow.internal.v0.models.ClassifiedProductDetail>;
|
|
30944
|
+
export const colmItem: PropTypes.Requireable<io.flow.internal.v0.models.ColmItem>;
|
|
30945
|
+
export const colmItemForm: PropTypes.Requireable<io.flow.internal.v0.models.ColmItemForm>;
|
|
30485
30946
|
export const commercialInvoiceComparison: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceComparison>;
|
|
30486
30947
|
export const commercialInvoiceInternal: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternal>;
|
|
30487
30948
|
export const commercialInvoiceInternalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CommercialInvoiceInternalDeleted>;
|
|
@@ -30751,6 +31212,7 @@ export const fulfillmentProofOrderCombinedShipmentReference: PropTypes.Requireab
|
|
|
30751
31212
|
export const fulfillmentProofShippingNotificationReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference>;
|
|
30752
31213
|
export const fulfillmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentReference>;
|
|
30753
31214
|
export const fulfillmentShipmentTracking: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipmentTracking>;
|
|
31215
|
+
export const fulfillmentShopperBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShopperBreakdown>;
|
|
30754
31216
|
export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSnapshot>;
|
|
30755
31217
|
export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
|
|
30756
31218
|
export const fulfillmentTriggerProof: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentTriggerProof>;
|
|
@@ -30913,6 +31375,7 @@ export const itemSalesMarginVersion: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
30913
31375
|
export const itemSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemSummary>;
|
|
30914
31376
|
export const itemValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemValuesForm>;
|
|
30915
31377
|
export const itemsShipped: PropTypes.Requireable<io.flow.internal.v0.models.ItemsShipped>;
|
|
31378
|
+
export const jeanDemoItem: PropTypes.Requireable<io.flow.internal.v0.models.JeanDemoItem>;
|
|
30916
31379
|
export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
|
|
30917
31380
|
export const keyReference: PropTypes.Requireable<io.flow.internal.v0.models.KeyReference>;
|
|
30918
31381
|
export const klarnaAuthorizationParameters: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaAuthorizationParameters>;
|
|
@@ -31003,6 +31466,7 @@ export const manualReviewRuleUpserted: PropTypes.Requireable<io.flow.internal.v0
|
|
|
31003
31466
|
export const manualTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransaction>;
|
|
31004
31467
|
export const manualTransactionForm: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransactionForm>;
|
|
31005
31468
|
export const manualTransactionFormOrder: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransactionFormOrder>;
|
|
31469
|
+
export const markedAsFinal: PropTypes.Requireable<io.flow.internal.v0.models.MarkedAsFinal>;
|
|
31006
31470
|
export const marketingGatewayChannel: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannel>;
|
|
31007
31471
|
export const marketingGatewayChannelConnectionForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannelConnectionForm>;
|
|
31008
31472
|
export const marketingGatewayChannelForm: PropTypes.Requireable<io.flow.internal.v0.models.MarketingGatewayChannelForm>;
|
|
@@ -31313,6 +31777,7 @@ export const ratesNamesSummary: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
31313
31777
|
export const readyToFulfill: PropTypes.Requireable<io.flow.internal.v0.models.ReadyToFulfill>;
|
|
31314
31778
|
export const reboundConfiguration: PropTypes.Requireable<io.flow.internal.v0.models.ReboundConfiguration>;
|
|
31315
31779
|
export const reboundConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.models.ReboundConfigurationForm>;
|
|
31780
|
+
export const recordReference: PropTypes.Requireable<io.flow.internal.v0.models.RecordReference>;
|
|
31316
31781
|
export const redirect: PropTypes.Requireable<io.flow.internal.v0.models.Redirect>;
|
|
31317
31782
|
export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.models.RedirectActionCompleted>;
|
|
31318
31783
|
export const registeredExporterTariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData>;
|
|
@@ -31324,7 +31789,39 @@ export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.Report
|
|
|
31324
31789
|
export const reportPayment: PropTypes.Requireable<io.flow.internal.v0.models.ReportPayment>;
|
|
31325
31790
|
export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
|
|
31326
31791
|
export const reportSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportSummary>;
|
|
31792
|
+
export const reportingAuthorizationReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportingAuthorizationReference>;
|
|
31793
|
+
export const reportingBusiness: PropTypes.Requireable<io.flow.internal.v0.models.ReportingBusiness>;
|
|
31794
|
+
export const reportingConversionRates: PropTypes.Requireable<io.flow.internal.v0.models.ReportingConversionRates>;
|
|
31795
|
+
export const reportingCountry: PropTypes.Requireable<io.flow.internal.v0.models.ReportingCountry>;
|
|
31796
|
+
export const reportingCurrencies: PropTypes.Requireable<io.flow.internal.v0.models.ReportingCurrencies>;
|
|
31797
|
+
export const reportingDebug: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDebug>;
|
|
31798
|
+
export const reportingDebugMissingSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDebugMissingSubsidies>;
|
|
31799
|
+
export const reportingDestination: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDestination>;
|
|
31327
31800
|
export const reportingDetails: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDetails>;
|
|
31801
|
+
export const reportingEntity: PropTypes.Requireable<io.flow.internal.v0.models.ReportingEntity>;
|
|
31802
|
+
export const reportingFulfillment: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillment>;
|
|
31803
|
+
export const reportingFulfillmentHas: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentHas>;
|
|
31804
|
+
export const reportingFulfillmentIs: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentIs>;
|
|
31805
|
+
export const reportingFx: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFx>;
|
|
31806
|
+
export const reportingMerchantBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantBreakdown>;
|
|
31807
|
+
export const reportingMerchantFees: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantFees>;
|
|
31808
|
+
export const reportingMerchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantSubsidies>;
|
|
31809
|
+
export const reportingMerchantTransactions: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantTransactions>;
|
|
31810
|
+
export const reportingMonetaryValue: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMonetaryValue>;
|
|
31811
|
+
export const reportingOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportingOrderSummary>;
|
|
31812
|
+
export const reportingOrganizationSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportingOrganizationSummary>;
|
|
31813
|
+
export const reportingPayment: PropTypes.Requireable<io.flow.internal.v0.models.ReportingPayment>;
|
|
31814
|
+
export const reportingPaymentMetadata: PropTypes.Requireable<io.flow.internal.v0.models.ReportingPaymentMetadata>;
|
|
31815
|
+
export const reportingPaymentMetadataAdditionalAuthorizations: PropTypes.Requireable<io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations>;
|
|
31816
|
+
export const reportingProvince: PropTypes.Requireable<io.flow.internal.v0.models.ReportingProvince>;
|
|
31817
|
+
export const reportingReconciliation: PropTypes.Requireable<io.flow.internal.v0.models.ReportingReconciliation>;
|
|
31818
|
+
export const reportingRefundReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportingRefundReference>;
|
|
31819
|
+
export const reportingShipment: PropTypes.Requireable<io.flow.internal.v0.models.ReportingShipment>;
|
|
31820
|
+
export const reportingShopperFees: PropTypes.Requireable<io.flow.internal.v0.models.ReportingShopperFees>;
|
|
31821
|
+
export const reportingUsd: PropTypes.Requireable<io.flow.internal.v0.models.ReportingUsd>;
|
|
31822
|
+
export const reportingVatRemittance: PropTypes.Requireable<io.flow.internal.v0.models.ReportingVatRemittance>;
|
|
31823
|
+
export const reportingVatRemittanceRate: PropTypes.Requireable<io.flow.internal.v0.models.ReportingVatRemittanceRate>;
|
|
31824
|
+
export const reportingVendor: PropTypes.Requireable<io.flow.internal.v0.models.ReportingVendor>;
|
|
31328
31825
|
export const requeueRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RequeueRequestForm>;
|
|
31329
31826
|
export const restrictionCategory: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionCategory>;
|
|
31330
31827
|
export const restrictionFilter: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionFilter>;
|
|
@@ -31365,6 +31862,9 @@ export const returnPolicyItemResultUpserted: PropTypes.Requireable<io.flow.inter
|
|
|
31365
31862
|
export const returnPolicyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyUpserted>;
|
|
31366
31863
|
export const returnSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReturnSummary>;
|
|
31367
31864
|
export const returnTriggerRefund: PropTypes.Requireable<io.flow.internal.v0.models.ReturnTriggerRefund>;
|
|
31865
|
+
export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecord>;
|
|
31866
|
+
export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
|
|
31867
|
+
export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
|
|
31368
31868
|
export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
|
|
31369
31869
|
export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
|
|
31370
31870
|
export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
|
|
@@ -31420,7 +31920,7 @@ export const shopifyMarketsMetricsUpserted: PropTypes.Requireable<io.flow.intern
|
|
|
31420
31920
|
export const shopifyMarketsOrder: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrder>;
|
|
31421
31921
|
export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderDeleted>;
|
|
31422
31922
|
export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
|
|
31423
|
-
export const
|
|
31923
|
+
export const shopifyMarketsOrderVersionWithShopId: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId>;
|
|
31424
31924
|
export const shopifyMarketsOrdersMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics>;
|
|
31425
31925
|
export const shopifyMarketsQueuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsQueuedRecord>;
|
|
31426
31926
|
export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
|
|
@@ -31488,6 +31988,8 @@ export const shopperFreight: PropTypes.Requireable<io.flow.internal.v0.models.Sh
|
|
|
31488
31988
|
export const shopperLine: PropTypes.Requireable<io.flow.internal.v0.models.ShopperLine>;
|
|
31489
31989
|
export const shopperLines: PropTypes.Requireable<io.flow.internal.v0.models.ShopperLines>;
|
|
31490
31990
|
export const shopperSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopperSummary>;
|
|
31991
|
+
export const shrutiDemoItem: PropTypes.Requireable<io.flow.internal.v0.models.ShrutiDemoItem>;
|
|
31992
|
+
export const shrutiDemoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.ShrutiDemoItemForm>;
|
|
31491
31993
|
export const simpleAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.SimpleAccountReference>;
|
|
31492
31994
|
export const simplifiedItemLabel: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedItemLabel>;
|
|
31493
31995
|
export const simplifiedTaxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.SimplifiedTaxonomyCategory>;
|
|
@@ -31544,6 +32046,8 @@ export const supportedLabels: PropTypes.Requireable<io.flow.internal.v0.models.S
|
|
|
31544
32046
|
export const svbVirtualCardClearing: PropTypes.Requireable<io.flow.internal.v0.models.SvbVirtualCardClearing>;
|
|
31545
32047
|
export const svbVirtualCardClearingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SvbVirtualCardClearingDeleted>;
|
|
31546
32048
|
export const svbVirtualCardClearingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SvbVirtualCardClearingUpserted>;
|
|
32049
|
+
export const svitlanaItem: PropTypes.Requireable<io.flow.internal.v0.models.SvitlanaItem>;
|
|
32050
|
+
export const svitlanaItemForm: PropTypes.Requireable<io.flow.internal.v0.models.SvitlanaItemForm>;
|
|
31547
32051
|
export const tariffCodeDuty: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodeDuty>;
|
|
31548
32052
|
export const tariffCodesExport: PropTypes.Requireable<io.flow.internal.v0.models.TariffCodesExport>;
|
|
31549
32053
|
export const tariffEligibility: PropTypes.Requireable<io.flow.internal.v0.models.TariffEligibility>;
|