@flowio/api-constants 2.13.54 → 2.13.56
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 +15 -3
- package/dist/api.js +12 -0
- package/package.json +2 -2
- package/src/api.ts +12 -0
package/dist/api.d.ts
CHANGED
|
@@ -479,6 +479,8 @@ export declare enum EventType {
|
|
|
479
479
|
NOTIFICATION_DELETED_V_2 = "notification_deleted_v2",
|
|
480
480
|
MANIFESTED_LABEL_UPSERTED = "manifested_label_upserted",
|
|
481
481
|
MANIFESTED_LABEL_DELETED = "manifested_label_deleted",
|
|
482
|
+
LABEL_PROCESSING_MODIFICATION_UPSERTED = "label_processing_modification_upserted",
|
|
483
|
+
LABEL_PROCESSING_MODIFICATION_DELETED = "label_processing_modification_deleted",
|
|
482
484
|
LOCAL_ITEM_UPSERTED = "local_item_upserted",
|
|
483
485
|
LOCAL_ITEM_DELETED = "local_item_deleted",
|
|
484
486
|
MERCHANT_APPLICATION_UPSERTED = "merchant_application_upserted",
|
|
@@ -1518,6 +1520,8 @@ export declare enum TransactionSource {
|
|
|
1518
1520
|
SHIPPING_LABEL_SERVICE = "shipping_label_service",
|
|
1519
1521
|
SHIPPING_LABEL_REVENUE_SHARE = "shipping_label_revenue_share",
|
|
1520
1522
|
TRUEUP = "trueup",
|
|
1523
|
+
TRUEUP_BASE = "trueup_base",
|
|
1524
|
+
TRUEUP_SURCHARGE = "trueup_surcharge",
|
|
1521
1525
|
CARRIER_CHARGE = "carrier_charge",
|
|
1522
1526
|
CARRIER_CHARGE_REVENUE_SHARE = "carrier_charge_revenue_share",
|
|
1523
1527
|
PLATFORM_FEE = "platform_fee",
|
|
@@ -1530,13 +1534,15 @@ export declare enum TransactionSource {
|
|
|
1530
1534
|
CHANNEL_BILLED = "channel_billed",
|
|
1531
1535
|
ORDER_SERVICE = "order_service",
|
|
1532
1536
|
VIRTUAL_CARD_CAPTURE = "virtual_card_capture",
|
|
1533
|
-
VIRTUAL_CARD_REFUND = "virtual_card_refund"
|
|
1537
|
+
VIRTUAL_CARD_REFUND = "virtual_card_refund",
|
|
1538
|
+
FAILED_PAYOUT = "failed_payout"
|
|
1534
1539
|
}
|
|
1535
1540
|
export declare enum TrueupSource {
|
|
1536
1541
|
FLOW = "flow",
|
|
1537
1542
|
CHANNEL = "channel",
|
|
1538
1543
|
DHL_PARCEL = "dhl-parcel",
|
|
1539
|
-
DHL = "dhl"
|
|
1544
|
+
DHL = "dhl",
|
|
1545
|
+
UPS = "ups"
|
|
1540
1546
|
}
|
|
1541
1547
|
export declare enum TrueupSurchargeType {
|
|
1542
1548
|
FUEL = "fuel",
|
|
@@ -1549,7 +1555,13 @@ export declare enum TrueupSurchargeType {
|
|
|
1549
1555
|
SECURITY = "security",
|
|
1550
1556
|
EEI_FILING = "eei_filing",
|
|
1551
1557
|
FIXED_DDP = "fixed_ddp",
|
|
1552
|
-
FIXED_CURRENCY_CONVERSION = "fixed_currency_conversion"
|
|
1558
|
+
FIXED_CURRENCY_CONVERSION = "fixed_currency_conversion",
|
|
1559
|
+
PROHIBITED_ITEM = "prohibited_item",
|
|
1560
|
+
UNDELIVERABLE_SHIPMENT = "undeliverable_shipment",
|
|
1561
|
+
SIGNATURE_REQUIRED = "signature_required",
|
|
1562
|
+
DIRECT_DELIVERY = "direct_delivery",
|
|
1563
|
+
SATURDAY_STOP = "saturday_stop",
|
|
1564
|
+
RESIDENTIAL_EXTENDED_AREA_PICKUP = "residential_extended_area_pickup"
|
|
1553
1565
|
}
|
|
1554
1566
|
export declare enum UnitOfLength {
|
|
1555
1567
|
MILLIMETER = "millimeter",
|
package/dist/api.js
CHANGED
|
@@ -542,6 +542,8 @@ var EventType;
|
|
|
542
542
|
EventType["NOTIFICATION_DELETED_V_2"] = "notification_deleted_v2";
|
|
543
543
|
EventType["MANIFESTED_LABEL_UPSERTED"] = "manifested_label_upserted";
|
|
544
544
|
EventType["MANIFESTED_LABEL_DELETED"] = "manifested_label_deleted";
|
|
545
|
+
EventType["LABEL_PROCESSING_MODIFICATION_UPSERTED"] = "label_processing_modification_upserted";
|
|
546
|
+
EventType["LABEL_PROCESSING_MODIFICATION_DELETED"] = "label_processing_modification_deleted";
|
|
545
547
|
EventType["LOCAL_ITEM_UPSERTED"] = "local_item_upserted";
|
|
546
548
|
EventType["LOCAL_ITEM_DELETED"] = "local_item_deleted";
|
|
547
549
|
EventType["MERCHANT_APPLICATION_UPSERTED"] = "merchant_application_upserted";
|
|
@@ -1728,6 +1730,8 @@ var TransactionSource;
|
|
|
1728
1730
|
TransactionSource["SHIPPING_LABEL_SERVICE"] = "shipping_label_service";
|
|
1729
1731
|
TransactionSource["SHIPPING_LABEL_REVENUE_SHARE"] = "shipping_label_revenue_share";
|
|
1730
1732
|
TransactionSource["TRUEUP"] = "trueup";
|
|
1733
|
+
TransactionSource["TRUEUP_BASE"] = "trueup_base";
|
|
1734
|
+
TransactionSource["TRUEUP_SURCHARGE"] = "trueup_surcharge";
|
|
1731
1735
|
TransactionSource["CARRIER_CHARGE"] = "carrier_charge";
|
|
1732
1736
|
TransactionSource["CARRIER_CHARGE_REVENUE_SHARE"] = "carrier_charge_revenue_share";
|
|
1733
1737
|
TransactionSource["PLATFORM_FEE"] = "platform_fee";
|
|
@@ -1741,6 +1745,7 @@ var TransactionSource;
|
|
|
1741
1745
|
TransactionSource["ORDER_SERVICE"] = "order_service";
|
|
1742
1746
|
TransactionSource["VIRTUAL_CARD_CAPTURE"] = "virtual_card_capture";
|
|
1743
1747
|
TransactionSource["VIRTUAL_CARD_REFUND"] = "virtual_card_refund";
|
|
1748
|
+
TransactionSource["FAILED_PAYOUT"] = "failed_payout";
|
|
1744
1749
|
})(TransactionSource = exports.TransactionSource || (exports.TransactionSource = {}));
|
|
1745
1750
|
var TrueupSource;
|
|
1746
1751
|
(function (TrueupSource) {
|
|
@@ -1748,6 +1753,7 @@ var TrueupSource;
|
|
|
1748
1753
|
TrueupSource["CHANNEL"] = "channel";
|
|
1749
1754
|
TrueupSource["DHL_PARCEL"] = "dhl-parcel";
|
|
1750
1755
|
TrueupSource["DHL"] = "dhl";
|
|
1756
|
+
TrueupSource["UPS"] = "ups";
|
|
1751
1757
|
})(TrueupSource = exports.TrueupSource || (exports.TrueupSource = {}));
|
|
1752
1758
|
var TrueupSurchargeType;
|
|
1753
1759
|
(function (TrueupSurchargeType) {
|
|
@@ -1762,6 +1768,12 @@ var TrueupSurchargeType;
|
|
|
1762
1768
|
TrueupSurchargeType["EEI_FILING"] = "eei_filing";
|
|
1763
1769
|
TrueupSurchargeType["FIXED_DDP"] = "fixed_ddp";
|
|
1764
1770
|
TrueupSurchargeType["FIXED_CURRENCY_CONVERSION"] = "fixed_currency_conversion";
|
|
1771
|
+
TrueupSurchargeType["PROHIBITED_ITEM"] = "prohibited_item";
|
|
1772
|
+
TrueupSurchargeType["UNDELIVERABLE_SHIPMENT"] = "undeliverable_shipment";
|
|
1773
|
+
TrueupSurchargeType["SIGNATURE_REQUIRED"] = "signature_required";
|
|
1774
|
+
TrueupSurchargeType["DIRECT_DELIVERY"] = "direct_delivery";
|
|
1775
|
+
TrueupSurchargeType["SATURDAY_STOP"] = "saturday_stop";
|
|
1776
|
+
TrueupSurchargeType["RESIDENTIAL_EXTENDED_AREA_PICKUP"] = "residential_extended_area_pickup";
|
|
1765
1777
|
})(TrueupSurchargeType = exports.TrueupSurchargeType || (exports.TrueupSurchargeType = {}));
|
|
1766
1778
|
var UnitOfLength;
|
|
1767
1779
|
(function (UnitOfLength) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-constants",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.56",
|
|
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": "15b5319239e2dc57a7ee0b2171f4f54fc4172c16"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -534,6 +534,8 @@ export enum EventType {
|
|
|
534
534
|
NOTIFICATION_DELETED_V_2 = 'notification_deleted_v2',
|
|
535
535
|
MANIFESTED_LABEL_UPSERTED = 'manifested_label_upserted',
|
|
536
536
|
MANIFESTED_LABEL_DELETED = 'manifested_label_deleted',
|
|
537
|
+
LABEL_PROCESSING_MODIFICATION_UPSERTED = 'label_processing_modification_upserted',
|
|
538
|
+
LABEL_PROCESSING_MODIFICATION_DELETED = 'label_processing_modification_deleted',
|
|
537
539
|
LOCAL_ITEM_UPSERTED = 'local_item_upserted',
|
|
538
540
|
LOCAL_ITEM_DELETED = 'local_item_deleted',
|
|
539
541
|
MERCHANT_APPLICATION_UPSERTED = 'merchant_application_upserted',
|
|
@@ -1720,6 +1722,8 @@ export enum TransactionSource {
|
|
|
1720
1722
|
SHIPPING_LABEL_SERVICE = 'shipping_label_service',
|
|
1721
1723
|
SHIPPING_LABEL_REVENUE_SHARE = 'shipping_label_revenue_share',
|
|
1722
1724
|
TRUEUP = 'trueup',
|
|
1725
|
+
TRUEUP_BASE = 'trueup_base',
|
|
1726
|
+
TRUEUP_SURCHARGE = 'trueup_surcharge',
|
|
1723
1727
|
CARRIER_CHARGE = 'carrier_charge',
|
|
1724
1728
|
CARRIER_CHARGE_REVENUE_SHARE = 'carrier_charge_revenue_share',
|
|
1725
1729
|
PLATFORM_FEE = 'platform_fee',
|
|
@@ -1733,6 +1737,7 @@ export enum TransactionSource {
|
|
|
1733
1737
|
ORDER_SERVICE = 'order_service',
|
|
1734
1738
|
VIRTUAL_CARD_CAPTURE = 'virtual_card_capture',
|
|
1735
1739
|
VIRTUAL_CARD_REFUND = 'virtual_card_refund',
|
|
1740
|
+
FAILED_PAYOUT = 'failed_payout',
|
|
1736
1741
|
}
|
|
1737
1742
|
|
|
1738
1743
|
export enum TrueupSource {
|
|
@@ -1740,6 +1745,7 @@ export enum TrueupSource {
|
|
|
1740
1745
|
CHANNEL = 'channel',
|
|
1741
1746
|
DHL_PARCEL = 'dhl-parcel',
|
|
1742
1747
|
DHL = 'dhl',
|
|
1748
|
+
UPS = 'ups',
|
|
1743
1749
|
}
|
|
1744
1750
|
|
|
1745
1751
|
export enum TrueupSurchargeType {
|
|
@@ -1754,6 +1760,12 @@ export enum TrueupSurchargeType {
|
|
|
1754
1760
|
EEI_FILING = 'eei_filing',
|
|
1755
1761
|
FIXED_DDP = 'fixed_ddp',
|
|
1756
1762
|
FIXED_CURRENCY_CONVERSION = 'fixed_currency_conversion',
|
|
1763
|
+
PROHIBITED_ITEM = 'prohibited_item',
|
|
1764
|
+
UNDELIVERABLE_SHIPMENT = 'undeliverable_shipment',
|
|
1765
|
+
SIGNATURE_REQUIRED = 'signature_required',
|
|
1766
|
+
DIRECT_DELIVERY = 'direct_delivery',
|
|
1767
|
+
SATURDAY_STOP = 'saturday_stop',
|
|
1768
|
+
RESIDENTIAL_EXTENDED_AREA_PICKUP = 'residential_extended_area_pickup',
|
|
1757
1769
|
}
|
|
1758
1770
|
|
|
1759
1771
|
export enum UnitOfLength {
|