@flowio/api-internal-constants 4.18.16 → 4.18.18
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 +2 -0
- package/dist/api-internal.js +2 -0
- package/package.json +2 -2
- package/src/api-internal.ts +2 -0
package/dist/api-internal.d.ts
CHANGED
|
@@ -1057,6 +1057,7 @@ export declare enum LabelCreationStatus {
|
|
|
1057
1057
|
CANCELLED = "cancelled"
|
|
1058
1058
|
}
|
|
1059
1059
|
export declare enum LabelTransactionType {
|
|
1060
|
+
ADJUSTMENT = "adjustment",
|
|
1060
1061
|
BILLABLE_LABEL = "billable_label",
|
|
1061
1062
|
FEE = "fee",
|
|
1062
1063
|
REVENUE_SHARE = "revenue_share"
|
|
@@ -1187,6 +1188,7 @@ export declare enum OnboardingAuditThemeKey {
|
|
|
1187
1188
|
BILLING = "billing",
|
|
1188
1189
|
B_2_B_INVOICING = "b2b_invoicing",
|
|
1189
1190
|
CATALOG = "catalog",
|
|
1191
|
+
CURRENCY = "currency",
|
|
1190
1192
|
CHECKOUT = "checkout",
|
|
1191
1193
|
FRAUD = "fraud",
|
|
1192
1194
|
LOGISTICS = "logistics",
|
package/dist/api-internal.js
CHANGED
|
@@ -1216,6 +1216,7 @@ var LabelCreationStatus;
|
|
|
1216
1216
|
})(LabelCreationStatus = exports.LabelCreationStatus || (exports.LabelCreationStatus = {}));
|
|
1217
1217
|
var LabelTransactionType;
|
|
1218
1218
|
(function (LabelTransactionType) {
|
|
1219
|
+
LabelTransactionType["ADJUSTMENT"] = "adjustment";
|
|
1219
1220
|
LabelTransactionType["BILLABLE_LABEL"] = "billable_label";
|
|
1220
1221
|
LabelTransactionType["FEE"] = "fee";
|
|
1221
1222
|
LabelTransactionType["REVENUE_SHARE"] = "revenue_share";
|
|
@@ -1365,6 +1366,7 @@ var OnboardingAuditThemeKey;
|
|
|
1365
1366
|
OnboardingAuditThemeKey["BILLING"] = "billing";
|
|
1366
1367
|
OnboardingAuditThemeKey["B_2_B_INVOICING"] = "b2b_invoicing";
|
|
1367
1368
|
OnboardingAuditThemeKey["CATALOG"] = "catalog";
|
|
1369
|
+
OnboardingAuditThemeKey["CURRENCY"] = "currency";
|
|
1368
1370
|
OnboardingAuditThemeKey["CHECKOUT"] = "checkout";
|
|
1369
1371
|
OnboardingAuditThemeKey["FRAUD"] = "fraud";
|
|
1370
1372
|
OnboardingAuditThemeKey["LOGISTICS"] = "logistics";
|
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.18",
|
|
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": "ff651fefde62162c873a8140da058ee29b956e40"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -1208,6 +1208,7 @@ export enum LabelCreationStatus {
|
|
|
1208
1208
|
}
|
|
1209
1209
|
|
|
1210
1210
|
export enum LabelTransactionType {
|
|
1211
|
+
ADJUSTMENT = 'adjustment',
|
|
1211
1212
|
BILLABLE_LABEL = 'billable_label',
|
|
1212
1213
|
FEE = 'fee',
|
|
1213
1214
|
REVENUE_SHARE = 'revenue_share',
|
|
@@ -1357,6 +1358,7 @@ export enum OnboardingAuditThemeKey {
|
|
|
1357
1358
|
BILLING = 'billing',
|
|
1358
1359
|
B_2_B_INVOICING = 'b2b_invoicing',
|
|
1359
1360
|
CATALOG = 'catalog',
|
|
1361
|
+
CURRENCY = 'currency',
|
|
1360
1362
|
CHECKOUT = 'checkout',
|
|
1361
1363
|
FRAUD = 'fraud',
|
|
1362
1364
|
LOGISTICS = 'logistics',
|