@fixefy/fixefy-ui-utils 0.2.49 → 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.
@@ -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
+ }
@@ -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/package.json CHANGED
@@ -56,5 +56,5 @@
56
56
  "require": "./dist/index.js"
57
57
  }
58
58
  },
59
- "version": "0.2.49"
59
+ "version": "0.2.50"
60
60
  }