@flowio/api-internal-constants 4.18.52 → 4.18.53
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 +3 -4
- package/dist/api-internal.js +3 -4
- package/package.json +2 -2
- package/src/api-internal.ts +3 -4
package/dist/api-internal.d.ts
CHANGED
|
@@ -1635,22 +1635,21 @@ export declare enum PromptTarget {
|
|
|
1635
1635
|
}
|
|
1636
1636
|
export declare enum QueuedRecordType {
|
|
1637
1637
|
CAPTURE = "capture",
|
|
1638
|
-
CAPTURE_DELETION = "capture_deletion",
|
|
1639
1638
|
CHANNEL_TRANSACTION = "channel_transaction",
|
|
1640
1639
|
CONSUMER_INVOICE = "consumer_invoice",
|
|
1641
1640
|
FULFILLMENT_IN_TRANSIT = "fulfillment_in_transit",
|
|
1642
1641
|
FULFILLMENT_SHIPPING_NOTIFICATION = "fulfillment_shipping_notification",
|
|
1643
1642
|
FULFILLMENT_EXTERNAL = "fulfillment_external",
|
|
1643
|
+
FULFILLMENT_ORDER_CANCELLATION = "fulfillment_order_cancellation",
|
|
1644
1644
|
LABEL_TRACKING_SUMMARY = "label_tracking_summary",
|
|
1645
1645
|
LABEL_INVOICE_REQUEST = "label_invoice_request",
|
|
1646
|
-
|
|
1647
|
-
|
|
1646
|
+
CARRIER_CHARGE = "carrier_charge",
|
|
1647
|
+
CARRIER_CHARGE_FILE = "carrier_charge_file",
|
|
1648
1648
|
LABEL_ORIGIN = "label_origin",
|
|
1649
1649
|
ORDER = "order",
|
|
1650
1650
|
ORDER_IDENTIFIER = "order_identifier",
|
|
1651
1651
|
ORGANIZATION_ONBOARDING_STATE = "organization_onboarding_state",
|
|
1652
1652
|
REFUND = "refund",
|
|
1653
|
-
REFUND_DELETION = "refund_deletion",
|
|
1654
1653
|
REFUND_OVER_CAPTURE = "refund_over_capture",
|
|
1655
1654
|
SALES_RECORD = "sales_record",
|
|
1656
1655
|
STATEMENT_BATCH = "statement_batch",
|
package/dist/api-internal.js
CHANGED
|
@@ -1864,22 +1864,21 @@ var PromptTarget;
|
|
|
1864
1864
|
var QueuedRecordType;
|
|
1865
1865
|
(function (QueuedRecordType) {
|
|
1866
1866
|
QueuedRecordType["CAPTURE"] = "capture";
|
|
1867
|
-
QueuedRecordType["CAPTURE_DELETION"] = "capture_deletion";
|
|
1868
1867
|
QueuedRecordType["CHANNEL_TRANSACTION"] = "channel_transaction";
|
|
1869
1868
|
QueuedRecordType["CONSUMER_INVOICE"] = "consumer_invoice";
|
|
1870
1869
|
QueuedRecordType["FULFILLMENT_IN_TRANSIT"] = "fulfillment_in_transit";
|
|
1871
1870
|
QueuedRecordType["FULFILLMENT_SHIPPING_NOTIFICATION"] = "fulfillment_shipping_notification";
|
|
1872
1871
|
QueuedRecordType["FULFILLMENT_EXTERNAL"] = "fulfillment_external";
|
|
1872
|
+
QueuedRecordType["FULFILLMENT_ORDER_CANCELLATION"] = "fulfillment_order_cancellation";
|
|
1873
1873
|
QueuedRecordType["LABEL_TRACKING_SUMMARY"] = "label_tracking_summary";
|
|
1874
1874
|
QueuedRecordType["LABEL_INVOICE_REQUEST"] = "label_invoice_request";
|
|
1875
|
-
QueuedRecordType["
|
|
1876
|
-
QueuedRecordType["
|
|
1875
|
+
QueuedRecordType["CARRIER_CHARGE"] = "carrier_charge";
|
|
1876
|
+
QueuedRecordType["CARRIER_CHARGE_FILE"] = "carrier_charge_file";
|
|
1877
1877
|
QueuedRecordType["LABEL_ORIGIN"] = "label_origin";
|
|
1878
1878
|
QueuedRecordType["ORDER"] = "order";
|
|
1879
1879
|
QueuedRecordType["ORDER_IDENTIFIER"] = "order_identifier";
|
|
1880
1880
|
QueuedRecordType["ORGANIZATION_ONBOARDING_STATE"] = "organization_onboarding_state";
|
|
1881
1881
|
QueuedRecordType["REFUND"] = "refund";
|
|
1882
|
-
QueuedRecordType["REFUND_DELETION"] = "refund_deletion";
|
|
1883
1882
|
QueuedRecordType["REFUND_OVER_CAPTURE"] = "refund_over_capture";
|
|
1884
1883
|
QueuedRecordType["SALES_RECORD"] = "sales_record";
|
|
1885
1884
|
QueuedRecordType["STATEMENT_BATCH"] = "statement_batch";
|
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.53",
|
|
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": "2eaa54ec47aea1e42dad859077feb3852172583c"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -1855,22 +1855,21 @@ export enum PromptTarget {
|
|
|
1855
1855
|
|
|
1856
1856
|
export enum QueuedRecordType {
|
|
1857
1857
|
CAPTURE = 'capture',
|
|
1858
|
-
CAPTURE_DELETION = 'capture_deletion',
|
|
1859
1858
|
CHANNEL_TRANSACTION = 'channel_transaction',
|
|
1860
1859
|
CONSUMER_INVOICE = 'consumer_invoice',
|
|
1861
1860
|
FULFILLMENT_IN_TRANSIT = 'fulfillment_in_transit',
|
|
1862
1861
|
FULFILLMENT_SHIPPING_NOTIFICATION = 'fulfillment_shipping_notification',
|
|
1863
1862
|
FULFILLMENT_EXTERNAL = 'fulfillment_external',
|
|
1863
|
+
FULFILLMENT_ORDER_CANCELLATION = 'fulfillment_order_cancellation',
|
|
1864
1864
|
LABEL_TRACKING_SUMMARY = 'label_tracking_summary',
|
|
1865
1865
|
LABEL_INVOICE_REQUEST = 'label_invoice_request',
|
|
1866
|
-
|
|
1867
|
-
|
|
1866
|
+
CARRIER_CHARGE = 'carrier_charge',
|
|
1867
|
+
CARRIER_CHARGE_FILE = 'carrier_charge_file',
|
|
1868
1868
|
LABEL_ORIGIN = 'label_origin',
|
|
1869
1869
|
ORDER = 'order',
|
|
1870
1870
|
ORDER_IDENTIFIER = 'order_identifier',
|
|
1871
1871
|
ORGANIZATION_ONBOARDING_STATE = 'organization_onboarding_state',
|
|
1872
1872
|
REFUND = 'refund',
|
|
1873
|
-
REFUND_DELETION = 'refund_deletion',
|
|
1874
1873
|
REFUND_OVER_CAPTURE = 'refund_over_capture',
|
|
1875
1874
|
SALES_RECORD = 'sales_record',
|
|
1876
1875
|
STATEMENT_BATCH = 'statement_batch',
|