@flowio/api-internal-constants 4.18.73 → 4.18.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +72 -35
- package/dist/api-internal.js +85 -44
- package/package.json +2 -2
- package/src/api-internal.ts +78 -37
package/dist/api-internal.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare enum AccountPaymentHoldReason {
|
|
2
2
|
FRAUDULENT = "fraudulent",
|
|
3
|
+
FROZEN = "frozen",
|
|
3
4
|
INVALID_BANK_ACCOUNT = "invalid_bank_account"
|
|
4
5
|
}
|
|
5
6
|
export declare enum AccountSettingLiabilitiesMethod {
|
|
@@ -182,10 +183,12 @@ export declare enum BillingMetricKey {
|
|
|
182
183
|
NEGATIVE_BALANCE_NUMBER_ACCOUNTS = "negative_balance_number_accounts",
|
|
183
184
|
NEGATIVE_BALANCE_NUMBER_ACCOUNTS_WITH_ORDER_IN_PAST_30_DAYS = "negative_balance_number_accounts_with_order_in_past_30_days",
|
|
184
185
|
NEGATIVE_BALANCE_NUMBER_ACCOUNTS_WITHOUT_ORDER_IN_PAST_30_DAYS = "negative_balance_number_accounts_without_order_in_past_30_days",
|
|
186
|
+
NEGATIVE_BALANCE_NUMBER_ACTIVE_ACCOUNTS_WITH_BALANCE_OVER_1000 = "negative_balance_number_active_accounts_with_balance_over_1000",
|
|
185
187
|
NEGATIVE_BALANCE_TOTAL = "negative_balance_total",
|
|
186
188
|
NEGATIVE_BALANCE_TOTAL_WITH_ORDER_IN_PAST_30_DAYS = "negative_balance_total_with_order_in_past_30_days",
|
|
187
189
|
NEGATIVE_BALANCE_TOTAL_WITHOUT_ORDER_IN_PAST_30_DAYS = "negative_balance_total_without_order_in_past_30_days",
|
|
188
190
|
NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX = "negative_balance_single_account_max",
|
|
191
|
+
NEGATIVE_BALANCE_SINGLE_ACTIVE_ACCOUNT_MAX = "negative_balance_single_active_account_max",
|
|
189
192
|
NEGATIVE_BALANCE_FEE_TOTAL = "negative_balance_fee_total",
|
|
190
193
|
ACCOUNTS_WITH_PAYMENT_HOLDS_COUNT = "accounts_with_payment_holds_count",
|
|
191
194
|
ACCOUNTS_WITH_PAYMENT_HOLDS_PENDING_PAYMENT_PROMISE_COUNT = "accounts_with_payment_holds_pending_payment_promise_count",
|
|
@@ -319,7 +322,8 @@ export declare enum ChannelOrderAcceptanceRejectionReason {
|
|
|
319
322
|
UNSUPPORTED_SUBSIDIZED_ORDER = "unsupported_subsidized_order",
|
|
320
323
|
UNSUPPORTED_VIRTUAL_GOODS = "unsupported_virtual_goods",
|
|
321
324
|
NON_MATCHING_CURRENCIES = "non_matching_currencies",
|
|
322
|
-
UNSUPPORTED_ORDER_EDIT = "unsupported_order_edit"
|
|
325
|
+
UNSUPPORTED_ORDER_EDIT = "unsupported_order_edit",
|
|
326
|
+
ORDER_MISSING = "order_missing"
|
|
323
327
|
}
|
|
324
328
|
export declare enum ChannelOrderAcceptanceStatus {
|
|
325
329
|
ACCEPTED = "accepted",
|
|
@@ -433,6 +437,10 @@ export declare enum ColmItemType {
|
|
|
433
437
|
PHYSICAL = "physical",
|
|
434
438
|
DIGITAL = "digital"
|
|
435
439
|
}
|
|
440
|
+
export declare enum Company {
|
|
441
|
+
GLOBALE = "globale",
|
|
442
|
+
FLOW = "flow"
|
|
443
|
+
}
|
|
436
444
|
export declare enum ComplianceType {
|
|
437
445
|
WEEE = "weee"
|
|
438
446
|
}
|
|
@@ -634,6 +642,8 @@ export declare enum EventType {
|
|
|
634
642
|
SALES_RECORD_DELETED = "sales_record_deleted",
|
|
635
643
|
REVENUE_RECORD_UPSERTED = "revenue_record_upserted",
|
|
636
644
|
REVENUE_RECORD_DELETED = "revenue_record_deleted",
|
|
645
|
+
OTHER_RECORD_UPSERTED = "other_record_upserted",
|
|
646
|
+
OTHER_RECORD_DELETED = "other_record_deleted",
|
|
637
647
|
CALCULATOR_ORGANIZATION_SETTINGS_UPSERTED = "calculator_organization_settings_upserted",
|
|
638
648
|
CALCULATOR_ORGANIZATION_SETTINGS_DELETED = "calculator_organization_settings_deleted",
|
|
639
649
|
CARRIER_ACCOUNT_UPSERTED_V_2 = "carrier_account_upserted_v2",
|
|
@@ -696,14 +706,6 @@ export declare enum EventType {
|
|
|
696
706
|
EXPERIENCE_IMPORT_REQUEST = "experience_import_request",
|
|
697
707
|
SUBMITTED_ORDER_UPSERTED = "submitted_order_upserted",
|
|
698
708
|
LEVY_RATE_SUMMARY_UPSERTED = "levy_rate_summary_upserted",
|
|
699
|
-
EXPERIMENT_UPSERTED = "experiment_upserted",
|
|
700
|
-
EXPERIMENT_DELETED = "experiment_deleted",
|
|
701
|
-
EXPERIMENT_RESULTS_UPSERTED = "experiment_results_upserted",
|
|
702
|
-
EXPERIMENT_RESULTS_DELETED = "experiment_results_deleted",
|
|
703
|
-
DAILY_EXPERIMENT_RESULTS_UPSERTED = "daily_experiment_results_upserted",
|
|
704
|
-
DAILY_EXPERIMENT_RESULTS_DELETED = "daily_experiment_results_deleted",
|
|
705
|
-
EXPERIMENT_MILESTONE_UPSERTED = "experiment_milestone_upserted",
|
|
706
|
-
EXPERIMENT_MILESTONE_DELETED = "experiment_milestone_deleted",
|
|
707
709
|
EXPORT_COMPLETED = "export_completed",
|
|
708
710
|
EXPORT_FAILED = "export_failed",
|
|
709
711
|
FEATURE_UPSERTED = "feature_upserted",
|
|
@@ -738,6 +740,12 @@ export declare enum EventType {
|
|
|
738
740
|
FRAUD_PENDING_REVIEW_DELETED = "fraud_pending_review_deleted",
|
|
739
741
|
FRAUD_REVIEW_DECISION_UPSERTED = "fraud_review_decision_upserted",
|
|
740
742
|
FRAUD_REVIEW_DECISION_DELETED = "fraud_review_decision_deleted",
|
|
743
|
+
FRAUD_REVIEW_AUTHORIZATION_UPSERTED = "fraud_review_authorization_upserted",
|
|
744
|
+
FRAUD_REVIEW_AUTHORIZATION_DELETED = "fraud_review_authorization_deleted",
|
|
745
|
+
FRAUD_PENDING_REVIEW_AUTHORIZATION_UPSERTED = "fraud_pending_review_authorization_upserted",
|
|
746
|
+
FRAUD_PENDING_REVIEW_AUTHORIZATION_DELETED = "fraud_pending_review_authorization_deleted",
|
|
747
|
+
FRAUD_REVIEW_AUTHORIZATION_DECISION_UPSERTED = "fraud_review_authorization_decision_upserted",
|
|
748
|
+
FRAUD_REVIEW_AUTHORIZATION_DECISION_DELETED = "fraud_review_authorization_decision_deleted",
|
|
741
749
|
FRAUD_PROVIDER_CONFIGURATION_UPSERTED = "fraud_provider_configuration_upserted",
|
|
742
750
|
FRAUD_PROVIDER_CONFIGURATION_DELETED = "fraud_provider_configuration_deleted",
|
|
743
751
|
MANUAL_REVIEW_RULE_UPSERTED = "manual_review_rule_upserted",
|
|
@@ -815,6 +823,8 @@ export declare enum EventType {
|
|
|
815
823
|
ORGANIZATION_DEACTIVATION_DELETED = "organization_deactivation_deleted",
|
|
816
824
|
MERCHANT_GUID_ASSIGNMENT_UPSERTED = "merchant_guid_assignment_upserted",
|
|
817
825
|
MERCHANT_GUID_ASSIGNMENT_DELETED = "merchant_guid_assignment_deleted",
|
|
826
|
+
ORGANIZATION_METADATA_UPSERTED = "organization_metadata_upserted",
|
|
827
|
+
ORGANIZATION_METADATA_DELETED = "organization_metadata_deleted",
|
|
818
828
|
PARTNER_ORGANIZATION_SETTINGS_UPSERTED = "partner_organization_settings_upserted",
|
|
819
829
|
PARTNER_ORGANIZATION_SETTINGS_DELETED = "partner_organization_settings_deleted",
|
|
820
830
|
UNASSIGNED_MERCHANT_GUID_UPSERTED = "unassigned_merchant_guid_upserted",
|
|
@@ -890,6 +900,8 @@ export declare enum EventType {
|
|
|
890
900
|
CHANNEL_ORDER_SUMMARY_DELETED = "channel_order_summary_deleted",
|
|
891
901
|
CHANNEL_ORGANIZATION_IDENTIFIER_UPSERTED = "channel_organization_identifier_upserted",
|
|
892
902
|
CHANNEL_ORGANIZATION_IDENTIFIER_DELETED = "channel_organization_identifier_deleted",
|
|
903
|
+
ORDER_TAX_AND_DUTY_INCLUSIVITY_SETTING_UPSERTED = "order_tax_and_duty_inclusivity_setting_upserted",
|
|
904
|
+
ORDER_TAX_AND_DUTY_INCLUSIVITY_SETTING_DELETED = "order_tax_and_duty_inclusivity_setting_deleted",
|
|
893
905
|
SHOPIFY_MONITORING_ORDER_MONITOR_EVENT_UPSERTED = "shopify_monitoring_order_monitor_event_upserted",
|
|
894
906
|
SHOPIFY_MONITORING_ORDER_MONITOR_EVENT_DELETED = "shopify_monitoring_order_monitor_event_deleted",
|
|
895
907
|
SHOPIFY_ORDER_FULFILLMENTS_SNAPSHOT_UPSERTED = "shopify_order_fulfillments_snapshot_upserted",
|
|
@@ -908,8 +920,16 @@ export declare enum EventType {
|
|
|
908
920
|
SVITLANA_ITEM_DELETED = "svitlana_item_deleted",
|
|
909
921
|
COLM_ITEM_UPSERTED = "colm_item_upserted",
|
|
910
922
|
COLM_ITEM_DELETED = "colm_item_deleted",
|
|
923
|
+
HARINATH_ITEM_UPSERTED = "harinath_item_upserted",
|
|
924
|
+
HARINATH_ITEM_DELETED = "harinath_item_deleted",
|
|
925
|
+
KONSTANTIN_ITEM_UPSERTED = "konstantin_item_upserted",
|
|
926
|
+
KONSTANTIN_ITEM_DELETED = "konstantin_item_deleted",
|
|
911
927
|
MATIAS_ITEM_UPSERTED = "matias_item_upserted",
|
|
912
928
|
MATIAS_ITEM_DELETED = "matias_item_deleted",
|
|
929
|
+
MICHAELYAN_ITEM_UPSERTED = "michaelyan_item_upserted",
|
|
930
|
+
MICHAELYAN_ITEM_DELETED = "michaelyan_item_deleted",
|
|
931
|
+
MILJENKO_ITEM_UPSERTED = "miljenko_item_upserted",
|
|
932
|
+
MILJENKO_ITEM_DELETED = "miljenko_item_deleted",
|
|
913
933
|
SHRUTI_DEMO_ITEM_UPSERTED = "shruti_demo_item_upserted",
|
|
914
934
|
SHRUTI_DEMO_ITEM_DELETED = "shruti_demo_item_deleted",
|
|
915
935
|
TAM_ITEM_UPSERTED = "tam_item_upserted",
|
|
@@ -922,6 +942,8 @@ export declare enum EventType {
|
|
|
922
942
|
TRACKING_LABEL_DELETED = "tracking_label_deleted",
|
|
923
943
|
TRACKING_UPSERTED = "tracking_upserted",
|
|
924
944
|
TRACKING_DELETED = "tracking_deleted",
|
|
945
|
+
TRACKING_ASSURANCE_ANALYSIS_UPSERTED = "tracking_assurance_analysis_upserted",
|
|
946
|
+
TRACKING_ASSURANCE_ANALYSIS_DELETED = "tracking_assurance_analysis_deleted",
|
|
925
947
|
TRACKING_REQUEST_UPSERTED = "tracking_request_upserted",
|
|
926
948
|
TRACKING_RESPONSE_UPSERTED = "tracking_response_upserted",
|
|
927
949
|
USER_UPSERTED_V_2 = "user_upserted_v2",
|
|
@@ -938,10 +960,6 @@ export declare enum ExperienceOrderActionTrigger {
|
|
|
938
960
|
ZERO_BALANCE = "zero_balance",
|
|
939
961
|
UNSUBMITTED_ORDER = "unsubmitted_order"
|
|
940
962
|
}
|
|
941
|
-
export declare enum ExperimentDiscriminatorKey {
|
|
942
|
-
EXPERIENCE = "experience",
|
|
943
|
-
FEATURE = "feature"
|
|
944
|
-
}
|
|
945
963
|
export declare enum ExportContentType {
|
|
946
964
|
ITEM = "item",
|
|
947
965
|
PRICE_BOOK_ITEM = "price_book_item"
|
|
@@ -1007,6 +1025,15 @@ export declare enum FtpProtocol {
|
|
|
1007
1025
|
export declare enum GoogleAnalyticsPlugin {
|
|
1008
1026
|
EC = "ec"
|
|
1009
1027
|
}
|
|
1028
|
+
export declare enum HarinathItemType {
|
|
1029
|
+
DIGITAL = "digital",
|
|
1030
|
+
PHYSICAL = "physical"
|
|
1031
|
+
}
|
|
1032
|
+
export declare enum HarmonizationDecisionSource {
|
|
1033
|
+
HUMAN = "human",
|
|
1034
|
+
LEGACY_MODEL = "legacy_model",
|
|
1035
|
+
ENTERPRISE_MODEL = "enterprise_model"
|
|
1036
|
+
}
|
|
1010
1037
|
export declare enum HttpMethod {
|
|
1011
1038
|
GET = "get",
|
|
1012
1039
|
POST = "post"
|
|
@@ -1050,6 +1077,10 @@ export declare enum KeywordType {
|
|
|
1050
1077
|
POSITIVE = "positive",
|
|
1051
1078
|
NEGATIVE = "negative"
|
|
1052
1079
|
}
|
|
1080
|
+
export declare enum KonstantinItemType {
|
|
1081
|
+
PHYSICAL = "physical",
|
|
1082
|
+
DIGITAL = "digital"
|
|
1083
|
+
}
|
|
1053
1084
|
export declare enum LabelBillingStrategy {
|
|
1054
1085
|
QUOTE = "quote",
|
|
1055
1086
|
CARRIER = "carrier"
|
|
@@ -1088,6 +1119,11 @@ export declare enum LiabilityType {
|
|
|
1088
1119
|
export declare enum LogisticsCapability {
|
|
1089
1120
|
LOGISTICS_ADDRESS_CORRECTION = "logistics_address_correction"
|
|
1090
1121
|
}
|
|
1122
|
+
export declare enum LogisticsPayoutResolutionMethod {
|
|
1123
|
+
ORDER_COMBINED_SHIPMENT = "order_combined_shipment",
|
|
1124
|
+
INTRANSIT_LABEL_EVENT = "intransit_label_event",
|
|
1125
|
+
SHIPPING_NOTIFICATION = "shipping_notification"
|
|
1126
|
+
}
|
|
1091
1127
|
export declare enum ManualReviewRuleStatus {
|
|
1092
1128
|
ACTIVE = "active",
|
|
1093
1129
|
ARCHIVED = "archived"
|
|
@@ -1177,6 +1213,14 @@ export declare enum MatiasItemType {
|
|
|
1177
1213
|
PHYSICAL = "physical",
|
|
1178
1214
|
DIGITAL = "digital"
|
|
1179
1215
|
}
|
|
1216
|
+
export declare enum MichaelyanItemType {
|
|
1217
|
+
PHYSICAL = "physical",
|
|
1218
|
+
DIGITAL = "digital"
|
|
1219
|
+
}
|
|
1220
|
+
export declare enum MiljenkoItemType {
|
|
1221
|
+
PHYSICAL = "physical",
|
|
1222
|
+
DIGITAL = "digital"
|
|
1223
|
+
}
|
|
1180
1224
|
export declare enum MixedBagWeight {
|
|
1181
1225
|
LEAST_MIXED = "0",
|
|
1182
1226
|
PARTIALLY_MIXED = "1",
|
|
@@ -1245,6 +1289,7 @@ export declare enum OnboardingStateSource {
|
|
|
1245
1289
|
UNIT_TEST = "unit_test",
|
|
1246
1290
|
API = "api",
|
|
1247
1291
|
API_ACTIVATION = "api_activation",
|
|
1292
|
+
API_REJECT = "api_reject",
|
|
1248
1293
|
AUDIT_AUTO_ACTIVATION = "audit_auto_activation",
|
|
1249
1294
|
API_DEACTIVATION = "api_deactivation",
|
|
1250
1295
|
API_SANDBOX_SETUP = "api_sandbox_setup",
|
|
@@ -1469,11 +1514,15 @@ export declare enum ReportStatus {
|
|
|
1469
1514
|
}
|
|
1470
1515
|
export declare enum ReportType {
|
|
1471
1516
|
SALES_RECORD = "sales_record",
|
|
1517
|
+
REFUND_RECORD = "refund_record",
|
|
1518
|
+
OTHER_RECORD = "other_record",
|
|
1519
|
+
PENDING_RECORD = "pending_record",
|
|
1472
1520
|
TRUEUP_OVERVIEW = "trueup_overview",
|
|
1473
1521
|
NON_CHANNEL_PAYMENT_BANK_ACCOUNT = "non_channel_payment_bank_account",
|
|
1474
1522
|
SCHEDULED_PAYMENT = "scheduled_payment",
|
|
1475
1523
|
ACCOUNT_QUARTERLY_BALANCES = "account_quarterly_balances",
|
|
1476
|
-
INVARIANTS = "invariants"
|
|
1524
|
+
INVARIANTS = "invariants",
|
|
1525
|
+
PAYMENTS = "payments"
|
|
1477
1526
|
}
|
|
1478
1527
|
export declare enum ReportingFulfillmentIsVirtual {
|
|
1479
1528
|
ALL = "all",
|
|
@@ -1522,10 +1571,6 @@ export declare enum RiskEvaluation {
|
|
|
1522
1571
|
RESTRICTED = "Restricted-Party",
|
|
1523
1572
|
NONE = "none"
|
|
1524
1573
|
}
|
|
1525
|
-
export declare enum Scope {
|
|
1526
|
-
ORGANIZATION = "organization",
|
|
1527
|
-
GLOBAL = "global"
|
|
1528
|
-
}
|
|
1529
1574
|
export declare enum SerialReservationError {
|
|
1530
1575
|
DURATION_TOO_LONG = "duration_too_long",
|
|
1531
1576
|
ITEMS_NOT_FOUND = "items_not_found",
|
|
@@ -1634,11 +1679,6 @@ export declare enum ShrutiDemoType {
|
|
|
1634
1679
|
DIGITAL = "digital",
|
|
1635
1680
|
PHYSICAL = "physical"
|
|
1636
1681
|
}
|
|
1637
|
-
export declare enum SignificanceAction {
|
|
1638
|
-
END_AND_IMPLEMENT_WINNER = "end_and_implement_winner",
|
|
1639
|
-
END_AND_REVERT = "end_and_revert",
|
|
1640
|
-
DO_NOTHING = "do_nothing"
|
|
1641
|
-
}
|
|
1642
1682
|
export declare enum SimpleRoundingStrategy {
|
|
1643
1683
|
NO_ROUNDING = "no_rounding",
|
|
1644
1684
|
CURRENCY_PRECISION = "currency_precision"
|
|
@@ -1669,13 +1709,6 @@ export declare enum StatisticType {
|
|
|
1669
1709
|
RATE_SOURCE = "rate-source",
|
|
1670
1710
|
RATE_FRESHNESS = "rate-freshness"
|
|
1671
1711
|
}
|
|
1672
|
-
export declare enum Status {
|
|
1673
|
-
DRAFT = "draft",
|
|
1674
|
-
SCHEDULED = "scheduled",
|
|
1675
|
-
LIVE = "live",
|
|
1676
|
-
ENDED = "ended",
|
|
1677
|
-
ARCHIVED = "archived"
|
|
1678
|
-
}
|
|
1679
1712
|
export declare enum SubscriptionFrequency {
|
|
1680
1713
|
YEARLY = "yearly",
|
|
1681
1714
|
MONTHLY = "monthly"
|
|
@@ -1705,6 +1738,12 @@ export declare enum TaskProcessorKey {
|
|
|
1705
1738
|
RATE_LEVELS = "rate_levels",
|
|
1706
1739
|
CENTER_DEFAULTS = "center_defaults"
|
|
1707
1740
|
}
|
|
1741
|
+
export declare enum TaxAndDutyInclusivitySetting {
|
|
1742
|
+
DUTY_EXCLUSIVE_TAX_EXCLUSIVE = "duty_exclusive_tax_exclusive",
|
|
1743
|
+
DUTY_INCLUSIVE_TAX_EXCLUSIVE = "duty_inclusive_tax_exclusive",
|
|
1744
|
+
DUTY_EXCLUSIVE_TAX_INCLUSIVE = "duty_exclusive_tax_inclusive",
|
|
1745
|
+
DUTY_INCLUSIVE_TAX_INCLUSIVE = "duty_inclusive_tax_inclusive"
|
|
1746
|
+
}
|
|
1708
1747
|
export declare enum TaxCalculationErrorCode {
|
|
1709
1748
|
GENERIC_ERROR = "generic_error",
|
|
1710
1749
|
OUTSIDE_OF_JURISDICTION = "outside_of_jurisdiction"
|
|
@@ -1720,11 +1759,9 @@ export declare enum TaxTransactionType {
|
|
|
1720
1759
|
REVERSAL = "reversal",
|
|
1721
1760
|
TAX = "tax"
|
|
1722
1761
|
}
|
|
1723
|
-
export declare enum
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
MONTHLY = "monthly",
|
|
1727
|
-
YEARLY = "yearly"
|
|
1762
|
+
export declare enum ThiagoItemType {
|
|
1763
|
+
DIGITAL = "digital",
|
|
1764
|
+
PHYSICAL = "physical"
|
|
1728
1765
|
}
|
|
1729
1766
|
export declare enum TrackingIntegrationType {
|
|
1730
1767
|
API = "api",
|
package/dist/api-internal.js
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.UnclassifiedProductStatus = exports.TrueupTransactionType = exports.TransferMethod = exports.TransactionPostingMethod = exports.TrackingProcessingFailureClassification = exports.TrackingIntegrationType = exports.
|
|
3
|
+
exports.ContentElementType = exports.ComplianceType = exports.Company = exports.ColmItemType = exports.ClothingAgeClassification = exports.ClassificationType = exports.ClassificationPlatform = exports.ClassificationErrorCode = exports.ClassificationDecision = exports.CheckoutUrlType = exports.CheckoutShippingMethodPromptBehavior = exports.CheckoutRedirectMethod = exports.CheckoutPromptBehavior = exports.CheckoutErrorCode = exports.CheckoutAssetType = exports.ChargebackProcessStatus = exports.ChargebackPaymentStatus = exports.ChargeInputType = exports.ChargeEstimateSource = exports.ChannelTransactionType = exports.ChannelOrderFulfillmentStatusCode = exports.ChannelOrderAcceptanceStatus = exports.ChannelOrderAcceptanceRejectionReason = exports.ChannelOrderAcceptanceNextActionFrom = exports.ChannelOrderAcceptanceErrorAction = exports.ChannelBilledTransactionType = exports.CatalogImportType = exports.CarrierValidationStatus = exports.CarrierLabelGenerationMethod = exports.CarrierFileType = exports.CarrierChargeType = exports.CarrierChargeTransactionType = exports.CalculatorEngine = exports.BrowserBundleErrorCode = exports.BillingTransactionType = exports.BillingTransactionStatus = exports.BillingStatementAttachmentKey = exports.BillingMetricKey = exports.BillingAllocationKey = exports.BankPaymentStatusCode = exports.BankPaymentPromiseCompletedMethod = exports.AutoRestrictRule = exports.ApiCallReferenceId = exports.AnyDangerousGoods = exports.AdyenIntegrationType = exports.AdjustmentTransactionType = exports.AddressConfigurationSettingProvinceCode = exports.AccountType = exports.AccountSettingLiabilitiesMethod = exports.AccountPaymentHoldReason = void 0;
|
|
4
|
+
exports.InventoryReservation = exports.InventoryCheckService = exports.HttpMethod = exports.HarmonizationDecisionSource = exports.HarinathItemType = exports.GoogleAnalyticsPlugin = exports.FtpProtocol = exports.FtpIntent = exports.FraudReviewResponsibleParty = exports.FraudProviderStatus = exports.FraudProvider = exports.Format = exports.FlowApp = exports.FinancialReportingResponsibleParty = exports.FeesSource = exports.FeatureType = exports.FeatureStatus = exports.FeatureScope = exports.ExportContentType = exports.ExperienceOrderActionTrigger = exports.ExperienceOrderAction = exports.ExperienceImportType = exports.EventType = exports.ErpFileType = exports.EmptyAttribute = exports.DutyTransactionType = exports.DutySimpleExpressionType = exports.DutySelectionRule = exports.DutyRateUnitOfMeasure = exports.DutyRateSource = exports.DutyExemptItemTypes = exports.DutyCompoundExpressionType = exports.DisputeType = exports.DisputeTransactionType = exports.DisputeStatus = exports.DisputeProcessor = exports.DisputeLiability = exports.DisputeImportType = exports.DisputeImportStatus = exports.DisputeEvidence = exports.DisputeCategory = exports.DisputeBillable = exports.DiscountRequestOrderEntitlementKey = exports.DeminimisAdjustmentType = exports.DeliveredDutyOptionMessageType = exports.DebugAccountingTransactionType = exports.CrossdockTrackingStatus = exports.ContentTypeCast = exports.ContentType = exports.ContentStatus = void 0;
|
|
5
|
+
exports.OrganizationPaymentStatus = exports.OrganizationMetricType = exports.OrganizationCapability = exports.OrderValidationStatus = exports.OrderTransactionType = exports.OrderLifecycleEvent = exports.OrderChargeTrigger = exports.OrderCancellationInitiatedBy = exports.OrderAttributeIntent = exports.OrderAddressValidationStatus = exports.OrderAction = exports.OnboardingStateSource = exports.OnboardingAutomationTaskState = exports.OnboardingAutomationProcessState = exports.OnboardingAuditThemeKey = exports.OnboardingAuditResult = exports.OnboardingAuditMessageLevel = exports.NoLiabilityReasonCode = exports.NatureOfSale = exports.MixedBagWeight = exports.MiljenkoItemType = exports.MichaelyanItemType = exports.MatiasItemType = exports.MarketingGatewaySchemaCompatibility = exports.MarketingGatewayProductStatus = exports.MarketingGatewayPlatform = exports.MarketingGatewayFeedState = exports.MarketingGatewayFeedDownloadFormat = exports.MarketingGatewayFacebookTokenStatus = exports.MarketingGatewayErrorCode = exports.MarketingGatewayChannelStatus = exports.MarketingGatewayChannelIntegrationType = exports.MarketingGatewayAccountConnectionStatus = exports.ManualTransactionCategory = exports.ManualReviewRuleStatus = exports.LogisticsPayoutResolutionMethod = exports.LogisticsCapability = exports.LiabilityType = exports.LabelTransactionType = exports.LabelRequestErrorHandlingResponsibility = exports.LabelCreationStatus = exports.LabelCancellationErrorCode = exports.LabelBillingStrategy = exports.KonstantinItemType = exports.KeywordType = exports.ItemType = exports.ItemQuantityAction = exports.ItemHarmonizationStatus = exports.ItemClassificationStatus = exports.ItemClassificationAction = void 0;
|
|
6
|
+
exports.ShopifyMonitoringMonitorReviewStatus = exports.ShopifyMarketsTradeSector = exports.ShopifyMarketsQueuedRecordType = exports.ShopifyMarketsHtsNumberAvailable = exports.ShopifyMarketsDangerousGoods = exports.ShopifyGrantStatus = exports.ShopifyCheckInventoryErrorCode = exports.SessionCountryStatus = exports.ServiceName = exports.SerialReservationError = exports.RiskEvaluation = exports.RiskCheck = exports.RevenueRecordType = exports.RestrictionStatus = exports.RestrictionDecision = exports.RestrictionAction = exports.ResponsibleParty = exports.ReportingScheme = exports.ReportingFulfillmentIsVirtual = exports.ReportType = exports.ReportStatus = exports.ReportPaymentType = exports.ReportInterval = exports.RejectionReason = exports.RedirectReason = exports.ReboundConfigurationStatus = exports.RateSource = exports.RateLevelKey = exports.QuoteRequestType = exports.PromptTarget = exports.PromptOptions = exports.PromptCheckoutDisplayPosition = exports.PromptAction = exports.ProductStatus = exports.ProcessorEntityStatus = exports.Processor = exports.ProcessingTransactionType = exports.PricingIndicatorStatus = exports.PriceSelector = exports.PreferredBillingSchedule = exports.PaymentTerm = exports.PaymentSummaryType = exports.PaymentSummaryStatus = exports.Owner = exports.OutputStyle = exports.OrganizationRestrictionScreeningStatus = exports.OrganizationRestrictionRiskLevel = exports.OrganizationRestrictionReviewType = exports.OrganizationRestrictionNoteType = exports.OrganizationRestrictionApprovalStatus = void 0;
|
|
7
|
+
exports.UnclassifiedProductStatus = exports.TrueupTransactionType = exports.TransferMethod = exports.TransactionPostingMethod = exports.TrackingProcessingFailureClassification = exports.TrackingIntegrationType = exports.ThiagoItemType = exports.TaxTransactionType = exports.TaxParty = exports.TaxCalculationErrorCode = exports.TaxAndDutyInclusivitySetting = exports.TaskProcessorKey = exports.TariffEligibilityType = exports.TamItemType = exports.SvitlanaType = exports.SuggestionAction = exports.SubscriptionFrequency = exports.StatisticType = exports.StatementTransferTransactionLocation = exports.StatementStatus = exports.SnoozeSourceType = exports.SnoozeNextActionWith = exports.SimpleRoundingStrategy = exports.ShrutiDemoType = exports.ShopifyService = exports.ShopifyPromotionStatus = exports.ShopifyPromotionOrderEntitlementComponent = exports.ShopifyPromotionOfferAllocationMethod = exports.ShopifyPromotionBehavior = exports.ShopifyMonitoringTrackingField = void 0;
|
|
8
8
|
var AccountPaymentHoldReason;
|
|
9
9
|
(function (AccountPaymentHoldReason) {
|
|
10
10
|
AccountPaymentHoldReason["FRAUDULENT"] = "fraudulent";
|
|
11
|
+
AccountPaymentHoldReason["FROZEN"] = "frozen";
|
|
11
12
|
AccountPaymentHoldReason["INVALID_BANK_ACCOUNT"] = "invalid_bank_account";
|
|
12
13
|
})(AccountPaymentHoldReason = exports.AccountPaymentHoldReason || (exports.AccountPaymentHoldReason = {}));
|
|
13
14
|
var AccountSettingLiabilitiesMethod;
|
|
@@ -202,10 +203,12 @@ var BillingMetricKey;
|
|
|
202
203
|
BillingMetricKey["NEGATIVE_BALANCE_NUMBER_ACCOUNTS"] = "negative_balance_number_accounts";
|
|
203
204
|
BillingMetricKey["NEGATIVE_BALANCE_NUMBER_ACCOUNTS_WITH_ORDER_IN_PAST_30_DAYS"] = "negative_balance_number_accounts_with_order_in_past_30_days";
|
|
204
205
|
BillingMetricKey["NEGATIVE_BALANCE_NUMBER_ACCOUNTS_WITHOUT_ORDER_IN_PAST_30_DAYS"] = "negative_balance_number_accounts_without_order_in_past_30_days";
|
|
206
|
+
BillingMetricKey["NEGATIVE_BALANCE_NUMBER_ACTIVE_ACCOUNTS_WITH_BALANCE_OVER_1000"] = "negative_balance_number_active_accounts_with_balance_over_1000";
|
|
205
207
|
BillingMetricKey["NEGATIVE_BALANCE_TOTAL"] = "negative_balance_total";
|
|
206
208
|
BillingMetricKey["NEGATIVE_BALANCE_TOTAL_WITH_ORDER_IN_PAST_30_DAYS"] = "negative_balance_total_with_order_in_past_30_days";
|
|
207
209
|
BillingMetricKey["NEGATIVE_BALANCE_TOTAL_WITHOUT_ORDER_IN_PAST_30_DAYS"] = "negative_balance_total_without_order_in_past_30_days";
|
|
208
210
|
BillingMetricKey["NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX"] = "negative_balance_single_account_max";
|
|
211
|
+
BillingMetricKey["NEGATIVE_BALANCE_SINGLE_ACTIVE_ACCOUNT_MAX"] = "negative_balance_single_active_account_max";
|
|
209
212
|
BillingMetricKey["NEGATIVE_BALANCE_FEE_TOTAL"] = "negative_balance_fee_total";
|
|
210
213
|
BillingMetricKey["ACCOUNTS_WITH_PAYMENT_HOLDS_COUNT"] = "accounts_with_payment_holds_count";
|
|
211
214
|
BillingMetricKey["ACCOUNTS_WITH_PAYMENT_HOLDS_PENDING_PAYMENT_PROMISE_COUNT"] = "accounts_with_payment_holds_pending_payment_promise_count";
|
|
@@ -355,6 +358,7 @@ var ChannelOrderAcceptanceRejectionReason;
|
|
|
355
358
|
ChannelOrderAcceptanceRejectionReason["UNSUPPORTED_VIRTUAL_GOODS"] = "unsupported_virtual_goods";
|
|
356
359
|
ChannelOrderAcceptanceRejectionReason["NON_MATCHING_CURRENCIES"] = "non_matching_currencies";
|
|
357
360
|
ChannelOrderAcceptanceRejectionReason["UNSUPPORTED_ORDER_EDIT"] = "unsupported_order_edit";
|
|
361
|
+
ChannelOrderAcceptanceRejectionReason["ORDER_MISSING"] = "order_missing";
|
|
358
362
|
})(ChannelOrderAcceptanceRejectionReason = exports.ChannelOrderAcceptanceRejectionReason || (exports.ChannelOrderAcceptanceRejectionReason = {}));
|
|
359
363
|
var ChannelOrderAcceptanceStatus;
|
|
360
364
|
(function (ChannelOrderAcceptanceStatus) {
|
|
@@ -487,6 +491,11 @@ var ColmItemType;
|
|
|
487
491
|
ColmItemType["PHYSICAL"] = "physical";
|
|
488
492
|
ColmItemType["DIGITAL"] = "digital";
|
|
489
493
|
})(ColmItemType = exports.ColmItemType || (exports.ColmItemType = {}));
|
|
494
|
+
var Company;
|
|
495
|
+
(function (Company) {
|
|
496
|
+
Company["GLOBALE"] = "globale";
|
|
497
|
+
Company["FLOW"] = "flow";
|
|
498
|
+
})(Company = exports.Company || (exports.Company = {}));
|
|
490
499
|
var ComplianceType;
|
|
491
500
|
(function (ComplianceType) {
|
|
492
501
|
ComplianceType["WEEE"] = "weee";
|
|
@@ -718,6 +727,8 @@ var EventType;
|
|
|
718
727
|
EventType["SALES_RECORD_DELETED"] = "sales_record_deleted";
|
|
719
728
|
EventType["REVENUE_RECORD_UPSERTED"] = "revenue_record_upserted";
|
|
720
729
|
EventType["REVENUE_RECORD_DELETED"] = "revenue_record_deleted";
|
|
730
|
+
EventType["OTHER_RECORD_UPSERTED"] = "other_record_upserted";
|
|
731
|
+
EventType["OTHER_RECORD_DELETED"] = "other_record_deleted";
|
|
721
732
|
EventType["CALCULATOR_ORGANIZATION_SETTINGS_UPSERTED"] = "calculator_organization_settings_upserted";
|
|
722
733
|
EventType["CALCULATOR_ORGANIZATION_SETTINGS_DELETED"] = "calculator_organization_settings_deleted";
|
|
723
734
|
EventType["CARRIER_ACCOUNT_UPSERTED_V_2"] = "carrier_account_upserted_v2";
|
|
@@ -780,14 +791,6 @@ var EventType;
|
|
|
780
791
|
EventType["EXPERIENCE_IMPORT_REQUEST"] = "experience_import_request";
|
|
781
792
|
EventType["SUBMITTED_ORDER_UPSERTED"] = "submitted_order_upserted";
|
|
782
793
|
EventType["LEVY_RATE_SUMMARY_UPSERTED"] = "levy_rate_summary_upserted";
|
|
783
|
-
EventType["EXPERIMENT_UPSERTED"] = "experiment_upserted";
|
|
784
|
-
EventType["EXPERIMENT_DELETED"] = "experiment_deleted";
|
|
785
|
-
EventType["EXPERIMENT_RESULTS_UPSERTED"] = "experiment_results_upserted";
|
|
786
|
-
EventType["EXPERIMENT_RESULTS_DELETED"] = "experiment_results_deleted";
|
|
787
|
-
EventType["DAILY_EXPERIMENT_RESULTS_UPSERTED"] = "daily_experiment_results_upserted";
|
|
788
|
-
EventType["DAILY_EXPERIMENT_RESULTS_DELETED"] = "daily_experiment_results_deleted";
|
|
789
|
-
EventType["EXPERIMENT_MILESTONE_UPSERTED"] = "experiment_milestone_upserted";
|
|
790
|
-
EventType["EXPERIMENT_MILESTONE_DELETED"] = "experiment_milestone_deleted";
|
|
791
794
|
EventType["EXPORT_COMPLETED"] = "export_completed";
|
|
792
795
|
EventType["EXPORT_FAILED"] = "export_failed";
|
|
793
796
|
EventType["FEATURE_UPSERTED"] = "feature_upserted";
|
|
@@ -822,6 +825,12 @@ var EventType;
|
|
|
822
825
|
EventType["FRAUD_PENDING_REVIEW_DELETED"] = "fraud_pending_review_deleted";
|
|
823
826
|
EventType["FRAUD_REVIEW_DECISION_UPSERTED"] = "fraud_review_decision_upserted";
|
|
824
827
|
EventType["FRAUD_REVIEW_DECISION_DELETED"] = "fraud_review_decision_deleted";
|
|
828
|
+
EventType["FRAUD_REVIEW_AUTHORIZATION_UPSERTED"] = "fraud_review_authorization_upserted";
|
|
829
|
+
EventType["FRAUD_REVIEW_AUTHORIZATION_DELETED"] = "fraud_review_authorization_deleted";
|
|
830
|
+
EventType["FRAUD_PENDING_REVIEW_AUTHORIZATION_UPSERTED"] = "fraud_pending_review_authorization_upserted";
|
|
831
|
+
EventType["FRAUD_PENDING_REVIEW_AUTHORIZATION_DELETED"] = "fraud_pending_review_authorization_deleted";
|
|
832
|
+
EventType["FRAUD_REVIEW_AUTHORIZATION_DECISION_UPSERTED"] = "fraud_review_authorization_decision_upserted";
|
|
833
|
+
EventType["FRAUD_REVIEW_AUTHORIZATION_DECISION_DELETED"] = "fraud_review_authorization_decision_deleted";
|
|
825
834
|
EventType["FRAUD_PROVIDER_CONFIGURATION_UPSERTED"] = "fraud_provider_configuration_upserted";
|
|
826
835
|
EventType["FRAUD_PROVIDER_CONFIGURATION_DELETED"] = "fraud_provider_configuration_deleted";
|
|
827
836
|
EventType["MANUAL_REVIEW_RULE_UPSERTED"] = "manual_review_rule_upserted";
|
|
@@ -899,6 +908,8 @@ var EventType;
|
|
|
899
908
|
EventType["ORGANIZATION_DEACTIVATION_DELETED"] = "organization_deactivation_deleted";
|
|
900
909
|
EventType["MERCHANT_GUID_ASSIGNMENT_UPSERTED"] = "merchant_guid_assignment_upserted";
|
|
901
910
|
EventType["MERCHANT_GUID_ASSIGNMENT_DELETED"] = "merchant_guid_assignment_deleted";
|
|
911
|
+
EventType["ORGANIZATION_METADATA_UPSERTED"] = "organization_metadata_upserted";
|
|
912
|
+
EventType["ORGANIZATION_METADATA_DELETED"] = "organization_metadata_deleted";
|
|
902
913
|
EventType["PARTNER_ORGANIZATION_SETTINGS_UPSERTED"] = "partner_organization_settings_upserted";
|
|
903
914
|
EventType["PARTNER_ORGANIZATION_SETTINGS_DELETED"] = "partner_organization_settings_deleted";
|
|
904
915
|
EventType["UNASSIGNED_MERCHANT_GUID_UPSERTED"] = "unassigned_merchant_guid_upserted";
|
|
@@ -974,6 +985,8 @@ var EventType;
|
|
|
974
985
|
EventType["CHANNEL_ORDER_SUMMARY_DELETED"] = "channel_order_summary_deleted";
|
|
975
986
|
EventType["CHANNEL_ORGANIZATION_IDENTIFIER_UPSERTED"] = "channel_organization_identifier_upserted";
|
|
976
987
|
EventType["CHANNEL_ORGANIZATION_IDENTIFIER_DELETED"] = "channel_organization_identifier_deleted";
|
|
988
|
+
EventType["ORDER_TAX_AND_DUTY_INCLUSIVITY_SETTING_UPSERTED"] = "order_tax_and_duty_inclusivity_setting_upserted";
|
|
989
|
+
EventType["ORDER_TAX_AND_DUTY_INCLUSIVITY_SETTING_DELETED"] = "order_tax_and_duty_inclusivity_setting_deleted";
|
|
977
990
|
EventType["SHOPIFY_MONITORING_ORDER_MONITOR_EVENT_UPSERTED"] = "shopify_monitoring_order_monitor_event_upserted";
|
|
978
991
|
EventType["SHOPIFY_MONITORING_ORDER_MONITOR_EVENT_DELETED"] = "shopify_monitoring_order_monitor_event_deleted";
|
|
979
992
|
EventType["SHOPIFY_ORDER_FULFILLMENTS_SNAPSHOT_UPSERTED"] = "shopify_order_fulfillments_snapshot_upserted";
|
|
@@ -992,8 +1005,16 @@ var EventType;
|
|
|
992
1005
|
EventType["SVITLANA_ITEM_DELETED"] = "svitlana_item_deleted";
|
|
993
1006
|
EventType["COLM_ITEM_UPSERTED"] = "colm_item_upserted";
|
|
994
1007
|
EventType["COLM_ITEM_DELETED"] = "colm_item_deleted";
|
|
1008
|
+
EventType["HARINATH_ITEM_UPSERTED"] = "harinath_item_upserted";
|
|
1009
|
+
EventType["HARINATH_ITEM_DELETED"] = "harinath_item_deleted";
|
|
1010
|
+
EventType["KONSTANTIN_ITEM_UPSERTED"] = "konstantin_item_upserted";
|
|
1011
|
+
EventType["KONSTANTIN_ITEM_DELETED"] = "konstantin_item_deleted";
|
|
995
1012
|
EventType["MATIAS_ITEM_UPSERTED"] = "matias_item_upserted";
|
|
996
1013
|
EventType["MATIAS_ITEM_DELETED"] = "matias_item_deleted";
|
|
1014
|
+
EventType["MICHAELYAN_ITEM_UPSERTED"] = "michaelyan_item_upserted";
|
|
1015
|
+
EventType["MICHAELYAN_ITEM_DELETED"] = "michaelyan_item_deleted";
|
|
1016
|
+
EventType["MILJENKO_ITEM_UPSERTED"] = "miljenko_item_upserted";
|
|
1017
|
+
EventType["MILJENKO_ITEM_DELETED"] = "miljenko_item_deleted";
|
|
997
1018
|
EventType["SHRUTI_DEMO_ITEM_UPSERTED"] = "shruti_demo_item_upserted";
|
|
998
1019
|
EventType["SHRUTI_DEMO_ITEM_DELETED"] = "shruti_demo_item_deleted";
|
|
999
1020
|
EventType["TAM_ITEM_UPSERTED"] = "tam_item_upserted";
|
|
@@ -1006,6 +1027,8 @@ var EventType;
|
|
|
1006
1027
|
EventType["TRACKING_LABEL_DELETED"] = "tracking_label_deleted";
|
|
1007
1028
|
EventType["TRACKING_UPSERTED"] = "tracking_upserted";
|
|
1008
1029
|
EventType["TRACKING_DELETED"] = "tracking_deleted";
|
|
1030
|
+
EventType["TRACKING_ASSURANCE_ANALYSIS_UPSERTED"] = "tracking_assurance_analysis_upserted";
|
|
1031
|
+
EventType["TRACKING_ASSURANCE_ANALYSIS_DELETED"] = "tracking_assurance_analysis_deleted";
|
|
1009
1032
|
EventType["TRACKING_REQUEST_UPSERTED"] = "tracking_request_upserted";
|
|
1010
1033
|
EventType["TRACKING_RESPONSE_UPSERTED"] = "tracking_response_upserted";
|
|
1011
1034
|
EventType["USER_UPSERTED_V_2"] = "user_upserted_v2";
|
|
@@ -1025,11 +1048,6 @@ var ExperienceOrderActionTrigger;
|
|
|
1025
1048
|
ExperienceOrderActionTrigger["ZERO_BALANCE"] = "zero_balance";
|
|
1026
1049
|
ExperienceOrderActionTrigger["UNSUBMITTED_ORDER"] = "unsubmitted_order";
|
|
1027
1050
|
})(ExperienceOrderActionTrigger = exports.ExperienceOrderActionTrigger || (exports.ExperienceOrderActionTrigger = {}));
|
|
1028
|
-
var ExperimentDiscriminatorKey;
|
|
1029
|
-
(function (ExperimentDiscriminatorKey) {
|
|
1030
|
-
ExperimentDiscriminatorKey["EXPERIENCE"] = "experience";
|
|
1031
|
-
ExperimentDiscriminatorKey["FEATURE"] = "feature";
|
|
1032
|
-
})(ExperimentDiscriminatorKey = exports.ExperimentDiscriminatorKey || (exports.ExperimentDiscriminatorKey = {}));
|
|
1033
1051
|
var ExportContentType;
|
|
1034
1052
|
(function (ExportContentType) {
|
|
1035
1053
|
ExportContentType["ITEM"] = "item";
|
|
@@ -1109,6 +1127,17 @@ var GoogleAnalyticsPlugin;
|
|
|
1109
1127
|
(function (GoogleAnalyticsPlugin) {
|
|
1110
1128
|
GoogleAnalyticsPlugin["EC"] = "ec";
|
|
1111
1129
|
})(GoogleAnalyticsPlugin = exports.GoogleAnalyticsPlugin || (exports.GoogleAnalyticsPlugin = {}));
|
|
1130
|
+
var HarinathItemType;
|
|
1131
|
+
(function (HarinathItemType) {
|
|
1132
|
+
HarinathItemType["DIGITAL"] = "digital";
|
|
1133
|
+
HarinathItemType["PHYSICAL"] = "physical";
|
|
1134
|
+
})(HarinathItemType = exports.HarinathItemType || (exports.HarinathItemType = {}));
|
|
1135
|
+
var HarmonizationDecisionSource;
|
|
1136
|
+
(function (HarmonizationDecisionSource) {
|
|
1137
|
+
HarmonizationDecisionSource["HUMAN"] = "human";
|
|
1138
|
+
HarmonizationDecisionSource["LEGACY_MODEL"] = "legacy_model";
|
|
1139
|
+
HarmonizationDecisionSource["ENTERPRISE_MODEL"] = "enterprise_model";
|
|
1140
|
+
})(HarmonizationDecisionSource = exports.HarmonizationDecisionSource || (exports.HarmonizationDecisionSource = {}));
|
|
1112
1141
|
var HttpMethod;
|
|
1113
1142
|
(function (HttpMethod) {
|
|
1114
1143
|
HttpMethod["GET"] = "get";
|
|
@@ -1161,6 +1190,11 @@ var KeywordType;
|
|
|
1161
1190
|
KeywordType["POSITIVE"] = "positive";
|
|
1162
1191
|
KeywordType["NEGATIVE"] = "negative";
|
|
1163
1192
|
})(KeywordType = exports.KeywordType || (exports.KeywordType = {}));
|
|
1193
|
+
var KonstantinItemType;
|
|
1194
|
+
(function (KonstantinItemType) {
|
|
1195
|
+
KonstantinItemType["PHYSICAL"] = "physical";
|
|
1196
|
+
KonstantinItemType["DIGITAL"] = "digital";
|
|
1197
|
+
})(KonstantinItemType = exports.KonstantinItemType || (exports.KonstantinItemType = {}));
|
|
1164
1198
|
var LabelBillingStrategy;
|
|
1165
1199
|
(function (LabelBillingStrategy) {
|
|
1166
1200
|
LabelBillingStrategy["QUOTE"] = "quote";
|
|
@@ -1206,6 +1240,12 @@ var LogisticsCapability;
|
|
|
1206
1240
|
(function (LogisticsCapability) {
|
|
1207
1241
|
LogisticsCapability["LOGISTICS_ADDRESS_CORRECTION"] = "logistics_address_correction";
|
|
1208
1242
|
})(LogisticsCapability = exports.LogisticsCapability || (exports.LogisticsCapability = {}));
|
|
1243
|
+
var LogisticsPayoutResolutionMethod;
|
|
1244
|
+
(function (LogisticsPayoutResolutionMethod) {
|
|
1245
|
+
LogisticsPayoutResolutionMethod["ORDER_COMBINED_SHIPMENT"] = "order_combined_shipment";
|
|
1246
|
+
LogisticsPayoutResolutionMethod["INTRANSIT_LABEL_EVENT"] = "intransit_label_event";
|
|
1247
|
+
LogisticsPayoutResolutionMethod["SHIPPING_NOTIFICATION"] = "shipping_notification";
|
|
1248
|
+
})(LogisticsPayoutResolutionMethod = exports.LogisticsPayoutResolutionMethod || (exports.LogisticsPayoutResolutionMethod = {}));
|
|
1209
1249
|
var ManualReviewRuleStatus;
|
|
1210
1250
|
(function (ManualReviewRuleStatus) {
|
|
1211
1251
|
ManualReviewRuleStatus["ACTIVE"] = "active";
|
|
@@ -1308,6 +1348,16 @@ var MatiasItemType;
|
|
|
1308
1348
|
MatiasItemType["PHYSICAL"] = "physical";
|
|
1309
1349
|
MatiasItemType["DIGITAL"] = "digital";
|
|
1310
1350
|
})(MatiasItemType = exports.MatiasItemType || (exports.MatiasItemType = {}));
|
|
1351
|
+
var MichaelyanItemType;
|
|
1352
|
+
(function (MichaelyanItemType) {
|
|
1353
|
+
MichaelyanItemType["PHYSICAL"] = "physical";
|
|
1354
|
+
MichaelyanItemType["DIGITAL"] = "digital";
|
|
1355
|
+
})(MichaelyanItemType = exports.MichaelyanItemType || (exports.MichaelyanItemType = {}));
|
|
1356
|
+
var MiljenkoItemType;
|
|
1357
|
+
(function (MiljenkoItemType) {
|
|
1358
|
+
MiljenkoItemType["PHYSICAL"] = "physical";
|
|
1359
|
+
MiljenkoItemType["DIGITAL"] = "digital";
|
|
1360
|
+
})(MiljenkoItemType = exports.MiljenkoItemType || (exports.MiljenkoItemType = {}));
|
|
1311
1361
|
var MixedBagWeight;
|
|
1312
1362
|
(function (MixedBagWeight) {
|
|
1313
1363
|
MixedBagWeight["LEAST_MIXED"] = "0";
|
|
@@ -1385,6 +1435,7 @@ var OnboardingStateSource;
|
|
|
1385
1435
|
OnboardingStateSource["UNIT_TEST"] = "unit_test";
|
|
1386
1436
|
OnboardingStateSource["API"] = "api";
|
|
1387
1437
|
OnboardingStateSource["API_ACTIVATION"] = "api_activation";
|
|
1438
|
+
OnboardingStateSource["API_REJECT"] = "api_reject";
|
|
1388
1439
|
OnboardingStateSource["AUDIT_AUTO_ACTIVATION"] = "audit_auto_activation";
|
|
1389
1440
|
OnboardingStateSource["API_DEACTIVATION"] = "api_deactivation";
|
|
1390
1441
|
OnboardingStateSource["API_SANDBOX_SETUP"] = "api_sandbox_setup";
|
|
@@ -1651,11 +1702,15 @@ var ReportStatus;
|
|
|
1651
1702
|
var ReportType;
|
|
1652
1703
|
(function (ReportType) {
|
|
1653
1704
|
ReportType["SALES_RECORD"] = "sales_record";
|
|
1705
|
+
ReportType["REFUND_RECORD"] = "refund_record";
|
|
1706
|
+
ReportType["OTHER_RECORD"] = "other_record";
|
|
1707
|
+
ReportType["PENDING_RECORD"] = "pending_record";
|
|
1654
1708
|
ReportType["TRUEUP_OVERVIEW"] = "trueup_overview";
|
|
1655
1709
|
ReportType["NON_CHANNEL_PAYMENT_BANK_ACCOUNT"] = "non_channel_payment_bank_account";
|
|
1656
1710
|
ReportType["SCHEDULED_PAYMENT"] = "scheduled_payment";
|
|
1657
1711
|
ReportType["ACCOUNT_QUARTERLY_BALANCES"] = "account_quarterly_balances";
|
|
1658
1712
|
ReportType["INVARIANTS"] = "invariants";
|
|
1713
|
+
ReportType["PAYMENTS"] = "payments";
|
|
1659
1714
|
})(ReportType = exports.ReportType || (exports.ReportType = {}));
|
|
1660
1715
|
var ReportingFulfillmentIsVirtual;
|
|
1661
1716
|
(function (ReportingFulfillmentIsVirtual) {
|
|
@@ -1713,11 +1768,6 @@ var RiskEvaluation;
|
|
|
1713
1768
|
RiskEvaluation["RESTRICTED"] = "Restricted-Party";
|
|
1714
1769
|
RiskEvaluation["NONE"] = "none";
|
|
1715
1770
|
})(RiskEvaluation = exports.RiskEvaluation || (exports.RiskEvaluation = {}));
|
|
1716
|
-
var Scope;
|
|
1717
|
-
(function (Scope) {
|
|
1718
|
-
Scope["ORGANIZATION"] = "organization";
|
|
1719
|
-
Scope["GLOBAL"] = "global";
|
|
1720
|
-
})(Scope = exports.Scope || (exports.Scope = {}));
|
|
1721
1771
|
var SerialReservationError;
|
|
1722
1772
|
(function (SerialReservationError) {
|
|
1723
1773
|
SerialReservationError["DURATION_TOO_LONG"] = "duration_too_long";
|
|
@@ -1843,12 +1893,6 @@ var ShrutiDemoType;
|
|
|
1843
1893
|
ShrutiDemoType["DIGITAL"] = "digital";
|
|
1844
1894
|
ShrutiDemoType["PHYSICAL"] = "physical";
|
|
1845
1895
|
})(ShrutiDemoType = exports.ShrutiDemoType || (exports.ShrutiDemoType = {}));
|
|
1846
|
-
var SignificanceAction;
|
|
1847
|
-
(function (SignificanceAction) {
|
|
1848
|
-
SignificanceAction["END_AND_IMPLEMENT_WINNER"] = "end_and_implement_winner";
|
|
1849
|
-
SignificanceAction["END_AND_REVERT"] = "end_and_revert";
|
|
1850
|
-
SignificanceAction["DO_NOTHING"] = "do_nothing";
|
|
1851
|
-
})(SignificanceAction = exports.SignificanceAction || (exports.SignificanceAction = {}));
|
|
1852
1896
|
var SimpleRoundingStrategy;
|
|
1853
1897
|
(function (SimpleRoundingStrategy) {
|
|
1854
1898
|
SimpleRoundingStrategy["NO_ROUNDING"] = "no_rounding";
|
|
@@ -1885,14 +1929,6 @@ var StatisticType;
|
|
|
1885
1929
|
StatisticType["RATE_SOURCE"] = "rate-source";
|
|
1886
1930
|
StatisticType["RATE_FRESHNESS"] = "rate-freshness";
|
|
1887
1931
|
})(StatisticType = exports.StatisticType || (exports.StatisticType = {}));
|
|
1888
|
-
var Status;
|
|
1889
|
-
(function (Status) {
|
|
1890
|
-
Status["DRAFT"] = "draft";
|
|
1891
|
-
Status["SCHEDULED"] = "scheduled";
|
|
1892
|
-
Status["LIVE"] = "live";
|
|
1893
|
-
Status["ENDED"] = "ended";
|
|
1894
|
-
Status["ARCHIVED"] = "archived";
|
|
1895
|
-
})(Status = exports.Status || (exports.Status = {}));
|
|
1896
1932
|
var SubscriptionFrequency;
|
|
1897
1933
|
(function (SubscriptionFrequency) {
|
|
1898
1934
|
SubscriptionFrequency["YEARLY"] = "yearly";
|
|
@@ -1928,6 +1964,13 @@ var TaskProcessorKey;
|
|
|
1928
1964
|
TaskProcessorKey["RATE_LEVELS"] = "rate_levels";
|
|
1929
1965
|
TaskProcessorKey["CENTER_DEFAULTS"] = "center_defaults";
|
|
1930
1966
|
})(TaskProcessorKey = exports.TaskProcessorKey || (exports.TaskProcessorKey = {}));
|
|
1967
|
+
var TaxAndDutyInclusivitySetting;
|
|
1968
|
+
(function (TaxAndDutyInclusivitySetting) {
|
|
1969
|
+
TaxAndDutyInclusivitySetting["DUTY_EXCLUSIVE_TAX_EXCLUSIVE"] = "duty_exclusive_tax_exclusive";
|
|
1970
|
+
TaxAndDutyInclusivitySetting["DUTY_INCLUSIVE_TAX_EXCLUSIVE"] = "duty_inclusive_tax_exclusive";
|
|
1971
|
+
TaxAndDutyInclusivitySetting["DUTY_EXCLUSIVE_TAX_INCLUSIVE"] = "duty_exclusive_tax_inclusive";
|
|
1972
|
+
TaxAndDutyInclusivitySetting["DUTY_INCLUSIVE_TAX_INCLUSIVE"] = "duty_inclusive_tax_inclusive";
|
|
1973
|
+
})(TaxAndDutyInclusivitySetting = exports.TaxAndDutyInclusivitySetting || (exports.TaxAndDutyInclusivitySetting = {}));
|
|
1931
1974
|
var TaxCalculationErrorCode;
|
|
1932
1975
|
(function (TaxCalculationErrorCode) {
|
|
1933
1976
|
TaxCalculationErrorCode["GENERIC_ERROR"] = "generic_error";
|
|
@@ -1946,13 +1989,11 @@ var TaxTransactionType;
|
|
|
1946
1989
|
TaxTransactionType["REVERSAL"] = "reversal";
|
|
1947
1990
|
TaxTransactionType["TAX"] = "tax";
|
|
1948
1991
|
})(TaxTransactionType = exports.TaxTransactionType || (exports.TaxTransactionType = {}));
|
|
1949
|
-
var
|
|
1950
|
-
(function (
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
TimeseriesType["YEARLY"] = "yearly";
|
|
1955
|
-
})(TimeseriesType = exports.TimeseriesType || (exports.TimeseriesType = {}));
|
|
1992
|
+
var ThiagoItemType;
|
|
1993
|
+
(function (ThiagoItemType) {
|
|
1994
|
+
ThiagoItemType["DIGITAL"] = "digital";
|
|
1995
|
+
ThiagoItemType["PHYSICAL"] = "physical";
|
|
1996
|
+
})(ThiagoItemType = exports.ThiagoItemType || (exports.ThiagoItemType = {}));
|
|
1956
1997
|
var TrackingIntegrationType;
|
|
1957
1998
|
(function (TrackingIntegrationType) {
|
|
1958
1999
|
TrackingIntegrationType["API"] = "api";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-internal-constants",
|
|
3
|
-
"version": "4.18.
|
|
3
|
+
"version": "4.18.75",
|
|
4
4
|
"description": "Definitions for enumerations found in internal Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"generate": "apibuilder update",
|
|
25
25
|
"postgenerate": "npm run format"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "e2172791ebb0708545e2d68100656b52120f50e4"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export enum AccountPaymentHoldReason {
|
|
2
2
|
FRAUDULENT = 'fraudulent',
|
|
3
|
+
FROZEN = 'frozen',
|
|
3
4
|
INVALID_BANK_ACCOUNT = 'invalid_bank_account',
|
|
4
5
|
}
|
|
5
6
|
|
|
@@ -194,10 +195,12 @@ export enum BillingMetricKey {
|
|
|
194
195
|
NEGATIVE_BALANCE_NUMBER_ACCOUNTS = 'negative_balance_number_accounts',
|
|
195
196
|
NEGATIVE_BALANCE_NUMBER_ACCOUNTS_WITH_ORDER_IN_PAST_30_DAYS = 'negative_balance_number_accounts_with_order_in_past_30_days',
|
|
196
197
|
NEGATIVE_BALANCE_NUMBER_ACCOUNTS_WITHOUT_ORDER_IN_PAST_30_DAYS = 'negative_balance_number_accounts_without_order_in_past_30_days',
|
|
198
|
+
NEGATIVE_BALANCE_NUMBER_ACTIVE_ACCOUNTS_WITH_BALANCE_OVER_1000 = 'negative_balance_number_active_accounts_with_balance_over_1000',
|
|
197
199
|
NEGATIVE_BALANCE_TOTAL = 'negative_balance_total',
|
|
198
200
|
NEGATIVE_BALANCE_TOTAL_WITH_ORDER_IN_PAST_30_DAYS = 'negative_balance_total_with_order_in_past_30_days',
|
|
199
201
|
NEGATIVE_BALANCE_TOTAL_WITHOUT_ORDER_IN_PAST_30_DAYS = 'negative_balance_total_without_order_in_past_30_days',
|
|
200
202
|
NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX = 'negative_balance_single_account_max',
|
|
203
|
+
NEGATIVE_BALANCE_SINGLE_ACTIVE_ACCOUNT_MAX = 'negative_balance_single_active_account_max',
|
|
201
204
|
NEGATIVE_BALANCE_FEE_TOTAL = 'negative_balance_fee_total',
|
|
202
205
|
ACCOUNTS_WITH_PAYMENT_HOLDS_COUNT = 'accounts_with_payment_holds_count',
|
|
203
206
|
ACCOUNTS_WITH_PAYMENT_HOLDS_PENDING_PAYMENT_PROMISE_COUNT = 'accounts_with_payment_holds_pending_payment_promise_count',
|
|
@@ -347,6 +350,7 @@ export enum ChannelOrderAcceptanceRejectionReason {
|
|
|
347
350
|
UNSUPPORTED_VIRTUAL_GOODS = 'unsupported_virtual_goods',
|
|
348
351
|
NON_MATCHING_CURRENCIES = 'non_matching_currencies',
|
|
349
352
|
UNSUPPORTED_ORDER_EDIT = 'unsupported_order_edit',
|
|
353
|
+
ORDER_MISSING = 'order_missing',
|
|
350
354
|
}
|
|
351
355
|
|
|
352
356
|
export enum ChannelOrderAcceptanceStatus {
|
|
@@ -480,6 +484,11 @@ export enum ColmItemType {
|
|
|
480
484
|
DIGITAL = 'digital',
|
|
481
485
|
}
|
|
482
486
|
|
|
487
|
+
export enum Company {
|
|
488
|
+
GLOBALE = 'globale',
|
|
489
|
+
FLOW = 'flow',
|
|
490
|
+
}
|
|
491
|
+
|
|
483
492
|
export enum ComplianceType {
|
|
484
493
|
WEEE = 'weee',
|
|
485
494
|
}
|
|
@@ -710,6 +719,8 @@ export enum EventType {
|
|
|
710
719
|
SALES_RECORD_DELETED = 'sales_record_deleted',
|
|
711
720
|
REVENUE_RECORD_UPSERTED = 'revenue_record_upserted',
|
|
712
721
|
REVENUE_RECORD_DELETED = 'revenue_record_deleted',
|
|
722
|
+
OTHER_RECORD_UPSERTED = 'other_record_upserted',
|
|
723
|
+
OTHER_RECORD_DELETED = 'other_record_deleted',
|
|
713
724
|
CALCULATOR_ORGANIZATION_SETTINGS_UPSERTED = 'calculator_organization_settings_upserted',
|
|
714
725
|
CALCULATOR_ORGANIZATION_SETTINGS_DELETED = 'calculator_organization_settings_deleted',
|
|
715
726
|
CARRIER_ACCOUNT_UPSERTED_V_2 = 'carrier_account_upserted_v2',
|
|
@@ -772,14 +783,6 @@ export enum EventType {
|
|
|
772
783
|
EXPERIENCE_IMPORT_REQUEST = 'experience_import_request',
|
|
773
784
|
SUBMITTED_ORDER_UPSERTED = 'submitted_order_upserted',
|
|
774
785
|
LEVY_RATE_SUMMARY_UPSERTED = 'levy_rate_summary_upserted',
|
|
775
|
-
EXPERIMENT_UPSERTED = 'experiment_upserted',
|
|
776
|
-
EXPERIMENT_DELETED = 'experiment_deleted',
|
|
777
|
-
EXPERIMENT_RESULTS_UPSERTED = 'experiment_results_upserted',
|
|
778
|
-
EXPERIMENT_RESULTS_DELETED = 'experiment_results_deleted',
|
|
779
|
-
DAILY_EXPERIMENT_RESULTS_UPSERTED = 'daily_experiment_results_upserted',
|
|
780
|
-
DAILY_EXPERIMENT_RESULTS_DELETED = 'daily_experiment_results_deleted',
|
|
781
|
-
EXPERIMENT_MILESTONE_UPSERTED = 'experiment_milestone_upserted',
|
|
782
|
-
EXPERIMENT_MILESTONE_DELETED = 'experiment_milestone_deleted',
|
|
783
786
|
EXPORT_COMPLETED = 'export_completed',
|
|
784
787
|
EXPORT_FAILED = 'export_failed',
|
|
785
788
|
FEATURE_UPSERTED = 'feature_upserted',
|
|
@@ -814,6 +817,12 @@ export enum EventType {
|
|
|
814
817
|
FRAUD_PENDING_REVIEW_DELETED = 'fraud_pending_review_deleted',
|
|
815
818
|
FRAUD_REVIEW_DECISION_UPSERTED = 'fraud_review_decision_upserted',
|
|
816
819
|
FRAUD_REVIEW_DECISION_DELETED = 'fraud_review_decision_deleted',
|
|
820
|
+
FRAUD_REVIEW_AUTHORIZATION_UPSERTED = 'fraud_review_authorization_upserted',
|
|
821
|
+
FRAUD_REVIEW_AUTHORIZATION_DELETED = 'fraud_review_authorization_deleted',
|
|
822
|
+
FRAUD_PENDING_REVIEW_AUTHORIZATION_UPSERTED = 'fraud_pending_review_authorization_upserted',
|
|
823
|
+
FRAUD_PENDING_REVIEW_AUTHORIZATION_DELETED = 'fraud_pending_review_authorization_deleted',
|
|
824
|
+
FRAUD_REVIEW_AUTHORIZATION_DECISION_UPSERTED = 'fraud_review_authorization_decision_upserted',
|
|
825
|
+
FRAUD_REVIEW_AUTHORIZATION_DECISION_DELETED = 'fraud_review_authorization_decision_deleted',
|
|
817
826
|
FRAUD_PROVIDER_CONFIGURATION_UPSERTED = 'fraud_provider_configuration_upserted',
|
|
818
827
|
FRAUD_PROVIDER_CONFIGURATION_DELETED = 'fraud_provider_configuration_deleted',
|
|
819
828
|
MANUAL_REVIEW_RULE_UPSERTED = 'manual_review_rule_upserted',
|
|
@@ -891,6 +900,8 @@ export enum EventType {
|
|
|
891
900
|
ORGANIZATION_DEACTIVATION_DELETED = 'organization_deactivation_deleted',
|
|
892
901
|
MERCHANT_GUID_ASSIGNMENT_UPSERTED = 'merchant_guid_assignment_upserted',
|
|
893
902
|
MERCHANT_GUID_ASSIGNMENT_DELETED = 'merchant_guid_assignment_deleted',
|
|
903
|
+
ORGANIZATION_METADATA_UPSERTED = 'organization_metadata_upserted',
|
|
904
|
+
ORGANIZATION_METADATA_DELETED = 'organization_metadata_deleted',
|
|
894
905
|
PARTNER_ORGANIZATION_SETTINGS_UPSERTED = 'partner_organization_settings_upserted',
|
|
895
906
|
PARTNER_ORGANIZATION_SETTINGS_DELETED = 'partner_organization_settings_deleted',
|
|
896
907
|
UNASSIGNED_MERCHANT_GUID_UPSERTED = 'unassigned_merchant_guid_upserted',
|
|
@@ -966,6 +977,8 @@ export enum EventType {
|
|
|
966
977
|
CHANNEL_ORDER_SUMMARY_DELETED = 'channel_order_summary_deleted',
|
|
967
978
|
CHANNEL_ORGANIZATION_IDENTIFIER_UPSERTED = 'channel_organization_identifier_upserted',
|
|
968
979
|
CHANNEL_ORGANIZATION_IDENTIFIER_DELETED = 'channel_organization_identifier_deleted',
|
|
980
|
+
ORDER_TAX_AND_DUTY_INCLUSIVITY_SETTING_UPSERTED = 'order_tax_and_duty_inclusivity_setting_upserted',
|
|
981
|
+
ORDER_TAX_AND_DUTY_INCLUSIVITY_SETTING_DELETED = 'order_tax_and_duty_inclusivity_setting_deleted',
|
|
969
982
|
SHOPIFY_MONITORING_ORDER_MONITOR_EVENT_UPSERTED = 'shopify_monitoring_order_monitor_event_upserted',
|
|
970
983
|
SHOPIFY_MONITORING_ORDER_MONITOR_EVENT_DELETED = 'shopify_monitoring_order_monitor_event_deleted',
|
|
971
984
|
SHOPIFY_ORDER_FULFILLMENTS_SNAPSHOT_UPSERTED = 'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -984,8 +997,16 @@ export enum EventType {
|
|
|
984
997
|
SVITLANA_ITEM_DELETED = 'svitlana_item_deleted',
|
|
985
998
|
COLM_ITEM_UPSERTED = 'colm_item_upserted',
|
|
986
999
|
COLM_ITEM_DELETED = 'colm_item_deleted',
|
|
1000
|
+
HARINATH_ITEM_UPSERTED = 'harinath_item_upserted',
|
|
1001
|
+
HARINATH_ITEM_DELETED = 'harinath_item_deleted',
|
|
1002
|
+
KONSTANTIN_ITEM_UPSERTED = 'konstantin_item_upserted',
|
|
1003
|
+
KONSTANTIN_ITEM_DELETED = 'konstantin_item_deleted',
|
|
987
1004
|
MATIAS_ITEM_UPSERTED = 'matias_item_upserted',
|
|
988
1005
|
MATIAS_ITEM_DELETED = 'matias_item_deleted',
|
|
1006
|
+
MICHAELYAN_ITEM_UPSERTED = 'michaelyan_item_upserted',
|
|
1007
|
+
MICHAELYAN_ITEM_DELETED = 'michaelyan_item_deleted',
|
|
1008
|
+
MILJENKO_ITEM_UPSERTED = 'miljenko_item_upserted',
|
|
1009
|
+
MILJENKO_ITEM_DELETED = 'miljenko_item_deleted',
|
|
989
1010
|
SHRUTI_DEMO_ITEM_UPSERTED = 'shruti_demo_item_upserted',
|
|
990
1011
|
SHRUTI_DEMO_ITEM_DELETED = 'shruti_demo_item_deleted',
|
|
991
1012
|
TAM_ITEM_UPSERTED = 'tam_item_upserted',
|
|
@@ -998,6 +1019,8 @@ export enum EventType {
|
|
|
998
1019
|
TRACKING_LABEL_DELETED = 'tracking_label_deleted',
|
|
999
1020
|
TRACKING_UPSERTED = 'tracking_upserted',
|
|
1000
1021
|
TRACKING_DELETED = 'tracking_deleted',
|
|
1022
|
+
TRACKING_ASSURANCE_ANALYSIS_UPSERTED = 'tracking_assurance_analysis_upserted',
|
|
1023
|
+
TRACKING_ASSURANCE_ANALYSIS_DELETED = 'tracking_assurance_analysis_deleted',
|
|
1001
1024
|
TRACKING_REQUEST_UPSERTED = 'tracking_request_upserted',
|
|
1002
1025
|
TRACKING_RESPONSE_UPSERTED = 'tracking_response_upserted',
|
|
1003
1026
|
USER_UPSERTED_V_2 = 'user_upserted_v2',
|
|
@@ -1018,11 +1041,6 @@ export enum ExperienceOrderActionTrigger {
|
|
|
1018
1041
|
UNSUBMITTED_ORDER = 'unsubmitted_order',
|
|
1019
1042
|
}
|
|
1020
1043
|
|
|
1021
|
-
export enum ExperimentDiscriminatorKey {
|
|
1022
|
-
EXPERIENCE = 'experience',
|
|
1023
|
-
FEATURE = 'feature',
|
|
1024
|
-
}
|
|
1025
|
-
|
|
1026
1044
|
export enum ExportContentType {
|
|
1027
1045
|
ITEM = 'item',
|
|
1028
1046
|
PRICE_BOOK_ITEM = 'price_book_item',
|
|
@@ -1102,6 +1120,17 @@ export enum GoogleAnalyticsPlugin {
|
|
|
1102
1120
|
EC = 'ec',
|
|
1103
1121
|
}
|
|
1104
1122
|
|
|
1123
|
+
export enum HarinathItemType {
|
|
1124
|
+
DIGITAL = 'digital',
|
|
1125
|
+
PHYSICAL = 'physical',
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
export enum HarmonizationDecisionSource {
|
|
1129
|
+
HUMAN = 'human',
|
|
1130
|
+
LEGACY_MODEL = 'legacy_model',
|
|
1131
|
+
ENTERPRISE_MODEL = 'enterprise_model',
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1105
1134
|
export enum HttpMethod {
|
|
1106
1135
|
GET = 'get',
|
|
1107
1136
|
POST = 'post',
|
|
@@ -1154,6 +1183,11 @@ export enum KeywordType {
|
|
|
1154
1183
|
NEGATIVE = 'negative',
|
|
1155
1184
|
}
|
|
1156
1185
|
|
|
1186
|
+
export enum KonstantinItemType {
|
|
1187
|
+
PHYSICAL = 'physical',
|
|
1188
|
+
DIGITAL = 'digital',
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1157
1191
|
export enum LabelBillingStrategy {
|
|
1158
1192
|
QUOTE = 'quote',
|
|
1159
1193
|
CARRIER = 'carrier',
|
|
@@ -1199,6 +1233,12 @@ export enum LogisticsCapability {
|
|
|
1199
1233
|
LOGISTICS_ADDRESS_CORRECTION = 'logistics_address_correction',
|
|
1200
1234
|
}
|
|
1201
1235
|
|
|
1236
|
+
export enum LogisticsPayoutResolutionMethod {
|
|
1237
|
+
ORDER_COMBINED_SHIPMENT = 'order_combined_shipment',
|
|
1238
|
+
INTRANSIT_LABEL_EVENT = 'intransit_label_event',
|
|
1239
|
+
SHIPPING_NOTIFICATION = 'shipping_notification',
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1202
1242
|
export enum ManualReviewRuleStatus {
|
|
1203
1243
|
ACTIVE = 'active',
|
|
1204
1244
|
ARCHIVED = 'archived',
|
|
@@ -1301,6 +1341,16 @@ export enum MatiasItemType {
|
|
|
1301
1341
|
DIGITAL = 'digital',
|
|
1302
1342
|
}
|
|
1303
1343
|
|
|
1344
|
+
export enum MichaelyanItemType {
|
|
1345
|
+
PHYSICAL = 'physical',
|
|
1346
|
+
DIGITAL = 'digital',
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
export enum MiljenkoItemType {
|
|
1350
|
+
PHYSICAL = 'physical',
|
|
1351
|
+
DIGITAL = 'digital',
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1304
1354
|
export enum MixedBagWeight {
|
|
1305
1355
|
LEAST_MIXED = '0',
|
|
1306
1356
|
PARTIALLY_MIXED = '1',
|
|
@@ -1377,6 +1427,7 @@ export enum OnboardingStateSource {
|
|
|
1377
1427
|
UNIT_TEST = 'unit_test',
|
|
1378
1428
|
API = 'api',
|
|
1379
1429
|
API_ACTIVATION = 'api_activation',
|
|
1430
|
+
API_REJECT = 'api_reject',
|
|
1380
1431
|
AUDIT_AUTO_ACTIVATION = 'audit_auto_activation',
|
|
1381
1432
|
API_DEACTIVATION = 'api_deactivation',
|
|
1382
1433
|
API_SANDBOX_SETUP = 'api_sandbox_setup',
|
|
@@ -1643,11 +1694,15 @@ export enum ReportStatus {
|
|
|
1643
1694
|
|
|
1644
1695
|
export enum ReportType {
|
|
1645
1696
|
SALES_RECORD = 'sales_record',
|
|
1697
|
+
REFUND_RECORD = 'refund_record',
|
|
1698
|
+
OTHER_RECORD = 'other_record',
|
|
1699
|
+
PENDING_RECORD = 'pending_record',
|
|
1646
1700
|
TRUEUP_OVERVIEW = 'trueup_overview',
|
|
1647
1701
|
NON_CHANNEL_PAYMENT_BANK_ACCOUNT = 'non_channel_payment_bank_account',
|
|
1648
1702
|
SCHEDULED_PAYMENT = 'scheduled_payment',
|
|
1649
1703
|
ACCOUNT_QUARTERLY_BALANCES = 'account_quarterly_balances',
|
|
1650
1704
|
INVARIANTS = 'invariants',
|
|
1705
|
+
PAYMENTS = 'payments',
|
|
1651
1706
|
}
|
|
1652
1707
|
|
|
1653
1708
|
export enum ReportingFulfillmentIsVirtual {
|
|
@@ -1706,11 +1761,6 @@ export enum RiskEvaluation {
|
|
|
1706
1761
|
NONE = 'none',
|
|
1707
1762
|
}
|
|
1708
1763
|
|
|
1709
|
-
export enum Scope {
|
|
1710
|
-
ORGANIZATION = 'organization',
|
|
1711
|
-
GLOBAL = 'global',
|
|
1712
|
-
}
|
|
1713
|
-
|
|
1714
1764
|
export enum SerialReservationError {
|
|
1715
1765
|
DURATION_TOO_LONG = 'duration_too_long',
|
|
1716
1766
|
ITEMS_NOT_FOUND = 'items_not_found',
|
|
@@ -1836,12 +1886,6 @@ export enum ShrutiDemoType {
|
|
|
1836
1886
|
PHYSICAL = 'physical',
|
|
1837
1887
|
}
|
|
1838
1888
|
|
|
1839
|
-
export enum SignificanceAction {
|
|
1840
|
-
END_AND_IMPLEMENT_WINNER = 'end_and_implement_winner',
|
|
1841
|
-
END_AND_REVERT = 'end_and_revert',
|
|
1842
|
-
DO_NOTHING = 'do_nothing',
|
|
1843
|
-
}
|
|
1844
|
-
|
|
1845
1889
|
export enum SimpleRoundingStrategy {
|
|
1846
1890
|
NO_ROUNDING = 'no_rounding',
|
|
1847
1891
|
CURRENCY_PRECISION = 'currency_precision',
|
|
@@ -1878,14 +1922,6 @@ export enum StatisticType {
|
|
|
1878
1922
|
RATE_FRESHNESS = 'rate-freshness',
|
|
1879
1923
|
}
|
|
1880
1924
|
|
|
1881
|
-
export enum Status {
|
|
1882
|
-
DRAFT = 'draft',
|
|
1883
|
-
SCHEDULED = 'scheduled',
|
|
1884
|
-
LIVE = 'live',
|
|
1885
|
-
ENDED = 'ended',
|
|
1886
|
-
ARCHIVED = 'archived',
|
|
1887
|
-
}
|
|
1888
|
-
|
|
1889
1925
|
export enum SubscriptionFrequency {
|
|
1890
1926
|
YEARLY = 'yearly',
|
|
1891
1927
|
MONTHLY = 'monthly',
|
|
@@ -1921,6 +1957,13 @@ export enum TaskProcessorKey {
|
|
|
1921
1957
|
CENTER_DEFAULTS = 'center_defaults',
|
|
1922
1958
|
}
|
|
1923
1959
|
|
|
1960
|
+
export enum TaxAndDutyInclusivitySetting {
|
|
1961
|
+
DUTY_EXCLUSIVE_TAX_EXCLUSIVE = 'duty_exclusive_tax_exclusive',
|
|
1962
|
+
DUTY_INCLUSIVE_TAX_EXCLUSIVE = 'duty_inclusive_tax_exclusive',
|
|
1963
|
+
DUTY_EXCLUSIVE_TAX_INCLUSIVE = 'duty_exclusive_tax_inclusive',
|
|
1964
|
+
DUTY_INCLUSIVE_TAX_INCLUSIVE = 'duty_inclusive_tax_inclusive',
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1924
1967
|
export enum TaxCalculationErrorCode {
|
|
1925
1968
|
GENERIC_ERROR = 'generic_error',
|
|
1926
1969
|
OUTSIDE_OF_JURISDICTION = 'outside_of_jurisdiction',
|
|
@@ -1939,11 +1982,9 @@ export enum TaxTransactionType {
|
|
|
1939
1982
|
TAX = 'tax',
|
|
1940
1983
|
}
|
|
1941
1984
|
|
|
1942
|
-
export enum
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
MONTHLY = 'monthly',
|
|
1946
|
-
YEARLY = 'yearly',
|
|
1985
|
+
export enum ThiagoItemType {
|
|
1986
|
+
DIGITAL = 'digital',
|
|
1987
|
+
PHYSICAL = 'physical',
|
|
1947
1988
|
}
|
|
1948
1989
|
|
|
1949
1990
|
export enum TrackingIntegrationType {
|