@fixefy/fixefy-ui-utils 0.2.48 → 0.2.50
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/constants/index.d.ts +13 -0
- package/dist/constants/index.js +17 -0
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/package.json +1 -1
|
@@ -11,3 +11,16 @@ export declare const DataTypes: Record<string, string>;
|
|
|
11
11
|
export declare const EntityTypes: Record<string, string>;
|
|
12
12
|
export declare const FilterOperatorType: Record<string, string>;
|
|
13
13
|
export declare const InputTypes: Record<string, string>;
|
|
14
|
+
export declare enum HEADERS {
|
|
15
|
+
OPERATION = "operation",
|
|
16
|
+
IS_SINGLE_REQUEST = "is-single-request",
|
|
17
|
+
END_OPERATION = "end-operation",
|
|
18
|
+
START_OPERATION = "start-operation",
|
|
19
|
+
IS_USE_CACHE_FOR_RULES = "is-use-cache-for-rules",
|
|
20
|
+
INVOICE_CREATE = "invoice-create",
|
|
21
|
+
INVOICE_CALC = "invoice-calc",
|
|
22
|
+
IN_MEMORY = "in-memory",
|
|
23
|
+
IS_SANDBOX = "is-sandbox",
|
|
24
|
+
MERO = "mero",
|
|
25
|
+
PRE_PROC = "pre-proc"
|
|
26
|
+
}
|
package/dist/constants/index.js
CHANGED
|
@@ -24,6 +24,9 @@ _export(exports, {
|
|
|
24
24
|
FilterOperatorType: function() {
|
|
25
25
|
return FilterOperatorType;
|
|
26
26
|
},
|
|
27
|
+
HEADERS: function() {
|
|
28
|
+
return HEADERS;
|
|
29
|
+
},
|
|
27
30
|
InputTypes: function() {
|
|
28
31
|
return InputTypes;
|
|
29
32
|
}
|
|
@@ -114,3 +117,17 @@ const InputTypes = {
|
|
|
114
117
|
Percent: 'percent',
|
|
115
118
|
Text: 'text'
|
|
116
119
|
};
|
|
120
|
+
var HEADERS;
|
|
121
|
+
(function(HEADERS) {
|
|
122
|
+
HEADERS["OPERATION"] = "operation";
|
|
123
|
+
HEADERS["IS_SINGLE_REQUEST"] = "is-single-request";
|
|
124
|
+
HEADERS["END_OPERATION"] = "end-operation";
|
|
125
|
+
HEADERS["START_OPERATION"] = "start-operation";
|
|
126
|
+
HEADERS["IS_USE_CACHE_FOR_RULES"] = "is-use-cache-for-rules";
|
|
127
|
+
HEADERS["INVOICE_CREATE"] = "invoice-create";
|
|
128
|
+
HEADERS["INVOICE_CALC"] = "invoice-calc";
|
|
129
|
+
HEADERS["IN_MEMORY"] = "in-memory";
|
|
130
|
+
HEADERS["IS_SANDBOX"] = "is-sandbox";
|
|
131
|
+
HEADERS["MERO"] = "mero";
|
|
132
|
+
HEADERS["PRE_PROC"] = "pre-proc";
|
|
133
|
+
})(HEADERS || (HEADERS = {}));
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -19,7 +19,6 @@ _export_star(require("./json"), exports);
|
|
|
19
19
|
_export_star(require("./makeStyles"), exports);
|
|
20
20
|
const _page_context = /*#__PURE__*/ _interop_require_default(_export_star(require("./page_context"), exports));
|
|
21
21
|
_export_star(require("./redirect"), exports);
|
|
22
|
-
_export_star(require("./storage"), exports);
|
|
23
22
|
_export_star(require("./transform"), exports);
|
|
24
23
|
_export_star(require("./types"), exports);
|
|
25
24
|
_export_star(require("./validate"), exports);
|
package/package.json
CHANGED