@flowio/api-internal-constants 4.18.13 → 4.18.14
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 -1
- package/dist/api-internal.js +1 -0
- package/package.json +2 -2
- package/src/api-internal.ts +1 -0
package/dist/api-internal.d.ts
CHANGED
|
@@ -1058,7 +1058,8 @@ export declare enum LabelCreationStatus {
|
|
|
1058
1058
|
}
|
|
1059
1059
|
export declare enum LabelTransactionType {
|
|
1060
1060
|
BILLABLE_LABEL = "billable_label",
|
|
1061
|
-
FEE = "fee"
|
|
1061
|
+
FEE = "fee",
|
|
1062
|
+
REVENUE_SHARE = "revenue_share"
|
|
1062
1063
|
}
|
|
1063
1064
|
export declare enum LiabilityType {
|
|
1064
1065
|
FULL_VALUE_TAX = "full_value_tax",
|
package/dist/api-internal.js
CHANGED
|
@@ -1218,6 +1218,7 @@ var LabelTransactionType;
|
|
|
1218
1218
|
(function (LabelTransactionType) {
|
|
1219
1219
|
LabelTransactionType["BILLABLE_LABEL"] = "billable_label";
|
|
1220
1220
|
LabelTransactionType["FEE"] = "fee";
|
|
1221
|
+
LabelTransactionType["REVENUE_SHARE"] = "revenue_share";
|
|
1221
1222
|
})(LabelTransactionType = exports.LabelTransactionType || (exports.LabelTransactionType = {}));
|
|
1222
1223
|
var LiabilityType;
|
|
1223
1224
|
(function (LiabilityType) {
|
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.14",
|
|
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": "864d87fe3c12ee52be8ba5f1e8867318d1bec420"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED