@flowio/api-constants 2.13.38 → 2.13.39
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.d.ts +41 -1
- package/dist/api.js +50 -3
- package/package.json +2 -2
- package/src/api.ts +47 -0
package/dist/api.d.ts
CHANGED
|
@@ -342,6 +342,7 @@ export declare enum Environment {
|
|
|
342
342
|
}
|
|
343
343
|
export declare enum EventType {
|
|
344
344
|
TEST_UPSERTED = "test_upserted",
|
|
345
|
+
GENERATE_LOAD = "generate_load",
|
|
345
346
|
TRANSACTION_UPSERTED = "transaction_upserted",
|
|
346
347
|
ORGANIZATION_TRANSACTION_UPSERTED = "organization_transaction_upserted",
|
|
347
348
|
ORGANIZATION_TRANSACTION_DELETED = "organization_transaction_deleted",
|
|
@@ -1000,6 +1001,10 @@ export declare enum OrganizationType {
|
|
|
1000
1001
|
STANDALONE = "standalone",
|
|
1001
1002
|
CHANNEL = "channel"
|
|
1002
1003
|
}
|
|
1004
|
+
export declare enum PackageDimensionsSource {
|
|
1005
|
+
PROVIDED = "provided",
|
|
1006
|
+
DIMENSIONS_ESTIMATED = "dimensions_estimated"
|
|
1007
|
+
}
|
|
1003
1008
|
export declare enum PaymentActionType {
|
|
1004
1009
|
REDIRECT = "redirect",
|
|
1005
1010
|
REDIRECT_GET = "redirect_get",
|
|
@@ -1125,6 +1130,11 @@ export declare enum PostalType {
|
|
|
1125
1130
|
POSTAL = "postal",
|
|
1126
1131
|
ZIP = "zip"
|
|
1127
1132
|
}
|
|
1133
|
+
export declare enum PreferredServiceSelectionStrategy {
|
|
1134
|
+
CALCULATED_RATE = "calculated_rate",
|
|
1135
|
+
FLAT_RATE = "flat_rate",
|
|
1136
|
+
CUSTOM_RATE = "custom_rate"
|
|
1137
|
+
}
|
|
1128
1138
|
export declare enum PriceAccuracy {
|
|
1129
1139
|
CALCULATED = "calculated",
|
|
1130
1140
|
ESTIMATED_FROM_PARTIAL_DESTINATION = "estimated_from_partial_destination"
|
|
@@ -1328,6 +1338,10 @@ export declare enum SortDirection {
|
|
|
1328
1338
|
export declare enum StatementAttachmentType {
|
|
1329
1339
|
CSV = "csv"
|
|
1330
1340
|
}
|
|
1341
|
+
export declare enum StoredMethodUsageStep {
|
|
1342
|
+
INITIAL = "initial",
|
|
1343
|
+
SUBSEQUENT = "subsequent"
|
|
1344
|
+
}
|
|
1331
1345
|
export declare enum Strategy {
|
|
1332
1346
|
RANGE = "range",
|
|
1333
1347
|
FROM = "from",
|
|
@@ -1455,6 +1469,14 @@ export declare enum TradeAgreementStatus {
|
|
|
1455
1469
|
SUPPORTED = "supported",
|
|
1456
1470
|
NOT_SUPPORTED = "not_supported"
|
|
1457
1471
|
}
|
|
1472
|
+
export declare enum TransactionPayoutPendingReason {
|
|
1473
|
+
WAITING_FOR_FULL_REFUND = "waiting_for_full_refund",
|
|
1474
|
+
WAITING_FOR_FULFILLMENT = "waiting_for_fulfillment",
|
|
1475
|
+
WAITING_FOR_IN_TRANSIT = "waiting_for_in_transit",
|
|
1476
|
+
WAITING_FOR_NEXT_PAYOUT_DATE = "waiting_for_next_payout_date",
|
|
1477
|
+
EXTERNAL_FULFILLMENT_MISSING_TRACKING_INFO = "external_fulfillment_missing_tracking_info",
|
|
1478
|
+
WAITING_FOR_POSITIVE_ACCOUNT_BALANCE = "waiting_for_positive_account_balance"
|
|
1479
|
+
}
|
|
1458
1480
|
export declare enum TransactionSource {
|
|
1459
1481
|
CAPTURE = "capture",
|
|
1460
1482
|
REFUND = "refund",
|
|
@@ -1476,6 +1498,13 @@ export declare enum TransactionSource {
|
|
|
1476
1498
|
VIRTUAL_CARD_CAPTURE = "virtual_card_capture",
|
|
1477
1499
|
VIRTUAL_CARD_REFUND = "virtual_card_refund"
|
|
1478
1500
|
}
|
|
1501
|
+
export declare enum UnitOfLength {
|
|
1502
|
+
MILLIMETER = "millimeter",
|
|
1503
|
+
CENTIMETER = "centimeter",
|
|
1504
|
+
INCH = "inch",
|
|
1505
|
+
FOOT = "foot",
|
|
1506
|
+
METER = "meter"
|
|
1507
|
+
}
|
|
1479
1508
|
export declare enum UnitOfMeasurement {
|
|
1480
1509
|
MILLIMETER = "millimeter",
|
|
1481
1510
|
CENTIMETER = "centimeter",
|
|
@@ -1497,6 +1526,16 @@ export declare enum UnitOfTime {
|
|
|
1497
1526
|
HOUR = "hour",
|
|
1498
1527
|
MINUTE = "minute"
|
|
1499
1528
|
}
|
|
1529
|
+
export declare enum UnitOfVolume {
|
|
1530
|
+
CUBIC_INCH = "cubic_inch",
|
|
1531
|
+
CUBIC_METER = "cubic_meter"
|
|
1532
|
+
}
|
|
1533
|
+
export declare enum UnitOfWeight {
|
|
1534
|
+
GRAM = "gram",
|
|
1535
|
+
KILOGRAM = "kilogram",
|
|
1536
|
+
OUNCE = "ounce",
|
|
1537
|
+
POUND = "pound"
|
|
1538
|
+
}
|
|
1500
1539
|
export declare enum UpdatePolicy {
|
|
1501
1540
|
AUTO = "auto",
|
|
1502
1541
|
QUEUE = "queue",
|
|
@@ -1521,7 +1560,8 @@ export declare enum Visibility {
|
|
|
1521
1560
|
export declare enum WebhookStatus {
|
|
1522
1561
|
PENDING = "pending",
|
|
1523
1562
|
SUCCESS = "success",
|
|
1524
|
-
FAILURE = "failure"
|
|
1563
|
+
FAILURE = "failure",
|
|
1564
|
+
IGNORED = "ignored"
|
|
1525
1565
|
}
|
|
1526
1566
|
export declare enum WithholdingDeductionType {
|
|
1527
1567
|
TAX = "tax",
|
package/dist/api.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DutyItemApprovalStatus = exports.DiscountTarget = exports.DiscountRuleSubsidyTarget = exports.DiscountRuleStatus = exports.Direction = exports.DeliveryWindowLocation = exports.DeliveryWindowComponentSource = exports.DeliveryOptionCostDetailSource = exports.DeliveryOptionCostDetailComponentKey = exports.DeliveredDutyDisplayType = exports.DeliveredDuty = exports.DayOfWeek = exports.CvvResultCode = exports.CvvCode = exports.CustomerAddressType = exports.CurrencySymbolFormat = exports.CurrencyLabelFormatter = exports.CreditPaymentErrorCode = exports.CountryPickerSource = exports.CostEstimateSource = exports.ConsumerInvoiceStatus = exports.ConsumerInvoiceDocumentType = exports.ConsumerInvoiceCustomerType = exports.ChannelCurrencyCapability = exports.ChangeType = exports.CenterCapability = exports.CardType = exports.CardErrorCode = exports.CaptureStatus = exports.CaptureDeclineCode = exports.Capability = exports.CancelReason = exports.Calendar = exports.B2BInvoiceType = exports.AvsCode = exports.AvailableFilterFormat = exports.AvailabilityStatus = exports.AuthorizationStatus = exports.AuthorizationResultActionType = exports.AuthorizationOption = exports.AuthorizationDeclineCode = exports.AuthenticationTechnique = exports.AttributeIntent = exports.AttributeDataType = exports.Aggregate = exports.AdjustmentReasonKey = exports.AddressVerificationResultFieldCode = exports.AddressFieldName = exports.AbandonedOrderSettingStatus = exports.AbandonedOrderPromotionStatus = void 0;
|
|
4
4
|
exports.MeasurementSystem = exports.MarginType = exports.LogisticsFormatPreference = exports.LocationErrorCode = exports.LevyStrategy = exports.LevyInclusion = exports.LevyComponent = exports.LaneStrategy = exports.LanePreselectPreference = exports.LaneDirection = exports.LabelTriggerMethod = exports.LabelRequestMethod = exports.ItemIdentifier = exports.ItemAvailabilityStatus = exports.InvitationErrorCode = exports.InventoryStatus = exports.InputSpecificationType = exports.InlineWindowViewportSize = exports.Incoterm = exports.IncludedLevyKey = exports.ImportType = exports.ImageTag = exports.HolidayCalendar = exports.GoodsSupply = exports.GenericErrorCode = exports.FulfillmentRouting = exports.FulfillmentMethodValue = exports.FulfillmentMethodType = exports.FulfillmentItemQuantityStatus = exports.FtpFileSource = exports.FraudStatus = exports.FraudLiability = exports.FraudEmailRuleDecision = exports.FlowRole = exports.FlowEntity = exports.FlowBehavior = exports.FeeDeductionType = exports.ExporterOfRecord = exports.ExportStatus = exports.ExperienceStatus = exports.ExperiencePaymentMethodTag = exports.ExperienceCountryStatus = exports.ExperienceCloneStatus = exports.ExclusionRuleState = exports.ExceptionType = exports.EventType = exports.Environment = exports.EntityIdentifierType = exports.EconomicTitleLocation = exports.EcommercePlatformType = void 0;
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.ZeroLevyReasonCode = exports.ZeroAmountIndicator = exports.WithholdingDeductionType = exports.WebhookStatus = exports.Visibility = exports.ValueAddedService = exports.UserStatus = exports.UpdateType = void 0;
|
|
5
|
+
exports.PriceFacetBoundary = exports.PriceDetailKey = exports.PriceDetailComponentKey = exports.PriceBookStatus = exports.PriceAccuracy = exports.PreferredServiceSelectionStrategy = exports.PostalType = exports.PhysicalDeliverySpecialSerivce = exports.PermittedHttpMethod = exports.PayoutStatusFailureCode = exports.PayoutAttachmentType = exports.PaymentType = exports.PaymentStatus = exports.PaymentSourceConfirmationActionType = exports.PaymentRequestReviewStatus = exports.PaymentRequestReviewCheckType = exports.PaymentRequestReviewCheckStatus = exports.PaymentMethodType = exports.PaymentMethodRuleContentKey = exports.PaymentMethodDataOptionType = exports.PaymentMethodCapability = exports.PaymentFailureCode = exports.PaymentErrorCode = exports.PaymentActionType = exports.PackageDimensionsSource = exports.OrganizationType = exports.OrganizationStatus = exports.OrganizationPaymentMethodTag = exports.OrderType = exports.OrderStorage = exports.OrderStatus = exports.OrderRefundSummaryPartialCharged = exports.OrderRefundSummaryIncludes = exports.OrderQuoteLineErrorCode = exports.OrderQuoteErrorCode = exports.OrderQuoteAddressType = exports.OrderPriceDetailKey = exports.OrderPriceDetailComponentKey = exports.OrderPaymentType = exports.OrderMerchantOfRecord = exports.OrderErrorCode = exports.OrderChangeSource = exports.OptinResponseType = exports.OnboardingTradeSector = exports.OnboardingBlockedReason = exports.OnboardingApplicationStatus = exports.Method = exports.MerchantRejectedReason = exports.MerchantOfRecord = exports.MerchantGiftCardErrorCode = void 0;
|
|
6
|
+
exports.TransactionPayoutPendingReason = exports.TradeAgreementStatus = exports.TradeAgreementName = exports.TrackingStatus = exports.TrackingNumberType = exports.TokenType = exports.TierStrategy = exports.TierEstimateType = exports.TierAvailability = exports.ThreedsTwoChallengeViewport = exports.ThreeDSecureCode = exports.TaxabilityValue = exports.TaxabilityType = exports.TaxVerificationResult = exports.TaxReportType = exports.TaxDutyCalculatorValidationErrorCode = exports.TaxApplicability = exports.SyncUnitOfTime = exports.SyncStreamType = exports.SyncRecordFailureReason = exports.SurchargeResponsibleParty = exports.SubcatalogItemStatus = exports.Strategy = exports.StoredMethodUsageStep = exports.StatementAttachmentType = exports.SortDirection = exports.ShopifySyncCheck = exports.ShopifyLocalizationMethod = exports.ShopifyGrant = exports.ShippingConfigurationType = exports.ShipmentRecipient = exports.ShipmentIntegrationType = exports.ScheduleExceptionStatus = exports.RoundingType = exports.RoundingMethod = exports.Role = exports.ReversalStatus = exports.ReversalErrorCode = exports.ReturnTrackingStatus = exports.ReturnStatus = exports.ReturnPolicyState = exports.ReturnItemStatus = exports.RegionType = exports.RefundStatus = exports.RefundDeclineCode = exports.RatecardOwner = exports.QuoteErrorCode = exports.ProvinceType = exports.PromotionTriggerType = exports.PricingLevySetting = void 0;
|
|
7
|
+
exports.ZeroLevyReasonCode = exports.ZeroAmountIndicator = exports.WithholdingDeductionType = exports.WebhookStatus = exports.Visibility = exports.ValueAddedService = exports.UserStatus = exports.UpdateType = exports.UpdatePolicy = exports.UnitOfWeight = exports.UnitOfVolume = exports.UnitOfTime = exports.UnitOfMeasurement = exports.UnitOfLength = exports.TransactionSource = void 0;
|
|
8
8
|
var AbandonedOrderPromotionStatus;
|
|
9
9
|
(function (AbandonedOrderPromotionStatus) {
|
|
10
10
|
AbandonedOrderPromotionStatus["ACTIVE"] = "active";
|
|
@@ -404,6 +404,7 @@ var Environment;
|
|
|
404
404
|
var EventType;
|
|
405
405
|
(function (EventType) {
|
|
406
406
|
EventType["TEST_UPSERTED"] = "test_upserted";
|
|
407
|
+
EventType["GENERATE_LOAD"] = "generate_load";
|
|
407
408
|
EventType["TRANSACTION_UPSERTED"] = "transaction_upserted";
|
|
408
409
|
EventType["ORGANIZATION_TRANSACTION_UPSERTED"] = "organization_transaction_upserted";
|
|
409
410
|
EventType["ORGANIZATION_TRANSACTION_DELETED"] = "organization_transaction_deleted";
|
|
@@ -1132,6 +1133,11 @@ var OrganizationType;
|
|
|
1132
1133
|
OrganizationType["STANDALONE"] = "standalone";
|
|
1133
1134
|
OrganizationType["CHANNEL"] = "channel";
|
|
1134
1135
|
})(OrganizationType = exports.OrganizationType || (exports.OrganizationType = {}));
|
|
1136
|
+
var PackageDimensionsSource;
|
|
1137
|
+
(function (PackageDimensionsSource) {
|
|
1138
|
+
PackageDimensionsSource["PROVIDED"] = "provided";
|
|
1139
|
+
PackageDimensionsSource["DIMENSIONS_ESTIMATED"] = "dimensions_estimated";
|
|
1140
|
+
})(PackageDimensionsSource = exports.PackageDimensionsSource || (exports.PackageDimensionsSource = {}));
|
|
1135
1141
|
var PaymentActionType;
|
|
1136
1142
|
(function (PaymentActionType) {
|
|
1137
1143
|
PaymentActionType["REDIRECT"] = "redirect";
|
|
@@ -1275,6 +1281,12 @@ var PostalType;
|
|
|
1275
1281
|
PostalType["POSTAL"] = "postal";
|
|
1276
1282
|
PostalType["ZIP"] = "zip";
|
|
1277
1283
|
})(PostalType = exports.PostalType || (exports.PostalType = {}));
|
|
1284
|
+
var PreferredServiceSelectionStrategy;
|
|
1285
|
+
(function (PreferredServiceSelectionStrategy) {
|
|
1286
|
+
PreferredServiceSelectionStrategy["CALCULATED_RATE"] = "calculated_rate";
|
|
1287
|
+
PreferredServiceSelectionStrategy["FLAT_RATE"] = "flat_rate";
|
|
1288
|
+
PreferredServiceSelectionStrategy["CUSTOM_RATE"] = "custom_rate";
|
|
1289
|
+
})(PreferredServiceSelectionStrategy = exports.PreferredServiceSelectionStrategy || (exports.PreferredServiceSelectionStrategy = {}));
|
|
1278
1290
|
var PriceAccuracy;
|
|
1279
1291
|
(function (PriceAccuracy) {
|
|
1280
1292
|
PriceAccuracy["CALCULATED"] = "calculated";
|
|
@@ -1509,6 +1521,11 @@ var StatementAttachmentType;
|
|
|
1509
1521
|
(function (StatementAttachmentType) {
|
|
1510
1522
|
StatementAttachmentType["CSV"] = "csv";
|
|
1511
1523
|
})(StatementAttachmentType = exports.StatementAttachmentType || (exports.StatementAttachmentType = {}));
|
|
1524
|
+
var StoredMethodUsageStep;
|
|
1525
|
+
(function (StoredMethodUsageStep) {
|
|
1526
|
+
StoredMethodUsageStep["INITIAL"] = "initial";
|
|
1527
|
+
StoredMethodUsageStep["SUBSEQUENT"] = "subsequent";
|
|
1528
|
+
})(StoredMethodUsageStep = exports.StoredMethodUsageStep || (exports.StoredMethodUsageStep = {}));
|
|
1512
1529
|
var Strategy;
|
|
1513
1530
|
(function (Strategy) {
|
|
1514
1531
|
Strategy["RANGE"] = "range";
|
|
@@ -1658,6 +1675,15 @@ var TradeAgreementStatus;
|
|
|
1658
1675
|
TradeAgreementStatus["SUPPORTED"] = "supported";
|
|
1659
1676
|
TradeAgreementStatus["NOT_SUPPORTED"] = "not_supported";
|
|
1660
1677
|
})(TradeAgreementStatus = exports.TradeAgreementStatus || (exports.TradeAgreementStatus = {}));
|
|
1678
|
+
var TransactionPayoutPendingReason;
|
|
1679
|
+
(function (TransactionPayoutPendingReason) {
|
|
1680
|
+
TransactionPayoutPendingReason["WAITING_FOR_FULL_REFUND"] = "waiting_for_full_refund";
|
|
1681
|
+
TransactionPayoutPendingReason["WAITING_FOR_FULFILLMENT"] = "waiting_for_fulfillment";
|
|
1682
|
+
TransactionPayoutPendingReason["WAITING_FOR_IN_TRANSIT"] = "waiting_for_in_transit";
|
|
1683
|
+
TransactionPayoutPendingReason["WAITING_FOR_NEXT_PAYOUT_DATE"] = "waiting_for_next_payout_date";
|
|
1684
|
+
TransactionPayoutPendingReason["EXTERNAL_FULFILLMENT_MISSING_TRACKING_INFO"] = "external_fulfillment_missing_tracking_info";
|
|
1685
|
+
TransactionPayoutPendingReason["WAITING_FOR_POSITIVE_ACCOUNT_BALANCE"] = "waiting_for_positive_account_balance";
|
|
1686
|
+
})(TransactionPayoutPendingReason = exports.TransactionPayoutPendingReason || (exports.TransactionPayoutPendingReason = {}));
|
|
1661
1687
|
var TransactionSource;
|
|
1662
1688
|
(function (TransactionSource) {
|
|
1663
1689
|
TransactionSource["CAPTURE"] = "capture";
|
|
@@ -1680,6 +1706,14 @@ var TransactionSource;
|
|
|
1680
1706
|
TransactionSource["VIRTUAL_CARD_CAPTURE"] = "virtual_card_capture";
|
|
1681
1707
|
TransactionSource["VIRTUAL_CARD_REFUND"] = "virtual_card_refund";
|
|
1682
1708
|
})(TransactionSource = exports.TransactionSource || (exports.TransactionSource = {}));
|
|
1709
|
+
var UnitOfLength;
|
|
1710
|
+
(function (UnitOfLength) {
|
|
1711
|
+
UnitOfLength["MILLIMETER"] = "millimeter";
|
|
1712
|
+
UnitOfLength["CENTIMETER"] = "centimeter";
|
|
1713
|
+
UnitOfLength["INCH"] = "inch";
|
|
1714
|
+
UnitOfLength["FOOT"] = "foot";
|
|
1715
|
+
UnitOfLength["METER"] = "meter";
|
|
1716
|
+
})(UnitOfLength = exports.UnitOfLength || (exports.UnitOfLength = {}));
|
|
1683
1717
|
var UnitOfMeasurement;
|
|
1684
1718
|
(function (UnitOfMeasurement) {
|
|
1685
1719
|
UnitOfMeasurement["MILLIMETER"] = "millimeter";
|
|
@@ -1703,6 +1737,18 @@ var UnitOfTime;
|
|
|
1703
1737
|
UnitOfTime["HOUR"] = "hour";
|
|
1704
1738
|
UnitOfTime["MINUTE"] = "minute";
|
|
1705
1739
|
})(UnitOfTime = exports.UnitOfTime || (exports.UnitOfTime = {}));
|
|
1740
|
+
var UnitOfVolume;
|
|
1741
|
+
(function (UnitOfVolume) {
|
|
1742
|
+
UnitOfVolume["CUBIC_INCH"] = "cubic_inch";
|
|
1743
|
+
UnitOfVolume["CUBIC_METER"] = "cubic_meter";
|
|
1744
|
+
})(UnitOfVolume = exports.UnitOfVolume || (exports.UnitOfVolume = {}));
|
|
1745
|
+
var UnitOfWeight;
|
|
1746
|
+
(function (UnitOfWeight) {
|
|
1747
|
+
UnitOfWeight["GRAM"] = "gram";
|
|
1748
|
+
UnitOfWeight["KILOGRAM"] = "kilogram";
|
|
1749
|
+
UnitOfWeight["OUNCE"] = "ounce";
|
|
1750
|
+
UnitOfWeight["POUND"] = "pound";
|
|
1751
|
+
})(UnitOfWeight = exports.UnitOfWeight || (exports.UnitOfWeight = {}));
|
|
1706
1752
|
var UpdatePolicy;
|
|
1707
1753
|
(function (UpdatePolicy) {
|
|
1708
1754
|
UpdatePolicy["AUTO"] = "auto";
|
|
@@ -1734,6 +1780,7 @@ var WebhookStatus;
|
|
|
1734
1780
|
WebhookStatus["PENDING"] = "pending";
|
|
1735
1781
|
WebhookStatus["SUCCESS"] = "success";
|
|
1736
1782
|
WebhookStatus["FAILURE"] = "failure";
|
|
1783
|
+
WebhookStatus["IGNORED"] = "ignored";
|
|
1737
1784
|
})(WebhookStatus = exports.WebhookStatus || (exports.WebhookStatus = {}));
|
|
1738
1785
|
var WithholdingDeductionType;
|
|
1739
1786
|
(function (WithholdingDeductionType) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-constants",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.39",
|
|
4
4
|
"description": "Definitions for enumerations found in the Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"postgenerate": "npm run format",
|
|
27
27
|
"prepublish": "npm run clean && npm run build"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "2ec4e55423f8c68d0d75db7df7825e96a4433e9b"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -396,6 +396,7 @@ export enum Environment {
|
|
|
396
396
|
|
|
397
397
|
export enum EventType {
|
|
398
398
|
TEST_UPSERTED = 'test_upserted',
|
|
399
|
+
GENERATE_LOAD = 'generate_load',
|
|
399
400
|
TRANSACTION_UPSERTED = 'transaction_upserted',
|
|
400
401
|
ORGANIZATION_TRANSACTION_UPSERTED = 'organization_transaction_upserted',
|
|
401
402
|
ORGANIZATION_TRANSACTION_DELETED = 'organization_transaction_deleted',
|
|
@@ -1125,6 +1126,11 @@ export enum OrganizationType {
|
|
|
1125
1126
|
CHANNEL = 'channel',
|
|
1126
1127
|
}
|
|
1127
1128
|
|
|
1129
|
+
export enum PackageDimensionsSource {
|
|
1130
|
+
PROVIDED = 'provided',
|
|
1131
|
+
DIMENSIONS_ESTIMATED = 'dimensions_estimated',
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1128
1134
|
export enum PaymentActionType {
|
|
1129
1135
|
REDIRECT = 'redirect',
|
|
1130
1136
|
REDIRECT_GET = 'redirect_get',
|
|
@@ -1268,6 +1274,12 @@ export enum PostalType {
|
|
|
1268
1274
|
ZIP = 'zip',
|
|
1269
1275
|
}
|
|
1270
1276
|
|
|
1277
|
+
export enum PreferredServiceSelectionStrategy {
|
|
1278
|
+
CALCULATED_RATE = 'calculated_rate',
|
|
1279
|
+
FLAT_RATE = 'flat_rate',
|
|
1280
|
+
CUSTOM_RATE = 'custom_rate',
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1271
1283
|
export enum PriceAccuracy {
|
|
1272
1284
|
CALCULATED = 'calculated',
|
|
1273
1285
|
ESTIMATED_FROM_PARTIAL_DESTINATION = 'estimated_from_partial_destination',
|
|
@@ -1502,6 +1514,11 @@ export enum StatementAttachmentType {
|
|
|
1502
1514
|
CSV = 'csv',
|
|
1503
1515
|
}
|
|
1504
1516
|
|
|
1517
|
+
export enum StoredMethodUsageStep {
|
|
1518
|
+
INITIAL = 'initial',
|
|
1519
|
+
SUBSEQUENT = 'subsequent',
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1505
1522
|
export enum Strategy {
|
|
1506
1523
|
RANGE = 'range',
|
|
1507
1524
|
FROM = 'from',
|
|
@@ -1651,6 +1668,15 @@ export enum TradeAgreementStatus {
|
|
|
1651
1668
|
NOT_SUPPORTED = 'not_supported',
|
|
1652
1669
|
}
|
|
1653
1670
|
|
|
1671
|
+
export enum TransactionPayoutPendingReason {
|
|
1672
|
+
WAITING_FOR_FULL_REFUND = 'waiting_for_full_refund',
|
|
1673
|
+
WAITING_FOR_FULFILLMENT = 'waiting_for_fulfillment',
|
|
1674
|
+
WAITING_FOR_IN_TRANSIT = 'waiting_for_in_transit',
|
|
1675
|
+
WAITING_FOR_NEXT_PAYOUT_DATE = 'waiting_for_next_payout_date',
|
|
1676
|
+
EXTERNAL_FULFILLMENT_MISSING_TRACKING_INFO = 'external_fulfillment_missing_tracking_info',
|
|
1677
|
+
WAITING_FOR_POSITIVE_ACCOUNT_BALANCE = 'waiting_for_positive_account_balance',
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1654
1680
|
export enum TransactionSource {
|
|
1655
1681
|
CAPTURE = 'capture',
|
|
1656
1682
|
REFUND = 'refund',
|
|
@@ -1673,6 +1699,14 @@ export enum TransactionSource {
|
|
|
1673
1699
|
VIRTUAL_CARD_REFUND = 'virtual_card_refund',
|
|
1674
1700
|
}
|
|
1675
1701
|
|
|
1702
|
+
export enum UnitOfLength {
|
|
1703
|
+
MILLIMETER = 'millimeter',
|
|
1704
|
+
CENTIMETER = 'centimeter',
|
|
1705
|
+
INCH = 'inch',
|
|
1706
|
+
FOOT = 'foot',
|
|
1707
|
+
METER = 'meter',
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1676
1710
|
export enum UnitOfMeasurement {
|
|
1677
1711
|
MILLIMETER = 'millimeter',
|
|
1678
1712
|
CENTIMETER = 'centimeter',
|
|
@@ -1696,6 +1730,18 @@ export enum UnitOfTime {
|
|
|
1696
1730
|
MINUTE = 'minute',
|
|
1697
1731
|
}
|
|
1698
1732
|
|
|
1733
|
+
export enum UnitOfVolume {
|
|
1734
|
+
CUBIC_INCH = 'cubic_inch',
|
|
1735
|
+
CUBIC_METER = 'cubic_meter',
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
export enum UnitOfWeight {
|
|
1739
|
+
GRAM = 'gram',
|
|
1740
|
+
KILOGRAM = 'kilogram',
|
|
1741
|
+
OUNCE = 'ounce',
|
|
1742
|
+
POUND = 'pound',
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1699
1745
|
export enum UpdatePolicy {
|
|
1700
1746
|
AUTO = 'auto',
|
|
1701
1747
|
QUEUE = 'queue',
|
|
@@ -1726,6 +1772,7 @@ export enum WebhookStatus {
|
|
|
1726
1772
|
PENDING = 'pending',
|
|
1727
1773
|
SUCCESS = 'success',
|
|
1728
1774
|
FAILURE = 'failure',
|
|
1775
|
+
IGNORED = 'ignored',
|
|
1729
1776
|
}
|
|
1730
1777
|
|
|
1731
1778
|
export enum WithholdingDeductionType {
|